diff --git a/CMakeLists.txt b/CMakeLists.txt index 85d194b..ad11412 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,6 @@ project(Ravi) enable_language(CXX) enable_language(C) -enable_language(ASM) enable_testing() # Get access to CMake helpers @@ -14,7 +13,6 @@ option(LLVM_JIT "Controls whether LLVM JIT compilation will be enabled, default option(OMR_JIT "Controls whether NanoJIT compilation will be enabled, default is OFF" OFF) option(STATIC_BUILD "Build static version of Ravi, default is OFF" OFF) option(COMPUTED_GOTO "Controls whether the interpreter switch will use computed gotos on gcc/clang, default is ON" ON) -option(ASM_VM "Controls whether to use the new VM (not ready yet! so don't turn on)" OFF) option(LTESTS "Controls whether ltests are enabled in Debug mode; note requires Debug build" ON) if (LLVM_JIT AND OMR_JIT AND MIR_JIT) @@ -22,12 +20,7 @@ if (LLVM_JIT AND OMR_JIT AND MIR_JIT) "LLVM_JIT, OMR_JIT and MIR_IT cannot all be set to ON at the same time") endif () -if (LLVM_JIT OR OMR_JIT OR MIR_JIT) - # ASM VM is in development and not compatible with anything yet - set(ASM_VM OFF) -endif () - -if (NOT WIN32 AND NOT LLVM_JIT AND NOT OMR_JIT AND NOT ASM_VM) +if (NOT WIN32 AND NOT LLVM_JIT AND NOT OMR_JIT) set(MIR_JIT ON) endif () @@ -43,18 +36,6 @@ if (MIR_JIT) set(STATIC_BUILD OFF) endif() -if (ASM_VM) - # For now we switch to static build - # TODO A fix is needed to ensure that in shared library the asm functions are resolved - set(STATIC_BUILD ON) - # LTESTS messes with global state and breaks the ASMVM dispatch table - set(LTESTS OFF) - # Not compatible with JIT modes - set(LLVM_JIT OFF) - set(OMR_JIT OFF) - set(MIR_JIT OFF) -endif () - if (STATIC_BUILD) message(STATUS "STATIC library build enabled") else () @@ -153,51 +134,11 @@ include_directories("${PROJECT_SOURCE_DIR}/include") include_directories("${PROJECT_SOURCE_DIR}/dmr_c/src") if (NOT LTESTS) - # Note that enabling ltests.h messes with global_State and thus interferes with ASM_VM + # Note that enabling ltests.h messes with global_State message(STATUS "Disabling Lua extended test harness 'ltests'") add_definitions(-DNO_LUA_DEBUG) endif () -if (ASM_VM) - # For now we switch to static build - # TODO A fix is needed to ensure that in shared library the asm functions are resolved - add_definitions(-DRAVI_USE_ASMVM) - set(ASMVM_DEFS ${PROJECT_SOURCE_DIR}/include/ravi_asmvm_defs.h) - if (WIN32 AND NOT CYGWIN) - set(VMMODE peobj) - elseif (APPLE) - set(VMMODE machasm) - else () - set(VMMODE elfasm) - endif () - - # This macro runs the buildvm command to generate the VM code - macro(add_buildvm_target _target _mode) - add_custom_command(OUTPUT ${_target} - COMMAND ${PROJECT_SOURCE_DIR}/vmbuilder/bin/buildvm ARGS -m ${_mode} -o ${_target} ${ARGN} - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - DEPENDS ${PROJECT_SOURCE_DIR}/vmbuilder/bin/buildvm ${ARGN} - ) - endmacro(add_buildvm_target) - - # Generate ravi_asmvm.obj / ravi_asmvm.s (obj on Windows) - if (WIN32 AND NOT CYGWIN) - add_buildvm_target(${CMAKE_CURRENT_BINARY_DIR}/ravi_asmvm.obj ${VMMODE}) - set(ASMVM_SRC ${CMAKE_CURRENT_BINARY_DIR}/ravi_asmvm.obj) - else () - add_buildvm_target(${CMAKE_CURRENT_BINARY_DIR}/ravi_asmvm.s ${VMMODE}) - set(ASMVM_SRC ${CMAKE_CURRENT_BINARY_DIR}/ravi_asmvm.s) - endif () - - # Generate the ravi_bcdef.h header file - add_buildvm_target(${ASMVM_DEFS} bcdef ${LJLIB_C}) - - SET(ASMVM_DEPS - ${ASMVM_SRC} - ${ASMVM_DEFS} - ) -endif () - # define JIT compiler sources if (LLVM_JIT) set(LLVM_JIT_SRCS src/ravi_llvmjit.cpp src/ravi_llvmtypes.cpp @@ -432,7 +373,6 @@ add_library(${LIBRAVI_NAME} ${LIBRAVI_BUILD_TYPE} ${DMR_C_HEADERS} ${DMR_C_SRCS} ${DMR_C_JIT_SRCS} - ${ASMVM_DEPS} ${MIR_HEADERS} ${MIR_SRCS} ${C2MIR_SRCS} @@ -488,51 +428,43 @@ set(NOJIT_RAVI_SRCS ${DMR_C_JIT_SRCS} src/ravi_nojit.c) -if (NOT ASM_VM) - set(RAVI_STATICEXEC_TARGET ravi_s) - - # We always build a static library without JIT so that - # we can create some default executables - add_library(libravinojit_static - ${NOJIT_RAVI_SRCS}) - set_target_properties(libravinojit_static PROPERTIES PREFIX "") # As we already prefix with lib - target_link_libraries(libravinojit_static ${EXTRA_LIBRARIES}) - - # Create a simple NoJIT version of statically linked ravi - # This is sometimes useful in other projects that just need a Lua commandline - # but do not care about the shared library - add_executable(ravi_s - src/lua.c) - target_link_libraries(ravi_s libravinojit_static) - - # Ravi VSCode Debug adapter - set(RAVI_DEBUGGER_TARGET ravidebug) - add_executable(${RAVI_DEBUGGER_TARGET} - vscode-debugger/src/ravidebug.c - vscode-debugger/src/json.c - vscode-debugger/src/protocol.c) - target_link_libraries(${RAVI_DEBUGGER_TARGET} libravinojit_static) - - # Tests for VSCode Debug Adapter - add_executable(testravidebug - vscode-debugger/src/testravidebug.c - vscode-debugger/src/json.c - vscode-debugger/src/protocol.c) - target_link_libraries(testravidebug libravinojit_static) - - add_test(TestRaviDebug testravidebug) - - add_executable(test_vm tests/test_vm.c) - target_link_libraries(test_vm ${LIBRAVI_NAME}) - - add_test(TestVM test_vm) -else () - # Simple VM tests - add_executable(test_asmvm tests/test_asmvm.c) - target_link_libraries(test_asmvm ${LIBRAVI_NAME}) - - add_test(TestVM test_asmvm) -endif () +set(RAVI_STATICEXEC_TARGET ravi_s) + +# We always build a static library without JIT so that +# we can create some default executables +add_library(libravinojit_static + ${NOJIT_RAVI_SRCS}) +set_target_properties(libravinojit_static PROPERTIES PREFIX "") # As we already prefix with lib +target_link_libraries(libravinojit_static ${EXTRA_LIBRARIES}) + +# Create a simple NoJIT version of statically linked ravi +# This is sometimes useful in other projects that just need a Lua commandline +# but do not care about the shared library +add_executable(ravi_s + src/lua.c) +target_link_libraries(ravi_s libravinojit_static) + +# Ravi VSCode Debug adapter +set(RAVI_DEBUGGER_TARGET ravidebug) +add_executable(${RAVI_DEBUGGER_TARGET} + vscode-debugger/src/ravidebug.c + vscode-debugger/src/json.c + vscode-debugger/src/protocol.c) +target_link_libraries(${RAVI_DEBUGGER_TARGET} libravinojit_static) + +# Tests for VSCode Debug Adapter +add_executable(testravidebug + vscode-debugger/src/testravidebug.c + vscode-debugger/src/json.c + vscode-debugger/src/protocol.c) +target_link_libraries(testravidebug libravinojit_static) + +add_test(TestRaviDebug testravidebug) + +add_executable(test_vm tests/test_vm.c) +target_link_libraries(test_vm ${LIBRAVI_NAME}) + +add_test(TestVM test_vm) configure_file(ravi-config.cmake.in ravi-config.cmake @ONLY) if (WIN32) diff --git a/build-utils/cmake-64bit-nojit-assertions-asmvm.bat b/build-utils/cmake-64bit-nojit-assertions-asmvm.bat deleted file mode 100644 index ca4da25..0000000 --- a/build-utils/cmake-64bit-nojit-assertions-asmvm.bat +++ /dev/null @@ -1,4 +0,0 @@ -mkdir asmvm -cd asmvm -cmake -DCMAKE_INSTALL_PREFIX=c:\Software\ravi-asmvm -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Debug -DASM_VM=ON -G "Visual Studio 15 2017 Win64" .. -cd .. \ No newline at end of file diff --git a/build-utils/cmake-64bit-unix-nojit-asmvm.sh b/build-utils/cmake-64bit-unix-nojit-asmvm.sh deleted file mode 100644 index 4e91ad9..0000000 --- a/build-utils/cmake-64bit-unix-nojit-asmvm.sh +++ /dev/null @@ -1,3 +0,0 @@ -mkdir buildasmvm -cd buildasmvm -cmake -DSTATIC_BUILD=ON -DASM_VM=ON -DCMAKE_BUILD_TYPE=Debug -DCOMPUTED_GOTO=ON -DCMAKE_INSTALL_PREFIX=$HOME/ravi .. diff --git a/include/lobject.h b/include/lobject.h index 65555f5..d48e987 100644 --- a/include/lobject.h +++ b/include/lobject.h @@ -642,12 +642,6 @@ typedef struct Table { */ #define luaO_nilobject (&luaO_nilobject_) -/* Internal assembler functions. Never call these directly from C. - Note that such functions do not follow calling conventions and - are only used by ASM VM to implement bytecodes */ -typedef void(*ASMFunction)(void); - - LUAI_DDEC const TValue luaO_nilobject_; /* size of buffer for 'luaO_utf8esc' function */ diff --git a/include/lstate.h b/include/lstate.h index 729ce0b..fddd44c 100644 --- a/include/lstate.h +++ b/include/lstate.h @@ -178,7 +178,6 @@ typedef struct global_State { TString *strcache[STRCACHE_N][STRCACHE_M]; /* cache for strings in API */ /* RAVI additions */ ravi_State *ravi_state; - ASMFunction dispatch[NUM_OPCODES]; /* Dispatch table for ASM VM - wip */ ravi_Writeline ravi_writeline; ravi_Writestring ravi_writestring; ravi_Writestringerror ravi_writestringerror; @@ -190,9 +189,6 @@ typedef struct global_State { #endif } global_State; -/* Offset of the ASM VM dispatch table */ -#define DISPATCH_OFFSET ((int)offsetof(global_State, dispatch)) - /* ** 'per thread' state */ diff --git a/ravi-tests/ravi_testasmvm.lua b/ravi-tests/ravi_testasmvm.lua deleted file mode 100644 index 4621ed3..0000000 --- a/ravi-tests/ravi_testasmvm.lua +++ /dev/null @@ -1,21 +0,0 @@ -local tests = {} - -tests.RETURN = function() - return -end - -tests.LOADK = function() - return 1, 4.2, 'hello' -end - -tests.MOVE = function(a, b) - local c,d = a,b - return c,d -end - - -for k,v in pairs(tests) do - print(k) - ravi.dumplua(v) - --v() -end \ No newline at end of file diff --git a/src/ldo.c b/src/ldo.c index b9687e7..37e5298 100644 --- a/src/ldo.c +++ b/src/ldo.c @@ -582,28 +582,6 @@ static void stackerror (lua_State *L) { luaD_throw(L, LUA_ERRERR); /* error while handing stack error */ } -#ifdef RAVI_USE_ASMVM -/* following is a temporary solution to decide whether we can use ASM VM. -The symbol ravi_luaV_interp() is generated by the VMBuilder component. -*/ -extern int ravi_luaV_interp(lua_State * L); -int asvm_compatible(Proto *p) { - static unsigned char opcodes_supported[NUM_OPCODES] = { - [OP_RETURN] = 1, - [OP_LOADK] = 1, - [OP_MOVE] = 1, - [OP_RAVI_FORLOOP_IP] = 1, - [OP_RAVI_FORLOOP_I1] = 1, - [OP_RAVI_FORPREP_I1] = 1, - [OP_RAVI_FORPREP_IP] = 1}; - for (int i = 0; i < p->sizecode; i++) { - int op = GET_OPCODE(p->code[i]); - if (!opcodes_supported[op]) return 0; - } - return 1; -} -#endif - /* ** Call a function (C or Lua). The function to be called is at *func. ** The arguments are on the stack, right after the function. @@ -614,21 +592,7 @@ void luaD_call (lua_State *L, StkId func, int nResults) { if (++L->nCcalls >= LUAI_MAXCCALLS) stackerror(L); if (!luaD_precall(L, func, nResults, 0)) /* is a Lua function? */ { -#ifdef RAVI_USE_ASMVM - // This is a temporary hack to test the under development ASM VM. - CallInfo *ci = L->ci; - LClosure *cl = clLvalue(ci->func); /* local reference to function's closure */ - if (cl->p->sizecode <= 10 && - asvm_compatible(cl->p)) { - fprintf(stderr, "Invoking ASM VM\n"); - ravi_luaV_interp(L); - } - else { - luaV_execute(L); /* call it */ - } -#else luaV_execute(L); /* call it */ -#endif } L->nCcalls--; } diff --git a/src/lstate.c b/src/lstate.c index a15d6c6..3930530 100644 --- a/src/lstate.c +++ b/src/lstate.c @@ -28,10 +28,6 @@ #include "ltable.h" #include "ltm.h" -#ifdef RAVI_USE_ASMVM -#include "ravi_asmvm_defs.h" -#endif - #include "ravijit.h" #include "ravi_profile.h" #include "ravi_alloc.h" @@ -340,23 +336,6 @@ void raviE_default_writestringerror(const char *fmt, const char *p) { fflush(stderr); } -#ifdef RAVI_USE_ASMVM -/* Initialize dispatch table used by the ASM VM */ -static void dispatch_init(global_State *G) { - ASMFunction *disp = G->dispatch; - for (uint32_t i = 0; i < NUM_OPCODES; i++) { - /* - Following computes an offset for the assembly routine for the given OpCode. - The offset is relative to the global symbol ravi_vm_asm_begin that is - generated as part of the VMBuilder code generation. All the bytecode - routines are at some offset to this global symbol. - */ - /* NOTE: enabling ltests.h modifies the global_State and breaks the assumptions abou the location of the dispatch table */ - disp[i] = makeasmfunc(ravi_bytecode_offsets[i]); - } -} -#endif - LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { int i; lua_State *L; @@ -406,10 +385,6 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { close_state(L); L = NULL; } -#ifdef RAVI_USE_ASMVM - /* setup dispatch table - this is only used by the new ASM VM - see vmbuilder */ - dispatch_init(g); -#endif #if RAVI_BYTECODE_PROFILING_ENABLED raviV_init_profiledata(L); #endif diff --git a/tests/test_asmvm.c b/tests/test_asmvm.c deleted file mode 100644 index 2b09717..0000000 --- a/tests/test_asmvm.c +++ /dev/null @@ -1,173 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include - -#include "lua.h" -#include "lauxlib.h" -#include "lualib.h" -#include "lobject.h" - -#ifndef RAVI_USE_ASMVM -#error This file can only be compiled with ASMVM -#endif - -struct MyValue { - int type; - union { - lua_Integer i; - lua_Number n; - const char *s; - } u; -}; - -/** - * Compiles the given code and invokes it, passing params to it. - * Checks that the code returns given number of values that match expected - * results. Returns 0 if no error. - */ -static int do_asmvm_test( - const char *code, /* code to compiled and invoked */ - int nparams, struct MyValue *params, /* parameters */ - int nresults, struct MyValue *expected) /* expected return values */ -{ - int rc = 0; - lua_State *L; - L = luaL_newstate(); - luaL_openlibs(L); /* open standard libraries */ - if (luaL_loadbuffer(L, code, strlen(code), "chunk") != 0) { - rc = 1; - fprintf(stderr, "Failed to load chunk: %s\n", lua_tostring(L, -1)); - lua_pop(L, 1); /* pop error message from the stack */ - goto Lerror; - } - if (lua_pcall(L, 0, 1, 0) != 0) { - rc = 1; - fprintf(stderr, "Failed to run chunk: %s\n", lua_tostring(L, -1)); - goto Lerror; - } - if (!lua_isfunction(L, -1)) { - rc = 1; - fprintf(stderr, "Script did not return a function\n"); - goto Lerror; - } - for (int i = 0; i < nparams; i++) { - switch (params[i].type) { - case RAVI_TNUMINT: - lua_pushinteger(L, params[i].u.i); - break; - case RAVI_TNUMFLT: - lua_pushnumber(L, params[i].u.n); - break; - case RAVI_TSTRING: - lua_pushstring(L, params[i].u.s); - break; - default: - fprintf(stderr, "Unsupported argument type %d\n", params[i].type); - rc = 1; - goto Lerror; - } - } - if (lua_pcall(L, nparams, nresults, 0) != 0) { - rc = 1; - fprintf(stderr, "Test function failed: %s\n", lua_tostring(L, -1)); - goto Lerror; - } - for (int i = nresults - 1, j = -1; i >= 0; i--, j--) { - switch (expected[i].type) { - case RAVI_TNUMINT: { - if (!lua_isinteger(L, j)) { - fprintf(stderr, "Result %d was expected to be integer\n", i + 1); - rc = 1; - goto Lerror; - } - lua_Integer num = lua_tointeger(L, j); - if (num != expected[i].u.i) { - fprintf(stderr, "Result %d was expected to be %d, but got %d\n", i + 1, (int)expected[i].u.i, (int)num); - rc = 1; - goto Lerror; - } - break; - } - case RAVI_TNUMFLT: { - if (!lua_isnumber(L, j)) { - fprintf(stderr, "Result %d was expected to be number\n", i + 1); - rc = 1; - goto Lerror; - } - lua_Number num = lua_tonumber(L, j); - if (num != expected[i].u.n) { - fprintf(stderr, "Result %d was expected to be %g, but got %g\n", i + 1, expected[i].u.n, num); - rc = 1; - goto Lerror; - } - break; - } - case RAVI_TSTRING: { - if (!lua_isstring(L, j)) { - fprintf(stderr, "Result %d was expected to be string\n", i + 1); - rc = 1; - goto Lerror; - } - const char *s = lua_tostring(L, j); - if (strcmp(s, expected[i].u.s) != 0) { - fprintf(stderr, "Result %d was expected to be %s, but got %s\n", i + 1, expected[i].u.s, s); - rc = 1; - goto Lerror; - } - break; - } - default: { - fprintf(stderr, "Result %d has unexpected type\n", i + 1); - rc = 1; - goto Lerror; - } - } - } -Lerror: - lua_close(L); - return rc; -} - -static int test_vm() -{ - int failures = 0; - struct MyValue args[3]; - struct MyValue results[3]; - - args[0].type = RAVI_TNUMINT; args[0].u.i = 42; - args[1].type = RAVI_TNUMFLT; args[1].u.n = -4.2; - args[2].type = RAVI_TSTRING; args[2].u.s = "hello"; - - results[0].type = RAVI_TNUMINT; results[0].u.i = 42; - results[1].type = RAVI_TNUMFLT; results[1].u.n = -4.2; - results[2].type = RAVI_TSTRING; results[2].u.s = "hello"; - - failures = do_asmvm_test("return function() end", 0, NULL, 0, NULL); // OP_RETURN - failures += do_asmvm_test("return function() return 42 end", 0, NULL, 1, results); // OP_LOADK, OP_RETURN - failures += do_asmvm_test("return function() return 42, -4.2 end", 0, NULL, 2, results); // OP_LOADK, OP_RETURN - failures += do_asmvm_test("return function() return 42, -4.2, 'hello' end", 0, NULL, 3, results); // OP_LOADK, OP_RETURN - failures += do_asmvm_test("return function(a) local b = a; return b end", 1, args, 1, results); // OP_MOVE, OP_RETURN - failures += do_asmvm_test("return function(a,c) local b,d = a,c; return b,d end", 2, args, 2, results); // OP_MOVE, OP_RETURN - - results[0].u.i = 5; - failures += do_asmvm_test("return function (a) for i=1,5 do a=i; end return a end", 0, NULL, 1, results); // OP_LOADK, OP_MOVE, OP_RETURN, OP_RAVI_FOPREP_I1, OP_RAVI_FORLOOP_I1 - results[0].u.i = 3; - failures += do_asmvm_test("return function (a) for i=1,4,2 do a=i; end return a end", 0, NULL, 1, results); // OP_LOADK, OP_MOVE, OP_RETURN, OP_RAVI_FOPREP_IP, OP_RAVI_FORLOOP_IP - return failures; -} - -int main() -{ - int failures = 0; - failures += test_vm(); - if (failures) - printf("FAILED\n"); - else - printf("OK\n"); - return failures ? 1 : 0; -} diff --git a/vmbuilder/COPYRIGHT b/vmbuilder/COPYRIGHT deleted file mode 100644 index 6f8ef88..0000000 --- a/vmbuilder/COPYRIGHT +++ /dev/null @@ -1,59 +0,0 @@ -This code contains portions of the LuaJIT project. The copyrights for LuaJIT -are reproduced below. - -=============================================================================== -LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ - -Copyright (C) 2005-2017 Mike Pall. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -[ MIT license: http://www.opensource.org/licenses/mit-license.php ] - -=============================================================================== -[ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ] - -Copyright (C) 1994-2012 Lua.org, PUC-Rio. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -=============================================================================== -[ LuaJIT includes code from dlmalloc, which has this license statement: ] - -This is a version (aka dlmalloc) of malloc/free/realloc written by -Doug Lea and released to the public domain, as explained at -http://creativecommons.org/licenses/publicdomain - -=============================================================================== diff --git a/vmbuilder/README.rst b/vmbuilder/README.rst deleted file mode 100644 index 234a22a..0000000 --- a/vmbuilder/README.rst +++ /dev/null @@ -1,24 +0,0 @@ -This is a new initiative to build a VM for Ravi/Lua 5.3 using techniques similar to LuaJIT. - -Note: This work is temporarily on hold due to changes in bytecode encoding. - -Goals -===== -* Create a new Lua/Ravi interpreter that is coded mostly in assembly -* Initial work will focus on X86-64 architecture only -* The VM will support the extended bytecode set of Ravi -* An equally important goal is to document the effort so that it is easier for others to understand how the VM is implemented - -Design Notes -============ -* `Notes on LuaJIT `_ -* `VM Design and Implementation Notes `_ - -Timescales -========== -This project will proceed slowly as this is my first foray into assembly language programming. Also I can only spend time on this project in my free time (i.e. weekends and holidays). - -Acknowledgements -================ -I plan to reuse parts of LuaJIT / dynasm for this project. - diff --git a/vmbuilder/asm/vm-linux64.s b/vmbuilder/asm/vm-linux64.s deleted file mode 100644 index fb44f44..0000000 --- a/vmbuilder/asm/vm-linux64.s +++ /dev/null @@ -1,844 +0,0 @@ - -ravi.o: file format elf64-x86-64 - - -Disassembly of section .text: - -0000000000000000 : - 0: 0f b6 cc movzbl %ah,%ecx - 3: c1 e8 10 shr $0x10,%eax - 6: 0f b6 d4 movzbl %ah,%edx - 9: c1 e2 04 shl $0x4,%edx - c: 4d 8d 14 10 lea (%r8,%rdx,1),%r10 - 10: c1 e1 04 shl $0x4,%ecx - 13: 4d 8d 1c 08 lea (%r8,%rcx,1),%r11 - 17: 49 8b 02 mov (%r10),%rax - 1a: 45 8b 4a 08 mov 0x8(%r10),%r9d - 1e: 49 89 03 mov %rax,(%r11) - 21: 45 89 4b 08 mov %r9d,0x8(%r11) - 25: 8b 03 mov (%rbx),%eax - 27: 0f b6 d0 movzbl %al,%edx - 2a: 48 83 c3 04 add $0x4,%rbx - 2e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000032 : - 32: 0f b6 cc movzbl %ah,%ecx - 35: c1 e8 10 shr $0x10,%eax - 38: 0f b7 d0 movzwl %ax,%edx - 3b: c1 e2 04 shl $0x4,%edx - 3e: 4d 8d 14 17 lea (%r15,%rdx,1),%r10 - 42: c1 e1 04 shl $0x4,%ecx - 45: 4d 8d 1c 08 lea (%r8,%rcx,1),%r11 - 49: 49 8b 02 mov (%r10),%rax - 4c: 45 8b 4a 08 mov 0x8(%r10),%r9d - 50: 49 89 03 mov %rax,(%r11) - 53: 45 89 4b 08 mov %r9d,0x8(%r11) - 57: 8b 03 mov (%rbx),%eax - 59: 0f b6 d0 movzbl %al,%edx - 5c: 48 83 c3 04 add $0x4,%rbx - 60: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000064 : - 64: 8b 03 mov (%rbx),%eax - 66: 0f b6 d0 movzbl %al,%edx - 69: 48 83 c3 04 add $0x4,%rbx - 6d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000071 : - 71: 8b 03 mov (%rbx),%eax - 73: 0f b6 d0 movzbl %al,%edx - 76: 48 83 c3 04 add $0x4,%rbx - 7a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000007e : - 7e: 8b 03 mov (%rbx),%eax - 80: 0f b6 d0 movzbl %al,%edx - 83: 48 83 c3 04 add $0x4,%rbx - 87: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000008b : - 8b: 8b 03 mov (%rbx),%eax - 8d: 0f b6 d0 movzbl %al,%edx - 90: 48 83 c3 04 add $0x4,%rbx - 94: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000098 : - 98: 8b 03 mov (%rbx),%eax - 9a: 0f b6 d0 movzbl %al,%edx - 9d: 48 83 c3 04 add $0x4,%rbx - a1: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000a5 : - a5: 8b 03 mov (%rbx),%eax - a7: 0f b6 d0 movzbl %al,%edx - aa: 48 83 c3 04 add $0x4,%rbx - ae: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000b2 : - b2: 8b 03 mov (%rbx),%eax - b4: 0f b6 d0 movzbl %al,%edx - b7: 48 83 c3 04 add $0x4,%rbx - bb: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000bf : - bf: 8b 03 mov (%rbx),%eax - c1: 0f b6 d0 movzbl %al,%edx - c4: 48 83 c3 04 add $0x4,%rbx - c8: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000cc : - cc: 8b 03 mov (%rbx),%eax - ce: 0f b6 d0 movzbl %al,%edx - d1: 48 83 c3 04 add $0x4,%rbx - d5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000d9 : - d9: 8b 03 mov (%rbx),%eax - db: 0f b6 d0 movzbl %al,%edx - de: 48 83 c3 04 add $0x4,%rbx - e2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000e6 : - e6: 8b 03 mov (%rbx),%eax - e8: 0f b6 d0 movzbl %al,%edx - eb: 48 83 c3 04 add $0x4,%rbx - ef: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000000f3 : - f3: 8b 03 mov (%rbx),%eax - f5: 0f b6 d0 movzbl %al,%edx - f8: 48 83 c3 04 add $0x4,%rbx - fc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000100 : - 100: 8b 03 mov (%rbx),%eax - 102: 0f b6 d0 movzbl %al,%edx - 105: 48 83 c3 04 add $0x4,%rbx - 109: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000010d : - 10d: 8b 03 mov (%rbx),%eax - 10f: 0f b6 d0 movzbl %al,%edx - 112: 48 83 c3 04 add $0x4,%rbx - 116: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000011a : - 11a: 8b 03 mov (%rbx),%eax - 11c: 0f b6 d0 movzbl %al,%edx - 11f: 48 83 c3 04 add $0x4,%rbx - 123: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000127 : - 127: 8b 03 mov (%rbx),%eax - 129: 0f b6 d0 movzbl %al,%edx - 12c: 48 83 c3 04 add $0x4,%rbx - 130: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000134 : - 134: 8b 03 mov (%rbx),%eax - 136: 0f b6 d0 movzbl %al,%edx - 139: 48 83 c3 04 add $0x4,%rbx - 13d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000141 : - 141: 8b 03 mov (%rbx),%eax - 143: 0f b6 d0 movzbl %al,%edx - 146: 48 83 c3 04 add $0x4,%rbx - 14a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000014e : - 14e: 8b 03 mov (%rbx),%eax - 150: 0f b6 d0 movzbl %al,%edx - 153: 48 83 c3 04 add $0x4,%rbx - 157: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000015b : - 15b: 8b 03 mov (%rbx),%eax - 15d: 0f b6 d0 movzbl %al,%edx - 160: 48 83 c3 04 add $0x4,%rbx - 164: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000168 : - 168: 8b 03 mov (%rbx),%eax - 16a: 0f b6 d0 movzbl %al,%edx - 16d: 48 83 c3 04 add $0x4,%rbx - 171: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000175 : - 175: 8b 03 mov (%rbx),%eax - 177: 0f b6 d0 movzbl %al,%edx - 17a: 48 83 c3 04 add $0x4,%rbx - 17e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000182 : - 182: 8b 03 mov (%rbx),%eax - 184: 0f b6 d0 movzbl %al,%edx - 187: 48 83 c3 04 add $0x4,%rbx - 18b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000018f : - 18f: 8b 03 mov (%rbx),%eax - 191: 0f b6 d0 movzbl %al,%edx - 194: 48 83 c3 04 add $0x4,%rbx - 198: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000019c : - 19c: 8b 03 mov (%rbx),%eax - 19e: 0f b6 d0 movzbl %al,%edx - 1a1: 48 83 c3 04 add $0x4,%rbx - 1a5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001a9 : - 1a9: 8b 03 mov (%rbx),%eax - 1ab: 0f b6 d0 movzbl %al,%edx - 1ae: 48 83 c3 04 add $0x4,%rbx - 1b2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001b6 : - 1b6: 8b 03 mov (%rbx),%eax - 1b8: 0f b6 d0 movzbl %al,%edx - 1bb: 48 83 c3 04 add $0x4,%rbx - 1bf: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001c3 : - 1c3: 8b 03 mov (%rbx),%eax - 1c5: 0f b6 d0 movzbl %al,%edx - 1c8: 48 83 c3 04 add $0x4,%rbx - 1cc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001d0 : - 1d0: 8b 03 mov (%rbx),%eax - 1d2: 0f b6 d0 movzbl %al,%edx - 1d5: 48 83 c3 04 add $0x4,%rbx - 1d9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001dd : - 1dd: 8b 03 mov (%rbx),%eax - 1df: 0f b6 d0 movzbl %al,%edx - 1e2: 48 83 c3 04 add $0x4,%rbx - 1e6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001ea : - 1ea: 8b 03 mov (%rbx),%eax - 1ec: 0f b6 d0 movzbl %al,%edx - 1ef: 48 83 c3 04 add $0x4,%rbx - 1f3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000001f7 : - 1f7: 8b 03 mov (%rbx),%eax - 1f9: 0f b6 d0 movzbl %al,%edx - 1fc: 48 83 c3 04 add $0x4,%rbx - 200: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000204 : - 204: 8b 03 mov (%rbx),%eax - 206: 0f b6 d0 movzbl %al,%edx - 209: 48 83 c3 04 add $0x4,%rbx - 20d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000211 : - 211: 8b 03 mov (%rbx),%eax - 213: 0f b6 d0 movzbl %al,%edx - 216: 48 83 c3 04 add $0x4,%rbx - 21a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000021e : - 21e: 8b 03 mov (%rbx),%eax - 220: 0f b6 d0 movzbl %al,%edx - 223: 48 83 c3 04 add $0x4,%rbx - 227: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000022b : - 22b: 8b 03 mov (%rbx),%eax - 22d: 0f b6 d0 movzbl %al,%edx - 230: 48 83 c3 04 add $0x4,%rbx - 234: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000238 : - 238: 4d 8b 55 18 mov 0x18(%r13),%r10 - 23c: 41 83 7a 20 00 cmpl $0x0,0x20(%r10) - 241: 74 17 je 25a - 243: 49 89 c7 mov %rax,%r15 - 246: 4d 89 c5 mov %r8,%r13 - 249: 48 89 ef mov %rbp,%rdi - 24c: 4c 89 c6 mov %r8,%rsi - 24f: e8 00 00 00 00 callq 254 - 254: 4d 89 e8 mov %r13,%r8 - 257: 4c 89 f8 mov %r15,%rax - 25a: 49 89 5c 24 28 mov %rbx,0x28(%r12) - 25f: 0f b6 cc movzbl %ah,%ecx - 262: c1 e8 10 shr $0x10,%eax - 265: 0f b6 d4 movzbl %ah,%edx - 268: 41 89 ca mov %ecx,%r10d - 26b: 85 d2 test %edx,%edx - 26d: 74 0e je 27d - 26f: ff ca dec %edx - 271: 89 d1 mov %edx,%ecx - 273: 41 c1 e2 04 shl $0x4,%r10d - 277: 4b 8d 14 10 lea (%r8,%r10,1),%rdx - 27b: eb 13 jmp 290 - 27d: 41 c1 e2 04 shl $0x4,%r10d - 281: 4b 8d 14 10 lea (%r8,%r10,1),%rdx - 285: 48 8b 4d 10 mov 0x10(%rbp),%rcx - 289: 48 29 d1 sub %rdx,%rcx - 28c: 48 c1 e9 04 shr $0x4,%rcx - 290: 48 89 ef mov %rbp,%rdi - 293: 4c 89 e6 mov %r12,%rsi - 296: e8 00 00 00 00 callq 29b - 29b: 66 41 f7 44 24 42 08 testw $0x8,0x42(%r12) - 2a2: 00 - 2a3: 0f 85 fa 04 00 00 jne 7a3 - 2a9: 4c 8b 65 20 mov 0x20(%rbp),%r12 - 2ad: 85 c0 test %eax,%eax - 2af: 74 09 je 2ba - 2b1: 4d 8b 6c 24 08 mov 0x8(%r12),%r13 - 2b6: 4c 89 6d 10 mov %r13,0x10(%rbp) - 2ba: e9 be 04 00 00 jmpq 77d - -00000000000002bf : - 2bf: 8b 03 mov (%rbx),%eax - 2c1: 0f b6 d0 movzbl %al,%edx - 2c4: 48 83 c3 04 add $0x4,%rbx - 2c8: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000002cc : - 2cc: 8b 03 mov (%rbx),%eax - 2ce: 0f b6 d0 movzbl %al,%edx - 2d1: 48 83 c3 04 add $0x4,%rbx - 2d5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000002d9 : - 2d9: 8b 03 mov (%rbx),%eax - 2db: 0f b6 d0 movzbl %al,%edx - 2de: 48 83 c3 04 add $0x4,%rbx - 2e2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000002e6 : - 2e6: 8b 03 mov (%rbx),%eax - 2e8: 0f b6 d0 movzbl %al,%edx - 2eb: 48 83 c3 04 add $0x4,%rbx - 2ef: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000002f3 : - 2f3: 8b 03 mov (%rbx),%eax - 2f5: 0f b6 d0 movzbl %al,%edx - 2f8: 48 83 c3 04 add $0x4,%rbx - 2fc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000300 : - 300: 8b 03 mov (%rbx),%eax - 302: 0f b6 d0 movzbl %al,%edx - 305: 48 83 c3 04 add $0x4,%rbx - 309: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000030d : - 30d: 8b 03 mov (%rbx),%eax - 30f: 0f b6 d0 movzbl %al,%edx - 312: 48 83 c3 04 add $0x4,%rbx - 316: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000031a : - 31a: 8b 03 mov (%rbx),%eax - 31c: 0f b6 d0 movzbl %al,%edx - 31f: 48 83 c3 04 add $0x4,%rbx - 323: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000327 : - 327: 8b 03 mov (%rbx),%eax - 329: 0f b6 d0 movzbl %al,%edx - 32c: 48 83 c3 04 add $0x4,%rbx - 330: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000334 : - 334: 8b 03 mov (%rbx),%eax - 336: 0f b6 d0 movzbl %al,%edx - 339: 48 83 c3 04 add $0x4,%rbx - 33d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000341 : - 341: 8b 03 mov (%rbx),%eax - 343: 0f b6 d0 movzbl %al,%edx - 346: 48 83 c3 04 add $0x4,%rbx - 34a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000034e : - 34e: 8b 03 mov (%rbx),%eax - 350: 0f b6 d0 movzbl %al,%edx - 353: 48 83 c3 04 add $0x4,%rbx - 357: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000035b : - 35b: 8b 03 mov (%rbx),%eax - 35d: 0f b6 d0 movzbl %al,%edx - 360: 48 83 c3 04 add $0x4,%rbx - 364: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000368 : - 368: 8b 03 mov (%rbx),%eax - 36a: 0f b6 d0 movzbl %al,%edx - 36d: 48 83 c3 04 add $0x4,%rbx - 371: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000375 : - 375: 8b 03 mov (%rbx),%eax - 377: 0f b6 d0 movzbl %al,%edx - 37a: 48 83 c3 04 add $0x4,%rbx - 37e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000382 : - 382: 8b 03 mov (%rbx),%eax - 384: 0f b6 d0 movzbl %al,%edx - 387: 48 83 c3 04 add $0x4,%rbx - 38b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000038f : - 38f: 8b 03 mov (%rbx),%eax - 391: 0f b6 d0 movzbl %al,%edx - 394: 48 83 c3 04 add $0x4,%rbx - 398: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000039c : - 39c: 8b 03 mov (%rbx),%eax - 39e: 0f b6 d0 movzbl %al,%edx - 3a1: 48 83 c3 04 add $0x4,%rbx - 3a5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003a9 : - 3a9: 8b 03 mov (%rbx),%eax - 3ab: 0f b6 d0 movzbl %al,%edx - 3ae: 48 83 c3 04 add $0x4,%rbx - 3b2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003b6 : - 3b6: 8b 03 mov (%rbx),%eax - 3b8: 0f b6 d0 movzbl %al,%edx - 3bb: 48 83 c3 04 add $0x4,%rbx - 3bf: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003c3 : - 3c3: 8b 03 mov (%rbx),%eax - 3c5: 0f b6 d0 movzbl %al,%edx - 3c8: 48 83 c3 04 add $0x4,%rbx - 3cc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003d0 : - 3d0: 8b 03 mov (%rbx),%eax - 3d2: 0f b6 d0 movzbl %al,%edx - 3d5: 48 83 c3 04 add $0x4,%rbx - 3d9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003dd : - 3dd: 8b 03 mov (%rbx),%eax - 3df: 0f b6 d0 movzbl %al,%edx - 3e2: 48 83 c3 04 add $0x4,%rbx - 3e6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003ea : - 3ea: 8b 03 mov (%rbx),%eax - 3ec: 0f b6 d0 movzbl %al,%edx - 3ef: 48 83 c3 04 add $0x4,%rbx - 3f3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000003f7 : - 3f7: 8b 03 mov (%rbx),%eax - 3f9: 0f b6 d0 movzbl %al,%edx - 3fc: 48 83 c3 04 add $0x4,%rbx - 400: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000404 : - 404: 8b 03 mov (%rbx),%eax - 406: 0f b6 d0 movzbl %al,%edx - 409: 48 83 c3 04 add $0x4,%rbx - 40d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000411 : - 411: 8b 03 mov (%rbx),%eax - 413: 0f b6 d0 movzbl %al,%edx - 416: 48 83 c3 04 add $0x4,%rbx - 41a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000041e : - 41e: 8b 03 mov (%rbx),%eax - 420: 0f b6 d0 movzbl %al,%edx - 423: 48 83 c3 04 add $0x4,%rbx - 427: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000042b : - 42b: 8b 03 mov (%rbx),%eax - 42d: 0f b6 d0 movzbl %al,%edx - 430: 48 83 c3 04 add $0x4,%rbx - 434: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000438 : - 438: 8b 03 mov (%rbx),%eax - 43a: 0f b6 d0 movzbl %al,%edx - 43d: 48 83 c3 04 add $0x4,%rbx - 441: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000445 : - 445: 8b 03 mov (%rbx),%eax - 447: 0f b6 d0 movzbl %al,%edx - 44a: 48 83 c3 04 add $0x4,%rbx - 44e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000452 : - 452: 8b 03 mov (%rbx),%eax - 454: 0f b6 d0 movzbl %al,%edx - 457: 48 83 c3 04 add $0x4,%rbx - 45b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000045f : - 45f: 8b 03 mov (%rbx),%eax - 461: 0f b6 d0 movzbl %al,%edx - 464: 48 83 c3 04 add $0x4,%rbx - 468: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000046c : - 46c: 8b 03 mov (%rbx),%eax - 46e: 0f b6 d0 movzbl %al,%edx - 471: 48 83 c3 04 add $0x4,%rbx - 475: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000479 : - 479: 8b 03 mov (%rbx),%eax - 47b: 0f b6 d0 movzbl %al,%edx - 47e: 48 83 c3 04 add $0x4,%rbx - 482: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000486 : - 486: 8b 03 mov (%rbx),%eax - 488: 0f b6 d0 movzbl %al,%edx - 48b: 48 83 c3 04 add $0x4,%rbx - 48f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000493 : - 493: 8b 03 mov (%rbx),%eax - 495: 0f b6 d0 movzbl %al,%edx - 498: 48 83 c3 04 add $0x4,%rbx - 49c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004a0 : - 4a0: 8b 03 mov (%rbx),%eax - 4a2: 0f b6 d0 movzbl %al,%edx - 4a5: 48 83 c3 04 add $0x4,%rbx - 4a9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004ad : - 4ad: 8b 03 mov (%rbx),%eax - 4af: 0f b6 d0 movzbl %al,%edx - 4b2: 48 83 c3 04 add $0x4,%rbx - 4b6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004ba : - 4ba: 8b 03 mov (%rbx),%eax - 4bc: 0f b6 d0 movzbl %al,%edx - 4bf: 48 83 c3 04 add $0x4,%rbx - 4c3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004c7 : - 4c7: 8b 03 mov (%rbx),%eax - 4c9: 0f b6 d0 movzbl %al,%edx - 4cc: 48 83 c3 04 add $0x4,%rbx - 4d0: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004d4 : - 4d4: 8b 03 mov (%rbx),%eax - 4d6: 0f b6 d0 movzbl %al,%edx - 4d9: 48 83 c3 04 add $0x4,%rbx - 4dd: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004e1 : - 4e1: 8b 03 mov (%rbx),%eax - 4e3: 0f b6 d0 movzbl %al,%edx - 4e6: 48 83 c3 04 add $0x4,%rbx - 4ea: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004ee : - 4ee: 8b 03 mov (%rbx),%eax - 4f0: 0f b6 d0 movzbl %al,%edx - 4f3: 48 83 c3 04 add $0x4,%rbx - 4f7: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000004fb : - 4fb: 8b 03 mov (%rbx),%eax - 4fd: 0f b6 d0 movzbl %al,%edx - 500: 48 83 c3 04 add $0x4,%rbx - 504: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000508 : - 508: 8b 03 mov (%rbx),%eax - 50a: 0f b6 d0 movzbl %al,%edx - 50d: 48 83 c3 04 add $0x4,%rbx - 511: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000515 : - 515: 8b 03 mov (%rbx),%eax - 517: 0f b6 d0 movzbl %al,%edx - 51a: 48 83 c3 04 add $0x4,%rbx - 51e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000522 : - 522: 0f b6 cc movzbl %ah,%ecx - 525: c1 e1 04 shl $0x4,%ecx - 528: 4d 8d 0c 08 lea (%r8,%rcx,1),%r9 - 52c: 4d 8b 11 mov (%r9),%r10 - 52f: 4d 03 51 20 add 0x20(%r9),%r10 - 533: 4d 3b 51 10 cmp 0x10(%r9),%r10 - 537: 7f 1f jg 558 - 539: 4d 89 11 mov %r10,(%r9) - 53c: 4d 8d 59 30 lea 0x30(%r9),%r11 - 540: 4d 89 13 mov %r10,(%r11) - 543: 66 41 c7 43 08 13 00 movw $0x13,0x8(%r11) - 54a: c1 e8 10 shr $0x10,%eax - 54d: 0f b7 d0 movzwl %ax,%edx - 550: 48 8d 9c 93 00 00 fe lea -0x20000(%rbx,%rdx,4),%rbx - 557: ff - 558: 8b 03 mov (%rbx),%eax - 55a: 0f b6 d0 movzbl %al,%edx - 55d: 48 83 c3 04 add $0x4,%rbx - 561: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000565 : - 565: 0f b6 cc movzbl %ah,%ecx - 568: c1 e1 04 shl $0x4,%ecx - 56b: 4d 8d 0c 08 lea (%r8,%rcx,1),%r9 - 56f: 4d 8b 11 mov (%r9),%r10 - 572: 49 ff c2 inc %r10 - 575: 4d 3b 51 10 cmp 0x10(%r9),%r10 - 579: 7f 1f jg 59a - 57b: 4d 89 11 mov %r10,(%r9) - 57e: 4d 8d 59 30 lea 0x30(%r9),%r11 - 582: 4d 89 13 mov %r10,(%r11) - 585: 66 41 c7 43 08 13 00 movw $0x13,0x8(%r11) - 58c: c1 e8 10 shr $0x10,%eax - 58f: 0f b7 d0 movzwl %ax,%edx - 592: 48 8d 9c 93 00 00 fe lea -0x20000(%rbx,%rdx,4),%rbx - 599: ff - 59a: 8b 03 mov (%rbx),%eax - 59c: 0f b6 d0 movzbl %al,%edx - 59f: 48 83 c3 04 add $0x4,%rbx - 5a3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000005a7 : - 5a7: 0f b6 cc movzbl %ah,%ecx - 5aa: c1 e8 10 shr $0x10,%eax - 5ad: 0f b7 d0 movzwl %ax,%edx - 5b0: c1 e1 04 shl $0x4,%ecx - 5b3: 49 8d 04 08 lea (%r8,%rcx,1),%rax - 5b7: 4c 8b 10 mov (%rax),%r10 - 5ba: 4c 2b 50 20 sub 0x20(%rax),%r10 - 5be: 4c 89 10 mov %r10,(%rax) - 5c1: 48 8d 9c 93 00 00 fe lea -0x20000(%rbx,%rdx,4),%rbx - 5c8: ff - 5c9: 8b 03 mov (%rbx),%eax - 5cb: 0f b6 d0 movzbl %al,%edx - 5ce: 48 83 c3 04 add $0x4,%rbx - 5d2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000005d6 : - 5d6: 0f b6 cc movzbl %ah,%ecx - 5d9: c1 e8 10 shr $0x10,%eax - 5dc: 0f b7 d0 movzwl %ax,%edx - 5df: c1 e1 04 shl $0x4,%ecx - 5e2: 49 8d 04 08 lea (%r8,%rcx,1),%rax - 5e6: 4c 8b 10 mov (%rax),%r10 - 5e9: 49 ff ca dec %r10 - 5ec: 4c 89 10 mov %r10,(%rax) - 5ef: 48 8d 9c 93 00 00 fe lea -0x20000(%rbx,%rdx,4),%rbx - 5f6: ff - 5f7: 8b 03 mov (%rbx),%eax - 5f9: 0f b6 d0 movzbl %al,%edx - 5fc: 48 83 c3 04 add $0x4,%rbx - 600: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000604 : - 604: 8b 03 mov (%rbx),%eax - 606: 0f b6 d0 movzbl %al,%edx - 609: 48 83 c3 04 add $0x4,%rbx - 60d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000611 : - 611: 8b 03 mov (%rbx),%eax - 613: 0f b6 d0 movzbl %al,%edx - 616: 48 83 c3 04 add $0x4,%rbx - 61a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000061e : - 61e: 8b 03 mov (%rbx),%eax - 620: 0f b6 d0 movzbl %al,%edx - 623: 48 83 c3 04 add $0x4,%rbx - 627: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000062b : - 62b: 8b 03 mov (%rbx),%eax - 62d: 0f b6 d0 movzbl %al,%edx - 630: 48 83 c3 04 add $0x4,%rbx - 634: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000638 : - 638: 8b 03 mov (%rbx),%eax - 63a: 0f b6 d0 movzbl %al,%edx - 63d: 48 83 c3 04 add $0x4,%rbx - 641: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000645 : - 645: 8b 03 mov (%rbx),%eax - 647: 0f b6 d0 movzbl %al,%edx - 64a: 48 83 c3 04 add $0x4,%rbx - 64e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000652 : - 652: 8b 03 mov (%rbx),%eax - 654: 0f b6 d0 movzbl %al,%edx - 657: 48 83 c3 04 add $0x4,%rbx - 65b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000065f : - 65f: 8b 03 mov (%rbx),%eax - 661: 0f b6 d0 movzbl %al,%edx - 664: 48 83 c3 04 add $0x4,%rbx - 668: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000066c : - 66c: 8b 03 mov (%rbx),%eax - 66e: 0f b6 d0 movzbl %al,%edx - 671: 48 83 c3 04 add $0x4,%rbx - 675: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000679 : - 679: 8b 03 mov (%rbx),%eax - 67b: 0f b6 d0 movzbl %al,%edx - 67e: 48 83 c3 04 add $0x4,%rbx - 682: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000686 : - 686: 8b 03 mov (%rbx),%eax - 688: 0f b6 d0 movzbl %al,%edx - 68b: 48 83 c3 04 add $0x4,%rbx - 68f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000693 : - 693: 8b 03 mov (%rbx),%eax - 695: 0f b6 d0 movzbl %al,%edx - 698: 48 83 c3 04 add $0x4,%rbx - 69c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006a0 : - 6a0: 8b 03 mov (%rbx),%eax - 6a2: 0f b6 d0 movzbl %al,%edx - 6a5: 48 83 c3 04 add $0x4,%rbx - 6a9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006ad : - 6ad: 8b 03 mov (%rbx),%eax - 6af: 0f b6 d0 movzbl %al,%edx - 6b2: 48 83 c3 04 add $0x4,%rbx - 6b6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006ba : - 6ba: 8b 03 mov (%rbx),%eax - 6bc: 0f b6 d0 movzbl %al,%edx - 6bf: 48 83 c3 04 add $0x4,%rbx - 6c3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006c7 : - 6c7: 8b 03 mov (%rbx),%eax - 6c9: 0f b6 d0 movzbl %al,%edx - 6cc: 48 83 c3 04 add $0x4,%rbx - 6d0: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006d4 : - 6d4: 8b 03 mov (%rbx),%eax - 6d6: 0f b6 d0 movzbl %al,%edx - 6d9: 48 83 c3 04 add $0x4,%rbx - 6dd: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006e1 : - 6e1: 8b 03 mov (%rbx),%eax - 6e3: 0f b6 d0 movzbl %al,%edx - 6e6: 48 83 c3 04 add $0x4,%rbx - 6ea: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006ee : - 6ee: 8b 03 mov (%rbx),%eax - 6f0: 0f b6 d0 movzbl %al,%edx - 6f3: 48 83 c3 04 add $0x4,%rbx - 6f7: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000006fb : - 6fb: 8b 03 mov (%rbx),%eax - 6fd: 0f b6 d0 movzbl %al,%edx - 700: 48 83 c3 04 add $0x4,%rbx - 704: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000708 : - 708: 8b 03 mov (%rbx),%eax - 70a: 0f b6 d0 movzbl %al,%edx - 70d: 48 83 c3 04 add $0x4,%rbx - 711: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000715 : - 715: 8b 03 mov (%rbx),%eax - 717: 0f b6 d0 movzbl %al,%edx - 71a: 48 83 c3 04 add $0x4,%rbx - 71e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000722 : - 722: 8b 03 mov (%rbx),%eax - 724: 0f b6 d0 movzbl %al,%edx - 727: 48 83 c3 04 add $0x4,%rbx - 72b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000072f : - 72f: 8b 03 mov (%rbx),%eax - 731: 0f b6 d0 movzbl %al,%edx - 734: 48 83 c3 04 add $0x4,%rbx - 738: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -000000000000073c : - 73c: 8b 03 mov (%rbx),%eax - 73e: 0f b6 d0 movzbl %al,%edx - 741: 48 83 c3 04 add $0x4,%rbx - 745: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000749 : - 749: 8b 03 mov (%rbx),%eax - 74b: 0f b6 d0 movzbl %al,%edx - 74e: 48 83 c3 04 add $0x4,%rbx - 752: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -0000000000000756 : - 756: 55 push %rbp - 757: 53 push %rbx - 758: 41 57 push %r15 - 75a: 41 56 push %r14 - 75c: 41 55 push %r13 - 75e: 41 54 push %r12 - 760: 48 83 ec 28 sub $0x28,%rsp - 764: 48 89 fd mov %rdi,%rbp - 767: 4c 8b 75 18 mov 0x18(%rbp),%r14 - 76b: 49 81 c6 40 05 00 00 add $0x540,%r14 - 772: 4c 8b 65 20 mov 0x20(%rbp),%r12 - 776: 66 41 83 4c 24 42 08 orw $0x8,0x42(%r12) - -000000000000077d : - 77d: 4d 8b 14 24 mov (%r12),%r10 - 781: 4d 8b 2a mov (%r10),%r13 - 784: 4d 8b 44 24 20 mov 0x20(%r12),%r8 - 789: 49 8b 5d 18 mov 0x18(%r13),%rbx - 78d: 4c 8b 7b 30 mov 0x30(%rbx),%r15 - 791: 49 8b 5c 24 28 mov 0x28(%r12),%rbx - 796: 8b 03 mov (%rbx),%eax - 798: 0f b6 d0 movzbl %al,%edx - 79b: 48 83 c3 04 add $0x4,%rbx - 79f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -00000000000007a3 : - 7a3: 48 83 c4 28 add $0x28,%rsp - 7a7: 41 5c pop %r12 - 7a9: 41 5d pop %r13 - 7ab: 41 5e pop %r14 - 7ad: 41 5f pop %r15 - 7af: 5b pop %rbx - 7b0: 5d pop %rbp - 7b1: c3 retq diff --git a/vmbuilder/asm/vm-win64.asm b/vmbuilder/asm/vm-win64.asm deleted file mode 100644 index f16aab2..0000000 --- a/vmbuilder/asm/vm-win64.asm +++ /dev/null @@ -1,995 +0,0 @@ - -vm.obj: file format COFF-x86-64 - -Disassembly of section .text: -ravi_vm_asm_begin: - 0: 0f b6 cc movzbl %ah, %ecx - 3: c1 e8 10 shrl $16, %eax - 6: 0f b6 d4 movzbl %ah, %edx - 9: c1 e2 04 shll $4, %edx - c: 4d 8d 14 10 leaq (%r8,%rdx), %r10 - 10: c1 e1 04 shll $4, %ecx - 13: 4d 8d 1c 08 leaq (%r8,%rcx), %r11 - 17: 49 8b 02 movq (%r10), %rax - 1a: 45 8b 4a 08 movl 8(%r10), %r9d - 1e: 49 89 03 movq %rax, (%r11) - 21: 45 89 4b 08 movl %r9d, 8(%r11) - 25: 8b 03 movl (%rbx), %eax - 27: 0f b6 d0 movzbl %al, %edx - 2a: 48 83 c3 04 addq $4, %rbx - 2e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADK: - 32: 0f b6 cc movzbl %ah, %ecx - 35: c1 e8 10 shrl $16, %eax - 38: 0f b7 d0 movzwl %ax, %edx - 3b: c1 e2 04 shll $4, %edx - 3e: 4d 8d 14 17 leaq (%r15,%rdx), %r10 - 42: c1 e1 04 shll $4, %ecx - 45: 4d 8d 1c 08 leaq (%r8,%rcx), %r11 - 49: 49 8b 02 movq (%r10), %rax - 4c: 45 8b 4a 08 movl 8(%r10), %r9d - 50: 49 89 03 movq %rax, (%r11) - 53: 45 89 4b 08 movl %r9d, 8(%r11) - 57: 8b 03 movl (%rbx), %eax - 59: 0f b6 d0 movzbl %al, %edx - 5c: 48 83 c3 04 addq $4, %rbx - 60: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADKX: - 64: 8b 03 movl (%rbx), %eax - 66: 0f b6 d0 movzbl %al, %edx - 69: 48 83 c3 04 addq $4, %rbx - 6d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADBOOL: - 71: 8b 03 movl (%rbx), %eax - 73: 0f b6 d0 movzbl %al, %edx - 76: 48 83 c3 04 addq $4, %rbx - 7a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADNIL: - 7e: 8b 03 movl (%rbx), %eax - 80: 0f b6 d0 movzbl %al, %edx - 83: 48 83 c3 04 addq $4, %rbx - 87: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETUPVAL: - 8b: 8b 03 movl (%rbx), %eax - 8d: 0f b6 d0 movzbl %al, %edx - 90: 48 83 c3 04 addq $4, %rbx - 94: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABUP: - 98: 8b 03 movl (%rbx), %eax - 9a: 0f b6 d0 movzbl %al, %edx - 9d: 48 83 c3 04 addq $4, %rbx - a1: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE: - a5: 8b 03 movl (%rbx), %eax - a7: 0f b6 d0 movzbl %al, %edx - aa: 48 83 c3 04 addq $4, %rbx - ae: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABUP: - b2: 8b 03 movl (%rbx), %eax - b4: 0f b6 d0 movzbl %al, %edx - b7: 48 83 c3 04 addq $4, %rbx - bb: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVAL: - bf: 8b 03 movl (%rbx), %eax - c1: 0f b6 d0 movzbl %al, %edx - c4: 48 83 c3 04 addq $4, %rbx - c8: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE: - cc: 8b 03 movl (%rbx), %eax - ce: 0f b6 d0 movzbl %al, %edx - d1: 48 83 c3 04 addq $4, %rbx - d5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_NEWTABLE: - d9: 8b 03 movl (%rbx), %eax - db: 0f b6 d0 movzbl %al, %edx - de: 48 83 c3 04 addq $4, %rbx - e2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SELF: - e6: 8b 03 movl (%rbx), %eax - e8: 0f b6 d0 movzbl %al, %edx - eb: 48 83 c3 04 addq $4, %rbx - ef: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_ADD: - f3: 8b 03 movl (%rbx), %eax - f5: 0f b6 d0 movzbl %al, %edx - f8: 48 83 c3 04 addq $4, %rbx - fc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SUB: - 100: 8b 03 movl (%rbx), %eax - 102: 0f b6 d0 movzbl %al, %edx - 105: 48 83 c3 04 addq $4, %rbx - 109: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MUL: - 10d: 8b 03 movl (%rbx), %eax - 10f: 0f b6 d0 movzbl %al, %edx - 112: 48 83 c3 04 addq $4, %rbx - 116: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOD: - 11a: 8b 03 movl (%rbx), %eax - 11c: 0f b6 d0 movzbl %al, %edx - 11f: 48 83 c3 04 addq $4, %rbx - 123: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_POW: - 127: 8b 03 movl (%rbx), %eax - 129: 0f b6 d0 movzbl %al, %edx - 12c: 48 83 c3 04 addq $4, %rbx - 130: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_DIV: - 134: 8b 03 movl (%rbx), %eax - 136: 0f b6 d0 movzbl %al, %edx - 139: 48 83 c3 04 addq $4, %rbx - 13d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_IDIV: - 141: 8b 03 movl (%rbx), %eax - 143: 0f b6 d0 movzbl %al, %edx - 146: 48 83 c3 04 addq $4, %rbx - 14a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BAND: - 14e: 8b 03 movl (%rbx), %eax - 150: 0f b6 d0 movzbl %al, %edx - 153: 48 83 c3 04 addq $4, %rbx - 157: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BOR: - 15b: 8b 03 movl (%rbx), %eax - 15d: 0f b6 d0 movzbl %al, %edx - 160: 48 83 c3 04 addq $4, %rbx - 164: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BXOR: - 168: 8b 03 movl (%rbx), %eax - 16a: 0f b6 d0 movzbl %al, %edx - 16d: 48 83 c3 04 addq $4, %rbx - 171: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SHL: - 175: 8b 03 movl (%rbx), %eax - 177: 0f b6 d0 movzbl %al, %edx - 17a: 48 83 c3 04 addq $4, %rbx - 17e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SHR: - 182: 8b 03 movl (%rbx), %eax - 184: 0f b6 d0 movzbl %al, %edx - 187: 48 83 c3 04 addq $4, %rbx - 18b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_UNM: - 18f: 8b 03 movl (%rbx), %eax - 191: 0f b6 d0 movzbl %al, %edx - 194: 48 83 c3 04 addq $4, %rbx - 198: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BNOT: - 19c: 8b 03 movl (%rbx), %eax - 19e: 0f b6 d0 movzbl %al, %edx - 1a1: 48 83 c3 04 addq $4, %rbx - 1a5: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_NOT: - 1a9: 8b 03 movl (%rbx), %eax - 1ab: 0f b6 d0 movzbl %al, %edx - 1ae: 48 83 c3 04 addq $4, %rbx - 1b2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LEN: - 1b6: 8b 03 movl (%rbx), %eax - 1b8: 0f b6 d0 movzbl %al, %edx - 1bb: 48 83 c3 04 addq $4, %rbx - 1bf: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_CONCAT: - 1c3: 8b 03 movl (%rbx), %eax - 1c5: 0f b6 d0 movzbl %al, %edx - 1c8: 48 83 c3 04 addq $4, %rbx - 1cc: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_JMP: - 1d0: 8b 03 movl (%rbx), %eax - 1d2: 0f b6 d0 movzbl %al, %edx - 1d5: 48 83 c3 04 addq $4, %rbx - 1d9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_EQ: - 1dd: 8b 03 movl (%rbx), %eax - 1df: 0f b6 d0 movzbl %al, %edx - 1e2: 48 83 c3 04 addq $4, %rbx - 1e6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LT: - 1ea: 8b 03 movl (%rbx), %eax - 1ec: 0f b6 d0 movzbl %al, %edx - 1ef: 48 83 c3 04 addq $4, %rbx - 1f3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LE: - 1f7: 8b 03 movl (%rbx), %eax - 1f9: 0f b6 d0 movzbl %al, %edx - 1fc: 48 83 c3 04 addq $4, %rbx - 200: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TEST: - 204: 8b 03 movl (%rbx), %eax - 206: 0f b6 d0 movzbl %al, %edx - 209: 48 83 c3 04 addq $4, %rbx - 20d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TESTSET: - 211: 8b 03 movl (%rbx), %eax - 213: 0f b6 d0 movzbl %al, %edx - 216: 48 83 c3 04 addq $4, %rbx - 21a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_CALL: - 21e: 8b 03 movl (%rbx), %eax - 220: 0f b6 d0 movzbl %al, %edx - 223: 48 83 c3 04 addq $4, %rbx - 227: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TAILCALL: - 22b: 8b 03 movl (%rbx), %eax - 22d: 0f b6 d0 movzbl %al, %edx - 230: 48 83 c3 04 addq $4, %rbx - 234: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_RETURN: - 238: 4d 8b 55 18 movq 24(%r13), %r10 - 23c: 41 83 7a 20 00 cmpl $0, 32(%r10) - 241: 74 17 je 23 - 243: 49 89 c7 movq %rax, %r15 - 246: 4d 89 c5 movq %r8, %r13 - 249: 48 89 e9 movq %rbp, %rcx - 24c: 4c 89 c2 movq %r8, %rdx - 24f: e8 00 00 00 00 callq 0 - 254: 4d 89 e8 movq %r13, %r8 - 257: 4c 89 f8 movq %r15, %rax - 25a: 49 89 5c 24 28 movq %rbx, 40(%r12) - 25f: 0f b6 cc movzbl %ah, %ecx - 262: c1 e8 10 shrl $16, %eax - 265: 0f b6 d4 movzbl %ah, %edx - 268: 41 89 ca movl %ecx, %r10d - 26b: 85 d2 testl %edx, %edx - 26d: 74 0f je 15 - 26f: ff ca decl %edx - 271: 41 89 d1 movl %edx, %r9d - 274: 41 c1 e2 04 shll $4, %r10d - 278: 4f 8d 04 10 leaq (%r8,%r10), %r8 - 27c: eb 13 jmp 19 - 27e: 41 c1 e2 04 shll $4, %r10d - 282: 4f 8d 04 10 leaq (%r8,%r10), %r8 - 286: 4c 8b 4d 10 movq 16(%rbp), %r9 - 28a: 4d 29 c1 subq %r8, %r9 - 28d: 49 c1 e9 04 shrq $4, %r9 - 291: 48 89 e9 movq %rbp, %rcx - 294: 4c 89 e2 movq %r12, %rdx - 297: e8 00 00 00 00 callq 0 - 29c: 66 41 f7 44 24 42 08 00 testw $8, 66(%r12) - 2a4: 0f 85 fc 04 00 00 jne 1276 - 2aa: 4c 8b 65 20 movq 32(%rbp), %r12 - 2ae: 85 c0 testl %eax, %eax - 2b0: 74 09 je 9 - 2b2: 4d 8b 6c 24 08 movq 8(%r12), %r13 - 2b7: 4c 89 6d 10 movq %r13, 16(%rbp) - 2bb: e9 c0 04 00 00 jmp 1216 - -ravi_BC_FORLOOP: - 2c0: 8b 03 movl (%rbx), %eax - 2c2: 0f b6 d0 movzbl %al, %edx - 2c5: 48 83 c3 04 addq $4, %rbx - 2c9: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_FORPREP: - 2cd: 8b 03 movl (%rbx), %eax - 2cf: 0f b6 d0 movzbl %al, %edx - 2d2: 48 83 c3 04 addq $4, %rbx - 2d6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TFORCALL: - 2da: 8b 03 movl (%rbx), %eax - 2dc: 0f b6 d0 movzbl %al, %edx - 2df: 48 83 c3 04 addq $4, %rbx - 2e3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TFORLOOP: - 2e7: 8b 03 movl (%rbx), %eax - 2e9: 0f b6 d0 movzbl %al, %edx - 2ec: 48 83 c3 04 addq $4, %rbx - 2f0: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETLIST: - 2f4: 8b 03 movl (%rbx), %eax - 2f6: 0f b6 d0 movzbl %al, %edx - 2f9: 48 83 c3 04 addq $4, %rbx - 2fd: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_CLOSURE: - 301: 8b 03 movl (%rbx), %eax - 303: 0f b6 d0 movzbl %al, %edx - 306: 48 83 c3 04 addq $4, %rbx - 30a: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_VARARG: - 30e: 8b 03 movl (%rbx), %eax - 310: 0f b6 d0 movzbl %al, %edx - 313: 48 83 c3 04 addq $4, %rbx - 317: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_EXTRAARG: - 31b: 8b 03 movl (%rbx), %eax - 31d: 0f b6 d0 movzbl %al, %edx - 320: 48 83 c3 04 addq $4, %rbx - 324: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_NEWARRAYI: - 328: 8b 03 movl (%rbx), %eax - 32a: 0f b6 d0 movzbl %al, %edx - 32d: 48 83 c3 04 addq $4, %rbx - 331: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_NEWARRAYF: - 335: 8b 03 movl (%rbx), %eax - 337: 0f b6 d0 movzbl %al, %edx - 33a: 48 83 c3 04 addq $4, %rbx - 33e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADIZ: - 342: 8b 03 movl (%rbx), %eax - 344: 0f b6 d0 movzbl %al, %edx - 347: 48 83 c3 04 addq $4, %rbx - 34b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LOADFZ: - 34f: 8b 03 movl (%rbx), %eax - 351: 0f b6 d0 movzbl %al, %edx - 354: 48 83 c3 04 addq $4, %rbx - 358: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_UNMF: - 35c: 8b 03 movl (%rbx), %eax - 35e: 0f b6 d0 movzbl %al, %edx - 361: 48 83 c3 04 addq $4, %rbx - 365: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_UNMI: - 369: 8b 03 movl (%rbx), %eax - 36b: 0f b6 d0 movzbl %al, %edx - 36e: 48 83 c3 04 addq $4, %rbx - 372: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_ADDFF: - 376: 8b 03 movl (%rbx), %eax - 378: 0f b6 d0 movzbl %al, %edx - 37b: 48 83 c3 04 addq $4, %rbx - 37f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_ADDFI: - 383: 8b 03 movl (%rbx), %eax - 385: 0f b6 d0 movzbl %al, %edx - 388: 48 83 c3 04 addq $4, %rbx - 38c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_ADDII: - 390: 8b 03 movl (%rbx), %eax - 392: 0f b6 d0 movzbl %al, %edx - 395: 48 83 c3 04 addq $4, %rbx - 399: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SUBFF: - 39d: 8b 03 movl (%rbx), %eax - 39f: 0f b6 d0 movzbl %al, %edx - 3a2: 48 83 c3 04 addq $4, %rbx - 3a6: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SUBFI: - 3aa: 8b 03 movl (%rbx), %eax - 3ac: 0f b6 d0 movzbl %al, %edx - 3af: 48 83 c3 04 addq $4, %rbx - 3b3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SUBIF: - 3b7: 8b 03 movl (%rbx), %eax - 3b9: 0f b6 d0 movzbl %al, %edx - 3bc: 48 83 c3 04 addq $4, %rbx - 3c0: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SUBII: - 3c4: 8b 03 movl (%rbx), %eax - 3c6: 0f b6 d0 movzbl %al, %edx - 3c9: 48 83 c3 04 addq $4, %rbx - 3cd: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MULFF: - 3d1: 8b 03 movl (%rbx), %eax - 3d3: 0f b6 d0 movzbl %al, %edx - 3d6: 48 83 c3 04 addq $4, %rbx - 3da: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MULFI: - 3de: 8b 03 movl (%rbx), %eax - 3e0: 0f b6 d0 movzbl %al, %edx - 3e3: 48 83 c3 04 addq $4, %rbx - 3e7: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MULII: - 3eb: 8b 03 movl (%rbx), %eax - 3ed: 0f b6 d0 movzbl %al, %edx - 3f0: 48 83 c3 04 addq $4, %rbx - 3f4: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_DIVFF: - 3f8: 8b 03 movl (%rbx), %eax - 3fa: 0f b6 d0 movzbl %al, %edx - 3fd: 48 83 c3 04 addq $4, %rbx - 401: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_DIVFI: - 405: 8b 03 movl (%rbx), %eax - 407: 0f b6 d0 movzbl %al, %edx - 40a: 48 83 c3 04 addq $4, %rbx - 40e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_DIVIF: - 412: 8b 03 movl (%rbx), %eax - 414: 0f b6 d0 movzbl %al, %edx - 417: 48 83 c3 04 addq $4, %rbx - 41b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_DIVII: - 41f: 8b 03 movl (%rbx), %eax - 421: 0f b6 d0 movzbl %al, %edx - 424: 48 83 c3 04 addq $4, %rbx - 428: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOINT: - 42c: 8b 03 movl (%rbx), %eax - 42e: 0f b6 d0 movzbl %al, %edx - 431: 48 83 c3 04 addq $4, %rbx - 435: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOFLT: - 439: 8b 03 movl (%rbx), %eax - 43b: 0f b6 d0 movzbl %al, %edx - 43e: 48 83 c3 04 addq $4, %rbx - 442: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOARRAYI: - 446: 8b 03 movl (%rbx), %eax - 448: 0f b6 d0 movzbl %al, %edx - 44b: 48 83 c3 04 addq $4, %rbx - 44f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOARRAYF: - 453: 8b 03 movl (%rbx), %eax - 455: 0f b6 d0 movzbl %al, %edx - 458: 48 83 c3 04 addq $4, %rbx - 45c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOTAB: - 460: 8b 03 movl (%rbx), %eax - 462: 0f b6 d0 movzbl %al, %edx - 465: 48 83 c3 04 addq $4, %rbx - 469: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOSTRING: - 46d: 8b 03 movl (%rbx), %eax - 46f: 0f b6 d0 movzbl %al, %edx - 472: 48 83 c3 04 addq $4, %rbx - 476: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOCLOSURE: - 47a: 8b 03 movl (%rbx), %eax - 47c: 0f b6 d0 movzbl %al, %edx - 47f: 48 83 c3 04 addq $4, %rbx - 483: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_TOTYPE: - 487: 8b 03 movl (%rbx), %eax - 489: 0f b6 d0 movzbl %al, %edx - 48c: 48 83 c3 04 addq $4, %rbx - 490: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOVEI: - 494: 8b 03 movl (%rbx), %eax - 496: 0f b6 d0 movzbl %al, %edx - 499: 48 83 c3 04 addq $4, %rbx - 49d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOVEF: - 4a1: 8b 03 movl (%rbx), %eax - 4a3: 0f b6 d0 movzbl %al, %edx - 4a6: 48 83 c3 04 addq $4, %rbx - 4aa: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOVEAI: - 4ae: 8b 03 movl (%rbx), %eax - 4b0: 0f b6 d0 movzbl %al, %edx - 4b3: 48 83 c3 04 addq $4, %rbx - 4b7: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOVEAF: - 4bb: 8b 03 movl (%rbx), %eax - 4bd: 0f b6 d0 movzbl %al, %edx - 4c0: 48 83 c3 04 addq $4, %rbx - 4c4: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_MOVETAB: - 4c8: 8b 03 movl (%rbx), %eax - 4ca: 0f b6 d0 movzbl %al, %edx - 4cd: 48 83 c3 04 addq $4, %rbx - 4d1: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE_AI: - 4d5: 8b 03 movl (%rbx), %eax - 4d7: 0f b6 d0 movzbl %al, %edx - 4da: 48 83 c3 04 addq $4, %rbx - 4de: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE_AF: - 4e2: 8b 03 movl (%rbx), %eax - 4e4: 0f b6 d0 movzbl %al, %edx - 4e7: 48 83 c3 04 addq $4, %rbx - 4eb: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_AI: - 4ef: 8b 03 movl (%rbx), %eax - 4f1: 0f b6 d0 movzbl %al, %edx - 4f4: 48 83 c3 04 addq $4, %rbx - 4f8: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_AF: - 4fc: 8b 03 movl (%rbx), %eax - 4fe: 0f b6 d0 movzbl %al, %edx - 501: 48 83 c3 04 addq $4, %rbx - 505: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_AII: - 509: 8b 03 movl (%rbx), %eax - 50b: 0f b6 d0 movzbl %al, %edx - 50e: 48 83 c3 04 addq $4, %rbx - 512: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_AFF: - 516: 8b 03 movl (%rbx), %eax - 518: 0f b6 d0 movzbl %al, %edx - 51b: 48 83 c3 04 addq $4, %rbx - 51f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_FORLOOP_IP: - 523: 0f b6 cc movzbl %ah, %ecx - 526: c1 e1 04 shll $4, %ecx - 529: 4d 8d 0c 08 leaq (%r8,%rcx), %r9 - 52d: 4d 8b 11 movq (%r9), %r10 - 530: 4d 03 51 20 addq 32(%r9), %r10 - 534: 4d 3b 51 10 cmpq 16(%r9), %r10 - 538: 7f 1f jg 31 - 53a: 4d 89 11 movq %r10, (%r9) - 53d: 4d 8d 59 30 leaq 48(%r9), %r11 - 541: 4d 89 13 movq %r10, (%r11) - 544: 66 41 c7 43 08 13 00 movw $19, 8(%r11) - 54b: c1 e8 10 shrl $16, %eax - 54e: 0f b7 d0 movzwl %ax, %edx - 551: 48 8d 9c 93 00 00 fe ff leaq -131072(%rbx,%rdx,4), %rbx - 559: 8b 03 movl (%rbx), %eax - 55b: 0f b6 d0 movzbl %al, %edx - 55e: 48 83 c3 04 addq $4, %rbx - 562: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_FORLOOP_I1: - 566: 0f b6 cc movzbl %ah, %ecx - 569: c1 e1 04 shll $4, %ecx - 56c: 4d 8d 0c 08 leaq (%r8,%rcx), %r9 - 570: 4d 8b 11 movq (%r9), %r10 - 573: 49 ff c2 incq %r10 - 576: 4d 3b 51 10 cmpq 16(%r9), %r10 - 57a: 7f 1f jg 31 - 57c: 4d 89 11 movq %r10, (%r9) - 57f: 4d 8d 59 30 leaq 48(%r9), %r11 - 583: 4d 89 13 movq %r10, (%r11) - 586: 66 41 c7 43 08 13 00 movw $19, 8(%r11) - 58d: c1 e8 10 shrl $16, %eax - 590: 0f b7 d0 movzwl %ax, %edx - 593: 48 8d 9c 93 00 00 fe ff leaq -131072(%rbx,%rdx,4), %rbx - 59b: 8b 03 movl (%rbx), %eax - 59d: 0f b6 d0 movzbl %al, %edx - 5a0: 48 83 c3 04 addq $4, %rbx - 5a4: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_FORPREP_IP: - 5a8: 0f b6 cc movzbl %ah, %ecx - 5ab: c1 e8 10 shrl $16, %eax - 5ae: 0f b7 d0 movzwl %ax, %edx - 5b1: c1 e1 04 shll $4, %ecx - 5b4: 49 8d 04 08 leaq (%r8,%rcx), %rax - 5b8: 4c 8b 10 movq (%rax), %r10 - 5bb: 4c 2b 50 20 subq 32(%rax), %r10 - 5bf: 4c 89 10 movq %r10, (%rax) - 5c2: 48 8d 9c 93 00 00 fe ff leaq -131072(%rbx,%rdx,4), %rbx - 5ca: 8b 03 movl (%rbx), %eax - 5cc: 0f b6 d0 movzbl %al, %edx - 5cf: 48 83 c3 04 addq $4, %rbx - 5d3: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_FORPREP_I1: - 5d7: 0f b6 cc movzbl %ah, %ecx - 5da: c1 e8 10 shrl $16, %eax - 5dd: 0f b7 d0 movzwl %ax, %edx - 5e0: c1 e1 04 shll $4, %ecx - 5e3: 49 8d 04 08 leaq (%r8,%rcx), %rax - 5e7: 4c 8b 10 movq (%rax), %r10 - 5ea: 49 ff ca decq %r10 - 5ed: 4c 89 10 movq %r10, (%rax) - 5f0: 48 8d 9c 93 00 00 fe ff leaq -131072(%rbx,%rdx,4), %rbx - 5f8: 8b 03 movl (%rbx), %eax - 5fa: 0f b6 d0 movzbl %al, %edx - 5fd: 48 83 c3 04 addq $4, %rbx - 601: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVALI: - 605: 8b 03 movl (%rbx), %eax - 607: 0f b6 d0 movzbl %al, %edx - 60a: 48 83 c3 04 addq $4, %rbx - 60e: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVALF: - 612: 8b 03 movl (%rbx), %eax - 614: 0f b6 d0 movzbl %al, %edx - 617: 48 83 c3 04 addq $4, %rbx - 61b: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVALAI: - 61f: 8b 03 movl (%rbx), %eax - 621: 0f b6 d0 movzbl %al, %edx - 624: 48 83 c3 04 addq $4, %rbx - 628: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVALAF: - 62c: 8b 03 movl (%rbx), %eax - 62e: 0f b6 d0 movzbl %al, %edx - 631: 48 83 c3 04 addq $4, %rbx - 635: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETUPVALT: - 639: 8b 03 movl (%rbx), %eax - 63b: 0f b6 d0 movzbl %al, %edx - 63e: 48 83 c3 04 addq $4, %rbx - 642: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BAND_II: - 646: 8b 03 movl (%rbx), %eax - 648: 0f b6 d0 movzbl %al, %edx - 64b: 48 83 c3 04 addq $4, %rbx - 64f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BOR_II: - 653: 8b 03 movl (%rbx), %eax - 655: 0f b6 d0 movzbl %al, %edx - 658: 48 83 c3 04 addq $4, %rbx - 65c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BXOR_II: - 660: 8b 03 movl (%rbx), %eax - 662: 0f b6 d0 movzbl %al, %edx - 665: 48 83 c3 04 addq $4, %rbx - 669: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SHL_II: - 66d: 8b 03 movl (%rbx), %eax - 66f: 0f b6 d0 movzbl %al, %edx - 672: 48 83 c3 04 addq $4, %rbx - 676: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SHR_II: - 67a: 8b 03 movl (%rbx), %eax - 67c: 0f b6 d0 movzbl %al, %edx - 67f: 48 83 c3 04 addq $4, %rbx - 683: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_BNOT_I: - 687: 8b 03 movl (%rbx), %eax - 689: 0f b6 d0 movzbl %al, %edx - 68c: 48 83 c3 04 addq $4, %rbx - 690: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_EQ_II: - 694: 8b 03 movl (%rbx), %eax - 696: 0f b6 d0 movzbl %al, %edx - 699: 48 83 c3 04 addq $4, %rbx - 69d: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_EQ_FF: - 6a1: 8b 03 movl (%rbx), %eax - 6a3: 0f b6 d0 movzbl %al, %edx - 6a6: 48 83 c3 04 addq $4, %rbx - 6aa: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LT_II: - 6ae: 8b 03 movl (%rbx), %eax - 6b0: 0f b6 d0 movzbl %al, %edx - 6b3: 48 83 c3 04 addq $4, %rbx - 6b7: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LT_FF: - 6bb: 8b 03 movl (%rbx), %eax - 6bd: 0f b6 d0 movzbl %al, %edx - 6c0: 48 83 c3 04 addq $4, %rbx - 6c4: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LE_II: - 6c8: 8b 03 movl (%rbx), %eax - 6ca: 0f b6 d0 movzbl %al, %edx - 6cd: 48 83 c3 04 addq $4, %rbx - 6d1: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_LE_FF: - 6d5: 8b 03 movl (%rbx), %eax - 6d7: 0f b6 d0 movzbl %al, %edx - 6da: 48 83 c3 04 addq $4, %rbx - 6de: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE_S: - 6e2: 8b 03 movl (%rbx), %eax - 6e4: 0f b6 d0 movzbl %al, %edx - 6e7: 48 83 c3 04 addq $4, %rbx - 6eb: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_S: - 6ef: 8b 03 movl (%rbx), %eax - 6f1: 0f b6 d0 movzbl %al, %edx - 6f4: 48 83 c3 04 addq $4, %rbx - 6f8: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SELF_S: - 6fc: 8b 03 movl (%rbx), %eax - 6fe: 0f b6 d0 movzbl %al, %edx - 701: 48 83 c3 04 addq $4, %rbx - 705: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE_I: - 709: 8b 03 movl (%rbx), %eax - 70b: 0f b6 d0 movzbl %al, %edx - 70e: 48 83 c3 04 addq $4, %rbx - 712: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_I: - 716: 8b 03 movl (%rbx), %eax - 718: 0f b6 d0 movzbl %al, %edx - 71b: 48 83 c3 04 addq $4, %rbx - 71f: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABLE_SK: - 723: 8b 03 movl (%rbx), %eax - 725: 0f b6 d0 movzbl %al, %edx - 728: 48 83 c3 04 addq $4, %rbx - 72c: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SELF_SK: - 730: 8b 03 movl (%rbx), %eax - 732: 0f b6 d0 movzbl %al, %edx - 735: 48 83 c3 04 addq $4, %rbx - 739: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_SETTABLE_SK: - 73d: 8b 03 movl (%rbx), %eax - 73f: 0f b6 d0 movzbl %al, %edx - 742: 48 83 c3 04 addq $4, %rbx - 746: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_BC_GETTABUP_SK: - 74a: 8b 03 movl (%rbx), %eax - 74c: 0f b6 d0 movzbl %al, %edx - 74f: 48 83 c3 04 addq $4, %rbx - 753: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_luaV_interp: - 757: 55 pushq %rbp - 758: 57 pushq %rdi - 759: 56 pushq %rsi - 75a: 53 pushq %rbx - 75b: 41 54 pushq %r12 - 75d: 41 55 pushq %r13 - 75f: 41 56 pushq %r14 - 761: 41 57 pushq %r15 - 763: 48 83 ec 28 subq $40, %rsp - 767: 48 89 cd movq %rcx, %rbp - 76a: 4c 8b 75 18 movq 24(%rbp), %r14 - 76e: 49 81 c6 40 05 00 00 addq $1344, %r14 - 775: 4c 8b 65 20 movq 32(%rbp), %r12 - 779: 66 41 83 4c 24 42 08 orw $8, 66(%r12) - -ravi_new_frame: - 780: 4d 8b 14 24 movq (%r12), %r10 - 784: 4d 8b 2a movq (%r10), %r13 - 787: 4d 8b 44 24 20 movq 32(%r12), %r8 - 78c: 49 8b 5d 18 movq 24(%r13), %rbx - 790: 4c 8b 7b 30 movq 48(%rbx), %r15 - 794: 49 8b 5c 24 28 movq 40(%r12), %rbx - 799: 8b 03 movl (%rbx), %eax - 79b: 0f b6 d0 movzbl %al, %edx - 79e: 48 83 c3 04 addq $4, %rbx - 7a2: 41 ff 24 d6 jmpq *(%r14,%rdx,8) - -ravi_vm_return: - 7a6: 48 83 c4 28 addq $40, %rsp - 7aa: 41 5f popq %r15 - 7ac: 41 5e popq %r14 - 7ae: 41 5d popq %r13 - 7b0: 41 5c popq %r12 - 7b2: 5b popq %rbx - 7b3: 5e popq %rsi - 7b4: 5f popq %rdi - 7b5: 5d popq %rbp - 7b6: c3 retq -SYMBOL TABLE: -[ 0](sec -1)(fl 0x00)(ty 0)(scl 3) (nx 0) 0x00000001 @feat.00 -[ 1](sec 1)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .text -AUX scnlen 0x7b7 nreloc 2 nlnno 0 checksum 0x0 assoc 0 comdat 0 -[ 3](sec 0)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 luaF_close -[ 4](sec 0)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 luaD_poscall -[ 5](sec 2)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .pdata -AUX scnlen 0xc nreloc 3 nlnno 0 checksum 0x0 assoc 0 comdat 0 -[ 7](sec 3)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .xdata -AUX scnlen 0x18 nreloc 0 nlnno 0 checksum 0x0 assoc 0 comdat 0 -[ 9](sec 1)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 ravi_vm_asm_begin -[10](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000000 ravi_BC_MOVE -[11](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000032 ravi_BC_LOADK -[12](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000064 ravi_BC_LOADKX -[13](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000071 ravi_BC_LOADBOOL -[14](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000007e ravi_BC_LOADNIL -[15](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000008b ravi_BC_GETUPVAL -[16](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000098 ravi_BC_GETTABUP -[17](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000a5 ravi_BC_GETTABLE -[18](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000b2 ravi_BC_SETTABUP -[19](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000bf ravi_BC_SETUPVAL -[20](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000cc ravi_BC_SETTABLE -[21](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000d9 ravi_BC_NEWTABLE -[22](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000e6 ravi_BC_SELF -[23](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000000f3 ravi_BC_ADD -[24](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000100 ravi_BC_SUB -[25](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000010d ravi_BC_MUL -[26](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000011a ravi_BC_MOD -[27](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000127 ravi_BC_POW -[28](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000134 ravi_BC_DIV -[29](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000141 ravi_BC_IDIV -[30](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000014e ravi_BC_BAND -[31](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000015b ravi_BC_BOR -[32](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000168 ravi_BC_BXOR -[33](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000175 ravi_BC_SHL -[34](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000182 ravi_BC_SHR -[35](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000018f ravi_BC_UNM -[36](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000019c ravi_BC_BNOT -[37](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001a9 ravi_BC_NOT -[38](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001b6 ravi_BC_LEN -[39](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001c3 ravi_BC_CONCAT -[40](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001d0 ravi_BC_JMP -[41](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001dd ravi_BC_EQ -[42](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001ea ravi_BC_LT -[43](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000001f7 ravi_BC_LE -[44](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000204 ravi_BC_TEST -[45](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000211 ravi_BC_TESTSET -[46](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000021e ravi_BC_CALL -[47](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000022b ravi_BC_TAILCALL -[48](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000238 ravi_BC_RETURN -[49](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000002c0 ravi_BC_FORLOOP -[50](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000002cd ravi_BC_FORPREP -[51](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000002da ravi_BC_TFORCALL -[52](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000002e7 ravi_BC_TFORLOOP -[53](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000002f4 ravi_BC_SETLIST -[54](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000301 ravi_BC_CLOSURE -[55](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000030e ravi_BC_VARARG -[56](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000031b ravi_BC_EXTRAARG -[57](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000328 ravi_BC_NEWARRAYI -[58](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000335 ravi_BC_NEWARRAYF -[59](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000342 ravi_BC_LOADIZ -[60](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000034f ravi_BC_LOADFZ -[61](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000035c ravi_BC_UNMF -[62](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000369 ravi_BC_UNMI -[63](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000376 ravi_BC_ADDFF -[64](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000383 ravi_BC_ADDFI -[65](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000390 ravi_BC_ADDII -[66](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000039d ravi_BC_SUBFF -[67](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003aa ravi_BC_SUBFI -[68](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003b7 ravi_BC_SUBIF -[69](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003c4 ravi_BC_SUBII -[70](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003d1 ravi_BC_MULFF -[71](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003de ravi_BC_MULFI -[72](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003eb ravi_BC_MULII -[73](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000003f8 ravi_BC_DIVFF -[74](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000405 ravi_BC_DIVFI -[75](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000412 ravi_BC_DIVIF -[76](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000041f ravi_BC_DIVII -[77](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000042c ravi_BC_TOINT -[78](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000439 ravi_BC_TOFLT -[79](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000446 ravi_BC_TOARRAYI -[80](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000453 ravi_BC_TOARRAYF -[81](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000460 ravi_BC_TOTAB -[82](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000046d ravi_BC_TOSTRING -[83](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000047a ravi_BC_TOCLOSURE -[84](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000487 ravi_BC_TOTYPE -[85](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000494 ravi_BC_MOVEI -[86](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004a1 ravi_BC_MOVEF -[87](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004ae ravi_BC_MOVEAI -[88](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004bb ravi_BC_MOVEAF -[89](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004c8 ravi_BC_MOVETAB -[90](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004d5 ravi_BC_GETTABLE_AI -[91](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004e2 ravi_BC_GETTABLE_AF -[92](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004ef ravi_BC_SETTABLE_AI -[93](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000004fc ravi_BC_SETTABLE_AF -[94](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000509 ravi_BC_SETTABLE_AII -[95](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000516 ravi_BC_SETTABLE_AFF -[96](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000523 ravi_BC_FORLOOP_IP -[97](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000566 ravi_BC_FORLOOP_I1 -[98](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000005a8 ravi_BC_FORPREP_IP -[99](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000005d7 ravi_BC_FORPREP_I1 -[100](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000605 ravi_BC_SETUPVALI -[101](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000612 ravi_BC_SETUPVALF -[102](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000061f ravi_BC_SETUPVALAI -[103](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000062c ravi_BC_SETUPVALAF -[104](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000639 ravi_BC_SETUPVALT -[105](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000646 ravi_BC_BAND_II -[106](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000653 ravi_BC_BOR_II -[107](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000660 ravi_BC_BXOR_II -[108](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000066d ravi_BC_SHL_II -[109](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000067a ravi_BC_SHR_II -[110](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000687 ravi_BC_BNOT_I -[111](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000694 ravi_BC_EQ_II -[112](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006a1 ravi_BC_EQ_FF -[113](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006ae ravi_BC_LT_II -[114](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006bb ravi_BC_LT_FF -[115](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006c8 ravi_BC_LE_II -[116](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006d5 ravi_BC_LE_FF -[117](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006e2 ravi_BC_GETTABLE_S -[118](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006ef ravi_BC_SETTABLE_S -[119](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000006fc ravi_BC_SELF_S -[120](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000709 ravi_BC_GETTABLE_I -[121](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000716 ravi_BC_SETTABLE_I -[122](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000723 ravi_BC_GETTABLE_SK -[123](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000730 ravi_BC_SELF_SK -[124](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000073d ravi_BC_SETTABLE_SK -[125](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x0000074a ravi_BC_GETTABUP_SK -[126](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000757 ravi_luaV_interp -[127](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x00000780 ravi_new_frame -[128](sec 1)(fl 0x00)(ty 20)(scl 2) (nx 0) 0x000007a6 ravi_vm_return -[129](sec 4)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .rdata$Z -AUX scnlen 0xd nreloc 0 nlnno 0 checksum 0x0 assoc 0 comdat 0 -Unwind info: - -Function Table: - Start Address: ravi_vm_asm_begin - End Address: ravi_vm_asm_begin + 0x07b7 - Unwind Info Address: .xdata - Version: 1 - Flags: 0 - Size of prolog: 0 - Number of Codes: 9 - No frame pointer used - Unwind Codes: - 0x00: UOP_AllocSmall 40 - 0x00: UOP_PushNonVol R15 - 0x00: UOP_PushNonVol R14 - 0x00: UOP_PushNonVol R13 - 0x00: UOP_PushNonVol R12 - 0x00: UOP_PushNonVol RBX - 0x00: UOP_PushNonVol RSI - 0x00: UOP_PushNonVol RDI - 0x00: UOP_PushNonVol RBP - diff --git a/vmbuilder/compiler-output/README.rst b/vmbuilder/compiler-output/README.rst deleted file mode 100644 index 3742a90..0000000 --- a/vmbuilder/compiler-output/README.rst +++ /dev/null @@ -1,11 +0,0 @@ -Assembler output from various compilers -======================================= - -The clang output was generated using:: - - clang -I ~/github/ravi/include -std=c99 -O3 -Wall -Wextra -DLUA_COMPAT_5_2 -DLUA_COMPAT_5_1 -DLUA_USE_MACOSX -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -DRAVI_USE_ASMVM -DRAVI_USE_COMPUTED_GOTO -S -g -c ~/github/ravi/src/lvm.c - - -The lvm.s was generated as follows: - - objdump -d -M intel -S CMakeFiles/libravinojit_static.dir/src/lvm.c.o > lvm.s diff --git a/vmbuilder/compiler-output/clang_lvm_compgoto_luabcdecode.s b/vmbuilder/compiler-output/clang_lvm_compgoto_luabcdecode.s deleted file mode 100644 index 5095fe6..0000000 --- a/vmbuilder/compiler-output/clang_lvm_compgoto_luabcdecode.s +++ /dev/null @@ -1,94972 +0,0 @@ - .section __TEXT,__text,regular,pure_instructions - .macosx_version_min 10, 11 - .file 1 "/Users/dylan/github/ravi/src" "lvm.c" - .file 2 "/Users/dylan/github/ravi/include" "ltm.h" - .file 3 "/Users/dylan/github/ravi/include" "lopcodes.h" - .file 4 "/Users/dylan/github/ravi/include" "lobject.h" - .file 5 "/Users/dylan/github/ravi/include" "lua.h" - .file 6 "/Users/dylan/github/ravi/include" "llimits.h" - .file 7 "/Users/dylan/github/ravi/include" "lstate.h" - .file 8 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/i386" "_types.h" - .file 9 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/sys/_types" "_size_t.h" - .file 10 "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/include" "stddef.h" - .file 11 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/sys/_types" "_intptr_t.h" - .file 12 "/Users/dylan/github/ravi/include" "lfunc.h" - .globl _luaV_tonumber_ - .align 4, 0x90 -_luaV_tonumber_: ## @luaV_tonumber_ -Lfunc_begin0: - .loc 1 77 0 ## /Users/dylan/github/ravi/src/lvm.c:77:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp0: - .cfi_def_cfa_offset 16 -Ltmp1: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp2: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - subq $24, %rsp -Ltmp3: - .cfi_offset %rbx, -40 -Ltmp4: - .cfi_offset %r14, -32 -Ltmp5: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:n <- %RSI - movq %rsi, %r14 -Ltmp6: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - movq %rdi, %rbx -Ltmp7: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp8: - .loc 1 79 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB0_2 -Ltmp9: -## BB#1: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 80 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 -Ltmp10: -LBB0_10: ## %select.end - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 85 8 ## /Users/dylan/github/ravi/src/lvm.c:85:8 - movsd %xmm0, (%r14) - movl $1, %r15d - jmp LBB0_11 -Ltmp11: -LBB0_2: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - xorl %r15d, %r15d - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB0_11 -Ltmp12: -## BB#3: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -40(%rbp), %rsi -Ltmp13: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp14: - cmpl $4, %esi - jne LBB0_5 -Ltmp15: -## BB#4: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - shrl $24, %ecx - jmp LBB0_6 -Ltmp16: -LBB0_5: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - movq 16(%rdx), %rcx -Ltmp17: -LBB0_6: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp18: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB0_11 -Ltmp19: -## BB#7: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -32(%rbp) - movq -40(%rbp), %rax - jne LBB0_9 -Ltmp20: -## BB#8: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - cvtsi2sdq %rax, %xmm0 - jmp LBB0_10 -Ltmp21: -LBB0_11: - .loc 1 90 1 ## /Users/dylan/github/ravi/src/lvm.c:90:1 - movl %r15d, %eax - addq $24, %rsp - popq %rbx - popq %r14 - popq %r15 - popq %rbp - retq -LBB0_9: ## %select.false -Ltmp22: - ##DEBUG_VALUE: luaV_tonumber_:n <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB0_10 -Ltmp23: -Lfunc_end0: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI1_0: - .quad 4607182418800017408 ## double 1 -LCPI1_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI1_2: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_tointeger - .align 4, 0x90 -_luaV_tointeger: ## @luaV_tointeger -Lfunc_begin1: - .loc 1 99 0 ## /Users/dylan/github/ravi/src/lvm.c:99:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp24: - .cfi_def_cfa_offset 16 -Ltmp25: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp26: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp27: - .cfi_offset %rbx, -56 -Ltmp28: - .cfi_offset %r12, -48 -Ltmp29: - .cfi_offset %r13, -40 -Ltmp30: - .cfi_offset %r14, -32 -Ltmp31: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_tointeger:obj <- %RDI - ##DEBUG_VALUE: luaV_tointeger:p <- %RSI - ##DEBUG_VALUE: luaV_tointeger:mode <- %EDX - movl %edx, %r15d -Ltmp32: - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - movq %rsi, %r14 -Ltmp33: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - movq %rdi, %rbx -Ltmp34: - ##DEBUG_VALUE: luaV_tointeger:obj <- %RBX - leaq -56(%rbp), %r12 - xorl %r13d, %r13d -Ltmp35: - .align 4, 0x90 -LBB1_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - .loc 1 102 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp36: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB1_11 -Ltmp37: -## BB#2: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - cmpl $3, %eax - je LBB1_3 -Ltmp38: -## BB#12: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB1_17 -Ltmp39: -## BB#13: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp40: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB1_15 -Ltmp41: -## BB#14: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB1_16 -Ltmp42: - .align 4, 0x90 -LBB1_15: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp43: -LBB1_16: ## in Loop: Header=BB1_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax - movq %r12, %rbx - je LBB1_1 - jmp LBB1_17 -Ltmp44: -LBB1_11: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB1_10 -Ltmp45: -LBB1_3: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp46: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -64(%rbp) ## 8-byte Spill -Ltmp47: - ##DEBUG_VALUE: n <- [%RBP+-64] - callq _floor -Ltmp48: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -64(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB1_4 - jnp LBB1_7 -Ltmp49: -LBB1_4: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - ##DEBUG_VALUE: f <- %XMM0 - xorl %r13d, %r13d - .loc 1 106 16 ## /Users/dylan/github/ravi/src/lvm.c:106:16 -Ltmp50: - testl %r15d, %r15d - je LBB1_17 -Ltmp51: -## BB#5: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- %R15D - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 107 21 ## /Users/dylan/github/ravi/src/lvm.c:107:21 - cmpl $1, %r15d - jle LBB1_7 -Ltmp52: -## BB#6: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 108 11 ## /Users/dylan/github/ravi/src/lvm.c:108:11 - addsd LCPI1_0(%rip), %xmm0 -Ltmp53: -LBB1_7: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - xorl %r13d, %r13d - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI1_1(%rip), %xmm0 - jb LBB1_17 -Ltmp54: -## BB#8: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - movsd LCPI1_2(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB1_17 -Ltmp55: -## BB#9: - ##DEBUG_VALUE: luaV_tointeger:p <- %R14 - cvttsd2si %xmm0, %rax -Ltmp56: -LBB1_10: ## %.loopexit - movq %rax, (%r14) - movl $1, %r13d -Ltmp57: -LBB1_17: ## %.loopexit - .loc 1 122 1 ## /Users/dylan/github/ravi/src/lvm.c:122:1 - movl %r13d, %eax - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp58: -Lfunc_end1: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI2_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI2_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_tointeger_ - .align 4, 0x90 -_luaV_tointeger_: ## @luaV_tointeger_ -Lfunc_begin2: - .loc 1 128 0 ## /Users/dylan/github/ravi/src/lvm.c:128:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp59: - .cfi_def_cfa_offset 16 -Ltmp60: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp61: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $32, %rsp -Ltmp62: - .cfi_offset %rbx, -48 -Ltmp63: - .cfi_offset %r12, -40 -Ltmp64: - .cfi_offset %r14, -32 -Ltmp65: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %RDI - ##DEBUG_VALUE: luaV_tointeger_:p <- %RSI - movq %rsi, %r14 -Ltmp66: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - movq %rdi, %rbx -Ltmp67: - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %RBX - leaq -48(%rbp), %r15 - xorl %r12d, %r12d -Ltmp68: - .align 4, 0x90 -LBB2_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp69: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB2_8 -Ltmp70: -## BB#2: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - cmpl $3, %eax - je LBB2_3 -Ltmp71: -## BB#9: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB2_14 -Ltmp72: -## BB#10: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp73: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r15, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB2_12 -Ltmp74: -## BB#11: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - shrl $24, %ecx - jmp LBB2_13 -Ltmp75: - .align 4, 0x90 -LBB2_12: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - movq 16(%rdx), %rcx -Ltmp76: -LBB2_13: ## in Loop: Header=BB2_1 Depth=1 - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp77: - .loc 1 129 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %r15, %rbx - je LBB2_1 - jmp LBB2_14 -Ltmp78: -LBB2_8: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB2_7 -Ltmp79: -LBB2_3: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp80: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -56(%rbp) ## 8-byte Spill -Ltmp81: - ##DEBUG_VALUE: n <- [%RBP+-56] - callq _floor -Ltmp82: - ##DEBUG_VALUE: f <- %XMM0 - xorl %r12d, %r12d - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -56(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB2_14 - jp LBB2_14 -Ltmp83: -## BB#4: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI2_0(%rip), %xmm0 - jb LBB2_14 -Ltmp84: -## BB#5: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - movsd LCPI2_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB2_14 -Ltmp85: -## BB#6: - ##DEBUG_VALUE: luaV_tointeger_:p <- %R14 - cvttsd2si %xmm0, %rax -Ltmp86: -LBB2_7: ## %luaV_tointeger.exit - movq %rax, (%r14) - movl $1, %r12d -Ltmp87: -LBB2_14: ## %luaV_tointeger.exit - .loc 1 129 3 ## /Users/dylan/github/ravi/src/lvm.c:129:3 - movl %r12d, %eax - addq $32, %rsp - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp88: -Lfunc_end2: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI3_0: - .quad 4607182418800017408 ## double 1 -LCPI3_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI3_2: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_forlimit - .align 4, 0x90 -_luaV_forlimit: ## @luaV_forlimit -Lfunc_begin3: - .loc 1 149 0 ## /Users/dylan/github/ravi/src/lvm.c:149:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp89: - .cfi_def_cfa_offset 16 -Ltmp90: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp91: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp92: - .cfi_offset %rbx, -56 -Ltmp93: - .cfi_offset %r12, -48 -Ltmp94: - .cfi_offset %r13, -40 -Ltmp95: - .cfi_offset %r14, -32 -Ltmp96: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_forlimit:obj <- %RDI - ##DEBUG_VALUE: luaV_forlimit:p <- %RSI - ##DEBUG_VALUE: luaV_forlimit:step <- %RDX - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %RCX - movq %rcx, %r12 -Ltmp97: - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - movq %rdx, -64(%rbp) ## 8-byte Spill -Ltmp98: - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - movq %rsi, %r14 -Ltmp99: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - movq %rdi, %r13 -Ltmp100: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - .loc 1 150 12 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:150:12 - movl $0, (%r12) - leaq -56(%rbp), %r15 - .loc 1 151 8 ## /Users/dylan/github/ravi/src/lvm.c:151:8 -Ltmp101: - movq %r13, %rbx -Ltmp102: - .align 4, 0x90 -LBB3_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp103: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB3_15 -Ltmp104: -## BB#2: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - cmpl $3, %eax - je LBB3_3 -Ltmp105: -## BB#8: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB3_13 -Ltmp106: -## BB#9: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp107: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r15, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB3_11 -Ltmp108: -## BB#10: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - shrl $24, %ecx - jmp LBB3_12 -Ltmp109: - .align 4, 0x90 -LBB3_11: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - movq 16(%rdx), %rcx -Ltmp110: -LBB3_12: ## in Loop: Header=BB3_1 Depth=1 - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp111: - .loc 1 151 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:151:8 - movq %r15, %rbx - je LBB3_1 - jmp LBB3_13 -Ltmp112: -LBB3_15: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB3_16 -Ltmp113: -LBB3_3: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp114: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp115: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp116: - ##DEBUG_VALUE: f <- %XMM0 - cmpq $0, -64(%rbp) ## 8-byte Folded Reload - jns LBB3_5 -Ltmp117: -## BB#4: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - ##DEBUG_VALUE: n <- [%RBP+-72] - ##DEBUG_VALUE: f <- %XMM0 - movsd LCPI3_0(%rip), %xmm1 ## xmm1 = mem[0],zero - .loc 1 108 11 ## /Users/dylan/github/ravi/src/lvm.c:108:11 -Ltmp118: - addsd %xmm0, %xmm1 -Ltmp119: - ##DEBUG_VALUE: f <- %XMM1 - movsd -72(%rbp), %xmm2 ## 8-byte Reload - ## xmm2 = mem[0],zero -Ltmp120: - ##DEBUG_VALUE: n <- %XMM2 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - cmpneqsd %xmm0, %xmm2 -Ltmp121: - andpd %xmm2, %xmm1 -Ltmp122: - andnpd %xmm0, %xmm2 - orpd %xmm1, %xmm2 - movapd %xmm2, %xmm0 -Ltmp123: -LBB3_5: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI3_1(%rip), %xmm0 - jb LBB3_13 -Ltmp124: -## BB#6: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - movsd LCPI3_2(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB3_13 -Ltmp125: -## BB#7: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - cvttsd2si %xmm0, %rax -Ltmp126: -LBB3_16: ## %luaV_tointeger.exit - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - movq %rax, (%r14) - movl $1, %eax - jmp LBB3_34 -Ltmp127: -LBB3_13: ## %.loopexit - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp128: - .loc 1 153 9 ## /Users/dylan/github/ravi/src/lvm.c:153:9 - cmpl $3, %eax - jne LBB3_17 -Ltmp129: -## BB#14: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 153 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:153:10 - movq (%r13), %rcx -Ltmp130: -LBB3_28: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - movabsq $9223372036854775807, %rax ## imm = 0x7FFFFFFFFFFFFFFF - .loc 1 155 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:155:9 -Ltmp131: - movd %rcx, %xmm0 - xorpd %xmm1, %xmm1 -Ltmp132: - .loc 1 155 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:155:9 - ucomisd %xmm1, %xmm0 - jbe LBB3_31 -Ltmp133: -## BB#29: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 156 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:156:10 - movq %rax, (%r14) - movl $1, %eax - .loc 1 157 11 ## /Users/dylan/github/ravi/src/lvm.c:157:11 - cmpq $0, -64(%rbp) ## 8-byte Folded Reload - jns LBB3_34 -Ltmp134: -## BB#30: - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 157 30 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:157:30 - movl $1, (%r12) - jmp LBB3_34 -Ltmp135: -LBB3_31: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 160 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:160:10 - incq %rax - movq %rax, (%r14) - movl $1, %eax - .loc 1 161 11 ## /Users/dylan/github/ravi/src/lvm.c:161:11 - cmpq $0, -64(%rbp) ## 8-byte Folded Reload - js LBB3_34 -Ltmp136: -## BB#32: - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 161 31 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:161:31 - movl $1, (%r12) -Ltmp137: -LBB3_34: - .loc 1 165 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:165:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB3_17: -Ltmp138: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB3_19 -Ltmp139: -## BB#18: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp140: -LBB3_27: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rcx - jmp LBB3_28 -Ltmp141: -LBB3_19: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB3_33 -Ltmp142: -## BB#20: - ##DEBUG_VALUE: luaV_forlimit:obj <- %R13 - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi -Ltmp143: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp144: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp145: - cmpl $4, %esi - jne LBB3_22 -Ltmp146: -## BB#21: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - shrl $24, %ecx - jmp LBB3_23 -Ltmp147: -LBB3_22: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - movq 16(%rdx), %rcx -Ltmp148: -LBB3_23: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp149: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB3_33 -Ltmp150: -## BB#24: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB3_26 -Ltmp151: -## BB#25: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB3_27 -Ltmp152: -LBB3_33: ## %.critedge - xorl %eax, %eax - jmp LBB3_34 -LBB3_26: ## %select.false -Ltmp153: - ##DEBUG_VALUE: luaV_forlimit:p <- %R14 - ##DEBUG_VALUE: luaV_forlimit:step <- [%RBP+-64] - ##DEBUG_VALUE: luaV_forlimit:stopnow <- %R12 - movd %rax, %xmm0 - jmp LBB3_27 -Ltmp154: -Lfunc_end3: - .cfi_endproc - - .globl _luaV_finishget - .align 4, 0x90 -_luaV_finishget: ## @luaV_finishget -Lfunc_begin4: - .loc 1 174 0 ## /Users/dylan/github/ravi/src/lvm.c:174:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp155: - .cfi_def_cfa_offset 16 -Ltmp156: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp157: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax -Ltmp158: - .cfi_offset %rbx, -56 -Ltmp159: - .cfi_offset %r12, -48 -Ltmp160: - .cfi_offset %r13, -40 -Ltmp161: - .cfi_offset %r14, -32 -Ltmp162: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishget:L <- %RDI - ##DEBUG_VALUE: luaV_finishget:t <- %RSI - ##DEBUG_VALUE: luaV_finishget:key <- %RDX - ##DEBUG_VALUE: luaV_finishget:val <- %RCX - ##DEBUG_VALUE: luaV_finishget:slot <- %R8 -Ltmp163: - ##DEBUG_VALUE: io1 <- %RCX - movq %r8, %rax -Ltmp164: - ##DEBUG_VALUE: luaV_finishget:slot <- %RAX - movq %rcx, -48(%rbp) ## 8-byte Spill -Ltmp165: - ##DEBUG_VALUE: io1 <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - movq %rdx, %r15 -Ltmp166: - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - movq %rsi, %r13 -Ltmp167: - ##DEBUG_VALUE: luaV_finishget:t <- %R13 - movq %rdi, %r12 -Ltmp168: - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - xorl %r14d, %r14d -Ltmp169: - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .align 4, 0x90 -LBB4_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 178 9 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:178:9 - testq %rax, %rax - je LBB4_2 -Ltmp170: -## BB#4: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 187 12 ## /Users/dylan/github/ravi/src/lvm.c:187:12 - movq (%r13), %rax - movq 40(%rax), %rdi - testq %rdi, %rdi - je LBB4_15 -Ltmp171: -## BB#5: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - testb $1, 10(%rdi) - jne LBB4_15 -Ltmp172: -## BB#6: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - movq 24(%r12), %rax - movq 224(%rax), %rdx - xorl %esi, %esi - callq _luaT_gettm - movq %rax, %rbx -Ltmp173: - ##DEBUG_VALUE: luaV_finishget:tm <- %RBX - .loc 1 188 14 ## /Users/dylan/github/ravi/src/lvm.c:188:14 - testq %rbx, %rbx - je LBB4_15 -Ltmp174: -## BB#7: ## %._crit_edge - ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - ##DEBUG_VALUE: luaV_finishget:tm <- %RBX - .loc 1 194 9 ## /Users/dylan/github/ravi/src/lvm.c:194:9 - movl 8(%rbx), %eax - jmp LBB4_8 -Ltmp175: - .align 4, 0x90 -LBB4_2: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - xorl %edx, %edx - .loc 1 180 12 ## /Users/dylan/github/ravi/src/lvm.c:180:12 -Ltmp176: - movq %r12, %rdi - movq %r13, %rsi - callq _luaT_gettmbyobj - movq %rax, %rbx -Ltmp177: - ##DEBUG_VALUE: luaV_finishget:tm <- %RBX - .loc 1 181 11 ## /Users/dylan/github/ravi/src/lvm.c:181:11 - movl 8(%rbx), %eax -Ltmp178: - .loc 1 181 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:181:11 - testl %eax, %eax - je LBB4_3 -Ltmp179: -LBB4_8: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 194 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:194:9 - andl $15, %eax -Ltmp180: - .loc 1 194 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:194:9 - cmpl $5, %eax - je LBB4_11 -Ltmp181: -## BB#9: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - cmpl $6, %eax - movl $0, %eax - jne LBB4_13 - jmp LBB4_10 -Ltmp182: - .align 4, 0x90 -LBB4_11: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 199 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:199:9 - movq (%rbx), %rdi - movq %r15, %rsi - callq _luaH_get -Ltmp183: - ##DEBUG_VALUE: luaV_finishget:slot <- %RAX - cmpl $0, 8(%rax) - jne LBB4_12 -Ltmp184: -LBB4_13: ## in Loop: Header=BB4_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 177 41 ## /Users/dylan/github/ravi/src/lvm.c:177:41 - incl %r14d -Ltmp185: - ##DEBUG_VALUE: luaV_finishget:loop <- %R14D - .loc 1 177 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:177:23 - cmpl $2000, %r14d ## imm = 0x7D0 - movq %rbx, %r13 - jl LBB4_1 -Ltmp186: -## BB#14: - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - .loc 1 205 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:205:3 - leaq L_.str.1(%rip), %rsi - xorl %eax, %eax - movq %r12, %rdi - callq _luaG_runerror -Ltmp187: -LBB4_15: - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 189 9 ## /Users/dylan/github/ravi/src/lvm.c:189:9 - movq -48(%rbp), %rax ## 8-byte Reload - movl $0, 8(%rax) - jmp LBB4_16 -Ltmp188: -LBB4_10: - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:key <- %R15 - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 195 7 ## /Users/dylan/github/ravi/src/lvm.c:195:7 - movl $1, %r9d - movq %r12, %rdi - movq %rbx, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq -48(%rbp), %r8 ## 8-byte Reload - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp189: - popq %r13 - popq %r14 - popq %r15 -Ltmp190: - popq %rbp - jmp _luaT_callTM ## TAILCALL -Ltmp191: -LBB4_12: - ##DEBUG_VALUE: luaV_finishget:val <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishget:slot <- %RAX - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 200 7 ## /Users/dylan/github/ravi/src/lvm.c:200:7 - movq (%rax), %rcx - movq 8(%rax), %rax -Ltmp192: - movq -48(%rbp), %rdx ## 8-byte Reload -Ltmp193: - ##DEBUG_VALUE: luaV_finishget:val <- %RDX - movq %rax, 8(%rdx) - movq %rcx, (%rdx) -Ltmp194: -LBB4_16: - .loc 1 206 1 ## /Users/dylan/github/ravi/src/lvm.c:206:1 - addq $8, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB4_3: -Ltmp195: - ##DEBUG_VALUE: luaV_finishget:L <- %R12 - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .loc 1 182 9 ## /Users/dylan/github/ravi/src/lvm.c:182:9 - leaq L_.str(%rip), %rdx - movq %r12, %rdi - movq %r13, %rsi - callq _luaG_typeerror -Ltmp196: -Lfunc_end4: - .cfi_endproc - - .globl _luaV_finishset - .align 4, 0x90 -_luaV_finishset: ## @luaV_finishset -Lfunc_begin5: - .loc 1 217 0 ## /Users/dylan/github/ravi/src/lvm.c:217:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp197: - .cfi_def_cfa_offset 16 -Ltmp198: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp199: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp200: - .cfi_offset %rbx, -56 -Ltmp201: - .cfi_offset %r12, -48 -Ltmp202: - .cfi_offset %r13, -40 -Ltmp203: - .cfi_offset %r14, -32 -Ltmp204: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishset:L <- %RDI - ##DEBUG_VALUE: luaV_finishset:t <- %RSI - ##DEBUG_VALUE: luaV_finishset:key <- %RDX - ##DEBUG_VALUE: luaV_finishset:val <- %RCX - ##DEBUG_VALUE: luaV_finishset:slot <- %R8 - movq %r8, %rbx -Ltmp205: - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - movq %rcx, -64(%rbp) ## 8-byte Spill -Ltmp206: - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - movq %rdx, -56(%rbp) ## 8-byte Spill -Ltmp207: - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - movq %rsi, %r13 -Ltmp208: - ##DEBUG_VALUE: luaV_finishset:t <- %R13 - movq %rdi, -48(%rbp) ## 8-byte Spill -Ltmp209: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - xorl %r12d, %r12d -Ltmp210: - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .align 4, 0x90 -LBB5_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 221 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:221:14 - testq %rbx, %rbx -Ltmp211: - .loc 1 221 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:221:9 - je LBB5_12 -## BB#2: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 222 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:222:18 -Ltmp212: - movq (%r13), %r15 -Ltmp213: - ##DEBUG_VALUE: h <- %R15 - .loc 1 224 12 ## /Users/dylan/github/ravi/src/lvm.c:224:12 - movq 40(%r15), %rdi - testq %rdi, %rdi - je LBB5_6 -Ltmp214: -## BB#3: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - testb $2, 10(%rdi) - jne LBB5_6 -Ltmp215: -## BB#4: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - movq -48(%rbp), %rax ## 8-byte Reload - movq 24(%rax), %rax - movq 232(%rax), %rdx -Ltmp216: - .loc 1 237 11 ## /Users/dylan/github/ravi/src/lvm.c:237:11 - movl $1, %esi -Ltmp217: - .loc 1 224 12 ## /Users/dylan/github/ravi/src/lvm.c:224:12 - callq _luaT_gettm - movq %rax, %r14 -Ltmp218: - ##DEBUG_VALUE: tm <- %R14 - .loc 1 225 14 ## /Users/dylan/github/ravi/src/lvm.c:225:14 - testq %r14, %r14 - je LBB5_6 -Ltmp219: -## BB#5: ## %._crit_edge - ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: tm <- %R14 - .loc 1 241 9 ## /Users/dylan/github/ravi/src/lvm.c:241:9 - movl 8(%r14), %eax - jmp LBB5_13 -Ltmp220: - .align 4, 0x90 -LBB5_12: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 237 11 ## /Users/dylan/github/ravi/src/lvm.c:237:11 - movl $1, %edx - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _luaT_gettmbyobj - movq %rax, %r14 -Ltmp221: - ##DEBUG_VALUE: tm <- %R14 - movl 8(%r14), %eax -Ltmp222: - .loc 1 237 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:237:11 - testl %eax, %eax - je LBB5_25 -Ltmp223: -LBB5_13: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 241 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:241:9 - andl $15, %eax -Ltmp224: - .loc 1 241 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:241:9 - cmpl $5, %eax - je LBB5_16 -## BB#14: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - cmpl $6, %eax - movl $0, %ebx - jne LBB5_23 - jmp LBB5_15 - .align 4, 0x90 -LBB5_16: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 246 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:246:9 -Ltmp225: - movq (%r14), %rdi - movq -56(%rbp), %rsi ## 8-byte Reload - callq _luaH_get - movq %rax, %rbx -Ltmp226: - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - cmpl $0, 8(%rbx) - jne LBB5_17 -Ltmp227: -LBB5_23: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 219 41 ## /Users/dylan/github/ravi/src/lvm.c:219:41 - incl %r12d -Ltmp228: - ##DEBUG_VALUE: luaV_finishset:loop <- %R12D - .loc 1 219 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:219:23 - cmpl $2000, %r12d ## imm = 0x7D0 - movq %r14, %r13 - jl LBB5_1 -Ltmp229: -## BB#24: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - .loc 1 250 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:250:3 - leaq L_.str.2(%rip), %rsi - xorl %eax, %eax - movq -48(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -LBB5_6: ## %.thread - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] -Ltmp230: - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - .loc 1 226 13 ## /Users/dylan/github/ravi/src/lvm.c:226:13 - cmpq _luaO_nilobject_@GOTPCREL(%rip), %rbx - jne LBB5_8 -Ltmp231: -## BB#7: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - .loc 1 227 18 ## /Users/dylan/github/ravi/src/lvm.c:227:18 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r15, %rsi - movq -56(%rbp), %rdx ## 8-byte Reload - callq _luaH_newkey - movq %rax, %rbx -Ltmp232: - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX -LBB5_8: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - movq -64(%rbp), %rdx ## 8-byte Reload -Ltmp233: - ##DEBUG_VALUE: luaV_finishset:val <- %RDX - .loc 1 229 9 ## /Users/dylan/github/ravi/src/lvm.c:229:9 - movq (%rdx), %rax - movq 8(%rdx), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) - .loc 1 230 9 ## /Users/dylan/github/ravi/src/lvm.c:230:9 - movb $0, 10(%r15) - .loc 1 231 9 ## /Users/dylan/github/ravi/src/lvm.c:231:9 - testb $64, 8(%rdx) - je LBB5_22 -Ltmp234: -## BB#9: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- %RDX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - testb $4, 9(%r15) - je LBB5_22 -Ltmp235: -## BB#10: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- %RDX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - movq (%rdx), %rax - testb $3, 9(%rax) - je LBB5_22 -Ltmp236: -## BB#11: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - ##DEBUG_VALUE: h <- %R15 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r15, %rsi - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 -Ltmp237: - popq %rbp - jmp _luaC_barrierback_ ## TAILCALL -Ltmp238: -LBB5_15: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:key <- [%RBP+-56] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 242 7 ## /Users/dylan/github/ravi/src/lvm.c:242:7 - xorl %r9d, %r9d - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r14, %rsi - movq %r13, %rdx - movq -56(%rbp), %rcx ## 8-byte Reload - movq -64(%rbp), %r8 ## 8-byte Reload - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _luaT_callTM ## TAILCALL -Ltmp239: -LBB5_17: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- [%RBP+-64] - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - movq -64(%rbp), %r15 ## 8-byte Reload -Ltmp240: - ##DEBUG_VALUE: luaV_finishset:val <- %R15 - .loc 1 246 9 ## /Users/dylan/github/ravi/src/lvm.c:246:9 - testb $64, 8(%r15) - je LBB5_21 -Ltmp241: -## BB#18: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- %R15 - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - movq (%r14), %rsi - testb $4, 9(%rsi) - je LBB5_21 -Ltmp242: -## BB#19: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- %R15 - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - movq (%r15), %rax - testb $3, 9(%rax) - je LBB5_21 -Ltmp243: -## BB#20: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:val <- %R15 - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - movq -48(%rbp), %rdi ## 8-byte Reload - callq _luaC_barrierback_ -Ltmp244: -LBB5_21: ## %.critedge - ##DEBUG_VALUE: luaV_finishset:val <- %R15 - ##DEBUG_VALUE: luaV_finishset:slot <- %RBX - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - movq (%r15), %rax - movq 8(%r15), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) -Ltmp245: -LBB5_22: ## %.thread8 - .loc 1 251 1 ## /Users/dylan/github/ravi/src/lvm.c:251:1 - addq $24, %rsp - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB5_25: - ##DEBUG_VALUE: luaV_finishset:L <- [%RBP+-48] - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .loc 1 238 9 ## /Users/dylan/github/ravi/src/lvm.c:238:9 -Ltmp246: - leaq L_.str(%rip), %rdx - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _luaG_typeerror -Ltmp247: -Lfunc_end5: - .cfi_endproc - - .globl _luaV_gettable - .align 4, 0x90 -_luaV_gettable: ## @luaV_gettable -Lfunc_begin6: - .loc 1 481 0 ## /Users/dylan/github/ravi/src/lvm.c:481:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp248: - .cfi_def_cfa_offset 16 -Ltmp249: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp250: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp251: - .cfi_offset %rbx, -48 -Ltmp252: - .cfi_offset %r12, -40 -Ltmp253: - .cfi_offset %r14, -32 -Ltmp254: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_gettable:L <- %RDI - ##DEBUG_VALUE: luaV_gettable:t <- %RSI - ##DEBUG_VALUE: luaV_gettable:key <- %RDX - ##DEBUG_VALUE: luaV_gettable:val <- %RCX -Ltmp255: - ##DEBUG_VALUE: io <- %RCX - ##DEBUG_VALUE: io <- %RCX - ##DEBUG_VALUE: io1 <- %RCX - movq %rcx, %r15 -Ltmp256: - ##DEBUG_VALUE: io1 <- %R15 - ##DEBUG_VALUE: io <- %R15 - ##DEBUG_VALUE: io <- %R15 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - movq %rdx, %r12 -Ltmp257: - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - movq %rsi, %rbx -Ltmp258: - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - movq %rdi, %r14 -Ltmp259: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - .loc 1 482 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movl 8(%rbx), %eax -Ltmp260: - .loc 1 482 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpl $69, %eax - jne LBB6_1 -Ltmp261: -## BB#7: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpl $19, 8(%r12) - jne LBB6_11 -Ltmp262: -## BB#8: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%r12), %rsi -Ltmp263: - ##DEBUG_VALUE: idx <- %RSI - movq (%rbx), %rdi -Ltmp264: - ##DEBUG_VALUE: h <- %RDI - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx -Ltmp265: - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpq %rcx, %rax - jae LBB6_10 -Ltmp266: -## BB#9: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - ##DEBUG_VALUE: h <- %RDI - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp267: - ##DEBUG_VALUE: aux <- %RAX - jmp LBB6_12 -Ltmp268: -LBB6_11: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%rbx), %rdi - movq %r12, %rsi - callq _luaH_get -Ltmp269: - ##DEBUG_VALUE: aux <- %RAX -LBB6_12: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpl $0, 8(%rax) -Ltmp270: - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - je LBB6_14 -Ltmp271: -## BB#13: - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp272: -LBB6_6: - .loc 1 483 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:483:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB6_1: -Ltmp273: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - cmpl $101, %eax - jne LBB6_2 -Ltmp274: -## BB#16: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpl $19, 8(%r12) - jne LBB6_21 -Ltmp275: -## BB#17: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%rbx), %rcx -Ltmp276: - ##DEBUG_VALUE: h <- %RCX - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%r12), %rax -Ltmp277: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB6_19 -Ltmp278: -## BB#18: - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp279: - ##DEBUG_VALUE: data <- %RCX - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movl %eax, %eax -Ltmp280: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $3, 8(%r15) - jmp LBB6_6 -Ltmp281: -LBB6_14: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx - movq %rax, %r8 - jmp LBB6_15 -Ltmp282: -LBB6_2: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - cmpl $85, %eax - jne LBB6_20 -Ltmp283: -## BB#3: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - cmpl $19, 8(%r12) - jne LBB6_21 -Ltmp284: -## BB#4: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%rbx), %rcx -Ltmp285: - ##DEBUG_VALUE: h <- %RCX - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movq (%r12), %rax -Ltmp286: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB6_19 -Ltmp287: -## BB#5: - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp288: - ##DEBUG_VALUE: data <- %RCX - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - movl %eax, %eax -Ltmp289: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $19, 8(%r15) - jmp LBB6_6 -Ltmp290: -LBB6_10: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - callq _luaH_getint -Ltmp291: - ##DEBUG_VALUE: aux <- %RAX - jmp LBB6_12 -Ltmp292: -LBB6_20: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:t <- %RBX - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - ##DEBUG_VALUE: luaV_gettable:val <- %R15 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx -Ltmp293: -LBB6_15: - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - jmp _luaV_finishget ## TAILCALL -Ltmp294: -LBB6_21: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - ##DEBUG_VALUE: luaV_gettable:key <- %R12 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - leaq L_.str(%rip), %rdx - movq %r14, %rdi - movq %r12, %rsi - callq _luaG_typeerror -Ltmp295: -LBB6_19: - ##DEBUG_VALUE: luaV_gettable:L <- %R14 - .loc 1 482 3 ## /Users/dylan/github/ravi/src/lvm.c:482:3 - leaq L_.str.3(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp296: -Lfunc_end6: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI7_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI7_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_settable - .align 4, 0x90 -_luaV_settable: ## @luaV_settable -Lfunc_begin7: - .loc 1 492 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:492:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp297: - .cfi_def_cfa_offset 16 -Ltmp298: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp299: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp300: - .cfi_offset %rbx, -56 -Ltmp301: - .cfi_offset %r12, -48 -Ltmp302: - .cfi_offset %r13, -40 -Ltmp303: - .cfi_offset %r14, -32 -Ltmp304: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_settable:L <- %RDI - ##DEBUG_VALUE: luaV_settable:t <- %RSI - ##DEBUG_VALUE: luaV_settable:key <- %RDX - ##DEBUG_VALUE: luaV_settable:val <- %RCX - movq %rcx, %r13 -Ltmp305: - ##DEBUG_VALUE: luaV_settable:val <- %R13 - movq %rdx, %r15 -Ltmp306: - ##DEBUG_VALUE: luaV_settable:key <- %R15 - movq %rsi, %r12 -Ltmp307: - ##DEBUG_VALUE: luaV_settable:t <- %R12 - movq %rdi, %r14 -Ltmp308: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - .loc 1 493 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl 8(%r12), %eax -Ltmp309: - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $69, %eax - jne LBB7_1 -Ltmp310: -## BB#7: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $19, 8(%r15) - jne LBB7_11 -Ltmp311: -## BB#8: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rsi -Ltmp312: - ##DEBUG_VALUE: idx <- %RSI - movq (%r12), %rdi -Ltmp313: - ##DEBUG_VALUE: h <- %RDI - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - leaq -1(%rsi), %rbx - movl 12(%rdi), %eax -Ltmp314: - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpq %rax, %rbx - jae LBB7_10 -Ltmp315: -## BB#9: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %RDI - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - shlq $4, %rbx - addq 16(%rdi), %rbx -Ltmp316: - ##DEBUG_VALUE: slot <- %RBX - jmp LBB7_13 -Ltmp317: -LBB7_11: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r12), %rdi - movq %r15, %rsi - callq _luaH_get -Ltmp318: -LBB7_12: - movq %rax, %rbx -Ltmp319: - ##DEBUG_VALUE: slot <- %RBX -LBB7_13: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $0, 8(%rbx) -Ltmp320: - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - je LBB7_19 -Ltmp321: -## BB#14: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - testb $64, 8(%r13) - je LBB7_18 -Ltmp322: -## BB#15: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - movq (%r12), %rsi - testb $4, 9(%rsi) - je LBB7_18 -Ltmp323: -## BB#16: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - movq (%r13), %rax - testb $3, 9(%rax) - je LBB7_18 -Ltmp324: -## BB#17: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - movq %r14, %rdi - callq _luaC_barrierback_ -Ltmp325: -LBB7_18: - ##DEBUG_VALUE: luaV_settable:val <- %R13 - movq (%r13), %rax - movq 8(%r13), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) -Ltmp326: -LBB7_64: - .loc 1 494 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:494:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB7_19: -Ltmp327: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq %r14, %rdi - movq %r12, %rsi - movq %r15, %rdx - movq %r13, %rcx - movq %rbx, %r8 -Ltmp328: -LBB7_20: - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp329: -LBB7_1: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - cmpl $101, %eax - jne LBB7_2 -Ltmp330: -## BB#21: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $19, 8(%r15) - jne LBB7_65 -Ltmp331: -## BB#22: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r12), %r12 -Ltmp332: - ##DEBUG_VALUE: h <- %R12 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp333: - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $19, %eax - je LBB7_28 -Ltmp334: -## BB#23: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - cmpl $3, %eax - jne LBB7_31 -Ltmp335: -## BB#24: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rax -Ltmp336: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r12), %eax - jb LBB7_25 -Ltmp337: -## BB#26: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %edx - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero - jmp LBB7_27 -Ltmp338: -LBB7_2: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - cmpl $85, %eax - jne LBB7_62 -Ltmp339: -## BB#3: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $19, 8(%r15) - jne LBB7_65 -Ltmp340: -## BB#4: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r12), %r12 -Ltmp341: - ##DEBUG_VALUE: h <- %R12 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl 8(%r13), %eax -Ltmp342: - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cmpl $19, %eax - jne LBB7_44 -Ltmp343: -## BB#5: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rax -Ltmp344: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r12), %eax - jae LBB7_6 -Ltmp345: -LBB7_25: - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq 56(%r12), %rcx -Ltmp346: - ##DEBUG_VALUE: data <- %RCX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r13), %rdx - movl %eax, %eax -Ltmp347: - movq %rdx, (%rcx,%rax,8) - jmp LBB7_64 -Ltmp348: -LBB7_10: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - callq _luaH_getint - jmp LBB7_12 -Ltmp349: -LBB7_62: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:t <- %R12 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %r12, %rsi - movq %r15, %rdx - movq %r13, %rcx - jmp LBB7_20 -Ltmp350: -LBB7_28: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rax -Ltmp351: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r12), %eax - jae LBB7_30 -Ltmp352: -## BB#29: - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %R12 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r12), %rcx -Ltmp353: - ##DEBUG_VALUE: data <- %RCX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - cvtsi2sdq (%r13), %xmm0 - jmp LBB7_41 -Ltmp354: -LBB7_31: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB7_42 -Ltmp355: -## BB#32: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp356: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp357: - cmpl $4, %esi - jne LBB7_34 -Ltmp358: -## BB#33: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - shrl $24, %ecx - jmp LBB7_35 -Ltmp359: -LBB7_44: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -56(%rbp), %rbx - jmp LBB7_45 -Ltmp360: - .align 4, 0x90 -LBB7_56: ## %._crit_edge - ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp361: - .loc 1 129 10 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %rbx, %r13 -Ltmp362: -LBB7_45: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB7_57 -Ltmp363: -## BB#46: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - cmpl $3, %eax - je LBB7_47 -Ltmp364: -## BB#51: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB7_61 -Ltmp365: -## BB#52: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r13), %rdi - addq $24, %rdi -Ltmp366: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %rbx, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB7_54 -Ltmp367: -## BB#53: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - shrl $24, %ecx - jmp LBB7_55 -Ltmp368: -LBB7_54: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq 16(%rdx), %rcx -Ltmp369: -LBB7_55: ## in Loop: Header=BB7_45 Depth=1 - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp370: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB7_56 - jmp LBB7_61 -Ltmp371: -LBB7_30: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %R12 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %edx - movq (%r13), %rax -Ltmp372: - cvtsi2sdq %rax, %xmm0 -Ltmp373: -LBB7_27: - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq %r14, %rdi - movq %r12, %rsi - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _raviH_set_float ## TAILCALL -Ltmp374: -LBB7_34: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 84 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp375: -LBB7_35: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp376: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB7_42 -Ltmp377: -## BB#36: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB7_38 -Ltmp378: -## BB#37: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - cvtsi2sdq %rax, %xmm0 - jmp LBB7_39 -Ltmp379: -LBB7_38: ## %select.false - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - movd %rax, %xmm0 -Ltmp380: -LBB7_39: ## %select.end - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rax -Ltmp381: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r12), %eax - jae LBB7_63 -Ltmp382: -## BB#40: - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r12), %rcx -Ltmp383: -LBB7_41: - ##DEBUG_VALUE: data <- %RCX - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %eax - movsd %xmm0, (%rcx,%rax,8) - jmp LBB7_64 -Ltmp384: -LBB7_63: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %edx - movq %r14, %rdi - movq %r12, %rsi - callq _raviH_set_float - jmp LBB7_64 -Ltmp385: -LBB7_6: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:val <- %R13 - ##DEBUG_VALUE: h <- %R12 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %edx -Ltmp386: - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - movq (%r13), %rcx - movq %r14, %rdi - movq %r12, %rsi - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp387: - popq %r13 -Ltmp388: - popq %r14 -Ltmp389: - popq %r15 - popq %rbp - jmp _raviH_set_int ## TAILCALL -Ltmp390: -LBB7_57: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r13), %rcx - jmp LBB7_58 -Ltmp391: -LBB7_47: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero -Ltmp392: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -64(%rbp) ## 8-byte Spill -Ltmp393: - ##DEBUG_VALUE: n <- [%RBP+-64] - callq _floor -Ltmp394: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -64(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB7_61 - jp LBB7_61 -Ltmp395: -## BB#48: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI7_0(%rip), %xmm0 - jb LBB7_61 -Ltmp396: -## BB#49: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - movsd LCPI7_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB7_61 -Ltmp397: -## BB#50: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - cvttsd2si %xmm0, %rcx -Ltmp398: -LBB7_58: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - ##DEBUG_VALUE: i <- 0 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movq (%r15), %rax -Ltmp399: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r12), %eax - jae LBB7_60 -Ltmp400: -## BB#59: - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r12), %rdx -Ltmp401: - ##DEBUG_VALUE: data <- %RDX - .loc 1 493 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %eax -Ltmp402: - movq %rcx, (%rdx,%rax,8) - jmp LBB7_64 -Ltmp403: -LBB7_60: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - movl %eax, %edx - movq %r14, %rdi - movq %r12, %rsi - callq _raviH_set_int - jmp LBB7_64 -Ltmp404: -LBB7_61: ## %.loopexit - ##DEBUG_VALUE: luaV_settable:L <- %R14 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - leaq L_.str.5(%rip), %rsi -Ltmp405: -LBB7_43: - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp406: -LBB7_65: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - ##DEBUG_VALUE: luaV_settable:key <- %R15 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - leaq L_.str(%rip), %rdx - movq %r14, %rdi - movq %r15, %rsi - callq _luaG_typeerror -Ltmp407: -LBB7_42: - ##DEBUG_VALUE: luaV_settable:L <- %R14 - .loc 1 493 3 ## /Users/dylan/github/ravi/src/lvm.c:493:3 - leaq L_.str.4(%rip), %rsi - jmp LBB7_43 -Ltmp408: -Lfunc_end7: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI8_0: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 -LCPI8_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_lessthan - .align 4, 0x90 -_luaV_lessthan: ## @luaV_lessthan -Lfunc_begin8: - .loc 1 620 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:620:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp409: - .cfi_def_cfa_offset 16 -Ltmp410: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp411: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp412: - .cfi_offset %rbx, -48 -Ltmp413: - .cfi_offset %r12, -40 -Ltmp414: - .cfi_offset %r14, -32 -Ltmp415: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_lessthan:L <- %RDI - ##DEBUG_VALUE: luaV_lessthan:l <- %RSI - ##DEBUG_VALUE: luaV_lessthan:r <- %RDX - movq %rdx, %r14 -Ltmp416: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - movq %rsi, %rbx -Ltmp417: - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - movq %rdi, %r15 -Ltmp418: - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - .loc 1 624 12 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:624:12 - movl 8(%rbx), %edx -Ltmp419: - .loc 1 622 7 ## /Users/dylan/github/ravi/src/lvm.c:622:7 - movl %edx, %eax - andl $15, %eax - .loc 1 622 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:622:21 - cmpl $4, %eax - je LBB8_25 -Ltmp420: -## BB#1: - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - cmpl $3, %eax - jne LBB8_38 -Ltmp421: -## BB#2: - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 622 24 ## /Users/dylan/github/ravi/src/lvm.c:622:24 - movl 8(%r14), %esi - movl %esi, %eax - andl $15, %eax -Ltmp422: - .loc 1 622 7 ## /Users/dylan/github/ravi/src/lvm.c:622:7 - cmpl $3, %eax - jne LBB8_38 -Ltmp423: -## BB#3: - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - movabsq $18014398509481985, %rax ## imm = 0x40000000000001 - movabsq $9007199254740992, %rcx ## imm = 0x20000000000000 - .loc 1 575 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:575:7 -Ltmp424: - cmpl $19, %edx - jne LBB8_13 -Ltmp425: -## BB#4: - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 576 22 ## /Users/dylan/github/ravi/src/lvm.c:576:22 - movq (%rbx), %rdx -Ltmp426: - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LTintfloat:i <- %RDX - .loc 1 577 9 ## /Users/dylan/github/ravi/src/lvm.c:577:9 - cmpl $19, %esi - jne LBB8_6 -Ltmp427: -## BB#5: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - ##DEBUG_VALUE: li <- %RDX - .loc 1 578 17 ## /Users/dylan/github/ravi/src/lvm.c:578:17 - cmpq (%r14), %rdx - setl %al - movzbl %al, %eax - jmp LBB8_39 -Ltmp428: -LBB8_25: - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 624 29 ## /Users/dylan/github/ravi/src/lvm.c:624:29 - movl 8(%r14), %eax - andl $15, %eax -Ltmp429: - .loc 1 624 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:624:12 - cmpl $4, %eax - jne LBB8_38 -Ltmp430: -## BB#26: - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 625 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:625:21 - movq (%rbx), %r12 -Ltmp431: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - .loc 1 625 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:625:33 - movq (%r14), %rax -Ltmp432: - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 506 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:506:15 - movl 8(%r12), %r15d - movzbl %r15b, %ecx - cmpl $4, %ecx - jne LBB8_28 -Ltmp433: -## BB#27: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - shrl $24, %r15d - jmp LBB8_29 -Ltmp434: -LBB8_38: ## %.thread - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 626 19 ## /Users/dylan/github/ravi/src/lvm.c:626:19 - movl $20, %ecx - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaT_callorderTM -Ltmp435: - ##DEBUG_VALUE: luaV_lessthan:res <- %EAX - .loc 1 626 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:626:12 - testl %eax, %eax - jns LBB8_39 -Ltmp436: -## BB#40: - ##DEBUG_VALUE: luaV_lessthan:L <- %R15 - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 627 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:627:5 - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaG_ordererror -Ltmp437: -LBB8_28: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 506 15 ## /Users/dylan/github/ravi/src/lvm.c:506:15 - movq 16(%r12), %r15 -Ltmp438: -LBB8_29: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 505 19 ## /Users/dylan/github/ravi/src/lvm.c:505:19 - addq $24, %r12 -Ltmp439: - .loc 1 507 19 ## /Users/dylan/github/ravi/src/lvm.c:507:19 - leaq 24(%rax), %r14 - .loc 1 508 15 ## /Users/dylan/github/ravi/src/lvm.c:508:15 - movl 8(%rax), %ebx - movzbl %bl, %ecx - cmpl $4, %ecx - jne LBB8_31 -Ltmp440: -## BB#30: - shrl $24, %ebx - jmp LBB8_32 -LBB8_31: -Ltmp441: - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - movq 16(%rax), %rbx - jmp LBB8_32 -Ltmp442: - .align 4, 0x90 -LBB8_37: ## in Loop: Header=BB8_32 Depth=1 - ##DEBUG_VALUE: len <- %RCX - .loc 1 520 10 ## /Users/dylan/github/ravi/src/lvm.c:520:10 - leaq 1(%rcx), %rax -Ltmp443: - ##DEBUG_VALUE: len <- %RAX - .loc 1 521 9 ## /Users/dylan/github/ravi/src/lvm.c:521:9 - leaq 1(%r12,%rcx), %r12 -Ltmp444: - ##DEBUG_VALUE: l_strcmp:l <- %R12 - .loc 1 521 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:521:20 - subq %rax, %r15 -Ltmp445: - ##DEBUG_VALUE: l_strcmp:ll <- %R15 - .loc 1 521 30 ## /Users/dylan/github/ravi/src/lvm.c:521:30 - leaq 1(%r14,%rcx), %r14 -Ltmp446: - ##DEBUG_VALUE: l_strcmp:r <- %R14 - .loc 1 521 41 ## /Users/dylan/github/ravi/src/lvm.c:521:41 - subq %rax, %rbx -Ltmp447: -LBB8_32: ## %.preheader.i - ## =>This Inner Loop Header: Depth=1 - .loc 1 510 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:510:16 - movq %r12, %rdi - movq %r14, %rsi - callq _strcoll -Ltmp448: - ##DEBUG_VALUE: temp <- %EAX - .loc 1 511 9 ## /Users/dylan/github/ravi/src/lvm.c:511:9 - testl %eax, %eax - jne LBB8_35 -Ltmp449: -## BB#33: ## %.lr.ph.i - ## in Loop: Header=BB8_32 Depth=1 - .loc 1 514 20 ## /Users/dylan/github/ravi/src/lvm.c:514:20 - movq %r12, %rdi - callq _strlen - movq %rax, %rcx -Ltmp450: - ##DEBUG_VALUE: len <- %RCX - .loc 1 515 11 ## /Users/dylan/github/ravi/src/lvm.c:515:11 - cmpq %rbx, %rcx - je LBB8_34 -Ltmp451: -## BB#36: ## in Loop: Header=BB8_32 Depth=1 - ##DEBUG_VALUE: len <- %RCX - movl $-1, %eax - cmpq %r15, %rcx - jne LBB8_37 - jmp LBB8_35 -Ltmp452: -LBB8_13: - ##DEBUG_VALUE: luaV_lessthan:l <- %RBX - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - .loc 1 583 21 ## /Users/dylan/github/ravi/src/lvm.c:583:21 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp453: - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - .loc 1 584 9 ## /Users/dylan/github/ravi/src/lvm.c:584:9 - cmpl $3, %esi - jne LBB8_15 -Ltmp454: -## BB#14: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 585 14 ## /Users/dylan/github/ravi/src/lvm.c:585:14 - movsd (%r14), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - seta %al -Ltmp455: - .loc 1 623 12 ## /Users/dylan/github/ravi/src/lvm.c:623:12 - movzbl %al, %eax - jmp LBB8_39 -Ltmp456: -LBB8_6: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - .loc 1 580 29 ## /Users/dylan/github/ravi/src/lvm.c:580:29 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero -Ltmp457: - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - .loc 1 539 8 ## /Users/dylan/github/ravi/src/lvm.c:539:8 - addq %rdx, %rcx - cmpq %rax, %rcx - jae LBB8_7 -Ltmp458: -## BB#11: - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - .loc 1 548 10 ## /Users/dylan/github/ravi/src/lvm.c:548:10 - cvtsi2sdq %rdx, %xmm1 - ucomisd %xmm1, %xmm0 - seta %al - jmp LBB8_12 -Ltmp459: -LBB8_15: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 586 14 ## /Users/dylan/github/ravi/src/lvm.c:586:14 - ucomisd %xmm0, %xmm0 - jp LBB8_16 -Ltmp460: -## BB#17: - ##DEBUG_VALUE: luaV_lessthan:r <- %R14 - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 589 26 ## /Users/dylan/github/ravi/src/lvm.c:589:26 - movq (%r14), %rdx -Ltmp461: - ##DEBUG_VALUE: LTnum:r <- %R14 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - .loc 1 558 8 ## /Users/dylan/github/ravi/src/lvm.c:558:8 - addq %rdx, %rcx - cmpq %rax, %rcx - jae LBB8_18 -Ltmp462: -## BB#22: - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: LTnum:r <- %R14 - .loc 1 567 10 ## /Users/dylan/github/ravi/src/lvm.c:567:10 - cvtsi2sdq %rdx, %xmm1 - ucomisd %xmm1, %xmm0 - setae %al - jmp LBB8_23 -Ltmp463: -LBB8_34: - ##DEBUG_VALUE: len <- %RCX - .loc 1 516 16 ## /Users/dylan/github/ravi/src/lvm.c:516:16 - cmpq %r15, %rcx - setne %al - movzbl %al, %eax -Ltmp464: -LBB8_35: ## %l_strcmp.exit - .loc 1 625 45 ## /Users/dylan/github/ravi/src/lvm.c:625:45 - shrl $31, %eax -Ltmp465: -LBB8_39: ## %LTnum.exit - .loc 1 629 1 ## /Users/dylan/github/ravi/src/lvm.c:629:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB8_7: -Ltmp466: - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - movb $1, %al - .loc 1 540 9 ## /Users/dylan/github/ravi/src/lvm.c:540:9 -Ltmp467: - ucomisd LCPI8_0(%rip), %xmm0 - jae LBB8_12 -Ltmp468: -## BB#8: - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - .loc 1 542 14 ## /Users/dylan/github/ravi/src/lvm.c:542:14 - ucomisd LCPI8_1(%rip), %xmm0 - jbe LBB8_9 -Ltmp469: -## BB#10: - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - .loc 1 543 19 ## /Users/dylan/github/ravi/src/lvm.c:543:19 - cvttsd2si %xmm0, %rax - .loc 1 543 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:543:17 - cmpq %rdx, %rax - setg %al -Ltmp470: - .loc 1 580 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:580:14 - movzbl %al, %eax - jmp LBB8_39 -Ltmp471: -LBB8_12: ## %LTintfloat.exit.i - movzbl %al, %eax - jmp LBB8_39 -Ltmp472: -LBB8_16: - xorl %eax, %eax - .loc 1 623 12 ## /Users/dylan/github/ravi/src/lvm.c:623:12 - movzbl %al, %eax - jmp LBB8_39 -LBB8_18: -Ltmp473: - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: LTnum:r <- %R14 - movb $1, %al - .loc 1 559 9 ## /Users/dylan/github/ravi/src/lvm.c:559:9 -Ltmp474: - ucomisd LCPI8_0(%rip), %xmm0 - jae LBB8_23 -Ltmp475: -## BB#19: - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: LTnum:r <- %R14 - .loc 1 561 16 ## /Users/dylan/github/ravi/src/lvm.c:561:16 - ucomisd LCPI8_1(%rip), %xmm0 - jae LBB8_21 -Ltmp476: -## BB#20: - xorl %eax, %eax - jmp LBB8_23 -LBB8_9: - xorl %eax, %eax - .loc 1 580 14 ## /Users/dylan/github/ravi/src/lvm.c:580:14 -Ltmp477: - movzbl %al, %eax - jmp LBB8_39 -Ltmp478: -LBB8_21: - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: LTnum:r <- %R14 - .loc 1 562 20 ## /Users/dylan/github/ravi/src/lvm.c:562:20 - cvttsd2si %xmm0, %rax - .loc 1 562 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:562:17 - cmpq %rdx, %rax - setge %al -Ltmp479: -LBB8_23: ## %LEintfloat.exit.i - ##DEBUG_VALUE: LTnum:l <- %RBX - ##DEBUG_VALUE: LTnum:r <- %R14 - .loc 1 589 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:589:14 - xorb $1, %al -Ltmp480: - .loc 1 623 12 ## /Users/dylan/github/ravi/src/lvm.c:623:12 - movzbl %al, %eax - jmp LBB8_39 -Ltmp481: -Lfunc_end8: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI9_0: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 -LCPI9_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_lessequal - .align 4, 0x90 -_luaV_lessequal: ## @luaV_lessequal -Lfunc_begin9: - .loc 1 640 0 ## /Users/dylan/github/ravi/src/lvm.c:640:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp482: - .cfi_def_cfa_offset 16 -Ltmp483: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp484: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp485: - .cfi_offset %rbx, -48 -Ltmp486: - .cfi_offset %r12, -40 -Ltmp487: - .cfi_offset %r14, -32 -Ltmp488: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_lessequal:L <- %RDI - ##DEBUG_VALUE: luaV_lessequal:l <- %RSI - ##DEBUG_VALUE: luaV_lessequal:r <- %RDX - movq %rdx, %r14 -Ltmp489: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - movq %rsi, %rbx -Ltmp490: - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - movq %rdi, %r15 -Ltmp491: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - .loc 1 644 12 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:644:12 - movl 8(%rbx), %edx -Ltmp492: - .loc 1 642 7 ## /Users/dylan/github/ravi/src/lvm.c:642:7 - movl %edx, %eax - andl $15, %eax - .loc 1 642 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:642:21 - cmpl $4, %eax - je LBB9_25 -Ltmp493: -## BB#1: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - cmpl $3, %eax - jne LBB9_39 -Ltmp494: -## BB#2: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 642 24 ## /Users/dylan/github/ravi/src/lvm.c:642:24 - movl 8(%r14), %esi - movl %esi, %eax - andl $15, %eax -Ltmp495: - .loc 1 642 7 ## /Users/dylan/github/ravi/src/lvm.c:642:7 - cmpl $3, %eax - jne LBB9_39 -Ltmp496: -## BB#3: - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - movabsq $18014398509481985, %rax ## imm = 0x40000000000001 - movabsq $9007199254740992, %rcx ## imm = 0x20000000000000 - .loc 1 598 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:598:7 -Ltmp497: - cmpl $19, %edx - jne LBB9_13 -Ltmp498: -## BB#4: - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 599 22 ## /Users/dylan/github/ravi/src/lvm.c:599:22 - movq (%rbx), %rdx -Ltmp499: - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LEintfloat:i <- %RDX - .loc 1 600 9 ## /Users/dylan/github/ravi/src/lvm.c:600:9 - cmpl $19, %esi - jne LBB9_6 -Ltmp500: -## BB#5: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - ##DEBUG_VALUE: li <- %RDX - .loc 1 601 17 ## /Users/dylan/github/ravi/src/lvm.c:601:17 - cmpq (%r14), %rdx -Ltmp501: - .loc 1 645 45 ## /Users/dylan/github/ravi/src/lvm.c:645:45 - setle %al - jmp LBB9_42 -Ltmp502: -LBB9_25: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 644 29 ## /Users/dylan/github/ravi/src/lvm.c:644:29 - movl 8(%r14), %eax - andl $15, %eax -Ltmp503: - .loc 1 644 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:644:12 - cmpl $4, %eax - jne LBB9_39 -Ltmp504: -## BB#26: - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 645 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:645:21 - movq (%rbx), %r12 -Ltmp505: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - .loc 1 645 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:645:33 - movq (%r14), %rax -Ltmp506: - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 506 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:506:15 - movl 8(%r12), %r15d - movzbl %r15b, %ecx - cmpl $4, %ecx - jne LBB9_28 -Ltmp507: -## BB#27: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - shrl $24, %r15d - jmp LBB9_29 -Ltmp508: -LBB9_39: ## %.thread - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 646 19 ## /Users/dylan/github/ravi/src/lvm.c:646:19 - movl $21, %ecx - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaT_callorderTM -Ltmp509: - ##DEBUG_VALUE: luaV_lessequal:res <- %EAX - .loc 1 646 53 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:646:53 - testl %eax, %eax - jns LBB9_43 -Ltmp510: -## BB#40: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 649 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:649:8 - movq 32(%r15), %rax - .loc 1 649 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:649:23 - orw $128, 66(%rax) - .loc 1 650 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:650:11 - movl $20, %ecx - movq %r15, %rdi - movq %r14, %rsi - movq %rbx, %rdx - callq _luaT_callorderTM -Ltmp511: - ##DEBUG_VALUE: luaV_lessequal:res <- %EAX - .loc 1 651 8 ## /Users/dylan/github/ravi/src/lvm.c:651:8 - movq 32(%r15), %rcx - .loc 1 651 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:651:23 - xorw $128, 66(%rcx) - .loc 1 652 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:652:9 - testl %eax, %eax - js LBB9_44 -Ltmp512: -## BB#41: - .loc 1 654 12 ## /Users/dylan/github/ravi/src/lvm.c:654:12 - sete %al - jmp LBB9_42 -Ltmp513: -LBB9_13: - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 606 21 ## /Users/dylan/github/ravi/src/lvm.c:606:21 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp514: - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: LTintfloat:f <- %XMM0 - .loc 1 607 9 ## /Users/dylan/github/ravi/src/lvm.c:607:9 - cmpl $3, %esi - jne LBB9_15 -Ltmp515: -## BB#14: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 608 14 ## /Users/dylan/github/ravi/src/lvm.c:608:14 - movsd (%r14), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - setae %al -Ltmp516: - .loc 1 643 12 ## /Users/dylan/github/ravi/src/lvm.c:643:12 - movzbl %al, %eax - jmp LBB9_43 -Ltmp517: -LBB9_28: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 506 15 ## /Users/dylan/github/ravi/src/lvm.c:506:15 - movq 16(%r12), %r15 -Ltmp518: -LBB9_29: - ##DEBUG_VALUE: l_strcmp:ls <- %R12 - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - .loc 1 505 19 ## /Users/dylan/github/ravi/src/lvm.c:505:19 - addq $24, %r12 -Ltmp519: - .loc 1 507 19 ## /Users/dylan/github/ravi/src/lvm.c:507:19 - leaq 24(%rax), %r14 - .loc 1 508 15 ## /Users/dylan/github/ravi/src/lvm.c:508:15 - movl 8(%rax), %ebx - movzbl %bl, %ecx - cmpl $4, %ecx - jne LBB9_31 -Ltmp520: -## BB#30: - shrl $24, %ebx - jmp LBB9_32 -LBB9_31: -Ltmp521: - ##DEBUG_VALUE: l_strcmp:rs <- %RAX - movq 16(%rax), %rbx - jmp LBB9_32 -Ltmp522: - .align 4, 0x90 -LBB9_38: ## in Loop: Header=BB9_32 Depth=1 - ##DEBUG_VALUE: len <- %RCX - .loc 1 520 10 ## /Users/dylan/github/ravi/src/lvm.c:520:10 - leaq 1(%rcx), %rax -Ltmp523: - ##DEBUG_VALUE: len <- %RAX - .loc 1 521 9 ## /Users/dylan/github/ravi/src/lvm.c:521:9 - leaq 1(%r12,%rcx), %r12 -Ltmp524: - ##DEBUG_VALUE: l_strcmp:l <- %R12 - .loc 1 521 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:521:20 - subq %rax, %r15 -Ltmp525: - ##DEBUG_VALUE: l_strcmp:ll <- %R15 - .loc 1 521 30 ## /Users/dylan/github/ravi/src/lvm.c:521:30 - leaq 1(%r14,%rcx), %r14 -Ltmp526: - ##DEBUG_VALUE: l_strcmp:r <- %R14 - .loc 1 521 41 ## /Users/dylan/github/ravi/src/lvm.c:521:41 - subq %rax, %rbx -Ltmp527: -LBB9_32: ## %.preheader.i - ## =>This Inner Loop Header: Depth=1 - .loc 1 510 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:510:16 - movq %r12, %rdi - movq %r14, %rsi - callq _strcoll -Ltmp528: - ##DEBUG_VALUE: temp <- %EAX - .loc 1 511 9 ## /Users/dylan/github/ravi/src/lvm.c:511:9 - testl %eax, %eax - jne LBB9_35 -Ltmp529: -## BB#33: ## %.lr.ph.i - ## in Loop: Header=BB9_32 Depth=1 - .loc 1 514 20 ## /Users/dylan/github/ravi/src/lvm.c:514:20 - movq %r12, %rdi - callq _strlen - movq %rax, %rcx -Ltmp530: - ##DEBUG_VALUE: len <- %RCX - .loc 1 515 11 ## /Users/dylan/github/ravi/src/lvm.c:515:11 - cmpq %rbx, %rcx - je LBB9_34 -Ltmp531: -## BB#37: ## in Loop: Header=BB9_32 Depth=1 - ##DEBUG_VALUE: len <- %RCX - movl $-1, %eax - cmpq %r15, %rcx - jne LBB9_38 - jmp LBB9_35 -Ltmp532: -LBB9_6: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - .loc 1 603 29 ## /Users/dylan/github/ravi/src/lvm.c:603:29 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero -Ltmp533: - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - .loc 1 558 8 ## /Users/dylan/github/ravi/src/lvm.c:558:8 - addq %rdx, %rcx - cmpq %rax, %rcx - jae LBB9_7 -Ltmp534: -## BB#11: - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - .loc 1 567 10 ## /Users/dylan/github/ravi/src/lvm.c:567:10 - cvtsi2sdq %rdx, %xmm1 - ucomisd %xmm1, %xmm0 - setae %al - jmp LBB9_12 -Ltmp535: -LBB9_15: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 609 14 ## /Users/dylan/github/ravi/src/lvm.c:609:14 - ucomisd %xmm0, %xmm0 - jp LBB9_16 -Ltmp536: -## BB#17: - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - .loc 1 612 26 ## /Users/dylan/github/ravi/src/lvm.c:612:26 - movq (%r14), %rdx -Ltmp537: - ##DEBUG_VALUE: LEnum:r <- %R14 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - .loc 1 539 8 ## /Users/dylan/github/ravi/src/lvm.c:539:8 - addq %rdx, %rcx - cmpq %rax, %rcx - jae LBB9_18 -Ltmp538: -## BB#22: - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: LEnum:r <- %R14 - .loc 1 548 10 ## /Users/dylan/github/ravi/src/lvm.c:548:10 - cvtsi2sdq %rdx, %xmm1 - ucomisd %xmm1, %xmm0 - seta %al - jmp LBB9_23 -Ltmp539: -LBB9_34: - ##DEBUG_VALUE: len <- %RCX - .loc 1 516 16 ## /Users/dylan/github/ravi/src/lvm.c:516:16 - cmpq %r15, %rcx - setne %al - movzbl %al, %eax -Ltmp540: -LBB9_35: ## %l_strcmp.exit - .loc 1 645 45 ## /Users/dylan/github/ravi/src/lvm.c:645:45 - testl %eax, %eax - setle %al -LBB9_42: ## %LEnum.exit - .loc 1 654 12 ## /Users/dylan/github/ravi/src/lvm.c:654:12 -Ltmp541: - movzbl %al, %eax -Ltmp542: -LBB9_43: ## %LEnum.exit - .loc 1 656 1 ## /Users/dylan/github/ravi/src/lvm.c:656:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB9_7: -Ltmp543: - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - movb $1, %al - .loc 1 559 9 ## /Users/dylan/github/ravi/src/lvm.c:559:9 -Ltmp544: - ucomisd LCPI9_0(%rip), %xmm0 - jae LBB9_12 -Ltmp545: -## BB#8: - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - .loc 1 561 16 ## /Users/dylan/github/ravi/src/lvm.c:561:16 - ucomisd LCPI9_1(%rip), %xmm0 - jae LBB9_10 -Ltmp546: -## BB#9: - xorl %eax, %eax - .loc 1 603 14 ## /Users/dylan/github/ravi/src/lvm.c:603:14 - movzbl %al, %eax - jmp LBB9_43 -LBB9_12: ## %LEintfloat.exit.i - movzbl %al, %eax - jmp LBB9_43 -Ltmp547: -LBB9_16: - xorl %eax, %eax - .loc 1 643 12 ## /Users/dylan/github/ravi/src/lvm.c:643:12 - movzbl %al, %eax - jmp LBB9_43 -LBB9_18: -Ltmp548: - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: LEnum:r <- %R14 - movb $1, %al - .loc 1 540 9 ## /Users/dylan/github/ravi/src/lvm.c:540:9 -Ltmp549: - ucomisd LCPI9_0(%rip), %xmm0 - jae LBB9_23 -Ltmp550: -## BB#19: - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: LEnum:r <- %R14 - .loc 1 542 14 ## /Users/dylan/github/ravi/src/lvm.c:542:14 - ucomisd LCPI9_1(%rip), %xmm0 - jbe LBB9_20 -Ltmp551: -## BB#21: - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: lf <- %XMM0 - ##DEBUG_VALUE: LTintfloat:i <- %RDX - ##DEBUG_VALUE: LEnum:r <- %R14 - .loc 1 543 19 ## /Users/dylan/github/ravi/src/lvm.c:543:19 - cvttsd2si %xmm0, %rax - .loc 1 543 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:543:17 - cmpq %rdx, %rax - setg %al - jmp LBB9_23 -Ltmp552: -LBB9_10: - ##DEBUG_VALUE: LEintfloat:i <- %RDX - ##DEBUG_VALUE: li <- %RDX - ##DEBUG_VALUE: LEintfloat:f <- %XMM0 - .loc 1 562 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:562:20 - cvttsd2si %xmm0, %rax - .loc 1 562 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:562:17 - cmpq %rdx, %rax - setge %al -Ltmp553: - .loc 1 603 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:603:14 - movzbl %al, %eax - jmp LBB9_43 -Ltmp554: -LBB9_20: - xorl %eax, %eax -LBB9_23: ## %LTintfloat.exit.i -Ltmp555: - ##DEBUG_VALUE: LEnum:l <- %RBX - ##DEBUG_VALUE: LEnum:r <- %R14 - .loc 1 612 14 ## /Users/dylan/github/ravi/src/lvm.c:612:14 - xorb $1, %al -Ltmp556: - .loc 1 643 12 ## /Users/dylan/github/ravi/src/lvm.c:643:12 - movzbl %al, %eax - jmp LBB9_43 -Ltmp557: -LBB9_44: - ##DEBUG_VALUE: luaV_lessequal:L <- %R15 - ##DEBUG_VALUE: luaV_lessequal:l <- %RBX - ##DEBUG_VALUE: luaV_lessequal:r <- %R14 - .loc 1 653 7 ## /Users/dylan/github/ravi/src/lvm.c:653:7 - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaG_ordererror -Ltmp558: -Lfunc_end9: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI10_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI10_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_equalobj - .align 4, 0x90 -_luaV_equalobj: ## @luaV_equalobj -Lfunc_begin10: - .loc 1 663 0 ## /Users/dylan/github/ravi/src/lvm.c:663:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp559: - .cfi_def_cfa_offset 16 -Ltmp560: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp561: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $32, %rsp -Ltmp562: - .cfi_offset %rbx, -48 -Ltmp563: - .cfi_offset %r12, -40 -Ltmp564: - .cfi_offset %r14, -32 -Ltmp565: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_equalobj:L <- %RDI - ##DEBUG_VALUE: luaV_equalobj:t1 <- %RSI - ##DEBUG_VALUE: luaV_equalobj:t2 <- %RDX - movq %rdx, %r14 -Ltmp566: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq %rsi, %r12 -Ltmp567: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - movq %rdi, %r15 -Ltmp568: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - .loc 1 665 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:665:7 - movl 8(%r12), %ecx - movl %ecx, %edx - andl $63, %edx - .loc 1 665 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:665:20 - movl 8(%r14), %eax - movl %eax, %esi - andl $63, %esi - .loc 1 665 17 ## /Users/dylan/github/ravi/src/lvm.c:665:17 - cmpl %esi, %edx - jne LBB10_1 -Ltmp569: -## BB#38: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 674 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:674:3 - movl %edx, %eax - cmpl $22, %edx - ja LBB10_39 -Ltmp570: -## BB#41: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movl $1, %ebx - leaq LJTI10_0(%rip), %rcx - movslq (%rcx,%rax,4), %rax - addq %rcx, %rax - jmpq *%rax -Ltmp571: -LBB10_43: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 678 31 ## /Users/dylan/github/ravi/src/lvm.c:678:31 - movl (%r12), %eax - .loc 1 678 42 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:678:42 - cmpl (%r14), %eax - jmp LBB10_37 -Ltmp572: -LBB10_1: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 666 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:666:9 - movl %ecx, %edx - andl $15, %edx - xorl %ebx, %ebx - .loc 1 666 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:666:32 - cmpl $3, %edx - jne LBB10_67 -Ltmp573: -## BB#2: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 666 22 ## /Users/dylan/github/ravi/src/lvm.c:666:22 - movl %eax, %esi - andl $15, %esi - cmpl %esi, %edx - jne LBB10_67 -Ltmp574: -## BB#3: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 670 34 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:670:34 - cmpl $19, %ecx - jne LBB10_5 -Ltmp575: -## BB#4: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R12 - .loc 1 670 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:670:15 - movq (%r12), %rbx -Ltmp576: - ##DEBUG_VALUE: i1 <- %RBX -LBB10_20: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 670 56 ## /Users/dylan/github/ravi/src/lvm.c:670:56 - cmpl $19, %eax - jne LBB10_21 -Ltmp577: -LBB10_35: - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r14), %rax -Ltmp578: -LBB10_36: - .loc 1 670 62 ## /Users/dylan/github/ravi/src/lvm.c:670:62 - cmpq %rax, %rbx - jmp LBB10_37 -Ltmp579: -LBB10_39: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - cmpl $37, %edx -Ltmp580: -LBB10_40: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 676 31 ## /Users/dylan/github/ravi/src/lvm.c:676:31 - movq (%r12), %rax - .loc 1 676 42 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:676:42 - cmpq (%r14), %rax -Ltmp581: -LBB10_37: ## %.thread9 - .loc 1 670 62 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:670:62 - sete %al - .loc 1 670 56 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:670:56 - movzbl %al, %ebx -Ltmp582: -LBB10_67: ## %.thread9 - .loc 1 711 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:711:1 - movl %ebx, %eax - addq $32, %rsp - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB10_42: -Ltmp583: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 677 30 ## /Users/dylan/github/ravi/src/lvm.c:677:30 - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero - cmpeqsd (%r14), %xmm0 - movd %xmm0, %rbx - andl $1, %ebx - jmp LBB10_67 -Ltmp584: -LBB10_57: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 697 11 ## /Users/dylan/github/ravi/src/lvm.c:697:11 - movq (%r12), %rcx - .loc 1 697 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:697:25 - movq (%r14), %rax - .loc 1 697 22 ## /Users/dylan/github/ravi/src/lvm.c:697:22 - cmpq %rax, %rcx - je LBB10_67 -Ltmp585: -## BB#58: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - xorl %ebx, %ebx - .loc 1 698 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:698:18 -Ltmp586: - testq %r15, %r15 - je LBB10_67 -Ltmp587: -## BB#59: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 699 12 ## /Users/dylan/github/ravi/src/lvm.c:699:12 - movq 40(%rcx), %rdi - testq %rdi, %rdi - je LBB10_63 -Ltmp588: -## BB#60: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - testb $32, 10(%rdi) - jne LBB10_63 -Ltmp589: -## BB#61: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq 24(%r15), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm -Ltmp590: - ##DEBUG_VALUE: luaV_equalobj:tm <- %RAX - .loc 1 700 11 ## /Users/dylan/github/ravi/src/lvm.c:700:11 - testq %rax, %rax - jne LBB10_55 -Ltmp591: -## BB#62: ## %..thread7_crit_edge - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 701 14 ## /Users/dylan/github/ravi/src/lvm.c:701:14 - movq (%r14), %rax -Ltmp592: -LBB10_63: ## %.thread7 - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq 40(%rax), %rdi - jmp LBB10_52 -Ltmp593: -LBB10_45: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 684 11 ## /Users/dylan/github/ravi/src/lvm.c:684:11 - movq (%r12), %rcx - .loc 1 684 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:684:25 - movq (%r14), %rax - .loc 1 684 22 ## /Users/dylan/github/ravi/src/lvm.c:684:22 - cmpq %rax, %rcx - je LBB10_67 -Ltmp594: -## BB#46: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - xorl %ebx, %ebx - .loc 1 685 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:685:18 -Ltmp595: - testq %r15, %r15 - je LBB10_67 -Ltmp596: -## BB#47: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 686 12 ## /Users/dylan/github/ravi/src/lvm.c:686:12 - movq 16(%rcx), %rdi - testq %rdi, %rdi - je LBB10_51 -Ltmp597: -## BB#48: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - testb $32, 10(%rdi) - jne LBB10_51 -Ltmp598: -## BB#49: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq 24(%r15), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm -Ltmp599: - ##DEBUG_VALUE: luaV_equalobj:tm <- %RAX - .loc 1 687 11 ## /Users/dylan/github/ravi/src/lvm.c:687:11 - testq %rax, %rax - jne LBB10_55 -Ltmp600: -## BB#50: ## %..thread_crit_edge - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 688 14 ## /Users/dylan/github/ravi/src/lvm.c:688:14 - movq (%r14), %rax -Ltmp601: -LBB10_51: ## %.thread - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq 16(%rax), %rdi -Ltmp602: -LBB10_52: ## %.thread - testq %rdi, %rdi - je LBB10_67 -## BB#53: -Ltmp603: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - testb $32, 10(%rdi) - jne LBB10_67 -Ltmp604: -## BB#54: - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movq 24(%r15), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - xorl %ebx, %ebx -Ltmp605: - .loc 1 707 10 ## /Users/dylan/github/ravi/src/lvm.c:707:10 - testq %rax, %rax - je LBB10_67 -Ltmp606: -LBB10_55: ## %.thread11 - ##DEBUG_VALUE: luaV_equalobj:L <- %R15 - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 709 33 ## /Users/dylan/github/ravi/src/lvm.c:709:33 - movq 16(%r15), %r8 - .loc 1 709 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:709:3 - movl $1, %r9d - movq %r15, %rdi - movq %rax, %rsi - movq %r12, %rdx - movq %r14, %rcx - callq _luaT_callTM - .loc 1 710 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:710:11 - movq 16(%r15), %rcx - movl 8(%rcx), %edx - testl %edx, %edx - je LBB10_56 -Ltmp607: -## BB#64: - movb $1, %al - cmpl $1, %edx - jne LBB10_66 -## BB#65: - cmpl $0, (%rcx) - setne %al - jmp LBB10_66 -LBB10_44: -Ltmp608: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 682 44 ## /Users/dylan/github/ravi/src/lvm.c:682:44 - movq (%r12), %rdi - .loc 1 682 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:682:57 - movq (%r14), %rsi - .loc 1 682 30 ## /Users/dylan/github/ravi/src/lvm.c:682:30 - addq $32, %rsp - popq %rbx - popq %r12 -Ltmp609: - popq %r14 -Ltmp610: - popq %r15 - popq %rbp - jmp _luaS_eqlngstr ## TAILCALL -Ltmp611: -LBB10_5: - ##DEBUG_VALUE: luaV_equalobj:t1 <- %R12 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -48(%rbp), %rbx - jmp LBB10_6 -Ltmp612: -LBB10_17: ## %._crit_edge - ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -40(%rbp), %ecx -Ltmp613: - .loc 1 670 15 ## /Users/dylan/github/ravi/src/lvm.c:670:15 - movq %rbx, %r12 -Ltmp614: -LBB10_6: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %ecx - je LBB10_18 -Ltmp615: -## BB#7: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - cmpl $3, %ecx - je LBB10_8 -Ltmp616: -## BB#12: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %ecx - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %ecx - jne LBB10_34 -Ltmp617: -## BB#13: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r12), %rdi - addq $24, %rdi -Ltmp618: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %rbx, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r12), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB10_15 -Ltmp619: -## BB#14: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - shrl $24, %ecx - jmp LBB10_16 -Ltmp620: -LBB10_15: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq 16(%rdx), %rcx -Ltmp621: -LBB10_16: ## in Loop: Header=BB10_6 Depth=1 - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp622: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB10_17 - jmp LBB10_34 -Ltmp623: -LBB10_21: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -48(%rbp), %r15 - jmp LBB10_22 -Ltmp624: -LBB10_33: ## %._crit_edge.22 - ## in Loop: Header=BB10_22 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -40(%rbp), %eax -Ltmp625: - .loc 1 670 37 ## /Users/dylan/github/ravi/src/lvm.c:670:37 - movq %r15, %r14 -Ltmp626: -LBB10_22: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB10_35 -## BB#23: ## in Loop: Header=BB10_22 Depth=1 - cmpl $3, %eax - je LBB10_24 -## BB#28: ## in Loop: Header=BB10_22 Depth=1 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp627: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB10_34 -## BB#29: ## in Loop: Header=BB10_22 Depth=1 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r14), %rdi - addq $24, %rdi -Ltmp628: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r15, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB10_31 -Ltmp629: -## BB#30: ## in Loop: Header=BB10_22 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - shrl $24, %ecx - jmp LBB10_32 -Ltmp630: -LBB10_31: ## in Loop: Header=BB10_22 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - movq 16(%rdx), %rcx -Ltmp631: -LBB10_32: ## in Loop: Header=BB10_22 Depth=1 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp632: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB10_33 - jmp LBB10_34 -Ltmp633: -LBB10_56: - xorl %eax, %eax - jmp LBB10_66 -LBB10_18: -Ltmp634: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r12), %rbx - jmp LBB10_19 -Ltmp635: -LBB10_8: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero -Ltmp636: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -56(%rbp) ## 8-byte Spill -Ltmp637: - ##DEBUG_VALUE: n <- [%RBP+-56] - callq _floor -Ltmp638: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -56(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB10_34 - jp LBB10_34 -Ltmp639: -## BB#9: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI10_0(%rip), %xmm0 - jb LBB10_34 -Ltmp640: -## BB#10: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - movsd LCPI10_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB10_34 -Ltmp641: -## BB#11: - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - cvttsd2si %xmm0, %rbx -Ltmp642: -LBB10_19: ## %luaV_tointeger.exit - ##DEBUG_VALUE: luaV_equalobj:t2 <- %R14 - .loc 1 670 37 ## /Users/dylan/github/ravi/src/lvm.c:670:37 - movl 8(%r14), %eax - jmp LBB10_20 -Ltmp643: -LBB10_24: - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero -Ltmp644: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -56(%rbp) ## 8-byte Spill -Ltmp645: - ##DEBUG_VALUE: n <- [%RBP+-56] - callq _floor -Ltmp646: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -56(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB10_34 - jp LBB10_34 -Ltmp647: -## BB#25: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI10_0(%rip), %xmm0 - jb LBB10_34 -Ltmp648: -## BB#26: - movsd LCPI10_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB10_34 -## BB#27: - cvttsd2si %xmm0, %rax - jmp LBB10_36 -Ltmp649: -LBB10_34: ## %luaV_tointeger.exit.thread - xorl %eax, %eax -LBB10_66: - .loc 1 710 10 ## /Users/dylan/github/ravi/src/lvm.c:710:10 - movzbl %al, %ebx - jmp LBB10_67 -Ltmp650: -Lfunc_end10: - .cfi_endproc - .align 2, 0x90 -L10_0_set_67 = LBB10_67-LJTI10_0 -L10_0_set_43 = LBB10_43-LJTI10_0 -L10_0_set_40 = LBB10_40-LJTI10_0 -L10_0_set_42 = LBB10_42-LJTI10_0 -L10_0_set_57 = LBB10_57-LJTI10_0 -L10_0_set_45 = LBB10_45-LJTI10_0 -L10_0_set_44 = LBB10_44-LJTI10_0 -LJTI10_0: - .long L10_0_set_67 - .long L10_0_set_43 - .long L10_0_set_40 - .long L10_0_set_42 - .long L10_0_set_40 - .long L10_0_set_57 - .long L10_0_set_40 - .long L10_0_set_45 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_40 - .long L10_0_set_44 - .long L10_0_set_40 - .long L10_0_set_40 - - .globl _luaV_concat - .align 4, 0x90 -_luaV_concat: ## @luaV_concat -Lfunc_begin11: - .loc 1 735 0 ## /Users/dylan/github/ravi/src/lvm.c:735:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp651: - .cfi_def_cfa_offset 16 -Ltmp652: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp653: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $104, %rsp -Ltmp654: - .cfi_offset %rbx, -56 -Ltmp655: - .cfi_offset %r12, -48 -Ltmp656: - .cfi_offset %r13, -40 -Ltmp657: - .cfi_offset %r14, -32 -Ltmp658: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_concat:L <- %RDI - ##DEBUG_VALUE: luaV_concat:total <- %ESI - movl %esi, %r15d -Ltmp659: - ##DEBUG_VALUE: luaV_concat:total <- %R15D - movq %rdi, %r12 -Ltmp660: - ##DEBUG_VALUE: luaV_concat:L <- %R12 - movq %r12, -104(%rbp) ## 8-byte Spill - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - movq %rax, -48(%rbp) - .loc 1 738 20 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:738:20 -Ltmp661: - movq 16(%r12), %rbx -Ltmp662: - .align 4, 0x90 -LBB11_1: ## =>This Loop Header: Depth=1 - ## Child Loop BB11_17 Depth 2 - ## Child Loop BB11_34 Depth 2 - ## Child Loop BB11_28 Depth 2 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 740 11 ## /Users/dylan/github/ravi/src/lvm.c:740:11 - leaq -32(%rbx), %r14 -Ltmp663: - ##DEBUG_VALUE: io1 <- %R14 - movl -24(%rbx), %eax - andl $15, %eax - .loc 1 740 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:740:29 - addl $-3, %eax - .loc 1 740 52 ## /Users/dylan/github/ravi/src/lvm.c:740:52 - leaq -16(%rbx), %r13 - .loc 1 740 29 ## /Users/dylan/github/ravi/src/lvm.c:740:29 - cmpl $1, %eax - ja LBB11_43 -Ltmp664: -## BB#2: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 740 52 ## /Users/dylan/github/ravi/src/lvm.c:740:52 - movl -8(%rbx), %eax - movl %eax, %ecx - andl $15, %ecx - cmpl $4, %ecx - je LBB11_5 -Ltmp665: -## BB#3: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - cmpl $3, %ecx - jne LBB11_43 -Ltmp666: -## BB#4: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - movq %r12, %rdi - movq %r13, %rsi - callq _luaO_tostring - .loc 1 742 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:742:14 -Ltmp667: - movl -8(%rbx), %eax -Ltmp668: -LBB11_5: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - cmpl $68, %eax - jne LBB11_9 -Ltmp669: -## BB#6: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - movq (%r13), %rax -Ltmp670: - .loc 1 742 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:742:14 - cmpb $0, 11(%rax) - je LBB11_7 -Ltmp671: -LBB11_9: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 744 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:744:14 - cmpl $68, -24(%rbx) - jne LBB11_12 -Ltmp672: -## BB#10: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - movq (%r14), %rax -Ltmp673: - .loc 1 744 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:744:14 - cmpb $0, 11(%rax) - je LBB11_11 -Ltmp674: -LBB11_12: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 749 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:749:19 - movq (%r13), %rax - movl 8(%rax), %r13d - movzbl %r13b, %ecx - cmpl $4, %ecx - jne LBB11_14 -Ltmp675: -## BB#13: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - shrl $24, %r13d - jmp LBB11_15 -Ltmp676: - .align 4, 0x90 -LBB11_43: ## %._crit_edge - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - .loc 1 741 7 ## /Users/dylan/github/ravi/src/lvm.c:741:7 - movl $22, %r8d - movq %r12, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - movl $2, %ecx - jmp LBB11_40 -Ltmp677: -LBB11_14: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 749 19 ## /Users/dylan/github/ravi/src/lvm.c:749:19 - movq 16(%rax), %r13 -Ltmp678: -LBB11_15: ## %.preheader - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - movq %rbx, -112(%rbp) ## 8-byte Spill -Ltmp679: - ##DEBUG_VALUE: top <- [%RBP+-112] - movl $1, %ebx - .loc 1 752 29 ## /Users/dylan/github/ravi/src/lvm.c:752:29 -Ltmp680: - cmpl $2, %r15d - jl LBB11_26 -Ltmp681: -## BB#16: ## %.lr.ph.preheader - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - .loc 1 752 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:752:32 - movslq %r15d, %r12 - movl $1, %ebx - .align 4, 0x90 -LBB11_17: ## %.lr.ph - ## Parent Loop BB11_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - movl 8(%r14), %eax - andl $15, %eax - cmpl $4, %eax - je LBB11_20 -## BB#18: ## %.lr.ph - ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - cmpl $3, %eax - jne LBB11_25 -## BB#19: ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - movq -104(%rbp), %rdi ## 8-byte Reload - movq %r14, %rsi - callq _luaO_tostring -LBB11_20: ## %.critedge1 - ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - .loc 1 753 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:753:20 -Ltmp682: - movq (%r14), %rcx - movl 8(%rcx), %eax - movzbl %al, %edx - cmpl $4, %edx - jne LBB11_22 -## BB#21: ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - shrl $24, %eax - jmp LBB11_23 - .align 4, 0x90 -LBB11_22: ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - movq 16(%rcx), %rax -LBB11_23: ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] -Ltmp683: - ##DEBUG_VALUE: l <- %R13 - .loc 1 754 42 ## /Users/dylan/github/ravi/src/lvm.c:754:42 - movabsq $9223372036854775807, %rcx ## imm = 0x7FFFFFFFFFFFFFFF - subq %r13, %rcx - .loc 1 754 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:754:15 - cmpq %rcx, %rax -Ltmp684: - .loc 1 754 13 ## /Users/dylan/github/ravi/src/lvm.c:754:13 - jae LBB11_44 -Ltmp685: -## BB#24: ## in Loop: Header=BB11_17 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: l <- %R13 - .loc 1 756 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:756:12 - addq %rax, %r13 -Ltmp686: - ##DEBUG_VALUE: tl <- %R13 - .loc 1 752 29 ## /Users/dylan/github/ravi/src/lvm.c:752:29 - incq %rbx - .loc 1 752 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:752:21 - addq $-16, %r14 - cmpq %r12, %rbx - jl LBB11_17 -Ltmp687: -LBB11_25: ## %.lr.ph..critedge.loopexit_crit_edge - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp688: - ##DEBUG_VALUE: luaV_concat:L <- %R12 -LBB11_26: ## %.critedge - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - movl %r15d, -116(%rbp) ## 4-byte Spill - .loc 1 758 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:758:11 - cmpq $40, %r13 - ja LBB11_33 -Ltmp689: -## BB#27: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 723 3 ## /Users/dylan/github/ravi/src/lvm.c:723:3 - movslq %ebx, %rax - movq %rax, -136(%rbp) ## 8-byte Spill - movq %rbx, -128(%rbp) ## 8-byte Spill - leaq 1(%rax), %r12 - shlq $4, %rax - movq -112(%rbp), %r15 ## 8-byte Reload - subq %rax, %r15 - xorl %r14d, %r14d - .align 4, 0x90 -LBB11_28: ## Parent Loop BB11_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 724 16 ## /Users/dylan/github/ravi/src/lvm.c:724:16 -Ltmp690: - movq (%r15), %rsi - movl 8(%rsi), %ebx - movzbl %bl, %eax - cmpl $4, %eax - jne LBB11_30 -## BB#29: ## in Loop: Header=BB11_28 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: copy2buff:tl <- 0 - shrl $24, %ebx - jmp LBB11_31 - .align 4, 0x90 -LBB11_30: ## in Loop: Header=BB11_28 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: copy2buff:tl <- 0 - movq 16(%rsi), %rbx -LBB11_31: ## in Loop: Header=BB11_28 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 725 5 ## /Users/dylan/github/ravi/src/lvm.c:725:5 - leaq -96(%rbp,%r14), %rdi - addq $24, %rsi -Ltmp691: - ##DEBUG_VALUE: l <- %R14 - movq %rbx, %rdx - callq _memcpy - .loc 1 726 8 ## /Users/dylan/github/ravi/src/lvm.c:726:8 - addq %rbx, %r14 -Ltmp692: - ##DEBUG_VALUE: copy2buff:tl <- %R14 - .loc 1 727 16 ## /Users/dylan/github/ravi/src/lvm.c:727:16 - decq %r12 - addq $16, %r15 - cmpq $1, %r12 - jg LBB11_28 -Ltmp693: -## BB#32: ## %copy2buff.exit - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp694: - ##DEBUG_VALUE: luaV_concat:L <- %R12 - .loc 1 761 14 ## /Users/dylan/github/ravi/src/lvm.c:761:14 - movq %r12, %rdi - leaq -96(%rbp), %rsi - movq %r13, %rdx - callq _luaS_newlstr -Ltmp695: - ##DEBUG_VALUE: ts <- %RAX - jmp LBB11_39 -Ltmp696: -LBB11_33: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - .loc 1 764 14 ## /Users/dylan/github/ravi/src/lvm.c:764:14 - movq %r12, %rdi -Ltmp697: - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - movq %rbx, -128(%rbp) ## 8-byte Spill - movq %r13, %rsi - callq _luaS_createlngstrobj -Ltmp698: - ##DEBUG_VALUE: copy2buff:tl <- 0 - ##DEBUG_VALUE: ts <- %RAX - .loc 1 765 27 ## /Users/dylan/github/ravi/src/lvm.c:765:27 - movq %rax, -144(%rbp) ## 8-byte Spill - movq %rax, %r12 -Ltmp699: - ##DEBUG_VALUE: ts <- [%RBP+-144] - addq $24, %r12 - .loc 1 723 3 ## /Users/dylan/github/ravi/src/lvm.c:723:3 -Ltmp700: - movslq %ebx, %rax - movq %rax, -136(%rbp) ## 8-byte Spill - leaq 1(%rax), %r13 - shlq $4, %rax - movq -112(%rbp), %r15 ## 8-byte Reload - subq %rax, %r15 - xorl %r14d, %r14d - .align 4, 0x90 -LBB11_34: ## Parent Loop BB11_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: ts <- [%RBP+-144] - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 724 16 ## /Users/dylan/github/ravi/src/lvm.c:724:16 -Ltmp701: - movq (%r15), %rsi - movl 8(%rsi), %ebx - movzbl %bl, %eax - cmpl $4, %eax - jne LBB11_36 -## BB#35: ## in Loop: Header=BB11_34 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: ts <- [%RBP+-144] - ##DEBUG_VALUE: copy2buff:tl <- 0 - shrl $24, %ebx - jmp LBB11_37 - .align 4, 0x90 -LBB11_36: ## in Loop: Header=BB11_34 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: ts <- [%RBP+-144] - ##DEBUG_VALUE: copy2buff:tl <- 0 - movq 16(%rsi), %rbx -LBB11_37: ## in Loop: Header=BB11_34 Depth=2 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - ##DEBUG_VALUE: ts <- [%RBP+-144] - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 725 5 ## /Users/dylan/github/ravi/src/lvm.c:725:5 - leaq (%r12,%r14), %rdi - addq $24, %rsi -Ltmp702: - ##DEBUG_VALUE: l <- %R14 - movq %rbx, %rdx - callq _memcpy - .loc 1 726 8 ## /Users/dylan/github/ravi/src/lvm.c:726:8 - addq %rbx, %r14 -Ltmp703: - ##DEBUG_VALUE: copy2buff:tl <- %R14 - .loc 1 727 16 ## /Users/dylan/github/ravi/src/lvm.c:727:16 - decq %r13 - addq $16, %r15 - cmpq $1, %r13 - jg LBB11_34 -Ltmp704: -## BB#38: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp705: - ##DEBUG_VALUE: luaV_concat:L <- %R12 - movq -144(%rbp), %rax ## 8-byte Reload -Ltmp706: -LBB11_39: ## %copy2buff.exit6 - ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- [%RBP+-112] - movq -136(%rbp), %rdx ## 8-byte Reload - .loc 1 767 7 ## /Users/dylan/github/ravi/src/lvm.c:767:7 -Ltmp707: - shlq $4, %rdx - movq -112(%rbp), %rcx ## 8-byte Reload -Ltmp708: - ##DEBUG_VALUE: top <- %RCX - subq %rdx, %rcx -Ltmp709: - ##DEBUG_VALUE: io <- %RCX - movq %rax, (%rcx) - movzbl 8(%rax), %eax - orl $64, %eax - movl %eax, 8(%rcx) - movl -116(%rbp), %r15d ## 4-byte Reload - movq -128(%rbp), %rcx ## 8-byte Reload -Ltmp710: - jmp LBB11_40 -Ltmp711: -LBB11_7: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- %RBX - .loc 1 743 7 ## /Users/dylan/github/ravi/src/lvm.c:743:7 - movl -24(%rbx), %eax - andl $15, %eax - movl $2, %ecx - cmpl $3, %eax - jne LBB11_40 -Ltmp712: -## BB#8: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - movq %r12, %rdi - movq %r14, %rsi - callq _luaO_tostring - movl $2, %ecx - jmp LBB11_40 -Ltmp713: -LBB11_11: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - .loc 1 745 7 ## /Users/dylan/github/ravi/src/lvm.c:745:7 - movq (%r13), %rax - movq 8(%r13), %rcx - movq %rcx, 8(%r14) - movq %rax, (%r14) - movl $2, %ecx -Ltmp714: - .align 4, 0x90 -LBB11_40: ## in Loop: Header=BB11_1 Depth=1 - ##DEBUG_VALUE: luaV_concat:L <- %R12 - ##DEBUG_VALUE: n <- 2 - .loc 1 770 12 ## /Users/dylan/github/ravi/src/lvm.c:770:12 - movslq %ecx, %rax - .loc 1 769 15 ## /Users/dylan/github/ravi/src/lvm.c:769:15 - movq %rax, %rcx - shlq $4, %rcx - decl %eax - .loc 1 769 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:769:11 - subl %eax, %r15d -Ltmp715: - ##DEBUG_VALUE: luaV_concat:total <- %R15D - .loc 1 770 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:770:12 - movq 16(%r12), %rbx - addq $-16, %rcx - subq %rcx, %rbx - movq %rbx, 16(%r12) -Ltmp716: - .loc 1 771 18 ## /Users/dylan/github/ravi/src/lvm.c:771:18 - cmpl $1, %r15d - jg LBB11_1 -Ltmp717: -## BB#41: - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - cmpq -48(%rbp), %rax - jne LBB11_45 -## BB#42: - .loc 1 772 1 ## /Users/dylan/github/ravi/src/lvm.c:772:1 - addq $104, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB11_44: -Ltmp718: - ##DEBUG_VALUE: luaV_concat:L <- [%RBP+-104] - ##DEBUG_VALUE: n <- 2 - .loc 1 755 11 ## /Users/dylan/github/ravi/src/lvm.c:755:11 - leaq L_.str.6(%rip), %rsi - xorl %eax, %eax - movq -104(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp719: -LBB11_45: - callq ___stack_chk_fail -Lfunc_end11: - .cfi_endproc - - .globl _luaV_objlen - .align 4, 0x90 -_luaV_objlen: ## @luaV_objlen -Lfunc_begin12: - .loc 1 778 0 ## /Users/dylan/github/ravi/src/lvm.c:778:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp720: - .cfi_def_cfa_offset 16 -Ltmp721: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp722: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp723: - .cfi_offset %rbx, -48 -Ltmp724: - .cfi_offset %r12, -40 -Ltmp725: - .cfi_offset %r14, -32 -Ltmp726: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_objlen:L <- %RDI - ##DEBUG_VALUE: luaV_objlen:ra <- %RSI - ##DEBUG_VALUE: luaV_objlen:rb <- %RDX -Ltmp727: - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - movq %rdx, %rbx -Ltmp728: - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - movq %rsi, %r14 -Ltmp729: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - movq %rdi, %r15 -Ltmp730: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - .loc 1 780 11 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:780:11 - movl 8(%rbx), %eax - andl $63, %eax - .loc 1 780 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:780:3 - cmpl $19, %eax - jle LBB12_1 -Ltmp731: -## BB#7: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - cmpl $20, %eax - je LBB12_14 -Ltmp732: -## BB#8: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - cmpl $37, %eax - je LBB12_10 -Ltmp733: -## BB#9: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - cmpl $21, %eax - jne LBB12_15 -Ltmp734: -LBB12_10: - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 783 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:783:18 - movq (%rbx), %rdi -Ltmp735: - ##DEBUG_VALUE: h <- %RDI - .loc 1 784 7 ## /Users/dylan/github/ravi/src/lvm.c:784:7 - callq _raviH_getn - jmp LBB12_11 -Ltmp736: -LBB12_1: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - cmpl $4, %eax - je LBB12_13 -Ltmp737: -## BB#2: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - cmpl $5, %eax - jne LBB12_15 -Ltmp738: -## BB#3: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 788 18 ## /Users/dylan/github/ravi/src/lvm.c:788:18 - movq (%rbx), %r12 -Ltmp739: - ##DEBUG_VALUE: h <- %R12 - .loc 1 789 12 ## /Users/dylan/github/ravi/src/lvm.c:789:12 - movq 40(%r12), %rdi - testq %rdi, %rdi - je LBB12_6 -Ltmp740: -## BB#4: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - ##DEBUG_VALUE: h <- %R12 - testb $16, 10(%rdi) - jne LBB12_6 -Ltmp741: -## BB#5: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - ##DEBUG_VALUE: h <- %R12 - movq 24(%r15), %rax - movq 256(%rax), %rdx - movl $4, %esi - callq _luaT_gettm -Ltmp742: - ##DEBUG_VALUE: luaV_objlen:tm <- %RAX - .loc 1 790 11 ## /Users/dylan/github/ravi/src/lvm.c:790:11 - testq %rax, %rax - jne LBB12_16 -Ltmp743: -LBB12_6: ## %.critedge - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: h <- %R12 - .loc 1 791 7 ## /Users/dylan/github/ravi/src/lvm.c:791:7 - movq %r12, %rdi - callq _luaH_getn -Ltmp744: -LBB12_11: - cltq - jmp LBB12_12 -Ltmp745: -LBB12_14: - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 799 7 ## /Users/dylan/github/ravi/src/lvm.c:799:7 - movq (%rbx), %rax - movq 16(%rax), %rax - jmp LBB12_12 -Ltmp746: -LBB12_13: - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 795 7 ## /Users/dylan/github/ravi/src/lvm.c:795:7 - movq (%rbx), %rax - movzbl 11(%rax), %eax -Ltmp747: -LBB12_12: - .loc 1 791 7 ## /Users/dylan/github/ravi/src/lvm.c:791:7 - movq %rax, (%r14) - movl $19, 8(%r14) -Ltmp748: - .loc 1 810 1 ## /Users/dylan/github/ravi/src/lvm.c:810:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB12_15: -Ltmp749: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 803 12 ## /Users/dylan/github/ravi/src/lvm.c:803:12 - movl $4, %edx - movq %r15, %rdi - movq %rbx, %rsi - callq _luaT_gettmbyobj -Ltmp750: - ##DEBUG_VALUE: luaV_objlen:tm <- %RAX - .loc 1 804 11 ## /Users/dylan/github/ravi/src/lvm.c:804:11 - cmpl $0, 8(%rax) - je LBB12_17 -Ltmp751: -LBB12_16: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:ra <- %R14 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 809 3 ## /Users/dylan/github/ravi/src/lvm.c:809:3 - movl $1, %r9d - movq %r15, %rdi - movq %rax, %rsi - movq %rbx, %rdx - movq %rbx, %rcx - movq %r14, %r8 - popq %rbx -Ltmp752: - popq %r12 - popq %r14 -Ltmp753: - popq %r15 -Ltmp754: - popq %rbp - jmp _luaT_callTM ## TAILCALL -LBB12_17: -Ltmp755: - ##DEBUG_VALUE: luaV_objlen:L <- %R15 - ##DEBUG_VALUE: luaV_objlen:rb <- %RBX - .loc 1 805 9 ## /Users/dylan/github/ravi/src/lvm.c:805:9 - leaq L_.str.7(%rip), %rdx - movq %r15, %rdi - movq %rbx, %rsi - callq _luaG_typeerror -Ltmp756: -Lfunc_end12: - .cfi_endproc - - .globl _luaV_div - .align 4, 0x90 -_luaV_div: ## @luaV_div -Lfunc_begin13: - .loc 1 819 0 ## /Users/dylan/github/ravi/src/lvm.c:819:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: luaV_div:L <- %RDI - ##DEBUG_VALUE: luaV_div:m <- %RSI - ##DEBUG_VALUE: luaV_div:n <- %RDX - movq %rdx, %rcx -Ltmp757: - ##DEBUG_VALUE: luaV_div:n <- %RCX - .loc 1 820 20 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:820:20 - leaq 1(%rcx), %rax -Ltmp758: - .loc 1 820 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:820:7 - cmpq $1, %rax - ja LBB13_3 -Ltmp759: -## BB#1: - ##DEBUG_VALUE: luaV_div:L <- %RDI - ##DEBUG_VALUE: luaV_div:m <- %RSI - ##DEBUG_VALUE: luaV_div:n <- %RCX - .loc 1 821 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:821:9 - testq %rcx, %rcx - je LBB13_6 -Ltmp760: -## BB#2: - ##DEBUG_VALUE: luaV_div:m <- %RSI - .loc 1 823 12 ## /Users/dylan/github/ravi/src/lvm.c:823:12 - negq %rsi -Ltmp761: - movq %rsi, %rdi -Ltmp762: - .loc 1 831 1 ## /Users/dylan/github/ravi/src/lvm.c:831:1 - movq %rdi, %rax - retq -LBB13_3: -Ltmp763: - ##DEBUG_VALUE: luaV_div:m <- %RSI - ##DEBUG_VALUE: luaV_div:n <- %RCX - .loc 1 826 23 ## /Users/dylan/github/ravi/src/lvm.c:826:23 - movq %rsi, %rax - cqto - idivq %rcx - movq %rax, %rdi - .loc 1 827 21 ## /Users/dylan/github/ravi/src/lvm.c:827:21 -Ltmp764: - movq %rcx, %rax - xorq %rsi, %rax - jns LBB13_5 -Ltmp765: -## BB#4: - ##DEBUG_VALUE: luaV_div:m <- %RSI - ##DEBUG_VALUE: luaV_div:n <- %RCX - .loc 1 827 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:827:26 - movq %rsi, %rax - cqto - idivq %rcx -Ltmp766: - .loc 1 827 9 ## /Users/dylan/github/ravi/src/lvm.c:827:9 - cmpq $1, %rdx - adcq $-1, %rdi -Ltmp767: -LBB13_5: - .loc 1 831 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:831:1 - movq %rdi, %rax - retq -LBB13_6: - pushq %rbp -Ltmp768: - .cfi_def_cfa_offset 16 -Ltmp769: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp770: - .cfi_def_cfa_register %rbp -Ltmp771: - ##DEBUG_VALUE: luaV_div:L <- %RDI - .loc 1 822 7 ## /Users/dylan/github/ravi/src/lvm.c:822:7 - leaq L_.str.8(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp772: -Lfunc_end13: - .cfi_endproc - - .globl _luaV_mod - .align 4, 0x90 -_luaV_mod: ## @luaV_mod -Lfunc_begin14: - .loc 1 839 0 ## /Users/dylan/github/ravi/src/lvm.c:839:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: luaV_mod:L <- %RDI - ##DEBUG_VALUE: luaV_mod:m <- %RSI - ##DEBUG_VALUE: luaV_mod:n <- %RDX - movq %rdx, %rcx -Ltmp773: - ##DEBUG_VALUE: luaV_mod:n <- %RCX - .loc 1 840 20 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:840:20 - leaq 1(%rcx), %rax -Ltmp774: - .loc 1 840 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:840:7 - cmpq $1, %rax - ja LBB14_3 -Ltmp775: -## BB#1: - ##DEBUG_VALUE: luaV_mod:L <- %RDI - ##DEBUG_VALUE: luaV_mod:n <- %RCX - xorl %eax, %eax - .loc 1 841 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:841:9 -Ltmp776: - testq %rcx, %rcx - jne LBB14_4 -Ltmp777: -## BB#2: - pushq %rbp -Ltmp778: - .cfi_def_cfa_offset 16 -Ltmp779: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp780: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: luaV_mod:L <- %RDI - .loc 1 842 7 ## /Users/dylan/github/ravi/src/lvm.c:842:7 -Ltmp781: - leaq L_.str.9(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp782: -LBB14_3: - ##DEBUG_VALUE: luaV_mod:m <- %RSI - ##DEBUG_VALUE: luaV_mod:n <- %RCX - .loc 1 846 23 ## /Users/dylan/github/ravi/src/lvm.c:846:23 - movq %rsi, %rax - cqto - idivq %rcx - .loc 1 847 22 ## /Users/dylan/github/ravi/src/lvm.c:847:22 -Ltmp783: - xorq %rcx, %rsi -Ltmp784: - sarq $63, %rsi - .loc 1 847 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:847:11 - testq %rdx, %rdx - .loc 1 847 16 ## /Users/dylan/github/ravi/src/lvm.c:847:16 - cmoveq %rdx, %rcx -Ltmp785: - andq %rsi, %rcx - addq %rdx, %rcx - movq %rcx, %rax -Ltmp786: -LBB14_4: - .loc 1 851 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:851:1 - retq -Ltmp787: -Lfunc_end14: - .cfi_endproc - - .globl _luaV_shiftl - .align 4, 0x90 -_luaV_shiftl: ## @luaV_shiftl -Lfunc_begin15: - .loc 1 860 0 ## /Users/dylan/github/ravi/src/lvm.c:860:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp788: - .cfi_def_cfa_offset 16 -Ltmp789: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp790: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: luaV_shiftl:x <- %RDI - ##DEBUG_VALUE: luaV_shiftl:y <- %RSI - .loc 1 861 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:861:7 -Ltmp791: - testq %rsi, %rsi - js LBB15_1 -Ltmp792: -## BB#2: - ##DEBUG_VALUE: luaV_shiftl:x <- %RDI - ##DEBUG_VALUE: luaV_shiftl:y <- %RSI - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - movb %sil, %cl - shlq %cl, %rdi -Ltmp793: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - xorl %eax, %eax - .loc 1 866 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp794: - cmpq $63, %rsi -Ltmp795: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovleq %rdi, %rax - popq %rbp - retq -Ltmp796: -LBB15_1: - ##DEBUG_VALUE: luaV_shiftl:x <- %RDI - ##DEBUG_VALUE: luaV_shiftl:y <- %RSI - .loc 1 863 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movl %esi, %ecx - negl %ecx - shrq %cl, %rdi -Ltmp797: - xorl %eax, %eax - .loc 1 862 11 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - cmpq $-63, %rsi -Ltmp798: - .loc 1 862 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovgeq %rdi, %rax -Ltmp799: - .loc 1 869 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:869:1 - popq %rbp - retq -Ltmp800: -Lfunc_end15: - .cfi_endproc - - .globl _luaV_finishOp - .align 4, 0x90 -_luaV_finishOp: ## @luaV_finishOp -Lfunc_begin16: - .loc 1 923 0 ## /Users/dylan/github/ravi/src/lvm.c:923:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp801: - .cfi_def_cfa_offset 16 -Ltmp802: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp803: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax -Ltmp804: - .cfi_offset %rbx, -40 -Ltmp805: - .cfi_offset %r14, -32 -Ltmp806: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishOp:L <- %RDI - movq %rdi, %r14 -Ltmp807: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - .loc 1 924 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:924:21 - movq 32(%r14), %r15 -Ltmp808: - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - .loc 1 925 24 ## /Users/dylan/github/ravi/src/lvm.c:925:24 - movq 32(%r15), %rcx -Ltmp809: - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - .loc 1 950 24 ## /Users/dylan/github/ravi/src/lvm.c:950:24 - movq 40(%r15), %rax -Ltmp810: - .loc 1 926 22 ## /Users/dylan/github/ravi/src/lvm.c:926:22 - movl -4(%rax), %ebx -Ltmp811: - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 927 15 ## /Users/dylan/github/ravi/src/lvm.c:927:15 - movl %ebx, %edx - andl $511, %edx ## imm = 0x1FF -Ltmp812: - ##DEBUG_VALUE: luaV_finishOp:op <- %EDX - .loc 1 928 3 ## /Users/dylan/github/ravi/src/lvm.c:928:3 - leal -6(%rdx), %esi - cmpl $35, %esi - ja LBB16_1 -Ltmp813: -## BB#19: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - leaq LJTI16_0(%rip), %rdx - movslq (%rdx,%rsi,4), %rsi - addq %rdx, %rsi - jmpq *%rsi -Ltmp814: -LBB16_4: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 942 13 ## /Users/dylan/github/ravi/src/lvm.c:942:13 - movq 16(%r14), %rdx - .loc 1 941 18 ## /Users/dylan/github/ravi/src/lvm.c:941:18 - movl -8(%rdx), %esi - movb $1, %cl - testl %esi, %esi - je LBB16_8 -Ltmp815: -## BB#5: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - cmpl $1, %esi - jne LBB16_6 -Ltmp816: -## BB#7: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - cmpl $0, -16(%rdx) - sete %cl - jmp LBB16_8 -Ltmp817: -LBB16_1: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - ##DEBUG_VALUE: luaV_finishOp:op <- %EDX - addl $-107, %edx -Ltmp818: - cmpl $8, %edx - ja LBB16_18 -Ltmp819: -## BB#2: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - movl $365, %eax ## imm = 0x16D - btl %edx, %eax - jae LBB16_18 -Ltmp820: -LBB16_3: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 937 7 ## /Users/dylan/github/ravi/src/lvm.c:937:7 - shrl $9, %ebx -Ltmp821: - andl $127, %ebx - shlq $4, %rbx - movq 16(%r14), %rax - leaq -16(%rax), %rdx - movq %rdx, 16(%r14) - movq -16(%rax), %rdx - movq -8(%rax), %rax - movq %rax, 8(%rcx,%rbx) - movq %rdx, (%rcx,%rbx) -Ltmp822: -LBB16_18: - .loc 1 982 1 ## /Users/dylan/github/ravi/src/lvm.c:982:1 - addq $8, %rsp - popq %rbx - popq %r14 - popq %r15 - popq %rbp - retq -LBB16_16: -Ltmp823: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 973 30 ## /Users/dylan/github/ravi/src/lvm.c:973:30 - testl $16711680, %ebx ## imm = 0xFF0000 - jne LBB16_17 - jmp LBB16_18 -Ltmp824: -LBB16_13: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:base <- %RCX - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 954 22 ## /Users/dylan/github/ravi/src/lvm.c:954:22 - movq 16(%r14), %rax - .loc 1 955 15 ## /Users/dylan/github/ravi/src/lvm.c:955:15 - movl %ebx, %edx - shrl $24, %edx -Ltmp825: - ##DEBUG_VALUE: b <- %EDX - .loc 1 956 19 ## /Users/dylan/github/ravi/src/lvm.c:956:19 - shlq $4, %rdx -Ltmp826: - addq %rdx, %rcx -Ltmp827: - negq %rcx - leaq -32(%rax,%rcx), %rsi - shrq $4, %rsi -Ltmp828: - ##DEBUG_VALUE: total <- %ESI - .loc 1 957 7 ## /Users/dylan/github/ravi/src/lvm.c:957:7 - movq -16(%rax), %rcx - movq -8(%rax), %rdx - movq %rdx, -40(%rax) - movq %rcx, -48(%rax) -Ltmp829: - .loc 1 958 11 ## /Users/dylan/github/ravi/src/lvm.c:958:11 - cmpl $2, %esi - jl LBB16_15 -Ltmp830: -## BB#14: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - ##DEBUG_VALUE: total <- %ESI - .loc 1 956 19 ## /Users/dylan/github/ravi/src/lvm.c:956:19 - addq $-32, %rax - .loc 1 959 16 ## /Users/dylan/github/ravi/src/lvm.c:959:16 -Ltmp831: - movq %rax, 16(%r14) - .loc 1 960 9 ## /Users/dylan/github/ravi/src/lvm.c:960:9 - movq %r14, %rdi - callq _luaV_concat -Ltmp832: -LBB16_15: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 963 7 ## /Users/dylan/github/ravi/src/lvm.c:963:7 - movq 32(%r15), %rax - shrl $9, %ebx -Ltmp833: - andl $127, %ebx - shlq $4, %rbx - movq 16(%r14), %rcx - movq -16(%rcx), %rdx - movq -8(%rcx), %rcx - movq %rcx, 8(%rax,%rbx) - movq %rdx, (%rax,%rbx) -Ltmp834: -LBB16_17: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - .loc 1 974 22 ## /Users/dylan/github/ravi/src/lvm.c:974:22 - movq 8(%r15), %rax - .loc 1 974 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:974:16 - movq %rax, 16(%r14) - jmp LBB16_18 -Ltmp835: -LBB16_6: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - xorl %ecx, %ecx -Ltmp836: -LBB16_8: - ##DEBUG_VALUE: luaV_finishOp:L <- %R14 - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 941 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:941:17 - movzbl %cl, %ecx -Ltmp837: - ##DEBUG_VALUE: res <- %ECX - .loc 1 942 13 ## /Users/dylan/github/ravi/src/lvm.c:942:13 - addq $-16, %rdx - movq %rdx, 16(%r14) - .loc 1 943 15 ## /Users/dylan/github/ravi/src/lvm.c:943:15 -Ltmp838: - movw 66(%r15), %dx -Ltmp839: - .loc 1 943 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:943:11 - testb %dl, %dl - js LBB16_10 -Ltmp840: -## BB#9: - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - ##DEBUG_VALUE: res <- %ECX - .loc 1 941 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:941:17 - xorl $1, %ecx -Ltmp841: - jmp LBB16_11 -Ltmp842: -LBB16_10: - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - ##DEBUG_VALUE: res <- %ECX - .loc 1 945 24 ## /Users/dylan/github/ravi/src/lvm.c:945:24 - xorl $128, %edx - movw %dx, 66(%r15) -Ltmp843: -LBB16_11: - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - ##DEBUG_VALUE: luaV_finishOp:inst <- %EBX - .loc 1 949 18 ## /Users/dylan/github/ravi/src/lvm.c:949:18 - shrl $9, %ebx -Ltmp844: - andl $127, %ebx - .loc 1 949 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:949:15 - cmpl %ebx, %ecx - je LBB16_18 -Ltmp845: -## BB#12: - ##DEBUG_VALUE: luaV_finishOp:ci <- %R15 - .loc 1 950 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:950:24 - addq $4, %rax - movq %rax, 40(%r15) - jmp LBB16_18 -Ltmp846: -Lfunc_end16: - .cfi_endproc - .align 2, 0x90 -L16_0_set_3 = LBB16_3-LJTI16_0 -L16_0_set_18 = LBB16_18-LJTI16_0 -L16_0_set_13 = LBB16_13-LJTI16_0 -L16_0_set_4 = LBB16_4-LJTI16_0 -L16_0_set_16 = LBB16_16-LJTI16_0 -L16_0_set_17 = LBB16_17-LJTI16_0 -LJTI16_0: - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_3 - .long L16_0_set_18 - .long L16_0_set_3 - .long L16_0_set_13 - .long L16_0_set_18 - .long L16_0_set_4 - .long L16_0_set_4 - .long L16_0_set_4 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_16 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_18 - .long L16_0_set_17 - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI17_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI17_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__literal16,16byte_literals - .align 4 -LCPI17_2: - .quad -9223372036854775808 ## 0x8000000000000000 - .quad -9223372036854775808 ## 0x8000000000000000 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_execute - .align 4, 0x90 -_luaV_execute: ## @luaV_execute -Lfunc_begin17: - .loc 1 1138 0 ## /Users/dylan/github/ravi/src/lvm.c:1138:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp847: - .cfi_def_cfa_offset 16 -Ltmp848: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp849: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $120, %rsp -Ltmp850: - .cfi_offset %rbx, -56 -Ltmp851: - .cfi_offset %r12, -48 -Ltmp852: - .cfi_offset %r13, -40 -Ltmp853: - .cfi_offset %r14, -32 -Ltmp854: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_execute:L <- %RDI - movq %rdi, %r10 -Ltmp855: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1261 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:1261:21 - movq %r10, -104(%rbp) ## 8-byte Spill - movq 32(%r10), %r12 -Ltmp856: - ##DEBUG_VALUE: luaV_execute:ci <- %R12 - .loc 1 1267 18 ## /Users/dylan/github/ravi/src/lvm.c:1267:18 - orw $8, 66(%r12) - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 -Ltmp857: - leaq _luaV_execute.dispatch_table(%rip), %r8 - jmp LBB17_1 -Ltmp858: - .align 4, 0x90 -LBB17_923: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:ci <- %R12 - .loc 1 1750 31 ## /Users/dylan/github/ravi/src/lvm.c:1750:31 - movq 8(%r12), %rax - .loc 1 1750 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1750:25 - movq %rax, 16(%r10) -Ltmp859: -LBB17_1: ## %.thread715 - ## =>This Loop Header: Depth=1 - ## Child Loop BB17_4 Depth 2 - ## Child Loop BB17_7 Depth 2 - ## Child Loop BB17_10 Depth 2 - ## Child Loop BB17_13 Depth 2 - ## Child Loop BB17_16 Depth 2 - ## Child Loop BB17_18 Depth 3 - ## Child Loop BB17_21 Depth 3 - ## Child Loop BB17_25 Depth 2 - ## Child Loop BB17_28 Depth 2 - ## Child Loop BB17_52 Depth 2 - ## Child Loop BB17_74 Depth 2 - ## Child Loop BB17_121 Depth 3 - ## Child Loop BB17_143 Depth 2 - ## Child Loop BB17_149 Depth 2 - ## Child Loop BB17_196 Depth 3 - ## Child Loop BB17_303 Depth 2 - ## Child Loop BB17_325 Depth 2 - ## Child Loop BB17_332 Depth 2 - ## Child Loop BB17_367 Depth 2 - ## Child Loop BB17_402 Depth 2 - ## Child Loop BB17_670 Depth 2 - ## Child Loop BB17_746 Depth 2 - ## Child Loop BB17_437 Depth 2 - ## Child Loop BB17_707 Depth 2 - ## Child Loop BB17_469 Depth 2 - ## Child Loop BB17_472 Depth 3 - ## Child Loop BB17_489 Depth 3 - ## Child Loop BB17_508 Depth 2 - ## Child Loop BB17_511 Depth 3 - ## Child Loop BB17_528 Depth 3 - ## Child Loop BB17_547 Depth 2 - ## Child Loop BB17_550 Depth 3 - ## Child Loop BB17_567 Depth 3 - ## Child Loop BB17_586 Depth 2 - ## Child Loop BB17_589 Depth 3 - ## Child Loop BB17_606 Depth 3 - ## Child Loop BB17_628 Depth 2 - ## Child Loop BB17_631 Depth 3 - ## Child Loop BB17_648 Depth 3 - ## Child Loop BB17_777 Depth 2 - ## Child Loop BB17_794 Depth 2 - ## Child Loop BB17_797 Depth 3 - ## Child Loop BB17_815 Depth 2 - ## Child Loop BB17_822 Depth 2 - ## Child Loop BB17_825 Depth 2 - ## Child Loop BB17_831 Depth 2 - ## Child Loop BB17_836 Depth 2 - ## Child Loop BB17_844 Depth 2 - ## Child Loop BB17_856 Depth 2 - ## Child Loop BB17_868 Depth 2 - ## Child Loop BB17_882 Depth 2 - ## Child Loop BB17_896 Depth 2 - ## Child Loop BB17_905 Depth 2 - ## Child Loop BB17_924 Depth 2 - ## Child Loop BB17_936 Depth 2 - ## Child Loop BB17_986 Depth 2 - ## Child Loop BB17_991 Depth 2 - ## Child Loop BB17_1010 Depth 3 - ## Child Loop BB17_1016 Depth 4 - ## Child Loop BB17_1001 Depth 3 - ## Child Loop BB17_1057 Depth 2 - ## Child Loop BB17_1062 Depth 3 - ## Child Loop BB17_1069 Depth 3 - ## Child Loop BB17_1083 Depth 2 - ## Child Loop BB17_1091 Depth 3 - ## Child Loop BB17_1095 Depth 3 - ## Child Loop BB17_1098 Depth 3 - ## Child Loop BB17_1102 Depth 2 - ## Child Loop BB17_1189 Depth 2 - ## Child Loop BB17_1194 Depth 2 - ## Child Loop BB17_1399 Depth 2 - ## Child Loop BB17_1402 Depth 2 - ## Child Loop BB17_1405 Depth 2 - ## Child Loop BB17_1408 Depth 2 - ## Child Loop BB17_1411 Depth 2 - ## Child Loop BB17_1414 Depth 2 - ## Child Loop BB17_1417 Depth 2 - ## Child Loop BB17_1420 Depth 2 - ## Child Loop BB17_1423 Depth 2 - ## Child Loop BB17_1426 Depth 2 - ## Child Loop BB17_1429 Depth 2 - ## Child Loop BB17_1432 Depth 2 - ## Child Loop BB17_1435 Depth 2 - ## Child Loop BB17_1438 Depth 2 - ## Child Loop BB17_1441 Depth 2 - ## Child Loop BB17_1444 Depth 2 - ## Child Loop BB17_1447 Depth 2 - ## Child Loop BB17_1450 Depth 2 - ## Child Loop BB17_1501 Depth 2 - ## Child Loop BB17_1504 Depth 3 - ## Child Loop BB17_1521 Depth 2 - ## Child Loop BB17_1542 Depth 2 - ## Child Loop BB17_1547 Depth 2 - ## Child Loop BB17_1537 Depth 2 - ## Child Loop BB17_1552 Depth 2 - ## Child Loop BB17_1558 Depth 2 - ## Child Loop BB17_1564 Depth 2 - ## Child Loop BB17_1573 Depth 3 - ## Child Loop BB17_1453 Depth 2 - ## Child Loop BB17_1456 Depth 3 - ## Child Loop BB17_1473 Depth 2 - ## Child Loop BB17_1489 Depth 2 - ## Child Loop BB17_1493 Depth 2 - ## Child Loop BB17_1497 Depth 2 - ## Child Loop BB17_1262 Depth 2 - ## Child Loop BB17_1266 Depth 2 - ## Child Loop BB17_1270 Depth 2 - ## Child Loop BB17_1283 Depth 3 - ## Child Loop BB17_1307 Depth 2 - ## Child Loop BB17_1301 Depth 2 - ## Child Loop BB17_1333 Depth 2 - ## Child Loop BB17_1177 Depth 2 - ## Child Loop BB17_1217 Depth 2 - ## Child Loop BB17_1219 Depth 3 - ## Child Loop BB17_1184 Depth 2 - ## Child Loop BB17_284 Depth 2 - ## Child Loop BB17_286 Depth 3 - ## Child Loop BB17_1339 Depth 2 - ## Child Loop BB17_1342 Depth 3 - ## Child Loop BB17_1359 Depth 2 - ## Child Loop BB17_1375 Depth 2 - ## Child Loop BB17_1383 Depth 2 - ## Child Loop BB17_1391 Depth 2 - ## Child Loop BB17_1105 Depth 2 - ## Child Loop BB17_1108 Depth 2 - ## Child Loop BB17_1111 Depth 2 - ## Child Loop BB17_1114 Depth 2 - ## Child Loop BB17_1120 Depth 2 - ## Child Loop BB17_1126 Depth 2 - ## Child Loop BB17_1129 Depth 2 - ## Child Loop BB17_1137 Depth 2 - ## Child Loop BB17_1145 Depth 2 - ## Child Loop BB17_1153 Depth 2 - ## Child Loop BB17_1161 Depth 2 - ## Child Loop BB17_1169 Depth 2 - ## Child Loop BB17_1249 Depth 2 - ## Child Loop BB17_1252 Depth 3 - ## Child Loop BB17_310 Depth 2 - ## Child Loop BB17_312 Depth 3 - ## Child Loop BB17_1233 Depth 2 - ## Child Loop BB17_1235 Depth 3 - ## Child Loop BB17_1199 Depth 2 - ## Child Loop BB17_218 Depth 2 - ## Child Loop BB17_261 Depth 3 - ## Child Loop BB17_914 Depth 2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1270 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1270:8 - movq %r12, -80(%rbp) ## 8-byte Spill - movq (%r12), %rax - .loc 1 1281 16 ## /Users/dylan/github/ravi/src/lvm.c:1281:16 - movq 40(%r12), %r11 -Ltmp860: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1270 8 ## /Users/dylan/github/ravi/src/lvm.c:1270:8 - movq (%rax), %rax -Ltmp861: - ##DEBUG_VALUE: luaV_execute:cl <- %RAX - .loc 1 1278 11 ## /Users/dylan/github/ravi/src/lvm.c:1278:11 - movq %rax, -112(%rbp) ## 8-byte Spill - movq 24(%rax), %rax -Ltmp862: - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1278 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1278:14 - movq 48(%rax), %rdi - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 -Ltmp863: - movq %rdi, -96(%rbp) ## 8-byte Spill - movl (%r11), %r13d -Ltmp864: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - addq $4, %r11 -Ltmp865: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1291 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 -Ltmp866: - testb $12, 200(%r10) - jne LBB17_2 -Ltmp867: -LBB17_3: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - movq 32(%r12), %r9 -Ltmp868: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp869: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp870: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp871: -LBB17_2: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp872: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - movq %r10, %rdi - movq %r11, %rbx - movq %r10, %r14 -Ltmp873: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp874: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %r14, %r10 -Ltmp875: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp876: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp877: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_3 -Ltmp878: -LBB17_5: ## in Loop: Header=BB17_4 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1295 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp879: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1295 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp880: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp881: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp882: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp883: - .loc 1 1295 9 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - movq 32(%r12), %r9 -Ltmp884: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp885: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_6 -Ltmp886: - .align 4, 0x90 -Ltmp887: ## Block address taken -LBB17_4: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1294 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1294:9 - shrl $24, %r13d - shlq $4, %r13 - movq (%r9,%r13), %rax - movq 8(%r9,%r13), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp888: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1295 9 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp889: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1295 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_5 -Ltmp890: -LBB17_6: ## in Loop: Header=BB17_4 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1295 9 ## /Users/dylan/github/ravi/src/lvm.c:1295:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp891: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp892: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp893: -LBB17_8: ## in Loop: Header=BB17_7 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1300 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp894: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1300 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp895: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp896: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp897: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp898: - .loc 1 1300 9 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - movq 32(%r12), %r9 -Ltmp899: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp900: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_9 -Ltmp901: - .align 4, 0x90 -Ltmp902: ## Block address taken -LBB17_7: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1298 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1298:26 - shrl $16, %r13d - .loc 1 1298 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1298:24 - shlq $4, %r13 - .loc 1 1299 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1299:9 -Ltmp903: - movq (%rdi,%r13), %rax - movq 8(%rdi,%r13), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp904: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1300 9 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp905: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1300 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_8 -Ltmp906: -LBB17_9: ## in Loop: Header=BB17_7 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1300 9 ## /Users/dylan/github/ravi/src/lvm.c:1300:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp907: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp908: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp909: -LBB17_11: ## in Loop: Header=BB17_10 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1307 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp910: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1307 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp911: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp912: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp913: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp914: - .loc 1 1307 9 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movq 32(%r12), %r9 -Ltmp915: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp916: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_12 -Ltmp917: - .align 4, 0x90 -Ltmp918: ## Block address taken -LBB17_10: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1305 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1305:18 - movl (%r11), %eax - shrl $9, %eax - .loc 1 1305 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1305:16 - shlq $4, %rax - .loc 1 1306 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1306:9 -Ltmp919: - movq (%rdi,%rax), %rcx - movq 8(%rdi,%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp920: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1307 9 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movl 4(%r11), %r13d - addq $8, %r11 -Ltmp921: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1307 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_11 -Ltmp922: -LBB17_12: ## in Loop: Header=BB17_10 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1307 9 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp923: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp924: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp925: -LBB17_14: ## in Loop: Header=BB17_13 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1312 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp926: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1312 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp927: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp928: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp929: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp930: - .loc 1 1312 9 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movq 32(%r12), %r9 -Ltmp931: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp932: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_15 -Ltmp933: - .align 4, 0x90 -Ltmp934: ## Block address taken -LBB17_13: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1310 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1310:9 - movl %r13d, %eax - shrl $24, %eax - movl %eax, (%r15) - movl $1, 8(%r15) -Ltmp935: - .loc 1 1311 28 ## /Users/dylan/github/ravi/src/lvm.c:1311:28 - leaq 4(%r11), %rax -Ltmp936: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1311 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1311:13 - testl $16711680, %r13d ## imm = 0xFF0000 -Ltmp937: - .loc 1 1311 13 ## /Users/dylan/github/ravi/src/lvm.c:1311:13 - cmovneq %rax, %r11 -Ltmp938: - .loc 1 1312 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp939: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1312 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_14 -Ltmp940: -LBB17_15: ## in Loop: Header=BB17_13 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1312 9 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp941: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp942: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp943: -LBB17_23: ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1319 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp944: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1319 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp945: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp946: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp947: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp948: - .loc 1 1319 9 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - movq 32(%r12), %r9 -Ltmp949: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp950: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_24 -Ltmp951: - .align 4, 0x90 -Ltmp952: ## Block address taken -LBB17_16: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_18 Depth 3 - ## Child Loop BB17_21 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1315 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1315:17 - movl %r13d, %eax - shrl $24, %eax -Ltmp953: - ##DEBUG_VALUE: b <- %EAX - .loc 1 1316 9 ## /Users/dylan/github/ravi/src/lvm.c:1316:9 - leal 1(%rax), %ecx - testb $7, %cl - je LBB17_19 -Ltmp954: -## BB#17: ## %.preheader7345 - ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: b <- %EAX - .loc 1 1317 11 ## /Users/dylan/github/ravi/src/lvm.c:1317:11 - movl %r13d, %ecx - shrl $24, %ecx - incl %ecx - andl $7, %ecx - negl %ecx -Ltmp955: - .align 4, 0x90 -LBB17_18: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_16 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: ra <- %R15 - movl $0, 8(%r15) - addq $16, %r15 -Ltmp956: - .loc 1 1318 19 ## /Users/dylan/github/ravi/src/lvm.c:1318:19 - decl %eax -Ltmp957: - ##DEBUG_VALUE: b <- %EAX - .loc 1 1318 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1318:9 - incl %ecx - jne LBB17_18 -Ltmp958: -LBB17_19: ## %.split - ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1316 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1316:9 - cmpl $117440512, %r13d ## imm = 0x7000000 - jb LBB17_22 -Ltmp959: -## BB#20: ## %.split.split - ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - notl %eax - addq $120, %r15 -Ltmp960: - .align 4, 0x90 -LBB17_21: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_16 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1317 11 ## /Users/dylan/github/ravi/src/lvm.c:1317:11 - movl $0, -112(%r15) - movl $0, -96(%r15) - movl $0, -80(%r15) - movl $0, -64(%r15) - movl $0, -48(%r15) - movl $0, -32(%r15) - movl $0, -16(%r15) - movl $0, (%r15) - .loc 1 1318 9 ## /Users/dylan/github/ravi/src/lvm.c:1318:9 - subq $-128, %r15 - addl $8, %eax - jne LBB17_21 -Ltmp961: -LBB17_22: ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1319 9 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp962: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1319 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_23 -Ltmp963: -LBB17_24: ## in Loop: Header=BB17_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1319 9 ## /Users/dylan/github/ravi/src/lvm.c:1319:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp964: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp965: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp966: -LBB17_26: ## in Loop: Header=BB17_25 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1324 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp967: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1324 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp968: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp969: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp970: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp971: - .loc 1 1324 9 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - movq 32(%r12), %r9 -Ltmp972: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp973: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_27 -Ltmp974: - .align 4, 0x90 -Ltmp975: ## Block address taken -LBB17_25: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1322 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1322:17 - shrl $24, %r13d -Ltmp976: - ##DEBUG_VALUE: b <- %R13D - .loc 1 1323 9 ## /Users/dylan/github/ravi/src/lvm.c:1323:9 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%r13,8), %rax - movq (%rax), %rax - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp977: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1324 9 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - movl (%r11), %r13d -Ltmp978: - addq $4, %r11 -Ltmp979: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1324 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_26 -Ltmp980: -LBB17_27: ## in Loop: Header=BB17_25 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1324 9 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp981: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp982: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp983: -LBB17_29: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $101, %eax - jne LBB17_30 -Ltmp984: -## BB#42: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1329 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp985: -## BB#43: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1329 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rdx), %rcx -Ltmp986: - ##DEBUG_VALUE: h <- %RCX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rbx), %rax -Ltmp987: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp988: -## BB#44: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp989: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movl %eax, %eax -Ltmp990: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $3, 8(%r15) - jmp LBB17_49 -Ltmp991: -LBB17_50: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1330 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 - movq %rbx, 40(%r12) - .loc 1 1330 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 -Ltmp992: - movq %r10, %rdi - movq %r10, %r14 -Ltmp993: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp994: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1330 9 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 - movq 32(%r12), %r9 -Ltmp995: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp996: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_51 -Ltmp997: -LBB17_41: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1329 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 -Ltmp998: - movq %r11, 40(%r12) - .loc 1 1329 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 -Ltmp999: - movq %r10, %rdi - movq -128(%rbp), %rsi ## 8-byte Reload - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - movq %r11, %r14 - movq %r10, %rbx -Ltmp1000: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp1001: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 - jmp LBB17_48 -Ltmp1002: -LBB17_30: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $85, %eax - jne LBB17_47 -Ltmp1003: -## BB#31: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1004: -## BB#32: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rdx), %rcx -Ltmp1005: - ##DEBUG_VALUE: h <- %RCX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rbx), %rax -Ltmp1006: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp1007: -## BB#33: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp1008: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movl %eax, %eax -Ltmp1009: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $19, 8(%r15) - jmp LBB17_49 -Ltmp1010: -LBB17_37: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r10, %r14 -Ltmp1011: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - callq _luaH_getint - movq %r14, %r10 -Ltmp1012: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -120(%rbp), %r9 ## 8-byte Reload -Ltmp1013: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - jmp LBB17_39 -Ltmp1014: -LBB17_47: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 -Ltmp1015: - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 -Ltmp1016: - movq %r10, %rdi - movq %rdx, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1017: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishget - movq %r14, %r10 -Ltmp1018: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp1019: -LBB17_48: ## in Loop: Header=BB17_28 Depth=2 - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq 32(%r12), %r9 -Ltmp1020: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1021: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - movl %eax, -88(%rbp) ## 4-byte Spill - jmp LBB17_49 -Ltmp1022: - .align 4, 0x90 -Ltmp1023: ## Block address taken -LBB17_28: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1327 36 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1327:36 - movl %r13d, %eax - shrl $24, %eax - .loc 1 1327 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1327:25 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%rax,8), %rax - .loc 1 1327 50 ## /Users/dylan/github/ravi/src/lvm.c:1327:50 - movq (%rax), %rdx -Ltmp1024: - ##DEBUG_VALUE: upval <- %RDX - .loc 1 1328 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1328:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax -Ltmp1025: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %ecx - movq %rcx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %cl, %cl - cmovsq %rax, %rbx -Ltmp1026: - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movl 8(%rdx), %eax -Ltmp1027: - .loc 1 1329 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - cmpl $69, %eax - jne LBB17_29 -Ltmp1028: -## BB#34: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rc <- %RBX - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r14 -Ltmp1029: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r11, %r13 - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 -Ltmp1030: - cmpl $19, 8(%rbx) - jne LBB17_38 -Ltmp1031: -## BB#35: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rbx), %rsi -Ltmp1032: - ##DEBUG_VALUE: idx <- %RSI - movq (%rdx), %rdi -Ltmp1033: - ##DEBUG_VALUE: h <- %RDI - movq %rdx, -128(%rbp) ## 8-byte Spill -Ltmp1034: - ##DEBUG_VALUE: upval <- [%RBP+-128] - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx -Ltmp1035: - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - cmpq %rcx, %rax - movq %r14, %r10 -Ltmp1036: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jae LBB17_37 -Ltmp1037: -## BB#36: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: h <- %RDI - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1038: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - jmp LBB17_39 -Ltmp1039: - .align 4, 0x90 -LBB17_38: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rdx), %rdi - movq %rdx, -128(%rbp) ## 8-byte Spill -Ltmp1040: - ##DEBUG_VALUE: upval <- [%RBP+-128] - movq %rbx, %rsi - movq %r9, %r12 - callq _luaH_get - movq %r12, %r9 -Ltmp1041: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - movq %r14, %r10 -Ltmp1042: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_39: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - cmpl $0, 8(%rax) -Ltmp1043: - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - je LBB17_41 -Ltmp1044: -## BB#40: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp1045: -LBB17_49: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- [%RBP+-88] - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1046: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1330 9 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1047: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1048: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1330 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 - cmpl $0, -88(%rbp) ## 4-byte Folded Reload - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_50 -Ltmp1049: -LBB17_51: ## in Loop: Header=BB17_28 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1330 9 ## /Users/dylan/github/ravi/src/lvm.c:1330:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1050: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1051: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1052: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1053: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp1054: -LBB17_53: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $101, %eax - jne LBB17_54 -Ltmp1055: -## BB#66: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1335 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1056: -## BB#67: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1335 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%r8), %rcx -Ltmp1057: - ##DEBUG_VALUE: h <- %RCX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%rbx), %rax -Ltmp1058: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp1059: -## BB#68: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp1060: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movl %eax, %eax -Ltmp1061: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $3, 8(%r15) - jmp LBB17_71 -Ltmp1062: -LBB17_72: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1336 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - movq %rbx, 40(%r12) - .loc 1 1336 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 -Ltmp1063: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1064: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1065: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1336 9 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - movq 32(%r12), %r9 -Ltmp1066: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1067: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_73 -Ltmp1068: -LBB17_65: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1335 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 -Ltmp1069: - movq %r11, 40(%r12) - .loc 1 1335 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 -Ltmp1070: - movq %r10, %rdi - movq -128(%rbp), %rsi ## 8-byte Reload - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - movq %r11, %r14 - movq %r10, %rbx -Ltmp1071: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp1072: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 - jmp LBB17_70 -Ltmp1073: -LBB17_54: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r8, %rsi - cmpl $85, %eax - jne LBB17_69 -Ltmp1074: -## BB#55: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1075: -## BB#56: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%rsi), %rcx -Ltmp1076: - ##DEBUG_VALUE: h <- %RCX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%rbx), %rax -Ltmp1077: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp1078: -## BB#57: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp1079: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movl %eax, %eax -Ltmp1080: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $19, 8(%r15) - jmp LBB17_71 -Ltmp1081: -LBB17_61: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r10, %r14 -Ltmp1082: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - callq _luaH_getint - movq %r14, %r10 -Ltmp1083: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -120(%rbp), %r9 ## 8-byte Reload -Ltmp1084: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - jmp LBB17_63 -Ltmp1085: -LBB17_69: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 -Ltmp1086: - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 -Ltmp1087: - movq %r10, %rdi - movq %rbx, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1088: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishget - movq %r14, %r10 -Ltmp1089: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp1090: -LBB17_70: ## in Loop: Header=BB17_52 Depth=2 - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq 32(%r12), %r9 -Ltmp1091: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1092: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - movl %eax, -88(%rbp) ## 4-byte Spill - jmp LBB17_71 -Ltmp1093: - .align 4, 0x90 -Ltmp1094: ## Block address taken -LBB17_52: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1333 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1333:20 - movl %r13d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r9,%rax), %r8 -Ltmp1095: - ##DEBUG_VALUE: rb <- %R8 - .loc 1 1334 22 ## /Users/dylan/github/ravi/src/lvm.c:1334:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp1096: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edx - movq %rdx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %dl, %dl - cmovsq %rcx, %rbx -Ltmp1097: - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movl 8(%r9,%rax), %eax -Ltmp1098: - .loc 1 1335 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - cmpl $69, %eax - jne LBB17_53 -Ltmp1099: -## BB#58: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R8 - ##DEBUG_VALUE: rc <- %RBX - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r14 -Ltmp1100: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r11, %r13 - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 -Ltmp1101: - cmpl $19, 8(%rbx) - jne LBB17_62 -Ltmp1102: -## BB#59: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R8 - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%rbx), %rsi -Ltmp1103: - ##DEBUG_VALUE: idx <- %RSI - movq (%r8), %rdi -Ltmp1104: - ##DEBUG_VALUE: h <- %RDI - movq %r8, -128(%rbp) ## 8-byte Spill -Ltmp1105: - ##DEBUG_VALUE: rb <- [%RBP+-128] - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx -Ltmp1106: - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - cmpq %rcx, %rax - movq %r14, %r10 -Ltmp1107: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jae LBB17_61 -Ltmp1108: -## BB#60: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: h <- %RDI - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1109: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - jmp LBB17_63 -Ltmp1110: - .align 4, 0x90 -LBB17_62: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R8 - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%r8), %rdi - movq %r8, -128(%rbp) ## 8-byte Spill -Ltmp1111: - ##DEBUG_VALUE: rb <- [%RBP+-128] - movq %rbx, %rsi - movq %r9, %r12 - callq _luaH_get - movq %r12, %r9 -Ltmp1112: - ##DEBUG_VALUE: aux <- %RAX - movq %r13, %r11 - movq %r14, %r10 -Ltmp1113: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_63: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - cmpl $0, 8(%rax) -Ltmp1114: - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - je LBB17_65 -Ltmp1115: -## BB#64: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1335 9 ## /Users/dylan/github/ravi/src/lvm.c:1335:9 - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp1116: -LBB17_71: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- [%RBP+-88] - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1117: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1336 9 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1118: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1119: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1336 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - cmpl $0, -88(%rbp) ## 4-byte Folded Reload - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_72 -Ltmp1120: -LBB17_73: ## in Loop: Header=BB17_52 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1336 9 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1121: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1122: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1123: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1124: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp1125: -LBB17_75: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $101, %eax - jne LBB17_76 -Ltmp1126: -## BB#96: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1342 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1127: -## BB#97: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%rdx), %r15 -Ltmp1128: - ##DEBUG_VALUE: h <- %R15 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp1129: - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $19, %eax - je LBB17_104 -Ltmp1130: -## BB#98: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $3, %eax - jne LBB17_107 -Ltmp1131: -## BB#99: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, %r12 -Ltmp1132: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%rbx), %rax -Ltmp1133: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_102 -Ltmp1134: -## BB#100: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1135: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1136: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_101 -Ltmp1137: -LBB17_141: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1343 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq %rbx, 40(%r12) - .loc 1 1343 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 -Ltmp1138: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1139: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1140: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq 32(%r12), %r9 -Ltmp1141: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1142: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_142 -Ltmp1143: -LBB17_76: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %rdx, %rsi - cmpl $85, %eax - jne LBB17_138 -Ltmp1144: -## BB#77: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1342 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1145: -## BB#78: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%rsi), %rsi -Ltmp1146: - ##DEBUG_VALUE: h <- %RSI - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl 8(%r13), %eax -Ltmp1147: - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $19, %eax - jne LBB17_120 -Ltmp1148: -## BB#79: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: h <- %RSI - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, %r12d - movq %r9, %r15 - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1149: - movq (%rbx), %rax -Ltmp1150: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rsi), %eax - jae LBB17_119 -Ltmp1151: -## BB#80: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rcx -Ltmp1152: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1153: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_81 -Ltmp1154: -LBB17_87: ## in Loop: Header=BB17_74 Depth=2 - movq %r11, %r14 - movq %r10, %rbx -Ltmp1155: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - callq _luaH_getint - movq %rbx, %r10 -Ltmp1156: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 - movq %rax, %rbx - jmp LBB17_89 -Ltmp1157: -LBB17_138: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1158: - movq %r10, %rdi - movq %rbx, %rdx - movq %r13, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1159: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishset - movq %r14, %r10 -Ltmp1160: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - jmp LBB17_139 -Ltmp1161: -LBB17_104: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: h <- %R15 - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, %r12 - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1162: - movq (%rbx), %rax -Ltmp1163: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_106 -Ltmp1164: -## BB#105: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R15 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1165: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cvtsi2sdq (%r13), %xmm0 - movl %eax, %eax -Ltmp1166: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_101 -Ltmp1167: -LBB17_107: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 -Ltmp1168: - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_258 -Ltmp1169: -## BB#108: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %r10, %r12 -Ltmp1170: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1171: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1172: - cmpl $4, %esi - jne LBB17_110 -Ltmp1173: -## BB#109: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - shrl $24, %ecx - jmp LBB17_111 -Ltmp1174: -LBB17_120: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rsi, -88(%rbp) ## 8-byte Spill - movq %rbx, -128(%rbp) ## 8-byte Spill - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - jmp LBB17_121 -Ltmp1175: - .align 4, 0x90 -LBB17_132: ## %._crit_edge.6326 - ## in Loop: Header=BB17_121 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %r13 -Ltmp1176: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq %rbx, %r11 - movq %r15, %r9 -Ltmp1177: -LBB17_121: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_74 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r9, %r15 - movq %r11, %rbx - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_133 -Ltmp1178: -## BB#122: ## in Loop: Header=BB17_121 Depth=3 - cmpl $3, %eax - je LBB17_123 -## BB#127: ## in Loop: Header=BB17_121 Depth=3 -Ltmp1179: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_278 -Ltmp1180: -## BB#128: ## in Loop: Header=BB17_121 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %r12 -Ltmp1181: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1182: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1183: - cmpl $4, %esi - jne LBB17_130 -Ltmp1184: -## BB#129: ## in Loop: Header=BB17_121 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_131 -Ltmp1185: - .align 4, 0x90 -LBB17_130: ## in Loop: Header=BB17_121 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -Ltmp1186: -LBB17_131: ## in Loop: Header=BB17_121 Depth=3 - movq %r12, %r10 -Ltmp1187: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp1188: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_132 - jmp LBB17_278 -Ltmp1189: -LBB17_102: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %edx - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero - jmp LBB17_103 -Ltmp1190: -LBB17_106: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R15 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %edx - movq (%r13), %rax -Ltmp1191: - cvtsi2sdq %rax, %xmm0 -Ltmp1192: -LBB17_103: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq %r10, %rdi - movq %r15, %rsi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1193: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1194: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1195: -LBB17_101: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r12, %r9 - movl -88(%rbp), %eax ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_140 -Ltmp1196: -LBB17_110: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1197: -LBB17_111: ## in Loop: Header=BB17_74 Depth=2 - movq %r12, %r10 -Ltmp1198: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1199: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_258 -Ltmp1200: -## BB#112: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_114 -Ltmp1201: -## BB#113: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_115 -Ltmp1202: -LBB17_114: ## %select.false - ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movd %rax, %xmm0 -Ltmp1203: -LBB17_115: ## %select.end - ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, %r12d - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1204: - movq (%rbx), %rax -Ltmp1205: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_118 -Ltmp1206: -## BB#116: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1207: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %eax -Ltmp1208: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_117 -Ltmp1209: -LBB17_118: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %edx - movq %r10, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1210: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1211: -LBB17_117: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - jmp LBB17_83 -Ltmp1212: -LBB17_119: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %edx - movq (%r13), %rcx - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1213: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_int - movq %rbx, %r10 -Ltmp1214: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1215: -LBB17_81: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_82 -Ltmp1216: -LBB17_133: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r13), %rcx - jmp LBB17_134 -Ltmp1217: -LBB17_123: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero -Ltmp1218: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp1219: - ##DEBUG_VALUE: n <- [%RBP+-120] - movl %r14d, %r12d - movq %r10, %r14 -Ltmp1220: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _floor - movq %r14, %r10 -Ltmp1221: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movl %r12d, %r14d -Ltmp1222: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_278 - jp LBB17_278 -Ltmp1223: -## BB#124: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_278 -Ltmp1224: -## BB#125: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_278 -Ltmp1225: -## BB#126: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx -Ltmp1226: -LBB17_134: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - movl %r14d, %r12d - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1227: - movq -128(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax -Ltmp1228: - ##DEBUG_VALUE: ukey <- %EAX - movq -88(%rbp), %rsi ## 8-byte Reload - cmpl 64(%rsi), %eax - jae LBB17_137 -Ltmp1229: -## BB#135: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rdx -Ltmp1230: - ##DEBUG_VALUE: data <- %RDX - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %eax -Ltmp1231: - movq %rcx, (%rdx,%rax,8) - jmp LBB17_136 -Ltmp1232: -LBB17_137: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl %eax, %edx - movq %r10, %rdi - movq %r10, %r14 -Ltmp1233: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _raviH_set_int - movq %r14, %r10 -Ltmp1234: -LBB17_136: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %rbx, %r11 -Ltmp1235: -LBB17_82: ## in Loop: Header=BB17_74 Depth=2 - movq %r15, %r9 -LBB17_83: ## in Loop: Header=BB17_74 Depth=2 - movl %r12d, %eax - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_140 - .align 4, 0x90 -Ltmp1236: ## Block address taken -LBB17_74: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_121 Depth 3 -Ltmp1237: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1339 36 ## /Users/dylan/github/ravi/src/lvm.c:1339:36 - movl %r13d, %eax - shrl $9, %eax - andl $127, %eax - .loc 1 1339 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1339:25 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%rax,8), %rax - .loc 1 1339 50 ## /Users/dylan/github/ravi/src/lvm.c:1339:50 - movq (%rax), %rdx -Ltmp1238: - ##DEBUG_VALUE: upval <- %RDX - .loc 1 1340 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1340:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %al, %al - cmovsq %rcx, %rbx -Ltmp1239: - ##DEBUG_VALUE: rb <- %RBX - .loc 1 1341 22 ## /Users/dylan/github/ravi/src/lvm.c:1341:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1240: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movl 8(%rdx), %eax -Ltmp1241: - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $69, %eax - jne LBB17_75 -Ltmp1242: -## BB#84: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r14 -Ltmp1243: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r11, %r12 -Ltmp1244: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $19, 8(%rbx) - jne LBB17_88 -Ltmp1245: -## BB#85: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%rbx), %rsi -Ltmp1246: - ##DEBUG_VALUE: idx <- %RSI - movq %rbx, -128(%rbp) ## 8-byte Spill -Ltmp1247: - ##DEBUG_VALUE: rb <- [%RBP+-128] - movq (%rdx), %rdi -Ltmp1248: - ##DEBUG_VALUE: h <- %RDI - movq %rdx, -120(%rbp) ## 8-byte Spill -Ltmp1249: - ##DEBUG_VALUE: upval <- [%RBP+-120] - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - leaq -1(%rsi), %rbx - movl 12(%rdi), %eax -Ltmp1250: - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpq %rax, %rbx - movq %r12, %r11 - movq %r14, %r10 -Ltmp1251: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-120] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - movq %r9, %r15 - jae LBB17_87 -Ltmp1252: -## BB#86: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - shlq $4, %rbx - addq 16(%rdi), %rbx - jmp LBB17_89 -Ltmp1253: - .align 4, 0x90 -LBB17_88: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- %RDX - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - movq %r9, %r15 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%rdx), %rdi - movq %rdx, -120(%rbp) ## 8-byte Spill -Ltmp1254: - ##DEBUG_VALUE: upval <- [%RBP+-120] - movq %rbx, %rsi - movq %rbx, -128(%rbp) ## 8-byte Spill -Ltmp1255: - ##DEBUG_VALUE: rb <- [%RBP+-128] - callq _luaH_get - movq %rax, %rbx -Ltmp1256: - ##DEBUG_VALUE: slot <- %RBX - movq %r12, %r11 - movq %r14, %r10 -Ltmp1257: -LBB17_89: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-120] - ##DEBUG_VALUE: rb <- [%RBP+-128] -Ltmp1258: - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - cmpl $0, 8(%rbx) - movq %r15, %r9 -Ltmp1259: - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - je LBB17_95 -Ltmp1260: -## BB#90: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - testb $64, 8(%r13) -Ltmp1261: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - je LBB17_94 -Ltmp1262: -## BB#91: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax), %rsi - testb $4, 9(%rsi) - je LBB17_94 -Ltmp1263: -## BB#92: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq (%r13), %rax - testb $3, 9(%rax) - je LBB17_94 -Ltmp1264: -## BB#93: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r15 - movq %r12, -80(%rbp) ## 8-byte Spill - movq %r10, %r12 -Ltmp1265: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - callq _luaC_barrierback_ -Ltmp1266: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq %r12, %r10 -Ltmp1267: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r9 - movq %r14, %r11 -Ltmp1268: - .align 4, 0x90 -LBB17_94: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq (%r13), %rax - movq 8(%r13), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_140 -Ltmp1269: - .align 4, 0x90 -LBB17_95: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: upval <- [%RBP+-120] - ##DEBUG_VALUE: rb <- [%RBP+-128] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1342 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq %r11, 40(%r12) - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 -Ltmp1270: - movq %r10, %rdi - movq -120(%rbp), %rsi ## 8-byte Reload - movq -128(%rbp), %rdx ## 8-byte Reload - movq %r13, %rcx - movq %rbx, %r8 - movq %r11, %r14 - movq %r10, %rbx -Ltmp1271: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishset - movq %rbx, %r10 -Ltmp1272: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1273: -LBB17_139: ## in Loop: Header=BB17_74 Depth=2 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - movq 32(%r12), %r9 -Ltmp1274: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1275: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1276: -LBB17_140: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1277: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1278: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1343 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_141 -Ltmp1279: -LBB17_142: ## in Loop: Header=BB17_74 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1280: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1281: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1282: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1283: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp1284: -LBB17_147: ## in Loop: Header=BB17_143 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1349 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp1285: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1286: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp1287: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp1288: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1289: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq 32(%r12), %r9 -Ltmp1290: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1291: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_148 -Ltmp1292: - .align 4, 0x90 -Ltmp1293: ## Block address taken -LBB17_143: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1346 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1346:32 - shrl $24, %r13d - .loc 1 1346 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1346:21 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%r13,8), %rsi -Ltmp1294: - ##DEBUG_VALUE: uv <- %RSI - .loc 1 1347 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1347:9 - movq (%rsi), %rax - movq (%r15), %rcx - movq 8(%r15), %rdx - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp1295: - .loc 1 1348 9 ## /Users/dylan/github/ravi/src/lvm.c:1348:9 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB17_146 -Ltmp1296: -## BB#144: ## in Loop: Header=BB17_143 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB17_146 -Ltmp1297: -## BB#145: ## in Loop: Header=BB17_143 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp1298: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %rdi - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, %r12d - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp1299: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r13 - callq _luaC_upvalbarrier_ - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1300: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r8 - movq %r15, %r10 -Ltmp1301: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp1302: - .align 4, 0x90 -LBB17_146: ## in Loop: Header=BB17_143 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp1303: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_147 -Ltmp1304: -LBB17_148: ## in Loop: Header=BB17_143 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1305: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1306: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp1307: -LBB17_150: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $101, %eax - jne LBB17_151 -Ltmp1308: -## BB#170: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1354 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1309: -## BB#171: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r15), %r15 -Ltmp1310: - ##DEBUG_VALUE: h <- %R15 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp1311: - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $19, %eax - je LBB17_179 -Ltmp1312: -## BB#172: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - jne LBB17_182 -Ltmp1313: -## BB#173: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r11, %r12 - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1314: - movq (%rbx), %rax -Ltmp1315: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_177 -Ltmp1316: -## BB#174: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1317: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1318: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_175 -Ltmp1319: -LBB17_216: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1355 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 - movq %rbx, 40(%r12) - .loc 1 1355 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 -Ltmp1320: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1321: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1322: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1355 9 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 - movq 32(%r12), %r9 -Ltmp1323: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1324: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_217 -Ltmp1325: -LBB17_151: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $85, %eax - jne LBB17_213 -Ltmp1326: -## BB#152: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1354 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $19, 8(%rbx) - jne LBB17_1583 -Ltmp1327: -## BB#153: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r15), %rsi -Ltmp1328: - ##DEBUG_VALUE: h <- %RSI - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl 8(%r13), %eax -Ltmp1329: - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $19, %eax - jne LBB17_195 -Ltmp1330: -## BB#154: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: h <- %RSI - movl %r14d, %r12d - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1331: - movq (%rbx), %rax -Ltmp1332: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rsi), %eax - jae LBB17_194 -Ltmp1333: -## BB#155: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rcx -Ltmp1334: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1335: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_156 -Ltmp1336: -LBB17_161: ## in Loop: Header=BB17_149 Depth=2 - movq %r10, %rbx -Ltmp1337: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - callq _luaH_getint - movq %rbx, %r10 -Ltmp1338: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rax, %rbx -Ltmp1339: - ##DEBUG_VALUE: slot <- %RBX - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_163 -Ltmp1340: -LBB17_213: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1341: - movq %r10, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r13, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1342: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishset - movq %r14, %r10 -Ltmp1343: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - jmp LBB17_214 -Ltmp1344: -LBB17_179: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R15 - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r11, %r12 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1345: - movq (%rbx), %rax -Ltmp1346: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_181 -Ltmp1347: -## BB#180: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R15 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1348: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cvtsi2sdq (%r13), %xmm0 - movl %eax, %eax -Ltmp1349: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_175 -Ltmp1350: -LBB17_182: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 -Ltmp1351: - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_258 -Ltmp1352: -## BB#183: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %r12 -Ltmp1353: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1354: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1355: - cmpl $4, %esi - jne LBB17_185 -Ltmp1356: -## BB#184: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_186 -Ltmp1357: -LBB17_195: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rsi, -88(%rbp) ## 8-byte Spill - movq %rbx, -120(%rbp) ## 8-byte Spill - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - jmp LBB17_196 -Ltmp1358: - .align 4, 0x90 -LBB17_207: ## %._crit_edge.6323 - ## in Loop: Header=BB17_196 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %r13 -Ltmp1359: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq %rbx, %r11 - movq %r15, %r9 -Ltmp1360: -LBB17_196: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_149 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r9, %r15 - movq %r11, %rbx - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_208 -Ltmp1361: -## BB#197: ## in Loop: Header=BB17_196 Depth=3 - cmpl $3, %eax - je LBB17_198 -## BB#202: ## in Loop: Header=BB17_196 Depth=3 -Ltmp1362: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_278 -Ltmp1363: -## BB#203: ## in Loop: Header=BB17_196 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %r12 -Ltmp1364: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1365: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1366: - cmpl $4, %esi - jne LBB17_205 -Ltmp1367: -## BB#204: ## in Loop: Header=BB17_196 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_206 -Ltmp1368: - .align 4, 0x90 -LBB17_205: ## in Loop: Header=BB17_196 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -Ltmp1369: -LBB17_206: ## in Loop: Header=BB17_196 Depth=3 - movq %r12, %r10 -Ltmp1370: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp1371: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_207 - jmp LBB17_278 -Ltmp1372: -LBB17_177: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %edx - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero - jmp LBB17_178 -Ltmp1373: -LBB17_181: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R15 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %edx - movq (%r13), %rax -Ltmp1374: - cvtsi2sdq %rax, %xmm0 -Ltmp1375: -LBB17_178: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq %r10, %rdi - movq %r15, %rsi - movq %r9, %r14 - movq %r10, %rbx -Ltmp1376: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1377: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r9 -Ltmp1378: -LBB17_175: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r12, %r11 - jmp LBB17_176 -Ltmp1379: -LBB17_185: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1380: -LBB17_186: ## in Loop: Header=BB17_149 Depth=2 - movq %r12, %r10 -Ltmp1381: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1382: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_258 -Ltmp1383: -## BB#187: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_189 -Ltmp1384: -## BB#188: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_190 -Ltmp1385: -LBB17_189: ## %select.false7925 - ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movd %rax, %xmm0 -Ltmp1386: -LBB17_190: ## %select.end7924 - ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, %r12d - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1387: - movq (%rbx), %rax -Ltmp1388: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r15), %eax - jae LBB17_193 -Ltmp1389: -## BB#191: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r15), %rcx -Ltmp1390: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %eax -Ltmp1391: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_192 -Ltmp1392: -LBB17_193: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %edx - movq %r10, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1393: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1394: -LBB17_192: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - jmp LBB17_157 -Ltmp1395: -LBB17_194: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %edx - movq (%r13), %rcx - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp1396: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _raviH_set_int - movq %r15, %r10 -Ltmp1397: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 -Ltmp1398: -LBB17_156: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_157 -Ltmp1399: -LBB17_208: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r13), %rcx - jmp LBB17_209 -Ltmp1400: -LBB17_198: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero -Ltmp1401: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -128(%rbp) ## 8-byte Spill -Ltmp1402: - ##DEBUG_VALUE: n <- [%RBP+-128] - movl %r14d, %r12d - movq %r10, %r14 -Ltmp1403: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _floor - movq %r14, %r10 -Ltmp1404: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movl %r12d, %r14d -Ltmp1405: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -128(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_278 - jp LBB17_278 -Ltmp1406: -## BB#199: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_278 -Ltmp1407: -## BB#200: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_278 -Ltmp1408: -## BB#201: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx -Ltmp1409: -LBB17_209: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - movl %r14d, %r12d - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1410: - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax -Ltmp1411: - ##DEBUG_VALUE: ukey <- %EAX - movq -88(%rbp), %rsi ## 8-byte Reload - cmpl 64(%rsi), %eax - jae LBB17_212 -Ltmp1412: -## BB#210: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rdx -Ltmp1413: - ##DEBUG_VALUE: data <- %RDX - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %eax -Ltmp1414: - movq %rcx, (%rdx,%rax,8) - jmp LBB17_211 -Ltmp1415: -LBB17_212: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl %eax, %edx - movq %r10, %rdi - movq %r10, %r14 -Ltmp1416: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _raviH_set_int - movq %r14, %r10 -Ltmp1417: -LBB17_211: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %rbx, %r11 - movq %r15, %r9 -Ltmp1418: -LBB17_157: ## in Loop: Header=BB17_149 Depth=2 - movl %r12d, %eax - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_215 - .align 4, 0x90 -Ltmp1419: ## Block address taken -LBB17_149: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_196 Depth 3 -Ltmp1420: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1352 22 ## /Users/dylan/github/ravi/src/lvm.c:1352:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %al, %al - cmovsq %rcx, %rbx -Ltmp1421: - ##DEBUG_VALUE: rb <- %RBX - .loc 1 1353 22 ## /Users/dylan/github/ravi/src/lvm.c:1353:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1422: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movl 8(%r15), %eax -Ltmp1423: - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $69, %eax - jne LBB17_150 -Ltmp1424: -## BB#158: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r14 -Ltmp1425: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r11, -128(%rbp) ## 8-byte Spill -Ltmp1426: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $19, 8(%rbx) - jne LBB17_162 -Ltmp1427: -## BB#159: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%rbx), %rsi -Ltmp1428: - ##DEBUG_VALUE: idx <- %RSI - movq %rbx, -120(%rbp) ## 8-byte Spill -Ltmp1429: - ##DEBUG_VALUE: rb <- [%RBP+-120] - movq (%r15), %rdi -Ltmp1430: - ##DEBUG_VALUE: h <- %RDI - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - leaq -1(%rsi), %rbx - movl 12(%rdi), %eax -Ltmp1431: - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpq %rax, %rbx - movq %r14, %r10 -Ltmp1432: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - movq %r9, %r12 - jae LBB17_161 -Ltmp1433: -## BB#160: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - shlq $4, %rbx - addq 16(%rdi), %rbx -Ltmp1434: - ##DEBUG_VALUE: slot <- %RBX - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_163 -Ltmp1435: - .align 4, 0x90 -LBB17_162: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: rc <- %R13 - movq %r9, %r12 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r15), %rdi - movq %rbx, %rsi - movq %rbx, -120(%rbp) ## 8-byte Spill -Ltmp1436: - ##DEBUG_VALUE: rb <- [%RBP+-120] - callq _luaH_get - movq %rax, %rbx -Ltmp1437: - ##DEBUG_VALUE: slot <- %RBX - movq -128(%rbp), %r11 ## 8-byte Reload - movq %r14, %r10 -Ltmp1438: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_163: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - cmpl $0, 8(%rbx) - movq %r12, %r9 -Ltmp1439: - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - je LBB17_169 -Ltmp1440: -## BB#164: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - testb $64, 8(%r13) -Ltmp1441: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - je LBB17_168 -Ltmp1442: -## BB#165: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r15), %rsi - testb $4, 9(%rsi) - je LBB17_168 -Ltmp1443: -## BB#166: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq (%r13), %rax - testb $3, 9(%rax) - je LBB17_168 -Ltmp1444: -## BB#167: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r15 - movq %r10, %r12 -Ltmp1445: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - callq _luaC_barrierback_ -Ltmp1446: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq %r12, %r10 -Ltmp1447: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r9 - movq %r14, %r11 -Ltmp1448: - .align 4, 0x90 -LBB17_168: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq (%r13), %rax - movq 8(%r13), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) -Ltmp1449: -LBB17_176: ## in Loop: Header=BB17_149 Depth=2 - movl -88(%rbp), %eax ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_215 - .align 4, 0x90 -LBB17_169: ## in Loop: Header=BB17_149 Depth=2 -Ltmp1450: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1354 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1451: - movq %r11, 40(%r12) - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 -Ltmp1452: - movq %r10, %rdi - movq %r15, %rsi - movq -120(%rbp), %rdx ## 8-byte Reload - movq %r13, %rcx - movq %rbx, %r8 - movq %r11, %r14 - movq %r10, %rbx -Ltmp1453: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishset - movq %rbx, %r10 -Ltmp1454: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1455: -LBB17_214: ## in Loop: Header=BB17_149 Depth=2 - .loc 1 1354 9 ## /Users/dylan/github/ravi/src/lvm.c:1354:9 - movq 32(%r12), %r9 -Ltmp1456: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1457: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1458: -LBB17_215: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1355 9 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1459: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1460: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1355 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_216 -Ltmp1461: -LBB17_217: ## in Loop: Header=BB17_149 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1355 9 ## /Users/dylan/github/ravi/src/lvm.c:1355:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1462: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1463: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1464: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1465: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp1466: -LBB17_219: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $101, %eax - jne LBB17_220 -Ltmp1467: -## BB#235: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1360 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%r15), %rbx -Ltmp1468: - ##DEBUG_VALUE: h <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp1469: - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cmpl $19, %eax - je LBB17_241 -Ltmp1470: -## BB#236: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - jne LBB17_245 -Ltmp1471: -## BB#237: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r15 - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1472: - movq (%rdx), %rax -Ltmp1473: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB17_240 -Ltmp1474: -## BB#238: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx -Ltmp1475: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1476: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_239 -Ltmp1477: -LBB17_282: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1361 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 - movq %rbx, 40(%r12) - .loc 1 1361 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 -Ltmp1478: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1479: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1480: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1361 9 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 - movq 32(%r12), %r9 -Ltmp1481: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1482: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_283 -Ltmp1483: -LBB17_227: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq %r12, %rdi - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r9, %rbx - movq %rdx, %r14 -Ltmp1484: - ##DEBUG_VALUE: rb <- %R14 - callq _luaH_getint - movq %r14, %rdx -Ltmp1485: - ##DEBUG_VALUE: rb <- %RDX - movq %rbx, %r9 - movq -128(%rbp), %r11 ## 8-byte Reload - movq %rax, %rbx -Ltmp1486: - ##DEBUG_VALUE: slot <- %RBX - jmp LBB17_228 -Ltmp1487: -LBB17_220: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %rdx, -128(%rbp) ## 8-byte Spill - cmpl $85, %eax - jne LBB17_279 -Ltmp1488: -## BB#221: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%r15), %rsi -Ltmp1489: - ##DEBUG_VALUE: h <- %RSI - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl 8(%r13), %eax -Ltmp1490: - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cmpl $19, %eax - jne LBB17_260 -Ltmp1491: -## BB#222: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: h <- %RSI - movq %r11, %r15 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1492: - movq -128(%rbp), %rax ## 8-byte Reload - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq (%rax), %rax -Ltmp1493: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rsi), %eax - jae LBB17_259 -Ltmp1494: -## BB#223: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rcx -Ltmp1495: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%r13), %rdx - movl %eax, %eax -Ltmp1496: - movq %rdx, (%rcx,%rax,8) - jmp LBB17_224 -Ltmp1497: -LBB17_279: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1498: - movq %r10, %rdi - movq %r15, %rsi - movq -128(%rbp), %rdx ## 8-byte Reload - movq %r13, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1499: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishset - movq %r14, %r10 - jmp LBB17_280 -Ltmp1500: -LBB17_241: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RBX - movq %r9, %r12 - movq %r11, %r15 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1501: - movq (%rdx), %rax -Ltmp1502: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB17_244 -Ltmp1503: -## BB#242: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RBX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx -Ltmp1504: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cvtsi2sdq (%r13), %xmm0 - movl %eax, %eax -Ltmp1505: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_243 -Ltmp1506: -LBB17_245: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r11, %r15 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 -Ltmp1507: - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_258 -Ltmp1508: -## BB#246: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %rdx, %r14 - movq %r12, -80(%rbp) ## 8-byte Spill - movq %r10, %r12 -Ltmp1509: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1510: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1511: - cmpl $4, %esi - jne LBB17_248 -Ltmp1512: -## BB#247: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_249 -Ltmp1513: -LBB17_260: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rsi, -136(%rbp) ## 8-byte Spill - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - jmp LBB17_261 -Ltmp1514: - .align 4, 0x90 -LBB17_272: ## %._crit_edge.6273 - ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp1515: - .loc 1 129 10 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %r14, %r13 -Ltmp1516: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq %rbx, %r11 - movq -120(%rbp), %r9 ## 8-byte Reload -Ltmp1517: -LBB17_261: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_218 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_273 -Ltmp1518: -## BB#262: ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r11, %rbx - cmpl $3, %eax - je LBB17_263 -Ltmp1519: -## BB#267: ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_278 -Ltmp1520: -## BB#268: ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, %r15 - movq %r10, %r12 -Ltmp1521: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %r14 -Ltmp1522: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB17_270 -Ltmp1523: -## BB#269: ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB17_271 -Ltmp1524: - .align 4, 0x90 -LBB17_270: ## in Loop: Header=BB17_261 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp1525: -LBB17_271: ## in Loop: Header=BB17_261 Depth=3 - movq %r12, %r10 -Ltmp1526: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp1527: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - movq %r15, %r12 - je LBB17_272 - jmp LBB17_278 -Ltmp1528: -LBB17_240: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %edx - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero - movq %r10, %rdi - movq %rbx, %rsi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1529: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1530: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1531: -LBB17_239: ## in Loop: Header=BB17_218 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r15, %r9 - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_281 -Ltmp1532: -LBB17_244: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RBX - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %edx - movq (%r13), %rax -Ltmp1533: - cvtsi2sdq %rax, %xmm0 - movq %r10, %rdi - movq %rbx, %rsi - movq %r10, %rbx -Ltmp1534: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1535: -LBB17_243: ## in Loop: Header=BB17_218 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r15, %r11 - movq %r12, %r9 - movl -88(%rbp), %eax ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_281 -Ltmp1536: -LBB17_248: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1537: -LBB17_249: ## in Loop: Header=BB17_218 Depth=2 - movq %r12, %r10 -Ltmp1538: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1539: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_258 -Ltmp1540: -## BB#250: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_252 -Ltmp1541: -## BB#251: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_253 -Ltmp1542: -LBB17_252: ## %select.false7960 - ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movd %rax, %xmm0 -Ltmp1543: -LBB17_253: ## %select.end7959 - ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%r14), %rax -Ltmp1544: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB17_257 -Ltmp1545: -## BB#254: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx -Ltmp1546: - ##DEBUG_VALUE: data <- %RCX - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %eax -Ltmp1547: - movsd %xmm0, (%rcx,%rax,8) - jmp LBB17_255 -Ltmp1548: -LBB17_257: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %edx - movq %r10, %rdi - movq %rbx, %rsi - movq %r10, %rbx -Ltmp1549: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_float - movq %rbx, %r10 -Ltmp1550: -LBB17_255: ## in Loop: Header=BB17_218 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r15, %r11 - jmp LBB17_256 -Ltmp1551: -LBB17_259: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RSI - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %edx - movq (%r13), %rcx - movq %r10, %rdi - movq %r9, %r14 - movq %r10, %rbx -Ltmp1552: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_set_int - movq %rbx, %r10 -Ltmp1553: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r9 -Ltmp1554: -LBB17_224: ## in Loop: Header=BB17_218 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r15, %r11 - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_281 -Ltmp1555: -LBB17_273: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %rbx - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 -Ltmp1556: - movq (%r13), %rcx - jmp LBB17_274 -Ltmp1557: -LBB17_263: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero -Ltmp1558: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -144(%rbp) ## 8-byte Spill -Ltmp1559: - ##DEBUG_VALUE: n <- [%RBP+-144] - movq %r12, %r15 - movq %r10, %r12 -Ltmp1560: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - callq _floor - movq %r12, %r10 -Ltmp1561: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r12 -Ltmp1562: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -144(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_278 - jp LBB17_278 -Ltmp1563: -## BB#264: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_278 -Ltmp1564: -## BB#265: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_278 -Ltmp1565: -## BB#266: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx -Ltmp1566: -LBB17_274: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq -128(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax -Ltmp1567: - ##DEBUG_VALUE: ukey <- %EAX - movq -136(%rbp), %rsi ## 8-byte Reload - cmpl 64(%rsi), %eax - jae LBB17_277 -Ltmp1568: -## BB#275: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rsi), %rdx -Ltmp1569: - ##DEBUG_VALUE: data <- %RDX - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %eax -Ltmp1570: - movq %rcx, (%rdx,%rax,8) - jmp LBB17_276 -Ltmp1571: -LBB17_277: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl %eax, %edx - movq %r10, %rdi - movq %r10, %r14 -Ltmp1572: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _raviH_set_int - movq %r14, %r10 -Ltmp1573: -LBB17_276: ## in Loop: Header=BB17_218 Depth=2 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %rbx, %r11 -Ltmp1574: -LBB17_256: ## in Loop: Header=BB17_218 Depth=2 - movq -120(%rbp), %r9 ## 8-byte Reload - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_281 - .align 4, 0x90 -Ltmp1575: ## Block address taken -LBB17_218: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_261 Depth 3 -Ltmp1576: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r9, -120(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1358 22 ## /Users/dylan/github/ravi/src/lvm.c:1358:22 -Ltmp1577: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp1578: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1359 22 ## /Users/dylan/github/ravi/src/lvm.c:1359:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1579: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movl 8(%r15), %eax -Ltmp1580: - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cmpl $69, %eax - jne LBB17_219 -Ltmp1581: -## BB#225: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq (%rdx), %rsi -Ltmp1582: - ##DEBUG_VALUE: idx <- %RSI - movq (%r15), %r12 -Ltmp1583: - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - leaq -1(%rsi), %rbx - movl 12(%r12), %eax -Ltmp1584: - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cmpq %rax, %rbx - jae LBB17_227 -Ltmp1585: -## BB#226: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - shlq $4, %rbx - addq 16(%r12), %rbx -Ltmp1586: - ##DEBUG_VALUE: slot <- %RBX -LBB17_228: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - cmpl $0, 8(%rbx) -Ltmp1587: - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - je LBB17_234 -Ltmp1588: -## BB#229: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - testb $64, 8(%r13) -Ltmp1589: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - je LBB17_233 -Ltmp1590: -## BB#230: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - testb $4, 9(%r12) - je LBB17_233 -Ltmp1591: -## BB#231: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - movq (%r13), %rax - testb $3, 9(%rax) - je LBB17_233 -Ltmp1592: -## BB#232: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: h <- %R12 - movq -104(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - movq %r11, %r14 - movq %r9, %r15 - movq %r8, %r12 -Ltmp1593: - callq _luaC_barrierback_ - movq %r12, %r8 - movq %r15, %r9 - movq %r14, %r11 -Ltmp1594: - .align 4, 0x90 -LBB17_233: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq (%r13), %rax - movq 8(%r13), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1595: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_281 -Ltmp1596: - .align 4, 0x90 -LBB17_234: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %r14 ## 8-byte Reload - .loc 1 1360 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1597: - movq %r11, 40(%r14) - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp1598: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 - movq %r12, %rdi - movq %r15, %rsi - movq %r13, %rcx - movq %rbx, %r8 - movq %r11, %rbx - callq _luaV_finishset - movq %r12, %r10 -Ltmp1599: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r12 -Ltmp1600: -LBB17_280: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - .loc 1 1360 9 ## /Users/dylan/github/ravi/src/lvm.c:1360:9 -Ltmp1601: - movq 32(%r12), %r9 -Ltmp1602: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1603: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1604: -LBB17_281: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1361 9 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1605: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1606: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1361 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_282 -Ltmp1607: -LBB17_283: ## in Loop: Header=BB17_218 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1361 9 ## /Users/dylan/github/ravi/src/lvm.c:1361:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1608: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1609: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1610: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1611: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp1612: -LBB17_297: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 1 1367 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - andl $15, %ecx -Ltmp1613: - .loc 1 1367 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - cmpl $5, %ecx - je LBB17_1584 -Ltmp1614: -## BB#298: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 -Ltmp1615: - movq %r10, %rdi - movq %r15, %rsi - movq %r14, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp1616: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishset - movq %r14, %r10 -Ltmp1617: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - jmp LBB17_299 -Ltmp1618: -LBB17_301: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1368 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %rbx, 40(%r12) - .loc 1 1368 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 -Ltmp1619: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1620: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1621: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq 32(%r12), %r9 -Ltmp1622: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp1623: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - jmp LBB17_302 -Ltmp1624: - .align 4, 0x90 -Ltmp1625: ## Block address taken -LBB17_284: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_286 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1365 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1365:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp1626: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1366 22 ## /Users/dylan/github/ravi/src/lvm.c:1366:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %cl, %cl - cmovsq %rax, %r14 -Ltmp1627: - ##DEBUG_VALUE: rc <- %R14 - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movl 8(%r15), %ecx -Ltmp1628: - .loc 1 1367 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - cmpl $69, %ecx - movabsq $4294967296, %rax ## imm = 0x100000000 - jne LBB17_297 -Ltmp1629: -## BB#285: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movq (%r15), %rsi -Ltmp1630: - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movq (%rdx), %r8 - .file 13 "/Users/dylan/github/ravi/include" "ltable.h" - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp1631: - movl 12(%r8), %ebx - andl 80(%rsi), %ebx - shlq $5, %rbx - addq 24(%rsi), %rbx -Ltmp1632: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RBX - .align 4, 0x90 -LBB17_286: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_284 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%rbx), %rcx - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %ecx - jne LBB17_288 -Ltmp1633: -## BB#287: ## in Loop: Header=BB17_286 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %r8, 16(%rbx) - je LBB17_290 -Ltmp1634: -LBB17_288: ## in Loop: Header=BB17_286 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdi - sarq $32, %rdi - shlq $5, %rdi - addq %rdi, %rbx -Ltmp1635: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RBX - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - cmpq %rax, %rcx - jae LBB17_286 -Ltmp1636: -## BB#289: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq _luaO_nilobject_@GOTPCREL(%rip), %rbx -Ltmp1637: -LBB17_290: ## %luaH_getshortstr.exit - ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - .loc 1 1367 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - cmpl $0, 8(%rbx) -Ltmp1638: - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - je LBB17_296 -Ltmp1639: -## BB#291: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - testb $64, 8(%r14) - je LBB17_295 -Ltmp1640: -## BB#292: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - testb $4, 9(%rsi) - je LBB17_295 -Ltmp1641: -## BB#293: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - movq (%r14), %rax - testb $3, 9(%rax) - je LBB17_295 -Ltmp1642: -## BB#294: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - movq %r10, %rdi - movq %r11, %r15 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r10, %r13 -Ltmp1643: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - callq _luaC_barrierback_ - movq %r13, %r10 -Ltmp1644: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -120(%rbp), %r9 ## 8-byte Reload - movq %r15, %r11 -Ltmp1645: - .align 4, 0x90 -LBB17_295: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - movq (%r14), %rax - movq 8(%r14), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_300 -Ltmp1646: - .align 4, 0x90 -LBB17_296: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RDX - ##DEBUG_VALUE: rc <- %R14 - ##DEBUG_VALUE: slot <- %RBX - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movq %r11, 40(%r12) - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 -Ltmp1647: - movq %r10, %rdi - movq %r15, %rsi - movq %r14, %rcx - movq %rbx, %r8 - movq %r11, %r14 -Ltmp1648: - movq %r10, %rbx -Ltmp1649: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishset - movq %rbx, %r10 -Ltmp1650: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1651: -LBB17_299: ## in Loop: Header=BB17_284 Depth=2 - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - movq 32(%r12), %r9 -Ltmp1652: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1653: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX -LBB17_300: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1368 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1654: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1655: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1368 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - testl %eax, %eax - movl $0, %edx -Ltmp1656: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jne LBB17_301 -Ltmp1657: -LBB17_302: ## in Loop: Header=BB17_284 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1658: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1659: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1660: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1661: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %edx, %r14d - jmpq *(%rcx) -Ltmp1662: -LBB17_308: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - movq %rdx, %r14 - .loc 1 1380 9 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 -Ltmp1663: - movq %r11, 40(%r14) - .loc 1 1380 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 -Ltmp1664: - movq %r10, %rdi - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r10, %rbx -Ltmp1665: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %rbx, %r10 -Ltmp1666: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -128(%rbp), %r11 ## 8-byte Reload -Ltmp1667: - .loc 1 1380 9 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 - movq 32(%r14), %r9 -Ltmp1668: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r14, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1669: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_309 -Ltmp1670: - .align 4, 0x90 -Ltmp1671: ## Block address taken -LBB17_303: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, -120(%rbp) ## 8-byte Spill - .loc 1 1371 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1371:17 - movq %r11, -128(%rbp) ## 8-byte Spill -Ltmp1672: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r13d, %ebx - shrl $24, %ebx -Ltmp1673: - ##DEBUG_VALUE: b <- %EBX - .loc 1 1372 17 ## /Users/dylan/github/ravi/src/lvm.c:1372:17 - shrl $16, %r13d - movzbl %r13b, %r14d -Ltmp1674: - ##DEBUG_VALUE: c <- %R14D - .loc 1 1374 9 ## /Users/dylan/github/ravi/src/lvm.c:1374:9 - movq %r11, 40(%r12) - .loc 1 1375 13 ## /Users/dylan/github/ravi/src/lvm.c:1375:13 - movq %r10, %rdi - movq %r10, %r12 -Ltmp1675: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - callq _luaH_new - movq %r12, %r13 -Ltmp1676: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %rax, %r12 -Ltmp1677: - ##DEBUG_VALUE: x_ <- %R12 - ##DEBUG_VALUE: t <- %R12 - .loc 1 1376 9 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - movq %r12, (%r15) - movl $69, 8(%r15) -Ltmp1678: - .loc 1 1377 20 ## /Users/dylan/github/ravi/src/lvm.c:1377:20 - movl %r14d, %eax - orl %ebx, %eax - je LBB17_305 -Ltmp1679: -## BB#304: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: b <- %EBX - ##DEBUG_VALUE: c <- %R14D - ##DEBUG_VALUE: t <- %R12 - .loc 1 1378 29 ## /Users/dylan/github/ravi/src/lvm.c:1378:29 - movl %ebx, %edi - callq _luaO_fb2int - movl %eax, %ebx -Ltmp1680: - .loc 1 1378 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1378:45 - movl %r14d, %edi - callq _luaO_fb2int - .loc 1 1378 11 ## /Users/dylan/github/ravi/src/lvm.c:1378:11 - movq %r13, %rdi - movq %r12, %rsi - movl %ebx, %edx - movl %eax, %ecx - callq _luaH_resize -Ltmp1681: -LBB17_305: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1379 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 - movq 24(%r13), %rax -Ltmp1682: - .loc 1 1379 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 - cmpq $0, 24(%rax) - movq %r13, %r10 -Ltmp1683: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r13 ## 8-byte Reload - movq -96(%rbp), %r12 ## 8-byte Reload -Ltmp1684: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq -128(%rbp), %rbx ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - movl -88(%rbp), %eax ## 4-byte Reload - jle LBB17_307 -Ltmp1685: -## BB#306: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1379 9 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 - addq $16, %r15 - movq %r15, 16(%r10) - movq %r10, %rdi - movq %r10, %r14 -Ltmp1686: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaC_step - movq %r15, %r8 - movq %r14, %r10 -Ltmp1687: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1379 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 - movq %rbx, 40(%r13) - .loc 1 1379 9 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 -Ltmp1688: - movq 8(%r13), %rax - movq %rax, 16(%r10) -Ltmp1689: - .loc 1 1379 9 ## /Users/dylan/github/ravi/src/lvm.c:1379:9 - movq 32(%r13), %r9 -Ltmp1690: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp1691: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX -LBB17_307: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq %r13, %rdx - .loc 1 1380 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 -Ltmp1692: - movl (%rbx), %r13d - addq $4, %rbx -Ltmp1693: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1380 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 - testl %eax, %eax - movl $0, %r14d - movq %rbx, %r11 - jne LBB17_308 -Ltmp1694: -LBB17_309: ## in Loop: Header=BB17_303 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - .loc 1 1380 9 ## /Users/dylan/github/ravi/src/lvm.c:1380:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1695: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1696: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %r12, %rdi -Ltmp1697: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdx, %r12 - jmpq *(%rcx) -Ltmp1698: -LBB17_319: ## in Loop: Header=BB17_310 Depth=2 - .loc 1 1387 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - andl $15, %eax -Ltmp1699: - .loc 1 1387 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - cmpl $5, %eax - je LBB17_1585 -## BB#320: ## in Loop: Header=BB17_310 Depth=2 -Ltmp1700: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - movq %r10, %rbx - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 -Ltmp1701: - movq %r11, 40(%rbx) - xorl %r8d, %r8d - movq -104(%rbp), %rdi ## 8-byte Reload -Ltmp1702: - ##DEBUG_VALUE: luaV_execute:L <- %RDI - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq %r15, %rcx - movq %r11, %r15 - movq %rdi, %r14 -Ltmp1703: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishget - movq %r15, %r11 -Ltmp1704: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq 32(%rbx), %r9 -Ltmp1705: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %rbx, %r10 - movzbl 200(%r14), %r14d -Ltmp1706: - jmp LBB17_321 -Ltmp1707: -LBB17_323: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - movq %r10, %r12 - .loc 1 1388 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 -Ltmp1708: - movq %rbx, 40(%r12) - movq -104(%rbp), %rdi ## 8-byte Reload -Ltmp1709: - ##DEBUG_VALUE: luaV_execute:L <- %RDI - movq %rdi, %r14 -Ltmp1710: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - .loc 1 1388 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 -Ltmp1711: - callq _luaG_traceexec - movq %r15, %r8 -Ltmp1712: - .loc 1 1388 9 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movq 32(%r12), %r9 -Ltmp1713: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r12, %r10 - movzbl 200(%r14), %r14d -Ltmp1714: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - andl $12, %r14d -Ltmp1715: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_324 -Ltmp1716: -LBB17_318: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: aux <- %R8 - movq %r10, %rbx - .loc 1 1387 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 -Ltmp1717: - movq %r11, 40(%rbx) - movq -104(%rbp), %rdi ## 8-byte Reload -Ltmp1718: - ##DEBUG_VALUE: luaV_execute:L <- %RDI - .loc 1 1387 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq %r15, %rcx - movq %r11, %r14 - movq %rdi, %r15 -Ltmp1719: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaV_finishget - movq %r14, %r11 -Ltmp1720: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq 32(%rbx), %r9 -Ltmp1721: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %rbx, %r10 - movzbl 200(%r15), %r14d -Ltmp1722: -LBB17_321: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - andl $12, %r14d -Ltmp1723: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_322 -Ltmp1724: - .align 4, 0x90 -Ltmp1725: ## Block address taken -LBB17_310: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_312 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r10 - .loc 1 1383 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1383:20 - movl %r13d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r9,%rax), %rsi -Ltmp1726: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 1385 22 ## /Users/dylan/github/ravi/src/lvm.c:1385:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp1727: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edi - movq %rdi, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %dil, %dil - cmovsq %rcx, %rdx -Ltmp1728: - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1386 9 ## /Users/dylan/github/ravi/src/lvm.c:1386:9 - movq (%r9,%rax), %rcx - movq 8(%r9,%rax), %rdi - movq %rdi, 24(%r15) - movq %rcx, 16(%r15) -Ltmp1729: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movl 8(%r9,%rax), %eax -Ltmp1730: - .loc 1 1387 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - cmpl $69, %eax - movabsq $4294967296, %rbx ## imm = 0x100000000 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - movq %r8, %r12 - jne LBB17_319 -Ltmp1731: -## BB#311: ## in Loop: Header=BB17_310 Depth=2 - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq (%rsi), %rcx - movq (%rdx), %rax - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp1732: - movl 12(%rax), %r8d - andl 80(%rcx), %r8d - shlq $5, %r8 - addq 24(%rcx), %r8 -Ltmp1733: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .align 4, 0x90 -LBB17_312: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_310 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%r8), %rcx - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %ecx - jne LBB17_314 -Ltmp1734: -## BB#313: ## in Loop: Header=BB17_312 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rax, 16(%r8) - je LBB17_316 -Ltmp1735: -LBB17_314: ## in Loop: Header=BB17_312 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdi - sarq $32, %rdi - shlq $5, %rdi - addq %rdi, %r8 -Ltmp1736: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - cmpq %rbx, %rcx - jae LBB17_312 -Ltmp1737: -## BB#315: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -LBB17_316: ## %luaH_getshortstr.exit493 - ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp1738: - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: aux <- %R8 - .loc 1 1387 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - cmpl $0, 8(%r8) -Ltmp1739: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - je LBB17_318 -Ltmp1740: -## BB#317: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: aux <- %R8 - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq (%r8), %rax - movq 8(%r8), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp1741: -LBB17_322: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1388 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp1742: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp1743: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1388 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - testl %r14d, %r14d - movl $0, %r14d - movq %r12, %r8 - jne LBB17_323 -Ltmp1744: -LBB17_324: ## in Loop: Header=BB17_310 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1388 9 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1745: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1746: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1747: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1748: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r10, %r12 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1749: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jmpq *(%rcx) -Ltmp1750: -LBB17_330: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1400 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 - movq %rbx, 40(%r12) - .loc 1 1400 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 -Ltmp1751: - movq %r10, %rdi - movq %r10, %r14 -Ltmp1752: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp1753: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1400 9 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 - movq 32(%r12), %r9 -Ltmp1754: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp1755: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - jmp LBB17_331 -Ltmp1756: - .align 4, 0x90 -Ltmp1757: ## Block address taken -LBB17_325: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1392 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1392:20 - movl %r13d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r9,%rax), %r14 -Ltmp1758: - ##DEBUG_VALUE: rb <- %R14 - .loc 1 1393 22 ## /Users/dylan/github/ravi/src/lvm.c:1393:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp1759: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edx - movq %rdx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %dl, %dl - cmovsq %rcx, %rbx -Ltmp1760: - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1394 24 ## /Users/dylan/github/ravi/src/lvm.c:1394:24 - movq (%rbx), %rsi -Ltmp1761: - ##DEBUG_VALUE: key <- %RSI - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq (%r9,%rax), %rcx - movq 8(%r9,%rax), %rdx - movq %rdx, 24(%r15) - movq %rcx, 16(%r15) -Ltmp1762: - .loc 1 1396 13 ## /Users/dylan/github/ravi/src/lvm.c:1396:13 - movl 8(%r9,%rax), %eax - andl $15, %eax - xorl %r8d, %r8d -Ltmp1763: - .loc 1 1396 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1396:13 - cmpl $5, %eax - jne LBB17_328 -Ltmp1764: -## BB#326: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: key <- %RSI - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %r13 - .loc 1 1396 13 ## /Users/dylan/github/ravi/src/lvm.c:1396:13 -Ltmp1765: - movq (%r14), %rdi - callq _luaH_getstr - movq %rax, %r8 -Ltmp1766: - ##DEBUG_VALUE: aux <- %R8 - cmpl $0, 8(%r8) - je LBB17_327 -Ltmp1767: -## BB#1586: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: aux <- %R8 - .loc 1 1397 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1397:11 - movq (%r8), %rax - movq 8(%r8), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) - movq %r13, %rax - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1768: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movl -88(%rbp), %ecx ## 4-byte Reload - jmp LBB17_329 -Ltmp1769: -LBB17_327: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r13, %r11 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1770: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_328: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - .loc 1 1399 14 ## /Users/dylan/github/ravi/src/lvm.c:1399:14 - movq %r11, 40(%r12) - .loc 1 1399 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1399:14 -Ltmp1771: - movq %r10, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp1772: - movq %r10, %rbx -Ltmp1773: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp1774: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %rax -Ltmp1775: - .loc 1 1399 14 ## /Users/dylan/github/ravi/src/lvm.c:1399:14 - movq 32(%r12), %r9 -Ltmp1776: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp1777: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX -LBB17_329: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1400 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 - movq %rax, %rbx - addq $4, %rbx -Ltmp1778: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%rax), %r13d -Ltmp1779: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1400 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 - testl %ecx, %ecx - movl $0, %edx -Ltmp1780: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jne LBB17_330 -Ltmp1781: -LBB17_331: ## in Loop: Header=BB17_325 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1400 9 ## /Users/dylan/github/ravi/src/lvm.c:1400:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1782: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1783: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp1784: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1785: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %edx, %r14d - jmpq *(%rcx) -Ltmp1786: -LBB17_365: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1414 9 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp1787: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1414 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1788: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp1789: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp1790: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1791: - .loc 1 1414 9 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - movq 32(%r12), %r9 -Ltmp1792: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1793: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_366 -Ltmp1794: -LBB17_349: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_351 -Ltmp1795: -## BB#350: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp1796: -LBB17_359: ## %select.end8095 - ## in Loop: Header=BB17_332 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1797: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp1798: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_360 -Ltmp1799: -LBB17_337: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_361 -Ltmp1800: -## BB#338: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1801: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1802: - cmpl $4, %esi - jne LBB17_340 -## BB#339: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_341 -Ltmp1803: -LBB17_351: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_362 -Ltmp1804: -## BB#352: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1805: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1806: - cmpl $4, %esi - jne LBB17_354 -Ltmp1807: -## BB#353: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_355 -Ltmp1808: -LBB17_340: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_341: ## in Loop: Header=BB17_332 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1809: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1810: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1811: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_361 -Ltmp1812: -## BB#342: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1813: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_344 -Ltmp1814: -## BB#343: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_346 -Ltmp1815: -LBB17_361: ## %luaV_tonumber_.exit497.thread - ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1816: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - jmp LBB17_362 -Ltmp1817: -LBB17_354: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1818: -LBB17_355: ## in Loop: Header=BB17_332 Depth=2 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1819: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1820: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_362 -Ltmp1821: -## BB#356: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_358 -Ltmp1822: -## BB#357: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_359 -Ltmp1823: -LBB17_362: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1413 16 ## /Users/dylan/github/ravi/src/lvm.c:1413:16 -Ltmp1824: - movq %r11, 40(%rbx) - .loc 1 1413 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1413:16 -Ltmp1825: - movl $6, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp1826: - movq %r10, %r15 -Ltmp1827: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp1828: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1829: - .loc 1 1413 16 ## /Users/dylan/github/ravi/src/lvm.c:1413:16 - movq 32(%rbx), %r9 -Ltmp1830: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp1831: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_363 -Ltmp1832: -LBB17_344: ## %select.false8091 - ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_346 -Ltmp1833: -LBB17_358: ## %select.false8096 - ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_359 -Ltmp1834: - .align 4, 0x90 -Ltmp1835: ## Block address taken -LBB17_332: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1403 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1403:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp1836: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1404 22 ## /Users/dylan/github/ravi/src/lvm.c:1404:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1837: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp1838: - .loc 1 1406 29 ## /Users/dylan/github/ravi/src/lvm.c:1406:29 - cmpl $19, %eax - jne LBB17_333 -Ltmp1839: -## BB#335: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1406 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1406:13 - cmpl $19, 8(%r13) - jne LBB17_345 -Ltmp1840: -## BB#336: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1407 57 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1407:57 - movq (%r13), %rax -Ltmp1841: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1408 11 ## /Users/dylan/github/ravi/src/lvm.c:1408:11 - addq (%r14), %rax -Ltmp1842: - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp1843: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1844: - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload - jmp LBB17_364 -Ltmp1845: - .align 4, 0x90 -LBB17_333: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $3, %eax - jne LBB17_337 -Ltmp1846: -## BB#334: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1847: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1410 18 ## /Users/dylan/github/ravi/src/lvm.c:1410:18 - movq (%r14), %rbx - jmp LBB17_347 -Ltmp1848: - .align 4, 0x90 -LBB17_345: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp1849: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp1850: -LBB17_346: ## %luaV_tonumber_.exit497 - ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rbx -Ltmp1851: -LBB17_347: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp1852: - .loc 1 1410 18 ## /Users/dylan/github/ravi/src/lvm.c:1410:18 - cmpl $3, %eax - jne LBB17_349 -Ltmp1853: -## BB#348: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1410 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1410:39 - movq (%r13), %rax -Ltmp1854: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp1855: -LBB17_360: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1411 11 ## /Users/dylan/github/ravi/src/lvm.c:1411:11 - movd %rbx, %xmm0 - movd %rax, %xmm1 - addsd %xmm0, %xmm1 - movsd %xmm1, (%r15) - movl $3, 8(%r15) -Ltmp1856: -LBB17_363: ## in Loop: Header=BB17_332 Depth=2 - movq %r12, %rdi -Ltmp1857: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_364: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1414 9 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp1858: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1414 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - testl %ecx, %ecx - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_365 -Ltmp1859: -LBB17_366: ## in Loop: Header=BB17_332 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1414 9 ## /Users/dylan/github/ravi/src/lvm.c:1414:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1860: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1861: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp1862: -LBB17_400: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1428 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp1863: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1428 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1864: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp1865: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp1866: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1867: - .loc 1 1428 9 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - movq 32(%r12), %r9 -Ltmp1868: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1869: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_401 -Ltmp1870: -LBB17_384: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_386 -Ltmp1871: -## BB#385: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp1872: -LBB17_394: ## %select.end8123 - ## in Loop: Header=BB17_367 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1873: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp1874: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_395 -Ltmp1875: -LBB17_372: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_396 -Ltmp1876: -## BB#373: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1877: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1878: - cmpl $4, %esi - jne LBB17_375 -## BB#374: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_376 -Ltmp1879: -LBB17_386: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_397 -Ltmp1880: -## BB#387: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1881: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1882: - cmpl $4, %esi - jne LBB17_389 -Ltmp1883: -## BB#388: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_390 -Ltmp1884: -LBB17_375: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_376: ## in Loop: Header=BB17_367 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1885: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1886: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1887: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_396 -Ltmp1888: -## BB#377: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1889: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_379 -Ltmp1890: -## BB#378: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_381 -Ltmp1891: -LBB17_396: ## %luaV_tonumber_.exit505.thread - ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1892: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - jmp LBB17_397 -Ltmp1893: -LBB17_389: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1894: -LBB17_390: ## in Loop: Header=BB17_367 Depth=2 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1895: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1896: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_397 -Ltmp1897: -## BB#391: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_393 -Ltmp1898: -## BB#392: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_394 -Ltmp1899: -LBB17_397: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1427 16 ## /Users/dylan/github/ravi/src/lvm.c:1427:16 -Ltmp1900: - movq %r11, 40(%rbx) - .loc 1 1427 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1427:16 -Ltmp1901: - movl $7, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp1902: - movq %r10, %r15 -Ltmp1903: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp1904: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1905: - .loc 1 1427 16 ## /Users/dylan/github/ravi/src/lvm.c:1427:16 - movq 32(%rbx), %r9 -Ltmp1906: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp1907: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_398 -Ltmp1908: -LBB17_379: ## %select.false8119 - ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_381 -Ltmp1909: -LBB17_393: ## %select.false8124 - ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_394 -Ltmp1910: - .align 4, 0x90 -Ltmp1911: ## Block address taken -LBB17_367: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1417 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1417:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp1912: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1418 22 ## /Users/dylan/github/ravi/src/lvm.c:1418:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1913: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp1914: - .loc 1 1420 29 ## /Users/dylan/github/ravi/src/lvm.c:1420:29 - cmpl $19, %eax - jne LBB17_368 -Ltmp1915: -## BB#370: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1420 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1420:13 - cmpl $19, 8(%r13) - jne LBB17_380 -Ltmp1916: -## BB#371: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1421 28 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1421:28 - movq (%r14), %rax -Ltmp1917: - ##DEBUG_VALUE: ib <- %RAX - .loc 1 1422 11 ## /Users/dylan/github/ravi/src/lvm.c:1422:11 - subq (%r13), %rax -Ltmp1918: - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp1919: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1920: - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload - jmp LBB17_399 -Ltmp1921: - .align 4, 0x90 -LBB17_368: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $3, %eax - jne LBB17_372 -Ltmp1922: -## BB#369: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1923: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1424 18 ## /Users/dylan/github/ravi/src/lvm.c:1424:18 - movq (%r14), %rbx - jmp LBB17_382 -Ltmp1924: - .align 4, 0x90 -LBB17_380: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp1925: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp1926: -LBB17_381: ## %luaV_tonumber_.exit505 - ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rbx -Ltmp1927: -LBB17_382: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp1928: - .loc 1 1424 18 ## /Users/dylan/github/ravi/src/lvm.c:1424:18 - cmpl $3, %eax - jne LBB17_384 -Ltmp1929: -## BB#383: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1424 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1424:39 - movq (%r13), %rax -Ltmp1930: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp1931: -LBB17_395: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1425 11 ## /Users/dylan/github/ravi/src/lvm.c:1425:11 - movd %rbx, %xmm0 - movd %rax, %xmm1 - subsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp1932: -LBB17_398: ## in Loop: Header=BB17_367 Depth=2 - movq %r12, %rdi -Ltmp1933: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_399: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1428 9 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp1934: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1428 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - testl %ecx, %ecx - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_400 -Ltmp1935: -LBB17_401: ## in Loop: Header=BB17_367 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1428 9 ## /Users/dylan/github/ravi/src/lvm.c:1428:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp1936: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp1937: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp1938: -LBB17_435: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1442 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp1939: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1442 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp1940: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp1941: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp1942: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1943: - .loc 1 1442 9 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - movq 32(%r12), %r9 -Ltmp1944: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp1945: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_436 -Ltmp1946: -LBB17_419: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_421 -Ltmp1947: -## BB#420: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp1948: -LBB17_429: ## %select.end8151 - ## in Loop: Header=BB17_402 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp1949: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp1950: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_430 -Ltmp1951: -LBB17_407: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_431 -Ltmp1952: -## BB#408: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1953: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1954: - cmpl $4, %esi - jne LBB17_410 -## BB#409: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_411 -Ltmp1955: -LBB17_421: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_432 -Ltmp1956: -## BB#422: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp1957: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp1958: - cmpl $4, %esi - jne LBB17_424 -Ltmp1959: -## BB#423: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_425 -Ltmp1960: -LBB17_410: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_411: ## in Loop: Header=BB17_402 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1961: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp1962: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1963: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_431 -Ltmp1964: -## BB#412: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1965: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_414 -Ltmp1966: -## BB#413: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_416 -Ltmp1967: -LBB17_431: ## %luaV_tonumber_.exit513.thread - ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1968: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - jmp LBB17_432 -Ltmp1969: -LBB17_424: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp1970: -LBB17_425: ## in Loop: Header=BB17_402 Depth=2 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp1971: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp1972: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_432 -Ltmp1973: -## BB#426: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_428 -Ltmp1974: -## BB#427: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_429 -Ltmp1975: -LBB17_432: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1441 16 ## /Users/dylan/github/ravi/src/lvm.c:1441:16 -Ltmp1976: - movq %r11, 40(%rbx) - .loc 1 1441 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1441:16 -Ltmp1977: - movl $8, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp1978: - movq %r10, %r15 -Ltmp1979: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp1980: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp1981: - .loc 1 1441 16 ## /Users/dylan/github/ravi/src/lvm.c:1441:16 - movq 32(%rbx), %r9 -Ltmp1982: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp1983: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_433 -Ltmp1984: -LBB17_414: ## %select.false8147 - ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_416 -Ltmp1985: -LBB17_428: ## %select.false8152 - ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_429 -Ltmp1986: - .align 4, 0x90 -Ltmp1987: ## Block address taken -LBB17_402: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1431 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1431:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp1988: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1432 22 ## /Users/dylan/github/ravi/src/lvm.c:1432:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp1989: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp1990: - .loc 1 1434 29 ## /Users/dylan/github/ravi/src/lvm.c:1434:29 - cmpl $19, %eax - jne LBB17_403 -Ltmp1991: -## BB#405: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1434 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1434:13 - cmpl $19, 8(%r13) - jne LBB17_415 -Ltmp1992: -## BB#406: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1435 57 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1435:57 - movq (%r13), %rax -Ltmp1993: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1436 11 ## /Users/dylan/github/ravi/src/lvm.c:1436:11 - imulq (%r14), %rax -Ltmp1994: - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp1995: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1996: - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload - jmp LBB17_434 -Ltmp1997: - .align 4, 0x90 -LBB17_403: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $3, %eax - jne LBB17_407 -Ltmp1998: -## BB#404: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp1999: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1438 18 ## /Users/dylan/github/ravi/src/lvm.c:1438:18 - movq (%r14), %rbx - jmp LBB17_417 -Ltmp2000: - .align 4, 0x90 -LBB17_415: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp2001: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp2002: -LBB17_416: ## %luaV_tonumber_.exit513 - ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rbx -Ltmp2003: -LBB17_417: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp2004: - .loc 1 1438 18 ## /Users/dylan/github/ravi/src/lvm.c:1438:18 - cmpl $3, %eax - jne LBB17_419 -Ltmp2005: -## BB#418: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1438 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1438:39 - movq (%r13), %rax -Ltmp2006: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp2007: -LBB17_430: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1439 11 ## /Users/dylan/github/ravi/src/lvm.c:1439:11 - movd %rbx, %xmm0 - movd %rax, %xmm1 - mulsd %xmm0, %xmm1 - movsd %xmm1, (%r15) - movl $3, 8(%r15) -Ltmp2008: -LBB17_433: ## in Loop: Header=BB17_402 Depth=2 - movq %r12, %rdi -Ltmp2009: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_434: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1442 9 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2010: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1442 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - testl %ecx, %ecx - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_435 -Ltmp2011: -LBB17_436: ## in Loop: Header=BB17_402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1442 9 ## /Users/dylan/github/ravi/src/lvm.c:1442:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2012: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2013: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2014: -LBB17_439: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_441 -Ltmp2015: -## BB#440: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp2016: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp2017: -LBB17_449: ## %luaV_tonumber_.exit521 - ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rbx - jmp LBB17_450 -Ltmp2018: -LBB17_467: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - movq %rdx, %rbx - .loc 1 1452 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 -Ltmp2019: - movq %r11, 40(%rbx) -Ltmp2020: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1452 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %r15 -Ltmp2021: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r12 - callq _luaG_traceexec - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2022: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r8 - movq %r15, %r10 -Ltmp2023: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2024: - .loc 1 1452 9 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 - movq 32(%rbx), %r9 -Ltmp2025: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %rbx, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2026: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_468 -Ltmp2027: -LBB17_452: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_454 -Ltmp2028: -## BB#453: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp2029: -LBB17_462: ## %select.end8179 - ## in Loop: Header=BB17_437 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2030: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp2031: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_463 -Ltmp2032: -LBB17_441: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_464 -Ltmp2033: -## BB#442: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2034: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2035: - cmpl $4, %esi - jne LBB17_444 -Ltmp2036: -## BB#443: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_445 -Ltmp2037: -LBB17_454: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_465 -Ltmp2038: -## BB#455: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2039: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2040: - cmpl $4, %esi - jne LBB17_457 -Ltmp2041: -## BB#456: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_458 -Ltmp2042: -LBB17_444: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2043: -LBB17_445: ## in Loop: Header=BB17_437 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2044: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2045: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2046: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_464 -Ltmp2047: -## BB#446: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp2048: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_448 -Ltmp2049: -## BB#447: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_449 -Ltmp2050: -LBB17_464: ## %luaV_tonumber_.exit521.thread - ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp2051: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - jmp LBB17_465 -Ltmp2052: -LBB17_457: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2053: -LBB17_458: ## in Loop: Header=BB17_437 Depth=2 - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2054: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2055: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_465 -Ltmp2056: -## BB#459: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_461 -Ltmp2057: -## BB#460: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_462 -Ltmp2058: -LBB17_465: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1451 16 ## /Users/dylan/github/ravi/src/lvm.c:1451:16 -Ltmp2059: - movq %r11, 40(%rbx) - .loc 1 1451 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1451:16 -Ltmp2060: - movl $11, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp2061: - movq %r10, %r15 -Ltmp2062: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp2063: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2064: - .loc 1 1451 16 ## /Users/dylan/github/ravi/src/lvm.c:1451:16 - movq 32(%rbx), %r9 -Ltmp2065: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp2066: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - jmp LBB17_466 -Ltmp2067: -LBB17_448: ## %select.false8175 - ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_449 -Ltmp2068: -LBB17_461: ## %select.false8180 - ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_462 -Ltmp2069: - .align 4, 0x90 -Ltmp2070: ## Block address taken -LBB17_437: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1445 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1445:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2071: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1446 22 ## /Users/dylan/github/ravi/src/lvm.c:1446:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2072: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp2073: - .loc 1 1448 31 ## /Users/dylan/github/ravi/src/lvm.c:1448:31 - cmpl $3, %eax - jne LBB17_439 -Ltmp2074: -## BB#438: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %r12 -Ltmp2075: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1448 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1448:13 - movq (%r14), %rbx -Ltmp2076: -LBB17_450: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp2077: - .loc 1 1448 13 ## /Users/dylan/github/ravi/src/lvm.c:1448:13 - cmpl $3, %eax - jne LBB17_452 -Ltmp2078: -## BB#451: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1448 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1448:34 - movq (%r13), %rax -Ltmp2079: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %ecx ## 4-byte Reload -Ltmp2080: -LBB17_463: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1449 11 ## /Users/dylan/github/ravi/src/lvm.c:1449:11 - movd %rbx, %xmm0 - movd %rax, %xmm1 - divsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp2081: -LBB17_466: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1452 9 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2082: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1452 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 - testl %ecx, %ecx - movl $0, %r14d - movq -80(%rbp), %rdx ## 8-byte Reload - movq %r12, %rdi -Ltmp2083: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_467 -Ltmp2084: -LBB17_468: ## in Loop: Header=BB17_437 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1452 9 ## /Users/dylan/github/ravi/src/lvm.c:1452:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2085: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2086: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rdx, %r12 - jmpq *(%rcx) -Ltmp2087: -LBB17_471: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2088: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2089: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1458 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1458:13 - movq %r14, %rbx - jmp LBB17_472 -Ltmp2090: - .align 4, 0x90 -LBB17_483: ## %._crit_edge.6317 - ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2091: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2092: -LBB17_472: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_469 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_484 -Ltmp2093: -## BB#473: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_474 -## BB#478: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2094: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_504 -## BB#479: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2095: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2096: - cmpl $4, %esi - jne LBB17_481 -## BB#480: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2097: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_482 - .align 4, 0x90 -LBB17_481: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_482: ## in Loop: Header=BB17_472 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2098: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_483 - jmp LBB17_504 -Ltmp2099: -LBB17_506: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1462 9 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2100: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1462 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2101: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2102: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2103: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2104: - .loc 1 1462 9 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - movq 32(%r12), %r9 -Ltmp2105: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2106: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_507 -Ltmp2107: -LBB17_488: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rcx, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2108: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2109: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1458 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1458:35 - movq %r13, %rbx - jmp LBB17_489 -Ltmp2110: - .align 4, 0x90 -LBB17_500: ## %._crit_edge.6320 - ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2111: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2112: -LBB17_489: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_469 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_501 -Ltmp2113: -## BB#490: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_491 -## BB#495: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2114: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_504 -## BB#496: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2115: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2116: - cmpl $4, %esi - jne LBB17_498 -## BB#497: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2117: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_499 - .align 4, 0x90 -LBB17_498: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_499: ## in Loop: Header=BB17_489 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2118: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_500 - jmp LBB17_504 -Ltmp2119: -LBB17_484: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rcx -Ltmp2120: -LBB17_485: ## %luaV_tointeger.exit - ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2121: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2122: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_486 -Ltmp2123: -LBB17_474: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2124: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp2125: - ##DEBUG_VALUE: n <- [%RBP+-120] - callq _floor -Ltmp2126: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_504 - jp LBB17_504 -Ltmp2127: -## BB#475: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_504 -Ltmp2128: -## BB#476: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_504 -## BB#477: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx - movq %r12, %r9 - jmp LBB17_485 -Ltmp2129: -LBB17_501: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp2130: -LBB17_502: ## %luaV_tointeger.exit531 - ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2131: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2132: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %rcx ## 8-byte Reload - jmp LBB17_503 -Ltmp2133: -LBB17_491: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2134: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -136(%rbp) ## 8-byte Spill -Ltmp2135: - ##DEBUG_VALUE: n <- [%RBP+-136] - callq _floor -Ltmp2136: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -136(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_504 - jp LBB17_504 -Ltmp2137: -## BB#492: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_504 -Ltmp2138: -## BB#493: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_504 -## BB#494: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq %r12, %r9 - jmp LBB17_502 -Ltmp2139: -LBB17_504: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -128(%rbp), %r12 ## 8-byte Reload - .loc 1 1461 16 ## /Users/dylan/github/ravi/src/lvm.c:1461:16 -Ltmp2140: - movq -80(%rbp), %rax ## 8-byte Reload - movq %r12, 40(%rax) - .loc 1 1461 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1461:16 -Ltmp2141: - movl $13, %r8d - movq -104(%rbp), %rbx ## 8-byte Reload -Ltmp2142: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %rbx, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2143: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r11 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2144: - .loc 1 1461 16 ## /Users/dylan/github/ravi/src/lvm.c:1461:16 - movq 32(%r12), %r9 -Ltmp2145: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2146: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2147: - movq %r14, %r8 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2148: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_505 -Ltmp2149: - .align 4, 0x90 -Ltmp2150: ## Block address taken -LBB17_469: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_472 Depth 3 - ## Child Loop BB17_489 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1455 22 ## /Users/dylan/github/ravi/src/lvm.c:1455:22 -Ltmp2151: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2152: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - .loc 1 1456 22 ## /Users/dylan/github/ravi/src/lvm.c:1456:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2153: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1458 13 ## /Users/dylan/github/ravi/src/lvm.c:1458:13 - movl 8(%r14), %eax - .loc 1 1458 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1458:32 - cmpl $19, %eax - jne LBB17_471 -Ltmp2154: -## BB#470: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1458 13 ## /Users/dylan/github/ravi/src/lvm.c:1458:13 - movq (%r14), %rcx -Ltmp2155: - ##DEBUG_VALUE: ib <- %RCX -LBB17_486: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1458 35 ## /Users/dylan/github/ravi/src/lvm.c:1458:35 - movl 8(%r13), %eax -Ltmp2156: - .loc 1 1458 13 ## /Users/dylan/github/ravi/src/lvm.c:1458:13 - cmpl $19, %eax - jne LBB17_488 -Ltmp2157: -## BB#487: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1458 35 ## /Users/dylan/github/ravi/src/lvm.c:1458:35 - movq (%r13), %rax -Ltmp2158: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2159: -LBB17_503: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1459 11 ## /Users/dylan/github/ravi/src/lvm.c:1459:11 - andq %rcx, %rax - movq %rax, (%r15) - movl $19, 8(%r15) - movl -88(%rbp), %eax ## 4-byte Reload -Ltmp2160: -LBB17_505: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1462 9 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2161: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1462 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_506 -Ltmp2162: -LBB17_507: ## in Loop: Header=BB17_469 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1462 9 ## /Users/dylan/github/ravi/src/lvm.c:1462:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2163: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2164: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2165: -LBB17_510: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2166: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2167: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1468 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1468:13 - movq %r14, %rbx - jmp LBB17_511 -Ltmp2168: - .align 4, 0x90 -LBB17_522: ## %._crit_edge.6311 - ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2169: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2170: -LBB17_511: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_508 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_523 -Ltmp2171: -## BB#512: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_513 -## BB#517: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2172: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_543 -## BB#518: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2173: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2174: - cmpl $4, %esi - jne LBB17_520 -## BB#519: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2175: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_521 - .align 4, 0x90 -LBB17_520: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_521: ## in Loop: Header=BB17_511 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2176: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_522 - jmp LBB17_543 -Ltmp2177: -LBB17_545: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1472 9 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2178: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1472 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2179: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2180: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2181: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2182: - .loc 1 1472 9 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - movq 32(%r12), %r9 -Ltmp2183: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2184: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_546 -Ltmp2185: -LBB17_527: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rcx, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2186: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2187: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1468 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1468:35 - movq %r13, %rbx - jmp LBB17_528 -Ltmp2188: - .align 4, 0x90 -LBB17_539: ## %._crit_edge.6314 - ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2189: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2190: -LBB17_528: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_508 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_540 -Ltmp2191: -## BB#529: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_530 -## BB#534: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2192: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_543 -## BB#535: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2193: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2194: - cmpl $4, %esi - jne LBB17_537 -## BB#536: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2195: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_538 - .align 4, 0x90 -LBB17_537: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_538: ## in Loop: Header=BB17_528 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2196: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_539 - jmp LBB17_543 -Ltmp2197: -LBB17_523: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rcx -Ltmp2198: -LBB17_524: ## %luaV_tointeger.exit536 - ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2199: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2200: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_525 -Ltmp2201: -LBB17_513: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2202: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp2203: - ##DEBUG_VALUE: n <- [%RBP+-120] - callq _floor -Ltmp2204: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_543 - jp LBB17_543 -Ltmp2205: -## BB#514: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_543 -Ltmp2206: -## BB#515: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_543 -## BB#516: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx - movq %r12, %r9 - jmp LBB17_524 -Ltmp2207: -LBB17_540: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp2208: -LBB17_541: ## %luaV_tointeger.exit541 - ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2209: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2210: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %rcx ## 8-byte Reload - jmp LBB17_542 -Ltmp2211: -LBB17_530: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2212: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -136(%rbp) ## 8-byte Spill -Ltmp2213: - ##DEBUG_VALUE: n <- [%RBP+-136] - callq _floor -Ltmp2214: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -136(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_543 - jp LBB17_543 -Ltmp2215: -## BB#531: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_543 -Ltmp2216: -## BB#532: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_543 -## BB#533: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq %r12, %r9 - jmp LBB17_541 -Ltmp2217: -LBB17_543: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -128(%rbp), %r12 ## 8-byte Reload - .loc 1 1471 16 ## /Users/dylan/github/ravi/src/lvm.c:1471:16 -Ltmp2218: - movq -80(%rbp), %rax ## 8-byte Reload - movq %r12, 40(%rax) - .loc 1 1471 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1471:16 -Ltmp2219: - movl $14, %r8d - movq -104(%rbp), %rbx ## 8-byte Reload -Ltmp2220: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %rbx, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2221: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r11 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2222: - .loc 1 1471 16 ## /Users/dylan/github/ravi/src/lvm.c:1471:16 - movq 32(%r12), %r9 -Ltmp2223: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2224: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2225: - movq %r14, %r8 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2226: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_544 -Ltmp2227: - .align 4, 0x90 -Ltmp2228: ## Block address taken -LBB17_508: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_511 Depth 3 - ## Child Loop BB17_528 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1465 22 ## /Users/dylan/github/ravi/src/lvm.c:1465:22 -Ltmp2229: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2230: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - .loc 1 1466 22 ## /Users/dylan/github/ravi/src/lvm.c:1466:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2231: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1468 13 ## /Users/dylan/github/ravi/src/lvm.c:1468:13 - movl 8(%r14), %eax - .loc 1 1468 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1468:32 - cmpl $19, %eax - jne LBB17_510 -Ltmp2232: -## BB#509: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1468 13 ## /Users/dylan/github/ravi/src/lvm.c:1468:13 - movq (%r14), %rcx -Ltmp2233: - ##DEBUG_VALUE: ib <- %RCX -LBB17_525: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1468 35 ## /Users/dylan/github/ravi/src/lvm.c:1468:35 - movl 8(%r13), %eax -Ltmp2234: - .loc 1 1468 13 ## /Users/dylan/github/ravi/src/lvm.c:1468:13 - cmpl $19, %eax - jne LBB17_527 -Ltmp2235: -## BB#526: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1468 35 ## /Users/dylan/github/ravi/src/lvm.c:1468:35 - movq (%r13), %rax -Ltmp2236: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2237: -LBB17_542: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1469 11 ## /Users/dylan/github/ravi/src/lvm.c:1469:11 - orq %rcx, %rax - movq %rax, (%r15) - movl $19, 8(%r15) - movl -88(%rbp), %eax ## 4-byte Reload -Ltmp2238: -LBB17_544: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1472 9 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2239: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1472 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_545 -Ltmp2240: -LBB17_546: ## in Loop: Header=BB17_508 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1472 9 ## /Users/dylan/github/ravi/src/lvm.c:1472:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2241: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2242: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2243: -LBB17_549: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2244: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2245: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1478 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1478:13 - movq %r14, %rbx - jmp LBB17_550 -Ltmp2246: - .align 4, 0x90 -LBB17_561: ## %._crit_edge.6305 - ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2247: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2248: -LBB17_550: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_547 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_562 -Ltmp2249: -## BB#551: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_552 -## BB#556: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2250: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_582 -## BB#557: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2251: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2252: - cmpl $4, %esi - jne LBB17_559 -## BB#558: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2253: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_560 - .align 4, 0x90 -LBB17_559: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_560: ## in Loop: Header=BB17_550 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2254: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_561 - jmp LBB17_582 -Ltmp2255: -LBB17_584: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1482 9 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2256: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1482 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2257: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2258: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2259: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2260: - .loc 1 1482 9 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - movq 32(%r12), %r9 -Ltmp2261: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2262: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_585 -Ltmp2263: -LBB17_566: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rcx, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2264: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2265: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1478 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1478:35 - movq %r13, %rbx - jmp LBB17_567 -Ltmp2266: - .align 4, 0x90 -LBB17_578: ## %._crit_edge.6308 - ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2267: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2268: -LBB17_567: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_547 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_579 -Ltmp2269: -## BB#568: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_569 -## BB#573: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2270: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_582 -## BB#574: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2271: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2272: - cmpl $4, %esi - jne LBB17_576 -## BB#575: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2273: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_577 - .align 4, 0x90 -LBB17_576: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_577: ## in Loop: Header=BB17_567 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2274: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_578 - jmp LBB17_582 -Ltmp2275: -LBB17_562: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rcx -Ltmp2276: -LBB17_563: ## %luaV_tointeger.exit546 - ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2277: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2278: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_564 -Ltmp2279: -LBB17_552: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2280: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp2281: - ##DEBUG_VALUE: n <- [%RBP+-120] - callq _floor -Ltmp2282: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_582 - jp LBB17_582 -Ltmp2283: -## BB#553: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_582 -Ltmp2284: -## BB#554: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_582 -## BB#555: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx - movq %r12, %r9 - jmp LBB17_563 -Ltmp2285: -LBB17_579: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp2286: -LBB17_580: ## %luaV_tointeger.exit551 - ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2287: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2288: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %rcx ## 8-byte Reload - jmp LBB17_581 -Ltmp2289: -LBB17_569: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2290: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -136(%rbp) ## 8-byte Spill -Ltmp2291: - ##DEBUG_VALUE: n <- [%RBP+-136] - callq _floor -Ltmp2292: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -136(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_582 - jp LBB17_582 -Ltmp2293: -## BB#570: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_582 -Ltmp2294: -## BB#571: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_582 -## BB#572: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq %r12, %r9 - jmp LBB17_580 -Ltmp2295: -LBB17_582: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -128(%rbp), %r12 ## 8-byte Reload - .loc 1 1481 16 ## /Users/dylan/github/ravi/src/lvm.c:1481:16 -Ltmp2296: - movq -80(%rbp), %rax ## 8-byte Reload - movq %r12, 40(%rax) - .loc 1 1481 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1481:16 -Ltmp2297: - movl $15, %r8d - movq -104(%rbp), %rbx ## 8-byte Reload -Ltmp2298: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %rbx, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2299: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r11 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2300: - .loc 1 1481 16 ## /Users/dylan/github/ravi/src/lvm.c:1481:16 - movq 32(%r12), %r9 -Ltmp2301: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2302: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2303: - movq %r14, %r8 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2304: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_583 -Ltmp2305: - .align 4, 0x90 -Ltmp2306: ## Block address taken -LBB17_547: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_550 Depth 3 - ## Child Loop BB17_567 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1475 22 ## /Users/dylan/github/ravi/src/lvm.c:1475:22 -Ltmp2307: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2308: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - .loc 1 1476 22 ## /Users/dylan/github/ravi/src/lvm.c:1476:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2309: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1478 13 ## /Users/dylan/github/ravi/src/lvm.c:1478:13 - movl 8(%r14), %eax - .loc 1 1478 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1478:32 - cmpl $19, %eax - jne LBB17_549 -Ltmp2310: -## BB#548: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1478 13 ## /Users/dylan/github/ravi/src/lvm.c:1478:13 - movq (%r14), %rcx -Ltmp2311: - ##DEBUG_VALUE: ib <- %RCX -LBB17_564: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1478 35 ## /Users/dylan/github/ravi/src/lvm.c:1478:35 - movl 8(%r13), %eax -Ltmp2312: - .loc 1 1478 13 ## /Users/dylan/github/ravi/src/lvm.c:1478:13 - cmpl $19, %eax - jne LBB17_566 -Ltmp2313: -## BB#565: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1478 35 ## /Users/dylan/github/ravi/src/lvm.c:1478:35 - movq (%r13), %rax -Ltmp2314: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2315: -LBB17_581: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1479 11 ## /Users/dylan/github/ravi/src/lvm.c:1479:11 - xorq %rcx, %rax - movq %rax, (%r15) - movl $19, 8(%r15) - movl -88(%rbp), %eax ## 4-byte Reload -Ltmp2316: -LBB17_583: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1482 9 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2317: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1482 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - testl %eax, %eax - movl $0, %r14d - jne LBB17_584 -Ltmp2318: -LBB17_585: ## in Loop: Header=BB17_547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1482 9 ## /Users/dylan/github/ravi/src/lvm.c:1482:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2319: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2320: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2321: -LBB17_588: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2322: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1488 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1488:13 - movq %r14, %rbx - jmp LBB17_589 -Ltmp2323: - .align 4, 0x90 -LBB17_600: ## %._crit_edge.6299 - ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2324: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2325: -LBB17_589: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_586 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_601 -Ltmp2326: -## BB#590: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_591 -## BB#595: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2327: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_624 -## BB#596: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2328: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2329: - cmpl $4, %esi - jne LBB17_598 -## BB#597: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2330: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_599 - .align 4, 0x90 -LBB17_598: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_599: ## in Loop: Header=BB17_589 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2331: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_600 - jmp LBB17_624 -Ltmp2332: -LBB17_626: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1492 9 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2333: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1492 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2334: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2335: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2336: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2337: - .loc 1 1492 9 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - movq 32(%r12), %r9 -Ltmp2338: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2339: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_627 -Ltmp2340: -LBB17_605: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rsi, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2341: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1488 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1488:35 - movq %r13, %r12 - jmp LBB17_606 -Ltmp2342: - .align 4, 0x90 -LBB17_617: ## %._crit_edge.6302 - ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %r12 -Ltmp2343: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq %rbx, %r9 -Ltmp2344: -LBB17_606: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_586 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_618 -Ltmp2345: -## BB#607: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %rbx - cmpl $3, %eax - je LBB17_608 -## BB#612: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2346: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_624 -## BB#613: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r12), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2347: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r12), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2348: - cmpl $4, %esi - jne LBB17_615 -## BB#614: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2349: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_616 - .align 4, 0x90 -LBB17_615: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_616: ## in Loop: Header=BB17_606 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2350: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_617 - jmp LBB17_624 -Ltmp2351: -LBB17_601: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rsi -Ltmp2352: -LBB17_602: ## %luaV_tointeger.exit556 - ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2353: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_603 -Ltmp2354: -LBB17_591: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2355: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp2356: - ##DEBUG_VALUE: n <- [%RBP+-120] - callq _floor -Ltmp2357: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_624 - jp LBB17_624 -Ltmp2358: -## BB#592: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_624 -Ltmp2359: -## BB#593: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_624 -## BB#594: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rsi - movq %r12, %r9 - jmp LBB17_602 -Ltmp2360: -LBB17_618: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r12), %rax -Ltmp2361: -LBB17_619: ## %luaV_tointeger.exit561 - ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2362: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %rsi ## 8-byte Reload - jmp LBB17_620 -Ltmp2363: -LBB17_608: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero -Ltmp2364: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -136(%rbp) ## 8-byte Spill -Ltmp2365: - ##DEBUG_VALUE: n <- [%RBP+-136] - callq _floor -Ltmp2366: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -136(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_624 - jp LBB17_624 -Ltmp2367: -## BB#609: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_624 -Ltmp2368: -## BB#610: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_624 -## BB#611: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq %rbx, %r9 - jmp LBB17_619 -Ltmp2369: -LBB17_624: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -128(%rbp), %r12 ## 8-byte Reload - .loc 1 1491 16 ## /Users/dylan/github/ravi/src/lvm.c:1491:16 -Ltmp2370: - movq -80(%rbp), %rax ## 8-byte Reload - movq %r12, 40(%rax) - .loc 1 1491 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1491:16 -Ltmp2371: - movl $16, %r8d - movq -104(%rbp), %rbx ## 8-byte Reload -Ltmp2372: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %rbx, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2373: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r11 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2374: - .loc 1 1491 16 ## /Users/dylan/github/ravi/src/lvm.c:1491:16 - movq 32(%r12), %r9 -Ltmp2375: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp2376: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2377: - movq %r14, %r8 - jmp LBB17_625 -Ltmp2378: - .align 4, 0x90 -Ltmp2379: ## Block address taken -LBB17_586: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_589 Depth 3 - ## Child Loop BB17_606 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1485 22 ## /Users/dylan/github/ravi/src/lvm.c:1485:22 -Ltmp2380: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2381: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - .loc 1 1486 22 ## /Users/dylan/github/ravi/src/lvm.c:1486:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax -Ltmp2382: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2383: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1488 13 ## /Users/dylan/github/ravi/src/lvm.c:1488:13 - movl 8(%r14), %eax - .loc 1 1488 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1488:32 - cmpl $19, %eax - jne LBB17_588 -Ltmp2384: -## BB#587: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1488 13 ## /Users/dylan/github/ravi/src/lvm.c:1488:13 - movq (%r14), %rsi -Ltmp2385: - ##DEBUG_VALUE: ib <- %RSI -LBB17_603: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1488 35 ## /Users/dylan/github/ravi/src/lvm.c:1488:35 - movl 8(%r13), %eax -Ltmp2386: - .loc 1 1488 13 ## /Users/dylan/github/ravi/src/lvm.c:1488:13 - cmpl $19, %eax - jne LBB17_605 -Ltmp2387: -## BB#604: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1488 35 ## /Users/dylan/github/ravi/src/lvm.c:1488:35 - movq (%r13), %rax -Ltmp2388: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2389: -LBB17_620: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 861 7 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - movl -88(%rbp), %edx ## 4-byte Reload - js LBB17_621 -Ltmp2390: -## BB#622: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - ##DEBUG_VALUE: luaV_shiftl:x <- %RSI - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - movb %al, %cl - shlq %cl, %rsi -Ltmp2391: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - xorl %ecx, %ecx - .loc 1 866 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp2392: - cmpq $63, %rax -Ltmp2393: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovleq %rsi, %rcx - jmp LBB17_623 -Ltmp2394: - .align 4, 0x90 -LBB17_621: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 863 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movl %eax, %ecx - negl %ecx - shrq %cl, %rsi - xorl %ecx, %ecx - .loc 1 862 11 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - cmpq $-63, %rax -Ltmp2395: - .loc 1 862 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovgeq %rsi, %rcx -Ltmp2396: -LBB17_623: ## %luaV_shiftl.exit - ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1489 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1489:11 - movq %rcx, (%r15) - movl $19, 8(%r15) -Ltmp2397: -LBB17_625: ## in Loop: Header=BB17_586 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2398: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1492 9 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2399: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1492 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - testl %edx, %edx - movl $0, %r14d - jne LBB17_626 -Ltmp2400: -LBB17_627: ## in Loop: Header=BB17_586 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1492 9 ## /Users/dylan/github/ravi/src/lvm.c:1492:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2401: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2402: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2403: -LBB17_630: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2404: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1498 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1498:13 - movq %r14, %rbx - jmp LBB17_631 -Ltmp2405: - .align 4, 0x90 -LBB17_642: ## %._crit_edge.6293 - ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp2406: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r12, %r9 -Ltmp2407: -LBB17_631: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_628 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_643 -Ltmp2408: -## BB#632: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - cmpl $3, %eax - je LBB17_633 -## BB#637: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2409: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_666 -## BB#638: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2410: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2411: - cmpl $4, %esi - jne LBB17_640 -## BB#639: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2412: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_641 - .align 4, 0x90 -LBB17_640: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_641: ## in Loop: Header=BB17_631 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2413: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_642 - jmp LBB17_666 -Ltmp2414: -LBB17_668: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1502 9 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2415: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1502 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2416: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2417: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2418: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2419: - .loc 1 1502 9 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - movq 32(%r12), %r9 -Ltmp2420: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2421: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_669 -Ltmp2422: -LBB17_647: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rsi, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp2423: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1498 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1498:35 - movq %r13, %r12 - jmp LBB17_648 -Ltmp2424: - .align 4, 0x90 -LBB17_659: ## %._crit_edge.6296 - ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %r12 -Ltmp2425: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq %rbx, %r9 -Ltmp2426: -LBB17_648: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_628 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_660 -Ltmp2427: -## BB#649: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %rbx - cmpl $3, %eax - je LBB17_650 -## BB#654: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2428: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_666 -## BB#655: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r12), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2429: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r12), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2430: - cmpl $4, %esi - jne LBB17_657 -## BB#656: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2431: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_658 - .align 4, 0x90 -LBB17_657: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_658: ## in Loop: Header=BB17_648 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp2432: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_659 - jmp LBB17_666 -Ltmp2433: -LBB17_643: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rsi -Ltmp2434: -LBB17_644: ## %luaV_tointeger.exit567 - ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2435: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -128(%rbp), %r11 ## 8-byte Reload - jmp LBB17_645 -Ltmp2436: -LBB17_633: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2437: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -120(%rbp) ## 8-byte Spill -Ltmp2438: - ##DEBUG_VALUE: n <- [%RBP+-120] - callq _floor -Ltmp2439: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -120(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_666 - jp LBB17_666 -Ltmp2440: -## BB#634: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_666 -Ltmp2441: -## BB#635: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_666 -## BB#636: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rsi - movq %r12, %r9 - jmp LBB17_644 -Ltmp2442: -LBB17_660: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r12), %rax -Ltmp2443: -LBB17_661: ## %luaV_tointeger.exit572 - ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2444: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq -128(%rbp), %r11 ## 8-byte Reload - movq -120(%rbp), %rsi ## 8-byte Reload - jmp LBB17_662 -Ltmp2445: -LBB17_650: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero -Ltmp2446: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -136(%rbp) ## 8-byte Spill -Ltmp2447: - ##DEBUG_VALUE: n <- [%RBP+-136] - callq _floor -Ltmp2448: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -136(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_666 - jp LBB17_666 -Ltmp2449: -## BB#651: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_666 -Ltmp2450: -## BB#652: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_666 -## BB#653: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq %rbx, %r9 - jmp LBB17_661 -Ltmp2451: -LBB17_666: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -128(%rbp), %r12 ## 8-byte Reload - .loc 1 1501 16 ## /Users/dylan/github/ravi/src/lvm.c:1501:16 -Ltmp2452: - movq -80(%rbp), %rax ## 8-byte Reload - movq %r12, 40(%rax) - .loc 1 1501 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1501:16 -Ltmp2453: - movl $17, %r8d - movq -104(%rbp), %rbx ## 8-byte Reload -Ltmp2454: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %rbx, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2455: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r11 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2456: - .loc 1 1501 16 ## /Users/dylan/github/ravi/src/lvm.c:1501:16 - movq 32(%r12), %r9 -Ltmp2457: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp2458: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2459: - movq %r14, %r8 - jmp LBB17_667 -Ltmp2460: - .align 4, 0x90 -Ltmp2461: ## Block address taken -LBB17_628: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_631 Depth 3 - ## Child Loop BB17_648 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1495 22 ## /Users/dylan/github/ravi/src/lvm.c:1495:22 -Ltmp2462: - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2463: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - .loc 1 1496 22 ## /Users/dylan/github/ravi/src/lvm.c:1496:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax -Ltmp2464: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2465: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 1498 13 ## /Users/dylan/github/ravi/src/lvm.c:1498:13 - movl 8(%r14), %eax - .loc 1 1498 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1498:32 - cmpl $19, %eax - jne LBB17_630 -Ltmp2466: -## BB#629: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1498 13 ## /Users/dylan/github/ravi/src/lvm.c:1498:13 - movq (%r14), %rsi -Ltmp2467: - ##DEBUG_VALUE: ib <- %RSI -LBB17_645: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1498 35 ## /Users/dylan/github/ravi/src/lvm.c:1498:35 - movl 8(%r13), %eax -Ltmp2468: - .loc 1 1498 13 ## /Users/dylan/github/ravi/src/lvm.c:1498:13 - cmpl $19, %eax - jne LBB17_647 -Ltmp2469: -## BB#646: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1498 35 ## /Users/dylan/github/ravi/src/lvm.c:1498:35 - movq (%r13), %rax -Ltmp2470: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp2471: -LBB17_662: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 861 7 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - movl -88(%rbp), %edx ## 4-byte Reload - jle LBB17_664 -Ltmp2472: -## BB#663: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 863 17 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movb %al, %cl - shrq %cl, %rsi -Ltmp2473: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - xorl %ecx, %ecx - .loc 1 862 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:11 -Ltmp2474: - cmpq $63, %rax -Ltmp2475: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovleq %rsi, %rcx - jmp LBB17_665 -Ltmp2476: - .align 4, 0x90 -LBB17_664: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1499 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1499:11 - movl %eax, %ecx - negl %ecx -Ltmp2477: - ##DEBUG_VALUE: luaV_shiftl:x <- %RSI - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - shlq %cl, %rsi -Ltmp2478: - .loc 1 1499 11 ## /Users/dylan/github/ravi/src/lvm.c:1499:11 - xorl %ecx, %ecx - .loc 1 866 11 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp2479: - cmpq $-63, %rax -Ltmp2480: - .loc 1 866 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovgeq %rsi, %rcx -Ltmp2481: -LBB17_665: ## %luaV_shiftl.exit575 - ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1499 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1499:11 - movq %rcx, (%r15) - movl $19, 8(%r15) -Ltmp2482: -LBB17_667: ## in Loop: Header=BB17_628 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2483: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1502 9 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2484: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1502 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - testl %edx, %edx - movl $0, %r14d - jne LBB17_668 -Ltmp2485: -LBB17_669: ## in Loop: Header=BB17_628 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1502 9 ## /Users/dylan/github/ravi/src/lvm.c:1502:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2486: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2487: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2488: -LBB17_705: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1518 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2489: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1518 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2490: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2491: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2492: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2493: - .loc 1 1518 9 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - movq 32(%r12), %r9 -Ltmp2494: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2495: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_706 -Ltmp2496: -LBB17_691: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_693 -Ltmp2497: -## BB#692: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp2498: -LBB17_701: ## %select.end8327 - ## in Loop: Header=BB17_670 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl -88(%rbp), %ebx ## 4-byte Reload - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, -120(%rbp) ## 8-byte Spill -Ltmp2499: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r11, %r12 -Ltmp2500: - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_702 -Ltmp2501: -LBB17_679: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_703 -Ltmp2502: -## BB#680: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2503: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2504: - cmpl $4, %esi - jne LBB17_682 -## BB#681: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - shrl $24, %ecx - jmp LBB17_683 -Ltmp2505: -LBB17_693: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_703 -Ltmp2506: -## BB#694: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %rdx, -128(%rbp) ## 8-byte Spill -Ltmp2507: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %rbx - movq %r11, %r12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2508: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2509: - cmpl $4, %esi - jne LBB17_696 -Ltmp2510: -## BB#695: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_697 -Ltmp2511: -LBB17_682: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_683: ## in Loop: Header=BB17_670 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2512: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2513: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_703 -Ltmp2514: -## BB#684: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_686 -Ltmp2515: -## BB#685: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_688 -Ltmp2516: -LBB17_696: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2517: -LBB17_697: ## in Loop: Header=BB17_670 Depth=2 - movq %r12, %r11 - movq %rbx, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2518: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -128(%rbp), %rdx ## 8-byte Reload - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2519: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2520: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_703 -Ltmp2521: -## BB#698: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_700 -## BB#699: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_701 -Ltmp2522: -LBB17_703: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1517 16 ## /Users/dylan/github/ravi/src/lvm.c:1517:16 -Ltmp2523: - movq %r11, 40(%rbx) - .loc 1 1517 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1517:16 -Ltmp2524: - movl $9, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp2525: - movq %r10, %r15 -Ltmp2526: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp2527: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2528: - .loc 1 1517 16 ## /Users/dylan/github/ravi/src/lvm.c:1517:16 - movq 32(%rbx), %r9 -Ltmp2529: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ebx - andl $12, %ebx -Ltmp2530: - ##DEBUG_VALUE: luaV_execute:mask <- %EBX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2531: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_704 -Ltmp2532: -LBB17_686: ## %select.false8323 - ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_688 -Ltmp2533: -LBB17_700: ## %select.false8328 - ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_701 -Ltmp2534: - .align 4, 0x90 -Ltmp2535: ## Block address taken -LBB17_670: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1505 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1505:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2536: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1506 22 ## /Users/dylan/github/ravi/src/lvm.c:1506:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2537: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp2538: - .loc 1 1508 29 ## /Users/dylan/github/ravi/src/lvm.c:1508:29 - cmpl $19, %eax - jne LBB17_671 -Ltmp2539: -## BB#673: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1508 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1508:13 - cmpl $19, 8(%r13) - jne LBB17_687 -Ltmp2540: -## BB#674: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1509 57 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1509:57 - movq (%r13), %rsi -Ltmp2541: - ##DEBUG_VALUE: luaV_mod:n <- %RSI - ##DEBUG_VALUE: ic <- %RSI - .loc 1 840 20 ## /Users/dylan/github/ravi/src/lvm.c:840:20 - leaq 1(%rsi), %rax -Ltmp2542: - .loc 1 840 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:840:7 - cmpq $1, %rax - ja LBB17_677 -Ltmp2543: -## BB#675: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: ic <- %RSI - ##DEBUG_VALUE: luaV_mod:n <- %RSI - xorl %eax, %eax - .loc 1 841 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:841:9 -Ltmp2544: - testq %rsi, %rsi - jne LBB17_678 - jmp LBB17_676 -Ltmp2545: - .align 4, 0x90 -LBB17_671: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $3, %eax - jne LBB17_679 -Ltmp2546: -## BB#672: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1512 18 ## /Users/dylan/github/ravi/src/lvm.c:1512:18 - movq (%r14), %rdx - jmp LBB17_689 -Ltmp2547: - .align 4, 0x90 -LBB17_687: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp2548: -LBB17_688: ## %luaV_tonumber_.exit581 - ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rdx -Ltmp2549: -LBB17_689: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp2550: - .loc 1 1512 18 ## /Users/dylan/github/ravi/src/lvm.c:1512:18 - cmpl $3, %eax - jne LBB17_691 -Ltmp2551: -## BB#690: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %r12 - .loc 1 1512 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1512:39 -Ltmp2552: - movq (%r13), %rax -Ltmp2553: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movl -88(%rbp), %ebx ## 4-byte Reload -Ltmp2554: -LBB17_702: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1514 11 ## /Users/dylan/github/ravi/src/lvm.c:1514:11 - movd %rdx, %xmm0 - movd %rax, %xmm1 - movsd %xmm1, -128(%rbp) ## 8-byte Spill - callq _fmod -Ltmp2555: - ##DEBUG_VALUE: m <- %XMM0 - .loc 1 1514 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1514:11 - movapd %xmm0, %xmm1 - movsd -128(%rbp), %xmm3 ## 8-byte Reload - ## xmm3 = mem[0],zero - mulsd %xmm3, %xmm1 - addsd %xmm0, %xmm3 -Ltmp2556: - ##DEBUG_VALUE: m <- %XMM3 - xorpd %xmm2, %xmm2 -Ltmp2557: - .loc 1 1514 11 ## /Users/dylan/github/ravi/src/lvm.c:1514:11 - cmpltsd %xmm2, %xmm1 - andpd %xmm1, %xmm3 -Ltmp2558: - andnpd %xmm0, %xmm1 - orpd %xmm3, %xmm1 -Ltmp2559: - .loc 1 1515 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1515:11 - movsd %xmm1, (%r15) - movl $3, 8(%r15) - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2560: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r11 - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2561: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r8 - jmp LBB17_704 -Ltmp2562: -LBB17_677: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: ic <- %RSI - ##DEBUG_VALUE: luaV_mod:n <- %RSI - .loc 1 1509 28 ## /Users/dylan/github/ravi/src/lvm.c:1509:28 - movq (%r14), %rcx -Ltmp2563: - ##DEBUG_VALUE: ib <- %RCX - ##DEBUG_VALUE: luaV_mod:m <- %RCX - .loc 1 846 23 ## /Users/dylan/github/ravi/src/lvm.c:846:23 - movq %rcx, %rax - cqto - idivq %rsi - .loc 1 847 22 ## /Users/dylan/github/ravi/src/lvm.c:847:22 -Ltmp2564: - xorq %rsi, %rcx -Ltmp2565: - sarq $63, %rcx - .loc 1 847 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:847:11 - testq %rdx, %rdx - .loc 1 847 16 ## /Users/dylan/github/ravi/src/lvm.c:847:16 - cmoveq %rdx, %rsi -Ltmp2566: - andq %rcx, %rsi - addq %rdx, %rsi -Ltmp2567: - .loc 1 1510 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1510:11 - movq %rsi, %rax -Ltmp2568: -LBB17_678: ## %luaV_mod.exit - ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp2569: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %ebx ## 4-byte Reload -Ltmp2570: -LBB17_704: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1518 9 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2571: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1518 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - testl %ebx, %ebx - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_705 -Ltmp2572: -LBB17_706: ## in Loop: Header=BB17_670 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1518 9 ## /Users/dylan/github/ravi/src/lvm.c:1518:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2573: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2574: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2575: -LBB17_744: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1532 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2576: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1532 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2577: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2578: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2579: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2580: - .loc 1 1532 9 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - movq 32(%r12), %r9 -Ltmp2581: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2582: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_745 -Ltmp2583: -LBB17_730: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_732 -Ltmp2584: -## BB#731: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp2585: -LBB17_740: ## %select.end8355 - ## in Loop: Header=BB17_707 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %rbx - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl -88(%rbp), %r14d ## 4-byte Reload - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, -120(%rbp) ## 8-byte Spill -Ltmp2586: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r11, %r12 -Ltmp2587: - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_741 -Ltmp2588: -LBB17_718: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_742 -Ltmp2589: -## BB#719: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2590: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2591: - cmpl $4, %esi - jne LBB17_721 -## BB#720: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - shrl $24, %ecx - jmp LBB17_722 -Ltmp2592: -LBB17_732: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_742 -Ltmp2593: -## BB#733: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %rdx, -128(%rbp) ## 8-byte Spill -Ltmp2594: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %rbx - movq %r11, %r12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2595: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2596: - cmpl $4, %esi - jne LBB17_735 -Ltmp2597: -## BB#734: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_736 -Ltmp2598: -LBB17_721: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_722: ## in Loop: Header=BB17_707 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2599: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2600: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_742 -Ltmp2601: -## BB#723: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_725 -Ltmp2602: -## BB#724: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_727 -Ltmp2603: -LBB17_735: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2604: -LBB17_736: ## in Loop: Header=BB17_707 Depth=2 - movq %r12, %r11 - movq %rbx, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2605: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -128(%rbp), %rdx ## 8-byte Reload - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp2606: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2607: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_742 -Ltmp2608: -## BB#737: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_739 -## BB#738: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_740 -Ltmp2609: -LBB17_742: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1531 16 ## /Users/dylan/github/ravi/src/lvm.c:1531:16 -Ltmp2610: - movq %r11, 40(%rbx) - .loc 1 1531 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1531:16 -Ltmp2611: - movl $12, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r14 -Ltmp2612: - movq %r10, %r15 -Ltmp2613: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaT_trybinTM - movq %r15, %r10 -Ltmp2614: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2615: - .loc 1 1531 16 ## /Users/dylan/github/ravi/src/lvm.c:1531:16 - movq 32(%rbx), %r9 -Ltmp2616: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2617: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl %eax, %r14d -Ltmp2618: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2619: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_743 -Ltmp2620: -LBB17_725: ## %select.false8351 - ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_727 -Ltmp2621: -LBB17_739: ## %select.false8356 - ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_740 -Ltmp2622: - .align 4, 0x90 -Ltmp2623: ## Block address taken -LBB17_707: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1521 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1521:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2624: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1522 22 ## /Users/dylan/github/ravi/src/lvm.c:1522:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2625: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp2626: - .loc 1 1524 29 ## /Users/dylan/github/ravi/src/lvm.c:1524:29 - cmpl $19, %eax - jne LBB17_708 -Ltmp2627: -## BB#710: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1524 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1524:13 - cmpl $19, 8(%r13) - jne LBB17_726 -Ltmp2628: -## BB#711: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %rdi, %rbx -Ltmp2629: - ##DEBUG_VALUE: luaV_execute:k <- %RBX - .loc 1 1525 28 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1525:28 - movq (%r14), %rcx -Ltmp2630: - ##DEBUG_VALUE: ib <- %RCX - ##DEBUG_VALUE: luaV_div:m <- %RCX - .loc 1 1525 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1525:57 - movq (%r13), %rdi -Ltmp2631: - ##DEBUG_VALUE: luaV_div:n <- %RDI - ##DEBUG_VALUE: ic <- %RDI - .loc 1 820 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:820:20 - leaq 1(%rdi), %rax -Ltmp2632: - .loc 1 820 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:820:7 - cmpq $1, %rax - ja LBB17_715 -Ltmp2633: -## BB#712: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: luaV_div:m <- %RCX - ##DEBUG_VALUE: ib <- %RCX - ##DEBUG_VALUE: ic <- %RDI - ##DEBUG_VALUE: luaV_div:n <- %RDI - .loc 1 821 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:821:9 - testq %rdi, %rdi -Ltmp2634: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - je LBB17_713 -Ltmp2635: -## BB#714: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: luaV_div:m <- %RCX - ##DEBUG_VALUE: ib <- %RCX - .loc 1 823 12 ## /Users/dylan/github/ravi/src/lvm.c:823:12 - negq %rcx -Ltmp2636: - movq %rcx, %rsi - movl -88(%rbp), %r14d ## 4-byte Reload - jmp LBB17_717 -Ltmp2637: - .align 4, 0x90 -LBB17_708: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - cmpl $3, %eax - jne LBB17_718 -Ltmp2638: -## BB#709: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1528 18 ## /Users/dylan/github/ravi/src/lvm.c:1528:18 - movq (%r14), %rdx - jmp LBB17_728 -Ltmp2639: - .align 4, 0x90 -LBB17_726: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp2640: -LBB17_727: ## %luaV_tonumber_.exit591 - ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rdx -Ltmp2641: -LBB17_728: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp2642: - .loc 1 1528 18 ## /Users/dylan/github/ravi/src/lvm.c:1528:18 - cmpl $3, %eax - jne LBB17_730 -Ltmp2643: -## BB#729: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %r12 - .loc 1 1528 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1528:39 -Ltmp2644: - movq (%r13), %rax -Ltmp2645: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %rbx - movl -88(%rbp), %r14d ## 4-byte Reload -Ltmp2646: -LBB17_741: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1529 11 ## /Users/dylan/github/ravi/src/lvm.c:1529:11 - movd %rdx, %xmm0 - movd %rax, %xmm1 - divsd %xmm1, %xmm0 - callq _floor - movsd %xmm0, (%r15) - movl $3, 8(%r15) - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2647: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r11 - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2648: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r8 - jmp LBB17_743 -Ltmp2649: -LBB17_715: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: luaV_div:m <- %RCX - ##DEBUG_VALUE: ib <- %RCX - ##DEBUG_VALUE: ic <- %RDI - ##DEBUG_VALUE: luaV_div:n <- %RDI - .loc 1 826 23 ## /Users/dylan/github/ravi/src/lvm.c:826:23 - movq %rcx, %rax - cqto - idivq %rdi - movq %rax, %rsi - .loc 1 827 21 ## /Users/dylan/github/ravi/src/lvm.c:827:21 -Ltmp2650: - movq %rdi, %rax - xorq %rcx, %rax -Ltmp2651: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl -88(%rbp), %r14d ## 4-byte Reload - jns LBB17_717 -Ltmp2652: -## BB#716: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: luaV_div:m <- %RCX - ##DEBUG_VALUE: ib <- %RCX - ##DEBUG_VALUE: ic <- %RDI - ##DEBUG_VALUE: luaV_div:n <- %RDI - .loc 1 827 26 ## /Users/dylan/github/ravi/src/lvm.c:827:26 - movq %rcx, %rax - cqto - idivq %rdi -Ltmp2653: - .loc 1 827 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:827:9 - cmpq $1, %rdx - adcq $-1, %rsi -Ltmp2654: - .align 4, 0x90 -LBB17_717: ## %luaV_div.exit - ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - .loc 1 1526 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1526:11 - movq %rsi, (%r15) - movl $19, 8(%r15) - movq %rbx, %rdi -Ltmp2655: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_743: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1532 9 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2656: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1532 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - testl %r14d, %r14d - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_744 -Ltmp2657: -LBB17_745: ## in Loop: Header=BB17_707 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1532 9 ## /Users/dylan/github/ravi/src/lvm.c:1532:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2658: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2659: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2660: -LBB17_748: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_750 -Ltmp2661: -## BB#749: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r14), %xmm0 -Ltmp2662: -LBB17_758: ## %luaV_tonumber_.exit599 - ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rcx - jmp LBB17_759 -Ltmp2663: -LBB17_775: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1542 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2664: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1542 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2665: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2666: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2667: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2668: - .loc 1 1542 9 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - movq 32(%r12), %r9 -Ltmp2669: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2670: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_776 -Ltmp2671: -LBB17_761: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_763 -Ltmp2672: -## BB#762: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 -Ltmp2673: -LBB17_771: ## %select.end8383 - ## in Loop: Header=BB17_746 Depth=2 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %rbx -Ltmp2674: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl -88(%rbp), %r14d ## 4-byte Reload - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r10, %r12 -Ltmp2675: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_772 -Ltmp2676: -LBB17_750: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_773 -Ltmp2677: -## BB#751: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %r9, %r12 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2678: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2679: - cmpl $4, %esi - jne LBB17_753 -Ltmp2680: -## BB#752: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_754 -Ltmp2681: -LBB17_763: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_773 -Ltmp2682: -## BB#764: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - movq %rcx, -136(%rbp) ## 8-byte Spill -Ltmp2683: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %rbx - movq %r11, %r12 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r13), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2684: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r13), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2685: - cmpl $4, %esi - jne LBB17_766 -Ltmp2686: -## BB#765: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - shrl $24, %ecx - jmp LBB17_767 -Ltmp2687: -LBB17_753: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2688: -LBB17_754: ## in Loop: Header=BB17_746 Depth=2 - movq %rbx, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2689: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2690: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_773 -Ltmp2691: -## BB#755: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_757 -Ltmp2692: -## BB#756: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_758 -Ltmp2693: -LBB17_766: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp2694: -LBB17_767: ## in Loop: Header=BB17_746 Depth=2 - movq %r12, %r11 - movq %rbx, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2695: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2696: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movq -136(%rbp), %rcx ## 8-byte Reload - jne LBB17_773 -Ltmp2697: -## BB#768: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_770 -Ltmp2698: -## BB#769: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_771 -Ltmp2699: -LBB17_773: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - movq %r11, -128(%rbp) ## 8-byte Spill - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 1541 16 ## /Users/dylan/github/ravi/src/lvm.c:1541:16 -Ltmp2700: - movq %r11, 40(%rbx) - .loc 1 1541 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1541:16 -Ltmp2701: - movl $10, %r8d - movq %r10, %rdi - movq %r14, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq %r10, %r14 -Ltmp2702: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaT_trybinTM - movq %r14, %r10 -Ltmp2703: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1541 16 ## /Users/dylan/github/ravi/src/lvm.c:1541:16 - movq 32(%rbx), %r9 -Ltmp2704: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2705: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl %eax, %r14d -Ltmp2706: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_774 -Ltmp2707: -LBB17_757: ## %select.false8379 - ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_758 -Ltmp2708: -LBB17_770: ## %select.false8384 - ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB17_771 -Ltmp2709: - .align 4, 0x90 -Ltmp2710: ## Block address taken -LBB17_746: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 1535 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1535:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %r14 - shlq $4, %r14 - addq %r9, %r14 - testb %al, %al - cmovsq %rcx, %r14 -Ltmp2711: - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 1536 22 ## /Users/dylan/github/ravi/src/lvm.c:1536:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %r13 - shlq $4, %r13 - addq %r9, %r13 - testb %cl, %cl - cmovsq %rax, %r13 -Ltmp2712: - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r14), %eax -Ltmp2713: - .loc 1 1538 31 ## /Users/dylan/github/ravi/src/lvm.c:1538:31 - cmpl $3, %eax - jne LBB17_748 -Ltmp2714: -## BB#747: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 1538 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1538:13 - movq (%r14), %rcx -Ltmp2715: -LBB17_759: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R13 - ##DEBUG_VALUE: rc <- %R13 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r13), %eax -Ltmp2716: - .loc 1 1538 13 ## /Users/dylan/github/ravi/src/lvm.c:1538:13 - cmpl $3, %eax - jne LBB17_761 -Ltmp2717: -## BB#760: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rc <- %R13 - movq %r10, %r12 -Ltmp2718: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 1538 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1538:34 -Ltmp2719: - movq (%r13), %rax -Ltmp2720: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %rbx - movl -88(%rbp), %r14d ## 4-byte Reload -Ltmp2721: -LBB17_772: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1539 11 ## /Users/dylan/github/ravi/src/lvm.c:1539:11 - movd %rcx, %xmm0 - movd %rax, %xmm1 - callq _pow - movsd %xmm0, (%r15) - movl $3, 8(%r15) - movq -120(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 -Ltmp2722: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r8 -Ltmp2723: -LBB17_774: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- [%RBP+-128] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -128(%rbp), %r11 ## 8-byte Reload -Ltmp2724: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1542 9 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2725: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1542 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - testl %r14d, %r14d - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2726: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_775 -Ltmp2727: -LBB17_776: ## in Loop: Header=BB17_746 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1542 9 ## /Users/dylan/github/ravi/src/lvm.c:1542:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2728: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2729: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2730: -LBB17_792: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1557 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2731: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1557 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2732: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2733: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2734: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2735: - .loc 1 1557 9 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - movq 32(%r12), %r9 -Ltmp2736: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2737: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_793 -Ltmp2738: -LBB17_780: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_790 -Ltmp2739: -## BB#781: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movl %r14d, -88(%rbp) ## 4-byte Spill -Ltmp2740: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %r13 - movq %r11, %r14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp2741: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp2742: - cmpl $4, %esi - jne LBB17_783 -Ltmp2743: -## BB#782: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - shrl $24, %ecx - jmp LBB17_784 -Ltmp2744: -LBB17_783: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq 16(%rdx), %rcx -Ltmp2745: -LBB17_784: ## in Loop: Header=BB17_777 Depth=2 - movq %r14, %r11 - movq %r13, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2746: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp2747: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - jne LBB17_790 -Ltmp2748: -## BB#785: ## %luaV_tonumber_.exit607 - ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - movq %r12, %rdi -Ltmp2749: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_787 -Ltmp2750: -## BB#786: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_788 -Ltmp2751: -LBB17_790: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq -80(%rbp), %r13 ## 8-byte Reload - .loc 1 1555 11 ## /Users/dylan/github/ravi/src/lvm.c:1555:11 -Ltmp2752: - movq %r11, 40(%r13) - .loc 1 1555 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1555:11 -Ltmp2753: - movl $18, %r8d - movq %r10, %rdi - movq %rbx, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp2754: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaT_trybinTM - movq %r14, %r10 -Ltmp2755: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp2756: - .loc 1 1555 11 ## /Users/dylan/github/ravi/src/lvm.c:1555:11 - movq 32(%r13), %r9 -Ltmp2757: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2758: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq %r12, %rdi -Ltmp2759: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jmp LBB17_791 -Ltmp2760: -LBB17_787: ## %select.false8407 - ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 -Ltmp2761: -LBB17_788: ## %select.end8406 - ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_789 -Ltmp2762: - .align 4, 0x90 -Ltmp2763: ## Block address taken -LBB17_777: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp2764: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1545 22 ## /Users/dylan/github/ravi/src/lvm.c:1545:22 - shrl $24, %r13d - shlq $4, %r13 - leaq (%r9,%r13), %rbx -Ltmp2765: - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r9,%r13), %eax -Ltmp2766: - .loc 1 1547 13 ## /Users/dylan/github/ravi/src/lvm.c:1547:13 - cmpl $19, %eax - jne LBB17_778 -Ltmp2767: -## BB#1587: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %RBX - xorl %eax, %eax - .loc 1 1549 11 ## /Users/dylan/github/ravi/src/lvm.c:1549:11 -Ltmp2768: - subq (%rbx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) - movq %r12, %rdi -Ltmp2769: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_791 -Ltmp2770: - .align 4, 0x90 -LBB17_778: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cmpl $3, %eax - jne LBB17_780 -Ltmp2771: -## BB#779: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1551 18 ## /Users/dylan/github/ravi/src/lvm.c:1551:18 - movq (%rbx), %rax - movq %r12, %rdi -Ltmp2772: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_789: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1552 11 ## /Users/dylan/github/ravi/src/lvm.c:1552:11 - movabsq $-9223372036854775808, %rcx ## imm = 0x8000000000000000 - xorq %rax, %rcx - movq %rcx, (%r15) - movl $3, 8(%r15) -Ltmp2773: -LBB17_791: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1557 9 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2774: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1557 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - testl %r14d, %r14d - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_792 -Ltmp2775: -LBB17_793: ## in Loop: Header=BB17_777 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1557 9 ## /Users/dylan/github/ravi/src/lvm.c:1557:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2776: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2777: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2778: -LBB17_796: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R12 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %r13 - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp2779: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1562 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1562:13 - movq %r12, %rbx -Ltmp2780: - .align 4, 0x90 -LBB17_797: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_794 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R12 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp2781: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_809 -Ltmp2782: -## BB#798: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - je LBB17_799 -## BB#803: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp2783: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_808 -## BB#804: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %r14 -Ltmp2784: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB17_806 -Ltmp2785: -## BB#805: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB17_807 -Ltmp2786: - .align 4, 0x90 -LBB17_806: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp2787: -LBB17_807: ## in Loop: Header=BB17_797 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp2788: - .loc 1 1562 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1562:13 - movq %r14, %rbx -Ltmp2789: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - je LBB17_797 - jmp LBB17_808 -Ltmp2790: -LBB17_813: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1568 9 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2791: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1568 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2792: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2793: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2794: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2795: - .loc 1 1568 9 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - movq 32(%r12), %r9 -Ltmp2796: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2797: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_814 -Ltmp2798: -LBB17_809: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp2799: -LBB17_810: ## %luaV_tointeger.exit612 - ## in Loop: Header=BB17_794 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2800: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2801: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r13, %r11 - movq -120(%rbp), %r9 ## 8-byte Reload - movl -88(%rbp), %r14d ## 4-byte Reload - jmp LBB17_811 -Ltmp2802: -LBB17_799: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp2803: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -128(%rbp) ## 8-byte Spill -Ltmp2804: - ##DEBUG_VALUE: n <- [%RBP+-128] - callq _floor -Ltmp2805: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -128(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_808 - jp LBB17_808 -Ltmp2806: -## BB#800: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_808 -Ltmp2807: -## BB#801: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_808 -## BB#802: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - jmp LBB17_810 -Ltmp2808: -LBB17_808: ## %.loopexit744 - ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %rax ## 8-byte Reload - .loc 1 1566 11 ## /Users/dylan/github/ravi/src/lvm.c:1566:11 -Ltmp2809: - movq %r13, 40(%rax) - .loc 1 1566 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1566:11 -Ltmp2810: - movl $19, %r8d - movq -104(%rbp), %rdi ## 8-byte Reload -Ltmp2811: - ##DEBUG_VALUE: luaV_execute:L <- %RDI - movq %r12, %rsi - movq %r12, %rdx - movq %rax, %r12 - movq %rdi, %rbx -Ltmp2812: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r15, %rcx - callq _luaT_trybinTM - movq %rbx, %r10 -Ltmp2813: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r13, %r11 -Ltmp2814: - .loc 1 1566 11 ## /Users/dylan/github/ravi/src/lvm.c:1566:11 - movq 32(%r12), %r9 -Ltmp2815: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp2816: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl %eax, %r14d -Ltmp2817: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2818: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_812 -Ltmp2819: - .align 4, 0x90 -Ltmp2820: ## Block address taken -LBB17_794: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_797 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1560 22 ## /Users/dylan/github/ravi/src/lvm.c:1560:22 - shrl $24, %r13d - shlq $4, %r13 - leaq (%r9,%r13), %r12 -Ltmp2821: - ##DEBUG_VALUE: rb <- %R12 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R12 - .loc 1 1562 13 ## /Users/dylan/github/ravi/src/lvm.c:1562:13 - cmpl $19, 8(%r9,%r13) - jne LBB17_796 -Ltmp2822: -## BB#795: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %R12 - .loc 1 1562 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1562:13 - movq (%r12), %rax -Ltmp2823: - ##DEBUG_VALUE: ib <- %RAX - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp2824: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp2825: -LBB17_811: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1563 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1563:11 - notq %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp2826: -LBB17_812: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1568 9 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2827: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1568 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_813 -Ltmp2828: -LBB17_814: ## in Loop: Header=BB17_794 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1568 9 ## /Users/dylan/github/ravi/src/lvm.c:1568:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2829: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2830: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2831: -LBB17_820: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1574 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2832: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1574 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2833: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2834: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2835: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2836: - .loc 1 1574 9 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - movq 32(%r12), %r9 -Ltmp2837: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2838: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_821 -Ltmp2839: - .align 4, 0x90 -Ltmp2840: ## Block address taken -LBB17_815: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1571 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1571:22 - shrl $24, %r13d - .loc 1 1572 19 ## /Users/dylan/github/ravi/src/lvm.c:1572:19 - shlq $4, %r13 - movl 8(%r9,%r13), %ecx - movb $1, %al - testl %ecx, %ecx - je LBB17_819 -Ltmp2841: -## BB#816: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $1, %ecx - jne LBB17_817 -Ltmp2842: -## BB#818: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $0, (%r9,%r13) - sete %al - jmp LBB17_819 -Ltmp2843: - .align 4, 0x90 -LBB17_817: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - xorl %eax, %eax -Ltmp2844: -LBB17_819: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movzbl %al, %eax -Ltmp2845: - ##DEBUG_VALUE: res <- %EAX - .loc 1 1573 9 ## /Users/dylan/github/ravi/src/lvm.c:1573:9 - movl %eax, (%r15) - movl $1, 8(%r15) -Ltmp2846: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1574 9 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2847: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1574 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_820 -Ltmp2848: -LBB17_821: ## in Loop: Header=BB17_815 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1574 9 ## /Users/dylan/github/ravi/src/lvm.c:1574:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2849: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2850: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2851: -LBB17_823: ## in Loop: Header=BB17_822 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1578 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - movq %r11, 40(%r12) - .loc 1 1578 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 -Ltmp2852: - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2853: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaG_traceexec - movq %rbx, %r10 -Ltmp2854: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2855: - .loc 1 1578 9 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2856: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_824 -Ltmp2857: - .align 4, 0x90 -Ltmp2858: ## Block address taken -LBB17_822: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1577 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1577:9 - movq %r11, 40(%r12) - .loc 1 1577 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1577:9 -Ltmp2859: - shrl $24, %r13d - shlq $4, %r13 - addq %r9, %r13 - movq %r10, %rdi - movq %r15, %rsi - movq %r13, %rdx - movq %r11, %r14 - movq %r10, %rbx -Ltmp2860: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_objlen - movq %rbx, %r10 -Ltmp2861: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2862: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1578 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2863: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1578 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 -Ltmp2864: - testb $12, 200(%r10) - jne LBB17_823 -Ltmp2865: -LBB17_824: ## in Loop: Header=BB17_822 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1578 9 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - movq 32(%r12), %r9 -Ltmp2866: - .loc 1 1578 9 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2867: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2868: - ##DEBUG_VALUE: ra <- %R15 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp2869: - .loc 1 1578 9 ## /Users/dylan/github/ravi/src/lvm.c:1578:9 - leaq (%r8,%rax,8), %rcx - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2870: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp2871: -LBB17_829: ## in Loop: Header=BB17_825 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1591 9 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2872: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1591 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2873: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2874: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2875: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2876: - .loc 1 1591 9 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 - movq 32(%r12), %r9 -Ltmp2877: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2878: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_830 -Ltmp2879: - .align 4, 0x90 -Ltmp2880: ## Block address taken -LBB17_825: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1581 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1581:17 - movl %r13d, %r14d - shrl $24, %r14d -Ltmp2881: - ##DEBUG_VALUE: b <- %R14D - .loc 1 1582 17 ## /Users/dylan/github/ravi/src/lvm.c:1582:17 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %eax -Ltmp2882: - ##DEBUG_VALUE: c <- %EAX - .loc 1 1585 9 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - movl $1, %esi - subl %r14d, %esi - addl %eax, %esi -Ltmp2883: - ##DEBUG_VALUE: c <- %RAX - .loc 1 1584 23 ## /Users/dylan/github/ravi/src/lvm.c:1584:23 - shlq $4, %rax -Ltmp2884: - .loc 1 1584 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1584:27 - leaq 16(%r9,%rax), %rax - .loc 1 1584 16 ## /Users/dylan/github/ravi/src/lvm.c:1584:16 - movq %rax, 16(%r10) - .loc 1 1585 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 -Ltmp2885: - movq %r11, 40(%r12) - .loc 1 1585 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 -Ltmp2886: - movq %r10, %rdi - movq %r11, %r15 - movq %r10, %rbx -Ltmp2887: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_concat - movq %rbx, %r10 -Ltmp2888: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1585 9 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - movq 32(%r12), %r9 -Ltmp2889: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movb 200(%r10), %al -Ltmp2890: - .loc 1 1586 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1586:14 - shrl $9, %r13d - andl $127, %r13d - movq %r13, %rcx - shlq $4, %rcx - .loc 1 1587 19 ## /Users/dylan/github/ravi/src/lvm.c:1587:19 - movq %r14, %rdx - shlq $4, %rdx - .loc 1 1588 9 ## /Users/dylan/github/ravi/src/lvm.c:1588:9 -Ltmp2891: - movq (%r9,%rdx), %rsi - movq 8(%r9,%rdx), %rdi - movq %rdi, 8(%r9,%rcx) - movq %rsi, (%r9,%rcx) -Ltmp2892: - .loc 1 1589 9 ## /Users/dylan/github/ravi/src/lvm.c:1589:9 - movq 24(%r10), %rsi - cmpq $0, 24(%rsi) - jle LBB17_826 -Ltmp2893: -## BB#827: ## in Loop: Header=BB17_825 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_execute:base <- %R9 - ##DEBUG_VALUE: b <- %R14D - .loc 1 1586 14 ## /Users/dylan/github/ravi/src/lvm.c:1586:14 - addq %r9, %rcx -Ltmp2894: - ##DEBUG_VALUE: io1 <- %RCX - ##DEBUG_VALUE: ra <- %RCX - .loc 1 1587 19 ## /Users/dylan/github/ravi/src/lvm.c:1587:19 - addq %r9, %rdx -Ltmp2895: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1589 9 ## /Users/dylan/github/ravi/src/lvm.c:1589:9 - addq $16, %rcx -Ltmp2896: - cmpl %r14d, %r13d - cmovbq %rdx, %rcx - movq %rcx, 16(%r10) - movq %r10, %rdi - movq %r10, %rbx -Ltmp2897: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaC_step - movq %rbx, %r10 -Ltmp2898: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1589 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1589:9 - movq %r15, 40(%r12) - .loc 1 1589 9 ## /Users/dylan/github/ravi/src/lvm.c:1589:9 -Ltmp2899: - movq 8(%r12), %rcx - movq %rcx, 16(%r10) -Ltmp2900: - .loc 1 1589 9 ## /Users/dylan/github/ravi/src/lvm.c:1589:9 - movq 32(%r12), %r9 -Ltmp2901: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movb 200(%r10), %al - jmp LBB17_828 -Ltmp2902: - .align 4, 0x90 -LBB17_826: ## %._crit_edge.6291 - ## in Loop: Header=BB17_825 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_execute:base <- %R9 - .loc 1 1590 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1590:22 - movq 8(%r12), %rcx -Ltmp2903: -LBB17_828: ## in Loop: Header=BB17_825 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2904: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r15, %r11 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 -Ltmp2905: - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp2906: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1590 16 ## /Users/dylan/github/ravi/src/lvm.c:1590:16 - movq %rcx, 16(%r10) -Ltmp2907: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1591 9 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2908: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1591 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 -Ltmp2909: - testb $12, %al - jne LBB17_829 -Ltmp2910: -LBB17_830: ## in Loop: Header=BB17_825 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1591 9 ## /Users/dylan/github/ravi/src/lvm.c:1591:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2911: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2912: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2913: -LBB17_834: ## in Loop: Header=BB17_831 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1595 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 -Ltmp2914: - movq %rbx, 40(%r12) - .loc 1 1595 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 -Ltmp2915: - movq %r10, %rdi - movq %r10, %r14 -Ltmp2916: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp2917: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1595 9 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 - movq 32(%r12), %r9 -Ltmp2918: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2919: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_835 -Ltmp2920: - .align 4, 0x90 -Ltmp2921: ## Block address taken -LBB17_831: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1594 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1594:9 - movl %r13d, %eax - shrl $9, %eax - .loc 1 1594 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1594:9 -Ltmp2922: - andl $127, %eax - je LBB17_833 -Ltmp2923: -## BB#832: ## in Loop: Header=BB17_831 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp2924: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r12 - callq _luaF_close - movq %r12, %r8 - movq %r15, %r10 -Ltmp2925: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 -Ltmp2926: -LBB17_833: ## in Loop: Header=BB17_831 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1594 9 ## /Users/dylan/github/ravi/src/lvm.c:1594:9 - shrl $16, %r13d -Ltmp2927: - .loc 1 1595 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 - leaq -131064(%r11,%r13,4), %rbx -Ltmp2928: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl -131068(%r11,%r13,4), %r13d -Ltmp2929: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1595 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 -Ltmp2930: - testb $12, 200(%r10) - jne LBB17_834 -Ltmp2931: -LBB17_835: ## in Loop: Header=BB17_831 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1595 9 ## /Users/dylan/github/ravi/src/lvm.c:1595:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2932: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2933: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp2934: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp2935: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - jmpq *(%rcx) -Ltmp2936: -LBB17_842: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1606 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp2937: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1606 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2938: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2939: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2940: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2941: - .loc 1 1606 9 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2942: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_843 -Ltmp2943: - .align 4, 0x90 -Ltmp2944: ## Block address taken -LBB17_836: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1598 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1598:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %al, %al - cmovsq %rcx, %rsi -Ltmp2945: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 1599 22 ## /Users/dylan/github/ravi/src/lvm.c:1599:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %cl, %cl - cmovsq %rax, %rdx -Ltmp2946: - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - movq %r11, 40(%r12) - movq %r12, %r15 - movq %rdi, %r14 -Ltmp2947: - ##DEBUG_VALUE: luaV_execute:k <- %R14 - .loc 1 1600 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - movq %r10, %rdi - movq %r10, %r12 -Ltmp2948: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r11, %rbx - callq _luaV_equalobj - shrl $9, %r13d - andl $127, %r13d - cmpl %r13d, %eax - jne LBB17_837 -Ltmp2949: -## BB#838: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R14 - movq %r14, %r13 -Ltmp2950: - ##DEBUG_VALUE: luaV_execute:k <- %R13 - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - movl (%rbx), %r14d -Ltmp2951: - ##DEBUG_VALUE: i <- %R14D - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - movl %r14d, %eax - shrl $9, %eax - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 -Ltmp2952: - andl $127, %eax - movq %rbx, %r11 - je LBB17_840 -Ltmp2953: -## BB#839: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R13 - ##DEBUG_VALUE: i <- %R14D - movq 32(%r15), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r12, %rdi - movq %r11, %rbx - callq _luaF_close - movq %rbx, %r11 -Ltmp2954: -LBB17_840: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R13 - ##DEBUG_VALUE: i <- %R14D - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - shrl $16, %r14d -Ltmp2955: - leaq -131064(%r11,%r14,4), %r11 -Ltmp2956: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq %r13, %rdi -Ltmp2957: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r10 -Ltmp2958: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jmp LBB17_841 -Ltmp2959: - .align 4, 0x90 -LBB17_837: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R14 - .loc 1 1600 9 ## /Users/dylan/github/ravi/src/lvm.c:1600:9 - addq $4, %rbx -Ltmp2960: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movq %rbx, %r11 -Ltmp2961: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq %r12, %r10 -Ltmp2962: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq %r14, %rdi -Ltmp2963: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_841: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1606 9 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp2964: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1606 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 -Ltmp2965: - testb $12, 200(%r10) - movq %r15, %r12 - jne LBB17_842 -Ltmp2966: -LBB17_843: ## in Loop: Header=BB17_836 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1606 9 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movq 32(%r12), %r9 -Ltmp2967: - .loc 1 1606 9 ## /Users/dylan/github/ravi/src/lvm.c:1606:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp2968: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp2969: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp2970: -LBB17_854: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1621 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp2971: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1621 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp2972: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp2973: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp2974: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp2975: - .loc 1 1621 9 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - movq 32(%r12), %r9 -Ltmp2976: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp2977: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_855 -Ltmp2978: - .align 4, 0x90 -Ltmp2979: ## Block address taken -LBB17_844: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1609 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1609:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %al, %al - cmovsq %rcx, %rsi -Ltmp2980: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 1610 22 ## /Users/dylan/github/ravi/src/lvm.c:1610:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rdi, %r15 -Ltmp2981: - ##DEBUG_VALUE: luaV_execute:k <- %R15 - movq %rcx, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %cl, %cl - cmovsq %rax, %rdx -Ltmp2982: - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1612 29 ## /Users/dylan/github/ravi/src/lvm.c:1612:29 - cmpl $19, 8(%rsi) - jne LBB17_847 -Ltmp2983: -## BB#845: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1612 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1612:13 - cmpl $19, 8(%rdx) - jne LBB17_847 -Ltmp2984: -## BB#846: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - movl %r14d, %ecx - movq %r11, %r14 - .loc 1 1613 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1613:18 -Ltmp2985: - movq (%rsi), %rax - .loc 1 1613 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1613:29 - cmpq (%rdx), %rax - setl %al - movzbl %al, %eax - jmp LBB17_848 -Ltmp2986: - .align 4, 0x90 -LBB17_847: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1614 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1614:14 - movq %r11, 40(%r12) - movq %r11, %r14 - .loc 1 1614 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1614:14 -Ltmp2987: - movq %r10, %rdi - movq %r10, %rbx -Ltmp2988: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_lessthan - movq %rbx, %r10 -Ltmp2989: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: res <- %EAX - .loc 1 1614 14 ## /Users/dylan/github/ravi/src/lvm.c:1614:14 - movq 32(%r12), %r9 -Ltmp2990: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp2991: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX -LBB17_848: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - .loc 1 1617 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1617:20 - shrl $9, %r13d - andl $127, %r13d - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] -Ltmp2992: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r14, %r11 - .loc 1 1617 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1617:17 - cmpl %r13d, %eax - jne LBB17_849 -Ltmp2993: -## BB#850: ## in Loop: Header=BB17_844 Depth=2 - .loc 1 1620 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1620:11 - movl (%r11), %ebx -Ltmp2994: - ##DEBUG_VALUE: i <- %EBX - .loc 1 1620 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1620:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 1620 11 ## /Users/dylan/github/ravi/src/lvm.c:1620:11 -Ltmp2995: - andl $127, %eax - je LBB17_852 -Ltmp2996: -## BB#851: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r12, %r15 - movq %r9, %r12 - movq %r10, %r13 -Ltmp2997: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - callq _luaF_close - movq %r13, %r10 -Ltmp2998: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq %r15, %r12 - movq %r14, %r11 -Ltmp2999: -LBB17_852: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 1620 11 ## /Users/dylan/github/ravi/src/lvm.c:1620:11 - shrl $16, %ebx -Ltmp3000: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3001: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp3002: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3003: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_853 -Ltmp3004: - .align 4, 0x90 -LBB17_849: ## in Loop: Header=BB17_844 Depth=2 - .loc 1 1618 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1618:13 - addq $4, %r11 -Ltmp3005: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq %r15, %rdi -Ltmp3006: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_853: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1621 9 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3007: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1621 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - testl %ecx, %ecx - movl $0, %r14d -Ltmp3008: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_854 -Ltmp3009: -LBB17_855: ## in Loop: Header=BB17_844 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1621 9 ## /Users/dylan/github/ravi/src/lvm.c:1621:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3010: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3011: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3012: -LBB17_866: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1636 9 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3013: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1636 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3014: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3015: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3016: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3017: - .loc 1 1636 9 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - movq 32(%r12), %r9 -Ltmp3018: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3019: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_867 -Ltmp3020: - .align 4, 0x90 -Ltmp3021: ## Block address taken -LBB17_856: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1624 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1624:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %al, %al - cmovsq %rcx, %rsi -Ltmp3022: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 1625 22 ## /Users/dylan/github/ravi/src/lvm.c:1625:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rdi, %r15 -Ltmp3023: - ##DEBUG_VALUE: luaV_execute:k <- %R15 - movq %rcx, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %cl, %cl - cmovsq %rax, %rdx -Ltmp3024: - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1627 29 ## /Users/dylan/github/ravi/src/lvm.c:1627:29 - cmpl $19, 8(%rsi) - jne LBB17_859 -Ltmp3025: -## BB#857: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1627 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1627:13 - cmpl $19, 8(%rdx) - jne LBB17_859 -Ltmp3026: -## BB#858: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - movl %r14d, %ecx - movq %r11, %r14 - .loc 1 1628 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1628:18 -Ltmp3027: - movq (%rsi), %rax - .loc 1 1628 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1628:29 - cmpq (%rdx), %rax - setle %al - movzbl %al, %eax - jmp LBB17_860 -Ltmp3028: - .align 4, 0x90 -LBB17_859: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - .loc 1 1629 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1629:14 - movq %r11, 40(%r12) - movq %r11, %r14 - .loc 1 1629 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1629:14 -Ltmp3029: - movq %r10, %rdi - movq %r10, %rbx -Ltmp3030: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_lessequal - movq %rbx, %r10 -Ltmp3031: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: res <- %EAX - .loc 1 1629 14 ## /Users/dylan/github/ravi/src/lvm.c:1629:14 - movq 32(%r12), %r9 -Ltmp3032: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp3033: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX -LBB17_860: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R15 - .loc 1 1632 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1632:20 - shrl $9, %r13d - andl $127, %r13d - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] -Ltmp3034: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r14, %r11 - .loc 1 1632 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1632:17 - cmpl %r13d, %eax - jne LBB17_861 -Ltmp3035: -## BB#862: ## in Loop: Header=BB17_856 Depth=2 - .loc 1 1635 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1635:11 - movl (%r11), %ebx -Ltmp3036: - ##DEBUG_VALUE: i <- %EBX - .loc 1 1635 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1635:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 1635 11 ## /Users/dylan/github/ravi/src/lvm.c:1635:11 -Ltmp3037: - andl $127, %eax - je LBB17_864 -Ltmp3038: -## BB#863: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r12, %r15 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3039: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - callq _luaF_close - movq %r13, %r10 -Ltmp3040: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq %r15, %r12 - movq %r14, %r11 -Ltmp3041: -LBB17_864: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 1635 11 ## /Users/dylan/github/ravi/src/lvm.c:1635:11 - shrl $16, %ebx -Ltmp3042: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3043: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp3044: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3045: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_865 -Ltmp3046: - .align 4, 0x90 -LBB17_861: ## in Loop: Header=BB17_856 Depth=2 - .loc 1 1633 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1633:13 - addq $4, %r11 -Ltmp3047: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq %r15, %rdi -Ltmp3048: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_865: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1636 9 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3049: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1636 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - testl %ecx, %ecx - movl $0, %r14d -Ltmp3050: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_866 -Ltmp3051: -LBB17_867: ## in Loop: Header=BB17_856 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1636 9 ## /Users/dylan/github/ravi/src/lvm.c:1636:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3052: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3053: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3054: -LBB17_880: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1643 9 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3055: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1643 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3056: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3057: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3058: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3059: - .loc 1 1643 9 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - movq 32(%r12), %r9 -Ltmp3060: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3061: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_881 -Ltmp3062: - .align 4, 0x90 -Ltmp3063: ## Block address taken -LBB17_868: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1639 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1639:13 - testl $16711680, %r13d ## imm = 0xFF0000 - .loc 1 1639 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1639:27 - movl 8(%r15), %eax -Ltmp3064: - .loc 1 1639 13 ## /Users/dylan/github/ravi/src/lvm.c:1639:13 - je LBB17_875 -Ltmp3065: -## BB#869: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - testl %eax, %eax - je LBB17_878 -Ltmp3066: -## BB#870: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1639 27 ## /Users/dylan/github/ravi/src/lvm.c:1639:27 - cmpl $1, %eax - jne LBB17_872 -Ltmp3067: -## BB#871: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $0, (%r15) - jne LBB17_872 - jmp LBB17_878 -Ltmp3068: - .align 4, 0x90 -LBB17_875: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - testl %eax, %eax - je LBB17_872 -Ltmp3069: -## BB#876: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1639 44 ## /Users/dylan/github/ravi/src/lvm.c:1639:44 - cmpl $1, %eax - jne LBB17_878 -Ltmp3070: -## BB#877: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cmpl $0, (%r15) - je LBB17_872 -Ltmp3071: - .align 4, 0x90 -LBB17_878: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1640 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1640:13 - addq $4, %r11 -Ltmp3072: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - jmp LBB17_879 -Ltmp3073: - .align 4, 0x90 -LBB17_872: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1642 11 ## /Users/dylan/github/ravi/src/lvm.c:1642:11 - movl (%r11), %ebx -Ltmp3074: - ##DEBUG_VALUE: i <- %EBX - .loc 1 1642 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1642:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 1642 11 ## /Users/dylan/github/ravi/src/lvm.c:1642:11 -Ltmp3075: - andl $127, %eax - je LBB17_874 -Ltmp3076: -## BB#873: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3077: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3078: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3079: -LBB17_874: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 1642 11 ## /Users/dylan/github/ravi/src/lvm.c:1642:11 - shrl $16, %ebx -Ltmp3080: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3081: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3082: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3083: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_879: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1643 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3084: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1643 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_880 -Ltmp3085: -LBB17_881: ## in Loop: Header=BB17_868 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1643 9 ## /Users/dylan/github/ravi/src/lvm.c:1643:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3086: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3087: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3088: -LBB17_894: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1653 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3089: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1653 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3090: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3091: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3092: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3093: - .loc 1 1653 9 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - movq 32(%r12), %r9 -Ltmp3094: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3095: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_895 -Ltmp3096: - .align 4, 0x90 -Ltmp3097: ## Block address taken -LBB17_882: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1646 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1646:22 - movl %r13d, %ecx - shrl $24, %ecx - shlq $4, %rcx - leaq (%r9,%rcx), %rax -Ltmp3098: - ##DEBUG_VALUE: rb <- %RAX - .loc 1 1647 13 ## /Users/dylan/github/ravi/src/lvm.c:1647:13 - testl $16711680, %r13d ## imm = 0xFF0000 - .loc 1 1647 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1647:27 - movl 8(%r9,%rcx), %ecx -Ltmp3099: - .loc 1 1647 13 ## /Users/dylan/github/ravi/src/lvm.c:1647:13 - je LBB17_889 -Ltmp3100: -## BB#883: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - testl %ecx, %ecx - je LBB17_892 -Ltmp3101: -## BB#884: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - .loc 1 1647 27 ## /Users/dylan/github/ravi/src/lvm.c:1647:27 - cmpl $1, %ecx - jne LBB17_886 -Ltmp3102: -## BB#885: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - cmpl $0, (%rax) - jne LBB17_886 - jmp LBB17_892 -Ltmp3103: - .align 4, 0x90 -LBB17_889: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - testl %ecx, %ecx - je LBB17_886 -Ltmp3104: -## BB#890: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - .loc 1 1647 44 ## /Users/dylan/github/ravi/src/lvm.c:1647:44 - cmpl $1, %ecx - jne LBB17_892 -Ltmp3105: -## BB#891: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RAX - cmpl $0, (%rax) - je LBB17_886 -Ltmp3106: - .align 4, 0x90 -LBB17_892: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1648 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1648:13 - addq $4, %r11 -Ltmp3107: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - jmp LBB17_893 -Ltmp3108: - .align 4, 0x90 -LBB17_886: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RAX - .loc 1 1650 11 ## /Users/dylan/github/ravi/src/lvm.c:1650:11 - movq (%rax), %rcx - movq 8(%rax), %rax -Ltmp3109: - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp3110: - .loc 1 1651 11 ## /Users/dylan/github/ravi/src/lvm.c:1651:11 - movl (%r11), %ebx -Ltmp3111: - ##DEBUG_VALUE: i <- %EBX - .loc 1 1651 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1651:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 1651 11 ## /Users/dylan/github/ravi/src/lvm.c:1651:11 -Ltmp3112: - andl $127, %eax - je LBB17_888 -Ltmp3113: -## BB#887: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq -80(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r15 - movq %r10, %r13 -Ltmp3114: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r12 - callq _luaF_close - movq %r12, %r8 - movq %r13, %r10 -Ltmp3115: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r9 - movq %r14, %r11 -Ltmp3116: -LBB17_888: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 1651 11 ## /Users/dylan/github/ravi/src/lvm.c:1651:11 - shrl $16, %ebx -Ltmp3117: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3118: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3119: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3120: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp3121: -LBB17_893: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1653 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3122: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1653 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_894 -Ltmp3123: -LBB17_895: ## in Loop: Header=BB17_882 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1653 9 ## /Users/dylan/github/ravi/src/lvm.c:1653:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3124: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3125: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3126: -LBB17_903: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1684 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp3127: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1684 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3128: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3129: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3130: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3131: - .loc 1 1684 9 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 - movq 32(%r12), %r9 -Ltmp3132: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3133: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_904 -Ltmp3134: - .align 4, 0x90 -Ltmp3135: ## Block address taken -LBB17_896: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1656 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1656:17 - movl %r13d, %eax - shrl $24, %eax -Ltmp3136: - ##DEBUG_VALUE: b <- %EAX - .loc 1 1657 24 ## /Users/dylan/github/ravi/src/lvm.c:1657:24 - shrl $16, %r13d - movzbl %r13b, %r14d - .loc 1 1657 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1657:36 - leal -1(%r14), %edx -Ltmp3137: - ##DEBUG_VALUE: nresults <- %EDX - .loc 1 1658 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1658:15 - testl %eax, %eax - je LBB17_898 -Ltmp3138: -## BB#897: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: b <- %EAX - ##DEBUG_VALUE: nresults <- %EDX - .loc 1 1659 22 ## /Users/dylan/github/ravi/src/lvm.c:1659:22 - shlq $4, %rax -Ltmp3139: - addq %r15, %rax - .loc 1 1659 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1659:18 - movq %rax, 16(%r10) -Ltmp3140: -LBB17_898: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: nresults <- %EDX - ##DEBUG_VALUE: c_or_compiled <- 0 - .loc 1 1667 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movq %r11, 40(%r12) - movq %r11, %r13 - .loc 1 1667 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 -Ltmp3141: - movl $1, %ecx - movq %r10, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp3142: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaD_precall - movq %rbx, %r10 -Ltmp3143: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: c_or_compiled <- %EAX - .loc 1 1668 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1668:13 - testl %eax, %eax -Ltmp3144: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3145: - .loc 1 1668 13 ## /Users/dylan/github/ravi/src/lvm.c:1668:13 - je LBB17_1588 -Ltmp3146: -## BB#899: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: c_or_compiled <- %EAX - .loc 1 1667 9 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movq 32(%r12), %r9 -Ltmp3147: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movb 200(%r10), %cl -Ltmp3148: - .loc 1 1673 34 ## /Users/dylan/github/ravi/src/lvm.c:1673:34 - testl %r14d, %r14d - je LBB17_902 -Ltmp3149: -## BB#900: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_execute:base <- %R9 - cmpl $1, %eax - jne LBB17_902 -Ltmp3150: -## BB#901: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_execute:base <- %R9 - .loc 1 1675 26 ## /Users/dylan/github/ravi/src/lvm.c:1675:26 - movq 8(%r12), %rax - .loc 1 1675 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1675:20 - movq %rax, 16(%r10) -Ltmp3151: -LBB17_902: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R13 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r13, %r11 -Ltmp3152: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1684 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3153: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1684 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 -Ltmp3154: - testb $12, %cl - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3155: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_903 -Ltmp3156: -LBB17_904: ## in Loop: Header=BB17_896 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1684 9 ## /Users/dylan/github/ravi/src/lvm.c:1684:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3157: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3158: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3159: -LBB17_1588: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1680 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1680:19 - movq 32(%r10), %r12 -Ltmp3160: - ##DEBUG_VALUE: luaV_execute:ci <- %R12 - jmp LBB17_1 -Ltmp3161: -LBB17_909: ## in Loop: Header=BB17_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movq %r11, 40(%r12) - movq %rdi, %r15 -Ltmp3162: - ##DEBUG_VALUE: luaV_execute:k <- %R15 - .loc 1 1722 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3163: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaG_traceexec - movq %r15, %rdi -Ltmp3164: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rbx, %r10 -Ltmp3165: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3166: - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3167: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_910 -Ltmp3168: - .align 4, 0x90 -Ltmp3169: ## Block address taken -LBB17_905: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1687 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1687:17 - shrl $24, %r13d -Ltmp3170: - ##DEBUG_VALUE: b <- %R13D - je LBB17_907 -Ltmp3171: -## BB#906: ## in Loop: Header=BB17_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: b <- %R13D - .loc 1 1688 32 ## /Users/dylan/github/ravi/src/lvm.c:1688:32 - shlq $4, %r13 -Ltmp3172: - addq %r15, %r13 - .loc 1 1688 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1688:28 - movq %r13, 16(%r10) -Ltmp3173: -LBB17_907: ## in Loop: Header=BB17_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1690 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1690:9 - movq %r11, 40(%r12) - .loc 1 1695 13 ## /Users/dylan/github/ravi/src/lvm.c:1695:13 -Ltmp3174: - movl $-1, %edx - movl $1, %ecx - movq %r10, %rdi - movq %r15, %rsi - movq %r11, %rbx - movq %r10, %r14 -Ltmp3175: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaD_precall - movq %r14, %r10 -Ltmp3176: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - testl %eax, %eax -Ltmp3177: - .loc 1 1695 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1695:13 - je LBB17_911 -Ltmp3178: -## BB#908: ## in Loop: Header=BB17_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1697 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1697:11 - movq %rbx, 40(%r12) -Ltmp3179: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movl (%rbx), %r13d - addq $4, %rbx -Ltmp3180: - ##DEBUG_VALUE: i <- %R13D - xorl %r14d, %r14d - .loc 1 1722 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 -Ltmp3181: - testb $12, 200(%r10) - movq %rbx, %r11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3182: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_909 -Ltmp3183: -LBB17_910: ## in Loop: Header=BB17_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movq 32(%r12), %r9 -Ltmp3184: - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3185: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3186: - ##DEBUG_VALUE: ra <- %R15 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3187: - .loc 1 1722 9 ## /Users/dylan/github/ravi/src/lvm.c:1722:9 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3188: -LBB17_911: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1701 30 ## /Users/dylan/github/ravi/src/lvm.c:1701:30 - movq 32(%r10), %r14 -Ltmp3189: - ##DEBUG_VALUE: nci <- %R14 - movq %r10, %r13 -Ltmp3190: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - .loc 1 1703 30 ## /Users/dylan/github/ravi/src/lvm.c:1703:30 - movq (%r14), %r12 -Ltmp3191: - ##DEBUG_VALUE: nfunc <- %R12 - .loc 1 1702 32 ## /Users/dylan/github/ravi/src/lvm.c:1702:32 - movq 16(%r14), %r15 -Ltmp3192: - ##DEBUG_VALUE: oci <- %R15 - ##DEBUG_VALUE: luaV_execute:ci <- %R15 - .loc 1 1704 30 ## /Users/dylan/github/ravi/src/lvm.c:1704:30 - movq (%r15), %r8 -Ltmp3193: - ##DEBUG_VALUE: ofunc <- %R8 - .loc 1 1706 39 ## /Users/dylan/github/ravi/src/lvm.c:1706:39 - movq (%r12), %rax - movq 24(%rax), %rax - .loc 1 1706 37 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1706:37 - movzbl 10(%rax), %ebx - shlq $4, %rbx - addq 32(%r14), %rbx -Ltmp3194: - ##DEBUG_VALUE: lim <- %RBX - .loc 1 1709 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1709:19 - movq -112(%rbp), %rax ## 8-byte Reload - movq 24(%rax), %rax -Ltmp3195: - .loc 1 1709 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1709:15 - cmpl $0, 32(%rax) - jle LBB17_913 -Ltmp3196: -## BB#912: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:ci <- %R15 - ##DEBUG_VALUE: nci <- %R14 - ##DEBUG_VALUE: nfunc <- %R12 - ##DEBUG_VALUE: oci <- %R15 - ##DEBUG_VALUE: ofunc <- %R8 - ##DEBUG_VALUE: lim <- %RBX - .loc 1 1709 56 ## /Users/dylan/github/ravi/src/lvm.c:1709:56 - movq 32(%r15), %rsi - .loc 1 1709 33 ## /Users/dylan/github/ravi/src/lvm.c:1709:33 - movq %r13, %rdi - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp3197: - ##DEBUG_VALUE: ofunc <- [%RBP+-80] - callq _luaF_close - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp3198: - ##DEBUG_VALUE: ofunc <- %R8 -LBB17_913: ## %.preheader754 - ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:ci <- %R15 - ##DEBUG_VALUE: nci <- %R14 - ##DEBUG_VALUE: nfunc <- %R12 - ##DEBUG_VALUE: oci <- %R15 - ##DEBUG_VALUE: ofunc <- %R8 - ##DEBUG_VALUE: lim <- %RBX - .loc 1 1711 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1711:11 - cmpq %rbx, %r12 - movq %r12, %rax - movq %r8, %rcx - jae LBB17_915 -Ltmp3199: - .align 4, 0x90 -LBB17_914: ## %.lr.ph3526 - ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:ci <- %R15 - ##DEBUG_VALUE: nci <- %R14 - ##DEBUG_VALUE: nfunc <- %R12 - ##DEBUG_VALUE: oci <- %R15 - ##DEBUG_VALUE: ofunc <- %R8 - ##DEBUG_VALUE: lim <- %RBX - .loc 1 1712 13 ## /Users/dylan/github/ravi/src/lvm.c:1712:13 - movq (%rax), %rdx - movq 8(%rax), %rsi - movq %rsi, 8(%rcx) - movq %rdx, (%rcx) -Ltmp3200: - .loc 1 1711 37 ## /Users/dylan/github/ravi/src/lvm.c:1711:37 - addq $16, %rcx - addq $16, %rax - cmpq %rbx, %rax -Ltmp3201: - .loc 1 1711 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1711:11 - jb LBB17_914 -Ltmp3202: -LBB17_915: ## %._crit_edge - ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R13 - ##DEBUG_VALUE: luaV_execute:ci <- %R15 - ##DEBUG_VALUE: nci <- %R14 - ##DEBUG_VALUE: nfunc <- %R12 - ##DEBUG_VALUE: oci <- %R15 - ##DEBUG_VALUE: ofunc <- %R8 - .loc 1 1713 45 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1713:45 - movq 32(%r14), %rax - .loc 1 1713 50 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1713:50 - subq %r12, %rax - .loc 1 1713 33 ## /Users/dylan/github/ravi/src/lvm.c:1713:33 - addq %r8, %rax - .loc 1 1713 25 ## /Users/dylan/github/ravi/src/lvm.c:1713:25 - movq %rax, 32(%r15) - .loc 1 1714 43 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1714:43 - movq 16(%r13), %rax - .loc 1 1714 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1714:47 - subq %r12, %rax - movq %r15, %r12 -Ltmp3203: - ##DEBUG_VALUE: oci <- %R12 - ##DEBUG_VALUE: luaV_execute:ci <- %R12 - movq %r13, %r10 -Ltmp3204: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1714 37 ## /Users/dylan/github/ravi/src/lvm.c:1714:37 - addq %r8, %rax - .loc 1 1714 29 ## /Users/dylan/github/ravi/src/lvm.c:1714:29 - movq %rax, 16(%r10) - .loc 1 1714 20 ## /Users/dylan/github/ravi/src/lvm.c:1714:20 - movq %rax, 8(%r12) - .loc 1 1715 39 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1715:39 - movq 40(%r14), %rax - .loc 1 1715 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1715:28 - movq %rax, 40(%r12) - .loc 1 1716 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1716:27 - orb $32, 66(%r12) - .loc 1 1717 26 ## /Users/dylan/github/ravi/src/lvm.c:1717:26 - movb $0, 70(%r12) - .loc 1 1718 22 ## /Users/dylan/github/ravi/src/lvm.c:1718:22 - movq %r12, 32(%r10) -Ltmp3205: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3206: - movq %r14, %r8 -Ltmp3207: - jmp LBB17_1 -Ltmp3208: - .align 4, 0x90 -Ltmp3209: ## Block address taken -LBB17_916: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - .loc 1 1725 17 ## /Users/dylan/github/ravi/src/lvm.c:1725:17 - shrl $24, %r13d -Ltmp3210: - ##DEBUG_VALUE: b <- %R13D - .loc 1 1726 17 ## /Users/dylan/github/ravi/src/lvm.c:1726:17 - movq -112(%rbp), %rax ## 8-byte Reload - movq 24(%rax), %rax -Ltmp3211: - .loc 1 1726 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1726:13 - cmpl $0, 32(%rax) - jle LBB17_918 -Ltmp3212: -## BB#917: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: b <- %R13D - .loc 1 1726 31 ## /Users/dylan/github/ravi/src/lvm.c:1726:31 - movq %r10, %rdi - movq %r9, %rsi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3213: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaF_close - movq %rbx, %r10 -Ltmp3214: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3215: -LBB17_918: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: b <- %R13D - .loc 1 1727 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1727:9 - movq %r11, 40(%r12) - .loc 1 1728 23 ## /Users/dylan/github/ravi/src/lvm.c:1728:23 - testl %r13d, %r13d - .loc 1 1728 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1728:21 - je LBB17_920 -Ltmp3216: -## BB#919: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: b <- %R13D - .loc 1 1728 32 ## /Users/dylan/github/ravi/src/lvm.c:1728:32 - decl %r13d -Ltmp3217: - jmp LBB17_921 -Ltmp3218: - .align 4, 0x90 -LBB17_920: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1728 38 ## /Users/dylan/github/ravi/src/lvm.c:1728:38 - movq 16(%r10), %r13 - subq %r15, %r13 - shrq $4, %r13 -Ltmp3219: -LBB17_921: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: nres <- %R13D - .loc 1 1729 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1729:13 - movq %r10, %rdi - movq %r12, %rsi - movq %r15, %rdx - movl %r13d, %ecx - movq %r10, %rbx -Ltmp3220: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaD_poscall -Ltmp3221: - ##DEBUG_VALUE: b <- %EAX - .loc 1 1730 13 ## /Users/dylan/github/ravi/src/lvm.c:1730:13 - testb $8, 66(%r12) - jne LBB17_1582 -Ltmp3222: -## BB#922: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %RBX - ##DEBUG_VALUE: b <- %EAX - .loc 1 1749 19 ## /Users/dylan/github/ravi/src/lvm.c:1749:19 - movq 32(%rbx), %r12 -Ltmp3223: - ##DEBUG_VALUE: luaV_execute:ci <- %R12 - .loc 1 1750 15 ## /Users/dylan/github/ravi/src/lvm.c:1750:15 - testl %eax, %eax - movq %rbx, %r10 -Ltmp3224: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - je LBB17_1 - jmp LBB17_923 -Ltmp3225: -LBB17_934: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1781 9 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3226: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1781 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3227: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3228: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3229: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3230: - .loc 1 1781 9 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - movq 32(%r12), %r9 -Ltmp3231: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3232: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_935 -Ltmp3233: -LBB17_931: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: limit <- %XMM1 - ##DEBUG_VALUE: idx <- %XMM0 - .loc 1 1775 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1775:37 - ucomisd %xmm1, %xmm0 - jb LBB17_933 -Ltmp3234: -LBB17_932: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: idx <- %XMM0 - .loc 1 1776 19 ## /Users/dylan/github/ravi/src/lvm.c:1776:19 - shrl $16, %r13d - .loc 1 1776 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1776:16 - leaq -131068(%r11,%r13,4), %r11 -Ltmp3235: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1777 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1777:13 - movsd %xmm0, (%r15) -Ltmp3236: - .loc 1 1778 13 ## /Users/dylan/github/ravi/src/lvm.c:1778:13 - movsd %xmm0, 48(%r15) - movl $3, 56(%r15) - jmp LBB17_933 -Ltmp3237: - .align 4, 0x90 -Ltmp3238: ## Block address taken -LBB17_924: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1760 13 ## /Users/dylan/github/ravi/src/lvm.c:1760:13 - cmpl $19, 8(%r15) - jne LBB17_929 -Ltmp3239: -## BB#925: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1763 31 ## /Users/dylan/github/ravi/src/lvm.c:1763:31 - movq 16(%r15), %rcx -Ltmp3240: - ##DEBUG_VALUE: limit <- %RCX - .loc 1 1761 30 ## /Users/dylan/github/ravi/src/lvm.c:1761:30 - movq 32(%r15), %rdx -Ltmp3241: - ##DEBUG_VALUE: step <- %RDX - movq (%r15), %rax - .loc 1 1762 29 ## /Users/dylan/github/ravi/src/lvm.c:1762:29 - addq %rdx, %rax -Ltmp3242: - ##DEBUG_VALUE: idx <- %RAX - .loc 1 1764 15 ## /Users/dylan/github/ravi/src/lvm.c:1764:15 - testq %rdx, %rdx - jle LBB17_927 -Ltmp3243: -## BB#926: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: limit <- %RCX - ##DEBUG_VALUE: idx <- %RAX - .loc 1 1764 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1764:46 - cmpq %rcx, %rax - jle LBB17_928 - jmp LBB17_933 -Ltmp3244: -LBB17_929: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1773 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1773:30 - movsd 16(%r15), %xmm1 ## xmm1 = mem[0],zero -Ltmp3245: - ##DEBUG_VALUE: limit <- %XMM1 - .loc 1 1771 29 ## /Users/dylan/github/ravi/src/lvm.c:1771:29 - movsd 32(%r15), %xmm2 ## xmm2 = mem[0],zero -Ltmp3246: - ##DEBUG_VALUE: step <- %XMM2 - movsd (%r15), %xmm0 ## xmm0 = mem[0],zero - .loc 1 1772 28 ## /Users/dylan/github/ravi/src/lvm.c:1772:28 - addsd %xmm2, %xmm0 -Ltmp3247: - ##DEBUG_VALUE: idx <- %XMM0 - .loc 1 1774 15 ## /Users/dylan/github/ravi/src/lvm.c:1774:15 - xorpd %xmm3, %xmm3 -Ltmp3248: - .loc 1 1774 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1774:15 - ucomisd %xmm3, %xmm2 - jbe LBB17_931 -Ltmp3249: -## BB#930: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: limit <- %XMM1 - ##DEBUG_VALUE: idx <- %XMM0 - .loc 1 1774 37 ## /Users/dylan/github/ravi/src/lvm.c:1774:37 - ucomisd %xmm0, %xmm1 - jae LBB17_932 - jmp LBB17_933 -Ltmp3250: -LBB17_927: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: limit <- %RCX - ##DEBUG_VALUE: idx <- %RAX - .loc 1 1764 65 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1764:65 - cmpq %rax, %rcx - jg LBB17_933 -Ltmp3251: - .align 4, 0x90 -LBB17_928: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: idx <- %RAX - .loc 1 1765 19 ## /Users/dylan/github/ravi/src/lvm.c:1765:19 - shrl $16, %r13d - .loc 1 1765 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1765:16 - leaq -131068(%r11,%r13,4), %r11 -Ltmp3252: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1766 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1766:13 - movq %rax, (%r15) -Ltmp3253: - .loc 1 1767 13 ## /Users/dylan/github/ravi/src/lvm.c:1767:13 - movq %rax, 48(%r15) - movl $19, 56(%r15) -Ltmp3254: -LBB17_933: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1781 9 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3255: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1781 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_934 -Ltmp3256: -LBB17_935: ## in Loop: Header=BB17_924 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1781 9 ## /Users/dylan/github/ravi/src/lvm.c:1781:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3257: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3258: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3259: -LBB17_983: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1810 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 - movq %rbx, 40(%r12) - .loc 1 1810 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 -Ltmp3260: - movq %r10, %rdi - movq %r10, %r14 -Ltmp3261: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp3262: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1810 9 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 - movq 32(%r12), %r9 -Ltmp3263: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3264: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_984 -Ltmp3265: -LBB17_944: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_946 -Ltmp3266: -## BB#945: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 - jmp LBB17_954 -Ltmp3267: -LBB17_957: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_959 -Ltmp3268: -## BB#958: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq 32(%r15), %xmm0 - jmp LBB17_967 -Ltmp3269: -LBB17_970: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_972 -Ltmp3270: -## BB#971: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r15), %xmm0 - jmp LBB17_980 -Ltmp3271: -LBB17_946: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1589 -Ltmp3272: -## BB#947: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: plimit <- %RBX - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill -Ltmp3273: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %r12 - movq %r11, %r14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp3274: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp3275: - cmpl $4, %esi - jne LBB17_949 -Ltmp3276: -## BB#948: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_950 -Ltmp3277: -LBB17_959: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1590 -Ltmp3278: -## BB#960: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill - movq %r10, %r12 -Ltmp3279: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, %rbx - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq 32(%r15), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp3280: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 32(%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp3281: - cmpl $4, %esi - jne LBB17_962 -Ltmp3282: -## BB#961: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_963 -Ltmp3283: -LBB17_972: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1591 -Ltmp3284: -## BB#973: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill -Ltmp3285: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %r12 - movq %r11, %r14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp3286: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp3287: - cmpl $4, %esi - jne LBB17_975 -## BB#974: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_976 -Ltmp3288: -LBB17_949: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp3289: -LBB17_950: ## in Loop: Header=BB17_936 Depth=2 - movq %r14, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3290: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3291: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp3292: - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_1589 -Ltmp3293: -## BB#951: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_953 -Ltmp3294: -## BB#952: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_954 -Ltmp3295: -LBB17_962: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp3296: -LBB17_963: ## in Loop: Header=BB17_936 Depth=2 - movq %rbx, %r9 - movq %r12, %r10 -Ltmp3297: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3298: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp3299: - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movq -128(%rbp), %r11 ## 8-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_1590 -Ltmp3300: -## BB#964: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_966 -Ltmp3301: -## BB#965: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_967 -Ltmp3302: -LBB17_975: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp3303: -LBB17_976: ## in Loop: Header=BB17_936 Depth=2 - movq %r14, %r11 - movq %r12, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3304: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3305: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp3306: - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_1591 -Ltmp3307: -## BB#977: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_979 -Ltmp3308: -## BB#978: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_980 -Ltmp3309: -LBB17_953: ## %select.false8739 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 -Ltmp3310: -LBB17_954: ## %luaV_tonumber_.exit616 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 80 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_955 -Ltmp3311: -LBB17_966: ## %select.false8750 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 -Ltmp3312: -LBB17_967: ## %luaV_tonumber_.exit620 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rbx - jmp LBB17_968 -Ltmp3313: -LBB17_979: ## %select.false8761 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 -Ltmp3314: -LBB17_980: ## %luaV_tonumber_.exit624 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_981 -Ltmp3315: - .align 4, 0x90 -Ltmp3316: ## Block address taken -LBB17_936: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1785 29 ## /Users/dylan/github/ravi/src/lvm.c:1785:29 - leaq 16(%r15), %rbx -Ltmp3317: - ##DEBUG_VALUE: plimit <- %RBX - ##DEBUG_VALUE: io <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: io <- %RBX - .loc 1 1789 31 ## /Users/dylan/github/ravi/src/lvm.c:1789:31 - cmpl $19, 8(%r15) - jne LBB17_942 -Ltmp3318: -## BB#937: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 1789 53 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1789:53 - cmpl $19, 40(%r15) - jne LBB17_942 -Ltmp3319: -## BB#938: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 1790 44 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1790:44 - movq 32(%r15), %rdx - leaq -64(%rbp), %rsi -Ltmp3320: - ##DEBUG_VALUE: ilimit <- [%RSI+0] - leaq -68(%rbp), %rcx -Ltmp3321: - ##DEBUG_VALUE: stopnow <- [%RCX+0] - .loc 1 1790 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1790:13 - movq %rbx, %rdi - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r11, %r14 - movq %r12, -80(%rbp) ## 8-byte Spill - movq %r9, %r12 -Ltmp3322: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - callq _luaV_forlimit -Ltmp3323: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3324: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 - movl -88(%rbp), %r14d ## 4-byte Reload -Ltmp3325: - .loc 1 1790 13 ## /Users/dylan/github/ravi/src/lvm.c:1790:13 - testl %eax, %eax - je LBB17_942 -Ltmp3326: -## BB#939: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - xorl %eax, %eax - .loc 1 1792 32 ## /Users/dylan/github/ravi/src/lvm.c:1792:32 -Ltmp3327: - cmpl $0, -68(%rbp) - jne LBB17_941 -Ltmp3328: -## BB#940: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1792 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1792:46 - movq (%r15), %rax -Ltmp3329: -LBB17_941: ## %._crit_edge.6341 - ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: initv <- %RAX - .loc 1 1793 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1793:11 - movq -64(%rbp), %rcx - movq %rcx, 16(%r15) - movl $19, 24(%r15) -Ltmp3330: - .loc 1 1794 11 ## /Users/dylan/github/ravi/src/lvm.c:1794:11 - subq 32(%r15), %rax -Ltmp3331: - movq %rax, (%r15) - movl $19, %eax - jmp LBB17_982 -Ltmp3332: - .align 4, 0x90 -LBB17_942: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 1798 11 ## /Users/dylan/github/ravi/src/lvm.c:1798:11 - movq %r11, 40(%r12) - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 -Ltmp3333: - movl 24(%r15), %eax -Ltmp3334: - .loc 1 1799 15 ## /Users/dylan/github/ravi/src/lvm.c:1799:15 - cmpl $3, %eax - jne LBB17_944 -Ltmp3335: -## BB#943: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: plimit <- %RBX - .loc 1 1799 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1799:16 - movq (%rbx), %rax -Ltmp3336: -LBB17_955: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1801 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1801:11 - movq %rax, 16(%r15) - movl $3, 24(%r15) -Ltmp3337: - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 40(%r15), %eax -Ltmp3338: - .loc 1 1802 15 ## /Users/dylan/github/ravi/src/lvm.c:1802:15 - cmpl $3, %eax - jne LBB17_957 -Ltmp3339: -## BB#956: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1802 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1802:16 - movq 32(%r15), %rbx -Ltmp3340: -LBB17_968: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1804 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1804:11 - movq %rbx, 32(%r15) - movl $3, 40(%r15) -Ltmp3341: - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp3342: - .loc 1 1805 15 ## /Users/dylan/github/ravi/src/lvm.c:1805:15 - cmpl $3, %eax - jne LBB17_970 -Ltmp3343: -## BB#969: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1805 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1805:16 - movq (%r15), %rax -Ltmp3344: -LBB17_981: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1807 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1807:11 - movd %rax, %xmm0 - movd %rbx, %xmm1 - subsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, %eax -Ltmp3345: -LBB17_982: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1794 11 ## /Users/dylan/github/ravi/src/lvm.c:1794:11 - movl %eax, 8(%r15) -Ltmp3346: - .loc 1 1809 15 ## /Users/dylan/github/ravi/src/lvm.c:1809:15 - shrl $16, %r13d - .loc 1 1810 9 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 -Ltmp3347: - leaq -131064(%r11,%r13,4), %rbx -Ltmp3348: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl -131068(%r11,%r13,4), %r13d -Ltmp3349: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1810 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_983 -Ltmp3350: -LBB17_984: ## in Loop: Header=BB17_936 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1810 9 ## /Users/dylan/github/ravi/src/lvm.c:1810:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3351: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3352: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp3353: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3354: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp3355: - .align 4, 0x90 -Ltmp3356: ## Block address taken -LBB17_985: ## in Loop: Header=BB17_1 Depth=1 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: io1 <- %RSI - ##DEBUG_VALUE: cb <- %RSI - .loc 1 1814 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1814:9 - movq 32(%r15), %rax - movq 40(%r15), %rcx - movq %rcx, 88(%r15) - movq %rax, 80(%r15) -Ltmp3357: - .loc 1 1815 9 ## /Users/dylan/github/ravi/src/lvm.c:1815:9 - movq 16(%r15), %rax - movq 24(%r15), %rcx - movq %rcx, 72(%r15) - movq %rax, 64(%r15) -Ltmp3358: - .loc 1 1816 9 ## /Users/dylan/github/ravi/src/lvm.c:1816:9 - movq (%r15), %rax - movq 8(%r15), %rcx - movq %rcx, 56(%r15) - movq %rax, 48(%r15) -Ltmp3359: - .loc 1 1813 23 ## /Users/dylan/github/ravi/src/lvm.c:1813:23 - leaq 48(%r15), %rsi -Ltmp3360: - .loc 1 1817 21 ## /Users/dylan/github/ravi/src/lvm.c:1817:21 - addq $96, %r15 - .loc 1 1817 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1817:16 - movq %r15, 16(%r10) - .loc 1 1818 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1818:9 -Ltmp3361: - movq %r11, 40(%r12) - .loc 1 1818 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1818:9 -Ltmp3362: - shrl $16, %r13d - movzbl %r13b, %edx - movq %r12, %r13 - movq %rdi, %r12 -Ltmp3363: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3364: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaD_call - movq %r12, %rdi -Ltmp3365: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r12 - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3366: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3367: - .loc 1 1819 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1819:22 - movq 8(%r12), %rax - .loc 1 1818 9 ## /Users/dylan/github/ravi/src/lvm.c:1818:9 -Ltmp3368: - movq 32(%r12), %r9 -Ltmp3369: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3370: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - .loc 1 1819 16 ## /Users/dylan/github/ravi/src/lvm.c:1819:16 - movq %rax, 16(%r10) -Ltmp3371: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1820 13 ## /Users/dylan/github/ravi/src/lvm.c:1820:13 - movl (%r11), %r13d - .loc 1 1820 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1820:17 - addq $4, %r11 -Ltmp3372: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1821 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1821:14 - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3373: - ##DEBUG_VALUE: ra <- %R15 - jmp LBB17_986 -Ltmp3374: -LBB17_989: ## in Loop: Header=BB17_986 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1831 9 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3375: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1831 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3376: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3377: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3378: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3379: - .loc 1 1831 9 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - movq 32(%r12), %r9 -Ltmp3380: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3381: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_990 -Ltmp3382: - .align 4, 0x90 -Ltmp3383: ## Block address taken -LBB17_986: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: io1 <- %R15 - .loc 1 1827 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1827:14 - cmpl $0, 24(%r15) - je LBB17_988 -Ltmp3384: -## BB#987: ## in Loop: Header=BB17_986 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: io1 <- %R15 - .loc 1 1828 11 ## /Users/dylan/github/ravi/src/lvm.c:1828:11 - movq 16(%r15), %rax - movq 24(%r15), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp3385: - .loc 1 1829 17 ## /Users/dylan/github/ravi/src/lvm.c:1829:17 - shrl $16, %r13d - .loc 1 1829 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1829:14 - leaq -131068(%r11,%r13,4), %r11 -Ltmp3386: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_988: ## in Loop: Header=BB17_986 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1831 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3387: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1831 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_989 -Ltmp3388: -LBB17_990: ## in Loop: Header=BB17_986 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1831 9 ## /Users/dylan/github/ravi/src/lvm.c:1831:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3389: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3390: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3391: -LBB17_1007: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1895 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - movq %r11, 40(%r12) - .loc 1 1895 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 -Ltmp3392: - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3393: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaG_traceexec - movq %rbx, %r10 -Ltmp3394: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3395: - .loc 1 1895 9 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - movq 32(%r12), %r9 -Ltmp3396: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %ecx - andl $12, %ecx -Ltmp3397: - ##DEBUG_VALUE: luaV_execute:mask <- %ECX - jmp LBB17_1008 -Ltmp3398: - .align 4, 0x90 -Ltmp3399: ## Block address taken -LBB17_991: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1010 Depth 3 - ## Child Loop BB17_1016 Depth 4 - ## Child Loop BB17_1001 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1834 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1834:17 - movl %r13d, %ebx - shrl $24, %ebx -Ltmp3400: - ##DEBUG_VALUE: n <- %EBX - .loc 1 1835 17 ## /Users/dylan/github/ravi/src/lvm.c:1835:17 - shrl $16, %r13d - movzbl %r13b, %eax -Ltmp3401: - ##DEBUG_VALUE: c <- %EAX - .loc 1 1838 13 ## /Users/dylan/github/ravi/src/lvm.c:1838:13 - testl %ebx, %ebx - jne LBB17_993 -Ltmp3402: -## BB#992: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: c <- %EAX - .loc 1 1838 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1838:25 - movq 16(%r10), %rbx - subq %r15, %rbx - shrq $4, %rbx - .loc 1 1838 47 ## /Users/dylan/github/ravi/src/lvm.c:1838:47 - decl %ebx -Ltmp3403: - ##DEBUG_VALUE: n <- %EBX -LBB17_993: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: c <- %EAX - .loc 1 1839 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1839:13 - testl %eax, %eax - je LBB17_995 -Ltmp3404: -## BB#994: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, -120(%rbp) ## 8-byte Spill -Ltmp3405: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - jmp LBB17_996 - .align 4, 0x90 -LBB17_995: ## in Loop: Header=BB17_991 Depth=2 -Ltmp3406: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r9, -120(%rbp) ## 8-byte Spill - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1841 15 ## /Users/dylan/github/ravi/src/lvm.c:1841:15 -Ltmp3407: - movl (%r11), %eax - addq $4, %r11 -Ltmp3408: - shrl $9, %eax -Ltmp3409: - ##DEBUG_VALUE: c <- %EAX -LBB17_996: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1843 13 ## /Users/dylan/github/ravi/src/lvm.c:1843:13 - movq (%r15), %r13 -Ltmp3410: - ##DEBUG_VALUE: h <- %R13 - .loc 1 1844 22 ## /Users/dylan/github/ravi/src/lvm.c:1844:22 - movq %r13, -136(%rbp) ## 8-byte Spill - imull $50, %eax, %r12d - .loc 1 1844 42 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1844:42 - leal -50(%rbx,%r12), %r14d -Ltmp3411: - ##DEBUG_VALUE: last <- %R14D - .loc 1 1845 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1845:3 - movq -80(%rbp), %rax ## 8-byte Reload - movq %r11, 40(%rax) - .loc 1 1846 13 ## /Users/dylan/github/ravi/src/lvm.c:1846:13 - movzbl 72(%r13), %eax - cmpl $6, %eax - jne LBB17_1009 -Ltmp3412: -## BB#997: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - ##DEBUG_VALUE: last <- %R14D - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 1847 15 ## /Users/dylan/github/ravi/src/lvm.c:1847:15 -Ltmp3413: - cmpl 12(%r13), %r14d - jbe LBB17_999 -Ltmp3414: -## BB#998: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - ##DEBUG_VALUE: last <- %R14D - .loc 1 1848 13 ## /Users/dylan/github/ravi/src/lvm.c:1848:13 - movq -104(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movl %r14d, %edx - callq _luaH_resizearray -Ltmp3415: -LBB17_999: ## %.preheader - ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - ##DEBUG_VALUE: last <- %R14D - .loc 1 1849 11 ## /Users/dylan/github/ravi/src/lvm.c:1849:11 - testl %ebx, %ebx - jle LBB17_1006 -Ltmp3416: -## BB#1000: ## %.lr.ph3524 - ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - ##DEBUG_VALUE: last <- %R14D - movslq %ebx, %rax - leaq 1(%rax), %rbx - shlq $4, %rax - addq %rax, %r15 -Ltmp3417: - .align 4, 0x90 -LBB17_1001: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_991 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - .loc 1 1851 31 ## /Users/dylan/github/ravi/src/lvm.c:1851:31 - movl %r14d, %edx - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp3418: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 1851 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1851:13 - movq %r12, %rdi - movq %r13, %rsi - movq %r15, %rcx - callq _luaH_setint - .loc 1 1852 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1852:13 - testb $64, 8(%r15) - je LBB17_1005 -Ltmp3419: -## BB#1002: ## in Loop: Header=BB17_1001 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - testb $4, 9(%r13) - je LBB17_1005 -Ltmp3420: -## BB#1003: ## in Loop: Header=BB17_1001 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - movq (%r15), %rax - testb $3, 9(%rax) - je LBB17_1005 -Ltmp3421: -## BB#1004: ## in Loop: Header=BB17_1001 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - movq %r12, %rdi - movq %r13, %rsi - callq _luaC_barrierback_ -Ltmp3422: - .align 4, 0x90 -LBB17_1005: ## in Loop: Header=BB17_1001 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - .loc 1 1851 35 ## /Users/dylan/github/ravi/src/lvm.c:1851:35 - decl %r14d -Ltmp3423: - ##DEBUG_VALUE: last <- %R14D - .loc 1 1849 20 ## /Users/dylan/github/ravi/src/lvm.c:1849:20 - decq %rbx - addq $-16, %r15 - cmpq $1, %rbx - jg LBB17_1001 - jmp LBB17_1006 -Ltmp3424: - .align 4, 0x90 -LBB17_1009: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %R13 - ##DEBUG_VALUE: last <- %R14D - movq %r11, -128(%rbp) ## 8-byte Spill - .loc 1 1856 28 ## /Users/dylan/github/ravi/src/lvm.c:1856:28 -Ltmp3425: - addl $-49, %r12d -Ltmp3426: - ##DEBUG_VALUE: i <- %R12D - .loc 1 1857 20 ## /Users/dylan/github/ravi/src/lvm.c:1857:20 - cmpl %r14d, %r12d - jg LBB17_1006 - jmp LBB17_1010 -Ltmp3427: - .align 4, 0x90 -LBB17_1056: ## %._crit_edge.6289 - ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1857 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1857:35 - incl %r12d -Ltmp3428: - ##DEBUG_VALUE: u <- %R12D - ##DEBUG_VALUE: ukey <- %R12D - ##DEBUG_VALUE: ukey <- %R12D - ##DEBUG_VALUE: ukey <- %R12D - ##DEBUG_VALUE: ukey <- %R12D - ##DEBUG_VALUE: ukey <- %R12D - ##DEBUG_VALUE: i <- %R12D - .loc 1 1860 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1860:35 - movb 72(%r13), %al -Ltmp3429: -LBB17_1010: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_991 Depth=2 - ## => This Loop Header: Depth=3 - ## Child Loop BB17_1016 Depth 4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1858 30 ## /Users/dylan/github/ravi/src/lvm.c:1858:30 - movslq %r12d, %rcx - shlq $4, %rcx - leaq (%r15,%rcx), %rbx -Ltmp3430: - ##DEBUG_VALUE: val <- %RBX - ##DEBUG_VALUE: luaV_tointeger_:obj <- %RBX - ##DEBUG_VALUE: luaV_tointeger:obj <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 1860 21 ## /Users/dylan/github/ravi/src/lvm.c:1860:21 - movzbl %al, %eax - .loc 1 1860 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1860:13 - cmpl $4, %eax - je LBB17_1035 -Ltmp3431: -## BB#1011: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - jne LBB17_1055 -## BB#1012: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1862 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1862:21 -Ltmp3432: - cmpl $19, 8(%r15,%rcx) - jne LBB17_1016 -## BB#1013: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1863 19 ## /Users/dylan/github/ravi/src/lvm.c:1863:19 -Ltmp3433: - cmpl 64(%r13), %r12d - jb LBB17_1014 -## BB#1015: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1863 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1863:19 -Ltmp3434: - movl %r12d, %edx - movq (%rbx), %rcx - jmp LBB17_1034 -Ltmp3435: - .align 4, 0x90 -LBB17_1016: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_991 Depth=2 - ## Parent Loop BB17_1010 Depth=3 - ## => This Inner Loop Header: Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp3436: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_1029 -## BB#1017: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - je LBB17_1018 -## BB#1022: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp3437: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_1027 -## BB#1023: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %r13 -Ltmp3438: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r13, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB17_1025 -Ltmp3439: -## BB#1024: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - shrl $24, %ecx - jmp LBB17_1026 -Ltmp3440: - .align 4, 0x90 -LBB17_1025: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq 16(%rdx), %rcx -Ltmp3441: -LBB17_1026: ## in Loop: Header=BB17_1016 Depth=4 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp3442: - .loc 1 129 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %r13, %rbx -Ltmp3443: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - je LBB17_1016 - jmp LBB17_1027 -Ltmp3444: - .align 4, 0x90 -LBB17_1035: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: val <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15,%rcx), %eax -Ltmp3445: - .loc 1 1875 21 ## /Users/dylan/github/ravi/src/lvm.c:1875:21 - cmpl $19, %eax - je LBB17_1039 -Ltmp3446: -## BB#1036: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - jne LBB17_1042 -## BB#1037: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1876 19 ## /Users/dylan/github/ravi/src/lvm.c:1876:19 -Ltmp3447: - cmpl 64(%r13), %r12d - jae LBB17_1038 -Ltmp3448: -LBB17_1014: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1863 19 ## /Users/dylan/github/ravi/src/lvm.c:1863:19 - movq 56(%r13), %rax -Ltmp3449: - ##DEBUG_VALUE: data <- %RAX - .loc 1 1863 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1863:19 - movq (%rbx), %rcx - jmp LBB17_1032 -Ltmp3450: -LBB17_1039: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: val <- %RBX - .loc 1 1879 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1879:19 - cmpl 64(%r13), %r12d - jae LBB17_1041 -Ltmp3451: -## BB#1040: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: val <- %RBX - movq 56(%r13), %rax -Ltmp3452: - ##DEBUG_VALUE: data <- %RAX - .loc 1 1879 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1879:19 - cvtsi2sdq (%rbx), %xmm0 - jmp LBB17_1052 -Ltmp3453: -LBB17_1042: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1592 -## BB#1043: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp3454: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp3455: - cmpl $4, %esi - jne LBB17_1045 -## BB#1044: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_1046 -Ltmp3456: -LBB17_1029: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rcx - jmp LBB17_1030 -Ltmp3457: -LBB17_1018: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp3458: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -144(%rbp) ## 8-byte Spill -Ltmp3459: - ##DEBUG_VALUE: n <- [%RBP+-144] - callq _floor -Ltmp3460: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -144(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_1027 - jp LBB17_1027 -Ltmp3461: -## BB#1019: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_1027 -Ltmp3462: -## BB#1020: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_1027 -## BB#1021: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx -Ltmp3463: -LBB17_1030: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - movq -136(%rbp), %r13 ## 8-byte Reload - .loc 1 1868 21 ## /Users/dylan/github/ravi/src/lvm.c:1868:21 -Ltmp3464: - cmpl 64(%r13), %r12d - jae LBB17_1033 -## BB#1031: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - movq 56(%r13), %rax -LBB17_1032: ## in Loop: Header=BB17_1010 Depth=3 -Ltmp3465: - ##DEBUG_VALUE: data <- %RAX - .loc 1 1868 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1868:21 - movl %r12d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB17_1055 -Ltmp3466: -LBB17_1033: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- 0 - .loc 1 1868 21 ## /Users/dylan/github/ravi/src/lvm.c:1868:21 - movl %r12d, %edx -LBB17_1034: ## in Loop: Header=BB17_1010 Depth=3 - movq -104(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _raviH_set_int - jmp LBB17_1055 -Ltmp3467: -LBB17_1038: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1876 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1876:19 - movl %r12d, %edx - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero - jmp LBB17_1054 -Ltmp3468: -LBB17_1041: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: val <- %RBX - .loc 1 1879 19 ## /Users/dylan/github/ravi/src/lvm.c:1879:19 - movl %r12d, %edx - movq (%rbx), %rax - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1054 -Ltmp3469: -LBB17_1045: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -LBB17_1046: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp3470: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_1592 -## BB#1047: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 -Ltmp3471: - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_1049 -## BB#1048: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1050 -LBB17_1049: ## %select.false8838 - ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movd %rax, %xmm0 -Ltmp3472: -LBB17_1050: ## %select.end8837 - ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1884 21 ## /Users/dylan/github/ravi/src/lvm.c:1884:21 - cmpl 64(%r13), %r12d - jae LBB17_1053 -## BB#1051: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq 56(%r13), %rax -LBB17_1052: ## in Loop: Header=BB17_1010 Depth=3 -Ltmp3473: - ##DEBUG_VALUE: data <- %RAX - .loc 1 1884 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1884:21 - movl %r12d, %ecx - movsd %xmm0, (%rax,%rcx,8) - jmp LBB17_1055 -Ltmp3474: -LBB17_1053: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1884 21 ## /Users/dylan/github/ravi/src/lvm.c:1884:21 - movl %r12d, %edx -LBB17_1054: ## in Loop: Header=BB17_1010 Depth=3 - movq -104(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _raviH_set_float -Ltmp3475: - .align 4, 0x90 -LBB17_1055: ## in Loop: Header=BB17_1010 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1857 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1857:11 - cmpl %r14d, %r12d - jl LBB17_1056 -Ltmp3476: -LBB17_1006: ## %.loopexit745 - ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 1894 22 ## /Users/dylan/github/ravi/src/lvm.c:1894:22 - movq 8(%r12), %rax - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3477: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1894 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1894:16 - movq %rax, 16(%r10) -Ltmp3478: - ##DEBUG_VALUE: luaV_execute:pc <- [%RBP+-128] - movq -128(%rbp), %r11 ## 8-byte Reload -Ltmp3479: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1895 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3480: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1895 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - cmpl $0, -88(%rbp) ## 4-byte Folded Reload - movl $0, %ecx - movq -120(%rbp), %r9 ## 8-byte Reload - jne LBB17_1007 -Ltmp3481: -LBB17_1008: ## in Loop: Header=BB17_991 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 1895 9 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3482: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3483: - ##DEBUG_VALUE: ra <- %R15 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movl %ecx, %r14d -Ltmp3484: - .loc 1 1895 9 ## /Users/dylan/github/ravi/src/lvm.c:1895:9 - leaq (%r8,%rax,8), %rcx - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3485: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp3486: -LBB17_1081: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1907 9 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - movq %r11, 40(%r12) - movq %rdi, %r15 -Ltmp3487: - ##DEBUG_VALUE: luaV_execute:k <- %R15 - .loc 1 1907 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3488: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaG_traceexec - movq %r15, %rdi -Ltmp3489: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rbx, %r10 -Ltmp3490: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3491: - .loc 1 1907 9 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - movq 32(%r12), %r9 -Ltmp3492: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3493: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1082 -Ltmp3494: - .align 4, 0x90 -Ltmp3495: ## Block address taken -LBB17_1057: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1062 Depth 3 - ## Child Loop BB17_1069 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1898 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1898:29 - shrl $16, %r13d - .loc 1 1898 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1898:24 - movq -112(%rbp), %rax ## 8-byte Reload - movq 24(%rax), %rax - .loc 1 1898 27 ## /Users/dylan/github/ravi/src/lvm.c:1898:27 - movq 64(%rax), %rax - .loc 1 1898 20 ## /Users/dylan/github/ravi/src/lvm.c:1898:20 - movq (%rax,%r13,8), %rcx -Ltmp3496: - ##DEBUG_VALUE: getcached:p <- %RCX - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: pushclosure:p <- %RCX - .loc 1 878 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:20 - movq 96(%rcx), %rax -Ltmp3497: - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: x_ <- %RAX - .loc 1 879 9 ## /Users/dylan/github/ravi/src/lvm.c:879:9 - testq %rax, %rax -Ltmp3498: - .loc 1 901 16 ## /Users/dylan/github/ravi/src/lvm.c:901:16 - movl 16(%rcx), %r13d -Ltmp3499: - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: pushclosure:nup <- %R13D - .loc 1 902 22 ## /Users/dylan/github/ravi/src/lvm.c:902:22 - movq 88(%rcx), %rbx -Ltmp3500: - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: pushclosure:uv <- %RBX - je LBB17_1058 -Ltmp3501: -## BB#1059: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: getcached:p <- %RCX - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - .loc 1 883 5 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - testl %r13d, %r13d - jle LBB17_1077 -Ltmp3502: -## BB#1060: ## %.lr.ph.preheader.i - ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: getcached:p <- %RCX - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - movq %rcx, -120(%rbp) ## 8-byte Spill -Ltmp3503: - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - .loc 1 884 19 ## /Users/dylan/github/ravi/src/lvm.c:884:19 - movslq %r13d, %r8 - leaq 18(%rbx), %rdx - xorl %esi, %esi -Ltmp3504: - .align 4, 0x90 -LBB17_1062: ## %.lr.ph.i - ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1057 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - cmpb $0, -1(%rdx) - .loc 1 884 54 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:884:54 - movzbl (%rdx), %edi - .loc 1 884 19 ## /Users/dylan/github/ravi/src/lvm.c:884:19 - je LBB17_1064 -Ltmp3505: -## BB#1063: ## in Loop: Header=BB17_1062 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - .loc 1 884 40 ## /Users/dylan/github/ravi/src/lvm.c:884:40 - shlq $4, %rdi - addq %r9, %rdi - jmp LBB17_1065 -Ltmp3506: - .align 4, 0x90 -LBB17_1064: ## in Loop: Header=BB17_1062 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - .loc 1 884 54 ## /Users/dylan/github/ravi/src/lvm.c:884:54 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%rdi,8), %rdi - .loc 1 884 72 ## /Users/dylan/github/ravi/src/lvm.c:884:72 - movq (%rdi), %rdi -Ltmp3507: -LBB17_1065: ## in Loop: Header=BB17_1062 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: v <- %RDI - .loc 1 885 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:885:11 - movq 32(%rax,%rsi,8), %rcx - .loc 1 885 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:885:27 - cmpq %rdi, (%rcx) - jne LBB17_1066 -Ltmp3508: -## BB#1061: ## in Loop: Header=BB17_1062 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: getcached:p <- [%RBP+-120] - ##DEBUG_VALUE: ncl <- %RAX - ##DEBUG_VALUE: getcached:c <- %RAX - ##DEBUG_VALUE: nup <- %R13D - ##DEBUG_VALUE: uv <- %RBX - ##DEBUG_VALUE: i <- 0 - .loc 1 883 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - incq %rsi - .loc 1 883 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:883:19 -Ltmp3509: - addq $24, %rdx -Ltmp3510: - .loc 1 883 5 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - cmpq %r8, %rsi - jl LBB17_1062 -Ltmp3511: -LBB17_1077: ## %getcached.exit - ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ncl <- %RAX - .loc 1 1905 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1905:11 - movq %rax, (%r15) - movl $70, 8(%r15) - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3512: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3513: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1078 -Ltmp3514: - .align 4, 0x90 -LBB17_1058: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %rcx, -120(%rbp) ## 8-byte Spill -LBB17_1066: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp3515: - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:nup <- %R13D - ##DEBUG_VALUE: pushclosure:uv <- %RBX - .loc 1 1901 11 ## /Users/dylan/github/ravi/src/lvm.c:1901:11 - movq -80(%rbp), %rax ## 8-byte Reload - movq %r11, 40(%rax) - movq %r11, -128(%rbp) ## 8-byte Spill -Ltmp3516: - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - .loc 1 904 19 ## /Users/dylan/github/ravi/src/lvm.c:904:19 - movq -104(%rbp), %rdi ## 8-byte Reload - movl %r13d, %esi - callq _luaF_newLclosure -Ltmp3517: - ##DEBUG_VALUE: pushclosure:ncl <- %RAX - ##DEBUG_VALUE: x_ <- %RAX - movq -120(%rbp), %rcx ## 8-byte Reload -Ltmp3518: - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: pushclosure:p <- %RCX - .loc 1 905 10 ## /Users/dylan/github/ravi/src/lvm.c:905:10 - movq %rcx, 24(%rax) - .loc 1 906 3 ## /Users/dylan/github/ravi/src/lvm.c:906:3 -Ltmp3519: - movq %rax, (%r15) - movl $70, 8(%r15) -Ltmp3520: - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 907 3 ## /Users/dylan/github/ravi/src/lvm.c:907:3 - testl %r13d, %r13d - jle LBB17_1067 -Ltmp3521: -## BB#1068: ## %.lr.ph.i.636.preheader - ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: pushclosure:p <- %RCX - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:nup <- %R13D - ##DEBUG_VALUE: pushclosure:uv <- %RBX - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- %RAX - ##DEBUG_VALUE: pushclosure:i <- 0 - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 908 15 ## /Users/dylan/github/ravi/src/lvm.c:908:15 -Ltmp3522: - leaq 32(%rax), %r14 - movq %rax, -136(%rbp) ## 8-byte Spill -Ltmp3523: - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-136] - addq $18, %rbx -Ltmp3524: - .align 4, 0x90 -LBB17_1069: ## %.lr.ph.i.636 - ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1057 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-136] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 908 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:908:9 - cmpb $0, -1(%rbx) - .loc 1 911 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:911:24 - movzbl (%rbx), %esi -Ltmp3525: - .loc 1 908 9 ## /Users/dylan/github/ravi/src/lvm.c:908:9 - je LBB17_1071 -## BB#1070: ## in Loop: Header=BB17_1069 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-136] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 909 47 ## /Users/dylan/github/ravi/src/lvm.c:909:47 -Ltmp3526: - shlq $4, %rsi - addq %r12, %rsi - .loc 1 909 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:909:24 - movq -104(%rbp), %rdi ## 8-byte Reload - callq _luaF_findupval - jmp LBB17_1072 - .align 4, 0x90 -LBB17_1071: ## in Loop: Header=BB17_1069 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-136] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 911 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:911:24 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%rsi,8), %rax -LBB17_1072: ## in Loop: Header=BB17_1069 Depth=3 - .loc 1 911 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:911:22 - movq %rax, (%r14) -Ltmp3527: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-120] - ##DEBUG_VALUE: p <- [%RBP+-120] - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-136] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 912 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:912:29 - incq 8(%rax) -Ltmp3528: - .loc 1 907 3 ## /Users/dylan/github/ravi/src/lvm.c:907:3 - addq $8, %r14 - addq $24, %rbx - decl %r13d - jne LBB17_1069 -Ltmp3529: -## BB#1073: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -128(%rbp), %r11 ## 8-byte Reload - movq %r12, %r9 - movl -88(%rbp), %r14d ## 4-byte Reload - movq -120(%rbp), %rcx ## 8-byte Reload - movq -136(%rbp), %rax ## 8-byte Reload - jmp LBB17_1074 - .align 4, 0x90 -LBB17_1067: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -128(%rbp), %r11 ## 8-byte Reload - movq %r12, %r9 -LBB17_1074: ## %._crit_edge.i - ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp3530: - ##DEBUG_VALUE: pushclosure:p <- %RCX - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- %RAX - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 915 7 ## /Users/dylan/github/ravi/src/lvm.c:915:7 - testb $4, 9(%rcx) - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3531: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_1075 -Ltmp3532: -## BB#1076: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: pushclosure:p <- %RCX - ##DEBUG_VALUE: p <- %RCX - ##DEBUG_VALUE: pushclosure:L <- [%RBP+-104] - ##DEBUG_VALUE: pushclosure:ncl <- %RAX - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 916 14 ## /Users/dylan/github/ravi/src/lvm.c:916:14 - movq %rax, 96(%rcx) - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3533: - ##DEBUG_VALUE: pushclosure:L <- %R10 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jmp LBB17_1078 -Ltmp3534: - .align 4, 0x90 -LBB17_1075: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3535: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_1078: ## %pushclosure.exit - ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1906 9 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 - movq 24(%r10), %rax -Ltmp3536: - .loc 1 1906 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 - cmpq $0, 24(%rax) - movq -80(%rbp), %r12 ## 8-byte Reload - jle LBB17_1080 -Ltmp3537: -## BB#1079: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1906 9 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 - addq $16, %r15 - movq %r15, 16(%r10) - movq %rdi, %r15 -Ltmp3538: - ##DEBUG_VALUE: luaV_execute:k <- %R15 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3539: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaC_step - movq %r15, %rdi -Ltmp3540: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rbx, %r10 -Ltmp3541: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 - .loc 1 1906 9 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 -Ltmp3542: - movq %r11, 40(%r12) - .loc 1 1906 9 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 -Ltmp3543: - movq 8(%r12), %rax - movq %rax, 16(%r10) -Ltmp3544: - .loc 1 1906 9 ## /Users/dylan/github/ravi/src/lvm.c:1906:9 - movq 32(%r12), %r9 -Ltmp3545: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3546: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D -LBB17_1080: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1907 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3547: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1907 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1081 -Ltmp3548: -LBB17_1082: ## in Loop: Header=BB17_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1907 9 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3549: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3550: - ##DEBUG_VALUE: ra <- %R15 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp3551: - .loc 1 1907 9 ## /Users/dylan/github/ravi/src/lvm.c:1907:9 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3552: -LBB17_1100: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - ##DEBUG_VALUE: j <- 0 - .loc 1 1925 9 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 - movq %r11, 40(%r12) - .loc 1 1925 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 -Ltmp3553: - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3554: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3555: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3556: - .loc 1 1925 9 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 - movq 32(%r12), %r9 -Ltmp3557: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3558: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1101 -Ltmp3559: - .align 4, 0x90 -Ltmp3560: ## Block address taken -LBB17_1083: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1091 Depth 3 - ## Child Loop BB17_1095 Depth 3 - ## Child Loop BB17_1098 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movl %r14d, -88(%rbp) ## 4-byte Spill - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1910 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1910:17 - movl %r13d, %eax - shrl $24, %eax - movq %r12, %rdx - .loc 1 1912 17 ## /Users/dylan/github/ravi/src/lvm.c:1912:17 - movq %r9, %r12 - subq (%rdx), %r12 - shrq $4, %r12 - .loc 1 1912 49 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1912:49 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 24(%rcx), %rcx - .loc 1 1921 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1921:27 -Ltmp3561: - movzbl 10(%rcx), %ecx -Ltmp3562: - .loc 1 1912 43 ## /Users/dylan/github/ravi/src/lvm.c:1912:43 - movl %r12d, %r14d - subl %ecx, %r14d - xorl %ebx, %ebx - .loc 1 1912 62 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1912:62 - decl %r14d -Ltmp3563: - ##DEBUG_VALUE: n <- %R14D - .loc 1 1913 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1913:13 - cmovsl %ebx, %r14d -Ltmp3564: - ##DEBUG_VALUE: b <- %R14D - .loc 1 1915 13 ## /Users/dylan/github/ravi/src/lvm.c:1915:13 - testl %eax, %eax - je LBB17_1085 -Ltmp3565: -## BB#1084: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: n <- %R14D - ##DEBUG_VALUE: b <- %R14D - .loc 1 1910 29 ## /Users/dylan/github/ravi/src/lvm.c:1910:29 - decl %eax -Ltmp3566: - ##DEBUG_VALUE: b <- %EAX - jmp LBB17_1088 -Ltmp3567: - .align 4, 0x90 -LBB17_1085: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: n <- %R14D - ##DEBUG_VALUE: b <- %R14D - .loc 1 1917 11 ## /Users/dylan/github/ravi/src/lvm.c:1917:11 - movq %r11, 40(%rdx) - .loc 1 1917 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1917:11 -Ltmp3568: - movq 48(%r10), %rax - subq 16(%r10), %rax - sarq $4, %rax - movslq %r14d, %r15 - cmpq %r15, %rax - jg LBB17_1087 -Ltmp3569: -## BB#1086: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: n <- %R14D - ##DEBUG_VALUE: b <- %R14D - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1917 11 ## /Users/dylan/github/ravi/src/lvm.c:1917:11 - movq -104(%rbp), %rdi ## 8-byte Reload - movl %r14d, %esi - movq %r11, -128(%rbp) ## 8-byte Spill - movl %ecx, -88(%rbp) ## 4-byte Spill - callq _luaD_growstack - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3570: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movl -88(%rbp), %ecx ## 4-byte Reload - movq -128(%rbp), %r11 ## 8-byte Reload -Ltmp3571: -LBB17_1087: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: n <- %R14D - ##DEBUG_VALUE: b <- %R14D - .loc 1 1917 11 ## /Users/dylan/github/ravi/src/lvm.c:1917:11 - movq -80(%rbp), %rax ## 8-byte Reload - movq 32(%rax), %r9 -Ltmp3572: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp3573: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX - movl %eax, -88(%rbp) ## 4-byte Spill -Ltmp3574: - ##DEBUG_VALUE: luaV_execute:mask <- [%RBP+-88] - .loc 1 1918 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1918:16 - shrl $9, %r13d - andl $127, %r13d - shlq $4, %r13 - addq %r9, %r13 -Ltmp3575: - ##DEBUG_VALUE: ra <- %R13 - .loc 1 1919 23 ## /Users/dylan/github/ravi/src/lvm.c:1919:23 - shlq $4, %r15 - addq %r13, %r15 - .loc 1 1919 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1919:18 - movq %r15, 16(%r10) - movl %r14d, %eax - movq %r13, %r15 -Ltmp3576: - ##DEBUG_VALUE: ra <- %R15 -LBB17_1088: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: n <- %R14D - ##DEBUG_VALUE: b <- %R14D - ##DEBUG_VALUE: j <- 0 - movq %r9, -120(%rbp) ## 8-byte Spill - .loc 1 1921 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1921:27 -Ltmp3577: - testl %eax, %eax - jle LBB17_1092 -Ltmp3578: -## BB#1089: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - testl %r14d, %r14d - jle LBB17_1092 -Ltmp3579: -## BB#1090: ## %.lr.ph - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1922 11 ## /Users/dylan/github/ravi/src/lvm.c:1922:11 - movslq %r14d, %r8 -Ltmp3580: - .loc 1 1921 27 ## /Users/dylan/github/ravi/src/lvm.c:1921:27 - movslq %eax, %r9 - decl %r12d - xorl %ebx, %ebx - subl %ecx, %r12d - cmovsl %ebx, %r12d - movl %r12d, %edi - shlq $4, %rdi - movq -120(%rbp), %rsi ## 8-byte Reload - subq %rdi, %rsi - movq %r15, %rdi -Ltmp3581: - .align 4, 0x90 -LBB17_1091: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1083 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1922 11 ## /Users/dylan/github/ravi/src/lvm.c:1922:11 - movq (%rsi), %rcx - movq 8(%rsi), %rdx - movq %rdx, 8(%rdi) - movq %rcx, (%rdi) -Ltmp3582: - .loc 1 1921 27 ## /Users/dylan/github/ravi/src/lvm.c:1921:27 - incq %rbx - cmpq %r9, %rbx - jge LBB17_1092 -Ltmp3583: -## BB#1593: ## in Loop: Header=BB17_1091 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - addq $16, %rdi - addq $16, %rsi - cmpq %r8, %rbx - jl LBB17_1091 -Ltmp3584: -LBB17_1092: ## %.critedge.preheader - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - .loc 1 1923 9 ## /Users/dylan/github/ravi/src/lvm.c:1923:9 - movl %eax, %edx - subl %ebx, %edx -Ltmp3585: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %r12 ## 8-byte Reload - jle LBB17_1099 -Ltmp3586: -## BB#1093: ## %.critedge.preheader3529 - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - .loc 1 1924 11 ## /Users/dylan/github/ravi/src/lvm.c:1924:11 - movslq %ebx, %rcx - leal -1(%rax), %esi - subl %ebx, %esi - testb $7, %dl - je LBB17_1096 -Ltmp3587: -## BB#1094: ## %.critedge.prol.preheader - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - movslq %ebx, %rdi - shlq $4, %rdi - leaq 8(%r15,%rdi), %rdi - andl $7, %edx - negl %edx -Ltmp3588: - .align 4, 0x90 -LBB17_1095: ## %.critedge.prol - ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1083 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - movl $0, (%rdi) -Ltmp3589: - .loc 1 1923 9 ## /Users/dylan/github/ravi/src/lvm.c:1923:9 - incq %rcx - addq $16, %rdi - incl %edx - jne LBB17_1095 -Ltmp3590: -LBB17_1096: ## %.critedge.preheader3529.split - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - .loc 1 1924 11 ## /Users/dylan/github/ravi/src/lvm.c:1924:11 - cmpl $7, %esi - jb LBB17_1099 -Ltmp3591: -## BB#1097: ## %.critedge.preheader3529.split.split - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - subl %ecx, %eax - shlq $4, %rcx - leaq 120(%r15,%rcx), %rcx -Ltmp3592: - .align 4, 0x90 -LBB17_1098: ## %.critedge - ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1083 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - movl $0, -112(%rcx) - movl $0, -96(%rcx) - movl $0, -80(%rcx) - movl $0, -64(%rcx) - movl $0, -48(%rcx) - movl $0, -32(%rcx) - movl $0, -16(%rcx) - movl $0, (%rcx) -Ltmp3593: - .loc 1 1923 9 ## /Users/dylan/github/ravi/src/lvm.c:1923:9 - subq $-128, %rcx - addl $-8, %eax - jne LBB17_1098 -Ltmp3594: -LBB17_1099: ## %.critedge._crit_edge - ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: j <- 0 - .loc 1 1925 9 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3595: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1925 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 - cmpl $0, -88(%rbp) ## 4-byte Folded Reload - movl $0, %r14d - movq -120(%rbp), %r9 ## 8-byte Reload - jne LBB17_1100 -Ltmp3596: -LBB17_1101: ## in Loop: Header=BB17_1083 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - ##DEBUG_VALUE: j <- 0 - .loc 1 1925 9 ## /Users/dylan/github/ravi/src/lvm.c:1925:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3597: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3598: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3599: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp3600: -LBB17_1103: ## in Loop: Header=BB17_1102 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1929 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3601: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1929 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3602: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3603: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3604: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3605: - .loc 1 1929 9 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - movq 32(%r12), %r9 -Ltmp3606: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3607: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1104 -Ltmp3608: - .align 4, 0x90 -Ltmp3609: ## Block address taken -LBB17_1102: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1929 9 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3610: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1929 9 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1103 -Ltmp3611: -LBB17_1104: ## in Loop: Header=BB17_1102 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1929 9 ## /Users/dylan/github/ravi/src/lvm.c:1929:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3612: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3613: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3614: -LBB17_1106: ## in Loop: Header=BB17_1105 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1935 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3615: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1935 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3616: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3617: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3618: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3619: - .loc 1 1935 9 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - movq 32(%r12), %r9 -Ltmp3620: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3621: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1107 -Ltmp3622: - .align 4, 0x90 -Ltmp3623: ## Block address taken -LBB17_1105: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1932 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1932:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3624: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1933 22 ## /Users/dylan/github/ravi/src/lvm.c:1933:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp3625: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 1934 9 ## /Users/dylan/github/ravi/src/lvm.c:1934:9 - movq (%rcx), %rax - andq (%rdx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp3626: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1935 9 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3627: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1935 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1106 -Ltmp3628: -LBB17_1107: ## in Loop: Header=BB17_1105 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1935 9 ## /Users/dylan/github/ravi/src/lvm.c:1935:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3629: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3630: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3631: -LBB17_1109: ## in Loop: Header=BB17_1108 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1941 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3632: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1941 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3633: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3634: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3635: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3636: - .loc 1 1941 9 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - movq 32(%r12), %r9 -Ltmp3637: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3638: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1110 -Ltmp3639: - .align 4, 0x90 -Ltmp3640: ## Block address taken -LBB17_1108: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1938 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1938:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3641: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1939 22 ## /Users/dylan/github/ravi/src/lvm.c:1939:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp3642: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 1940 9 ## /Users/dylan/github/ravi/src/lvm.c:1940:9 - movq (%rcx), %rax - orq (%rdx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp3643: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1941 9 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3644: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1941 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1109 -Ltmp3645: -LBB17_1110: ## in Loop: Header=BB17_1108 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1941 9 ## /Users/dylan/github/ravi/src/lvm.c:1941:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3646: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3647: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3648: -LBB17_1112: ## in Loop: Header=BB17_1111 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1947 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3649: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1947 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3650: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3651: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3652: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3653: - .loc 1 1947 9 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - movq 32(%r12), %r9 -Ltmp3654: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3655: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1113 -Ltmp3656: - .align 4, 0x90 -Ltmp3657: ## Block address taken -LBB17_1111: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1944 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1944:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3658: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1945 22 ## /Users/dylan/github/ravi/src/lvm.c:1945:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp3659: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 1946 9 ## /Users/dylan/github/ravi/src/lvm.c:1946:9 - movq (%rcx), %rax - xorq (%rdx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp3660: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1947 9 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3661: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1947 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1112 -Ltmp3662: -LBB17_1113: ## in Loop: Header=BB17_1111 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1947 9 ## /Users/dylan/github/ravi/src/lvm.c:1947:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3663: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3664: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3665: -LBB17_1118: ## in Loop: Header=BB17_1114 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1953 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3666: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1953 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3667: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3668: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3669: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3670: - .loc 1 1953 9 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - movq 32(%r12), %r9 -Ltmp3671: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3672: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1119 -Ltmp3673: - .align 4, 0x90 -Ltmp3674: ## Block address taken -LBB17_1114: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1950 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1950:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3675: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1951 22 ## /Users/dylan/github/ravi/src/lvm.c:1951:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3676: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 1952 9 ## /Users/dylan/github/ravi/src/lvm.c:1952:9 - movq (%rdx), %rdx -Ltmp3677: - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - movq (%rsi), %rax -Ltmp3678: - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 861 7 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - js LBB17_1115 -Ltmp3679: -## BB#1116: ## in Loop: Header=BB17_1114 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - movb %al, %cl - shlq %cl, %rdx -Ltmp3680: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - xorl %ecx, %ecx - .loc 1 866 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp3681: - cmpq $63, %rax -Ltmp3682: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovleq %rdx, %rcx - jmp LBB17_1117 -Ltmp3683: - .align 4, 0x90 -LBB17_1115: ## in Loop: Header=BB17_1114 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 863 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movl %eax, %ecx - negl %ecx - shrq %cl, %rdx -Ltmp3684: - xorl %ecx, %ecx - .loc 1 862 11 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - cmpq $-63, %rax -Ltmp3685: - .loc 1 862 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovgeq %rdx, %rcx -Ltmp3686: -LBB17_1117: ## %luaV_shiftl.exit640 - ## in Loop: Header=BB17_1114 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1952 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1952:9 - movq %rcx, (%r15) - movl $19, 8(%r15) -Ltmp3687: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1953 9 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3688: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1953 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1118 -Ltmp3689: -LBB17_1119: ## in Loop: Header=BB17_1114 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1953 9 ## /Users/dylan/github/ravi/src/lvm.c:1953:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3690: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3691: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3692: -LBB17_1124: ## in Loop: Header=BB17_1120 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1960 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3693: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1960 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3694: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3695: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3696: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3697: - .loc 1 1960 9 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movq 32(%r12), %r9 -Ltmp3698: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3699: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1125 -Ltmp3700: - .align 4, 0x90 -Ltmp3701: ## Block address taken -LBB17_1120: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1956 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1956:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3702: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1957 22 ## /Users/dylan/github/ravi/src/lvm.c:1957:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %ecx - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3703: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 1958 26 ## /Users/dylan/github/ravi/src/lvm.c:1958:26 - movq (%rsi), %rax -Ltmp3704: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 1959 9 ## /Users/dylan/github/ravi/src/lvm.c:1959:9 - movq (%rdx), %rdx -Ltmp3705: - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - .loc 1 861 7 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - jle LBB17_1122 -Ltmp3706: -## BB#1121: ## in Loop: Header=BB17_1120 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: ic <- %RAX - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - .loc 1 863 17 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movb %al, %cl - shrq %cl, %rdx -Ltmp3707: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - xorl %ecx, %ecx - .loc 1 862 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:11 -Ltmp3708: - cmpq $63, %rax -Ltmp3709: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovleq %rdx, %rcx - jmp LBB17_1123 -Ltmp3710: - .align 4, 0x90 -LBB17_1122: ## in Loop: Header=BB17_1120 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: ic <- %RAX - ##DEBUG_VALUE: luaV_shiftl:x <- %RDX - .loc 1 1959 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1959:9 - movl %eax, %ecx - negl %ecx - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 -Ltmp3711: - shlq %cl, %rdx -Ltmp3712: - .loc 1 1959 9 ## /Users/dylan/github/ravi/src/lvm.c:1959:9 - xorl %ecx, %ecx - .loc 1 866 11 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp3713: - cmpq $-63, %rax -Ltmp3714: - .loc 1 866 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovgeq %rdx, %rcx -Ltmp3715: -LBB17_1123: ## %luaV_shiftl.exit643 - ## in Loop: Header=BB17_1120 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1959 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1959:9 - movq %rcx, (%r15) - movl $19, 8(%r15) -Ltmp3716: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1960 9 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3717: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1960 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1124 -Ltmp3718: -LBB17_1125: ## in Loop: Header=BB17_1120 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1960 9 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3719: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3720: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3721: -LBB17_1127: ## in Loop: Header=BB17_1126 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1982 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3722: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1982 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3723: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3724: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3725: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3726: - .loc 1 1982 9 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - movq 32(%r12), %r9 -Ltmp3727: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3728: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1128 -Ltmp3729: - .align 4, 0x90 -Ltmp3730: ## Block address taken -LBB17_1126: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1979 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1979:22 - shrl $24, %r13d - .loc 1 1980 26 ## /Users/dylan/github/ravi/src/lvm.c:1980:26 - shlq $4, %r13 - movq (%r9,%r13), %rax -Ltmp3731: - ##DEBUG_VALUE: ib <- %RAX - .loc 1 1981 9 ## /Users/dylan/github/ravi/src/lvm.c:1981:9 - notq %rax -Ltmp3732: - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp3733: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 1982 9 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3734: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1982 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1127 -Ltmp3735: -LBB17_1128: ## in Loop: Header=BB17_1126 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1982 9 ## /Users/dylan/github/ravi/src/lvm.c:1982:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3736: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3737: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3738: -LBB17_1135: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1992 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3739: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1992 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3740: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3741: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3742: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3743: - .loc 1 1992 9 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - movq 32(%r12), %r9 -Ltmp3744: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3745: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1136 -Ltmp3746: - .align 4, 0x90 -Ltmp3747: ## Block address taken -LBB17_1129: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1985 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1985:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3748: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1986 22 ## /Users/dylan/github/ravi/src/lvm.c:1986:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3749: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 1987 23 ## /Users/dylan/github/ravi/src/lvm.c:1987:23 - movq (%rdx), %rax - .loc 1 1987 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1987:34 - cmpq (%rsi), %rax - sete %al - movzbl %al, %eax - .loc 1 1988 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1988:23 -Ltmp3750: - shrl $9, %r13d - andl $127, %r13d - .loc 1 1988 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1988:20 - cmpl %r13d, %eax - jne LBB17_1130 -Ltmp3751: -## BB#1131: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 1991 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1991:11 - movl (%r11), %ebx -Ltmp3752: - ##DEBUG_VALUE: i <- %EBX - .loc 1 1991 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1991:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 1991 11 ## /Users/dylan/github/ravi/src/lvm.c:1991:11 -Ltmp3753: - andl $127, %eax - je LBB17_1133 -Ltmp3754: -## BB#1132: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3755: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3756: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3757: -LBB17_1133: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 1991 11 ## /Users/dylan/github/ravi/src/lvm.c:1991:11 - shrl $16, %ebx -Ltmp3758: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3759: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3760: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3761: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1134 -Ltmp3762: - .align 4, 0x90 -LBB17_1130: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1989 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1989:13 - addq $4, %r11 -Ltmp3763: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1134: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1992 9 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3764: - ##DEBUG_VALUE: i <- %R13D - .loc 1 1992 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1135 -Ltmp3765: -LBB17_1136: ## in Loop: Header=BB17_1129 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 1992 9 ## /Users/dylan/github/ravi/src/lvm.c:1992:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3766: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3767: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3768: -LBB17_1143: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2002 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3769: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2002 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3770: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3771: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3772: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3773: - .loc 1 2002 9 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - movq 32(%r12), %r9 -Ltmp3774: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3775: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1144 -Ltmp3776: - .align 4, 0x90 -Ltmp3777: ## Block address taken -LBB17_1137: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1995 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1995:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3778: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 1996 22 ## /Users/dylan/github/ravi/src/lvm.c:1996:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3779: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 1997 23 ## /Users/dylan/github/ravi/src/lvm.c:1997:23 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 1997 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1997:36 - cmpeqsd (%rsi), %xmm0 - movd %xmm0, %rax - andl $1, %eax - .loc 1 1998 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1998:23 -Ltmp3780: - shrl $9, %r13d - andl $127, %r13d - .loc 1 1998 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1998:20 - cmpl %r13d, %eax - jne LBB17_1138 -Ltmp3781: -## BB#1139: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2001 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2001:11 - movl (%r11), %ebx -Ltmp3782: - ##DEBUG_VALUE: i <- %EBX - .loc 1 2001 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2001:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 2001 11 ## /Users/dylan/github/ravi/src/lvm.c:2001:11 -Ltmp3783: - andl $127, %eax - je LBB17_1141 -Ltmp3784: -## BB#1140: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3785: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3786: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3787: -LBB17_1141: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 2001 11 ## /Users/dylan/github/ravi/src/lvm.c:2001:11 - shrl $16, %ebx -Ltmp3788: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3789: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3790: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3791: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1142 -Ltmp3792: - .align 4, 0x90 -LBB17_1138: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1999 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1999:13 - addq $4, %r11 -Ltmp3793: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1142: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2002 9 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3794: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2002 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1143 -Ltmp3795: -LBB17_1144: ## in Loop: Header=BB17_1137 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2002 9 ## /Users/dylan/github/ravi/src/lvm.c:2002:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3796: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3797: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3798: -LBB17_1151: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2012 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3799: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2012 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3800: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3801: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3802: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3803: - .loc 1 2012 9 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - movq 32(%r12), %r9 -Ltmp3804: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3805: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1152 -Ltmp3806: - .align 4, 0x90 -Ltmp3807: ## Block address taken -LBB17_1145: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2005 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2005:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3808: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2006 22 ## /Users/dylan/github/ravi/src/lvm.c:2006:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3809: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2007 25 ## /Users/dylan/github/ravi/src/lvm.c:2007:25 - movq (%rdx), %rax - .loc 1 2007 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2007:36 - cmpq (%rsi), %rax - setl %al - movzbl %al, %eax - .loc 1 2008 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2008:25 -Ltmp3810: - shrl $9, %r13d - andl $127, %r13d - .loc 1 2008 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2008:22 - cmpl %r13d, %eax - jne LBB17_1146 -Ltmp3811: -## BB#1147: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2011 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2011:11 - movl (%r11), %ebx -Ltmp3812: - ##DEBUG_VALUE: i <- %EBX - .loc 1 2011 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2011:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 2011 11 ## /Users/dylan/github/ravi/src/lvm.c:2011:11 -Ltmp3813: - andl $127, %eax - je LBB17_1149 -Ltmp3814: -## BB#1148: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3815: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3816: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3817: -LBB17_1149: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 2011 11 ## /Users/dylan/github/ravi/src/lvm.c:2011:11 - shrl $16, %ebx -Ltmp3818: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3819: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3820: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3821: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1150 -Ltmp3822: - .align 4, 0x90 -LBB17_1146: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2009 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2009:13 - addq $4, %r11 -Ltmp3823: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1150: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2012 9 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3824: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2012 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1151 -Ltmp3825: -LBB17_1152: ## in Loop: Header=BB17_1145 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2012 9 ## /Users/dylan/github/ravi/src/lvm.c:2012:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3826: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3827: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3828: -LBB17_1159: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2022 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3829: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2022 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3830: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3831: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3832: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3833: - .loc 1 2022 9 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - movq 32(%r12), %r9 -Ltmp3834: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3835: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1160 -Ltmp3836: - .align 4, 0x90 -Ltmp3837: ## Block address taken -LBB17_1153: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2015 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2015:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3838: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2016 22 ## /Users/dylan/github/ravi/src/lvm.c:2016:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3839: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2017 40 ## /Users/dylan/github/ravi/src/lvm.c:2017:40 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2017 38 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2017:38 - ucomisd (%rdx), %xmm0 - seta %al - movzbl %al, %eax - .loc 1 2018 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2018:25 -Ltmp3840: - shrl $9, %r13d - andl $127, %r13d - .loc 1 2018 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2018:22 - cmpl %r13d, %eax - jne LBB17_1154 -Ltmp3841: -## BB#1155: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2021 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2021:11 - movl (%r11), %ebx -Ltmp3842: - ##DEBUG_VALUE: i <- %EBX - .loc 1 2021 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2021:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 2021 11 ## /Users/dylan/github/ravi/src/lvm.c:2021:11 -Ltmp3843: - andl $127, %eax - je LBB17_1157 -Ltmp3844: -## BB#1156: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3845: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3846: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3847: -LBB17_1157: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 2021 11 ## /Users/dylan/github/ravi/src/lvm.c:2021:11 - shrl $16, %ebx -Ltmp3848: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3849: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3850: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3851: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1158 -Ltmp3852: - .align 4, 0x90 -LBB17_1154: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2019 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2019:13 - addq $4, %r11 -Ltmp3853: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1158: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2022 9 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3854: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2022 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1159 -Ltmp3855: -LBB17_1160: ## in Loop: Header=BB17_1153 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2022 9 ## /Users/dylan/github/ravi/src/lvm.c:2022:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3856: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3857: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3858: -LBB17_1167: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2032 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3859: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2032 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3860: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3861: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3862: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3863: - .loc 1 2032 9 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - movq 32(%r12), %r9 -Ltmp3864: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3865: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1168 -Ltmp3866: - .align 4, 0x90 -Ltmp3867: ## Block address taken -LBB17_1161: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2025 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2025:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3868: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2026 22 ## /Users/dylan/github/ravi/src/lvm.c:2026:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3869: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2027 27 ## /Users/dylan/github/ravi/src/lvm.c:2027:27 - movq (%rdx), %rax - .loc 1 2027 38 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2027:38 - cmpq (%rsi), %rax - setle %al - movzbl %al, %eax - .loc 1 2028 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2028:27 -Ltmp3870: - shrl $9, %r13d - andl $127, %r13d - .loc 1 2028 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2028:24 - cmpl %r13d, %eax - jne LBB17_1162 -Ltmp3871: -## BB#1163: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2031 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2031:11 - movl (%r11), %ebx -Ltmp3872: - ##DEBUG_VALUE: i <- %EBX - .loc 1 2031 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2031:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 2031 11 ## /Users/dylan/github/ravi/src/lvm.c:2031:11 -Ltmp3873: - andl $127, %eax - je LBB17_1165 -Ltmp3874: -## BB#1164: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3875: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3876: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3877: -LBB17_1165: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 2031 11 ## /Users/dylan/github/ravi/src/lvm.c:2031:11 - shrl $16, %ebx -Ltmp3878: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3879: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3880: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3881: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1166 -Ltmp3882: - .align 4, 0x90 -LBB17_1162: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2029 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2029:13 - addq $4, %r11 -Ltmp3883: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1166: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2032 9 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3884: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2032 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1167 -Ltmp3885: -LBB17_1168: ## in Loop: Header=BB17_1161 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2032 9 ## /Users/dylan/github/ravi/src/lvm.c:2032:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3886: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3887: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3888: -LBB17_1175: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2042 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3889: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2042 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3890: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3891: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3892: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3893: - .loc 1 2042 9 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - movq 32(%r12), %r9 -Ltmp3894: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3895: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1176 -Ltmp3896: - .align 4, 0x90 -Ltmp3897: ## Block address taken -LBB17_1169: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2035 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2035:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp3898: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2036 22 ## /Users/dylan/github/ravi/src/lvm.c:2036:22 - movl %r13d, %eax - shrl $16, %eax - movzbl %al, %ecx - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movq %rcx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %cl, %cl - cmovsq %rax, %rsi -Ltmp3899: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2037 43 ## /Users/dylan/github/ravi/src/lvm.c:2037:43 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2037 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2037:40 - ucomisd (%rdx), %xmm0 - setae %al - movzbl %al, %eax - .loc 1 2038 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2038:27 -Ltmp3900: - shrl $9, %r13d - andl $127, %r13d - .loc 1 2038 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2038:24 - cmpl %r13d, %eax - jne LBB17_1170 -Ltmp3901: -## BB#1171: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2041 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2041:11 - movl (%r11), %ebx -Ltmp3902: - ##DEBUG_VALUE: i <- %EBX - .loc 1 2041 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2041:11 - movl %ebx, %eax - shrl $9, %eax - .loc 1 2041 11 ## /Users/dylan/github/ravi/src/lvm.c:2041:11 -Ltmp3903: - andl $127, %eax - je LBB17_1173 -Ltmp3904: -## BB#1172: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - movq 32(%r12), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r12 - movq %r10, %r13 -Ltmp3905: - ##DEBUG_VALUE: luaV_execute:L <- %R13 - movq %r8, %r15 - callq _luaF_close - movq %r15, %r8 - movq %r13, %r10 -Ltmp3906: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r12, %r9 - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r14, %r11 -Ltmp3907: -LBB17_1173: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %EBX - .loc 1 2041 11 ## /Users/dylan/github/ravi/src/lvm.c:2041:11 - shrl $16, %ebx -Ltmp3908: - leaq -131064(%r11,%rbx,4), %r11 -Ltmp3909: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3910: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3911: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1174 -Ltmp3912: - .align 4, 0x90 -LBB17_1170: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2039 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2039:13 - addq $4, %r11 -Ltmp3913: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 -LBB17_1174: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2042 9 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3914: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2042 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1175 -Ltmp3915: -LBB17_1176: ## in Loop: Header=BB17_1169 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2042 9 ## /Users/dylan/github/ravi/src/lvm.c:2042:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3916: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3917: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3918: -LBB17_1182: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2054 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp3919: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2054 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3920: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp3921: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3922: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3923: - .loc 1 2054 9 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - movq 32(%r12), %r9 -Ltmp3924: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3925: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1183 -Ltmp3926: - .align 4, 0x90 -Ltmp3927: ## Block address taken -LBB17_1177: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl $1, %ecx - .loc 1 2046 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2046:31 - cmpl $87, %eax - je LBB17_1179 -Ltmp3928: -## BB#1178: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2046 59 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2046:59 - movq 32(%r15), %rcx -Ltmp3929: -LBB17_1179: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: step <- %RCX - .loc 1 2047 38 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2047:38 - addq (%r15), %rcx -Ltmp3930: - ##DEBUG_VALUE: idx <- %RCX - .loc 1 2049 17 ## /Users/dylan/github/ravi/src/lvm.c:2049:17 - cmpq 16(%r15), %rcx - jg LBB17_1181 -Ltmp3931: -## BB#1180: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: idx <- %RCX - .loc 1 2050 17 ## /Users/dylan/github/ravi/src/lvm.c:2050:17 - shrl $16, %r13d - .loc 1 2050 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2050:14 - leaq -131068(%r11,%r13,4), %r11 -Ltmp3932: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2051 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2051:11 - movq %rcx, (%r15) -Ltmp3933: - .loc 1 2052 11 ## /Users/dylan/github/ravi/src/lvm.c:2052:11 - movq %rcx, 48(%r15) - movl $19, 56(%r15) -Ltmp3934: -LBB17_1181: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2054 9 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp3935: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2054 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1182 -Ltmp3936: -LBB17_1183: ## in Loop: Header=BB17_1177 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2054 9 ## /Users/dylan/github/ravi/src/lvm.c:2054:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3937: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3938: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp3939: -LBB17_1185: ## in Loop: Header=BB17_1184 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: initv <- %RAX - .loc 1 2063 75 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2063:75 - movq 32(%r15), %rcx - jmp LBB17_1186 -Ltmp3940: -LBB17_1187: ## in Loop: Header=BB17_1184 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - movq %rdx, %r15 - .loc 1 2067 9 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 -Ltmp3941: - movq %rbx, 40(%r15) - .loc 1 2067 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 -Ltmp3942: - movq %r10, %rdi -Ltmp3943: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r8, %r14 - callq _luaG_traceexec - movq %r14, %r8 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp3944: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2067 9 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 - movq 32(%r15), %r9 -Ltmp3945: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r15, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3946: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1188 -Ltmp3947: - .align 4, 0x90 -Ltmp3948: ## Block address taken -LBB17_1184: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %rdx - movq %rdi, %r12 -Ltmp3949: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2060 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2060:25 - cmpl $89, %eax - .loc 1 2062 29 ## /Users/dylan/github/ravi/src/lvm.c:2062:29 - movq (%r15), %rax -Ltmp3950: - ##DEBUG_VALUE: initv <- %RAX - movl $1, %ecx - jne LBB17_1185 -Ltmp3951: -LBB17_1186: ## in Loop: Header=BB17_1184 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: initv <- %RAX - ##DEBUG_VALUE: istep <- %RCX - .loc 1 2064 9 ## /Users/dylan/github/ravi/src/lvm.c:2064:9 - movl $19, 24(%r15) -Ltmp3952: - .loc 1 2065 9 ## /Users/dylan/github/ravi/src/lvm.c:2065:9 - subq %rcx, %rax -Ltmp3953: - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp3954: - .loc 1 2066 15 ## /Users/dylan/github/ravi/src/lvm.c:2066:15 - shrl $16, %r13d - .loc 1 2067 9 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 -Ltmp3955: - leaq -131064(%r11,%r13,4), %rbx -Ltmp3956: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl -131068(%r11,%r13,4), %r13d -Ltmp3957: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2067 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1187 -Ltmp3958: -LBB17_1188: ## in Loop: Header=BB17_1184 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - .loc 1 2067 9 ## /Users/dylan/github/ravi/src/lvm.c:2067:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3959: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3960: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp3961: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq %r12, %rdi -Ltmp3962: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdx, %r12 - jmpq *(%rcx) -Ltmp3963: -LBB17_1192: ## in Loop: Header=BB17_1189 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2075 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 - movq %r11, 40(%r12) - .loc 1 2075 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 -Ltmp3964: - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3965: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3966: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3967: - .loc 1 2075 9 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 - movq 32(%r12), %r9 -Ltmp3968: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3969: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1193 -Ltmp3970: - .align 4, 0x90 -Ltmp3971: ## Block address taken -LBB17_1189: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, %rax - movl %r14d, %r12d - .loc 1 2071 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2071:9 - movq %r11, 40(%rax) - .loc 1 2072 13 ## /Users/dylan/github/ravi/src/lvm.c:2072:13 - movl $3, %esi - xorl %edx, %edx - movq %r10, %rdi - movq %r11, %r14 - movq %r9, %r13 - movq %r10, %rbx -Ltmp3972: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _raviH_new - movq %rbx, %r10 -Ltmp3973: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r13, %r9 -Ltmp3974: - ##DEBUG_VALUE: x_ <- %RAX - ##DEBUG_VALUE: t <- %RAX - .loc 1 2073 9 ## /Users/dylan/github/ravi/src/lvm.c:2073:9 - movq %rax, (%r15) - movl $85, 8(%r15) -Ltmp3975: - .loc 1 2074 9 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 - movq 24(%r10), %rax -Ltmp3976: - .loc 1 2074 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 - cmpq $0, 24(%rax) - jle LBB17_1191 -Ltmp3977: -## BB#1190: ## in Loop: Header=BB17_1189 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2074 9 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 - addq $16, %r15 - movq %r15, 16(%r10) - movq %r10, %rdi - movq %r10, %rbx -Ltmp3978: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaC_step - movq %rbx, %r10 -Ltmp3979: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %rcx ## 8-byte Reload - .loc 1 2074 9 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 -Ltmp3980: - movq %r14, 40(%rcx) - .loc 1 2074 9 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 -Ltmp3981: - movq 8(%rcx), %rax - movq %rax, 16(%r10) -Ltmp3982: - .loc 1 2074 9 ## /Users/dylan/github/ravi/src/lvm.c:2074:9 - movq 32(%rcx), %r9 -Ltmp3983: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r12d - andl $12, %r12d -Ltmp3984: - ##DEBUG_VALUE: luaV_execute:mask <- %R12D -LBB17_1191: ## in Loop: Header=BB17_1189 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2075 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 - movl (%r14), %r13d - addq $4, %r14 -Ltmp3985: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2075 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 - testl %r12d, %r12d - movq %r14, %r11 -Ltmp3986: - .loc 1 2072 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2072:13 - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp3987: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_1192 -Ltmp3988: -LBB17_1193: ## in Loop: Header=BB17_1189 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2075 9 ## /Users/dylan/github/ravi/src/lvm.c:2075:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp3989: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp3990: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp3991: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp3992: -LBB17_1197: ## in Loop: Header=BB17_1194 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2083 9 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 - movq %r11, 40(%r12) - .loc 1 2083 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 -Ltmp3993: - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp3994: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %rbx, %r10 -Ltmp3995: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp3996: - .loc 1 2083 9 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 - movq 32(%r12), %r9 -Ltmp3997: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp3998: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1198 -Ltmp3999: - .align 4, 0x90 -Ltmp4000: ## Block address taken -LBB17_1194: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 2079 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2079:9 - movq %r11, 40(%r12) - .loc 1 2080 13 ## /Users/dylan/github/ravi/src/lvm.c:2080:13 - movl $4, %esi - xorl %edx, %edx - movq %r10, %rdi - movq %r11, %rbx - movq %r9, %r13 - movq %r12, %r14 - movq %r10, %r12 -Ltmp4001: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - callq _raviH_new - movq %r12, %r10 -Ltmp4002: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r12 - movq %r13, %r9 -Ltmp4003: - ##DEBUG_VALUE: x_ <- %RAX - ##DEBUG_VALUE: t <- %RAX - .loc 1 2081 9 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - movq %rax, (%r15) - movl $101, 8(%r15) -Ltmp4004: - .loc 1 2082 9 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 - movq 24(%r10), %rax -Ltmp4005: - .loc 1 2082 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 - cmpq $0, 24(%rax) - movl -88(%rbp), %eax ## 4-byte Reload - jle LBB17_1196 -Ltmp4006: -## BB#1195: ## in Loop: Header=BB17_1194 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2082 9 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 - addq $16, %r15 - movq %r15, 16(%r10) - movq %r10, %rdi - movq %r10, %r14 -Ltmp4007: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaC_step - movq %r14, %r10 -Ltmp4008: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2082 9 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 - movq %rbx, 40(%r12) - .loc 1 2082 9 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 -Ltmp4009: - movq 8(%r12), %rax - movq %rax, 16(%r10) -Ltmp4010: - .loc 1 2082 9 ## /Users/dylan/github/ravi/src/lvm.c:2082:9 - movq 32(%r12), %r9 -Ltmp4011: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %eax - andl $12, %eax -Ltmp4012: - ##DEBUG_VALUE: luaV_execute:mask <- %EAX -LBB17_1196: ## in Loop: Header=BB17_1194 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2083 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 - movl (%rbx), %r13d - addq $4, %rbx -Ltmp4013: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2083 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 - testl %eax, %eax - movq %rbx, %r11 -Ltmp4014: - .loc 1 2080 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2080:13 - movl $0, %r14d -Ltmp4015: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_1197 -Ltmp4016: -LBB17_1198: ## in Loop: Header=BB17_1194 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2083 9 ## /Users/dylan/github/ravi/src/lvm.c:2083:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4017: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4018: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4019: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp4020: -LBB17_1200: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $101, %eax - jne LBB17_1201 -Ltmp4021: -## BB#1210: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%r14), %rcx -Ltmp4022: - ##DEBUG_VALUE: h <- %RCX - .loc 1 2088 2 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%rbx), %rax -Ltmp4023: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp4024: -## BB#1211: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp4025: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movl %eax, %eax -Ltmp4026: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $3, 8(%r15) - jmp LBB17_1214 -Ltmp4027: -LBB17_1215: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2089 2 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 - movq %rbx, 40(%r12) - .loc 1 2089 2 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 -Ltmp4028: - movq %r10, %rdi - movq %r10, %r14 -Ltmp4029: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r15, %r8 - movq %r14, %r10 -Ltmp4030: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2089 2 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 - movq 32(%r12), %r9 -Ltmp4031: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4032: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1216 -Ltmp4033: -LBB17_1206: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - movq %r11, -128(%rbp) ## 8-byte Spill - movq %r9, %r13 -Ltmp4034: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 2088 2 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - callq _luaH_getint - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp4035: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r13, %r9 - movq -128(%rbp), %r11 ## 8-byte Reload -Ltmp4036: - ##DEBUG_VALUE: v <- %RAX - jmp LBB17_1207 -Ltmp4037: -LBB17_1209: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 2088 2 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 -Ltmp4038: - movq %r11, 40(%r12) - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 -Ltmp4039: - movq %r10, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - movq %r11, %r14 -Ltmp4040: - movq %r10, %rbx -Ltmp4041: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp4042: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 - jmp LBB17_1213 -Ltmp4043: -LBB17_1201: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $85, %eax - jne LBB17_1212 -Ltmp4044: -## BB#1202: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%r14), %rcx -Ltmp4045: - ##DEBUG_VALUE: h <- %RCX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%rbx), %rax -Ltmp4046: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp4047: -## BB#1203: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp4048: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movl %eax, %eax -Ltmp4049: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $19, 8(%r15) - jmp LBB17_1214 -Ltmp4050: -LBB17_1212: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %r12 ## 8-byte Reload - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 -Ltmp4051: - movq %r11, 40(%r12) - xorl %r8d, %r8d - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 -Ltmp4052: - movq %r10, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r14 -Ltmp4053: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaV_finishget - movq %r14, %r10 -Ltmp4054: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp4055: -LBB17_1213: ## in Loop: Header=BB17_1199 Depth=2 - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq 32(%r12), %r9 -Ltmp4056: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r12d - andl $12, %r12d - jmp LBB17_1214 -Ltmp4057: - .align 4, 0x90 -Ltmp4058: ## Block address taken -LBB17_1199: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, %r12d - .loc 1 2086 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2086:22 - movl %r13d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r9,%rax), %r14 -Ltmp4059: - ##DEBUG_VALUE: rb <- %R14 - .loc 1 2087 22 ## /Users/dylan/github/ravi/src/lvm.c:2087:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp4060: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edx - movq %rdx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %dl, %dl - cmovsq %rcx, %rbx -Ltmp4061: - ##DEBUG_VALUE: rc <- %RBX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movl 8(%r9,%rax), %eax -Ltmp4062: - .loc 1 2088 2 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - cmpl $69, %eax - jne LBB17_1200 -Ltmp4063: -## BB#1204: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%rbx), %rsi -Ltmp4064: - ##DEBUG_VALUE: idx <- %RSI - movq (%r14), %rdi -Ltmp4065: - ##DEBUG_VALUE: h <- %RDI - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx -Ltmp4066: - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - cmpq %rcx, %rax - jae LBB17_1206 -Ltmp4067: -## BB#1205: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: h <- %RDI - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp4068: - ##DEBUG_VALUE: v <- %RAX -LBB17_1207: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %R14 - ##DEBUG_VALUE: rc <- %RBX - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - cmpl $0, 8(%rax) -Ltmp4069: - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - je LBB17_1209 -Ltmp4070: -## BB#1208: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2088 2 ## /Users/dylan/github/ravi/src/lvm.c:2088:2 - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r15) - movq %rcx, (%r15) -Ltmp4071: -LBB17_1214: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- %R12D - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 -Ltmp4072: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2089 2 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 - movq %r11, %rbx - addq $4, %rbx -Ltmp4073: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp4074: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2089 2 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 - testl %r12d, %r12d - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4075: - jne LBB17_1215 -Ltmp4076: -LBB17_1216: ## in Loop: Header=BB17_1199 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2089 2 ## /Users/dylan/github/ravi/src/lvm.c:2089:2 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4077: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4078: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp4079: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4080: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmpq *(%rcx) -Ltmp4081: -LBB17_1227: ## in Loop: Header=BB17_1217 Depth=2 - movq %rbx, %r14 -Ltmp4082: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2100 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - andl $15, %eax -Ltmp4083: - .loc 1 2100 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - cmpl $5, %eax - je LBB17_1594 -## BB#1228: ## in Loop: Header=BB17_1217 Depth=2 -Ltmp4084: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - movq %r11, 40(%r14) - xorl %r8d, %r8d - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 -Ltmp4085: - movq %r10, %rdi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r15 -Ltmp4086: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaV_finishget - movq %r15, %r10 -Ltmp4087: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - jmp LBB17_1229 -Ltmp4088: -LBB17_1231: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - movq %rdx, %r15 - .loc 1 2101 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 -Ltmp4089: - movq %rbx, 40(%r15) - .loc 1 2101 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 -Ltmp4090: - movq %r10, %rdi - movq %r10, %r14 -Ltmp4091: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r12 - callq _luaG_traceexec - movq %r12, %r8 - movq %r14, %r10 -Ltmp4092: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2101 9 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 - movq 32(%r15), %r9 -Ltmp4093: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r15, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4094: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1232 -Ltmp4095: -LBB17_1226: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: aux <- %R8 - movq %rdx, %r14 - .loc 1 2100 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 -Ltmp4096: - movq %r11, 40(%r14) - .loc 1 2100 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 -Ltmp4097: - movq %r10, %rdi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r15 - movq %r10, %rbx -Ltmp4098: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp4099: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r11 -Ltmp4100: -LBB17_1229: ## in Loop: Header=BB17_1217 Depth=2 - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - movq 32(%r14), %r9 -Ltmp4101: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r14, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4102: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1230 -Ltmp4103: - .align 4, 0x90 -Ltmp4104: ## Block address taken -LBB17_1217: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1219 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %rbx - .loc 1 2096 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2096:31 - movl %r13d, %eax - shrl $24, %eax - .loc 1 2096 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2096:20 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%rax,8), %rax - .loc 1 2096 45 ## /Users/dylan/github/ravi/src/lvm.c:2096:45 - movq (%rax), %rsi -Ltmp4105: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 2099 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2099:26 - shrl $16, %r13d - andl $127, %r13d - .loc 1 2099 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2099:24 - shlq $4, %r13 - addq %rdi, %r13 -Ltmp4106: - ##DEBUG_VALUE: rc <- %R13 - .loc 1 2100 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - movl 8(%rsi), %eax -Ltmp4107: - .loc 1 2100 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - cmpl $69, %eax - movabsq $4294967296, %rdi ## imm = 0x100000000 -Ltmp4108: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - movq %r8, %r12 - jne LBB17_1227 -Ltmp4109: -## BB#1218: ## in Loop: Header=BB17_1217 Depth=2 - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - movq (%rsi), %rcx - movq (%r13), %rax - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp4110: - movl 12(%rax), %r8d - andl 80(%rcx), %r8d - shlq $5, %r8 - addq 24(%rcx), %r8 -Ltmp4111: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .align 4, 0x90 -LBB17_1219: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1217 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%r8), %rcx - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %ecx - jne LBB17_1222 -Ltmp4112: -## BB#1220: ## in Loop: Header=BB17_1219 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rax, 16(%r8) - je LBB17_1221 -Ltmp4113: -LBB17_1222: ## in Loop: Header=BB17_1219 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdx - sarq $32, %rdx - shlq $5, %rdx - addq %rdx, %r8 -Ltmp4114: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - cmpq %rdi, %rcx - jae LBB17_1219 -Ltmp4115: -## BB#1223: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %rbx, %rdx - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 - jmp LBB17_1224 -Ltmp4116: - .align 4, 0x90 -LBB17_1221: ## %.thread.i.645 - ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - movq %rbx, %rdx -Ltmp4117: -LBB17_1224: ## %luaH_getshortstr.exit647 - ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2100 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - cmpl $0, 8(%r8) -Ltmp4118: - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - je LBB17_1226 -Ltmp4119: -## BB#1225: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - movq (%r8), %rax - movq 8(%r8), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp4120: -LBB17_1230: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2101 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp4121: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp4122: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2101 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 - testl %r14d, %r14d - movl $0, %r14d - movq %r12, %r8 - jne LBB17_1231 -Ltmp4123: -LBB17_1232: ## in Loop: Header=BB17_1217 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2101 9 ## /Users/dylan/github/ravi/src/lvm.c:2101:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4124: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4125: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp4126: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4127: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdx, %r12 - jmpq *(%rcx) -Ltmp4128: -LBB17_1243: ## in Loop: Header=BB17_1233 Depth=2 - movq %rbx, %r14 -Ltmp4129: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2108 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - andl $15, %eax -Ltmp4130: - .loc 1 2108 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - cmpl $5, %eax - je LBB17_1594 -## BB#1244: ## in Loop: Header=BB17_1233 Depth=2 -Ltmp4131: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - movq %r11, 40(%r14) - xorl %r8d, %r8d - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 -Ltmp4132: - movq %r10, %rdi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %rbx - movq %r10, %r15 -Ltmp4133: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaV_finishget - movq %r15, %r10 -Ltmp4134: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 - jmp LBB17_1245 -Ltmp4135: -LBB17_1247: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - movq %rdx, %r15 - .loc 1 2109 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 -Ltmp4136: - movq %rbx, 40(%r15) - .loc 1 2109 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 -Ltmp4137: - movq %r10, %rdi - movq %r10, %r14 -Ltmp4138: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r12 - callq _luaG_traceexec - movq %r12, %r8 - movq %r14, %r10 -Ltmp4139: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2109 9 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 - movq 32(%r15), %r9 -Ltmp4140: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r15, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4141: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1248 -Ltmp4142: -LBB17_1242: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: aux <- %R8 - movq %rdx, %r14 - .loc 1 2108 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 -Ltmp4143: - movq %r11, 40(%r14) - .loc 1 2108 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 -Ltmp4144: - movq %r10, %rdi - movq %r13, %rdx - movq %r15, %rcx - movq %r11, %r15 - movq %r10, %rbx -Ltmp4145: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaV_finishget - movq %rbx, %r10 -Ltmp4146: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r11 -Ltmp4147: -LBB17_1245: ## in Loop: Header=BB17_1233 Depth=2 - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - movq 32(%r14), %r9 -Ltmp4148: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %r14, %rdx - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4149: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1246 -Ltmp4150: - .align 4, 0x90 -Ltmp4151: ## Block address taken -LBB17_1233: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1235 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %rbx - .loc 1 2104 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2104:20 - movl %r13d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r9,%rax), %rsi -Ltmp4152: - ##DEBUG_VALUE: rb <- %RSI - .loc 1 2107 26 ## /Users/dylan/github/ravi/src/lvm.c:2107:26 - shrl $16, %r13d - andl $127, %r13d - .loc 1 2107 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2107:24 - shlq $4, %r13 - addq %rdi, %r13 -Ltmp4153: - ##DEBUG_VALUE: rc <- %R13 - .loc 1 2108 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - movl 8(%r9,%rax), %eax -Ltmp4154: - .loc 1 2108 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - cmpl $69, %eax - movabsq $4294967296, %rdi ## imm = 0x100000000 -Ltmp4155: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - movq %r8, %r12 - jne LBB17_1243 -Ltmp4156: -## BB#1234: ## in Loop: Header=BB17_1233 Depth=2 - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - movq (%rsi), %rcx - movq (%r13), %rax - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp4157: - movl 12(%rax), %r8d - andl 80(%rcx), %r8d - shlq $5, %r8 - addq 24(%rcx), %r8 -Ltmp4158: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .align 4, 0x90 -LBB17_1235: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1233 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%r8), %rcx - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %ecx - jne LBB17_1238 -Ltmp4159: -## BB#1236: ## in Loop: Header=BB17_1235 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rax, 16(%r8) - je LBB17_1237 -Ltmp4160: -LBB17_1238: ## in Loop: Header=BB17_1235 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdx - sarq $32, %rdx - shlq $5, %rdx - addq %rdx, %r8 -Ltmp4161: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - cmpq %rdi, %rcx - jae LBB17_1235 -Ltmp4162: -## BB#1239: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - movq %rbx, %rdx - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 - jmp LBB17_1240 -Ltmp4163: - .align 4, 0x90 -LBB17_1237: ## %.thread.i.649 - ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - movq %rbx, %rdx -Ltmp4164: -LBB17_1240: ## %luaH_getshortstr.exit651 - ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %R13 - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2108 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - cmpl $0, 8(%r8) -Ltmp4165: - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - je LBB17_1242 -Ltmp4166: -## BB#1241: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2108 9 ## /Users/dylan/github/ravi/src/lvm.c:2108:9 - movq (%r8), %rax - movq 8(%r8), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp4167: -LBB17_1246: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2109 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 - movq %r11, %rbx - addq $4, %rbx -Ltmp4168: - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - movl (%r11), %r13d -Ltmp4169: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2109 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 - testl %r14d, %r14d - movl $0, %r14d - movq %r12, %r8 - jne LBB17_1247 -Ltmp4170: -LBB17_1248: ## in Loop: Header=BB17_1233 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %RBX - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: i <- %R13D - .loc 1 2109 9 ## /Users/dylan/github/ravi/src/lvm.c:2109:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4171: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4172: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movq %rbx, %r11 -Ltmp4173: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4174: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdx, %r12 - jmpq *(%rcx) -Ltmp4175: -LBB17_1258: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: v <- %R8 - movq -80(%rbp), %rbx ## 8-byte Reload - .loc 1 2130 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2130:13 -Ltmp4176: - movq %r11, 40(%rbx) - movq %r14, %r12 -Ltmp4177: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %rdi, %r13 -Ltmp4178: - ##DEBUG_VALUE: luaV_execute:k <- %R13 - .loc 1 2130 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2130:13 - movq %r12, %rdi - movq %r15, %rcx - movq %r11, %r14 - callq _luaV_finishget - movq %r13, %rdi -Ltmp4179: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r10 -Ltmp4180: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4181: - .loc 1 2130 13 ## /Users/dylan/github/ravi/src/lvm.c:2130:13 - movq 32(%rbx), %r9 -Ltmp4182: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r12d - andl $12, %r12d -Ltmp4183: - ##DEBUG_VALUE: luaV_execute:mask <- %R12D - jmp LBB17_1259 -Ltmp4184: -LBB17_1260: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2133 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp4185: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2133 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - movq %r10, %rdi - movq %r11, %rbx - movq %r10, %r14 -Ltmp4186: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4187: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %r14, %r10 -Ltmp4188: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r11 -Ltmp4189: - .loc 1 2133 9 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - movq 32(%r12), %r9 -Ltmp4190: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4191: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1261 -Ltmp4192: - .align 4, 0x90 -Ltmp4193: ## Block address taken -LBB17_1249: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1252 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, %r12d - movq %r10, %r14 -Ltmp4194: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - movq %rdi, %rdx -Ltmp4195: - ##DEBUG_VALUE: luaV_execute:k <- %RDX - .loc 1 2117 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2117:20 - movl %r13d, %esi - shrl $24, %esi - shlq $4, %rsi - addq %r9, %rsi -Ltmp4196: - ##DEBUG_VALUE: rb <- %RSI - movq %r9, %r10 - .loc 1 2118 13 ## /Users/dylan/github/ravi/src/lvm.c:2118:13 - cmpl $109, %eax - movabsq $4294967296, %rbx ## imm = 0x100000000 - jne LBB17_1251 -Ltmp4197: -## BB#1250: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDX - ##DEBUG_VALUE: rb <- %RSI - .loc 1 2118 37 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2118:37 - movq (%rsi), %rax - movq 8(%rsi), %rcx - movq %rcx, 24(%r15) - movq %rax, 16(%r15) -Ltmp4198: -LBB17_1251: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDX - ##DEBUG_VALUE: rb <- %RSI - .loc 1 2121 28 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2121:28 - shrl $16, %r13d - andl $127, %r13d - .loc 1 2121 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2121:26 - shlq $4, %r13 - movq %rdx, %rcx -Ltmp4199: - ##DEBUG_VALUE: luaV_execute:k <- %RCX - leaq (%rcx,%r13), %rdx -Ltmp4200: - ##DEBUG_VALUE: rc <- %RDX - .loc 1 2122 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2122:26 - movq (%rcx,%r13), %rax -Ltmp4201: - ##DEBUG_VALUE: key <- %RAX - movq %rcx, %r9 -Ltmp4202: - ##DEBUG_VALUE: luaV_execute:k <- %R9 - .loc 1 2124 22 ## /Users/dylan/github/ravi/src/lvm.c:2124:22 - movq (%rsi), %rcx -Ltmp4203: - ##DEBUG_VALUE: h <- %RCX - .loc 13 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rax), %r8d - andl 80(%rcx), %r8d - shlq $5, %r8 - addq 24(%rcx), %r8 -Ltmp4204: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .align 4, 0x90 -LBB17_1252: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1249 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R9 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: key <- %RAX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%r8), %rcx - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %ecx - jne LBB17_1254 -Ltmp4205: -## BB#1253: ## in Loop: Header=BB17_1252 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R9 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: key <- %RAX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rax, 16(%r8) - je LBB17_1256 -Ltmp4206: -LBB17_1254: ## in Loop: Header=BB17_1252 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R9 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: key <- %RAX - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdi - sarq $32, %rdi - shlq $5, %rdi - addq %rdi, %r8 -Ltmp4207: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R8 - .loc 1 2125 29 ## /Users/dylan/github/ravi/src/lvm.c:2125:29 - cmpq %rbx, %rcx - jae LBB17_1252 -Ltmp4208: -## BB#1255: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R9 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp4209: -LBB17_1256: ## %luaH_getshortstr.exit655 - ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R9 - ##DEBUG_VALUE: rb <- %RSI - ##DEBUG_VALUE: rc <- %RDX - ##DEBUG_VALUE: v <- %R8 - .loc 1 2126 15 ## /Users/dylan/github/ravi/src/lvm.c:2126:15 - cmpl $0, 8(%r8) - movq %r9, %rdi -Ltmp4210: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2126 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2126:15 - je LBB17_1258 -Ltmp4211: -## BB#1257: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R14 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: v <- %R8 - .loc 1 2127 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2127:13 - movq (%r8), %rax - movq 8(%r8), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) - movq %r10, %r9 - movq %r14, %r10 -Ltmp4212: - ##DEBUG_VALUE: luaV_execute:L <- %R10 -LBB17_1259: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2133 9 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4213: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2133 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - testl %r12d, %r12d - movl $0, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4214: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - jne LBB17_1260 -Ltmp4215: -LBB17_1261: ## in Loop: Header=BB17_1249 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2133 9 ## /Users/dylan/github/ravi/src/lvm.c:2133:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4216: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4217: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4218: -LBB17_1264: ## in Loop: Header=BB17_1262 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2141 9 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4219: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2141 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4220: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4221: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4222: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4223: - .loc 1 2141 9 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - movq 32(%r12), %r9 -Ltmp4224: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4225: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1265 -Ltmp4226: - .align 4, 0x90 -Ltmp4227: ## Block address taken -LBB17_1262: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2136 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2136:22 - movl %r13d, %ecx - shrl $24, %ecx - .loc 1 2137 22 ## /Users/dylan/github/ravi/src/lvm.c:2137:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %edx - movq %rdx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %dl, %dl - cmovsq %rax, %rsi -Ltmp4228: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2138 27 ## /Users/dylan/github/ravi/src/lvm.c:2138:27 - movq (%rsi), %rax -Ltmp4229: - ##DEBUG_VALUE: idx <- %RAX - .loc 1 2139 20 ## /Users/dylan/github/ravi/src/lvm.c:2139:20 - shlq $4, %rcx - movq (%r9,%rcx), %rcx -Ltmp4230: - ##DEBUG_VALUE: ukey <- %EAX - ##DEBUG_VALUE: t <- %RCX - .loc 1 2140 9 ## /Users/dylan/github/ravi/src/lvm.c:2140:9 - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp4231: -## BB#1263: ## in Loop: Header=BB17_1262 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: idx <- %RAX - ##DEBUG_VALUE: t <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp4232: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2140 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2140:9 - movl %eax, %eax -Ltmp4233: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp4234: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2141 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4235: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2141 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1264 -Ltmp4236: -LBB17_1265: ## in Loop: Header=BB17_1262 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2141 9 ## /Users/dylan/github/ravi/src/lvm.c:2141:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4237: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4238: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4239: -LBB17_1268: ## in Loop: Header=BB17_1266 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2149 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4240: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2149 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4241: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4242: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4243: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4244: - .loc 1 2149 9 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - movq 32(%r12), %r9 -Ltmp4245: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4246: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1269 -Ltmp4247: - .align 4, 0x90 -Ltmp4248: ## Block address taken -LBB17_1266: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2144 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2144:22 - movl %r13d, %ecx - shrl $24, %ecx - .loc 1 2145 22 ## /Users/dylan/github/ravi/src/lvm.c:2145:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax - movzbl %r13b, %edx - movq %rdx, %rsi - shlq $4, %rsi - addq %r9, %rsi - testb %dl, %dl - cmovsq %rax, %rsi -Ltmp4249: - ##DEBUG_VALUE: rc <- %RSI - .loc 1 2146 27 ## /Users/dylan/github/ravi/src/lvm.c:2146:27 - movq (%rsi), %rax -Ltmp4250: - ##DEBUG_VALUE: idx <- %RAX - .loc 1 2147 20 ## /Users/dylan/github/ravi/src/lvm.c:2147:20 - shlq $4, %rcx - movq (%r9,%rcx), %rcx -Ltmp4251: - ##DEBUG_VALUE: ukey <- %EAX - ##DEBUG_VALUE: t <- %RCX - .loc 1 2148 9 ## /Users/dylan/github/ravi/src/lvm.c:2148:9 - cmpl 64(%rcx), %eax - jae LBB17_45 -Ltmp4252: -## BB#1267: ## in Loop: Header=BB17_1266 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: idx <- %RAX - ##DEBUG_VALUE: t <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp4253: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2148 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2148:9 - movl %eax, %eax -Ltmp4254: - movq (%rcx,%rax,8), %rax - movq %rax, (%r15) - movl $3, 8(%r15) -Ltmp4255: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2149 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4256: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2149 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1268 -Ltmp4257: -LBB17_1269: ## in Loop: Header=BB17_1266 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2149 9 ## /Users/dylan/github/ravi/src/lvm.c:2149:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4258: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4259: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4260: -LBB17_1276: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2166 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - movq %r11, 40(%r12) - movq %r12, %r15 - movq %rdi, %r12 -Ltmp4261: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2166 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4262: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4263: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r15, %r12 -Ltmp4264: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq %rbx, %r10 -Ltmp4265: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4266: - .loc 1 2166 9 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - movq 32(%r12), %r9 -Ltmp4267: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp4268: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - jmp LBB17_1277 -Ltmp4269: - .align 4, 0x90 -Ltmp4270: ## Block address taken -LBB17_1270: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1283 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2152 20 ## /Users/dylan/github/ravi/src/lvm.c:2152:20 - movq (%r15), %rax -Ltmp4271: - ##DEBUG_VALUE: t <- [%RBP+-120] - .loc 1 2153 22 ## /Users/dylan/github/ravi/src/lvm.c:2153:22 - movq %rax, -120(%rbp) ## 8-byte Spill - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4272: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2154 22 ## /Users/dylan/github/ravi/src/lvm.c:2154:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax -Ltmp4273: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %ecx - movq %rcx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %cl, %cl - cmovsq %rax, %rbx -Ltmp4274: - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: luaV_tointeger:obj <- %RBX - .loc 1 2155 27 ## /Users/dylan/github/ravi/src/lvm.c:2155:27 - movq (%rdx), %r15 -Ltmp4275: - ##DEBUG_VALUE: idx <- %R15 - .loc 1 2156 13 ## /Users/dylan/github/ravi/src/lvm.c:2156:13 - movl 8(%rbx), %eax -Ltmp4276: - .loc 1 2156 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2156:13 - cmpl $3, %eax - je LBB17_1279 -Ltmp4277: -## BB#1271: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movl %r14d, -88(%rbp) ## 4-byte Spill - cmpl $19, %eax - jne LBB17_1283 -Ltmp4278: -## BB#1272: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - movq %r11, %r14 - movq -120(%rbp), %rsi ## 8-byte Reload - .loc 1 2156 32 ## /Users/dylan/github/ravi/src/lvm.c:2156:32 -Ltmp4279: - cmpl 64(%rsi), %r15d - jae LBB17_1278 -Ltmp4280: -## BB#1273: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - movq %r10, %r12 -Ltmp4281: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq 56(%rsi), %rax -Ltmp4282: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2156 32 ## /Users/dylan/github/ravi/src/lvm.c:2156:32 - movq (%rbx), %rcx - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB17_1274 -Ltmp4283: - .align 4, 0x90 -LBB17_1294: ## %._crit_edge.6279 - ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp4284: - .loc 1 2162 15 ## /Users/dylan/github/ravi/src/lvm.c:2162:15 - movq %r12, %rbx -Ltmp4285: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r13, %r11 - movq %r14, %r9 -Ltmp4286: -LBB17_1283: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1270 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r9, %r14 - movq %r11, %r13 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 -Ltmp4287: - cmpl $19, %eax - je LBB17_1295 -## BB#1284: ## in Loop: Header=BB17_1283 Depth=3 - cmpl $3, %eax - je LBB17_1285 -## BB#1289: ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp4288: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_1300 -## BB#1290: ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %r12 -Ltmp4289: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB17_1292 -Ltmp4290: -## BB#1291: ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB17_1293 -Ltmp4291: - .align 4, 0x90 -LBB17_1292: ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp4292: -LBB17_1293: ## in Loop: Header=BB17_1283 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp4293: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_1294 - jmp LBB17_1300 -Ltmp4294: - .align 4, 0x90 -LBB17_1279: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- [%RBP+-120] - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - movl %r14d, %r13d - movq -120(%rbp), %rsi ## 8-byte Reload -Ltmp4295: - ##DEBUG_VALUE: t <- %RSI - .loc 1 2158 11 ## /Users/dylan/github/ravi/src/lvm.c:2158:11 - cmpl 64(%rsi), %r15d - jae LBB17_1282 -Ltmp4296: -## BB#1280: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - movq %r10, %r12 -Ltmp4297: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq 56(%rsi), %rax -Ltmp4298: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2158 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2158:11 - cvttsd2si (%rbx), %rcx - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB17_1281 -Ltmp4299: -LBB17_1278: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2156 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2156:32 - movl %r15d, %edx - movq (%rbx), %rcx - movq %r10, %rdi - movq %r10, %r12 -Ltmp4300: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, %rbx - callq _raviH_set_int - movq %rbx, %r9 -Ltmp4301: -LBB17_1274: ## in Loop: Header=BB17_1270 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4302: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r14, %r11 - movl -88(%rbp), %eax ## 4-byte Reload - jmp LBB17_1275 -Ltmp4303: -LBB17_1282: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2158 11 ## /Users/dylan/github/ravi/src/lvm.c:2158:11 - movl %r15d, %edx - cvttsd2si (%rbx), %rcx - movq %r10, %rdi - movq %r10, %r12 -Ltmp4304: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r11, %r14 - movq %r9, %rbx -Ltmp4305: - callq _raviH_set_int - movq %rbx, %r9 - movq %r14, %r11 -Ltmp4306: -LBB17_1281: ## in Loop: Header=BB17_1270 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4307: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r13d, %eax - jmp LBB17_1275 -Ltmp4308: -LBB17_1295: ## in Loop: Header=BB17_1270 Depth=2 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rcx - jmp LBB17_1296 -Ltmp4309: -LBB17_1285: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp4310: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -128(%rbp) ## 8-byte Spill -Ltmp4311: - ##DEBUG_VALUE: n <- [%RBP+-128] - callq _floor -Ltmp4312: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -128(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_1300 - jp LBB17_1300 -Ltmp4313: -## BB#1286: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_1300 -Ltmp4314: -## BB#1287: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_1300 -## BB#1288: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rcx -Ltmp4315: -LBB17_1296: ## %luaV_tointeger.exit660 - ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - movq -120(%rbp), %rsi ## 8-byte Reload - .loc 1 2162 36 ## /Users/dylan/github/ravi/src/lvm.c:2162:36 -Ltmp4316: - cmpl 64(%rsi), %r15d - movq -104(%rbp), %r12 ## 8-byte Reload -Ltmp4317: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq -96(%rbp), %rbx ## 8-byte Reload -Ltmp4318: - ##DEBUG_VALUE: luaV_execute:k <- %RBX - jae LBB17_1299 -Ltmp4319: -## BB#1297: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: ukey <- %R15D - movq 56(%rsi), %rax -Ltmp4320: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2162 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2162:36 - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB17_1298 -Ltmp4321: -LBB17_1299: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2162 36 ## /Users/dylan/github/ravi/src/lvm.c:2162:36 - movl %r15d, %edx - movq %r12, %rdi - callq _raviH_set_int -Ltmp4322: -LBB17_1298: ## in Loop: Header=BB17_1270 Depth=2 - movq %r13, %r11 - movq %r14, %r9 - movl -88(%rbp), %eax ## 4-byte Reload - movq %rbx, %rdi -Ltmp4323: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_1275: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2166 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4324: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2166 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - testl %eax, %eax - movl $0, %edx -Ltmp4325: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq %r12, %r10 -Ltmp4326: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - jne LBB17_1276 -Ltmp4327: -LBB17_1277: ## in Loop: Header=BB17_1270 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2166 9 ## /Users/dylan/github/ravi/src/lvm.c:2166:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4328: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4329: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movl %edx, %r14d - jmpq *(%rcx) -Ltmp4330: -LBB17_1305: ## in Loop: Header=BB17_1301 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2174 9 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4331: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2174 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4332: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4333: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4334: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4335: - .loc 1 2174 9 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - movq 32(%r12), %r9 -Ltmp4336: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4337: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1306 -Ltmp4338: - .align 4, 0x90 -Ltmp4339: ## Block address taken -LBB17_1301: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2169 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2169:20 - movq (%r15), %rsi -Ltmp4340: - ##DEBUG_VALUE: t <- %RSI - .loc 1 2170 22 ## /Users/dylan/github/ravi/src/lvm.c:2170:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4341: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2171 22 ## /Users/dylan/github/ravi/src/lvm.c:2171:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp4342: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edi - movq %rdi, %rax - shlq $4, %rax - addq %r9, %rax - testb %dil, %dil - cmovsq %rcx, %rax -Ltmp4343: - ##DEBUG_VALUE: rc <- %RAX - .loc 1 2172 27 ## /Users/dylan/github/ravi/src/lvm.c:2172:27 - movq (%rdx), %rcx -Ltmp4344: - ##DEBUG_VALUE: ukey <- %ECX - ##DEBUG_VALUE: idx <- %RCX - .loc 1 2173 9 ## /Users/dylan/github/ravi/src/lvm.c:2173:9 - cmpl 64(%rsi), %ecx - jae LBB17_1303 -Ltmp4345: -## BB#1302: ## in Loop: Header=BB17_1301 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RAX - ##DEBUG_VALUE: idx <- %RCX - ##DEBUG_VALUE: ukey <- %ECX - movq %r10, %rbx -Ltmp4346: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r9, %r15 - movq 56(%rsi), %rdx -Ltmp4347: - ##DEBUG_VALUE: data <- %RDX - .loc 1 2173 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2173:9 - movq (%rax), %rax -Ltmp4348: - movl %ecx, %ecx -Ltmp4349: - movq %rax, (%rdx,%rcx,8) - jmp LBB17_1304 -Ltmp4350: - .align 4, 0x90 -LBB17_1303: ## in Loop: Header=BB17_1301 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RAX - ##DEBUG_VALUE: idx <- %RCX - ##DEBUG_VALUE: ukey <- %ECX - movq %r9, %r15 - .loc 1 2173 9 ## /Users/dylan/github/ravi/src/lvm.c:2173:9 - movl %ecx, %edx - movq (%rax), %rcx -Ltmp4351: - movq %r10, %rdi - movq %r10, %rbx -Ltmp4352: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movl %r14d, %r12d - movq %r11, %r14 - movq %r8, %r13 - callq _raviH_set_int - movq %r13, %r8 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4353: -LBB17_1304: ## in Loop: Header=BB17_1301 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %RBX - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2174 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4354: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2174 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - testl %r14d, %r14d - movl $0, %r14d - movq %r15, %r9 - movq %rbx, %r10 -Ltmp4355: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4356: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_1305 -Ltmp4357: -LBB17_1306: ## in Loop: Header=BB17_1301 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2174 9 ## /Users/dylan/github/ravi/src/lvm.c:2174:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4358: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4359: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4360: -LBB17_1331: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - movq %rsi, %rbx - .loc 1 2191 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 -Ltmp4361: - movq %r11, 40(%rbx) - movq %rdi, %r12 -Ltmp4362: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2191 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %r15 -Ltmp4363: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4364: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 - movq %r15, %r10 -Ltmp4365: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4366: - .loc 1 2191 9 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 - movq 32(%rbx), %r9 -Ltmp4367: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %rbx, %rsi - movzbl 200(%r10), %edx - andl $12, %edx -Ltmp4368: - ##DEBUG_VALUE: luaV_execute:mask <- %EDX - jmp LBB17_1332 -Ltmp4369: - .align 4, 0x90 -Ltmp4370: ## Block address taken -LBB17_1307: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movl %r14d, -88(%rbp) ## 4-byte Spill - .loc 1 2177 20 ## /Users/dylan/github/ravi/src/lvm.c:2177:20 - movq (%r15), %r14 -Ltmp4371: - ##DEBUG_VALUE: t <- %R14 - .loc 1 2178 22 ## /Users/dylan/github/ravi/src/lvm.c:2178:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4372: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2179 22 ## /Users/dylan/github/ravi/src/lvm.c:2179:22 - shrl $16, %r13d - movl %r13d, %eax - andl $127, %eax - shlq $4, %rax - addq %rdi, %rax -Ltmp4373: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %ecx - movq %rcx, %rbx - shlq $4, %rbx - addq %r9, %rbx - testb %cl, %cl - cmovsq %rax, %rbx -Ltmp4374: - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 2180 27 ## /Users/dylan/github/ravi/src/lvm.c:2180:27 - movq (%rdx), %r15 -Ltmp4375: - ##DEBUG_VALUE: idx <- %R15 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp4376: - .loc 1 2181 13 ## /Users/dylan/github/ravi/src/lvm.c:2181:13 - cmpl $19, %eax - je LBB17_1313 -Ltmp4377: -## BB#1308: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cmpl $3, %eax - jne LBB17_1315 -Ltmp4378: -## BB#1309: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - movq %r9, %r13 - .loc 1 2181 30 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2181:30 -Ltmp4379: - cmpl 64(%r14), %r15d - jae LBB17_1312 -Ltmp4380: -## BB#1310: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - movq %r10, %r12 -Ltmp4381: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq 56(%r14), %rax -Ltmp4382: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2181 30 ## /Users/dylan/github/ravi/src/lvm.c:2181:30 - movq (%rbx), %rcx - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB17_1311 -Ltmp4383: - .align 4, 0x90 -LBB17_1313: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2183 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2183:11 - cmpl 64(%r14), %r15d - jae LBB17_1328 -Ltmp4384: -## BB#1314: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - movq %r10, %r12 -Ltmp4385: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq 56(%r14), %rax -Ltmp4386: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2183 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2183:11 - cvtsi2sdq (%rbx), %xmm0 - movl %r15d, %ecx - movsd %xmm0, (%rax,%rcx,8) - jmp LBB17_1329 -Ltmp4387: - .align 4, 0x90 -LBB17_1315: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %r12 -Ltmp4388: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, -120(%rbp) ## 8-byte Spill - movq %r11, %r13 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 -Ltmp4389: - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1327 -Ltmp4390: -## BB#1316: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp4391: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp4392: - cmpl $4, %esi - jne LBB17_1318 -Ltmp4393: -## BB#1317: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_1319 -Ltmp4394: -LBB17_1312: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2181 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2181:30 - movl %r15d, %edx - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero - movq %r10, %rdi - movq %r10, %r12 -Ltmp4395: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r14, %rsi - movq %r11, %rbx - callq _raviH_set_float - movq %rbx, %r11 -Ltmp4396: -LBB17_1311: ## in Loop: Header=BB17_1307 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4397: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r9 - jmp LBB17_1330 -Ltmp4398: -LBB17_1328: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %R14 - ##DEBUG_VALUE: rc <- %RBX - ##DEBUG_VALUE: idx <- %R15 - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2183 11 ## /Users/dylan/github/ravi/src/lvm.c:2183:11 - movl %r15d, %edx - movq (%rbx), %rax - cvtsi2sdq %rax, %xmm0 - movq %r10, %rdi - movq %r10, %r12 -Ltmp4399: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r14, %rsi - movq %r11, %r14 -Ltmp4400: - movq %r9, %rbx -Ltmp4401: - callq _raviH_set_float - movq %rbx, %r9 - movq %r14, %r11 -Ltmp4402: -LBB17_1329: ## in Loop: Header=BB17_1307 Depth=2 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4403: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1330 -Ltmp4404: -LBB17_1318: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp4405: -LBB17_1319: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp4406: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB17_1327 -Ltmp4407: -## BB#1320: ## %luaV_tonumber_.exit664 - ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_1322 -Ltmp4408: -## BB#1321: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1323 -Ltmp4409: -LBB17_1322: ## %select.false9313 - ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movd %rax, %xmm0 -Ltmp4410: -LBB17_1323: ## %select.end9312 - ## in Loop: Header=BB17_1307 Depth=2 - movq -96(%rbp), %rbx ## 8-byte Reload -Ltmp4411: - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2187 35 ## /Users/dylan/github/ravi/src/lvm.c:2187:35 - cmpl 64(%r14), %r15d - jae LBB17_1326 -Ltmp4412: -## BB#1324: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: ukey <- %R15D - movq 56(%r14), %rax -Ltmp4413: - ##DEBUG_VALUE: data <- %RAX - .loc 1 2187 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2187:35 - movl %r15d, %ecx - movsd %xmm0, (%rax,%rcx,8) - jmp LBB17_1325 -Ltmp4414: -LBB17_1326: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RBX - ##DEBUG_VALUE: ukey <- %R15D - .loc 1 2187 35 ## /Users/dylan/github/ravi/src/lvm.c:2187:35 - movl %r15d, %edx - movq %r12, %rdi - movq %r14, %rsi - callq _raviH_set_float -Ltmp4415: -LBB17_1325: ## in Loop: Header=BB17_1307 Depth=2 - movq %r13, %r11 - movq -120(%rbp), %r9 ## 8-byte Reload - movq %rbx, %rdi -Ltmp4416: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_1330: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2191 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4417: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2191 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 - cmpl $0, -88(%rbp) ## 4-byte Folded Reload - movl $0, %edx -Ltmp4418: - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r14, %r8 - movq -80(%rbp), %rsi ## 8-byte Reload - movq %r12, %r10 -Ltmp4419: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jne LBB17_1331 -Ltmp4420: -LBB17_1332: ## in Loop: Header=BB17_1307 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2191 9 ## /Users/dylan/github/ravi/src/lvm.c:2191:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4421: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4422: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - movl %edx, %r14d - movq %rsi, %r12 - jmpq *(%rcx) -Ltmp4423: -LBB17_1337: ## in Loop: Header=BB17_1333 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2199 9 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4424: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2199 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4425: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4426: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4427: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4428: - .loc 1 2199 9 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - movq 32(%r12), %r9 -Ltmp4429: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4430: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1338 -Ltmp4431: - .align 4, 0x90 -Ltmp4432: ## Block address taken -LBB17_1333: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2194 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2194:20 - movq (%r15), %rsi -Ltmp4433: - ##DEBUG_VALUE: t <- %RSI - .loc 1 2195 22 ## /Users/dylan/github/ravi/src/lvm.c:2195:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4434: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2196 22 ## /Users/dylan/github/ravi/src/lvm.c:2196:22 - shrl $16, %r13d - movl %r13d, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx -Ltmp4435: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movzbl %r13b, %edi - movq %rdi, %rax - shlq $4, %rax - addq %r9, %rax - testb %dil, %dil - cmovsq %rcx, %rax -Ltmp4436: - ##DEBUG_VALUE: rc <- %RAX - .loc 1 2197 27 ## /Users/dylan/github/ravi/src/lvm.c:2197:27 - movq (%rdx), %rcx -Ltmp4437: - ##DEBUG_VALUE: ukey <- %ECX - ##DEBUG_VALUE: idx <- %RCX - .loc 1 2198 9 ## /Users/dylan/github/ravi/src/lvm.c:2198:9 - cmpl 64(%rsi), %ecx - jae LBB17_1335 -Ltmp4438: -## BB#1334: ## in Loop: Header=BB17_1333 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RAX - ##DEBUG_VALUE: idx <- %RCX - ##DEBUG_VALUE: ukey <- %ECX - movq %r10, %rbx -Ltmp4439: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq 56(%rsi), %rdx -Ltmp4440: - ##DEBUG_VALUE: data <- %RDX - .loc 1 2198 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2198:9 - movq (%rax), %rax -Ltmp4441: - movl %ecx, %ecx -Ltmp4442: - movq %rax, (%rdx,%rcx,8) - jmp LBB17_1336 -Ltmp4443: - .align 4, 0x90 -LBB17_1335: ## in Loop: Header=BB17_1333 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: t <- %RSI - ##DEBUG_VALUE: rc <- %RAX - ##DEBUG_VALUE: idx <- %RCX - ##DEBUG_VALUE: ukey <- %ECX - .loc 1 2198 9 ## /Users/dylan/github/ravi/src/lvm.c:2198:9 - movl %ecx, %edx - movsd (%rax), %xmm0 ## xmm0 = mem[0],zero - movq %r10, %rdi - movq %r10, %rbx -Ltmp4444: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movl %r14d, %r12d - movq %r11, %r14 - movq %r9, %r15 - movq %r8, %r13 - callq _raviH_set_float - movq %r13, %r8 - movq %r15, %r9 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4445: -LBB17_1336: ## in Loop: Header=BB17_1333 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %RBX - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 2199 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4446: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2199 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - testl %r14d, %r14d - movl $0, %r14d - movq %rbx, %r10 -Ltmp4447: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4448: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_1337 -Ltmp4449: -LBB17_1338: ## in Loop: Header=BB17_1333 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2199 9 ## /Users/dylan/github/ravi/src/lvm.c:2199:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4450: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4451: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4452: -LBB17_1341: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r12, -80(%rbp) ## 8-byte Spill -Ltmp4453: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp4454: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - jmp LBB17_1342 - .align 4, 0x90 -LBB17_1353: ## %._crit_edge.6275 - ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp4455: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %r15 -Ltmp4456: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R15+0] - movq %r12, %r11 - movq %rbx, %r9 -Ltmp4457: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp4458: -LBB17_1342: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1339 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_1354 -## BB#1343: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %rbx - movq %r11, %r12 - cmpl $3, %eax - je LBB17_1344 -## BB#1348: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp4459: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_1595 -## BB#1349: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r15), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp4460: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp4461: - cmpl $4, %esi - jne LBB17_1351 -## BB#1350: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp4462: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_1352 - .align 4, 0x90 -LBB17_1351: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_1352: ## in Loop: Header=BB17_1342 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp4463: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_1353 - jmp LBB17_1595 -Ltmp4464: -LBB17_1357: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2211 9 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4465: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2211 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4466: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4467: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4468: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4469: - .loc 1 2211 9 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - movq 32(%r12), %r9 -Ltmp4470: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4471: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1358 -Ltmp4472: -LBB17_1354: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r15), %rax - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4473: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jmp LBB17_1355 -Ltmp4474: -LBB17_1344: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r15), %xmm0 ## xmm0 = mem[0],zero -Ltmp4475: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -88(%rbp) ## 8-byte Spill -Ltmp4476: - ##DEBUG_VALUE: n <- [%RBP+-88] - callq _floor -Ltmp4477: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -88(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_1595 - jp LBB17_1595 -Ltmp4478: -## BB#1345: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_1595 -Ltmp4479: -## BB#1346: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_1595 -## BB#1347: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4480: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r11 - movq %rbx, %r9 -Ltmp4481: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp4482: -LBB17_1355: ## %luaV_tointeger.exit669 - ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp4483: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq -80(%rbp), %r12 ## 8-byte Reload - jmp LBB17_1356 -Ltmp4484: - .align 4, 0x90 -Ltmp4485: ## Block address taken -LBB17_1339: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1342 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2203 13 ## /Users/dylan/github/ravi/src/lvm.c:2203:13 - movl 8(%r15), %eax -Ltmp4486: - .loc 1 2203 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2203:13 - cmpl $19, %eax - jne LBB17_1341 -Ltmp4487: -## BB#1340: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2203 13 ## /Users/dylan/github/ravi/src/lvm.c:2203:13 - movq (%r15), %rax -Ltmp4488: - ##DEBUG_VALUE: ia <- %RAX -LBB17_1356: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2204 34 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2204:34 - shrl $24, %r13d - .loc 1 2204 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2204:23 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%r13,8), %rcx -Ltmp4489: - ##DEBUG_VALUE: uv <- %RCX - .loc 1 2205 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2205:11 - movq (%rcx), %rcx -Ltmp4490: - ##DEBUG_VALUE: io <- %RCX - movq %rax, (%rcx) - movl $19, 8(%rcx) -Ltmp4491: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2211 9 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4492: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2211 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1357 -Ltmp4493: -LBB17_1358: ## in Loop: Header=BB17_1339 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2211 9 ## /Users/dylan/github/ravi/src/lvm.c:2211:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4494: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4495: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4496: -LBB17_1361: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_1363 -Ltmp4497: -## BB#1362: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r15), %xmm0 - jmp LBB17_1371 -Ltmp4498: -LBB17_1373: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2223 9 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4499: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2223 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4500: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4501: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4502: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4503: - .loc 1 2223 9 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - movq 32(%r12), %r9 -Ltmp4504: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4505: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1374 -Ltmp4506: -LBB17_1363: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1596 -Ltmp4507: -## BB#1364: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp4508: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r12 -Ltmp4509: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, %r14 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp4510: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp4511: - cmpl $4, %esi - jne LBB17_1366 -Ltmp4512: -## BB#1365: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_1367 -Ltmp4513: -LBB17_1366: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq 16(%rdx), %rcx -Ltmp4514: -LBB17_1367: ## in Loop: Header=BB17_1359 Depth=2 - movq %rbx, %r11 - movq %r14, %r9 - movq %r12, %r10 -Ltmp4515: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp4516: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp4517: - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4518: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_1596 -Ltmp4519: -## BB#1368: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_1370 -Ltmp4520: -## BB#1369: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1371 -Ltmp4521: -LBB17_1370: ## %select.false9348 - ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movd %rax, %xmm0 -Ltmp4522: -LBB17_1371: ## %luaV_tonumber_.exit673 - ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_1372 -Ltmp4523: - .align 4, 0x90 -Ltmp4524: ## Block address taken -LBB17_1359: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp4525: - .loc 1 2215 13 ## /Users/dylan/github/ravi/src/lvm.c:2215:13 - cmpl $3, %eax - jne LBB17_1361 -Ltmp4526: -## BB#1360: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2215 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2215:13 - movq (%r15), %rax -Ltmp4527: -LBB17_1372: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2216 34 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2216:34 - shrl $24, %r13d - .loc 1 2216 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2216:23 - movq -112(%rbp), %rcx ## 8-byte Reload - movq 32(%rcx,%r13,8), %rcx -Ltmp4528: - ##DEBUG_VALUE: uv <- %RCX - .loc 1 2217 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2217:11 - movq (%rcx), %rcx -Ltmp4529: - ##DEBUG_VALUE: io <- %RCX - movq %rax, (%rcx) - movl $3, 8(%rcx) -Ltmp4530: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2223 9 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4531: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2223 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1373 -Ltmp4532: -LBB17_1374: ## in Loop: Header=BB17_1359 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2223 9 ## /Users/dylan/github/ravi/src/lvm.c:2223:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4533: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4534: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4535: -LBB17_1381: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2233 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4536: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2233 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4537: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4538: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4539: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4540: - .loc 1 2233 9 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - movq 32(%r12), %r9 -Ltmp4541: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4542: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1382 -Ltmp4543: - .align 4, 0x90 -Ltmp4544: ## Block address taken -LBB17_1375: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2226 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2226:14 - cmpl $85, 8(%r15) - jne LBB17_1376 -Ltmp4545: -## BB#1377: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2230 32 ## /Users/dylan/github/ravi/src/lvm.c:2230:32 - shrl $24, %r13d - .loc 1 2230 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2230:21 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%r13,8), %rsi -Ltmp4546: - ##DEBUG_VALUE: uv <- %RSI - .loc 1 2231 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2231:9 - movq (%rsi), %rax - movq (%r15), %rcx - movq 8(%r15), %rdx - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp4547: - .loc 1 2232 9 ## /Users/dylan/github/ravi/src/lvm.c:2232:9 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB17_1380 -Ltmp4548: -## BB#1378: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB17_1380 -Ltmp4549: -## BB#1379: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp4550: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %rdi - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, %r12d - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp4551: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r13 - callq _luaC_upvalbarrier_ - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4552: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r8 - movq %r15, %r10 -Ltmp4553: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4554: - .align 4, 0x90 -LBB17_1380: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2233 9 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4555: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2233 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1381 -Ltmp4556: -LBB17_1382: ## in Loop: Header=BB17_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2233 9 ## /Users/dylan/github/ravi/src/lvm.c:2233:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4557: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4558: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4559: -LBB17_1389: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2243 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4560: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2243 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4561: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4562: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4563: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4564: - .loc 1 2243 9 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - movq 32(%r12), %r9 -Ltmp4565: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4566: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1390 -Ltmp4567: - .align 4, 0x90 -Ltmp4568: ## Block address taken -LBB17_1383: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2236 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2236:14 - cmpl $101, 8(%r15) - jne LBB17_1384 -Ltmp4569: -## BB#1385: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2240 32 ## /Users/dylan/github/ravi/src/lvm.c:2240:32 - shrl $24, %r13d - .loc 1 2240 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2240:21 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%r13,8), %rsi -Ltmp4570: - ##DEBUG_VALUE: uv <- %RSI - .loc 1 2241 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2241:9 - movq (%rsi), %rax - movq (%r15), %rcx - movq 8(%r15), %rdx - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp4571: - .loc 1 2242 9 ## /Users/dylan/github/ravi/src/lvm.c:2242:9 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB17_1388 -Ltmp4572: -## BB#1386: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB17_1388 -Ltmp4573: -## BB#1387: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp4574: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %rdi - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, %r12d - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp4575: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r13 - callq _luaC_upvalbarrier_ - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4576: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r8 - movq %r15, %r10 -Ltmp4577: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4578: - .align 4, 0x90 -LBB17_1388: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2243 9 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4579: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2243 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1389 -Ltmp4580: -LBB17_1390: ## in Loop: Header=BB17_1383 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2243 9 ## /Users/dylan/github/ravi/src/lvm.c:2243:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4581: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4582: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4583: -LBB17_1397: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2252 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4584: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2252 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4585: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4586: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4587: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4588: - .loc 1 2252 9 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - movq 32(%r12), %r9 -Ltmp4589: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4590: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1398 -Ltmp4591: - .align 4, 0x90 -Ltmp4592: ## Block address taken -LBB17_1391: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2246 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2246:14 - cmpl $69, 8(%r15) - jne LBB17_1392 -Ltmp4593: -## BB#1393: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2249 32 ## /Users/dylan/github/ravi/src/lvm.c:2249:32 - shrl $24, %r13d - .loc 1 2249 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2249:21 - movq -112(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%r13,8), %rsi -Ltmp4594: - ##DEBUG_VALUE: uv <- %RSI - .loc 1 2250 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2250:9 - movq (%rsi), %rax - movq (%r15), %rcx - movq 8(%r15), %rdx - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp4595: - .loc 1 2251 9 ## /Users/dylan/github/ravi/src/lvm.c:2251:9 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB17_1396 -Ltmp4596: -## BB#1394: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB17_1396 -Ltmp4597: -## BB#1395: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: uv <- %RSI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp4598: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r10, %rdi - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, %r12d - movq %r11, %r14 - movq %r9, %rbx - movq %r10, %r15 -Ltmp4599: - ##DEBUG_VALUE: luaV_execute:L <- %R15 - movq %r8, %r13 - callq _luaC_upvalbarrier_ - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp4600: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r13, %r8 - movq %r15, %r10 -Ltmp4601: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %rbx, %r9 - movq %r14, %r11 - movl %r12d, %r14d - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4602: - .align 4, 0x90 -LBB17_1396: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2252 9 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4603: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2252 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1397 -Ltmp4604: -LBB17_1398: ## in Loop: Header=BB17_1391 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2252 9 ## /Users/dylan/github/ravi/src/lvm.c:2252:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4605: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4606: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4607: -LBB17_1400: ## in Loop: Header=BB17_1399 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2256 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4608: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2256 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4609: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4610: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4611: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4612: - .loc 1 2256 9 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movq 32(%r12), %r9 -Ltmp4613: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4614: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1401 -Ltmp4615: - .align 4, 0x90 -Ltmp4616: ## Block address taken -LBB17_1399: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2255 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2255:9 - movq $0, (%r15) - movl $19, 8(%r15) -Ltmp4617: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2256 9 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4618: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2256 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1400 -Ltmp4619: -LBB17_1401: ## in Loop: Header=BB17_1399 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2256 9 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4620: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4621: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4622: -LBB17_1403: ## in Loop: Header=BB17_1402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2260 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4623: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2260 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4624: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4625: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4626: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4627: - .loc 1 2260 9 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - movq 32(%r12), %r9 -Ltmp4628: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4629: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1404 -Ltmp4630: - .align 4, 0x90 -Ltmp4631: ## Block address taken -LBB17_1402: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2259 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2259:9 - movq $0, (%r15) - movl $3, 8(%r15) -Ltmp4632: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2260 9 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4633: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2260 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1403 -Ltmp4634: -LBB17_1404: ## in Loop: Header=BB17_1402 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2260 9 ## /Users/dylan/github/ravi/src/lvm.c:2260:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4635: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4636: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4637: -LBB17_1406: ## in Loop: Header=BB17_1405 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2266 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4638: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2266 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4639: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4640: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4641: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4642: - .loc 1 2266 9 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq 32(%r12), %r9 -Ltmp4643: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4644: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1407 -Ltmp4645: - .align 4, 0x90 -Ltmp4646: ## Block address taken -LBB17_1405: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2264 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2264:22 - shrl $24, %r13d - .loc 1 2265 9 ## /Users/dylan/github/ravi/src/lvm.c:2265:9 -Ltmp4647: - shlq $4, %r13 - movsd (%r9,%r13), %xmm0 ## xmm0 = mem[0],zero - xorpd LCPI17_2(%rip), %xmm0 - movlpd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4648: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2266 9 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4649: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2266 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1406 -Ltmp4650: -LBB17_1407: ## in Loop: Header=BB17_1405 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2266 9 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4651: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4652: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4653: -LBB17_1409: ## in Loop: Header=BB17_1408 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2272 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4654: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2272 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4655: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4656: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4657: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4658: - .loc 1 2272 9 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - movq 32(%r12), %r9 -Ltmp4659: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4660: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1410 -Ltmp4661: - .align 4, 0x90 -Ltmp4662: ## Block address taken -LBB17_1408: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2270 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2270:22 - shrl $24, %r13d - .loc 1 2271 9 ## /Users/dylan/github/ravi/src/lvm.c:2271:9 -Ltmp4663: - shlq $4, %r13 - movq (%r9,%r13), %rax - xorl %ecx, %ecx - subq %rax, %rcx - movq %rcx, (%r15) - movl $19, 8(%r15) -Ltmp4664: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2272 9 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4665: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2272 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1409 -Ltmp4666: -LBB17_1410: ## in Loop: Header=BB17_1408 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2272 9 ## /Users/dylan/github/ravi/src/lvm.c:2272:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4667: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4668: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4669: -LBB17_1412: ## in Loop: Header=BB17_1411 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2278 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4670: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2278 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4671: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4672: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4673: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4674: - .loc 1 2278 9 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - movq 32(%r12), %r9 -Ltmp4675: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4676: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1413 -Ltmp4677: - .align 4, 0x90 -Ltmp4678: ## Block address taken -LBB17_1411: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2275 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2275:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4679: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2276 22 ## /Users/dylan/github/ravi/src/lvm.c:2276:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4680: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2277 9 ## /Users/dylan/github/ravi/src/lvm.c:2277:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - addsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4681: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2278 9 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4682: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2278 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1412 -Ltmp4683: -LBB17_1413: ## in Loop: Header=BB17_1411 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2278 9 ## /Users/dylan/github/ravi/src/lvm.c:2278:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4684: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4685: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4686: -LBB17_1415: ## in Loop: Header=BB17_1414 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2284 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4687: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2284 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4688: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4689: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4690: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4691: - .loc 1 2284 9 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - movq 32(%r12), %r9 -Ltmp4692: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4693: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1416 -Ltmp4694: - .align 4, 0x90 -Ltmp4695: ## Block address taken -LBB17_1414: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2281 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2281:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4696: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2282 22 ## /Users/dylan/github/ravi/src/lvm.c:2282:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4697: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2283 9 ## /Users/dylan/github/ravi/src/lvm.c:2283:9 - cvtsi2sdq (%rcx), %xmm0 - addsd (%rdx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4698: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2284 9 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4699: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2284 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1415 -Ltmp4700: -LBB17_1416: ## in Loop: Header=BB17_1414 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2284 9 ## /Users/dylan/github/ravi/src/lvm.c:2284:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4701: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4702: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4703: -LBB17_1418: ## in Loop: Header=BB17_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2290 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4704: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2290 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4705: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4706: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4707: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4708: - .loc 1 2290 9 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - movq 32(%r12), %r9 -Ltmp4709: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4710: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1419 -Ltmp4711: - .align 4, 0x90 -Ltmp4712: ## Block address taken -LBB17_1417: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2287 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2287:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4713: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2288 22 ## /Users/dylan/github/ravi/src/lvm.c:2288:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4714: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2289 9 ## /Users/dylan/github/ravi/src/lvm.c:2289:9 - movq (%rcx), %rax - addq (%rdx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp4715: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2290 9 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4716: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2290 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1418 -Ltmp4717: -LBB17_1419: ## in Loop: Header=BB17_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2290 9 ## /Users/dylan/github/ravi/src/lvm.c:2290:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4718: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4719: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4720: -LBB17_1421: ## in Loop: Header=BB17_1420 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2296 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4721: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2296 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4722: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4723: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4724: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4725: - .loc 1 2296 9 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - movq 32(%r12), %r9 -Ltmp4726: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4727: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1422 -Ltmp4728: - .align 4, 0x90 -Ltmp4729: ## Block address taken -LBB17_1420: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2293 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2293:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4730: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2294 22 ## /Users/dylan/github/ravi/src/lvm.c:2294:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4731: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2295 9 ## /Users/dylan/github/ravi/src/lvm.c:2295:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - subsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4732: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2296 9 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4733: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2296 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1421 -Ltmp4734: -LBB17_1422: ## in Loop: Header=BB17_1420 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2296 9 ## /Users/dylan/github/ravi/src/lvm.c:2296:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4735: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4736: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4737: -LBB17_1424: ## in Loop: Header=BB17_1423 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2302 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4738: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2302 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4739: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4740: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4741: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4742: - .loc 1 2302 9 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - movq 32(%r12), %r9 -Ltmp4743: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4744: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1425 -Ltmp4745: - .align 4, 0x90 -Ltmp4746: ## Block address taken -LBB17_1423: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2299 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2299:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4747: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2300 22 ## /Users/dylan/github/ravi/src/lvm.c:2300:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4748: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2301 9 ## /Users/dylan/github/ravi/src/lvm.c:2301:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - cvtsi2sdq (%rcx), %xmm1 - subsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4749: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2302 9 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4750: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2302 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1424 -Ltmp4751: -LBB17_1425: ## in Loop: Header=BB17_1423 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2302 9 ## /Users/dylan/github/ravi/src/lvm.c:2302:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4752: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4753: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4754: -LBB17_1427: ## in Loop: Header=BB17_1426 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2308 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4755: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2308 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4756: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4757: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4758: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4759: - .loc 1 2308 9 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - movq 32(%r12), %r9 -Ltmp4760: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4761: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1428 -Ltmp4762: - .align 4, 0x90 -Ltmp4763: ## Block address taken -LBB17_1426: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2305 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2305:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4764: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2306 22 ## /Users/dylan/github/ravi/src/lvm.c:2306:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4765: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2307 9 ## /Users/dylan/github/ravi/src/lvm.c:2307:9 - cvtsi2sdq (%rdx), %xmm0 - subsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4766: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2308 9 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4767: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2308 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1427 -Ltmp4768: -LBB17_1428: ## in Loop: Header=BB17_1426 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2308 9 ## /Users/dylan/github/ravi/src/lvm.c:2308:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4769: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4770: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4771: -LBB17_1430: ## in Loop: Header=BB17_1429 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2314 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4772: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2314 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4773: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4774: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4775: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4776: - .loc 1 2314 9 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - movq 32(%r12), %r9 -Ltmp4777: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4778: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1431 -Ltmp4779: - .align 4, 0x90 -Ltmp4780: ## Block address taken -LBB17_1429: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2311 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2311:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4781: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2312 22 ## /Users/dylan/github/ravi/src/lvm.c:2312:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4782: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2313 9 ## /Users/dylan/github/ravi/src/lvm.c:2313:9 - movq (%rdx), %rax - subq (%rcx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp4783: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2314 9 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4784: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2314 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1430 -Ltmp4785: -LBB17_1431: ## in Loop: Header=BB17_1429 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2314 9 ## /Users/dylan/github/ravi/src/lvm.c:2314:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4786: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4787: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4788: -LBB17_1433: ## in Loop: Header=BB17_1432 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2320 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4789: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2320 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4790: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4791: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4792: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4793: - .loc 1 2320 9 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - movq 32(%r12), %r9 -Ltmp4794: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4795: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1434 -Ltmp4796: - .align 4, 0x90 -Ltmp4797: ## Block address taken -LBB17_1432: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2317 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2317:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4798: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2318 22 ## /Users/dylan/github/ravi/src/lvm.c:2318:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4799: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2319 9 ## /Users/dylan/github/ravi/src/lvm.c:2319:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - mulsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4800: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2320 9 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4801: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2320 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1433 -Ltmp4802: -LBB17_1434: ## in Loop: Header=BB17_1432 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2320 9 ## /Users/dylan/github/ravi/src/lvm.c:2320:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4803: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4804: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4805: -LBB17_1436: ## in Loop: Header=BB17_1435 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2326 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4806: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2326 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4807: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4808: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4809: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4810: - .loc 1 2326 9 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - movq 32(%r12), %r9 -Ltmp4811: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4812: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1437 -Ltmp4813: - .align 4, 0x90 -Ltmp4814: ## Block address taken -LBB17_1435: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2323 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2323:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4815: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2324 22 ## /Users/dylan/github/ravi/src/lvm.c:2324:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4816: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2325 9 ## /Users/dylan/github/ravi/src/lvm.c:2325:9 - cvtsi2sdq (%rcx), %xmm0 - mulsd (%rdx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4817: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2326 9 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4818: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2326 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1436 -Ltmp4819: -LBB17_1437: ## in Loop: Header=BB17_1435 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2326 9 ## /Users/dylan/github/ravi/src/lvm.c:2326:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4820: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4821: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4822: -LBB17_1439: ## in Loop: Header=BB17_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2332 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4823: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2332 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4824: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4825: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4826: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4827: - .loc 1 2332 9 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - movq 32(%r12), %r9 -Ltmp4828: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4829: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1440 -Ltmp4830: - .align 4, 0x90 -Ltmp4831: ## Block address taken -LBB17_1438: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2329 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2329:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4832: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2330 22 ## /Users/dylan/github/ravi/src/lvm.c:2330:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4833: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2331 9 ## /Users/dylan/github/ravi/src/lvm.c:2331:9 - movq (%rcx), %rax - imulq (%rdx), %rax - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp4834: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2332 9 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4835: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2332 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1439 -Ltmp4836: -LBB17_1440: ## in Loop: Header=BB17_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2332 9 ## /Users/dylan/github/ravi/src/lvm.c:2332:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4837: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4838: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4839: -LBB17_1442: ## in Loop: Header=BB17_1441 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2338 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4840: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2338 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4841: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4842: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4843: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4844: - .loc 1 2338 9 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - movq 32(%r12), %r9 -Ltmp4845: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4846: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1443 -Ltmp4847: - .align 4, 0x90 -Ltmp4848: ## Block address taken -LBB17_1441: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2335 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2335:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4849: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2336 22 ## /Users/dylan/github/ravi/src/lvm.c:2336:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4850: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2337 9 ## /Users/dylan/github/ravi/src/lvm.c:2337:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - divsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4851: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2338 9 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4852: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2338 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1442 -Ltmp4853: -LBB17_1443: ## in Loop: Header=BB17_1441 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2338 9 ## /Users/dylan/github/ravi/src/lvm.c:2338:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4854: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4855: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4856: -LBB17_1445: ## in Loop: Header=BB17_1444 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2344 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4857: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2344 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4858: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4859: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4860: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4861: - .loc 1 2344 9 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - movq 32(%r12), %r9 -Ltmp4862: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4863: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1446 -Ltmp4864: - .align 4, 0x90 -Ltmp4865: ## Block address taken -LBB17_1444: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2341 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2341:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4866: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2342 22 ## /Users/dylan/github/ravi/src/lvm.c:2342:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4867: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2343 9 ## /Users/dylan/github/ravi/src/lvm.c:2343:9 - movsd (%rdx), %xmm0 ## xmm0 = mem[0],zero - cvtsi2sdq (%rcx), %xmm1 - divsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4868: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2344 9 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4869: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2344 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1445 -Ltmp4870: -LBB17_1446: ## in Loop: Header=BB17_1444 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2344 9 ## /Users/dylan/github/ravi/src/lvm.c:2344:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4871: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4872: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4873: -LBB17_1448: ## in Loop: Header=BB17_1447 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2350 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4874: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2350 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4875: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4876: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4877: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4878: - .loc 1 2350 9 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - movq 32(%r12), %r9 -Ltmp4879: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4880: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1449 -Ltmp4881: - .align 4, 0x90 -Ltmp4882: ## Block address taken -LBB17_1447: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2347 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2347:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4883: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2348 22 ## /Users/dylan/github/ravi/src/lvm.c:2348:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4884: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2349 9 ## /Users/dylan/github/ravi/src/lvm.c:2349:9 - cvtsi2sdq (%rdx), %xmm0 - divsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4885: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2350 9 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4886: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2350 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1448 -Ltmp4887: -LBB17_1449: ## in Loop: Header=BB17_1447 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2350 9 ## /Users/dylan/github/ravi/src/lvm.c:2350:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4888: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4889: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4890: -LBB17_1451: ## in Loop: Header=BB17_1450 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2356 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4891: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4892: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4893: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4894: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4895: - .loc 1 2356 9 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - movq 32(%r12), %r9 -Ltmp4896: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4897: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1452 -Ltmp4898: - .align 4, 0x90 -Ltmp4899: ## Block address taken -LBB17_1450: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2353 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2353:22 - movl %r13d, %eax - shrl $24, %eax - movl %eax, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %rdi, %rcx - movq %rax, %rdx - shlq $4, %rdx - addq %r9, %rdx - testb %al, %al - cmovsq %rcx, %rdx -Ltmp4900: - ##DEBUG_VALUE: rb <- %RDX - .loc 1 2354 22 ## /Users/dylan/github/ravi/src/lvm.c:2354:22 - shrl $16, %r13d - movzbl %r13b, %eax - andl $127, %r13d - shlq $4, %r13 - addq %rdi, %r13 - movq %rax, %rcx - shlq $4, %rcx - addq %r9, %rcx - testb %al, %al - cmovsq %r13, %rcx -Ltmp4901: - ##DEBUG_VALUE: rc <- %RCX - .loc 1 2355 9 ## /Users/dylan/github/ravi/src/lvm.c:2355:9 - cvtsi2sdq (%rdx), %xmm0 - cvtsi2sdq (%rcx), %xmm1 - divsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movl $3, 8(%r15) -Ltmp4902: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2356 9 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4903: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1451 -Ltmp4904: -LBB17_1452: ## in Loop: Header=BB17_1450 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2356 9 ## /Users/dylan/github/ravi/src/lvm.c:2356:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4905: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4906: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4907: -LBB17_1455: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movl %r14d, -88(%rbp) ## 4-byte Spill -Ltmp4908: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, -120(%rbp) ## 8-byte Spill - movq %rcx, -80(%rbp) ## 8-byte Spill -Ltmp4909: - .align 4, 0x90 -LBB17_1456: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1453 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%rbx), %eax -Ltmp4910: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_1468 -Ltmp4911: -## BB#1457: ## in Loop: Header=BB17_1456 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cmpl $3, %eax - je LBB17_1458 -Ltmp4912: -## BB#1462: ## in Loop: Header=BB17_1456 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_1467 -Ltmp4913: -## BB#1463: ## in Loop: Header=BB17_1456 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq %r11, %r13 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %r14 -Ltmp4914: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB17_1465 -Ltmp4915: -## BB#1464: ## in Loop: Header=BB17_1456 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB17_1466 -Ltmp4916: - .align 4, 0x90 -LBB17_1465: ## in Loop: Header=BB17_1456 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp4917: -LBB17_1466: ## in Loop: Header=BB17_1456 Depth=3 - movq %r13, %r11 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] -Ltmp4918: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp4919: - .loc 1 2361 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2361:13 - movq %r14, %rbx -Ltmp4920: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - je LBB17_1456 - jmp LBB17_1467 -Ltmp4921: -LBB17_1471: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq %r11, 40(%r12) - movq %rdi, %r12 -Ltmp4922: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2364 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4923: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4924: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4925: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4926: - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq 32(%r12), %r9 -Ltmp4927: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4928: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1472 -Ltmp4929: -LBB17_1468: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB17_1469 -Ltmp4930: -LBB17_1458: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp4931: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -128(%rbp) ## 8-byte Spill -Ltmp4932: - ##DEBUG_VALUE: n <- [%RBP+-128] - movq %r11, %rbx - callq _floor - movq %rbx, %r11 -Ltmp4933: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -128(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_1467 - jp LBB17_1467 -Ltmp4934: -## BB#1459: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_1467 -Ltmp4935: -## BB#1460: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_1467 -Ltmp4936: -## BB#1461: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvttsd2si %xmm0, %rax -Ltmp4937: -LBB17_1469: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %rcx - movq %rcx, %r8 - movq -80(%rbp), %rcx ## 8-byte Reload - movq %r12, %rdi -Ltmp4938: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -120(%rbp), %r9 ## 8-byte Reload - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp4939: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movl -88(%rbp), %r14d ## 4-byte Reload - jmp LBB17_1470 -Ltmp4940: - .align 4, 0x90 -Ltmp4941: ## Block address taken -LBB17_1453: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1456 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %rcx - movq %rdi, %r12 -Ltmp4942: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2359 22 ## /Users/dylan/github/ravi/src/lvm.c:2359:22 - shrl $24, %r13d - shlq $4, %r13 - leaq (%r9,%r13), %rbx -Ltmp4943: - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: luaV_tointeger:obj <- %RBX - .loc 1 2361 13 ## /Users/dylan/github/ravi/src/lvm.c:2361:13 - cmpl $19, 8(%r9,%r13) - jne LBB17_1455 -Ltmp4944: -## BB#1454: ## %.thread - ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %RBX - movq (%rbx), %rax -Ltmp4945: - ##DEBUG_VALUE: j <- %RAX - movq %r12, %rdi -Ltmp4946: - ##DEBUG_VALUE: luaV_execute:k <- %RDI -LBB17_1470: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2361 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2361:47 - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp4947: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2364 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4948: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2364 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - testl %r14d, %r14d - movl $0, %r14d - movq %rcx, %r12 - jne LBB17_1471 -Ltmp4949: -LBB17_1472: ## in Loop: Header=BB17_1453 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4950: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4951: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4952: -LBB17_1475: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: rb <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_1477 -Ltmp4953: -## BB#1476: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: rb <- %RBX - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 - jmp LBB17_1485 -Ltmp4954: -LBB17_1487: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2372 9 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4955: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2372 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4956: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4957: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4958: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4959: - .loc 1 2372 9 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - movq 32(%r12), %r9 -Ltmp4960: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4961: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1488 -Ltmp4962: -LBB17_1477: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: rb <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1597 -Ltmp4963: -## BB#1478: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - ##DEBUG_VALUE: rb <- %RBX - movl %r14d, -88(%rbp) ## 4-byte Spill -Ltmp4964: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - movq %r9, %r13 - movq %r11, %r14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp4965: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp4966: - cmpl $4, %esi - jne LBB17_1480 -Ltmp4967: -## BB#1479: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - shrl $24, %ecx - jmp LBB17_1481 -Ltmp4968: -LBB17_1480: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq 16(%rdx), %rcx -Ltmp4969: -LBB17_1481: ## in Loop: Header=BB17_1473 Depth=2 - movq %r14, %r11 - movq %r13, %r9 - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp4970: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %r8 -Ltmp4971: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp4972: - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - jne LBB17_1597 -Ltmp4973: -## BB#1482: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_1484 -Ltmp4974: -## BB#1483: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1485 -Ltmp4975: -LBB17_1484: ## %select.false9560 - ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movd %rax, %xmm0 -Ltmp4976: -LBB17_1485: ## %select.end9559 - ## in Loop: Header=BB17_1473 Depth=2 - movq %r12, %rdi -Ltmp4977: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 -Ltmp4978: - movd %xmm0, %rax - jmp LBB17_1486 -Ltmp4979: - .align 4, 0x90 -Ltmp4980: ## Block address taken -LBB17_1473: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, %r12 -Ltmp4981: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2367 22 ## /Users/dylan/github/ravi/src/lvm.c:2367:22 - shrl $24, %r13d - shlq $4, %r13 - leaq (%r9,%r13), %rbx -Ltmp4982: - ##DEBUG_VALUE: rb <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r9,%r13), %eax -Ltmp4983: - .loc 1 2369 13 ## /Users/dylan/github/ravi/src/lvm.c:2369:13 - cmpl $3, %eax - jne LBB17_1475 -Ltmp4984: -## BB#1474: ## %.thread706 - ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: rb <- %RBX - movq (%rbx), %rax - movq %r12, %rdi -Ltmp4985: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload -Ltmp4986: -LBB17_1486: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2369 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2369:46 - movq %rax, (%r15) - movl $3, 8(%r15) -Ltmp4987: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2372 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp4988: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2372 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1487 -Ltmp4989: -LBB17_1488: ## in Loop: Header=BB17_1473 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2372 9 ## /Users/dylan/github/ravi/src/lvm.c:2372:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp4990: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp4991: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp4992: -LBB17_1491: ## in Loop: Header=BB17_1489 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2381 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp4993: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2381 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp4994: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp4995: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp4996: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp4997: - .loc 1 2381 9 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - movq 32(%r12), %r9 -Ltmp4998: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp4999: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1492 -Ltmp5000: - .align 4, 0x90 -Ltmp5001: ## Block address taken -LBB17_1489: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2375 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2375:22 - shrl $24, %r13d - .loc 1 2376 13 ## /Users/dylan/github/ravi/src/lvm.c:2376:13 -Ltmp5002: - shlq $4, %r13 -Ltmp5003: - .loc 1 2376 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2376:13 - cmpl $85, 8(%r9,%r13) - jne LBB17_1543 -Ltmp5004: -## BB#1490: ## in Loop: Header=BB17_1489 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2377 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2377:11 - movq (%r9,%r13), %rax - movq 8(%r9,%r13), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp5005: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2381 9 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5006: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2381 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1491 -Ltmp5007: -LBB17_1492: ## in Loop: Header=BB17_1489 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2381 9 ## /Users/dylan/github/ravi/src/lvm.c:2381:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5008: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5009: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5010: -LBB17_1495: ## in Loop: Header=BB17_1493 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2390 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5011: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2390 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5012: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5013: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5014: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5015: - .loc 1 2390 9 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - movq 32(%r12), %r9 -Ltmp5016: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5017: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1496 -Ltmp5018: - .align 4, 0x90 -Ltmp5019: ## Block address taken -LBB17_1493: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2384 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2384:22 - shrl $24, %r13d - .loc 1 2385 13 ## /Users/dylan/github/ravi/src/lvm.c:2385:13 -Ltmp5020: - shlq $4, %r13 -Ltmp5021: - .loc 1 2385 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2385:13 - cmpl $101, 8(%r9,%r13) - jne LBB17_1548 -Ltmp5022: -## BB#1494: ## in Loop: Header=BB17_1493 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2386 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2386:11 - movq (%r9,%r13), %rax - movq 8(%r9,%r13), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp5023: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2390 9 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5024: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2390 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1495 -Ltmp5025: -LBB17_1496: ## in Loop: Header=BB17_1493 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2390 9 ## /Users/dylan/github/ravi/src/lvm.c:2390:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5026: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5027: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5028: -LBB17_1499: ## in Loop: Header=BB17_1497 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2399 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5029: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2399 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5030: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5031: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5032: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5033: - .loc 1 2399 9 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - movq 32(%r12), %r9 -Ltmp5034: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5035: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1500 -Ltmp5036: - .align 4, 0x90 -Ltmp5037: ## Block address taken -LBB17_1497: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2393 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2393:22 - shrl $24, %r13d - .loc 1 2394 13 ## /Users/dylan/github/ravi/src/lvm.c:2394:13 -Ltmp5038: - shlq $4, %r13 -Ltmp5039: - .loc 1 2394 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2394:13 - cmpl $69, 8(%r9,%r13) - jne LBB17_1538 -Ltmp5040: -## BB#1498: ## in Loop: Header=BB17_1497 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2395 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2395:11 - movq (%r9,%r13), %rax - movq 8(%r9,%r13), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp5041: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2399 9 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5042: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2399 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1499 -Ltmp5043: -LBB17_1500: ## in Loop: Header=BB17_1497 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2399 9 ## /Users/dylan/github/ravi/src/lvm.c:2399:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5044: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5045: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5046: -LBB17_1503: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp5047: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r12, -80(%rbp) ## 8-byte Spill - .loc 1 2403 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2403:13 -Ltmp5048: - movq %r15, %rbx - jmp LBB17_1504 - .align 4, 0x90 -LBB17_1515: ## %._crit_edge.6282 - ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp5049: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax - leaq -56(%rbp), %rbx -Ltmp5050: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq %r13, %r11 - movq %r12, %r9 -Ltmp5051: -LBB17_1504: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1501 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB17_1516 -## BB#1505: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r9, %r12 - movq %r11, %r13 - cmpl $3, %eax - je LBB17_1506 -## BB#1510: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 -Ltmp5052: - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB17_1598 -## BB#1511: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5053: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - ##DEBUG_VALUE: luaV_tointeger:v <- [%RSI+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5054: - cmpl $4, %esi - jne LBB17_1513 -## BB#1512: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] -Ltmp5055: - ##DEBUG_VALUE: luaV_tointeger:v <- undef - shrl $24, %ecx - jmp LBB17_1514 - .align 4, 0x90 -LBB17_1513: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - movq 16(%rdx), %rcx -LBB17_1514: ## in Loop: Header=BB17_1504 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:v <- undef - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp5056: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB17_1515 - jmp LBB17_1598 -Ltmp5057: -LBB17_1519: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2406 9 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5058: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2406 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5059: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5060: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5061: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5062: - .loc 1 2406 9 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - movq 32(%r12), %r9 -Ltmp5063: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5064: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1520 -Ltmp5065: -LBB17_1516: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp5066: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %rcx - movq %rcx, %r8 - jmp LBB17_1517 -Ltmp5067: -LBB17_1506: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp5068: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -88(%rbp) ## 8-byte Spill -Ltmp5069: - ##DEBUG_VALUE: n <- [%RBP+-88] - callq _floor -Ltmp5070: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -88(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB17_1598 - jp LBB17_1598 -Ltmp5071: -## BB#1507: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI17_0(%rip), %xmm0 - jb LBB17_1598 -Ltmp5072: -## BB#1508: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movsd LCPI17_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB17_1598 -## BB#1509: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - cvttsd2si %xmm0, %rax -Ltmp5073: - .loc 1 1291 5 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %rcx - movq %rcx, %r8 - movq %r13, %r11 - movq %r12, %r9 -Ltmp5074: -LBB17_1517: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp5075: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -104(%rbp), %r10 ## 8-byte Reload -Ltmp5076: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - jmp LBB17_1518 -Ltmp5077: - .align 4, 0x90 -Ltmp5078: ## Block address taken -LBB17_1501: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1504 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2403 13 ## /Users/dylan/github/ravi/src/lvm.c:2403:13 - movl 8(%r15), %eax - cmpl $19, %eax - jne LBB17_1503 -Ltmp5079: -## BB#1502: ## %.thread709 - ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq (%r15), %rax -Ltmp5080: - ##DEBUG_VALUE: j <- %RAX -LBB17_1518: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2403 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2403:47 - movq %rax, (%r15) - movl $19, 8(%r15) -Ltmp5081: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2406 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5082: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2406 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1519 -Ltmp5083: -LBB17_1520: ## in Loop: Header=BB17_1501 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2406 9 ## /Users/dylan/github/ravi/src/lvm.c:2406:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5084: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5085: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5086: -LBB17_1523: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB17_1525 -Ltmp5087: -## BB#1524: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r15), %xmm0 - jmp LBB17_1533 -Ltmp5088: -LBB17_1535: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2413 9 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5089: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2413 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5090: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5091: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5092: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5093: - .loc 1 2413 9 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq 32(%r12), %r9 -Ltmp5094: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5095: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1536 -Ltmp5096: -LBB17_1525: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB17_1599 -Ltmp5097: -## BB#1526: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %rdi, -96(%rbp) ## 8-byte Spill -Ltmp5098: - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq %r8, %r13 - movq %r12, -80(%rbp) ## 8-byte Spill - movl %r14d, -88(%rbp) ## 4-byte Spill - movq %r10, %r12 -Ltmp5099: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - movq %r9, %r14 - movq %r11, %rbx - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5100: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5101: - cmpl $4, %esi - jne LBB17_1528 -Ltmp5102: -## BB#1527: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - shrl $24, %ecx - jmp LBB17_1529 -Ltmp5103: -LBB17_1528: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R12 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - movq 16(%rdx), %rcx -Ltmp5104: -LBB17_1529: ## in Loop: Header=BB17_1521 Depth=2 - movq %rbx, %r11 - movq %r14, %r9 - movq %r12, %r10 -Ltmp5105: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r13, %r8 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- [%RBP+-96] - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5106: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - movl -88(%rbp), %r14d ## 4-byte Reload - movq -80(%rbp), %r12 ## 8-byte Reload - movq -96(%rbp), %rdi ## 8-byte Reload -Ltmp5107: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - jne LBB17_1599 -Ltmp5108: -## BB#1530: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB17_1532 -Ltmp5109: -## BB#1531: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - cvtsi2sdq %rax, %xmm0 - jmp LBB17_1533 -Ltmp5110: -LBB17_1532: ## %select.false9616 - ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movd %rax, %xmm0 -Ltmp5111: -LBB17_1533: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB17_1534 -Ltmp5112: - .align 4, 0x90 -Ltmp5113: ## Block address taken -LBB17_1521: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp5114: - .loc 1 2410 13 ## /Users/dylan/github/ravi/src/lvm.c:2410:13 - cmpl $3, %eax - jne LBB17_1523 -Ltmp5115: -## BB#1522: ## %.thread712 - ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq (%r15), %rax -Ltmp5116: -LBB17_1534: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2410 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2410:46 - movq %rax, (%r15) - movl $3, 8(%r15) -Ltmp5117: - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - .loc 1 2413 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5118: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2413 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1535 -Ltmp5119: -LBB17_1536: ## in Loop: Header=BB17_1521 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2413 9 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5120: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5121: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5122: -LBB17_1540: ## in Loop: Header=BB17_1537 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2418 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5123: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2418 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5124: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5125: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5126: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5127: - .loc 1 2418 9 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - movq 32(%r12), %r9 -Ltmp5128: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5129: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1541 -Ltmp5130: - .align 4, 0x90 -Ltmp5131: ## Block address taken -LBB17_1537: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2416 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2416:13 - cmpl $69, 8(%r15) - jne LBB17_1538 -Ltmp5132: -## BB#1539: ## in Loop: Header=BB17_1537 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2418 9 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5133: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2418 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1540 -Ltmp5134: -LBB17_1541: ## in Loop: Header=BB17_1537 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2418 9 ## /Users/dylan/github/ravi/src/lvm.c:2418:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5135: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5136: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5137: -LBB17_1545: ## in Loop: Header=BB17_1542 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2423 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5138: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2423 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5139: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5140: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5141: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5142: - .loc 1 2423 9 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - movq 32(%r12), %r9 -Ltmp5143: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5144: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1546 -Ltmp5145: - .align 4, 0x90 -Ltmp5146: ## Block address taken -LBB17_1542: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2421 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2421:13 - cmpl $85, 8(%r15) - jne LBB17_1543 -Ltmp5147: -## BB#1544: ## in Loop: Header=BB17_1542 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2423 9 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5148: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2423 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1545 -Ltmp5149: -LBB17_1546: ## in Loop: Header=BB17_1542 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2423 9 ## /Users/dylan/github/ravi/src/lvm.c:2423:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5150: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5151: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5152: -LBB17_1550: ## in Loop: Header=BB17_1547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2428 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5153: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2428 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5154: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5155: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5156: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5157: - .loc 1 2428 9 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - movq 32(%r12), %r9 -Ltmp5158: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5159: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1551 -Ltmp5160: - .align 4, 0x90 -Ltmp5161: ## Block address taken -LBB17_1547: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2426 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2426:13 - cmpl $101, 8(%r15) - jne LBB17_1548 -Ltmp5162: -## BB#1549: ## in Loop: Header=BB17_1547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2428 9 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5163: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2428 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1550 -Ltmp5164: -LBB17_1551: ## in Loop: Header=BB17_1547 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2428 9 ## /Users/dylan/github/ravi/src/lvm.c:2428:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5165: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5166: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5167: -LBB17_1556: ## in Loop: Header=BB17_1552 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2433 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5168: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2433 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5169: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5170: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5171: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5172: - .loc 1 2433 9 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - movq 32(%r12), %r9 -Ltmp5173: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5174: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1557 -Ltmp5175: - .align 4, 0x90 -Ltmp5176: ## Block address taken -LBB17_1552: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2431 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2431:14 - movl 8(%r15), %eax - testl %eax, %eax - je LBB17_1555 -Ltmp5177: -## BB#1553: ## in Loop: Header=BB17_1552 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2431 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2431:29 - andl $15, %eax - cmpl $4, %eax - jne LBB17_1554 -Ltmp5178: -LBB17_1555: ## in Loop: Header=BB17_1552 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2433 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5179: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2433 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1556 -Ltmp5180: -LBB17_1557: ## in Loop: Header=BB17_1552 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2433 9 ## /Users/dylan/github/ravi/src/lvm.c:2433:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5181: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5182: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5183: -LBB17_1562: ## in Loop: Header=BB17_1558 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2438 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - movq %r11, 40(%r12) - movq %r12, -80(%rbp) ## 8-byte Spill - movq %rdi, %r12 -Ltmp5184: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2438 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - movq %r10, %rdi - movq %r11, %r14 - movq %r10, %rbx -Ltmp5185: - ##DEBUG_VALUE: luaV_execute:L <- %RBX - movq %r8, %r15 - callq _luaG_traceexec - movq %r12, %rdi -Ltmp5186: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq -80(%rbp), %r12 ## 8-byte Reload - movq %r15, %r8 - movq %rbx, %r10 -Ltmp5187: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r14, %r11 -Ltmp5188: - .loc 1 2438 9 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - movq 32(%r12), %r9 -Ltmp5189: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5190: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1563 -Ltmp5191: - .align 4, 0x90 -Ltmp5192: ## Block address taken -LBB17_1558: ## Parent Loop BB17_1 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2436 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2436:14 - movl 8(%r15), %eax - testl %eax, %eax - je LBB17_1561 -Ltmp5193: -## BB#1559: ## in Loop: Header=BB17_1558 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2436 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2436:29 - andl $31, %eax - cmpl $6, %eax - jne LBB17_1560 -Ltmp5194: -LBB17_1561: ## in Loop: Header=BB17_1558 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - .loc 1 2438 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5195: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2438 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1562 -Ltmp5196: -LBB17_1563: ## in Loop: Header=BB17_1558 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - ##DEBUG_VALUE: i <- %R13D - .loc 1 2438 9 ## /Users/dylan/github/ravi/src/lvm.c:2438:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5197: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5198: - ##DEBUG_VALUE: ra <- %R15 - leaq (%r8,%rax,8), %rcx - jmpq *(%rcx) -Ltmp5199: -LBB17_1580: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - movq %r8, %rbx - .loc 1 2449 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 -Ltmp5200: - movq %r11, 40(%rbx) - .loc 1 2449 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 -Ltmp5201: - movq %r10, %rdi - movq %r11, %r15 - movq %r10, %r14 -Ltmp5202: - ##DEBUG_VALUE: luaV_execute:L <- %R14 - callq _luaG_traceexec - movq %r14, %r10 -Ltmp5203: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - movq %r15, %r11 -Ltmp5204: - .loc 1 2449 9 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 - movq 32(%rbx), %r9 -Ltmp5205: - ##DEBUG_VALUE: luaV_execute:base <- %R9 - movq %rbx, %r8 - movzbl 200(%r10), %r14d - andl $12, %r14d -Ltmp5206: - ##DEBUG_VALUE: luaV_execute:mask <- %R14D - jmp LBB17_1581 -Ltmp5207: - .align 4, 0x90 -Ltmp5208: ## Block address taken -LBB17_1564: ## Parent Loop BB17_1 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB17_1573 Depth 3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r12, %r8 - movq %rdi, %r12 -Ltmp5209: - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2441 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2441:14 - movl 8(%r15), %eax - testl %eax, %eax - movabsq $4294967296, %rbx ## imm = 0x100000000 - je LBB17_1579 -Ltmp5210: -## BB#1565: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2442 28 ## /Users/dylan/github/ravi/src/lvm.c:2442:28 - shrl $16, %r13d - .loc 1 2443 17 ## /Users/dylan/github/ravi/src/lvm.c:2443:17 -Ltmp5211: - shlq $4, %r13 - cmpl $68, 8(%r12,%r13) - jne LBB17_1566 -Ltmp5212: -## BB#1567: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2445 26 ## /Users/dylan/github/ravi/src/lvm.c:2445:26 - movq (%r12,%r13), %rdx -Ltmp5213: - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:name <- %RDX - .loc 1 1119 11 ## /Users/dylan/github/ravi/src/lvm.c:1119:11 - andl $15, %eax - .loc 1 1119 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1119:3 - cmpl $7, %eax - je LBB17_1570 -Ltmp5214: -## BB#1568: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - cmpl $5, %eax - jne LBB17_1600 -Ltmp5215: -## BB#1569: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 1121 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1121:10 - movq (%r15), %rax - .loc 1 1121 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1121:21 - addq $40, %rax - jmp LBB17_1571 -Ltmp5216: - .align 4, 0x90 -LBB17_1570: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - .loc 1 1124 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1124:10 - movq (%r15), %rax - .loc 1 1124 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1124:21 - addq $16, %rax -Ltmp5217: -LBB17_1571: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - movq (%rax), %rax -Ltmp5218: - .loc 1 1129 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1129:10 - testq %rax, %rax - je LBB17_1600 -Ltmp5219: -## BB#1572: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - .loc 1 1132 16 ## /Users/dylan/github/ravi/src/lvm.c:1132:16 - movq 24(%r10), %rcx -Ltmp5220: - ##DEBUG_VALUE: check_usertype:L <- %R10 - movq 64(%rcx), %rsi -Ltmp5221: - ##DEBUG_VALUE: check_usertype:reg <- %RSI - .loc 13 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdx), %ecx - andl 80(%rsi), %ecx - shlq $5, %rcx - addq 24(%rsi), %rcx -Ltmp5222: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - .align 4, 0x90 -LBB17_1573: ## Parent Loop BB17_1 Depth=1 - ## Parent Loop BB17_1564 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %R10 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%rcx), %rsi - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %esi - jne LBB17_1575 -Ltmp5223: -## BB#1574: ## in Loop: Header=BB17_1573 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %R10 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rdx, 16(%rcx) - je LBB17_1577 -Ltmp5224: -LBB17_1575: ## in Loop: Header=BB17_1573 Depth=3 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %R10 - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rsi, %rdi - sarq $32, %rdi - shlq $5, %rdi - addq %rdi, %rcx -Ltmp5225: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - .loc 1 1133 27 ## /Users/dylan/github/ravi/src/lvm.c:1133:27 - cmpq %rbx, %rsi - jae LBB17_1573 -Ltmp5226: -## BB#1576: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - movq _luaO_nilobject_@GOTPCREL(%rip), %rcx -Ltmp5227: -LBB17_1577: ## %luaH_getshortstr.exit.i - ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %R10 - ##DEBUG_VALUE: check_usertype:metatab <- %RCX - .loc 1 1134 29 ## /Users/dylan/github/ravi/src/lvm.c:1134:29 - cmpl $69, 8(%rcx) - jne LBB17_1600 -Ltmp5228: -## BB#1578: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %R10 - ##DEBUG_VALUE: check_usertype:metatab <- %RCX - .loc 1 1134 71 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1134:71 - cmpq %rax, (%rcx) - jne LBB17_1600 -Ltmp5229: -LBB17_1579: ## %check_usertype.exit - ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:pc <- %R11 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - .loc 1 2449 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 - movl (%r11), %r13d - addq $4, %r11 -Ltmp5230: - ##DEBUG_VALUE: i <- %R13D - .loc 1 2449 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 - testl %r14d, %r14d - movl $0, %r14d - jne LBB17_1580 -Ltmp5231: -LBB17_1581: ## in Loop: Header=BB17_1564 Depth=2 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_execute:cl <- [%RBP+-112] - ##DEBUG_VALUE: luaV_execute:k <- %R12 - ##DEBUG_VALUE: i <- %R13D - .loc 1 2449 9 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 - movl %r13d, %eax - andl $511, %eax ## imm = 0x1FF -Ltmp5232: - ##DEBUG_VALUE: op <- %EAX - movl %r13d, %r15d - shrl $9, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r9, %r15 -Ltmp5233: - ##DEBUG_VALUE: ra <- %R15 - .loc 1 1291 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1291:5 - leaq _luaV_execute.dispatch_table(%rip), %rcx - movq %rcx, %rdx -Ltmp5234: - .loc 1 2449 9 ## /Users/dylan/github/ravi/src/lvm.c:2449:9 - leaq (%rdx,%rax,8), %rcx - movq %r12, %rdi -Ltmp5235: - ##DEBUG_VALUE: luaV_execute:k <- %RDI - movq %r8, %r12 - movq %rdx, %r8 - jmpq *(%rcx) -Ltmp5236: -LBB17_1582: - .loc 1 2453 1 ## /Users/dylan/github/ravi/src/lvm.c:2453:1 - addq $120, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB17_1027: ## %.loopexit -Ltmp5237: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1871 21 ## /Users/dylan/github/ravi/src/lvm.c:1871:21 - leaq L_.str.5(%rip), %rsi - jmp LBB17_1028 -Ltmp5238: -LBB17_1300: ## %.loopexit751 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 2164 13 ## /Users/dylan/github/ravi/src/lvm.c:2164:13 - leaq L_.str.14(%rip), %rsi -Ltmp5239: -LBB17_1028: ## %.loopexit - .loc 1 1871 21 ## /Users/dylan/github/ravi/src/lvm.c:1871:21 - xorl %eax, %eax - movq -104(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp5240: -LBB17_1598: ## %.loopexit749 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 2405 11 ## /Users/dylan/github/ravi/src/lvm.c:2405:11 - leaq L_.str.26(%rip), %rsi - jmp LBB17_1028 -Ltmp5241: -LBB17_1595: ## %.loopexit752 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 2209 11 ## /Users/dylan/github/ravi/src/lvm.c:2209:11 - leaq L_.str.16(%rip), %rsi - jmp LBB17_1028 -Ltmp5242: -LBB17_1467: ## %.loopexit750 - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 2363 11 ## /Users/dylan/github/ravi/src/lvm.c:2363:11 - leaq L_.str.21(%rip), %rsi - jmp LBB17_1028 -Ltmp5243: -LBB17_1600: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: key <- %RDX - .loc 1 2447 60 ## /Users/dylan/github/ravi/src/lvm.c:2447:60 - addq $24, %rdx -Ltmp5244: - .loc 1 2447 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2447:13 - leaq L_.str.31(%rip), %rsi - xorl %eax, %eax - movq %r10, %rdi - callq _luaG_runerror -Ltmp5245: -LBB17_45: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1329 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - leaq L_.str.3(%rip), %rsi - jmp LBB17_46 -Ltmp5246: -LBB17_1538: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2398 11 ## /Users/dylan/github/ravi/src/lvm.c:2398:11 - leaq L_.str.25(%rip), %rsi - jmp LBB17_46 -Ltmp5247: -LBB17_1543: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2380 11 ## /Users/dylan/github/ravi/src/lvm.c:2380:11 - leaq L_.str.23(%rip), %rsi - jmp LBB17_46 -Ltmp5248: -LBB17_1548: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2389 11 ## /Users/dylan/github/ravi/src/lvm.c:2389:11 - leaq L_.str.24(%rip), %rsi - jmp LBB17_46 -Ltmp5249: -LBB17_1592: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - .loc 1 1887 21 ## /Users/dylan/github/ravi/src/lvm.c:1887:21 - leaq L_.str.4(%rip), %rsi - jmp LBB17_1028 -Ltmp5250: -LBB17_278: ## %.loopexit742 - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - leaq L_.str.5(%rip), %rsi - jmp LBB17_46 -Ltmp5251: -LBB17_1376: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2227 11 ## /Users/dylan/github/ravi/src/lvm.c:2227:11 - leaq L_.str.18(%rip), %rsi - jmp LBB17_46 -Ltmp5252: -LBB17_1384: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2237 11 ## /Users/dylan/github/ravi/src/lvm.c:2237:11 - leaq L_.str.19(%rip), %rsi - jmp LBB17_46 -Ltmp5253: -LBB17_1392: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2247 11 ## /Users/dylan/github/ravi/src/lvm.c:2247:11 - leaq L_.str.20(%rip), %rsi - jmp LBB17_46 -Ltmp5254: -LBB17_1554: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2432 11 ## /Users/dylan/github/ravi/src/lvm.c:2432:11 - leaq L_.str.28(%rip), %rsi - jmp LBB17_46 -Ltmp5255: -LBB17_1560: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2437 11 ## /Users/dylan/github/ravi/src/lvm.c:2437:11 - leaq L_.str.29(%rip), %rsi - jmp LBB17_46 -Ltmp5256: -LBB17_1327: - ##DEBUG_VALUE: luaV_execute:L <- %R12 - .loc 1 2189 13 ## /Users/dylan/github/ravi/src/lvm.c:2189:13 - leaq L_.str.15(%rip), %rsi - xorl %eax, %eax - movq %r12, %rdi - callq _luaG_runerror -Ltmp5257: -LBB17_1566: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2444 13 ## /Users/dylan/github/ravi/src/lvm.c:2444:13 - leaq L_.str.30(%rip), %rsi - jmp LBB17_46 -Ltmp5258: -LBB17_1583: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - leaq L_.str(%rip), %rdx - movq %r10, %rdi - movq %rbx, %rsi - callq _luaG_typeerror -Ltmp5259: -LBB17_676: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_mod:L <- %R10 - .loc 1 842 7 ## /Users/dylan/github/ravi/src/lvm.c:842:7 - leaq L_.str.9(%rip), %rsi - jmp LBB17_46 -Ltmp5260: -LBB17_713: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: luaV_div:L <- %R10 - .loc 1 822 7 ## /Users/dylan/github/ravi/src/lvm.c:822:7 - leaq L_.str.8(%rip), %rsi - jmp LBB17_46 -Ltmp5261: -LBB17_1594: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - ##DEBUG_VALUE: rb <- %RSI - .loc 1 2100 9 ## /Users/dylan/github/ravi/src/lvm.c:2100:9 - leaq L_.str.10(%rip), %rdx - movq %r10, %rdi - callq _luaG_typeerror -Ltmp5262: -LBB17_258: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1342 9 ## /Users/dylan/github/ravi/src/lvm.c:1342:9 - leaq L_.str.4(%rip), %rsi - jmp LBB17_46 -Ltmp5263: -LBB17_1584: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1367 9 ## /Users/dylan/github/ravi/src/lvm.c:1367:9 - leaq L_.str.10(%rip), %rdx - movq %r10, %rdi - movq %r15, %rsi - callq _luaG_typeerror -Ltmp5264: -LBB17_1585: - ##DEBUG_VALUE: luaV_execute:L <- [%RBP+-104] - ##DEBUG_VALUE: rb <- %RSI - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - leaq L_.str.10(%rip), %rdx - movq -104(%rbp), %rdi ## 8-byte Reload - callq _luaG_typeerror -Ltmp5265: -LBB17_1596: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2221 11 ## /Users/dylan/github/ravi/src/lvm.c:2221:11 - leaq L_.str.17(%rip), %rsi - jmp LBB17_46 -Ltmp5266: -LBB17_1597: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2371 11 ## /Users/dylan/github/ravi/src/lvm.c:2371:11 - leaq L_.str.22(%rip), %rsi - jmp LBB17_46 -Ltmp5267: -LBB17_1599: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 2412 11 ## /Users/dylan/github/ravi/src/lvm.c:2412:11 - leaq L_.str.27(%rip), %rsi - jmp LBB17_46 -Ltmp5268: -LBB17_1589: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1800 13 ## /Users/dylan/github/ravi/src/lvm.c:1800:13 - leaq L_.str.11(%rip), %rsi - jmp LBB17_46 -Ltmp5269: -LBB17_1590: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1803 13 ## /Users/dylan/github/ravi/src/lvm.c:1803:13 - leaq L_.str.12(%rip), %rsi - jmp LBB17_46 -Ltmp5270: -LBB17_1591: - ##DEBUG_VALUE: luaV_execute:L <- %R10 - .loc 1 1806 13 ## /Users/dylan/github/ravi/src/lvm.c:1806:13 - leaq L_.str.13(%rip), %rsi -Ltmp5271: -LBB17_46: - .loc 1 1329 9 ## /Users/dylan/github/ravi/src/lvm.c:1329:9 - xorl %eax, %eax - movq %r10, %rdi - callq _luaG_runerror -Ltmp5272: -Lfunc_end17: - .cfi_endproc - - .globl _ravi_dump_value - .align 4, 0x90 -_ravi_dump_value: ## @ravi_dump_value -Lfunc_begin18: - .loc 1 2455 0 ## /Users/dylan/github/ravi/src/lvm.c:2455:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5273: - .cfi_def_cfa_offset 16 -Ltmp5274: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5275: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2457 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2457:7 -Ltmp5276: - movl 8(%rsi), %eax -Ltmp5277: - .loc 1 2457 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2457:7 - cmpl $22, %eax - je LBB18_4 -Ltmp5278: -## BB#1: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - cmpl $70, %eax - je LBB18_5 -Ltmp5279: -## BB#2: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - cmpl $102, %eax - jne LBB18_6 -Ltmp5280: -## BB#3: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2458 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2458:5 - leaq L_str.83(%rip), %rdi -Ltmp5281: - popq %rbp - jmp _puts ## TAILCALL -LBB18_4: -Ltmp5282: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2460 5 ## /Users/dylan/github/ravi/src/lvm.c:2460:5 - leaq L_str.82(%rip), %rdi -Ltmp5283: - popq %rbp - jmp _puts ## TAILCALL -LBB18_5: -Ltmp5284: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2462 5 ## /Users/dylan/github/ravi/src/lvm.c:2462:5 - leaq L_str.81(%rip), %rdi -Ltmp5285: - popq %rbp - jmp _puts ## TAILCALL -LBB18_6: -Ltmp5286: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2463 12 ## /Users/dylan/github/ravi/src/lvm.c:2463:12 - movl %eax, %ecx - andl $15, %ecx -Ltmp5287: - .loc 1 2463 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2463:12 - cmpl $6, %ecx - jne LBB18_7 -Ltmp5288: -## BB#27: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2464 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2464:5 - leaq L_str.80(%rip), %rdi -Ltmp5289: - popq %rbp - jmp _puts ## TAILCALL -LBB18_7: -Ltmp5290: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2465 37 ## /Users/dylan/github/ravi/src/lvm.c:2465:37 - movl %eax, %edx - orl $16, %edx - cmpl $84, %edx - je LBB18_10 -Ltmp5291: -## BB#8: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2465 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2465:12 - cmpl $5, %ecx - je LBB18_11 -Ltmp5292: -## BB#9: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - cmpl $4, %ecx - jne LBB18_12 -Ltmp5293: -LBB18_10: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2467 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2467:22 - movq (%rsi), %rsi -Ltmp5294: - addq $24, %rsi - .loc 1 2467 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2467:5 - leaq L_.str.36(%rip), %rdi -Ltmp5295: -LBB18_22: - .loc 1 2475 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2475:5 - xorl %eax, %eax - popq %rbp - jmp _printf ## TAILCALL -Ltmp5296: -LBB18_11: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2469 5 ## /Users/dylan/github/ravi/src/lvm.c:2469:5 - leaq L_str.79(%rip), %rdi -Ltmp5297: - popq %rbp - jmp _puts ## TAILCALL -LBB18_12: -Ltmp5298: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2470 12 ## /Users/dylan/github/ravi/src/lvm.c:2470:12 - cmpl $18, %eax - jg LBB18_15 -Ltmp5299: -## BB#13: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - movl %eax, %ecx - cmpl $3, %eax - ja LBB18_26 -Ltmp5300: -## BB#14: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - leaq LJTI18_0(%rip), %rax - movslq (%rax,%rcx,4), %rcx - addq %rax, %rcx - jmpq *%rcx -Ltmp5301: -LBB18_19: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2471 5 ## /Users/dylan/github/ravi/src/lvm.c:2471:5 - leaq L_str.78(%rip), %rdi -Ltmp5302: - popq %rbp - jmp _puts ## TAILCALL -LBB18_15: -Ltmp5303: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - cmpl $19, %eax - je LBB18_21 -Ltmp5304: -## BB#16: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - cmpl $71, %eax - je LBB18_24 -Ltmp5305: -## BB#17: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - cmpl $72, %eax - jne LBB18_26 -Ltmp5306: -## BB#18: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2483 5 ## /Users/dylan/github/ravi/src/lvm.c:2483:5 - leaq L_str.74(%rip), %rdi -Ltmp5307: - popq %rbp - jmp _puts ## TAILCALL -Ltmp5308: -LBB18_25: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2481 5 ## /Users/dylan/github/ravi/src/lvm.c:2481:5 - leaq L_str.75(%rip), %rdi -Ltmp5309: - popq %rbp - jmp _puts ## TAILCALL -Ltmp5310: -LBB18_23: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2477 5 ## /Users/dylan/github/ravi/src/lvm.c:2477:5 - leaq L_str.77(%rip), %rdi -Ltmp5311: - popq %rbp - jmp _puts ## TAILCALL -Ltmp5312: -LBB18_20: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2473 22 ## /Users/dylan/github/ravi/src/lvm.c:2473:22 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2473 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2473:5 - leaq L_.str.39(%rip), %rdi -Ltmp5313: - movb $1, %al - popq %rbp - jmp _printf ## TAILCALL -Ltmp5314: -LBB18_21: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- %RSI - .loc 1 2475 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2475:33 - movq (%rsi), %rsi -Ltmp5315: - .loc 1 2475 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2475:5 - leaq L_.str.40(%rip), %rdi -Ltmp5316: - jmp LBB18_22 -LBB18_24: -Ltmp5317: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2479 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2479:5 - leaq L_str.76(%rip), %rdi -Ltmp5318: - popq %rbp - jmp _puts ## TAILCALL -LBB18_26: -Ltmp5319: - ##DEBUG_VALUE: ravi_dump_value:L <- %RDI - .loc 1 2485 5 ## /Users/dylan/github/ravi/src/lvm.c:2485:5 - leaq L_str.73(%rip), %rdi -Ltmp5320: - popq %rbp - jmp _puts ## TAILCALL -Ltmp5321: -Lfunc_end18: - .cfi_endproc - .align 2, 0x90 -L18_0_set_19 = LBB18_19-LJTI18_0 -L18_0_set_25 = LBB18_25-LJTI18_0 -L18_0_set_23 = LBB18_23-LJTI18_0 -L18_0_set_20 = LBB18_20-LJTI18_0 -LJTI18_0: - .long L18_0_set_19 - .long L18_0_set_25 - .long L18_0_set_23 - .long L18_0_set_20 - - .globl _ravi_dump_stack - .align 4, 0x90 -_ravi_dump_stack: ## @ravi_dump_stack -Lfunc_begin19: - .loc 1 2551 0 ## /Users/dylan/github/ravi/src/lvm.c:2551:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5322: - .cfi_def_cfa_offset 16 -Ltmp5323: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5324: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp5325: - .cfi_offset %rbx, -56 -Ltmp5326: - .cfi_offset %r12, -48 -Ltmp5327: - .cfi_offset %r13, -40 -Ltmp5328: - .cfi_offset %r14, -32 -Ltmp5329: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RDI - ##DEBUG_VALUE: ravi_dump_stack:s <- %RSI - movq %rsi, %r14 -Ltmp5330: - ##DEBUG_VALUE: ravi_dump_stack:s <- %R14 - movq %rdi, %rbx -Ltmp5331: - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - .loc 1 2552 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2552:8 - movq %rbx, -48(%rbp) ## 8-byte Spill - testq %r14, %r14 -Ltmp5332: - .loc 1 2552 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2552:7 - je LBB19_45 -Ltmp5333: -## BB#1: - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - ##DEBUG_VALUE: ravi_dump_stack:s <- %R14 - .loc 1 2554 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2554:21 - movq 32(%rbx), %r15 -Ltmp5334: - ##DEBUG_VALUE: ravi_dump_stack:ci <- %R15 - .loc 1 2555 3 ## /Users/dylan/github/ravi/src/lvm.c:2555:3 - leaq L_str.71(%rip), %r12 - movq %r12, %rdi - callq _puts - .loc 1 2556 3 ## /Users/dylan/github/ravi/src/lvm.c:2556:3 - leaq L_.str.47(%rip), %rdi - xorl %eax, %eax - movq %r14, %rsi - callq _printf - .loc 1 2557 3 ## /Users/dylan/github/ravi/src/lvm.c:2557:3 - movq %r12, %rdi - callq _puts - .loc 1 2558 36 ## /Users/dylan/github/ravi/src/lvm.c:2558:36 - movq 16(%rbx), %rsi - .loc 1 2558 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2558:40 - subq 56(%rbx), %rsi - shrq $4, %rsi - .loc 1 2558 3 ## /Users/dylan/github/ravi/src/lvm.c:2558:3 - leaq L_.str.48(%rip), %rdi - xorl %eax, %eax - callq _printf - .loc 1 2559 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2559:3 - testq %r15, %r15 - je LBB19_44 -Ltmp5335: -## BB#2: - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - ##DEBUG_VALUE: ravi_dump_stack:ci <- %R15 - .loc 1 2514 68 ## /Users/dylan/github/ravi/src/lvm.c:2514:68 - leaq L_.str.57(%rip), %r13 -Ltmp5336: - .align 4, 0x90 -LBB19_3: ## %.lr.ph - ## =>This Loop Header: Depth=1 - ## Child Loop BB19_11 Depth 2 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - .loc 1 2489 20 ## /Users/dylan/github/ravi/src/lvm.c:2489:20 - movq (%r15), %rdx -Ltmp5337: - ##DEBUG_VALUE: ravi_dump_ci:func <- %RDX - .loc 1 2490 19 ## /Users/dylan/github/ravi/src/lvm.c:2490:19 - movl 8(%rdx), %ecx - andl $63, %ecx -Ltmp5338: - ##DEBUG_VALUE: ravi_dump_ci:func_type <- %ECX - .loc 1 2493 31 ## /Users/dylan/github/ravi/src/lvm.c:2493:31 - movq 56(%rbx), %rax - .loc 1 2493 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2493:26 - movq %rdx, %rsi - subq %rax, %rsi - shrq $4, %rsi -Ltmp5339: - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- %ESI - .loc 1 2496 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2496:3 - cmpl $6, %ecx -Ltmp5340: - ##DEBUG_VALUE: ravi_dump_ci:L <- %RBX - je LBB19_9 -Ltmp5341: -## BB#4: ## %.lr.ph - ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - cmpl $38, %ecx - je LBB19_8 -Ltmp5342: -## BB#5: ## %.lr.ph - ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - cmpl $22, %ecx - jne LBB19_43 -Ltmp5343: -## BB#6: ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - .loc 1 2545 3 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax - .loc 1 2498 5 ## /Users/dylan/github/ravi/src/lvm.c:2498:5 -Ltmp5344: - leaq L_.str.52(%rip), %rdi - jmp LBB19_7 -Ltmp5345: - .align 4, 0x90 -LBB19_9: ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - ##DEBUG_VALUE: ravi_dump_ci:func <- %RDX - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- %ESI - ##DEBUG_VALUE: ravi_dump_ci:L <- %RBX - movq %rsi, -56(%rbp) ## 8-byte Spill -Ltmp5346: - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2494 25 ## /Users/dylan/github/ravi/src/lvm.c:2494:25 - movq 8(%r15), %r14 - .loc 1 2506 9 ## /Users/dylan/github/ravi/src/lvm.c:2506:9 -Ltmp5347: - movq (%rdx), %rcx - .loc 1 2506 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2506:25 - movq 24(%rcx), %rcx -Ltmp5348: - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] - .loc 1 2507 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2507:20 - movq %rcx, -64(%rbp) ## 8-byte Spill - movq 32(%r15), %r12 -Ltmp5349: - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2494 29 ## /Users/dylan/github/ravi/src/lvm.c:2494:29 - leaq -16(%r14), %rbx - .loc 1 2513 20 ## /Users/dylan/github/ravi/src/lvm.c:2513:20 -Ltmp5350: - cmpq %r12, %rbx - jb LBB19_42 -Ltmp5351: -## BB#10: ## %.lr.ph.i - ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2508 17 ## /Users/dylan/github/ravi/src/lvm.c:2508:17 - subq %rax, %r14 - shrq $4, %r14 - .loc 1 2508 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2508:28 - decl %r14d - jmp LBB19_11 -Ltmp5352: -LBB19_21: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2523 39 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2523:39 - movl %eax, %edx - orl $16, %edx - cmpl $84, %edx - je LBB19_24 -Ltmp5353: -## BB#22: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2523 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2523:14 - cmpl $5, %ecx - je LBB19_25 -## BB#23: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $4, %ecx - jne LBB19_26 -LBB19_24: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2525 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2525:24 -Ltmp5354: - movq (%rbx), %rsi - addq $24, %rsi -Ltmp5355: - .loc 1 2545 3 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax - .loc 1 2525 7 ## /Users/dylan/github/ravi/src/lvm.c:2525:7 -Ltmp5356: - leaq L_.str.36(%rip), %rdi - callq _printf - jmp LBB19_41 -LBB19_25: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2527 7 ## /Users/dylan/github/ravi/src/lvm.c:2527:7 -Ltmp5357: - leaq L_str.79(%rip), %rdi - jmp LBB19_40 -LBB19_26: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2528 14 ## /Users/dylan/github/ravi/src/lvm.c:2528:14 - cmpl $18, %eax - jg LBB19_29 -## BB#27: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - movl %eax, %ecx - cmpl $3, %eax - ja LBB19_39 -## BB#28: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - leaq LJTI19_0(%rip), %rax - movq %rax, %rdx - movslq (%rdx,%rcx,4), %rax - addq %rdx, %rax - jmpq *%rax -LBB19_33: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2529 7 ## /Users/dylan/github/ravi/src/lvm.c:2529:7 -Ltmp5358: - leaq L_str.78(%rip), %rdi - jmp LBB19_40 -LBB19_29: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $19, %eax - je LBB19_35 -## BB#30: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $71, %eax - je LBB19_37 -## BB#31: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $72, %eax - jne LBB19_39 -## BB#32: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2541 7 ## /Users/dylan/github/ravi/src/lvm.c:2541:7 -Ltmp5359: - leaq L_str.74(%rip), %rdi - jmp LBB19_40 -Ltmp5360: -LBB19_38: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2539 7 ## /Users/dylan/github/ravi/src/lvm.c:2539:7 - leaq L_str.75(%rip), %rdi - jmp LBB19_40 -Ltmp5361: -LBB19_36: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2535 7 ## /Users/dylan/github/ravi/src/lvm.c:2535:7 - leaq L_str.77(%rip), %rdi - jmp LBB19_40 -Ltmp5362: -LBB19_34: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2531 24 ## /Users/dylan/github/ravi/src/lvm.c:2531:24 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2531 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2531:7 - movb $1, %al - leaq L_.str.39(%rip), %rdi - callq _printf - jmp LBB19_41 -LBB19_35: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2533 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:35 -Ltmp5363: - movq (%rbx), %rsi -Ltmp5364: - .loc 1 2545 3 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax - .loc 1 2533 7 ## /Users/dylan/github/ravi/src/lvm.c:2533:7 -Ltmp5365: - leaq L_.str.40(%rip), %rdi - callq _printf - jmp LBB19_41 -LBB19_37: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2537 7 ## /Users/dylan/github/ravi/src/lvm.c:2537:7 -Ltmp5366: - leaq L_str.76(%rip), %rdi - jmp LBB19_40 -LBB19_39: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2543 7 ## /Users/dylan/github/ravi/src/lvm.c:2543:7 -Ltmp5367: - leaq L_str.73(%rip), %rdi - jmp LBB19_40 -Ltmp5368: - .align 4, 0x90 -LBB19_11: ## Parent Loop BB19_3 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2514 59 ## /Users/dylan/github/ravi/src/lvm.c:2514:59 - movq %rbx, %rdx - subq %r12, %rdx - .loc 1 2514 68 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2514:68 - movq %r13, %rcx - leaq L_.str.56(%rip), %rax - cmoveq %rax, %rcx - .loc 1 2514 59 ## /Users/dylan/github/ravi/src/lvm.c:2514:59 - shrq $4, %rdx - .loc 1 2514 116 ## /Users/dylan/github/ravi/src/lvm.c:2514:116 - movq -48(%rbp), %rax ## 8-byte Reload - cmpq 16(%rax), %rbx - leaq L_.str.58(%rip), %r8 - je LBB19_13 -Ltmp5369: -## BB#12: ## %select.false - ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - movq %r13, %r8 -LBB19_13: ## %select.end - ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] -Ltmp5370: - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2545 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax - .loc 1 2514 5 ## /Users/dylan/github/ravi/src/lvm.c:2514:5 -Ltmp5371: - leaq L_.str.55(%rip), %rdi - movl %r14d, %esi - callq _printf - .loc 1 2515 9 ## /Users/dylan/github/ravi/src/lvm.c:2515:9 -Ltmp5372: - movl 8(%rbx), %eax -Ltmp5373: - .loc 1 2515 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2515:9 - cmpl $22, %eax - je LBB19_17 -Ltmp5374: -## BB#14: ## %select.end - ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $70, %eax - je LBB19_18 -## BB#15: ## %select.end - ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - cmpl $102, %eax - jne LBB19_19 -## BB#16: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2516 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2516:7 -Ltmp5375: - leaq L_str.83(%rip), %rdi - jmp LBB19_40 - .align 4, 0x90 -LBB19_17: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] -Ltmp5376: - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2518 7 ## /Users/dylan/github/ravi/src/lvm.c:2518:7 - leaq L_str.82(%rip), %rdi - jmp LBB19_40 -Ltmp5377: - .align 4, 0x90 -LBB19_18: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2520 7 ## /Users/dylan/github/ravi/src/lvm.c:2520:7 - leaq L_str.81(%rip), %rdi - jmp LBB19_40 - .align 4, 0x90 -LBB19_19: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2521 14 ## /Users/dylan/github/ravi/src/lvm.c:2521:14 -Ltmp5378: - movl %eax, %ecx - andl $15, %ecx -Ltmp5379: - .loc 1 2521 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2521:14 - cmpl $6, %ecx - jne LBB19_21 -## BB#20: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - .loc 1 2522 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2522:7 -Ltmp5380: - leaq L_str.80(%rip), %rdi - .align 4, 0x90 -LBB19_40: ## in Loop: Header=BB19_11 Depth=2 - .loc 1 2543 7 ## /Users/dylan/github/ravi/src/lvm.c:2543:7 -Ltmp5381: - callq _puts -Ltmp5382: -LBB19_41: ## in Loop: Header=BB19_11 Depth=2 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] - ##DEBUG_VALUE: ravi_dump_ci:base <- %R12 - .loc 1 2513 43 ## /Users/dylan/github/ravi/src/lvm.c:2513:43 - decl %r14d -Ltmp5383: - ##DEBUG_VALUE: ravi_dump_ci:i <- %R14D - .loc 1 2513 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2513:20 - addq $-16, %rbx -Ltmp5384: - .loc 1 2513 3 ## /Users/dylan/github/ravi/src/lvm.c:2513:3 - cmpq %r12, %rbx - jae LBB19_11 -Ltmp5385: -LBB19_42: ## %._crit_edge.i - ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- [%RBP+-56] - ##DEBUG_VALUE: ravi_dump_ci:L <- [%RBP+-48] - ##DEBUG_VALUE: ravi_dump_ci:p <- [%RBP+-64] - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5386: - ##DEBUG_VALUE: ravi_dump_ci:p <- %RAX - .loc 1 2547 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2547:16 - movzbl 12(%rax), %edx - .loc 1 2547 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2547:40 - movzbl 10(%rax), %ecx - .loc 1 2547 64 ## /Users/dylan/github/ravi/src/lvm.c:2547:64 - movl 36(%rax), %r8d - .loc 1 2545 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax -Ltmp5387: - leaq L_.str.59(%rip), %rdi - movq -56(%rbp), %rsi ## 8-byte Reload - callq _printf - .loc 1 2548 3 ## /Users/dylan/github/ravi/src/lvm.c:2548:3 - leaq L_str.85(%rip), %rdi - callq _puts - movq -48(%rbp), %rbx ## 8-byte Reload -Ltmp5388: - ##DEBUG_VALUE: ravi_dump_ci:L <- %RBX - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - jmp LBB19_43 -Ltmp5389: - .align 4, 0x90 -LBB19_8: ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - .loc 1 2545 3 ## /Users/dylan/github/ravi/src/lvm.c:2545:3 - xorl %eax, %eax - .loc 1 2502 5 ## /Users/dylan/github/ravi/src/lvm.c:2502:5 -Ltmp5390: - leaq L_.str.54(%rip), %rdi -Ltmp5391: -LBB19_7: ## %ravi_dump_ci.exit - ## in Loop: Header=BB19_3 Depth=1 - .loc 1 2498 5 ## /Users/dylan/github/ravi/src/lvm.c:2498:5 - callq _printf -Ltmp5392: - .loc 1 2548 3 ## /Users/dylan/github/ravi/src/lvm.c:2548:3 - leaq L_str.85(%rip), %rdi - .loc 1 2499 5 ## /Users/dylan/github/ravi/src/lvm.c:2499:5 -Ltmp5393: - callq _puts -Ltmp5394: -LBB19_43: ## %ravi_dump_ci.exit - ## in Loop: Header=BB19_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:L <- %RBX - .loc 1 2561 14 ## /Users/dylan/github/ravi/src/lvm.c:2561:14 - movq 16(%r15), %r15 -Ltmp5395: - ##DEBUG_VALUE: ravi_dump_ci:ci <- %R15 - ##DEBUG_VALUE: ravi_dump_stack:ci <- %R15 - .loc 1 2559 3 ## /Users/dylan/github/ravi/src/lvm.c:2559:3 - testq %r15, %r15 - jne LBB19_3 -Ltmp5396: -LBB19_44: ## %._crit_edge - .loc 1 2563 3 ## /Users/dylan/github/ravi/src/lvm.c:2563:3 - movl $10, %edi - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _putchar ## TAILCALL -LBB19_45: - .loc 1 2564 1 ## /Users/dylan/github/ravi/src/lvm.c:2564:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5397: -Lfunc_end19: - .cfi_endproc - .align 2, 0x90 -L19_0_set_33 = LBB19_33-LJTI19_0 -L19_0_set_38 = LBB19_38-LJTI19_0 -L19_0_set_36 = LBB19_36-LJTI19_0 -L19_0_set_34 = LBB19_34-LJTI19_0 -LJTI19_0: - .long L19_0_set_33 - .long L19_0_set_38 - .long L19_0_set_36 - .long L19_0_set_34 - - .globl _ravi_dump_stacktop - .align 4, 0x90 -_ravi_dump_stacktop: ## @ravi_dump_stacktop -Lfunc_begin20: - .loc 1 2566 0 ## /Users/dylan/github/ravi/src/lvm.c:2566:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5398: - .cfi_def_cfa_offset 16 -Ltmp5399: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5400: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: ravi_dump_stacktop:L <- %RDI - ##DEBUG_VALUE: ravi_dump_stacktop:s <- %RSI - .loc 1 2569 22 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2569:22 -Ltmp5401: - movq 16(%rdi), %rcx - .loc 1 2567 21 ## /Users/dylan/github/ravi/src/lvm.c:2567:21 - movq 32(%rdi), %rax -Ltmp5402: - ##DEBUG_VALUE: ravi_dump_stacktop:ci <- %RAX - .loc 1 2568 37 ## /Users/dylan/github/ravi/src/lvm.c:2568:37 - movq 56(%rdi), %rdi -Ltmp5403: - .loc 1 2568 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2568:27 - movq (%rax), %rdx - .loc 1 2570 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2570:26 - movq 8(%rax), %r8 - .loc 1 2568 32 ## /Users/dylan/github/ravi/src/lvm.c:2568:32 - subq %rdi, %rdx - shrq $4, %rdx -Ltmp5404: - ##DEBUG_VALUE: ravi_dump_stacktop:funcpos <- %EDX - .loc 1 2569 26 ## /Users/dylan/github/ravi/src/lvm.c:2569:26 - subq %rdi, %rcx - shrq $4, %rcx -Ltmp5405: - ##DEBUG_VALUE: ravi_dump_stacktop:top <- %ECX - .loc 1 2570 30 ## /Users/dylan/github/ravi/src/lvm.c:2570:30 - subq %rdi, %r8 - shrq $4, %r8 -Ltmp5406: - ##DEBUG_VALUE: ravi_dump_stacktop:ci_top <- %R8D - .loc 1 2571 3 ## /Users/dylan/github/ravi/src/lvm.c:2571:3 - leaq L_.str.50(%rip), %rdi - xorl %eax, %eax -Ltmp5407: - popq %rbp - jmp _printf ## TAILCALL -Ltmp5408: -Lfunc_end20: - .cfi_endproc - - .globl _ravi_debug_trace - .align 4, 0x90 -_ravi_debug_trace: ## @ravi_debug_trace -Lfunc_begin21: - .loc 1 2580 0 ## /Users/dylan/github/ravi/src/lvm.c:2580:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5409: - .cfi_def_cfa_offset 16 -Ltmp5410: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5411: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $152, %rsp -Ltmp5412: - .cfi_offset %rbx, -56 -Ltmp5413: - .cfi_offset %r12, -48 -Ltmp5414: - .cfi_offset %r13, -40 -Ltmp5415: - .cfi_offset %r14, -32 -Ltmp5416: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: ravi_debug_trace:L <- %RDI - ##DEBUG_VALUE: ravi_debug_trace:opCode <- %ESI - ##DEBUG_VALUE: ravi_debug_trace:pc <- %EDX - movl %edx, %r8d -Ltmp5417: - ##DEBUG_VALUE: ravi_debug_trace:pc <- %R8D - movq %rdi, %r13 -Ltmp5418: - ##DEBUG_VALUE: ravi_debug_trace:L <- %R13 - movq ___stack_chk_guard@GOTPCREL(%rip), %rbx - movq (%rbx), %rbx - movq %rbx, -48(%rbp) - .loc 1 2581 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2581:3 -Ltmp5419: - movq _ravi_parser_debug@GOTPCREL(%rip), %rax -Ltmp5420: - .loc 1 2581 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2581:3 - testb $8, (%rax) - je LBB21_2 -Ltmp5421: -## BB#1: - ##DEBUG_VALUE: ravi_debug_trace:L <- %R13 - ##DEBUG_VALUE: ravi_debug_trace:opCode <- %ESI - ##DEBUG_VALUE: ravi_debug_trace:pc <- %R8D - .loc 1 2581 3 ## /Users/dylan/github/ravi/src/lvm.c:2581:3 - movq 16(%r13), %r15 - movq 32(%r13), %rax -Ltmp5422: - ##DEBUG_VALUE: ci <- %RAX - movq 56(%r13), %rcx - movq (%rax), %rbx - movq 8(%rax), %r14 - movq (%rbx), %rdx - subq %rcx, %rbx - shrq $4, %rbx -Ltmp5423: - ##DEBUG_VALUE: funcpos <- %EBX - subq %rcx, %r15 - shrq $4, %r15 -Ltmp5424: - ##DEBUG_VALUE: top <- %R15D - subq %rcx, %r14 - shrq $4, %r14 -Ltmp5425: - ##DEBUG_VALUE: ci_top <- %R14D - movq 32(%rax), %r12 - subq %rcx, %r12 - shrq $4, %r12 -Ltmp5426: - ##DEBUG_VALUE: base <- %R12D - movslq %r8d, %rcx - movq %rcx, -176(%rbp) ## 8-byte Spill - movq 24(%rdx), %rax -Ltmp5427: - movq 56(%rax), %rax - movl (%rax,%rcx,4), %edx - leaq -160(%rbp), %rdi -Ltmp5428: - ##DEBUG_VALUE: buf <- [%RDI+0] - movl %esi, -180(%rbp) ## 4-byte Spill -Ltmp5429: - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [%RBP+-180] - movl $100, %esi -Ltmp5430: - ##DEBUG_VALUE: buf <- undef - movl %r8d, -164(%rbp) ## 4-byte Spill -Ltmp5431: - ##DEBUG_VALUE: ravi_debug_trace:pc <- [%RBP+-164] - callq _raviP_instruction_to_str - movslq -180(%rbp), %rax ## 4-byte Folded Reload - movq _luaP_opnames@GOTPCREL(%rip), %rcx - movq (%rcx,%rax,8), %rsi - subl %r12d, %r15d -Ltmp5432: - subl %r12d, %r14d -Ltmp5433: - movl %r14d, (%rsp) - leaq L_.str.51(%rip), %rdi - xorl %eax, %eax - leaq -160(%rbp), %rdx - movq -176(%rbp), %r8 ## 8-byte Reload - movl %r15d, %r9d - movl %ebx, %ecx - movq ___stack_chk_guard@GOTPCREL(%rip), %rbx -Ltmp5434: - movq (%rbx), %rbx - callq _printf - movl -164(%rbp), %r8d ## 4-byte Reload -Ltmp5435: - ##DEBUG_VALUE: ravi_debug_trace:pc <- %R8D -LBB21_2: - ##DEBUG_VALUE: ravi_debug_trace:L <- %R13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- %R8D - .loc 1 2610 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2610:23 - movq 32(%r13), %rax - movq (%rax), %rcx - movq (%rcx), %rcx -Ltmp5436: - ##DEBUG_VALUE: ravi_debug_trace:closure <- %RCX - .loc 1 2611 25 ## /Users/dylan/github/ravi/src/lvm.c:2611:25 - movslq %r8d, %rdx - .loc 1 2611 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2611:34 - movq 24(%rcx), %rcx -Ltmp5437: - .loc 1 2611 37 ## /Users/dylan/github/ravi/src/lvm.c:2611:37 - movq 56(%rcx), %rcx - .loc 1 2611 25 ## /Users/dylan/github/ravi/src/lvm.c:2611:25 - leaq 4(%rcx,%rdx,4), %rcx - .loc 1 2611 22 ## /Users/dylan/github/ravi/src/lvm.c:2611:22 - movq %rcx, 40(%rax) - .loc 1 2612 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2612:19 -Ltmp5438: - testb $12, 200(%r13) - je LBB21_4 -Ltmp5439: -## BB#3: - ##DEBUG_VALUE: ravi_debug_trace:L <- %R13 - .loc 1 2612 53 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2612:53 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp5440: -LBB21_4: - cmpq -48(%rbp), %rbx - jne LBB21_6 -## BB#5: - .loc 1 2613 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2613:1 - addq $152, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5441: -LBB21_6: - callq ___stack_chk_fail -Lfunc_end21: - .cfi_endproc - - .globl _raviV_op_newarrayint - .align 4, 0x90 -_raviV_op_newarrayint: ## @raviV_op_newarrayint -Lfunc_begin22: - .loc 1 2615 0 ## /Users/dylan/github/ravi/src/lvm.c:2615:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5442: - .cfi_def_cfa_offset 16 -Ltmp5443: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5444: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax -Ltmp5445: - .cfi_offset %rbx, -40 -Ltmp5446: - .cfi_offset %r14, -32 -Ltmp5447: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newarrayint:L <- %RDI - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- %RSI - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- %RDX -Ltmp5448: - ##DEBUG_VALUE: io <- %RDX - movq %rdx, %rbx -Ltmp5449: - ##DEBUG_VALUE: io <- %RBX - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- %RBX - movq %rsi, %r14 -Ltmp5450: - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- %R14 - movq %rdi, %r15 -Ltmp5451: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- %R15 - .loc 1 2616 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2616:14 - movl $3, %esi - xorl %edx, %edx - callq _raviH_new -Ltmp5452: - ##DEBUG_VALUE: x_ <- %RAX - ##DEBUG_VALUE: raviV_op_newarrayint:t <- %RAX - .loc 1 2617 3 ## /Users/dylan/github/ravi/src/lvm.c:2617:3 - movq %rax, (%rbx) - movl $85, 8(%rbx) -Ltmp5453: - .loc 1 2618 3 ## /Users/dylan/github/ravi/src/lvm.c:2618:3 - movq 24(%r15), %rax -Ltmp5454: - .loc 1 2618 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2618:3 - cmpq $0, 24(%rax) - jle LBB22_2 -Ltmp5455: -## BB#1: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- %R15 - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- %R14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- %RBX - .loc 1 2618 3 ## /Users/dylan/github/ravi/src/lvm.c:2618:3 - addq $16, %rbx -Ltmp5456: - movq %rbx, 16(%r15) - movq %r15, %rdi - callq _luaC_step - movq 8(%r14), %rax - movq %rax, 16(%r15) -Ltmp5457: -LBB22_2: - .loc 1 2619 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2619:1 - addq $8, %rsp - popq %rbx - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5458: -Lfunc_end22: - .cfi_endproc - - .globl _raviV_op_newarrayfloat - .align 4, 0x90 -_raviV_op_newarrayfloat: ## @raviV_op_newarrayfloat -Lfunc_begin23: - .loc 1 2621 0 ## /Users/dylan/github/ravi/src/lvm.c:2621:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5459: - .cfi_def_cfa_offset 16 -Ltmp5460: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5461: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax -Ltmp5462: - .cfi_offset %rbx, -40 -Ltmp5463: - .cfi_offset %r14, -32 -Ltmp5464: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- %RDI - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- %RSI - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- %RDX -Ltmp5465: - ##DEBUG_VALUE: io <- %RDX - movq %rdx, %rbx -Ltmp5466: - ##DEBUG_VALUE: io <- %RBX - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- %RBX - movq %rsi, %r14 -Ltmp5467: - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- %R14 - movq %rdi, %r15 -Ltmp5468: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- %R15 - .loc 1 2622 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2622:14 - movl $4, %esi - xorl %edx, %edx - callq _raviH_new -Ltmp5469: - ##DEBUG_VALUE: x_ <- %RAX - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- %RAX - .loc 1 2623 3 ## /Users/dylan/github/ravi/src/lvm.c:2623:3 - movq %rax, (%rbx) - movl $101, 8(%rbx) -Ltmp5470: - .loc 1 2624 3 ## /Users/dylan/github/ravi/src/lvm.c:2624:3 - movq 24(%r15), %rax -Ltmp5471: - .loc 1 2624 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2624:3 - cmpq $0, 24(%rax) - jle LBB23_2 -Ltmp5472: -## BB#1: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- %R15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- %R14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- %RBX - .loc 1 2624 3 ## /Users/dylan/github/ravi/src/lvm.c:2624:3 - addq $16, %rbx -Ltmp5473: - movq %rbx, 16(%r15) - movq %r15, %rdi - callq _luaC_step - movq 8(%r14), %rax - movq %rax, 16(%r15) -Ltmp5474: -LBB23_2: - .loc 1 2625 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2625:1 - addq $8, %rsp - popq %rbx - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5475: -Lfunc_end23: - .cfi_endproc - - .globl _raviV_op_newtable - .align 4, 0x90 -_raviV_op_newtable: ## @raviV_op_newtable -Lfunc_begin24: - .loc 1 2627 0 ## /Users/dylan/github/ravi/src/lvm.c:2627:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5476: - .cfi_def_cfa_offset 16 -Ltmp5477: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5478: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax -Ltmp5479: - .cfi_offset %rbx, -56 -Ltmp5480: - .cfi_offset %r12, -48 -Ltmp5481: - .cfi_offset %r13, -40 -Ltmp5482: - .cfi_offset %r14, -32 -Ltmp5483: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newtable:L <- %RDI - ##DEBUG_VALUE: raviV_op_newtable:ci <- %RSI - ##DEBUG_VALUE: raviV_op_newtable:ra <- %RDX - ##DEBUG_VALUE: raviV_op_newtable:b <- %ECX - ##DEBUG_VALUE: raviV_op_newtable:c <- %R8D -Ltmp5484: - ##DEBUG_VALUE: io <- %RDX - movl %r8d, %r12d -Ltmp5485: - ##DEBUG_VALUE: raviV_op_newtable:c <- %R12D - movl %ecx, %r14d -Ltmp5486: - ##DEBUG_VALUE: raviV_op_newtable:b <- %R14D - movq %rdx, %r15 -Ltmp5487: - ##DEBUG_VALUE: io <- %R15 - ##DEBUG_VALUE: raviV_op_newtable:ra <- %R15 - movq %rsi, -48(%rbp) ## 8-byte Spill -Ltmp5488: - ##DEBUG_VALUE: raviV_op_newtable:ci <- [%RBP+-48] - movq %rdi, %rbx -Ltmp5489: - ##DEBUG_VALUE: raviV_op_newtable:L <- %RBX - .loc 1 2628 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2628:14 - callq _luaH_new - movq %rax, %r13 -Ltmp5490: - ##DEBUG_VALUE: x_ <- %R13 - ##DEBUG_VALUE: raviV_op_newtable:t <- %R13 - .loc 1 2629 3 ## /Users/dylan/github/ravi/src/lvm.c:2629:3 - movq %r13, (%r15) - movl $69, 8(%r15) -Ltmp5491: - .loc 1 2630 14 ## /Users/dylan/github/ravi/src/lvm.c:2630:14 - movl %r12d, %eax - orl %r14d, %eax - je LBB24_2 -Ltmp5492: -## BB#1: - ##DEBUG_VALUE: raviV_op_newtable:L <- %RBX - ##DEBUG_VALUE: raviV_op_newtable:ci <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_newtable:ra <- %R15 - ##DEBUG_VALUE: raviV_op_newtable:b <- %R14D - ##DEBUG_VALUE: raviV_op_newtable:c <- %R12D - ##DEBUG_VALUE: raviV_op_newtable:t <- %R13 - .loc 1 2630 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2630:43 - movl %r14d, %edi - callq _luaO_fb2int - movl %eax, %r14d -Ltmp5493: - .loc 1 2630 59 ## /Users/dylan/github/ravi/src/lvm.c:2630:59 - movl %r12d, %edi - callq _luaO_fb2int - .loc 1 2630 25 ## /Users/dylan/github/ravi/src/lvm.c:2630:25 - movq %rbx, %rdi - movq %r13, %rsi - movl %r14d, %edx - movl %eax, %ecx - callq _luaH_resize -Ltmp5494: -LBB24_2: - ##DEBUG_VALUE: raviV_op_newtable:L <- %RBX - ##DEBUG_VALUE: raviV_op_newtable:ci <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_newtable:ra <- %R15 - .loc 1 2631 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2631:3 - movq 24(%rbx), %rax -Ltmp5495: - .loc 1 2631 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2631:3 - cmpq $0, 24(%rax) - jle LBB24_4 -Ltmp5496: -## BB#3: - ##DEBUG_VALUE: raviV_op_newtable:L <- %RBX - ##DEBUG_VALUE: raviV_op_newtable:ci <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_newtable:ra <- %R15 - .loc 1 2631 3 ## /Users/dylan/github/ravi/src/lvm.c:2631:3 - addq $16, %r15 -Ltmp5497: - movq %r15, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step - movq -48(%rbp), %rax ## 8-byte Reload - movq 8(%rax), %rax - movq %rax, 16(%rbx) -Ltmp5498: -LBB24_4: - .loc 1 2632 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2632:1 - addq $8, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5499: -Lfunc_end24: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI25_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI25_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_setlist - .align 4, 0x90 -_raviV_op_setlist: ## @raviV_op_setlist -Lfunc_begin25: - .loc 1 2634 0 ## /Users/dylan/github/ravi/src/lvm.c:2634:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5500: - .cfi_def_cfa_offset 16 -Ltmp5501: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5502: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $56, %rsp -Ltmp5503: - .cfi_offset %rbx, -56 -Ltmp5504: - .cfi_offset %r12, -48 -Ltmp5505: - .cfi_offset %r13, -40 -Ltmp5506: - .cfi_offset %r14, -32 -Ltmp5507: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setlist:L <- %RDI - ##DEBUG_VALUE: raviV_op_setlist:ci <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setlist:b <- %ECX - ##DEBUG_VALUE: raviV_op_setlist:c <- %R8D -Ltmp5508: - ##DEBUG_VALUE: raviV_op_setlist:n <- %ECX - movl %ecx, %r14d -Ltmp5509: - ##DEBUG_VALUE: raviV_op_setlist:n <- %R14D - ##DEBUG_VALUE: raviV_op_setlist:b <- %R14D - movq %rdx, %r12 -Ltmp5510: - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - movq %rsi, -80(%rbp) ## 8-byte Spill -Ltmp5511: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp5512: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - .loc 1 2638 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2638:7 - testl %r14d, %r14d - jne LBB25_2 -Ltmp5513: -## BB#1: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:c <- %R8D - .loc 1 2638 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2638:19 - movq -64(%rbp), %rax ## 8-byte Reload - movq 16(%rax), %r14 - subq %r12, %r14 - shrq $4, %r14 - .loc 1 2638 41 ## /Users/dylan/github/ravi/src/lvm.c:2638:41 - decl %r14d -Ltmp5514: - ##DEBUG_VALUE: raviV_op_setlist:n <- %R14D -LBB25_2: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:c <- %R8D - .loc 1 2639 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2639:7 - movq (%r12), %rcx -Ltmp5515: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RCX - .loc 1 2640 19 ## /Users/dylan/github/ravi/src/lvm.c:2640:19 - imull $50, %r8d, %r15d - .loc 1 2640 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2640:40 - leal -50(%r15,%r14), %r13d -Ltmp5516: - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2641 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2641:7 - movzbl 72(%rcx), %eax - cmpl $6, %eax - jne LBB25_13 -Ltmp5517: -## BB#3: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RCX - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2642 9 ## /Users/dylan/github/ravi/src/lvm.c:2642:9 - cmpl 12(%rcx), %r13d - movq %rcx, %r15 -Ltmp5518: - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - jbe LBB25_5 -Ltmp5519: -## BB#4: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2643 7 ## /Users/dylan/github/ravi/src/lvm.c:2643:7 - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r15, %rsi - movl %r13d, %edx - callq _luaH_resizearray -Ltmp5520: -LBB25_5: ## %.preheader - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2644 5 ## /Users/dylan/github/ravi/src/lvm.c:2644:5 - testl %r14d, %r14d - jle LBB25_12 -Ltmp5521: -## BB#6: ## %.lr.ph - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movslq %r14d, %rax - leaq 1(%rax), %rbx - shlq $4, %rax - addq %rax, %r12 -Ltmp5522: - .align 4, 0x90 -LBB25_7: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - .loc 1 2646 25 ## /Users/dylan/github/ravi/src/lvm.c:2646:25 - movl %r13d, %edx - .loc 1 2646 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2646:7 - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r15, %r14 -Ltmp5523: - ##DEBUG_VALUE: raviV_op_setlist:h <- %R14 - movq %r14, %rsi - movq %r12, %rcx - callq _luaH_setint - .loc 1 2647 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2647:7 - testb $64, 8(%r12) - je LBB25_11 -Ltmp5524: -## BB#8: ## in Loop: Header=BB25_7 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:h <- %R14 - testb $4, 9(%r14) - je LBB25_11 -Ltmp5525: -## BB#9: ## in Loop: Header=BB25_7 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:h <- %R14 - movq (%r12), %rax - testb $3, 9(%rax) - je LBB25_11 -Ltmp5526: -## BB#10: ## in Loop: Header=BB25_7 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:h <- %R14 - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r14, %rsi - callq _luaC_barrierback_ -Ltmp5527: - .align 4, 0x90 -LBB25_11: ## in Loop: Header=BB25_7 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:h <- %R14 - movq %r14, %r15 -Ltmp5528: - ##DEBUG_VALUE: raviV_op_setlist:h <- %R15 - .loc 1 2646 29 ## /Users/dylan/github/ravi/src/lvm.c:2646:29 - decl %r13d -Ltmp5529: - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2644 14 ## /Users/dylan/github/ravi/src/lvm.c:2644:14 - decq %rbx - addq $-16, %r12 - cmpq $1, %rbx - jg LBB25_7 - jmp LBB25_12 -Ltmp5530: -LBB25_13: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RCX - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movq %rcx, -72(%rbp) ## 8-byte Spill -Ltmp5531: - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - .loc 1 2651 22 ## /Users/dylan/github/ravi/src/lvm.c:2651:22 - addl $-49, %r15d -Ltmp5532: - ##DEBUG_VALUE: i <- %R15D - .loc 1 2652 14 ## /Users/dylan/github/ravi/src/lvm.c:2652:14 - cmpl %r13d, %r15d - jg LBB25_12 -Ltmp5533: -## BB#14: ## %.lr.ph21 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - leaq -56(%rbp), %rbx - jmp LBB25_15 -Ltmp5534: - .align 4, 0x90 -LBB25_63: ## %._crit_edge - ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2652 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2652:29 - incl %r15d -Ltmp5535: - ##DEBUG_VALUE: u <- %R15D - ##DEBUG_VALUE: ukey <- %R15D - ##DEBUG_VALUE: ukey <- %R15D - ##DEBUG_VALUE: ukey <- %R15D - ##DEBUG_VALUE: ukey <- %R15D - ##DEBUG_VALUE: ukey <- %R15D - ##DEBUG_VALUE: i <- %R15D - .loc 1 2655 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2655:29 - movq -72(%rbp), %rax ## 8-byte Reload - movb 72(%rax), %al -Ltmp5536: -LBB25_15: ## =>This Loop Header: Depth=1 - ## Child Loop BB25_21 Depth 2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2653 24 ## /Users/dylan/github/ravi/src/lvm.c:2653:24 - movslq %r15d, %rcx - shlq $4, %rcx - leaq (%r12,%rcx), %r14 -Ltmp5537: - ##DEBUG_VALUE: val <- %R14 - ##DEBUG_VALUE: luaV_tointeger_:obj <- %R14 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - .loc 1 2655 15 ## /Users/dylan/github/ravi/src/lvm.c:2655:15 - movzbl %al, %eax - .loc 1 2655 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2655:7 - cmpl $4, %eax - je LBB25_40 -Ltmp5538: -## BB#16: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - cmpl $3, %eax - jne LBB25_62 -Ltmp5539: -## BB#17: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2657 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2657:15 - cmpl $19, 8(%r12,%rcx) - jne LBB25_21 -Ltmp5540: -## BB#18: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movq -72(%rbp), %rsi ## 8-byte Reload -Ltmp5541: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - .loc 1 2657 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2657:35 - cmpl 64(%rsi), %r15d - jb LBB25_19 -Ltmp5542: -## BB#20: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2657 35 ## /Users/dylan/github/ravi/src/lvm.c:2657:35 - movl %r15d, %edx - movq (%r14), %rcx - jmp LBB25_39 -Ltmp5543: - .align 4, 0x90 -LBB25_21: ## Parent Loop BB25_15 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl 8(%r14), %eax -Ltmp5544: - .loc 1 102 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB25_34 -Ltmp5545: -## BB#22: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - cmpl $3, %eax - je LBB25_23 -Ltmp5546: -## BB#27: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB25_32 -Ltmp5547: -## BB#28: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r14), %rdi - addq $24, %rdi -Ltmp5548: - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %rbx, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB25_30 -Ltmp5549: -## BB#29: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - shrl $24, %ecx - jmp LBB25_31 -Ltmp5550: - .align 4, 0x90 -LBB25_30: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - movq 16(%rdx), %rcx -Ltmp5551: -LBB25_31: ## in Loop: Header=BB25_21 Depth=2 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tointeger:v <- [%RBX+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx - .loc 1 117 43 ## /Users/dylan/github/ravi/src/lvm.c:117:43 - cmpq %rcx, %rax -Ltmp5552: - .loc 1 129 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %rbx, %r14 - je LBB25_21 - jmp LBB25_32 -Ltmp5553: - .align 4, 0x90 -LBB25_40: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R14 - ##DEBUG_VALUE: val <- %R14 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r12,%rcx), %eax -Ltmp5554: - .loc 1 2666 15 ## /Users/dylan/github/ravi/src/lvm.c:2666:15 - cmpl $19, %eax - je LBB25_45 -Ltmp5555: -## BB#41: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - cmpl $3, %eax - jne LBB25_49 -Ltmp5556: -## BB#42: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movq -72(%rbp), %rsi ## 8-byte Reload -Ltmp5557: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - .loc 1 2667 13 ## /Users/dylan/github/ravi/src/lvm.c:2667:13 - cmpl 64(%rsi), %r15d - jae LBB25_43 -Ltmp5558: -LBB25_19: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2657 35 ## /Users/dylan/github/ravi/src/lvm.c:2657:35 - movq 56(%rsi), %rax -Ltmp5559: - ##DEBUG_VALUE: data <- %RAX - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - .loc 1 2657 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2657:35 - movq (%r14), %rcx - jmp LBB25_37 -Ltmp5560: -LBB25_45: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: val <- %R14 - movq -72(%rbp), %rsi ## 8-byte Reload -Ltmp5561: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - .loc 1 2670 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2670:13 - cmpl 64(%rsi), %r15d - jae LBB25_48 -Ltmp5562: -## BB#46: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: val <- %R14 - movq 56(%rsi), %rax -Ltmp5563: - ##DEBUG_VALUE: data <- %RAX - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - .loc 1 2670 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2670:13 - cvtsi2sdq (%r14), %xmm0 - jmp LBB25_47 -Ltmp5564: -LBB25_49: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB25_59 -Ltmp5565: -## BB#50: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r14), %rdi - addq $24, %rdi -Ltmp5566: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - movq %rbx, %rsi - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r14), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB25_52 -Ltmp5567: -## BB#51: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - shrl $24, %ecx - jmp LBB25_53 -Ltmp5568: -LBB25_34: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r14), %rcx - jmp LBB25_35 -Ltmp5569: -LBB25_23: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero -Ltmp5570: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -88(%rbp) ## 8-byte Spill -Ltmp5571: - ##DEBUG_VALUE: n <- [%RBP+-88] - callq _floor -Ltmp5572: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -88(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB25_32 - jp LBB25_32 -Ltmp5573: -## BB#24: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI25_0(%rip), %xmm0 - jb LBB25_32 -Ltmp5574: -## BB#25: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movsd LCPI25_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB25_32 -Ltmp5575: -## BB#26: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - cvttsd2si %xmm0, %rcx -Ltmp5576: -LBB25_35: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: i <- 0 - movq -72(%rbp), %rsi ## 8-byte Reload -Ltmp5577: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - .loc 1 2660 45 ## /Users/dylan/github/ravi/src/lvm.c:2660:45 - cmpl 64(%rsi), %r15d - jae LBB25_38 -Ltmp5578: -## BB#36: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: i <- 0 - movq 56(%rsi), %rax -Ltmp5579: -LBB25_37: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: data <- %RAX - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - .loc 1 2660 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2660:45 - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB25_62 -Ltmp5580: -LBB25_38: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: i <- 0 - .loc 1 2660 45 ## /Users/dylan/github/ravi/src/lvm.c:2660:45 - movl %r15d, %edx -Ltmp5581: -LBB25_39: ## in Loop: Header=BB25_15 Depth=1 - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp5582: - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - callq _raviH_set_int - jmp LBB25_62 -Ltmp5583: -LBB25_43: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2667 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2667:13 - movl %r15d, %edx - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero - movq -64(%rbp), %rdi ## 8-byte Reload - jmp LBB25_61 -Ltmp5584: -LBB25_48: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: val <- %R14 - .loc 1 2670 13 ## /Users/dylan/github/ravi/src/lvm.c:2670:13 - movl %r15d, %edx - movq (%r14), %rax - cvtsi2sdq %rax, %xmm0 -Ltmp5585: - .loc 1 2667 13 ## /Users/dylan/github/ravi/src/lvm.c:2667:13 - movq -64(%rbp), %rdi ## 8-byte Reload - jmp LBB25_61 -Ltmp5586: -LBB25_52: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp5587: -LBB25_53: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5588: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB25_59 -Ltmp5589: -## BB#54: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB25_56 -Ltmp5590: -## BB#55: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - cvtsi2sdq %rax, %xmm0 - jmp LBB25_57 -Ltmp5591: -LBB25_56: ## %select.false - ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RBX+0] - movd %rax, %xmm0 -Ltmp5592: -LBB25_57: ## %select.end - ## in Loop: Header=BB25_15 Depth=1 - movq -72(%rbp), %rsi ## 8-byte Reload -Ltmp5593: - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2674 44 ## /Users/dylan/github/ravi/src/lvm.c:2674:44 - cmpl 64(%rsi), %r15d - jae LBB25_60 -Ltmp5594: -## BB#58: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - movq 56(%rsi), %rax -Ltmp5595: - ##DEBUG_VALUE: data <- %RAX - movq %rsi, -72(%rbp) ## 8-byte Spill -Ltmp5596: -LBB25_47: ## in Loop: Header=BB25_15 Depth=1 - .loc 1 2670 13 ## /Users/dylan/github/ravi/src/lvm.c:2670:13 - movl %r15d, %ecx - movsd %xmm0, (%rax,%rcx,8) - jmp LBB25_62 -Ltmp5597: -LBB25_60: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- %RSI - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2674 44 ## /Users/dylan/github/ravi/src/lvm.c:2674:44 - movl %r15d, %edx - movq -64(%rbp), %rdi ## 8-byte Reload - movq %rsi, -72(%rbp) ## 8-byte Spill -Ltmp5598: -LBB25_61: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - callq _raviH_set_float -Ltmp5599: - .align 4, 0x90 -LBB25_62: ## in Loop: Header=BB25_15 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_setlist:ra <- %R12 - ##DEBUG_VALUE: raviV_op_setlist:h <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_setlist:last <- %R13D - .loc 1 2652 5 ## /Users/dylan/github/ravi/src/lvm.c:2652:5 - cmpl %r13d, %r15d - jl LBB25_63 -Ltmp5600: -LBB25_12: ## %.loopexit - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_setlist:ci <- [%RBP+-80] - .loc 1 2683 16 ## /Users/dylan/github/ravi/src/lvm.c:2683:16 - movq -80(%rbp), %rax ## 8-byte Reload - movq 8(%rax), %rax - .loc 1 2683 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2683:10 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %rax, 16(%rcx) - .loc 1 2684 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2684:1 - addq $56, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB25_32: ## %.loopexit11 - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - .loc 1 2662 15 ## /Users/dylan/github/ravi/src/lvm.c:2662:15 -Ltmp5601: - leaq L_.str.5(%rip), %rsi -LBB25_33: ## %.loopexit11 - xorl %eax, %eax - movq -64(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp5602: -LBB25_59: - ##DEBUG_VALUE: raviV_op_setlist:L <- [%RBP+-64] - .loc 1 2676 15 ## /Users/dylan/github/ravi/src/lvm.c:2676:15 - leaq L_.str.4(%rip), %rsi - jmp LBB25_33 -Ltmp5603: -Lfunc_end25: - .cfi_endproc - - .globl _raviV_op_concat - .align 4, 0x90 -_raviV_op_concat: ## @raviV_op_concat -Lfunc_begin26: - .loc 1 2686 0 ## /Users/dylan/github/ravi/src/lvm.c:2686:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5604: - .cfi_def_cfa_offset 16 -Ltmp5605: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5606: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp5607: - .cfi_offset %rbx, -48 -Ltmp5608: - .cfi_offset %r12, -40 -Ltmp5609: - .cfi_offset %r14, -32 -Ltmp5610: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_concat:L <- %RDI - ##DEBUG_VALUE: raviV_op_concat:ci <- %RSI - ##DEBUG_VALUE: raviV_op_concat:a <- %EDX - ##DEBUG_VALUE: raviV_op_concat:b <- %ECX - ##DEBUG_VALUE: raviV_op_concat:c <- %R8D - movl %ecx, %r15d -Ltmp5611: - ##DEBUG_VALUE: raviV_op_concat:b <- %R15D - movl %edx, %r12d -Ltmp5612: - ##DEBUG_VALUE: raviV_op_concat:a <- %R12D - movq %rsi, %r14 -Ltmp5613: - ##DEBUG_VALUE: raviV_op_concat:ci <- %R14 - movq %rdi, %rbx -Ltmp5614: - ##DEBUG_VALUE: raviV_op_concat:L <- %RBX - .loc 1 2688 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2688:24 - movq 32(%r14), %rax -Ltmp5615: - ##DEBUG_VALUE: raviV_op_concat:base <- %RAX - .loc 1 2689 17 ## /Users/dylan/github/ravi/src/lvm.c:2689:17 - movslq %r8d, %rsi - movq %rsi, %rcx - shlq $4, %rcx - .loc 1 2689 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2689:21 - leaq 16(%rax,%rcx), %rax -Ltmp5616: - .loc 1 2689 10 ## /Users/dylan/github/ravi/src/lvm.c:2689:10 - movq %rax, 16(%rbx) - .loc 1 2690 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2690:3 -Ltmp5617: - movl $1, %eax - subl %r15d, %eax - addl %eax, %esi - callq _luaV_concat -Ltmp5618: - .loc 1 2690 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2690:3 - movq 32(%r14), %rdx -Ltmp5619: - ##DEBUG_VALUE: raviV_op_concat:base <- %RDX - .loc 1 2691 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2691:13 - movslq %r12d, %rax - shlq $4, %rax - .loc 1 2692 13 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - movslq %r15d, %rcx - shlq $4, %rcx - .loc 1 2693 3 ## /Users/dylan/github/ravi/src/lvm.c:2693:3 -Ltmp5620: - movq (%rdx,%rcx), %rsi - movq 8(%rdx,%rcx), %rdi - movq %rdi, 8(%rdx,%rax) - movq %rsi, (%rdx,%rax) -Ltmp5621: - .loc 1 2694 3 ## /Users/dylan/github/ravi/src/lvm.c:2694:3 - movq 24(%rbx), %rsi - cmpq $0, 24(%rsi) - jle LBB26_1 -Ltmp5622: -## BB#2: - ##DEBUG_VALUE: raviV_op_concat:L <- %RBX - ##DEBUG_VALUE: raviV_op_concat:ci <- %R14 - ##DEBUG_VALUE: raviV_op_concat:a <- %R12D - ##DEBUG_VALUE: raviV_op_concat:b <- %R15D - ##DEBUG_VALUE: raviV_op_concat:base <- %RDX - .loc 1 2691 13 ## /Users/dylan/github/ravi/src/lvm.c:2691:13 - addq %rdx, %rax -Ltmp5623: - ##DEBUG_VALUE: raviV_op_concat:ra <- %RAX - ##DEBUG_VALUE: io1 <- %RAX - .loc 1 2692 13 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - addq %rdx, %rcx -Ltmp5624: - ##DEBUG_VALUE: raviV_op_concat:rb <- %RCX - .loc 1 2694 3 ## /Users/dylan/github/ravi/src/lvm.c:2694:3 - addq $16, %rax -Ltmp5625: - cmpl %r15d, %r12d - cmovlq %rcx, %rax - movq %rax, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step - .loc 1 2694 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2694:3 -Ltmp5626: - movq 8(%r14), %rax - movq %rax, 16(%rbx) - jmp LBB26_3 -Ltmp5627: -LBB26_1: ## %._crit_edge - ##DEBUG_VALUE: raviV_op_concat:L <- %RBX - ##DEBUG_VALUE: raviV_op_concat:ci <- %R14 - .loc 1 2695 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2695:16 - movq 8(%r14), %rax -Ltmp5628: -LBB26_3: - ##DEBUG_VALUE: raviV_op_concat:L <- %RBX - .loc 1 2695 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2695:10 - movq %rax, 16(%rbx) - .loc 1 2696 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2696:1 - popq %rbx -Ltmp5629: - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5630: -Lfunc_end26: - .cfi_endproc - - .globl _raviV_op_closure - .align 4, 0x90 -_raviV_op_closure: ## @raviV_op_closure -Lfunc_begin27: - .loc 1 2698 0 ## /Users/dylan/github/ravi/src/lvm.c:2698:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5631: - .cfi_def_cfa_offset 16 -Ltmp5632: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5633: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp5634: - .cfi_offset %rbx, -56 -Ltmp5635: - .cfi_offset %r12, -48 -Ltmp5636: - .cfi_offset %r13, -40 -Ltmp5637: - .cfi_offset %r14, -32 -Ltmp5638: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_closure:L <- %RDI - ##DEBUG_VALUE: raviV_op_closure:ci <- %RSI - ##DEBUG_VALUE: raviV_op_closure:cl <- %RDX - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: raviV_op_closure:Bx <- %R8D - movq %rdx, -48(%rbp) ## 8-byte Spill - movq %rsi, %r15 -Ltmp5639: - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - movq %rdi, %r12 -Ltmp5640: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - .loc 1 2699 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2699:24 - movq 32(%r15), %r14 -Ltmp5641: - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: pushclosure:base <- %R14 - .loc 1 2700 14 ## /Users/dylan/github/ravi/src/lvm.c:2700:14 - movslq %r8d, %rax - .loc 1 2700 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2700:18 - movq 24(%rdx), %rdx -Ltmp5642: - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - .loc 1 2700 21 ## /Users/dylan/github/ravi/src/lvm.c:2700:21 - movq 64(%rdx), %rdx - .loc 1 2700 14 ## /Users/dylan/github/ravi/src/lvm.c:2700:14 - movq (%rdx,%rax,8), %rax -Ltmp5643: - ##DEBUG_VALUE: getcached:p <- %RAX - ##DEBUG_VALUE: raviV_op_closure:p <- %RAX - ##DEBUG_VALUE: pushclosure:p <- %RAX - .loc 1 878 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:20 - movq %rax, -56(%rbp) ## 8-byte Spill - movq 96(%rax), %r9 -Ltmp5644: - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: x_ <- %R9 - .loc 1 879 9 ## /Users/dylan/github/ravi/src/lvm.c:879:9 - testq %r9, %r9 -Ltmp5645: - .loc 1 901 16 ## /Users/dylan/github/ravi/src/lvm.c:901:16 - movl 16(%rax), %ebx -Ltmp5646: - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: pushclosure:nup <- %EBX - .loc 1 902 22 ## /Users/dylan/github/ravi/src/lvm.c:902:22 - movq 88(%rax), %r13 -Ltmp5647: - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: pushclosure:uv <- %R13 - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - je LBB27_8 -Ltmp5648: -## BB#1: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - .loc 1 883 5 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - testl %ebx, %ebx - jle LBB27_17 -Ltmp5649: -## BB#2: ## %.lr.ph.preheader.i - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - .loc 1 884 19 ## /Users/dylan/github/ravi/src/lvm.c:884:19 - movslq %ebx, %r8 - leaq 18(%r13), %rsi - xorl %edi, %edi -Ltmp5650: - .align 4, 0x90 -LBB27_4: ## %.lr.ph.i - ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - cmpb $0, -1(%rsi) - .loc 1 884 54 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:884:54 - movzbl (%rsi), %edx - .loc 1 884 19 ## /Users/dylan/github/ravi/src/lvm.c:884:19 - je LBB27_6 -Ltmp5651: -## BB#5: ## in Loop: Header=BB27_4 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - .loc 1 884 40 ## /Users/dylan/github/ravi/src/lvm.c:884:40 - shlq $4, %rdx - addq %r14, %rdx - jmp LBB27_7 -Ltmp5652: - .align 4, 0x90 -LBB27_6: ## in Loop: Header=BB27_4 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - .loc 1 884 54 ## /Users/dylan/github/ravi/src/lvm.c:884:54 - movq -48(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%rdx,8), %rdx - .loc 1 884 72 ## /Users/dylan/github/ravi/src/lvm.c:884:72 - movq (%rdx), %rdx -Ltmp5653: -LBB27_7: ## in Loop: Header=BB27_4 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: v <- %RDX - .loc 1 885 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:885:11 - movq 32(%r9,%rdi,8), %rax - .loc 1 885 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:885:27 - cmpq %rdx, (%rax) - jne LBB27_8 -Ltmp5654: -## BB#3: ## in Loop: Header=BB27_4 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: getcached:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: getcached:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - ##DEBUG_VALUE: getcached:c <- %R9 - ##DEBUG_VALUE: nup <- %EBX - ##DEBUG_VALUE: uv <- %R13 - ##DEBUG_VALUE: i <- 0 - .loc 1 883 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - incq %rdi - .loc 1 883 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:883:19 -Ltmp5655: - addq $24, %rsi -Ltmp5656: - .loc 1 883 5 ## /Users/dylan/github/ravi/src/lvm.c:883:5 - cmpq %r8, %rdi - jl LBB27_4 -Ltmp5657: -LBB27_17: ## %.loopexit4 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:ncl <- %R9 - .loc 1 2702 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2702:19 - movslq %ecx, %rax - shlq $4, %rax - .loc 1 2707 5 ## /Users/dylan/github/ravi/src/lvm.c:2707:5 -Ltmp5658: - movq %r9, (%r14,%rax) - movl $70, 8(%r14,%rax) -Ltmp5659: - .loc 1 2702 19 ## /Users/dylan/github/ravi/src/lvm.c:2702:19 - leaq (%r14,%rax), %r14 -Ltmp5660: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_closure:ra <- %R14 - ##DEBUG_VALUE: pushclosure:ra <- %R14 - ##DEBUG_VALUE: io <- %R14 - jmp LBB27_18 -Ltmp5661: -LBB27_8: ## %.loopexit - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: raviV_op_closure:a <- %ECX - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:nup <- %EBX - ##DEBUG_VALUE: pushclosure:uv <- %R13 - movq %r15, -80(%rbp) ## 8-byte Spill -Ltmp5662: - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - movslq %ecx, %r15 - shlq $4, %r15 - .loc 1 904 19 ## /Users/dylan/github/ravi/src/lvm.c:904:19 -Ltmp5663: - movq %r15, -72(%rbp) ## 8-byte Spill -Ltmp5664: - ##DEBUG_VALUE: pushclosure:L <- %R12 - movq %r12, %rdi - movl %ebx, %esi - callq _luaF_newLclosure - movq %rax, %rcx -Ltmp5665: - ##DEBUG_VALUE: pushclosure:ncl <- %RCX - ##DEBUG_VALUE: x_ <- %RCX - .loc 1 905 10 ## /Users/dylan/github/ravi/src/lvm.c:905:10 - movq %rcx, -64(%rbp) ## 8-byte Spill - movq -56(%rbp), %rax ## 8-byte Reload - movq %rax, 24(%rcx) - .loc 1 906 3 ## /Users/dylan/github/ravi/src/lvm.c:906:3 -Ltmp5666: - movq %rcx, (%r14,%r15) -Ltmp5667: - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: x_ <- [%RBP+-64] - movl $70, 8(%r14,%r15) -Ltmp5668: - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 907 3 ## /Users/dylan/github/ravi/src/lvm.c:907:3 - testl %ebx, %ebx - jle LBB27_14 -Ltmp5669: -## BB#9: ## %.lr.ph.i.2.preheader - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:nup <- %EBX - ##DEBUG_VALUE: pushclosure:uv <- %R13 - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 908 15 ## /Users/dylan/github/ravi/src/lvm.c:908:15 - movq -64(%rbp), %rax ## 8-byte Reload - leaq 32(%rax), %r15 - addq $18, %r13 -Ltmp5670: - .align 4, 0x90 -LBB27_10: ## %.lr.ph.i.2 - ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 908 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:908:9 - cmpb $0, -1(%r13) - .loc 1 911 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:911:24 - movzbl (%r13), %esi -Ltmp5671: - .loc 1 908 9 ## /Users/dylan/github/ravi/src/lvm.c:908:9 - je LBB27_12 -Ltmp5672: -## BB#11: ## in Loop: Header=BB27_10 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 909 47 ## /Users/dylan/github/ravi/src/lvm.c:909:47 - shlq $4, %rsi - addq %r14, %rsi - .loc 1 909 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:909:24 - movq %r12, %rdi - callq _luaF_findupval - jmp LBB27_13 -Ltmp5673: - .align 4, 0x90 -LBB27_12: ## in Loop: Header=BB27_10 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 911 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:911:24 - movq -48(%rbp), %rax ## 8-byte Reload - movq 32(%rax,%rsi,8), %rax -Ltmp5674: -LBB27_13: ## in Loop: Header=BB27_10 Depth=1 - .loc 1 911 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:911:22 - movq %rax, (%r15) -Ltmp5675: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: raviV_op_closure:cl <- [%RBP+-48] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 912 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:912:29 - incq 8(%rax) -Ltmp5676: - .loc 1 907 3 ## /Users/dylan/github/ravi/src/lvm.c:907:3 - addq $8, %r15 - addq $24, %r13 - decl %ebx - jne LBB27_10 -Ltmp5677: -LBB27_14: ## %._crit_edge.i - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: pushclosure:base <- %R14 - ##DEBUG_VALUE: raviV_op_closure:base <- %R14 - ##DEBUG_VALUE: pushclosure:p <- [%RBP+-56] - ##DEBUG_VALUE: raviV_op_closure:p <- [%RBP+-56] - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 2702 19 ## /Users/dylan/github/ravi/src/lvm.c:2702:19 - addq -72(%rbp), %r14 ## 8-byte Folded Reload -Ltmp5678: - movq -56(%rbp), %rax ## 8-byte Reload -Ltmp5679: - ##DEBUG_VALUE: raviV_op_closure:p <- %RAX - ##DEBUG_VALUE: pushclosure:p <- %RAX - .loc 1 915 7 ## /Users/dylan/github/ravi/src/lvm.c:915:7 - testb $4, 9(%rax) - jne LBB27_15 -Ltmp5680: -## BB#16: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - ##DEBUG_VALUE: pushclosure:p <- %RAX - ##DEBUG_VALUE: raviV_op_closure:p <- %RAX - ##DEBUG_VALUE: pushclosure:L <- %R12 - ##DEBUG_VALUE: pushclosure:ncl <- [%RBP+-64] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 916 14 ## /Users/dylan/github/ravi/src/lvm.c:916:14 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %rcx, 96(%rax) - movq -80(%rbp), %r15 ## 8-byte Reload -Ltmp5681: - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - jmp LBB27_18 -Ltmp5682: -LBB27_15: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- [%RBP+-80] - movq -80(%rbp), %r15 ## 8-byte Reload -Ltmp5683: - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 -LBB27_18: ## %pushclosure.exit - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - .loc 1 2709 3 ## /Users/dylan/github/ravi/src/lvm.c:2709:3 - movq 24(%r12), %rax -Ltmp5684: - .loc 1 2709 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2709:3 - cmpq $0, 24(%rax) - jle LBB27_20 -Ltmp5685: -## BB#19: - ##DEBUG_VALUE: raviV_op_closure:L <- %R12 - ##DEBUG_VALUE: raviV_op_closure:ci <- %R15 - .loc 1 2709 3 ## /Users/dylan/github/ravi/src/lvm.c:2709:3 - addq $16, %r14 - movq %r14, 16(%r12) - movq %r12, %rdi - callq _luaC_step - .loc 1 2709 3 ## /Users/dylan/github/ravi/src/lvm.c:2709:3 -Ltmp5686: - movq 8(%r15), %rax - movq %rax, 16(%r12) -Ltmp5687: -LBB27_20: - .loc 1 2710 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2710:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5688: -Lfunc_end27: - .cfi_endproc - - .globl _raviV_op_vararg - .align 4, 0x90 -_raviV_op_vararg: ## @raviV_op_vararg -Lfunc_begin28: - .loc 1 2712 0 ## /Users/dylan/github/ravi/src/lvm.c:2712:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5689: - .cfi_def_cfa_offset 16 -Ltmp5690: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5691: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax -Ltmp5692: - .cfi_offset %rbx, -56 -Ltmp5693: - .cfi_offset %r12, -48 -Ltmp5694: - .cfi_offset %r13, -40 -Ltmp5695: - .cfi_offset %r14, -32 -Ltmp5696: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_vararg:L <- %RDI - ##DEBUG_VALUE: raviV_op_vararg:ci <- %RSI - ##DEBUG_VALUE: raviV_op_vararg:cl <- %RDX - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - ##DEBUG_VALUE: raviV_op_vararg:b <- %R8D - movq %rsi, %r12 -Ltmp5697: - ##DEBUG_VALUE: raviV_op_vararg:ci <- %R12 - movq %rdi, %r14 -Ltmp5698: - ##DEBUG_VALUE: raviV_op_vararg:L <- %R14 - .loc 1 2713 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2713:24 - movq 32(%r12), %rdi -Ltmp5699: - ##DEBUG_VALUE: raviV_op_vararg:base <- %RDI - .loc 1 2716 11 ## /Users/dylan/github/ravi/src/lvm.c:2716:11 - movq %rdi, %r13 - subq (%r12), %r13 - shrq $4, %r13 - .loc 1 2716 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2716:43 - movq 24(%rdx), %rax - .loc 1 2729 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2729:21 -Ltmp5700: - movzbl 10(%rax), %esi -Ltmp5701: - .loc 1 2716 37 ## /Users/dylan/github/ravi/src/lvm.c:2716:37 - movl %r13d, %ebx - subl %esi, %ebx - xorl %eax, %eax - .loc 1 2716 56 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2716:56 - decl %ebx -Ltmp5702: - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - .loc 1 2717 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2717:7 - cmovsl %eax, %ebx -Ltmp5703: - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - .loc 1 2720 7 ## /Users/dylan/github/ravi/src/lvm.c:2720:7 - testl %r8d, %r8d - jle LBB28_1 -Ltmp5704: -## BB#4: - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:base <- %RDI - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - .loc 1 2719 9 ## /Users/dylan/github/ravi/src/lvm.c:2719:9 - decl %r8d -Ltmp5705: - ##DEBUG_VALUE: raviV_op_vararg:b <- %R8D - .loc 1 2727 15 ## /Users/dylan/github/ravi/src/lvm.c:2727:15 - movslq %ecx, %r9 - shlq $4, %r9 - addq %rdi, %r9 -Ltmp5706: - ##DEBUG_VALUE: raviV_op_vararg:ra <- %R9 - jmp LBB28_5 -Ltmp5707: -LBB28_1: - ##DEBUG_VALUE: raviV_op_vararg:L <- %R14 - ##DEBUG_VALUE: raviV_op_vararg:ci <- %R12 - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:base <- %RDI - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - .loc 1 2722 5 ## /Users/dylan/github/ravi/src/lvm.c:2722:5 - movq 48(%r14), %rax - subq 16(%r14), %rax - sarq $4, %rax - movslq %ebx, %r15 - cmpq %r15, %rax - jg LBB28_3 -Ltmp5708: -## BB#2: - ##DEBUG_VALUE: raviV_op_vararg:L <- %R14 - ##DEBUG_VALUE: raviV_op_vararg:ci <- %R12 - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - .loc 1 2722 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2722:5 - movq %r14, %rdi - movl %esi, -44(%rbp) ## 4-byte Spill - movl %ebx, %esi - movl %ecx, -48(%rbp) ## 4-byte Spill -Ltmp5709: - ##DEBUG_VALUE: raviV_op_vararg:a <- [%RBP+-48] - callq _luaD_growstack - movl -48(%rbp), %ecx ## 4-byte Reload -Ltmp5710: - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - movl -44(%rbp), %esi ## 4-byte Reload -Ltmp5711: - .loc 1 2722 5 ## /Users/dylan/github/ravi/src/lvm.c:2722:5 - movq 32(%r12), %rdi -Ltmp5712: -LBB28_3: - ##DEBUG_VALUE: raviV_op_vararg:L <- %R14 - ##DEBUG_VALUE: raviV_op_vararg:a <- %ECX - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - .loc 1 2723 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2723:15 - movslq %ecx, %r9 - shlq $4, %r9 -Ltmp5713: - ##DEBUG_VALUE: raviV_op_vararg:base <- %RDI - addq %rdi, %r9 -Ltmp5714: - ##DEBUG_VALUE: raviV_op_vararg:ra <- %R9 - .loc 1 2724 17 ## /Users/dylan/github/ravi/src/lvm.c:2724:17 - shlq $4, %r15 - addq %r9, %r15 - .loc 1 2724 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2724:12 - movq %r15, 16(%r14) - movl %ebx, %r8d -Ltmp5715: -LBB28_5: - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - xorl %edx, %edx - .loc 1 2729 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2729:21 -Ltmp5716: - testl %r8d, %r8d - jle LBB28_9 -Ltmp5717: -## BB#6: - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - testl %ebx, %ebx - jle LBB28_9 -Ltmp5718: -## BB#7: ## %.lr.ph4 - ##DEBUG_VALUE: raviV_op_vararg:b <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:n <- %EBX - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 2730 5 ## /Users/dylan/github/ravi/src/lvm.c:2730:5 - movslq %ebx, %r10 -Ltmp5719: - .loc 1 2729 21 ## /Users/dylan/github/ravi/src/lvm.c:2729:21 - movslq %r8d, %rcx - decl %r13d - xorl %edx, %edx - subl %esi, %r13d - cmovsl %edx, %r13d - movl %r13d, %eax - shlq $4, %rax - subq %rax, %rdi - movq %r9, %rax -Ltmp5720: - .align 4, 0x90 -LBB28_8: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 2730 5 ## /Users/dylan/github/ravi/src/lvm.c:2730:5 - movq (%rdi), %rbx - movq 8(%rdi), %rsi - movq %rsi, 8(%rax) - movq %rbx, (%rax) -Ltmp5721: - .loc 1 2729 21 ## /Users/dylan/github/ravi/src/lvm.c:2729:21 - incq %rdx - cmpq %rcx, %rdx - jge LBB28_9 -## BB#17: ## in Loop: Header=BB28_8 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - addq $16, %rax - addq $16, %rdi - cmpq %r10, %rdx - jl LBB28_8 -Ltmp5722: -LBB28_9: ## %.critedge.preheader - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - movl %r8d, %esi - subl %edx, %esi - jle LBB28_16 -## BB#10: ## %.critedge.preheader5 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 2732 5 ## /Users/dylan/github/ravi/src/lvm.c:2732:5 -Ltmp5723: - movslq %edx, %rcx - leal -1(%r8), %edi - subl %edx, %edi - testb $7, %sil - je LBB28_13 -## BB#11: ## %.critedge.prol.preheader - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - movslq %edx, %rax - shlq $4, %rax - leaq 8(%r9,%rax), %rax - andl $7, %esi - negl %esi - .align 4, 0x90 -LBB28_12: ## %.critedge.prol - ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - movl $0, (%rax) -Ltmp5724: - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - incq %rcx - addq $16, %rax - incl %esi - jne LBB28_12 -LBB28_13: ## %.critedge.preheader5.split - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 2732 5 ## /Users/dylan/github/ravi/src/lvm.c:2732:5 -Ltmp5725: - cmpl $7, %edi - jb LBB28_16 -## BB#14: ## %.critedge.preheader5.split.split - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - subl %ecx, %r8d - shlq $4, %rcx - leaq 120(%rcx,%r9), %rax - .align 4, 0x90 -LBB28_15: ## %.critedge - ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - movl $0, -112(%rax) - movl $0, -96(%rax) - movl $0, -80(%rax) - movl $0, -64(%rax) - movl $0, -48(%rax) - movl $0, -32(%rax) - movl $0, -16(%rax) - movl $0, (%rax) -Ltmp5726: - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - subq $-128, %rax - addl $-8, %r8d - jne LBB28_15 -Ltmp5727: -LBB28_16: ## %.critedge._crit_edge - .loc 1 2733 1 ## /Users/dylan/github/ravi/src/lvm.c:2733:1 - addq $8, %rsp - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp5728: -Lfunc_end28: - .cfi_endproc - - .globl _raviV_op_loadnil - .align 4, 0x90 -_raviV_op_loadnil: ## @raviV_op_loadnil -Lfunc_begin29: - .loc 1 2736 0 ## /Users/dylan/github/ravi/src/lvm.c:2736:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5729: - .cfi_def_cfa_offset 16 -Ltmp5730: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5731: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_loadnil:ci <- %RDI - ##DEBUG_VALUE: raviV_op_loadnil:a <- %ESI - ##DEBUG_VALUE: raviV_op_loadnil:b <- %EDX - .loc 1 2739 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2739:21 -Ltmp5732: - movslq %esi, %rax - shlq $4, %rax - addq 32(%rdi), %rax -Ltmp5733: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- %RAX - .loc 1 2740 3 ## /Users/dylan/github/ravi/src/lvm.c:2740:3 - leal 1(%rdx), %esi -Ltmp5734: - testb $7, %sil - je LBB29_1 -Ltmp5735: -## BB#2: ## %.preheader - ##DEBUG_VALUE: raviV_op_loadnil:b <- %EDX - ##DEBUG_VALUE: raviV_op_loadnil:ra <- %RAX - .loc 1 2740 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2740:8 - andl $7, %esi - negl %esi - movl %edx, %ecx -Ltmp5736: - .align 4, 0x90 -LBB29_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_loadnil:b <- %EDX - ##DEBUG_VALUE: raviV_op_loadnil:ra <- %RAX - movl $0, 8(%rax) - addq $16, %rax -Ltmp5737: - .loc 1 2740 37 ## /Users/dylan/github/ravi/src/lvm.c:2740:37 - decl %ecx -Ltmp5738: - ##DEBUG_VALUE: raviV_op_loadnil:b <- %ECX - .loc 1 2740 27 ## /Users/dylan/github/ravi/src/lvm.c:2740:27 - incl %esi - jne LBB29_3 - jmp LBB29_4 -Ltmp5739: -LBB29_1: - ##DEBUG_VALUE: raviV_op_loadnil:b <- %EDX - ##DEBUG_VALUE: raviV_op_loadnil:ra <- %RAX - movl %edx, %ecx -Ltmp5740: -LBB29_4: ## %.split - ##DEBUG_VALUE: raviV_op_loadnil:b <- %EDX - .loc 1 2740 3 ## /Users/dylan/github/ravi/src/lvm.c:2740:3 - cmpl $7, %edx - jb LBB29_7 -## BB#5: ## %.split.split - notl %ecx - addq $120, %rax - .align 4, 0x90 -LBB29_6: ## =>This Inner Loop Header: Depth=1 - .loc 1 2740 8 ## /Users/dylan/github/ravi/src/lvm.c:2740:8 -Ltmp5741: - movl $0, -112(%rax) - movl $0, -96(%rax) - movl $0, -80(%rax) - movl $0, -64(%rax) - movl $0, -48(%rax) - movl $0, -32(%rax) - movl $0, -16(%rax) - movl $0, (%rax) - .loc 1 2740 27 ## /Users/dylan/github/ravi/src/lvm.c:2740:27 - subq $-128, %rax - addl $8, %ecx - jne LBB29_6 -Ltmp5742: -LBB29_7: - .loc 1 2741 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2741:1 - popq %rbp - retq -Ltmp5743: -Lfunc_end29: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI30_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI30_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_setupvali - .align 4, 0x90 -_raviV_op_setupvali: ## @raviV_op_setupvali -Lfunc_begin30: - .loc 1 2743 0 ## /Users/dylan/github/ravi/src/lvm.c:2743:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5744: - .cfi_def_cfa_offset 16 -Ltmp5745: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5746: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp5747: - .cfi_offset %rbx, -56 -Ltmp5748: - .cfi_offset %r12, -48 -Ltmp5749: - .cfi_offset %r13, -40 -Ltmp5750: - .cfi_offset %r14, -32 -Ltmp5751: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvali:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvali:b <- %ECX - movl %ecx, %r14d -Ltmp5752: - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - movq %rdx, %rbx -Ltmp5753: - ##DEBUG_VALUE: raviV_op_setupvali:ra <- %RBX - movq %rsi, %r12 -Ltmp5754: - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - movq %rdi, %r15 -Ltmp5755: - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - .loc 1 2745 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2745:7 - movl 8(%rbx), %eax -Ltmp5756: - .loc 1 2745 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2745:7 - cmpl $19, %eax - jne LBB30_1 -Ltmp5757: -LBB30_14: - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax -Ltmp5758: -LBB30_15: - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - .loc 1 2746 17 ## /Users/dylan/github/ravi/src/lvm.c:2746:17 - movslq %r14d, %rcx - movq 32(%r12,%rcx,8), %rcx -Ltmp5759: - ##DEBUG_VALUE: uv <- %RCX - .loc 1 2747 5 ## /Users/dylan/github/ravi/src/lvm.c:2747:5 - movq (%rcx), %rcx -Ltmp5760: - ##DEBUG_VALUE: io <- %RCX - movq %rax, (%rcx) - movl $19, 8(%rcx) -Ltmp5761: - .loc 1 2753 1 ## /Users/dylan/github/ravi/src/lvm.c:2753:1 - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp5762: - popq %r13 - popq %r14 -Ltmp5763: - popq %r15 - popq %rbp - retq -Ltmp5764: -LBB30_1: - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -56(%rbp), %r13 - jmp LBB30_2 -Ltmp5765: - .align 4, 0x90 -LBB30_13: ## %._crit_edge - ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp5766: - .loc 1 2745 7 ## /Users/dylan/github/ravi/src/lvm.c:2745:7 - movq %r13, %rbx -Ltmp5767: -LBB30_2: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB30_14 -Ltmp5768: -## BB#3: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - cmpl $3, %eax - je LBB30_4 -Ltmp5769: -## BB#8: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB30_16 -Ltmp5770: -## BB#9: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp5771: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r13, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB30_11 -Ltmp5772: -## BB#10: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - shrl $24, %ecx - jmp LBB30_12 -Ltmp5773: - .align 4, 0x90 -LBB30_11: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq 16(%rdx), %rcx -Ltmp5774: -LBB30_12: ## in Loop: Header=BB30_2 Depth=1 - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp5775: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB30_13 - jmp LBB30_16 -Ltmp5776: -LBB30_4: - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp5777: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -64(%rbp) ## 8-byte Spill -Ltmp5778: - ##DEBUG_VALUE: n <- [%RBP+-64] - callq _floor -Ltmp5779: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -64(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB30_16 - jp LBB30_16 -Ltmp5780: -## BB#5: - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI30_0(%rip), %xmm0 - jb LBB30_16 -Ltmp5781: -## BB#6: - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - movsd LCPI30_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB30_16 -Ltmp5782: -## BB#7: - ##DEBUG_VALUE: raviV_op_setupvali:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvali:b <- %R14D - cvttsd2si %xmm0, %rax - jmp LBB30_15 -Ltmp5783: -LBB30_16: ## %.loopexit - ##DEBUG_VALUE: raviV_op_setupvali:L <- %R15 - .loc 1 2751 5 ## /Users/dylan/github/ravi/src/lvm.c:2751:5 - leaq L_.str.16(%rip), %rsi - xorl %eax, %eax - movq %r15, %rdi - callq _luaG_runerror -Ltmp5784: -Lfunc_end30: - .cfi_endproc - - .globl _raviV_op_setupvalf - .align 4, 0x90 -_raviV_op_setupvalf: ## @raviV_op_setupvalf -Lfunc_begin31: - .loc 1 2755 0 ## /Users/dylan/github/ravi/src/lvm.c:2755:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5785: - .cfi_def_cfa_offset 16 -Ltmp5786: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5787: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp -Ltmp5788: - .cfi_offset %rbx, -48 -Ltmp5789: - .cfi_offset %r12, -40 -Ltmp5790: - .cfi_offset %r14, -32 -Ltmp5791: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %ECX - movl %ecx, %r14d -Ltmp5792: - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - movq %rdx, %rbx -Ltmp5793: - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - movq %rsi, %r12 -Ltmp5794: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - movq %rdi, %r15 -Ltmp5795: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp5796: - .loc 1 2757 7 ## /Users/dylan/github/ravi/src/lvm.c:2757:7 - cmpl $3, %eax - jne LBB31_2 -Ltmp5797: -## BB#1: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 2757 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2757:7 - movq (%rbx), %rax -Ltmp5798: -LBB31_13: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 2758 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2758:17 - movslq %r14d, %rcx - movq 32(%r12,%rcx,8), %rcx -Ltmp5799: - ##DEBUG_VALUE: uv <- %RCX - .loc 1 2759 5 ## /Users/dylan/github/ravi/src/lvm.c:2759:5 - movq (%rcx), %rcx -Ltmp5800: - ##DEBUG_VALUE: io <- %RCX - movq %rax, (%rcx) - movl $3, 8(%rcx) -Ltmp5801: - .loc 1 2765 1 ## /Users/dylan/github/ravi/src/lvm.c:2765:1 - addq $16, %rsp - popq %rbx - popq %r12 -Ltmp5802: - popq %r14 -Ltmp5803: - popq %r15 - popq %rbp - retq -Ltmp5804: -LBB31_2: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB31_4 -Ltmp5805: -## BB#3: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 - jmp LBB31_12 -Ltmp5806: -LBB31_4: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 83 12 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB31_14 -Ltmp5807: -## BB#5: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- %RBX - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi -Ltmp5808: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - addq $24, %rdi - leaq -48(%rbp), %rsi -Ltmp5809: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5810: - cmpl $4, %esi - jne LBB31_7 -Ltmp5811: -## BB#6: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - shrl $24, %ecx - jmp LBB31_8 -Ltmp5812: -LBB31_7: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - movq 16(%rdx), %rcx -Ltmp5813: -LBB31_8: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5814: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB31_14 -Ltmp5815: -## BB#9: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -40(%rbp) - movq -48(%rbp), %rax - jne LBB31_11 -Ltmp5816: -## BB#10: - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - cvtsi2sdq %rax, %xmm0 - jmp LBB31_12 -Ltmp5817: -LBB31_11: ## %select.false - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - movd %rax, %xmm0 -Ltmp5818: -LBB31_12: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- %R12 - ##DEBUG_VALUE: raviV_op_setupvalf:b <- %R14D - .loc 1 80 8 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB31_13 -Ltmp5819: -LBB31_14: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- %R15 - .loc 1 2763 5 ## /Users/dylan/github/ravi/src/lvm.c:2763:5 - leaq L_.str.17(%rip), %rsi - xorl %eax, %eax - movq %r15, %rdi - callq _luaG_runerror -Ltmp5820: -Lfunc_end31: - .cfi_endproc - - .globl _raviV_op_setupvalai - .align 4, 0x90 -_raviV_op_setupvalai: ## @raviV_op_setupvalai -Lfunc_begin32: - .loc 1 2767 0 ## /Users/dylan/github/ravi/src/lvm.c:2767:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: raviV_op_setupvalai:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalai:b <- %ECX - .loc 1 2768 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2768:8 - cmpl $85, 8(%rdx) -Ltmp5821: - .loc 1 2768 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2768:7 - jne LBB32_4 -Ltmp5822: -## BB#1: - ##DEBUG_VALUE: raviV_op_setupvalai:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalai:b <- %ECX - .loc 1 2771 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2771:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp5823: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- %RSI - .loc 1 2772 3 ## /Users/dylan/github/ravi/src/lvm.c:2772:3 - movq (%rsi), %rax - movq (%rdx), %rcx -Ltmp5824: - movq 8(%rdx), %rdx -Ltmp5825: - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp5826: - .loc 1 2773 3 ## /Users/dylan/github/ravi/src/lvm.c:2773:3 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB32_3 -Ltmp5827: -## BB#2: - ##DEBUG_VALUE: raviV_op_setupvalai:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB32_5 -Ltmp5828: -LBB32_3: - .loc 1 2774 1 ## /Users/dylan/github/ravi/src/lvm.c:2774:1 - retq -LBB32_5: - ##DEBUG_VALUE: raviV_op_setupvalai:L <- %RDI -Ltmp5829: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- %RSI - .loc 1 2773 3 ## /Users/dylan/github/ravi/src/lvm.c:2773:3 - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp5830: -LBB32_4: - pushq %rbp -Ltmp5831: - .cfi_def_cfa_offset 16 -Ltmp5832: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5833: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalai:L <- %RDI - .loc 1 2769 5 ## /Users/dylan/github/ravi/src/lvm.c:2769:5 -Ltmp5834: - leaq L_.str.18(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp5835: -Lfunc_end32: - .cfi_endproc - - .globl _raviV_op_setupvalaf - .align 4, 0x90 -_raviV_op_setupvalaf: ## @raviV_op_setupvalaf -Lfunc_begin33: - .loc 1 2776 0 ## /Users/dylan/github/ravi/src/lvm.c:2776:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- %ECX - .loc 1 2777 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2777:8 - cmpl $101, 8(%rdx) -Ltmp5836: - .loc 1 2777 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2777:7 - jne LBB33_4 -Ltmp5837: -## BB#1: - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- %ECX - .loc 1 2780 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2780:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp5838: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- %RSI - .loc 1 2781 3 ## /Users/dylan/github/ravi/src/lvm.c:2781:3 - movq (%rsi), %rax - movq (%rdx), %rcx -Ltmp5839: - movq 8(%rdx), %rdx -Ltmp5840: - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp5841: - .loc 1 2782 3 ## /Users/dylan/github/ravi/src/lvm.c:2782:3 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB33_3 -Ltmp5842: -## BB#2: - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB33_5 -Ltmp5843: -LBB33_3: - .loc 1 2783 1 ## /Users/dylan/github/ravi/src/lvm.c:2783:1 - retq -LBB33_5: - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- %RDI -Ltmp5844: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- %RSI - .loc 1 2782 3 ## /Users/dylan/github/ravi/src/lvm.c:2782:3 - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp5845: -LBB33_4: - pushq %rbp -Ltmp5846: - .cfi_def_cfa_offset 16 -Ltmp5847: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5848: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- %RDI - .loc 1 2778 5 ## /Users/dylan/github/ravi/src/lvm.c:2778:5 -Ltmp5849: - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp5850: -Lfunc_end33: - .cfi_endproc - - .globl _raviV_op_setupvalt - .align 4, 0x90 -_raviV_op_setupvalt: ## @raviV_op_setupvalt -Lfunc_begin34: - .loc 1 2785 0 ## /Users/dylan/github/ravi/src/lvm.c:2785:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: raviV_op_setupvalt:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalt:b <- %ECX - .loc 1 2786 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2786:8 - cmpl $69, 8(%rdx) -Ltmp5851: - .loc 1 2786 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2786:7 - jne LBB34_4 -Ltmp5852: -## BB#1: - ##DEBUG_VALUE: raviV_op_setupvalt:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupvalt:b <- %ECX - .loc 1 2788 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2788:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp5853: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- %RSI - .loc 1 2789 3 ## /Users/dylan/github/ravi/src/lvm.c:2789:3 - movq (%rsi), %rax - movq (%rdx), %rcx -Ltmp5854: - movq 8(%rdx), %rdx -Ltmp5855: - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp5856: - .loc 1 2790 3 ## /Users/dylan/github/ravi/src/lvm.c:2790:3 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB34_3 -Ltmp5857: -## BB#2: - ##DEBUG_VALUE: raviV_op_setupvalt:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB34_5 -Ltmp5858: -LBB34_3: - .loc 1 2791 1 ## /Users/dylan/github/ravi/src/lvm.c:2791:1 - retq -LBB34_5: - ##DEBUG_VALUE: raviV_op_setupvalt:L <- %RDI -Ltmp5859: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- %RSI - .loc 1 2790 3 ## /Users/dylan/github/ravi/src/lvm.c:2790:3 - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp5860: -LBB34_4: - pushq %rbp -Ltmp5861: - .cfi_def_cfa_offset 16 -Ltmp5862: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5863: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalt:L <- %RDI - .loc 1 2787 5 ## /Users/dylan/github/ravi/src/lvm.c:2787:5 -Ltmp5864: - leaq L_.str.20(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp5865: -Lfunc_end34: - .cfi_endproc - - .globl _raviV_op_setupval - .align 4, 0x90 -_raviV_op_setupval: ## @raviV_op_setupval -Lfunc_begin35: - .loc 1 2793 0 ## /Users/dylan/github/ravi/src/lvm.c:2793:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5866: - .cfi_def_cfa_offset 16 -Ltmp5867: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5868: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupval:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupval:cl <- %RSI - ##DEBUG_VALUE: raviV_op_setupval:ra <- %RDX - ##DEBUG_VALUE: raviV_op_setupval:b <- %ECX - .loc 1 2794 15 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2794:15 -Ltmp5869: - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp5870: - ##DEBUG_VALUE: raviV_op_setupval:uv <- %RSI - .loc 1 2795 3 ## /Users/dylan/github/ravi/src/lvm.c:2795:3 - movq (%rsi), %rax - movq (%rdx), %rcx -Ltmp5871: - movq 8(%rdx), %rdx -Ltmp5872: - movq %rdx, 8(%rax) - movq %rcx, (%rax) -Ltmp5873: - .loc 1 2796 3 ## /Users/dylan/github/ravi/src/lvm.c:2796:3 - movq (%rsi), %rax - testb $64, 8(%rax) - je LBB35_2 -Ltmp5874: -## BB#1: - ##DEBUG_VALUE: raviV_op_setupval:L <- %RDI - ##DEBUG_VALUE: raviV_op_setupval:uv <- %RSI - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB35_3 -Ltmp5875: -LBB35_2: - .loc 1 2797 1 ## /Users/dylan/github/ravi/src/lvm.c:2797:1 - popq %rbp - retq -LBB35_3: - ##DEBUG_VALUE: raviV_op_setupval:L <- %RDI -Ltmp5876: - ##DEBUG_VALUE: raviV_op_setupval:uv <- %RSI - .loc 1 2796 3 ## /Users/dylan/github/ravi/src/lvm.c:2796:3 - popq %rbp - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp5877: -Lfunc_end35: - .cfi_endproc - - .globl _raviV_op_add - .align 4, 0x90 -_raviV_op_add: ## @raviV_op_add -Lfunc_begin36: - .loc 1 2799 0 ## /Users/dylan/github/ravi/src/lvm.c:2799:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5878: - .cfi_def_cfa_offset 16 -Ltmp5879: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5880: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp5881: - .cfi_offset %rbx, -56 -Ltmp5882: - .cfi_offset %r12, -48 -Ltmp5883: - .cfi_offset %r13, -40 -Ltmp5884: - .cfi_offset %r14, -32 -Ltmp5885: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_add:L <- %RDI - ##DEBUG_VALUE: raviV_op_add:ra <- %RSI - ##DEBUG_VALUE: raviV_op_add:rb <- %RDX - ##DEBUG_VALUE: raviV_op_add:rc <- %RCX -Ltmp5886: - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %rbx -Ltmp5887: - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - movq %rdx, %r15 -Ltmp5888: - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - movq %rsi, %r14 -Ltmp5889: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - movq %rdi, %r12 -Ltmp5890: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp5891: - .loc 1 2802 23 ## /Users/dylan/github/ravi/src/lvm.c:2802:23 - cmpl $19, %eax - jne LBB36_1 -Ltmp5892: -## BB#3: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 2802 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2802:7 - cmpl $19, 8(%rbx) - jne LBB36_13 -Ltmp5893: -## BB#4: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 2804 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2804:22 - movq (%rbx), %rax -Ltmp5894: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 2805 5 ## /Users/dylan/github/ravi/src/lvm.c:2805:5 - addq (%r15), %rax -Ltmp5895: - movq %rax, (%r14) - movl $19, 8(%r14) - jmp LBB36_30 -Ltmp5896: -LBB36_1: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - cmpl $3, %eax - jne LBB36_5 -Ltmp5897: -## BB#2: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 2807 12 ## /Users/dylan/github/ravi/src/lvm.c:2807:12 - movq (%r15), %r13 - jmp LBB36_15 -Ltmp5898: -LBB36_13: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r15), %xmm0 -Ltmp5899: -LBB36_14: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %r13 -Ltmp5900: -LBB36_15: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp5901: - .loc 1 2807 12 ## /Users/dylan/github/ravi/src/lvm.c:2807:12 - cmpl $3, %eax - jne LBB36_17 -Ltmp5902: -## BB#16: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 2807 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2807:33 - movq (%rbx), %rax -Ltmp5903: -LBB36_28: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - .loc 1 2808 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2808:5 - movd %r13, %xmm0 - movd %rax, %xmm1 - addsd %xmm0, %xmm1 - movsd %xmm1, (%r14) - movl $3, 8(%r14) -Ltmp5904: -LBB36_30: - .loc 1 2813 1 ## /Users/dylan/github/ravi/src/lvm.c:2813:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB36_17: -Ltmp5905: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB36_19 -Ltmp5906: -## BB#18: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rbx), %xmm0 -Ltmp5907: -LBB36_27: ## %luaV_tonumber_.exit5 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB36_28 -Ltmp5908: -LBB36_5: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB36_29 -Ltmp5909: -## BB#6: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi -Ltmp5910: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5911: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5912: - cmpl $4, %esi - jne LBB36_8 -Ltmp5913: -## BB#7: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - shrl $24, %ecx - jmp LBB36_9 -Ltmp5914: -LBB36_19: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB36_29 -Ltmp5915: -## BB#20: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi -Ltmp5916: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5917: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5918: - cmpl $4, %esi - jne LBB36_22 -Ltmp5919: -## BB#21: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - shrl $24, %ecx - jmp LBB36_23 -Ltmp5920: -LBB36_8: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp5921: -LBB36_9: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5922: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB36_29 -Ltmp5923: -## BB#10: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB36_12 -Ltmp5924: -## BB#11: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - cvtsi2sdq %rax, %xmm0 - jmp LBB36_14 -Ltmp5925: -LBB36_22: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp5926: -LBB36_23: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5927: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB36_29 -Ltmp5928: -## BB#24: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB36_26 -Ltmp5929: -## BB#25: - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - cvtsi2sdq %rax, %xmm0 - jmp LBB36_27 -Ltmp5930: -LBB36_29: - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - .loc 1 2811 5 ## /Users/dylan/github/ravi/src/lvm.c:2811:5 - movl $6, %r8d - movq %r12, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB36_30 -Ltmp5931: -LBB36_12: ## %select.false - ##DEBUG_VALUE: raviV_op_add:L <- %R12 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - ##DEBUG_VALUE: raviV_op_add:rb <- %R15 - ##DEBUG_VALUE: raviV_op_add:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB36_14 -Ltmp5932: -LBB36_26: ## %select.false8 - ##DEBUG_VALUE: raviV_op_add:ra <- %R14 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB36_27 -Ltmp5933: -Lfunc_end36: - .cfi_endproc - - .globl _raviV_op_sub - .align 4, 0x90 -_raviV_op_sub: ## @raviV_op_sub -Lfunc_begin37: - .loc 1 2815 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2815:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5934: - .cfi_def_cfa_offset 16 -Ltmp5935: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5936: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp5937: - .cfi_offset %rbx, -56 -Ltmp5938: - .cfi_offset %r12, -48 -Ltmp5939: - .cfi_offset %r13, -40 -Ltmp5940: - .cfi_offset %r14, -32 -Ltmp5941: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_sub:L <- %RDI - ##DEBUG_VALUE: raviV_op_sub:ra <- %RSI - ##DEBUG_VALUE: raviV_op_sub:rb <- %RDX - ##DEBUG_VALUE: raviV_op_sub:rc <- %RCX -Ltmp5942: - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %rbx -Ltmp5943: - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - movq %rdx, %r15 -Ltmp5944: - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - movq %rsi, %r14 -Ltmp5945: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - movq %rdi, %r12 -Ltmp5946: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp5947: - .loc 1 2818 23 ## /Users/dylan/github/ravi/src/lvm.c:2818:23 - cmpl $19, %eax - jne LBB37_1 -Ltmp5948: -## BB#3: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 2818 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2818:7 - cmpl $19, 8(%rbx) - jne LBB37_13 -Ltmp5949: -## BB#4: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 2819 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2819:22 - movq (%r15), %rax -Ltmp5950: - ##DEBUG_VALUE: ib <- %RAX - .loc 1 2821 5 ## /Users/dylan/github/ravi/src/lvm.c:2821:5 - subq (%rbx), %rax -Ltmp5951: - movq %rax, (%r14) - movl $19, 8(%r14) - jmp LBB37_30 -Ltmp5952: -LBB37_1: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - cmpl $3, %eax - jne LBB37_5 -Ltmp5953: -## BB#2: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 2823 12 ## /Users/dylan/github/ravi/src/lvm.c:2823:12 - movq (%r15), %r13 - jmp LBB37_15 -Ltmp5954: -LBB37_13: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r15), %xmm0 -Ltmp5955: -LBB37_14: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %r13 -Ltmp5956: -LBB37_15: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp5957: - .loc 1 2823 12 ## /Users/dylan/github/ravi/src/lvm.c:2823:12 - cmpl $3, %eax - jne LBB37_17 -Ltmp5958: -## BB#16: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 2823 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2823:33 - movq (%rbx), %rax -Ltmp5959: -LBB37_28: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - .loc 1 2824 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2824:5 - movd %r13, %xmm0 - movd %rax, %xmm1 - subsd %xmm1, %xmm0 - movsd %xmm0, (%r14) - movl $3, 8(%r14) -Ltmp5960: -LBB37_30: - .loc 1 2829 1 ## /Users/dylan/github/ravi/src/lvm.c:2829:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB37_17: -Ltmp5961: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB37_19 -Ltmp5962: -## BB#18: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rbx), %xmm0 -Ltmp5963: -LBB37_27: ## %luaV_tonumber_.exit5 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB37_28 -Ltmp5964: -LBB37_5: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB37_29 -Ltmp5965: -## BB#6: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi -Ltmp5966: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5967: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5968: - cmpl $4, %esi - jne LBB37_8 -Ltmp5969: -## BB#7: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - shrl $24, %ecx - jmp LBB37_9 -Ltmp5970: -LBB37_19: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB37_29 -Ltmp5971: -## BB#20: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi -Ltmp5972: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp5973: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp5974: - cmpl $4, %esi - jne LBB37_22 -Ltmp5975: -## BB#21: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - shrl $24, %ecx - jmp LBB37_23 -Ltmp5976: -LBB37_8: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp5977: -LBB37_9: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5978: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB37_29 -Ltmp5979: -## BB#10: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB37_12 -Ltmp5980: -## BB#11: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - cvtsi2sdq %rax, %xmm0 - jmp LBB37_14 -Ltmp5981: -LBB37_22: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp5982: -LBB37_23: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp5983: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB37_29 -Ltmp5984: -## BB#24: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB37_26 -Ltmp5985: -## BB#25: - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - cvtsi2sdq %rax, %xmm0 - jmp LBB37_27 -Ltmp5986: -LBB37_29: - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - .loc 1 2827 5 ## /Users/dylan/github/ravi/src/lvm.c:2827:5 - movl $7, %r8d - movq %r12, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB37_30 -Ltmp5987: -LBB37_12: ## %select.false - ##DEBUG_VALUE: raviV_op_sub:L <- %R12 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - ##DEBUG_VALUE: raviV_op_sub:rb <- %R15 - ##DEBUG_VALUE: raviV_op_sub:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB37_14 -Ltmp5988: -LBB37_26: ## %select.false8 - ##DEBUG_VALUE: raviV_op_sub:ra <- %R14 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB37_27 -Ltmp5989: -Lfunc_end37: - .cfi_endproc - - .globl _raviV_op_mul - .align 4, 0x90 -_raviV_op_mul: ## @raviV_op_mul -Lfunc_begin38: - .loc 1 2831 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2831:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp5990: - .cfi_def_cfa_offset 16 -Ltmp5991: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp5992: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp5993: - .cfi_offset %rbx, -56 -Ltmp5994: - .cfi_offset %r12, -48 -Ltmp5995: - .cfi_offset %r13, -40 -Ltmp5996: - .cfi_offset %r14, -32 -Ltmp5997: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_mul:L <- %RDI - ##DEBUG_VALUE: raviV_op_mul:ra <- %RSI - ##DEBUG_VALUE: raviV_op_mul:rb <- %RDX - ##DEBUG_VALUE: raviV_op_mul:rc <- %RCX -Ltmp5998: - ##DEBUG_VALUE: io <- %RSI - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %rbx -Ltmp5999: - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - movq %rdx, %r15 -Ltmp6000: - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - movq %rsi, %r14 -Ltmp6001: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - movq %rdi, %r12 -Ltmp6002: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp6003: - .loc 1 2834 23 ## /Users/dylan/github/ravi/src/lvm.c:2834:23 - cmpl $19, %eax - jne LBB38_1 -Ltmp6004: -## BB#3: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 2834 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2834:7 - cmpl $19, 8(%rbx) - jne LBB38_13 -Ltmp6005: -## BB#4: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 2836 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2836:22 - movq (%rbx), %rax -Ltmp6006: - ##DEBUG_VALUE: ic <- %RAX - .loc 1 2837 5 ## /Users/dylan/github/ravi/src/lvm.c:2837:5 - imulq (%r15), %rax -Ltmp6007: - movq %rax, (%r14) - movl $19, 8(%r14) - jmp LBB38_30 -Ltmp6008: -LBB38_1: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - cmpl $3, %eax - jne LBB38_5 -Ltmp6009: -## BB#2: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 2839 12 ## /Users/dylan/github/ravi/src/lvm.c:2839:12 - movq (%r15), %r13 - jmp LBB38_15 -Ltmp6010: -LBB38_13: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%r15), %xmm0 -Ltmp6011: -LBB38_14: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %r13 -Ltmp6012: -LBB38_15: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp6013: - .loc 1 2839 12 ## /Users/dylan/github/ravi/src/lvm.c:2839:12 - cmpl $3, %eax - jne LBB38_17 -Ltmp6014: -## BB#16: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 2839 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2839:33 - movq (%rbx), %rax -Ltmp6015: -LBB38_28: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - .loc 1 2840 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2840:5 - movd %r13, %xmm0 - movd %rax, %xmm1 - mulsd %xmm0, %xmm1 - movsd %xmm1, (%r14) - movl $3, 8(%r14) -Ltmp6016: -LBB38_30: - .loc 1 2845 1 ## /Users/dylan/github/ravi/src/lvm.c:2845:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB38_17: -Ltmp6017: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB38_19 -Ltmp6018: -## BB#18: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rbx), %xmm0 -Ltmp6019: -LBB38_27: ## %luaV_tonumber_.exit5 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB38_28 -Ltmp6020: -LBB38_5: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB38_29 -Ltmp6021: -## BB#6: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi -Ltmp6022: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp6023: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp6024: - cmpl $4, %esi - jne LBB38_8 -Ltmp6025: -## BB#7: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - shrl $24, %ecx - jmp LBB38_9 -Ltmp6026: -LBB38_19: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB38_29 -Ltmp6027: -## BB#20: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi -Ltmp6028: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp6029: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp6030: - cmpl $4, %esi - jne LBB38_22 -Ltmp6031: -## BB#21: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - shrl $24, %ecx - jmp LBB38_23 -Ltmp6032: -LBB38_8: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp6033: -LBB38_9: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp6034: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB38_29 -Ltmp6035: -## BB#10: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB38_12 -Ltmp6036: -## BB#11: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - cvtsi2sdq %rax, %xmm0 - jmp LBB38_14 -Ltmp6037: -LBB38_22: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp6038: -LBB38_23: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp6039: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB38_29 -Ltmp6040: -## BB#24: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB38_26 -Ltmp6041: -## BB#25: - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - cvtsi2sdq %rax, %xmm0 - jmp LBB38_27 -Ltmp6042: -LBB38_29: - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - .loc 1 2843 5 ## /Users/dylan/github/ravi/src/lvm.c:2843:5 - movl $8, %r8d - movq %r12, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB38_30 -Ltmp6043: -LBB38_12: ## %select.false - ##DEBUG_VALUE: raviV_op_mul:L <- %R12 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - ##DEBUG_VALUE: raviV_op_mul:rb <- %R15 - ##DEBUG_VALUE: raviV_op_mul:rc <- %RBX - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB38_14 -Ltmp6044: -LBB38_26: ## %select.false8 - ##DEBUG_VALUE: raviV_op_mul:ra <- %R14 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB38_27 -Ltmp6045: -Lfunc_end38: - .cfi_endproc - - .globl _raviV_op_div - .align 4, 0x90 -_raviV_op_div: ## @raviV_op_div -Lfunc_begin39: - .loc 1 2847 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2847:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6046: - .cfi_def_cfa_offset 16 -Ltmp6047: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6048: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp6049: - .cfi_offset %rbx, -56 -Ltmp6050: - .cfi_offset %r12, -48 -Ltmp6051: - .cfi_offset %r13, -40 -Ltmp6052: - .cfi_offset %r14, -32 -Ltmp6053: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_div:L <- %RDI - ##DEBUG_VALUE: raviV_op_div:ra <- %RSI - ##DEBUG_VALUE: raviV_op_div:rb <- %RDX - ##DEBUG_VALUE: raviV_op_div:rc <- %RCX -Ltmp6054: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6055: - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - movq %rdx, %rbx -Ltmp6056: - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - movq %rsi, %r14 -Ltmp6057: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - movq %rdi, %r12 -Ltmp6058: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%rbx), %eax -Ltmp6059: - .loc 1 2850 25 ## /Users/dylan/github/ravi/src/lvm.c:2850:25 - cmpl $3, %eax - jne LBB39_2 -Ltmp6060: -## BB#1: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 2850 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2850:7 - movq (%rbx), %r13 -Ltmp6061: -LBB39_13: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r15), %eax -Ltmp6062: - .loc 1 2850 7 ## /Users/dylan/github/ravi/src/lvm.c:2850:7 - cmpl $3, %eax - jne LBB39_15 -Ltmp6063: -## BB#14: - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 2850 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2850:28 - movq (%r15), %rax -Ltmp6064: -LBB39_26: - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - .loc 1 2851 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2851:5 - movd %r13, %xmm0 - movd %rax, %xmm1 - divsd %xmm1, %xmm0 - movsd %xmm0, (%r14) - movl $3, 8(%r14) -Ltmp6065: -LBB39_28: - .loc 1 2856 1 ## /Users/dylan/github/ravi/src/lvm.c:2856:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB39_2: -Ltmp6066: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 79 7 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB39_4 -Ltmp6067: -## BB#3: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 -Ltmp6068: -LBB39_12: ## %luaV_tonumber_.exit - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %r13 - jmp LBB39_13 -Ltmp6069: -LBB39_15: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - cmpl $19, %eax - jne LBB39_17 -Ltmp6070: -## BB#16: - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 80 10 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r15), %xmm0 -Ltmp6071: -LBB39_25: ## %luaV_tonumber_.exit4 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - .loc 1 80 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:80:8 - movd %xmm0, %rax - jmp LBB39_26 -Ltmp6072: -LBB39_4: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB39_27 -Ltmp6073: -## BB#5: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi -Ltmp6074: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp6075: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp6076: - cmpl $4, %esi - jne LBB39_7 -Ltmp6077: -## BB#6: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - shrl $24, %ecx - jmp LBB39_8 -Ltmp6078: -LBB39_17: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB39_27 -Ltmp6079: -## BB#18: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r15), %rdi -Ltmp6080: - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp6081: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r15), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi -Ltmp6082: - cmpl $4, %esi - jne LBB39_20 -Ltmp6083: -## BB#19: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - shrl $24, %ecx - jmp LBB39_21 -Ltmp6084: -LBB39_7: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp6085: -LBB39_8: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp6086: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB39_27 -Ltmp6087: -## BB#9: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB39_11 -Ltmp6088: -## BB#10: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - cvtsi2sdq %rax, %xmm0 - jmp LBB39_12 -Ltmp6089: -LBB39_20: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rcx -Ltmp6090: -LBB39_21: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R15 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx -Ltmp6091: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rcx, %rax - jne LBB39_27 -Ltmp6092: -## BB#22: - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB39_24 -Ltmp6093: -## BB#23: - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - cvtsi2sdq %rax, %xmm0 - jmp LBB39_25 -Ltmp6094: -LBB39_27: - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - .loc 1 2854 5 ## /Users/dylan/github/ravi/src/lvm.c:2854:5 - movl $11, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB39_28 -Ltmp6095: -LBB39_11: ## %select.false - ##DEBUG_VALUE: raviV_op_div:L <- %R12 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - ##DEBUG_VALUE: raviV_op_div:rb <- %RBX - ##DEBUG_VALUE: raviV_op_div:rc <- %R15 - ##DEBUG_VALUE: luaV_tonumber_:obj <- %RBX - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB39_12 -Ltmp6096: -LBB39_24: ## %select.false7 - ##DEBUG_VALUE: raviV_op_div:ra <- %R14 - .loc 1 85 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movd %rax, %xmm0 - jmp LBB39_25 -Ltmp6097: -Lfunc_end39: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI40_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI40_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_shl - .align 4, 0x90 -_raviV_op_shl: ## @raviV_op_shl -Lfunc_begin40: - .loc 1 2858 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2858:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6098: - .cfi_def_cfa_offset 16 -Ltmp6099: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6100: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp6101: - .cfi_offset %rbx, -56 -Ltmp6102: - .cfi_offset %r12, -48 -Ltmp6103: - .cfi_offset %r13, -40 -Ltmp6104: - .cfi_offset %r14, -32 -Ltmp6105: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - ##DEBUG_VALUE: raviV_op_shl:ra <- %RSI - ##DEBUG_VALUE: raviV_op_shl:rb <- %RDX - ##DEBUG_VALUE: raviV_op_shl:rc <- %RCX -Ltmp6106: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6107: - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - movq %rdx, %r13 -Ltmp6108: - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - movq %rsi, %r14 -Ltmp6109: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - .loc 1 2861 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2861:7 - movl 8(%r13), %eax - .loc 1 2861 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2861:26 - cmpl $19, %eax - jne LBB40_2 -Ltmp6110: -## BB#1: - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2861 7 ## /Users/dylan/github/ravi/src/lvm.c:2861:7 - movq (%r13), %r12 -Ltmp6111: - ##DEBUG_VALUE: raviV_op_shl:ib <- %R12 -LBB40_17: - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 2861 29 ## /Users/dylan/github/ravi/src/lvm.c:2861:29 - movl 8(%r15), %eax -Ltmp6112: - .loc 1 2861 7 ## /Users/dylan/github/ravi/src/lvm.c:2861:7 - cmpl $19, %eax - jne LBB40_19 -Ltmp6113: -## BB#18: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 2861 29 ## /Users/dylan/github/ravi/src/lvm.c:2861:29 - movq (%r15), %rax -Ltmp6114: - ##DEBUG_VALUE: raviV_op_shl:ic <- %RAX -LBB40_34: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 861 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - js LBB40_35 -Ltmp6115: -## BB#36: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - ##DEBUG_VALUE: luaV_shiftl:x <- %R12 - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - movb %al, %cl - shlq %cl, %r12 -Ltmp6116: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - xorl %ecx, %ecx - .loc 1 866 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp6117: - cmpq $63, %rax -Ltmp6118: - .loc 1 866 9 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovleq %r12, %rcx - jmp LBB40_37 -Ltmp6119: -LBB40_35: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: luaV_shiftl:y <- %RAX - .loc 1 863 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movl %eax, %ecx - negl %ecx - shrq %cl, %r12 - xorl %ecx, %ecx - .loc 1 862 11 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - cmpq $-63, %rax -Ltmp6120: - .loc 1 862 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovgeq %r12, %rcx -Ltmp6121: -LBB40_37: ## %luaV_shiftl.exit - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - .loc 1 2862 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2862:5 - movq %rcx, (%r14) - movl $19, 8(%r14) -Ltmp6122: -LBB40_40: - .loc 1 2867 1 ## /Users/dylan/github/ravi/src/lvm.c:2867:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB40_2: -Ltmp6123: - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6124: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - leaq -56(%rbp), %r12 - .loc 1 2861 7 ## /Users/dylan/github/ravi/src/lvm.c:2861:7 -Ltmp6125: - movq %r13, %rbx - jmp LBB40_3 -Ltmp6126: - .align 4, 0x90 -LBB40_14: ## %._crit_edge - ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6127: - .loc 1 2861 7 ## /Users/dylan/github/ravi/src/lvm.c:2861:7 - movq %r12, %rbx -Ltmp6128: -LBB40_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB40_15 -Ltmp6129: -## BB#4: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - cmpl $3, %eax - je LBB40_5 -Ltmp6130: -## BB#9: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB40_39 -Ltmp6131: -## BB#10: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6132: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB40_12 -Ltmp6133: -## BB#11: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB40_13 -Ltmp6134: - .align 4, 0x90 -LBB40_12: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6135: -LBB40_13: ## in Loop: Header=BB40_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6136: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB40_14 - jmp LBB40_39 -Ltmp6137: -LBB40_19: - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r14, -72(%rbp) ## 8-byte Spill -Ltmp6138: - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6139: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - leaq -56(%rbp), %r14 - .loc 1 2861 29 ## /Users/dylan/github/ravi/src/lvm.c:2861:29 - movq %r15, %rbx - jmp LBB40_20 -Ltmp6140: - .align 4, 0x90 -LBB40_31: ## %._crit_edge.14 - ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6141: - .loc 1 2861 29 ## /Users/dylan/github/ravi/src/lvm.c:2861:29 - movq %r14, %rbx -Ltmp6142: -LBB40_20: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB40_32 -Ltmp6143: -## BB#21: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - cmpl $3, %eax - je LBB40_22 -Ltmp6144: -## BB#26: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB40_38 -Ltmp6145: -## BB#27: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6146: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB40_29 -Ltmp6147: -## BB#28: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB40_30 -Ltmp6148: - .align 4, 0x90 -LBB40_29: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp6149: -LBB40_30: ## in Loop: Header=BB40_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6150: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB40_31 - jmp LBB40_38 -Ltmp6151: -LBB40_15: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %r12 - jmp LBB40_16 -Ltmp6152: -LBB40_5: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6153: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp6154: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp6155: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -72(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB40_39 - jp LBB40_39 -Ltmp6156: -## BB#6: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI40_0(%rip), %xmm0 - jb LBB40_39 -Ltmp6157: -## BB#7: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - movsd LCPI40_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB40_39 -Ltmp6158: -## BB#8: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - cvttsd2si %xmm0, %r12 -Ltmp6159: -LBB40_16: - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp6160: - ##DEBUG_VALUE: raviV_op_shl:L <- %RDI - jmp LBB40_17 -Ltmp6161: -LBB40_32: - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB40_33 -Ltmp6162: -LBB40_22: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6163: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -80(%rbp) ## 8-byte Spill -Ltmp6164: - ##DEBUG_VALUE: n <- [%RBP+-80] - callq _floor -Ltmp6165: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -80(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB40_38 - jp LBB40_38 -Ltmp6166: -## BB#23: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI40_0(%rip), %xmm0 - jb LBB40_38 -Ltmp6167: -## BB#24: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - movsd LCPI40_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB40_38 -Ltmp6168: -## BB#25: - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - cvttsd2si %xmm0, %rax -Ltmp6169: -LBB40_33: ## %luaV_tointeger.exit5 - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6170: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - jmp LBB40_34 -Ltmp6171: -LBB40_38: ## %luaV_tointeger.exit5.thread - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6172: - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 -LBB40_39: - ##DEBUG_VALUE: raviV_op_shl:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shl:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shl:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shl:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R15 - .loc 1 2865 5 ## /Users/dylan/github/ravi/src/lvm.c:2865:5 - movl $16, %r8d - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB40_40 -Ltmp6173: -Lfunc_end40: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI41_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI41_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_shr - .align 4, 0x90 -_raviV_op_shr: ## @raviV_op_shr -Lfunc_begin41: - .loc 1 2869 0 ## /Users/dylan/github/ravi/src/lvm.c:2869:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6174: - .cfi_def_cfa_offset 16 -Ltmp6175: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6176: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp6177: - .cfi_offset %rbx, -56 -Ltmp6178: - .cfi_offset %r12, -48 -Ltmp6179: - .cfi_offset %r13, -40 -Ltmp6180: - .cfi_offset %r14, -32 -Ltmp6181: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - ##DEBUG_VALUE: raviV_op_shr:ra <- %RSI - ##DEBUG_VALUE: raviV_op_shr:rb <- %RDX - ##DEBUG_VALUE: raviV_op_shr:rc <- %RCX -Ltmp6182: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6183: - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - movq %rdx, %r13 -Ltmp6184: - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - movq %rsi, %r14 -Ltmp6185: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - .loc 1 2872 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movl 8(%r13), %eax - .loc 1 2872 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2872:26 - cmpl $19, %eax - jne LBB41_2 -Ltmp6186: -## BB#1: - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movq (%r13), %r12 -Ltmp6187: - ##DEBUG_VALUE: raviV_op_shr:ib <- %R12 -LBB41_17: - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 2872 29 ## /Users/dylan/github/ravi/src/lvm.c:2872:29 - movl 8(%r15), %eax -Ltmp6188: - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - cmpl $19, %eax - jne LBB41_19 -Ltmp6189: -## BB#18: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 2872 29 ## /Users/dylan/github/ravi/src/lvm.c:2872:29 - movq (%r15), %rax -Ltmp6190: - ##DEBUG_VALUE: raviV_op_shr:ic <- %RAX -LBB41_34: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - .loc 1 861 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:861:7 - testq %rax, %rax - jle LBB41_36 -Ltmp6191: -## BB#35: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - .loc 1 863 17 ## /Users/dylan/github/ravi/src/lvm.c:863:17 - movb %al, %cl - shrq %cl, %r12 -Ltmp6192: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - xorl %ecx, %ecx - .loc 1 862 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:11 -Ltmp6193: - cmpq $63, %rax -Ltmp6194: - .loc 1 862 9 ## /Users/dylan/github/ravi/src/lvm.c:862:9 - cmovleq %r12, %rcx - jmp LBB41_37 -Ltmp6195: -LBB41_36: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - .loc 1 2873 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2873:5 - movl %eax, %ecx - negl %ecx -Ltmp6196: - ##DEBUG_VALUE: luaV_shiftl:x <- %R12 - .loc 1 867 17 ## /Users/dylan/github/ravi/src/lvm.c:867:17 - shlq %cl, %r12 -Ltmp6197: - .loc 1 2873 5 ## /Users/dylan/github/ravi/src/lvm.c:2873:5 - xorl %ecx, %ecx - .loc 1 866 11 ## /Users/dylan/github/ravi/src/lvm.c:866:11 -Ltmp6198: - cmpq $-63, %rax -Ltmp6199: - .loc 1 866 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:866:9 - cmovgeq %r12, %rcx -Ltmp6200: -LBB41_37: ## %luaV_shiftl.exit - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - .loc 1 2873 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2873:5 - movq %rcx, (%r14) - movl $19, 8(%r14) -Ltmp6201: -LBB41_40: - .loc 1 2878 1 ## /Users/dylan/github/ravi/src/lvm.c:2878:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB41_2: -Ltmp6202: - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6203: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - leaq -56(%rbp), %r12 - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 -Ltmp6204: - movq %r13, %rbx - jmp LBB41_3 -Ltmp6205: - .align 4, 0x90 -LBB41_14: ## %._crit_edge - ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6206: - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movq %r12, %rbx -Ltmp6207: -LBB41_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB41_15 -Ltmp6208: -## BB#4: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - cmpl $3, %eax - je LBB41_5 -Ltmp6209: -## BB#9: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB41_39 -Ltmp6210: -## BB#10: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6211: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB41_12 -Ltmp6212: -## BB#11: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB41_13 -Ltmp6213: - .align 4, 0x90 -LBB41_12: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6214: -LBB41_13: ## in Loop: Header=BB41_3 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6215: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB41_14 - jmp LBB41_39 -Ltmp6216: -LBB41_19: - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r14, -72(%rbp) ## 8-byte Spill -Ltmp6217: - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6218: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - leaq -56(%rbp), %r14 - .loc 1 2872 29 ## /Users/dylan/github/ravi/src/lvm.c:2872:29 - movq %r15, %rbx - jmp LBB41_20 -Ltmp6219: - .align 4, 0x90 -LBB41_31: ## %._crit_edge.14 - ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6220: - .loc 1 2872 29 ## /Users/dylan/github/ravi/src/lvm.c:2872:29 - movq %r14, %rbx -Ltmp6221: -LBB41_20: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB41_32 -Ltmp6222: -## BB#21: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - cmpl $3, %eax - je LBB41_22 -Ltmp6223: -## BB#26: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB41_38 -Ltmp6224: -## BB#27: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6225: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB41_29 -Ltmp6226: -## BB#28: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB41_30 -Ltmp6227: - .align 4, 0x90 -LBB41_29: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp6228: -LBB41_30: ## in Loop: Header=BB41_20 Depth=1 - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6229: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB41_31 - jmp LBB41_38 -Ltmp6230: -LBB41_15: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %r12 - jmp LBB41_16 -Ltmp6231: -LBB41_5: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6232: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp6233: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp6234: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -72(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB41_39 - jp LBB41_39 -Ltmp6235: -## BB#6: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI41_0(%rip), %xmm0 - jb LBB41_39 -Ltmp6236: -## BB#7: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - movsd LCPI41_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB41_39 -Ltmp6237: -## BB#8: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - cvttsd2si %xmm0, %r12 -Ltmp6238: -LBB41_16: - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp6239: - ##DEBUG_VALUE: raviV_op_shr:L <- %RDI - jmp LBB41_17 -Ltmp6240: -LBB41_32: - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB41_33 -Ltmp6241: -LBB41_22: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6242: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -80(%rbp) ## 8-byte Spill -Ltmp6243: - ##DEBUG_VALUE: n <- [%RBP+-80] - callq _floor -Ltmp6244: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -80(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB41_38 - jp LBB41_38 -Ltmp6245: -## BB#23: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI41_0(%rip), %xmm0 - jb LBB41_38 -Ltmp6246: -## BB#24: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - movsd LCPI41_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB41_38 -Ltmp6247: -## BB#25: - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - cvttsd2si %xmm0, %rax -Ltmp6248: -LBB41_33: ## %luaV_tointeger.exit5 - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6249: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - jmp LBB41_34 -Ltmp6250: -LBB41_38: ## %luaV_tointeger.exit5.thread - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6251: - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 -LBB41_39: - ##DEBUG_VALUE: raviV_op_shr:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_shr:ra <- %R14 - ##DEBUG_VALUE: raviV_op_shr:rb <- %R13 - ##DEBUG_VALUE: raviV_op_shr:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R15 - .loc 1 2876 5 ## /Users/dylan/github/ravi/src/lvm.c:2876:5 - movl $17, %r8d - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB41_40 -Ltmp6252: -Lfunc_end41: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI42_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI42_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_band - .align 4, 0x90 -_raviV_op_band: ## @raviV_op_band -Lfunc_begin42: - .loc 1 2880 0 ## /Users/dylan/github/ravi/src/lvm.c:2880:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6253: - .cfi_def_cfa_offset 16 -Ltmp6254: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6255: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp6256: - .cfi_offset %rbx, -56 -Ltmp6257: - .cfi_offset %r12, -48 -Ltmp6258: - .cfi_offset %r13, -40 -Ltmp6259: - .cfi_offset %r14, -32 -Ltmp6260: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - ##DEBUG_VALUE: raviV_op_band:ra <- %RSI - ##DEBUG_VALUE: raviV_op_band:rb <- %RDX - ##DEBUG_VALUE: raviV_op_band:rc <- %RCX -Ltmp6261: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6262: - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - movq %rdx, %r13 -Ltmp6263: - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - movq %rsi, %r14 -Ltmp6264: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - .loc 1 2883 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - movl 8(%r13), %eax - .loc 1 2883 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2883:26 - cmpl $19, %eax - jne LBB42_2 -Ltmp6265: -## BB#1: - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - movq (%r13), %r12 -Ltmp6266: - ##DEBUG_VALUE: raviV_op_band:ib <- %R12 -LBB42_17: - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movl 8(%r15), %eax -Ltmp6267: - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - cmpl $19, %eax - jne LBB42_19 -Ltmp6268: -## BB#18: - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movq (%r15), %rax -Ltmp6269: - ##DEBUG_VALUE: raviV_op_band:ic <- %RAX -LBB42_34: - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - .loc 1 2884 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2884:5 - andq %r12, %rax - movq %rax, (%r14) - movl $19, 8(%r14) -Ltmp6270: -LBB42_37: - .loc 1 2889 1 ## /Users/dylan/github/ravi/src/lvm.c:2889:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB42_2: -Ltmp6271: - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6272: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - leaq -56(%rbp), %r12 - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 -Ltmp6273: - movq %r13, %rbx - jmp LBB42_3 -Ltmp6274: - .align 4, 0x90 -LBB42_14: ## %._crit_edge - ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6275: - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - movq %r12, %rbx -Ltmp6276: -LBB42_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB42_15 -Ltmp6277: -## BB#4: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - cmpl $3, %eax - je LBB42_5 -Ltmp6278: -## BB#9: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB42_36 -Ltmp6279: -## BB#10: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6280: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB42_12 -Ltmp6281: -## BB#11: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB42_13 -Ltmp6282: - .align 4, 0x90 -LBB42_12: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6283: -LBB42_13: ## in Loop: Header=BB42_3 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6284: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB42_14 - jmp LBB42_36 -Ltmp6285: -LBB42_19: - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r14, -72(%rbp) ## 8-byte Spill -Ltmp6286: - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6287: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - leaq -56(%rbp), %r14 - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movq %r15, %rbx - jmp LBB42_20 -Ltmp6288: - .align 4, 0x90 -LBB42_31: ## %._crit_edge.14 - ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6289: - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movq %r14, %rbx -Ltmp6290: -LBB42_20: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB42_32 -Ltmp6291: -## BB#21: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - cmpl $3, %eax - je LBB42_22 -Ltmp6292: -## BB#26: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB42_35 -Ltmp6293: -## BB#27: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6294: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB42_29 -Ltmp6295: -## BB#28: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB42_30 -Ltmp6296: - .align 4, 0x90 -LBB42_29: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp6297: -LBB42_30: ## in Loop: Header=BB42_20 Depth=1 - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6298: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB42_31 - jmp LBB42_35 -Ltmp6299: -LBB42_15: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %r12 - jmp LBB42_16 -Ltmp6300: -LBB42_5: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6301: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp6302: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp6303: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -72(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB42_36 - jp LBB42_36 -Ltmp6304: -## BB#6: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI42_0(%rip), %xmm0 - jb LBB42_36 -Ltmp6305: -## BB#7: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - movsd LCPI42_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB42_36 -Ltmp6306: -## BB#8: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - cvttsd2si %xmm0, %r12 -Ltmp6307: -LBB42_16: - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp6308: - ##DEBUG_VALUE: raviV_op_band:L <- %RDI - jmp LBB42_17 -Ltmp6309: -LBB42_32: - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB42_33 -Ltmp6310: -LBB42_22: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6311: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -80(%rbp) ## 8-byte Spill -Ltmp6312: - ##DEBUG_VALUE: n <- [%RBP+-80] - callq _floor -Ltmp6313: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -80(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB42_35 - jp LBB42_35 -Ltmp6314: -## BB#23: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI42_0(%rip), %xmm0 - jb LBB42_35 -Ltmp6315: -## BB#24: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - movsd LCPI42_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB42_35 -Ltmp6316: -## BB#25: - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - cvttsd2si %xmm0, %rax -Ltmp6317: -LBB42_33: ## %luaV_tointeger.exit5 - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6318: - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - jmp LBB42_34 -Ltmp6319: -LBB42_35: ## %luaV_tointeger.exit5.thread - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6320: - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 -LBB42_36: - ##DEBUG_VALUE: raviV_op_band:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_band:ra <- %R14 - ##DEBUG_VALUE: raviV_op_band:rb <- %R13 - ##DEBUG_VALUE: raviV_op_band:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R15 - .loc 1 2887 5 ## /Users/dylan/github/ravi/src/lvm.c:2887:5 - movl $13, %r8d - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB42_37 -Ltmp6321: -Lfunc_end42: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI43_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI43_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_bor - .align 4, 0x90 -_raviV_op_bor: ## @raviV_op_bor -Lfunc_begin43: - .loc 1 2891 0 ## /Users/dylan/github/ravi/src/lvm.c:2891:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6322: - .cfi_def_cfa_offset 16 -Ltmp6323: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6324: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp6325: - .cfi_offset %rbx, -56 -Ltmp6326: - .cfi_offset %r12, -48 -Ltmp6327: - .cfi_offset %r13, -40 -Ltmp6328: - .cfi_offset %r14, -32 -Ltmp6329: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bor:ra <- %RSI - ##DEBUG_VALUE: raviV_op_bor:rb <- %RDX - ##DEBUG_VALUE: raviV_op_bor:rc <- %RCX -Ltmp6330: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6331: - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - movq %rdx, %r13 -Ltmp6332: - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - movq %rsi, %r14 -Ltmp6333: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - .loc 1 2894 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - movl 8(%r13), %eax - .loc 1 2894 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2894:26 - cmpl $19, %eax - jne LBB43_2 -Ltmp6334: -## BB#1: - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - movq (%r13), %r12 -Ltmp6335: - ##DEBUG_VALUE: raviV_op_bor:ib <- %R12 -LBB43_17: - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movl 8(%r15), %eax -Ltmp6336: - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - cmpl $19, %eax - jne LBB43_19 -Ltmp6337: -## BB#18: - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movq (%r15), %rax -Ltmp6338: - ##DEBUG_VALUE: raviV_op_bor:ic <- %RAX -LBB43_34: - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - .loc 1 2895 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2895:5 - orq %r12, %rax - movq %rax, (%r14) - movl $19, 8(%r14) -Ltmp6339: -LBB43_37: - .loc 1 2900 1 ## /Users/dylan/github/ravi/src/lvm.c:2900:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB43_2: -Ltmp6340: - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6341: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - leaq -56(%rbp), %r12 - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 -Ltmp6342: - movq %r13, %rbx - jmp LBB43_3 -Ltmp6343: - .align 4, 0x90 -LBB43_14: ## %._crit_edge - ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6344: - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - movq %r12, %rbx -Ltmp6345: -LBB43_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB43_15 -Ltmp6346: -## BB#4: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - cmpl $3, %eax - je LBB43_5 -Ltmp6347: -## BB#9: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB43_36 -Ltmp6348: -## BB#10: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6349: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB43_12 -Ltmp6350: -## BB#11: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB43_13 -Ltmp6351: - .align 4, 0x90 -LBB43_12: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6352: -LBB43_13: ## in Loop: Header=BB43_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6353: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB43_14 - jmp LBB43_36 -Ltmp6354: -LBB43_19: - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r14, -72(%rbp) ## 8-byte Spill -Ltmp6355: - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6356: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - leaq -56(%rbp), %r14 - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movq %r15, %rbx - jmp LBB43_20 -Ltmp6357: - .align 4, 0x90 -LBB43_31: ## %._crit_edge.14 - ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6358: - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movq %r14, %rbx -Ltmp6359: -LBB43_20: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB43_32 -Ltmp6360: -## BB#21: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - cmpl $3, %eax - je LBB43_22 -Ltmp6361: -## BB#26: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB43_35 -Ltmp6362: -## BB#27: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6363: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB43_29 -Ltmp6364: -## BB#28: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB43_30 -Ltmp6365: - .align 4, 0x90 -LBB43_29: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp6366: -LBB43_30: ## in Loop: Header=BB43_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6367: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB43_31 - jmp LBB43_35 -Ltmp6368: -LBB43_15: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %r12 - jmp LBB43_16 -Ltmp6369: -LBB43_5: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6370: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp6371: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp6372: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -72(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB43_36 - jp LBB43_36 -Ltmp6373: -## BB#6: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI43_0(%rip), %xmm0 - jb LBB43_36 -Ltmp6374: -## BB#7: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - movsd LCPI43_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB43_36 -Ltmp6375: -## BB#8: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - cvttsd2si %xmm0, %r12 -Ltmp6376: -LBB43_16: - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp6377: - ##DEBUG_VALUE: raviV_op_bor:L <- %RDI - jmp LBB43_17 -Ltmp6378: -LBB43_32: - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB43_33 -Ltmp6379: -LBB43_22: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6380: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -80(%rbp) ## 8-byte Spill -Ltmp6381: - ##DEBUG_VALUE: n <- [%RBP+-80] - callq _floor -Ltmp6382: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -80(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB43_35 - jp LBB43_35 -Ltmp6383: -## BB#23: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI43_0(%rip), %xmm0 - jb LBB43_35 -Ltmp6384: -## BB#24: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - movsd LCPI43_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB43_35 -Ltmp6385: -## BB#25: - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - cvttsd2si %xmm0, %rax -Ltmp6386: -LBB43_33: ## %luaV_tointeger.exit5 - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6387: - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - jmp LBB43_34 -Ltmp6388: -LBB43_35: ## %luaV_tointeger.exit5.thread - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6389: - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 -LBB43_36: - ##DEBUG_VALUE: raviV_op_bor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R15 - .loc 1 2898 5 ## /Users/dylan/github/ravi/src/lvm.c:2898:5 - movl $14, %r8d - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB43_37 -Ltmp6390: -Lfunc_end43: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI44_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI44_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_bxor - .align 4, 0x90 -_raviV_op_bxor: ## @raviV_op_bxor -Lfunc_begin44: - .loc 1 2902 0 ## /Users/dylan/github/ravi/src/lvm.c:2902:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6391: - .cfi_def_cfa_offset 16 -Ltmp6392: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6393: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp -Ltmp6394: - .cfi_offset %rbx, -56 -Ltmp6395: - .cfi_offset %r12, -48 -Ltmp6396: - .cfi_offset %r13, -40 -Ltmp6397: - .cfi_offset %r14, -32 -Ltmp6398: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bxor:ra <- %RSI - ##DEBUG_VALUE: raviV_op_bxor:rb <- %RDX - ##DEBUG_VALUE: raviV_op_bxor:rc <- %RCX -Ltmp6399: - ##DEBUG_VALUE: io <- %RSI - movq %rcx, %r15 -Ltmp6400: - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - movq %rdx, %r13 -Ltmp6401: - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - movq %rsi, %r14 -Ltmp6402: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - .loc 1 2905 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - movl 8(%r13), %eax - .loc 1 2905 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2905:26 - cmpl $19, %eax - jne LBB44_2 -Ltmp6403: -## BB#1: - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - movq (%r13), %r12 -Ltmp6404: - ##DEBUG_VALUE: raviV_op_bxor:ib <- %R12 -LBB44_17: - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movl 8(%r15), %eax -Ltmp6405: - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - cmpl $19, %eax - jne LBB44_19 -Ltmp6406: -## BB#18: - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movq (%r15), %rax -Ltmp6407: - ##DEBUG_VALUE: raviV_op_bxor:ic <- %RAX -LBB44_34: - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - .loc 1 2906 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2906:5 - xorq %r12, %rax - movq %rax, (%r14) - movl $19, 8(%r14) -Ltmp6408: -LBB44_37: - .loc 1 2911 1 ## /Users/dylan/github/ravi/src/lvm.c:2911:1 - addq $40, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB44_2: -Ltmp6409: - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6410: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - leaq -56(%rbp), %r12 - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 -Ltmp6411: - movq %r13, %rbx - jmp LBB44_3 -Ltmp6412: - .align 4, 0x90 -LBB44_14: ## %._crit_edge - ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6413: - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - movq %r12, %rbx -Ltmp6414: -LBB44_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB44_15 -Ltmp6415: -## BB#4: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - cmpl $3, %eax - je LBB44_5 -Ltmp6416: -## BB#9: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB44_36 -Ltmp6417: -## BB#10: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6418: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB44_12 -Ltmp6419: -## BB#11: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB44_13 -Ltmp6420: - .align 4, 0x90 -LBB44_12: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6421: -LBB44_13: ## in Loop: Header=BB44_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6422: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB44_14 - jmp LBB44_36 -Ltmp6423: -LBB44_19: - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - movq %r14, -72(%rbp) ## 8-byte Spill -Ltmp6424: - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - movq %rdi, -64(%rbp) ## 8-byte Spill -Ltmp6425: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - leaq -56(%rbp), %r14 - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movq %r15, %rbx - jmp LBB44_20 -Ltmp6426: - .align 4, 0x90 -LBB44_31: ## %._crit_edge.14 - ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6427: - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movq %r14, %rbx -Ltmp6428: -LBB44_20: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB44_32 -Ltmp6429: -## BB#21: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - cmpl $3, %eax - je LBB44_22 -Ltmp6430: -## BB#26: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB44_35 -Ltmp6431: -## BB#27: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6432: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r14, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB44_29 -Ltmp6433: -## BB#28: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - shrl $24, %ecx - jmp LBB44_30 -Ltmp6434: - .align 4, 0x90 -LBB44_29: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - movq 16(%rdx), %rcx -Ltmp6435: -LBB44_30: ## in Loop: Header=BB44_20 Depth=1 - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R14+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6436: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB44_31 - jmp LBB44_35 -Ltmp6437: -LBB44_15: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %r12 - jmp LBB44_16 -Ltmp6438: -LBB44_5: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6439: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -72(%rbp) ## 8-byte Spill -Ltmp6440: - ##DEBUG_VALUE: n <- [%RBP+-72] - callq _floor -Ltmp6441: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -72(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB44_36 - jp LBB44_36 -Ltmp6442: -## BB#6: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI44_0(%rip), %xmm0 - jb LBB44_36 -Ltmp6443: -## BB#7: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - movsd LCPI44_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB44_36 -Ltmp6444: -## BB#8: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - cvttsd2si %xmm0, %r12 -Ltmp6445: -LBB44_16: - movq -64(%rbp), %rdi ## 8-byte Reload -Ltmp6446: - ##DEBUG_VALUE: raviV_op_bxor:L <- %RDI - jmp LBB44_17 -Ltmp6447: -LBB44_32: - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB44_33 -Ltmp6448: -LBB44_22: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6449: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -80(%rbp) ## 8-byte Spill -Ltmp6450: - ##DEBUG_VALUE: n <- [%RBP+-80] - callq _floor -Ltmp6451: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -80(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB44_35 - jp LBB44_35 -Ltmp6452: -## BB#23: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI44_0(%rip), %xmm0 - jb LBB44_35 -Ltmp6453: -## BB#24: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - movsd LCPI44_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB44_35 -Ltmp6454: -## BB#25: - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - cvttsd2si %xmm0, %rax -Ltmp6455: -LBB44_33: ## %luaV_tointeger.exit5 - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6456: - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - jmp LBB44_34 -Ltmp6457: -LBB44_35: ## %luaV_tointeger.exit5.thread - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- [%RBP+-72] - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - movq -72(%rbp), %r14 ## 8-byte Reload -Ltmp6458: - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 -LBB44_36: - ##DEBUG_VALUE: raviV_op_bxor:L <- [%RBP+-64] - ##DEBUG_VALUE: raviV_op_bxor:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- %R13 - ##DEBUG_VALUE: raviV_op_bxor:rc <- %R15 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R15 - .loc 1 2909 5 ## /Users/dylan/github/ravi/src/lvm.c:2909:5 - movl $15, %r8d - movq -64(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB44_37 -Ltmp6459: -Lfunc_end44: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI45_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI45_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_op_bnot - .align 4, 0x90 -_raviV_op_bnot: ## @raviV_op_bnot -Lfunc_begin45: - .loc 1 2913 0 ## /Users/dylan/github/ravi/src/lvm.c:2913:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6460: - .cfi_def_cfa_offset 16 -Ltmp6461: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6462: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp6463: - .cfi_offset %rbx, -56 -Ltmp6464: - .cfi_offset %r12, -48 -Ltmp6465: - .cfi_offset %r13, -40 -Ltmp6466: - .cfi_offset %r14, -32 -Ltmp6467: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bnot:L <- %RDI - ##DEBUG_VALUE: raviV_op_bnot:ra <- %RSI - ##DEBUG_VALUE: raviV_op_bnot:rb <- %RDX -Ltmp6468: - ##DEBUG_VALUE: io <- %RSI - movq %rdx, %r13 -Ltmp6469: - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - movq %rsi, %r14 -Ltmp6470: - ##DEBUG_VALUE: io <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - movq %rdi, %r15 -Ltmp6471: - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - .loc 1 2915 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2915:7 - movl 8(%r13), %eax -Ltmp6472: - .loc 1 2915 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2915:7 - cmpl $19, %eax - jne LBB45_2 -Ltmp6473: -## BB#1: - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - .loc 1 2915 7 ## /Users/dylan/github/ravi/src/lvm.c:2915:7 - movq (%r13), %rax -Ltmp6474: - ##DEBUG_VALUE: raviV_op_bnot:ib <- %RAX -LBB45_16: - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: io <- %R14 - .loc 1 2915 29 ## /Users/dylan/github/ravi/src/lvm.c:2915:29 - notq %rax - movq %rax, (%r14) - movl $19, 8(%r14) -Ltmp6475: -LBB45_18: - .loc 1 2919 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2919:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB45_2: -Ltmp6476: - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -56(%rbp), %r12 - .loc 1 2915 7 ## /Users/dylan/github/ravi/src/lvm.c:2915:7 -Ltmp6477: - movq %r13, %rbx - jmp LBB45_3 -Ltmp6478: - .align 4, 0x90 -LBB45_14: ## %._crit_edge - ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6479: - .loc 1 2915 7 ## /Users/dylan/github/ravi/src/lvm.c:2915:7 - movq %r12, %rbx -Ltmp6480: -LBB45_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB45_15 -Ltmp6481: -## BB#4: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - cmpl $3, %eax - je LBB45_5 -Ltmp6482: -## BB#9: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB45_17 -Ltmp6483: -## BB#10: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%rbx), %rdi - addq $24, %rdi -Ltmp6484: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r12, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%rbx), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB45_12 -Ltmp6485: -## BB#11: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - shrl $24, %ecx - jmp LBB45_13 -Ltmp6486: - .align 4, 0x90 -LBB45_12: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - movq 16(%rdx), %rcx -Ltmp6487: -LBB45_13: ## in Loop: Header=BB45_3 Depth=1 - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R12+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6488: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB45_14 - jmp LBB45_17 -Ltmp6489: -LBB45_15: - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%rbx), %rax - jmp LBB45_16 -Ltmp6490: -LBB45_5: - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero -Ltmp6491: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -64(%rbp) ## 8-byte Spill -Ltmp6492: - ##DEBUG_VALUE: n <- [%RBP+-64] - callq _floor -Ltmp6493: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -64(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB45_17 - jp LBB45_17 -Ltmp6494: -## BB#6: - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI45_0(%rip), %xmm0 - jb LBB45_17 -Ltmp6495: -## BB#7: - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - movsd LCPI45_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB45_17 -Ltmp6496: -## BB#8: - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - cvttsd2si %xmm0, %rax - jmp LBB45_16 -Ltmp6497: -LBB45_17: ## %.loopexit - ##DEBUG_VALUE: raviV_op_bnot:L <- %R15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- %R14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- %R13 - ##DEBUG_VALUE: luaV_tointeger:obj <- %R13 - .loc 1 2917 5 ## /Users/dylan/github/ravi/src/lvm.c:2917:5 - movl $19, %r8d - movq %r15, %rdi - movq %r13, %rsi - movq %r13, %rdx - movq %r14, %rcx - callq _luaT_trybinTM - jmp LBB45_18 -Ltmp6498: -Lfunc_end45: - .cfi_endproc - - .globl _raviV_gettable_sskey - .align 4, 0x90 -_raviV_gettable_sskey: ## @raviV_gettable_sskey -Lfunc_begin46: - .loc 1 2927 0 ## /Users/dylan/github/ravi/src/lvm.c:2927:0 - .cfi_startproc -## BB#0: - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - ##DEBUG_VALUE: io1 <- %RCX - .loc 1 2928 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - movl 8(%rsi), %eax -Ltmp6499: - .loc 1 2928 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - cmpl $69, %eax - jne LBB46_8 -Ltmp6500: -## BB#1: - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - movq (%rsi), %r8 - movq (%rdx), %r9 - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp6501: - movl 12(%r9), %r11d - andl 80(%r8), %r11d - shlq $5, %r11 - addq 24(%r8), %r11 -Ltmp6502: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R11 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp6503: - .align 4, 0x90 -LBB46_2: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%r11), %r10 - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %r10d - jne LBB46_5 -Ltmp6504: -## BB#3: ## in Loop: Header=BB46_2 Depth=1 - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %r9, 16(%r11) - je LBB46_4 -Ltmp6505: -LBB46_5: ## in Loop: Header=BB46_2 Depth=1 - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %r10, %rax - sarq $32, %rax - shlq $5, %rax - addq %rax, %r11 -Ltmp6506: - ##DEBUG_VALUE: luaH_getshortstr:n <- %R11 - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - shrq $32, %r10 - jne LBB46_2 - jmp LBB46_6 -Ltmp6507: -LBB46_4: ## %.thread.i - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - movq %r11, %r8 -Ltmp6508: -LBB46_6: ## %luaH_getshortstr.exit - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2928 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - cmpl $0, 8(%r8) - je LBB46_7 -Ltmp6509: -## BB#10: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - movq (%r8), %rax - movq 8(%r8), %rdx - movq %rdx, 8(%rcx) - movq %rax, (%rcx) -Ltmp6510: - .loc 1 2929 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2929:1 - retq -Ltmp6511: -LBB46_8: - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - andl $15, %eax -Ltmp6512: - .loc 1 2928 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - cmpl $5, %eax - je LBB46_11 -Ltmp6513: -## BB#9: - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - xorl %r8d, %r8d - jmp _luaV_finishget ## TAILCALL -Ltmp6514: -LBB46_7: - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_sskey:val <- %RCX - ##DEBUG_VALUE: aux <- %R8 - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 - jmp _luaV_finishget ## TAILCALL -Ltmp6515: -LBB46_11: - pushq %rbp -Ltmp6516: - .cfi_def_cfa_offset 16 -Ltmp6517: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6518: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_gettable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_sskey:t <- %RSI - .loc 1 2928 3 ## /Users/dylan/github/ravi/src/lvm.c:2928:3 -Ltmp6519: - leaq L_.str.10(%rip), %rdx - callq _luaG_typeerror -Ltmp6520: -Lfunc_end46: - .cfi_endproc - - .globl _raviV_settable_sskey - .align 4, 0x90 -_raviV_settable_sskey: ## @raviV_settable_sskey -Lfunc_begin47: - .loc 1 2938 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2938:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6521: - .cfi_def_cfa_offset 16 -Ltmp6522: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6523: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax -Ltmp6524: - .cfi_offset %rbx, -40 -Ltmp6525: - .cfi_offset %r14, -32 -Ltmp6526: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %RCX - movq %rcx, %r14 -Ltmp6527: - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 1 2939 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - movl 8(%rsi), %eax -Ltmp6528: - .loc 1 2939 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - cmpl $69, %eax - jne LBB47_14 -Ltmp6529: -## BB#1: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - movq (%rsi), %r8 -Ltmp6530: - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - movq (%rdx), %r9 - .loc 13 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 -Ltmp6531: - movl 12(%r9), %ecx - andl 80(%r8), %ecx - shlq $5, %rcx - addq 24(%r8), %rcx -Ltmp6532: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - movq _luaO_nilobject_@GOTPCREL(%rip), %r15 -Ltmp6533: - .align 4, 0x90 -LBB47_2: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%rcx), %rax - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %eax - jne LBB47_5 -Ltmp6534: -## BB#3: ## in Loop: Header=BB47_2 Depth=1 - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %r9, 16(%rcx) - je LBB47_4 -Ltmp6535: -LBB47_5: ## in Loop: Header=BB47_2 Depth=1 - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rax, %rbx - sarq $32, %rbx - shlq $5, %rbx - addq %rbx, %rcx -Ltmp6536: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - shrq $32, %rax - jne LBB47_2 - jmp LBB47_6 -Ltmp6537: -LBB47_4: ## %.thread.i - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - movq %rcx, %r15 -Ltmp6538: -LBB47_6: ## %luaH_getshortstr.exit - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - .loc 1 2939 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - cmpl $0, 8(%r15) -Ltmp6539: - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - je LBB47_12 -Ltmp6540: -## BB#7: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - testb $64, 8(%r14) - je LBB47_11 -Ltmp6541: -## BB#8: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - testb $4, 9(%r8) - je LBB47_11 -Ltmp6542: -## BB#9: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - movq (%r14), %rax - testb $3, 9(%rax) - je LBB47_11 -Ltmp6543: -## BB#10: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - movq %r8, %rsi - callq _luaC_barrierback_ -Ltmp6544: -LBB47_11: - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - movq (%r14), %rax - movq 8(%r14), %rcx - movq %rcx, 8(%r15) - movq %rax, (%r15) -Ltmp6545: - .loc 1 2940 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2940:1 - addq $8, %rsp - popq %rbx - popq %r14 -Ltmp6546: - popq %r15 -Ltmp6547: - popq %rbp - retq -LBB47_12: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI -Ltmp6548: - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - ##DEBUG_VALUE: slot <- %R15 - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - movq %r14, %rcx - movq %r15, %r8 -Ltmp6549: -LBB47_13: - addq $8, %rsp - popq %rbx - popq %r14 - popq %r15 - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp6550: -LBB47_14: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 1 2939 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - andl $15, %eax -Ltmp6551: - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - cmpl $5, %eax - je LBB47_16 -Ltmp6552: -## BB#15: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - ##DEBUG_VALUE: raviV_settable_sskey:key <- %RDX - ##DEBUG_VALUE: raviV_settable_sskey:val <- %R14 - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - xorl %r8d, %r8d - movq %r14, %rcx - jmp LBB47_13 -Ltmp6553: -LBB47_16: - ##DEBUG_VALUE: raviV_settable_sskey:L <- %RDI - ##DEBUG_VALUE: raviV_settable_sskey:t <- %RSI - .loc 1 2939 3 ## /Users/dylan/github/ravi/src/lvm.c:2939:3 - leaq L_.str.10(%rip), %rdx - callq _luaG_typeerror -Ltmp6554: -Lfunc_end47: - .cfi_endproc - - .globl _raviV_gettable_i - .align 4, 0x90 -_raviV_gettable_i: ## @raviV_gettable_i -Lfunc_begin48: - .loc 1 2948 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2948:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6555: - .cfi_def_cfa_offset 16 -Ltmp6556: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6557: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx -Ltmp6558: - .cfi_offset %rbx, -48 -Ltmp6559: - .cfi_offset %r12, -40 -Ltmp6560: - .cfi_offset %r14, -32 -Ltmp6561: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_gettable_i:L <- %RDI - ##DEBUG_VALUE: raviV_gettable_i:t <- %RSI - ##DEBUG_VALUE: raviV_gettable_i:key <- %RDX - ##DEBUG_VALUE: raviV_gettable_i:val <- %RCX -Ltmp6562: - ##DEBUG_VALUE: io <- %RCX - ##DEBUG_VALUE: io <- %RCX - ##DEBUG_VALUE: io1 <- %RCX - movq %rcx, %r12 -Ltmp6563: - ##DEBUG_VALUE: io1 <- %R12 - ##DEBUG_VALUE: io <- %R12 - ##DEBUG_VALUE: io <- %R12 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - movq %rdx, %r15 -Ltmp6564: - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - movq %rsi, %rbx -Ltmp6565: - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - movq %rdi, %r14 -Ltmp6566: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - .loc 1 2949 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movl 8(%rbx), %eax -Ltmp6567: - .loc 1 2949 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - cmpl $69, %eax - jne LBB48_1 -Ltmp6568: -## BB#6: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%r15), %rsi -Ltmp6569: - ##DEBUG_VALUE: idx <- %RSI - movq (%rbx), %rdi -Ltmp6570: - ##DEBUG_VALUE: h <- %RDI - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx -Ltmp6571: - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - cmpq %rcx, %rax - jae LBB48_8 -Ltmp6572: -## BB#7: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RDI - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp6573: - ##DEBUG_VALUE: v <- %RAX -LBB48_9: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - cmpl $0, 8(%rax) -Ltmp6574: - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - je LBB48_11 -Ltmp6575: -## BB#10: - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%rax), %rcx - movq 8(%rax), %rax - movq %rax, 8(%r12) - movq %rcx, (%r12) -Ltmp6576: -LBB48_5: - .loc 1 2950 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2950:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB48_1: -Ltmp6577: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - cmpl $101, %eax - jne LBB48_2 -Ltmp6578: -## BB#13: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%rbx), %rcx -Ltmp6579: - ##DEBUG_VALUE: h <- %RCX - .loc 1 2949 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%r15), %rax -Ltmp6580: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB48_15 -Ltmp6581: -## BB#14: - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp6582: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movl %eax, %eax -Ltmp6583: - movq (%rcx,%rax,8), %rax - movq %rax, (%r12) - movl $3, 8(%r12) - jmp LBB48_5 -Ltmp6584: -LBB48_8: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %RDI - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - callq _luaH_getint -Ltmp6585: - ##DEBUG_VALUE: v <- %RAX - jmp LBB48_9 -Ltmp6586: -LBB48_11: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq %r14, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r12, %rcx - movq %rax, %r8 - jmp LBB48_12 -Ltmp6587: -LBB48_2: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - cmpl $85, %eax - jne LBB48_16 -Ltmp6588: -## BB#3: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%rbx), %rcx -Ltmp6589: - ##DEBUG_VALUE: h <- %RCX - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movq (%r15), %rax -Ltmp6590: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rcx), %eax - jae LBB48_15 -Ltmp6591: -## BB#4: - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rcx), %rcx -Ltmp6592: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - movl %eax, %eax -Ltmp6593: - movq (%rcx,%rax,8), %rax - movq %rax, (%r12) - movl $19, 8(%r12) - jmp LBB48_5 -Ltmp6594: -LBB48_16: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - ##DEBUG_VALUE: raviV_gettable_i:t <- %RBX - ##DEBUG_VALUE: raviV_gettable_i:key <- %R15 - ##DEBUG_VALUE: raviV_gettable_i:val <- %R12 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r12, %rcx -Ltmp6595: -LBB48_12: - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - jmp _luaV_finishget ## TAILCALL -Ltmp6596: -LBB48_15: - ##DEBUG_VALUE: raviV_gettable_i:L <- %R14 - .loc 1 2949 3 ## /Users/dylan/github/ravi/src/lvm.c:2949:3 - leaq L_.str.3(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp6597: -Lfunc_end48: - .cfi_endproc - - .section __TEXT,__literal8,8byte_literals - .align 3 -LCPI49_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI49_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _raviV_settable_i - .align 4, 0x90 -_raviV_settable_i: ## @raviV_settable_i -Lfunc_begin49: - .loc 1 2959 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2959:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6598: - .cfi_def_cfa_offset 16 -Ltmp6599: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6600: - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp -Ltmp6601: - .cfi_offset %rbx, -56 -Ltmp6602: - .cfi_offset %r12, -48 -Ltmp6603: - .cfi_offset %r13, -40 -Ltmp6604: - .cfi_offset %r14, -32 -Ltmp6605: - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_settable_i:L <- %RDI - ##DEBUG_VALUE: raviV_settable_i:t <- %RSI - ##DEBUG_VALUE: raviV_settable_i:key <- %RDX - ##DEBUG_VALUE: raviV_settable_i:val <- %RCX - movq %rcx, %r12 -Ltmp6606: - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - movq %rdx, %r15 -Ltmp6607: - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - movq %rsi, %r13 -Ltmp6608: - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - movq %rdi, %rcx -Ltmp6609: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - .loc 1 2960 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl 8(%r13), %eax -Ltmp6610: - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cmpl $69, %eax - jne LBB49_1 -Ltmp6611: -## BB#6: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rsi -Ltmp6612: - ##DEBUG_VALUE: idx <- %RSI - movq (%r13), %r14 -Ltmp6613: - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - leaq -1(%rsi), %rbx - movl 12(%r14), %eax -Ltmp6614: - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cmpq %rax, %rbx - jae LBB49_8 -Ltmp6615: -## BB#7: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - shlq $4, %rbx - addq 16(%r14), %rbx -Ltmp6616: - ##DEBUG_VALUE: slot <- %RBX -LBB49_9: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cmpl $0, 8(%rbx) -Ltmp6617: - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - je LBB49_15 -Ltmp6618: -## BB#10: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - testb $64, 8(%r12) - je LBB49_14 -Ltmp6619: -## BB#11: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - testb $4, 9(%r14) - je LBB49_14 -Ltmp6620: -## BB#12: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - movq (%r12), %rax - testb $3, 9(%rax) - je LBB49_14 -Ltmp6621: -## BB#13: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - movq %rcx, %rdi - movq %r14, %rsi - callq _luaC_barrierback_ -Ltmp6622: -LBB49_14: - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - movq (%r12), %rax - movq 8(%r12), %rcx - movq %rcx, 8(%rbx) - movq %rax, (%rbx) -Ltmp6623: -LBB49_60: - .loc 1 2961 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2961:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -LBB49_15: -Ltmp6624: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq %rcx, %rdi - movq %r13, %rsi - movq %r15, %rdx - movq %r12, %rcx -Ltmp6625: - movq %rbx, %r8 -Ltmp6626: -LBB49_16: - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp6627: -LBB49_1: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - cmpl $101, %eax - jne LBB49_2 -Ltmp6628: -## BB#17: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r13), %rbx -Ltmp6629: - ##DEBUG_VALUE: h <- %RBX - .loc 1 79 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movl 8(%r12), %eax -Ltmp6630: - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cmpl $19, %eax - je LBB49_24 -Ltmp6631: -## BB#18: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - cmpl $3, %eax - jne LBB49_27 -Ltmp6632: -## BB#19: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rax -Ltmp6633: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB49_22 -Ltmp6634: -## BB#20: - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx - jmp LBB49_21 -Ltmp6635: -LBB49_8: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: idx <- %RSI - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq %r14, %rdi - movq %rcx, %rbx -Ltmp6636: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - callq _luaH_getint - movq %rbx, %rcx -Ltmp6637: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - movq %rax, %rbx -Ltmp6638: - ##DEBUG_VALUE: slot <- %RBX - jmp LBB49_9 -Ltmp6639: -LBB49_2: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - movq %rcx, %rbx -Ltmp6640: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - cmpl $85, %eax - jne LBB49_58 -Ltmp6641: -## BB#3: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r13), %r14 -Ltmp6642: - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl 8(%r12), %eax -Ltmp6643: - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cmpl $19, %eax - jne LBB49_40 -Ltmp6644: -## BB#4: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rax -Ltmp6645: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r14), %eax - jae LBB49_39 -Ltmp6646: -## BB#5: - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r14), %rcx -Ltmp6647: -LBB49_21: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r12), %rdx - movl %eax, %eax - movq %rdx, (%rcx,%rax,8) - jmp LBB49_60 -Ltmp6648: -LBB49_58: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:t <- %R13 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - xorl %r8d, %r8d - movq %rbx, %rdi - movq %r13, %rsi - movq %r15, %rdx - movq %r12, %rcx - jmp LBB49_16 -Ltmp6649: -LBB49_24: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RBX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rax -Ltmp6650: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB49_26 -Ltmp6651: -## BB#25: - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RBX - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx -Ltmp6652: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - cvtsi2sdq (%r12), %xmm0 - jmp LBB49_37 -Ltmp6653: -LBB49_27: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - cmpl $4, %eax - jne LBB49_38 -Ltmp6654: -## BB#28: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - movq %rcx, %r14 -Ltmp6655: - ##DEBUG_VALUE: raviV_settable_i:L <- %R14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%r12), %rdi - addq $24, %rdi - leaq -56(%rbp), %rsi -Ltmp6656: - ##DEBUG_VALUE: luaV_tonumber_:v <- [%RSI+0] - ##DEBUG_VALUE: luaV_tonumber_:obj <- %R12 - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq (%r12), %rdx - movl 8(%rdx), %edi - movzbl %dil, %esi -Ltmp6657: - cmpl $4, %esi - jne LBB49_30 -Ltmp6658: -## BB#29: - ##DEBUG_VALUE: raviV_settable_i:L <- %R14 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - shrl $24, %edi - jmp LBB49_31 -Ltmp6659: -LBB49_40: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - leaq -56(%rbp), %r13 - jmp LBB49_41 -Ltmp6660: - .align 4, 0x90 -LBB49_52: ## %._crit_edge - ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 102 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - movl -48(%rbp), %eax -Ltmp6661: - .loc 1 129 10 ## /Users/dylan/github/ravi/src/lvm.c:129:10 - movq %r13, %r12 -Ltmp6662: -LBB49_41: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 102 7 ## /Users/dylan/github/ravi/src/lvm.c:102:7 - cmpl $19, %eax - je LBB49_53 -Ltmp6663: -## BB#42: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - cmpl $3, %eax - je LBB49_43 -Ltmp6664: -## BB#47: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 116 12 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - andl $15, %eax - .loc 1 116 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:116:25 - cmpl $4, %eax - jne LBB49_57 -Ltmp6665: -## BB#48: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 117 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:117:26 - movq (%r12), %rdi - addq $24, %rdi -Ltmp6666: - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:117:13 - movq %r13, %rsi - callq _luaO_str2num - .loc 1 117 46 ## /Users/dylan/github/ravi/src/lvm.c:117:46 - movq (%r12), %rdx - movl 8(%rdx), %ecx - movzbl %cl, %esi - cmpl $4, %esi - jne LBB49_50 -Ltmp6667: -## BB#49: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - shrl $24, %ecx - jmp LBB49_51 -Ltmp6668: -LBB49_50: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - movq 16(%rdx), %rcx -Ltmp6669: -LBB49_51: ## in Loop: Header=BB49_41 Depth=1 - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: luaV_tointeger:v <- [%R13+0] - .loc 1 117 57 ## /Users/dylan/github/ravi/src/lvm.c:117:57 - incq %rcx -Ltmp6670: - .loc 1 116 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:116:12 - cmpq %rcx, %rax - je LBB49_52 - jmp LBB49_57 -Ltmp6671: -LBB49_26: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %RBX - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %edx - movq (%r12), %rax -Ltmp6672: - cvtsi2sdq %rax, %xmm0 - jmp LBB49_23 -Ltmp6673: -LBB49_22: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %edx - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero -Ltmp6674: -LBB49_23: - movq %rcx, %rdi - movq %rbx, %rsi - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _raviH_set_float ## TAILCALL -Ltmp6675: -LBB49_30: - ##DEBUG_VALUE: raviV_settable_i:L <- %R14 - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 84 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rdx), %rdi -Ltmp6676: -LBB49_31: - movq %r14, %rcx -Ltmp6677: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rdi -Ltmp6678: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - cmpq %rdi, %rax - jne LBB49_38 -Ltmp6679: -## BB#32: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - cmpl $19, -48(%rbp) - movq -56(%rbp), %rax - jne LBB49_34 -Ltmp6680: -## BB#33: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - cvtsi2sdq %rax, %xmm0 - jmp LBB49_35 -Ltmp6681: -LBB49_34: ## %select.false - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - movd %rax, %xmm0 -Ltmp6682: -LBB49_35: ## %select.end - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rax -Ltmp6683: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%rbx), %eax - jae LBB49_59 -Ltmp6684: -## BB#36: - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%rbx), %rcx -Ltmp6685: -LBB49_37: - ##DEBUG_VALUE: data <- %RCX - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %eax - movsd %xmm0, (%rcx,%rax,8) - jmp LBB49_60 -Ltmp6686: -LBB49_59: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %edx - movq %rcx, %rdi - movq %rbx, %rsi - callq _raviH_set_float - jmp LBB49_60 -Ltmp6687: -LBB49_39: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:val <- %R12 - ##DEBUG_VALUE: h <- %R14 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %edx -Ltmp6688: - ##DEBUG_VALUE: luaV_tointeger:obj <- %R12 - movq (%r12), %rcx - movq %rbx, %rdi - movq %r14, %rsi - addq $24, %rsp - popq %rbx -Ltmp6689: - popq %r12 -Ltmp6690: - popq %r13 - popq %r14 -Ltmp6691: - popq %r15 - popq %rbp - jmp _raviH_set_int ## TAILCALL -Ltmp6692: -LBB49_53: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: luaV_tointeger:mode <- 0 - .loc 1 113 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:113:10 - movq (%r12), %rcx - jmp LBB49_54 -Ltmp6693: -LBB49_43: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r12), %xmm0 ## xmm0 = mem[0],zero -Ltmp6694: - ##DEBUG_VALUE: n <- %XMM0 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - movsd %xmm0, -64(%rbp) ## 8-byte Spill -Ltmp6695: - ##DEBUG_VALUE: n <- [%RBP+-64] - callq _floor -Ltmp6696: - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - movsd -64(%rbp), %xmm1 ## 8-byte Reload - ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jne LBB49_57 - jp LBB49_57 -Ltmp6697: -## BB#44: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: f <- %XMM0 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI49_0(%rip), %xmm0 - jb LBB49_57 -Ltmp6698: -## BB#45: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - movsd LCPI49_1(%rip), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - jbe LBB49_57 -Ltmp6699: -## BB#46: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - cvttsd2si %xmm0, %rcx -Ltmp6700: -LBB49_54: - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - ##DEBUG_VALUE: raviV_settable_i:key <- %R15 - ##DEBUG_VALUE: i <- 0 - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movq (%r15), %rax -Ltmp6701: - ##DEBUG_VALUE: ukey <- %EAX - cmpl 64(%r14), %eax - movq %rbx, %rdi -Ltmp6702: - ##DEBUG_VALUE: raviV_settable_i:L <- %RDI - jae LBB49_56 -Ltmp6703: -## BB#55: - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - movq 56(%r14), %rdx -Ltmp6704: - ##DEBUG_VALUE: data <- %RDX - .loc 1 2960 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %eax -Ltmp6705: - movq %rcx, (%rdx,%rax,8) - jmp LBB49_60 -Ltmp6706: -LBB49_56: - ##DEBUG_VALUE: raviV_settable_i:L <- %RDI - ##DEBUG_VALUE: i <- 0 - ##DEBUG_VALUE: ukey <- %EAX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - movl %eax, %edx - movq %r14, %rsi - callq _raviH_set_int - jmp LBB49_60 -Ltmp6707: -LBB49_57: ## %.loopexit - ##DEBUG_VALUE: raviV_settable_i:L <- %RBX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - leaq L_.str.5(%rip), %rsi - xorl %eax, %eax - movq %rbx, %rdi - callq _luaG_runerror -Ltmp6708: -LBB49_38: - ##DEBUG_VALUE: raviV_settable_i:L <- %RCX - .loc 1 2960 3 ## /Users/dylan/github/ravi/src/lvm.c:2960:3 - leaq L_.str.4(%rip), %rsi - xorl %eax, %eax - movq %rcx, %rdi - callq _luaG_runerror -Ltmp6709: -Lfunc_end49: - .cfi_endproc - - .globl _raviV_op_totype - .align 4, 0x90 -_raviV_op_totype: ## @raviV_op_totype -Lfunc_begin50: - .loc 1 2967 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2967:0 - .cfi_startproc -## BB#0: - pushq %rbp -Ltmp6710: - .cfi_def_cfa_offset 16 -Ltmp6711: - .cfi_offset %rbp, -16 - movq %rsp, %rbp -Ltmp6712: - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: raviV_op_totype:rb <- %RDX - .loc 1 2968 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2968:7 -Ltmp6713: - movl 8(%rsi), %eax - testl %eax, %eax - je LBB50_14 -Ltmp6714: -## BB#1: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: raviV_op_totype:rb <- %RDX - .loc 1 2970 8 ## /Users/dylan/github/ravi/src/lvm.c:2970:8 - cmpl $68, 8(%rdx) -Ltmp6715: - .loc 1 2970 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2970:7 - jne LBB50_15 -Ltmp6716: -## BB#2: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: raviV_op_totype:rb <- %RDX - .loc 1 2971 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2971:18 - movq (%rdx), %rdx -Ltmp6717: - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:name <- %RDX - .loc 1 1119 11 ## /Users/dylan/github/ravi/src/lvm.c:1119:11 - andl $15, %eax - .loc 1 1119 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1119:3 - cmpl $7, %eax - je LBB50_5 -Ltmp6718: -## BB#3: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - cmpl $5, %eax - jne LBB50_16 -Ltmp6719: -## BB#4: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - .loc 1 1121 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1121:10 - movq (%rsi), %rax - .loc 1 1121 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1121:21 - addq $40, %rax - jmp LBB50_6 -Ltmp6720: -LBB50_5: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: raviV_op_totype:ra <- %RSI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - .loc 1 1124 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1124:10 - movq (%rsi), %rax - .loc 1 1124 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1124:21 - addq $16, %rax -Ltmp6721: - ##DEBUG_VALUE: check_usertype:o <- %RSI -LBB50_6: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - movq (%rax), %r8 -Ltmp6722: - .loc 1 1129 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1129:10 - testq %r8, %r8 - je LBB50_16 -Ltmp6723: -## BB#7: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - .loc 1 1132 16 ## /Users/dylan/github/ravi/src/lvm.c:1132:16 - movq 24(%rdi), %rax -Ltmp6724: - ##DEBUG_VALUE: check_usertype:L <- %RDI - movq 64(%rax), %rax -Ltmp6725: - ##DEBUG_VALUE: check_usertype:reg <- %RAX - .loc 13 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdx), %ecx - andl 80(%rax), %ecx - shlq $5, %rcx - addq 24(%rax), %rcx -Ltmp6726: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - movq _luaO_nilobject_@GOTPCREL(%rip), %r9 -Ltmp6727: - .align 4, 0x90 -LBB50_8: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movq 24(%rcx), %rsi - .loc 13 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - cmpl $68, %esi - jne LBB50_11 -Ltmp6728: -## BB#9: ## in Loop: Header=BB50_8 Depth=1 - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - .loc 13 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - cmpq %rdx, 16(%rcx) - je LBB50_10 -Ltmp6729: -LBB50_11: ## in Loop: Header=BB50_8 Depth=1 - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - .loc 13 95 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rsi, %rax - sarq $32, %rax - shlq $5, %rax - addq %rax, %rcx -Ltmp6730: - ##DEBUG_VALUE: luaH_getshortstr:n <- %RCX - .loc 1 1133 27 ## /Users/dylan/github/ravi/src/lvm.c:1133:27 - shrq $32, %rsi - jne LBB50_8 - jmp LBB50_12 -Ltmp6731: -LBB50_10: ## %.thread.i.i - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - movq %rcx, %r9 -Ltmp6732: -LBB50_12: ## %luaH_getshortstr.exit.i - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - ##DEBUG_VALUE: check_usertype:metatab <- %R9 - .loc 1 1134 29 ## /Users/dylan/github/ravi/src/lvm.c:1134:29 - cmpl $69, 8(%r9) - jne LBB50_16 -Ltmp6733: -## BB#13: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - ##DEBUG_VALUE: check_usertype:name <- %RDX - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - ##DEBUG_VALUE: check_usertype:L <- %RDI - ##DEBUG_VALUE: check_usertype:metatab <- %R9 - .loc 1 1134 71 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1134:71 - cmpq %r8, (%r9) - jne LBB50_16 -Ltmp6734: -LBB50_14: ## %check_usertype.exit - .loc 1 2974 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2974:1 - popq %rbp - retq -LBB50_16: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI -Ltmp6735: - ##DEBUG_VALUE: raviV_op_totype:key <- %RDX - .loc 1 2973 52 ## /Users/dylan/github/ravi/src/lvm.c:2973:52 - addq $24, %rdx -Ltmp6736: - .loc 1 2973 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2973:5 - leaq L_.str.31(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp6737: -LBB50_15: - ##DEBUG_VALUE: raviV_op_totype:L <- %RDI - .loc 1 2970 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2970:27 - leaq L_.str.30(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp6738: -Lfunc_end50: - .cfi_endproc - - .section __TEXT,__cstring,cstring_literals -L_.str: ## @.str - .asciz "index" - -L_.str.1: ## @.str.1 - .asciz "'__index' chain too long; possible loop" - -L_.str.2: ## @.str.2 - .asciz "'__newindex' chain too long; possible loop" - -L_.str.3: ## @.str.3 - .asciz "array out of bounds" - -L_.str.4: ## @.str.4 - .asciz "value cannot be converted to number" - -L_.str.5: ## @.str.5 - .asciz "value cannot be converted to integer" - -L_.str.6: ## @.str.6 - .asciz "string length overflow" - -L_.str.7: ## @.str.7 - .asciz "get length of" - -L_.str.8: ## @.str.8 - .asciz "attempt to divide by zero" - -L_.str.9: ## @.str.9 - .asciz "attempt to perform 'n%%0'" - - .section __DATA,__const - .align 4 ## @luaV_execute.dispatch_table -_luaV_execute.dispatch_table: - .quad Ltmp887 - .quad Ltmp902 - .quad Ltmp918 - .quad Ltmp934 - .quad Ltmp952 - .quad Ltmp975 - .quad Ltmp1023 - .quad Ltmp1094 - .quad Ltmp1236 - .quad Ltmp1293 - .quad Ltmp1419 - .quad Ltmp1671 - .quad Ltmp1757 - .quad Ltmp1835 - .quad Ltmp1911 - .quad Ltmp1987 - .quad Ltmp2535 - .quad Ltmp2710 - .quad Ltmp2070 - .quad Ltmp2623 - .quad Ltmp2150 - .quad Ltmp2228 - .quad Ltmp2306 - .quad Ltmp2379 - .quad Ltmp2461 - .quad Ltmp2763 - .quad Ltmp2820 - .quad Ltmp2840 - .quad Ltmp2858 - .quad Ltmp2880 - .quad Ltmp2921 - .quad Ltmp2944 - .quad Ltmp2979 - .quad Ltmp3021 - .quad Ltmp3063 - .quad Ltmp3097 - .quad Ltmp3135 - .quad Ltmp3169 - .quad Ltmp3209 - .quad Ltmp3238 - .quad Ltmp3316 - .quad Ltmp3356 - .quad Ltmp3383 - .quad Ltmp3399 - .quad Ltmp3495 - .quad Ltmp3560 - .quad Ltmp3609 - .quad Ltmp3971 - .quad Ltmp4000 - .quad Ltmp4616 - .quad Ltmp4631 - .quad Ltmp4646 - .quad Ltmp4662 - .quad Ltmp4678 - .quad Ltmp4695 - .quad Ltmp4712 - .quad Ltmp4729 - .quad Ltmp4746 - .quad Ltmp4763 - .quad Ltmp4780 - .quad Ltmp4797 - .quad Ltmp4814 - .quad Ltmp4831 - .quad Ltmp4848 - .quad Ltmp4865 - .quad Ltmp4882 - .quad Ltmp4899 - .quad Ltmp5078 - .quad Ltmp5113 - .quad Ltmp5146 - .quad Ltmp5161 - .quad Ltmp5131 - .quad Ltmp5176 - .quad Ltmp5192 - .quad Ltmp5208 - .quad Ltmp4941 - .quad Ltmp4980 - .quad Ltmp5001 - .quad Ltmp5019 - .quad Ltmp5037 - .quad Ltmp4227 - .quad Ltmp4248 - .quad Ltmp4270 - .quad Ltmp4370 - .quad Ltmp4339 - .quad Ltmp4432 - .quad Ltmp3927 - .quad Ltmp3927 - .quad Ltmp3948 - .quad Ltmp3948 - .quad Ltmp4485 - .quad Ltmp4524 - .quad Ltmp4544 - .quad Ltmp4568 - .quad Ltmp4592 - .quad Ltmp3623 - .quad Ltmp3640 - .quad Ltmp3657 - .quad Ltmp3674 - .quad Ltmp3701 - .quad Ltmp3730 - .quad Ltmp3747 - .quad Ltmp3777 - .quad Ltmp3807 - .quad Ltmp3837 - .quad Ltmp3867 - .quad Ltmp3897 - .quad Ltmp4193 - .quad Ltmp1625 - .quad Ltmp4193 - .quad Ltmp4058 - .quad Ltmp1575 - .quad Ltmp4151 - .quad Ltmp1725 - .quad Ltmp1625 - .quad Ltmp4104 - - .section __TEXT,__cstring,cstring_literals -L_.str.10: ## @.str.10 - .asciz "incorrectly index" - -L_.str.11: ## @.str.11 - .asciz "'for' limit must be a number" - -L_.str.12: ## @.str.12 - .asciz "'for' step must be a number" - -L_.str.13: ## @.str.13 - .asciz "'for' initial value must be a number" - -L_.str.14: ## @.str.14 - .asciz "integer expected" - -L_.str.15: ## @.str.15 - .asciz "number expected" - -L_.str.16: ## @.str.16 - .asciz "upvalue of integer type, cannot be set to non integer value" - -L_.str.17: ## @.str.17 - .asciz "upvalue of number type, cannot be set to non number value" - -L_.str.18: ## @.str.18 - .asciz "upvalue of integer[] type, cannot be set to non integer[] value" - -L_.str.19: ## @.str.19 - .asciz "upvalue of number[] type, cannot be set to non number[] value" - -L_.str.20: ## @.str.20 - .asciz "upvalue of table type, cannot be set to non table value" - -L_.str.21: ## @.str.21 - .asciz "MOVEI: integer expected" - -L_.str.22: ## @.str.22 - .asciz "MOVEF: number expected" - -L_.str.23: ## @.str.23 - .asciz "integer[] expected" - -L_.str.24: ## @.str.24 - .asciz "number[] expected" - -L_.str.25: ## @.str.25 - .asciz "table expected" - -L_.str.26: ## @.str.26 - .asciz "TOINT: integer expected" - -L_.str.27: ## @.str.27 - .asciz "TOFLT: number expected" - -L_.str.28: ## @.str.28 - .asciz "string expected" - -L_.str.29: ## @.str.29 - .asciz "closure expected" - -L_.str.30: ## @.str.30 - .asciz "type name must be string" - -L_.str.31: ## @.str.31 - .asciz "type mismatch: expected %s" - -L_.str.36: ## @.str.36 - .asciz "'%s'\n" - -L_.str.39: ## @.str.39 - .asciz "%.6f\n" - -L_.str.40: ## @.str.40 - .asciz "%lld\n" - -L_.str.47: ## @.str.47 - .asciz "Stack dump %s\n" - -L_.str.48: ## @.str.48 - .asciz "L->top = %d\n" - -L_.str.50: ## @.str.50 - .asciz "Stack dump %s function %d L->top = %d, ci->top = %d\n" - -L_.str.51: ## @.str.51 - .asciz "Stack dump %s (%s) function %d, pc=%d, L->top = %d, ci->top = %d\n" - -L_.str.52: ## @.str.52 - .asciz "stack[%d] = Light C function\n" - -L_.str.54: ## @.str.54 - .asciz "stack[%d] = C closure\n" - -L_.str.55: ## @.str.55 - .asciz "stack[%d] reg[%d] = %s %s" - -L_.str.56: ## @.str.56 - .asciz "(base) " - -L_.str.57: ## @.str.57 - .space 1 - -L_.str.58: ## @.str.58 - .asciz "(L->top) " - -L_.str.59: ## @.str.59 - .asciz "stack[%d] = Lua function (registers = %d, params = %d, locals = %d)\n" - - .align 4 ## @str.71 -L_str.71: - .asciz "=======================" - -L_str.73: ## @str.73 - .asciz "other" - -L_str.74: ## @str.74 - .asciz "thread" - -L_str.75: ## @str.75 - .asciz "boolean" - -L_str.76: ## @str.76 - .asciz "full user data" - -L_str.77: ## @str.77 - .asciz "light user data" - -L_str.78: ## @str.78 - .asciz "nil" - -L_str.79: ## @str.79 - .asciz "table" - -L_str.80: ## @str.80 - .asciz "function" - -L_str.81: ## @str.81 - .asciz "Lua closure" - - .align 4 ## @str.82 -L_str.82: - .asciz "light C function" - -L_str.83: ## @str.83 - .asciz "C closure" - - .align 4 ## @str.85 -L_str.85: - .asciz "---> called from " - - .section __DWARF,__debug_str,regular,debug -Linfo_string: - .asciz "Apple LLVM version 7.3.0 (clang-703.0.29)" ## string offset=0 - .asciz "/Users/dylan/github/ravi/src/lvm.c" ## string offset=42 - .asciz "/Users/dylan/github/ravi/vmbuilder/compiler-output" ## string offset=77 - .asciz "dispatch_table" ## string offset=128 - .asciz "sizetype" ## string offset=143 - .asciz "TM_INDEX" ## string offset=152 - .asciz "TM_NEWINDEX" ## string offset=161 - .asciz "TM_GC" ## string offset=173 - .asciz "TM_MODE" ## string offset=179 - .asciz "TM_LEN" ## string offset=187 - .asciz "TM_EQ" ## string offset=194 - .asciz "TM_ADD" ## string offset=200 - .asciz "TM_SUB" ## string offset=207 - .asciz "TM_MUL" ## string offset=214 - .asciz "TM_MOD" ## string offset=221 - .asciz "TM_POW" ## string offset=228 - .asciz "TM_DIV" ## string offset=235 - .asciz "TM_IDIV" ## string offset=242 - .asciz "TM_BAND" ## string offset=250 - .asciz "TM_BOR" ## string offset=258 - .asciz "TM_BXOR" ## string offset=265 - .asciz "TM_SHL" ## string offset=273 - .asciz "TM_SHR" ## string offset=280 - .asciz "TM_UNM" ## string offset=287 - .asciz "TM_BNOT" ## string offset=294 - .asciz "TM_LT" ## string offset=302 - .asciz "TM_LE" ## string offset=308 - .asciz "TM_CONCAT" ## string offset=314 - .asciz "TM_CALL" ## string offset=324 - .asciz "TM_N" ## string offset=332 - .asciz "OP_MOVE" ## string offset=337 - .asciz "OP_LOADK" ## string offset=345 - .asciz "OP_LOADKX" ## string offset=354 - .asciz "OP_LOADBOOL" ## string offset=364 - .asciz "OP_LOADNIL" ## string offset=376 - .asciz "OP_GETUPVAL" ## string offset=387 - .asciz "OP_GETTABUP" ## string offset=399 - .asciz "OP_GETTABLE" ## string offset=411 - .asciz "OP_SETTABUP" ## string offset=423 - .asciz "OP_SETUPVAL" ## string offset=435 - .asciz "OP_SETTABLE" ## string offset=447 - .asciz "OP_NEWTABLE" ## string offset=459 - .asciz "OP_SELF" ## string offset=471 - .asciz "OP_ADD" ## string offset=479 - .asciz "OP_SUB" ## string offset=486 - .asciz "OP_MUL" ## string offset=493 - .asciz "OP_MOD" ## string offset=500 - .asciz "OP_POW" ## string offset=507 - .asciz "OP_DIV" ## string offset=514 - .asciz "OP_IDIV" ## string offset=521 - .asciz "OP_BAND" ## string offset=529 - .asciz "OP_BOR" ## string offset=537 - .asciz "OP_BXOR" ## string offset=544 - .asciz "OP_SHL" ## string offset=552 - .asciz "OP_SHR" ## string offset=559 - .asciz "OP_UNM" ## string offset=566 - .asciz "OP_BNOT" ## string offset=573 - .asciz "OP_NOT" ## string offset=581 - .asciz "OP_LEN" ## string offset=588 - .asciz "OP_CONCAT" ## string offset=595 - .asciz "OP_JMP" ## string offset=605 - .asciz "OP_EQ" ## string offset=612 - .asciz "OP_LT" ## string offset=618 - .asciz "OP_LE" ## string offset=624 - .asciz "OP_TEST" ## string offset=630 - .asciz "OP_TESTSET" ## string offset=638 - .asciz "OP_CALL" ## string offset=649 - .asciz "OP_TAILCALL" ## string offset=657 - .asciz "OP_RETURN" ## string offset=669 - .asciz "OP_FORLOOP" ## string offset=679 - .asciz "OP_FORPREP" ## string offset=690 - .asciz "OP_TFORCALL" ## string offset=701 - .asciz "OP_TFORLOOP" ## string offset=713 - .asciz "OP_SETLIST" ## string offset=725 - .asciz "OP_CLOSURE" ## string offset=736 - .asciz "OP_VARARG" ## string offset=747 - .asciz "OP_EXTRAARG" ## string offset=757 - .asciz "OP_RAVI_NEWARRAYI" ## string offset=769 - .asciz "OP_RAVI_NEWARRAYF" ## string offset=787 - .asciz "OP_RAVI_LOADIZ" ## string offset=805 - .asciz "OP_RAVI_LOADFZ" ## string offset=820 - .asciz "OP_RAVI_UNMF" ## string offset=835 - .asciz "OP_RAVI_UNMI" ## string offset=848 - .asciz "OP_RAVI_ADDFF" ## string offset=861 - .asciz "OP_RAVI_ADDFI" ## string offset=875 - .asciz "OP_RAVI_ADDII" ## string offset=889 - .asciz "OP_RAVI_SUBFF" ## string offset=903 - .asciz "OP_RAVI_SUBFI" ## string offset=917 - .asciz "OP_RAVI_SUBIF" ## string offset=931 - .asciz "OP_RAVI_SUBII" ## string offset=945 - .asciz "OP_RAVI_MULFF" ## string offset=959 - .asciz "OP_RAVI_MULFI" ## string offset=973 - .asciz "OP_RAVI_MULII" ## string offset=987 - .asciz "OP_RAVI_DIVFF" ## string offset=1001 - .asciz "OP_RAVI_DIVFI" ## string offset=1015 - .asciz "OP_RAVI_DIVIF" ## string offset=1029 - .asciz "OP_RAVI_DIVII" ## string offset=1043 - .asciz "OP_RAVI_TOINT" ## string offset=1057 - .asciz "OP_RAVI_TOFLT" ## string offset=1071 - .asciz "OP_RAVI_TOARRAYI" ## string offset=1085 - .asciz "OP_RAVI_TOARRAYF" ## string offset=1102 - .asciz "OP_RAVI_TOTAB" ## string offset=1119 - .asciz "OP_RAVI_TOSTRING" ## string offset=1133 - .asciz "OP_RAVI_TOCLOSURE" ## string offset=1150 - .asciz "OP_RAVI_TOTYPE" ## string offset=1168 - .asciz "OP_RAVI_MOVEI" ## string offset=1183 - .asciz "OP_RAVI_MOVEF" ## string offset=1197 - .asciz "OP_RAVI_MOVEAI" ## string offset=1211 - .asciz "OP_RAVI_MOVEAF" ## string offset=1226 - .asciz "OP_RAVI_MOVETAB" ## string offset=1241 - .asciz "OP_RAVI_GETTABLE_AI" ## string offset=1257 - .asciz "OP_RAVI_GETTABLE_AF" ## string offset=1277 - .asciz "OP_RAVI_SETTABLE_AI" ## string offset=1297 - .asciz "OP_RAVI_SETTABLE_AF" ## string offset=1317 - .asciz "OP_RAVI_SETTABLE_AII" ## string offset=1337 - .asciz "OP_RAVI_SETTABLE_AFF" ## string offset=1358 - .asciz "OP_RAVI_FORLOOP_IP" ## string offset=1379 - .asciz "OP_RAVI_FORLOOP_I1" ## string offset=1398 - .asciz "OP_RAVI_FORPREP_IP" ## string offset=1417 - .asciz "OP_RAVI_FORPREP_I1" ## string offset=1436 - .asciz "OP_RAVI_SETUPVALI" ## string offset=1455 - .asciz "OP_RAVI_SETUPVALF" ## string offset=1473 - .asciz "OP_RAVI_SETUPVALAI" ## string offset=1491 - .asciz "OP_RAVI_SETUPVALAF" ## string offset=1510 - .asciz "OP_RAVI_SETUPVALT" ## string offset=1529 - .asciz "OP_RAVI_BAND_II" ## string offset=1547 - .asciz "OP_RAVI_BOR_II" ## string offset=1563 - .asciz "OP_RAVI_BXOR_II" ## string offset=1578 - .asciz "OP_RAVI_SHL_II" ## string offset=1594 - .asciz "OP_RAVI_SHR_II" ## string offset=1609 - .asciz "OP_RAVI_BNOT_I" ## string offset=1624 - .asciz "OP_RAVI_EQ_II" ## string offset=1639 - .asciz "OP_RAVI_EQ_FF" ## string offset=1653 - .asciz "OP_RAVI_LT_II" ## string offset=1667 - .asciz "OP_RAVI_LT_FF" ## string offset=1681 - .asciz "OP_RAVI_LE_II" ## string offset=1695 - .asciz "OP_RAVI_LE_FF" ## string offset=1709 - .asciz "OP_RAVI_GETTABLE_S" ## string offset=1723 - .asciz "OP_RAVI_SETTABLE_S" ## string offset=1742 - .asciz "OP_RAVI_SELF_S" ## string offset=1761 - .asciz "OP_RAVI_GETTABLE_I" ## string offset=1776 - .asciz "OP_RAVI_SETTABLE_I" ## string offset=1795 - .asciz "OP_RAVI_GETTABLE_SK" ## string offset=1814 - .asciz "OP_RAVI_SELF_SK" ## string offset=1834 - .asciz "OP_RAVI_SETTABLE_SK" ## string offset=1850 - .asciz "OP_RAVI_GETTABUP_SK" ## string offset=1870 - .asciz "RAVI_TANY" ## string offset=1890 - .asciz "RAVI_TNUMINT" ## string offset=1900 - .asciz "RAVI_TNUMFLT" ## string offset=1913 - .asciz "RAVI_TARRAYINT" ## string offset=1926 - .asciz "RAVI_TARRAYFLT" ## string offset=1941 - .asciz "RAVI_TFUNCTION" ## string offset=1956 - .asciz "RAVI_TTABLE" ## string offset=1971 - .asciz "RAVI_TSTRING" ## string offset=1983 - .asciz "RAVI_TNIL" ## string offset=1996 - .asciz "RAVI_TBOOLEAN" ## string offset=2006 - .asciz "RAVI_TUSERDATA" ## string offset=2020 - .asciz "lua_Number" ## string offset=2035 - .asciz "double" ## string offset=2046 - .asciz "char" ## string offset=2053 - .asciz "GCUnion" ## string offset=2058 - .asciz "gc" ## string offset=2066 - .asciz "GCObject" ## string offset=2069 - .asciz "next" ## string offset=2078 - .asciz "tt" ## string offset=2083 - .asciz "lu_byte" ## string offset=2086 - .asciz "unsigned char" ## string offset=2094 - .asciz "marked" ## string offset=2108 - .asciz "ts" ## string offset=2115 - .asciz "TString" ## string offset=2118 - .asciz "extra" ## string offset=2126 - .asciz "shrlen" ## string offset=2132 - .asciz "hash" ## string offset=2139 - .asciz "unsigned int" ## string offset=2144 - .asciz "u" ## string offset=2157 - .asciz "lnglen" ## string offset=2159 - .asciz "size_t" ## string offset=2166 - .asciz "__darwin_size_t" ## string offset=2173 - .asciz "long unsigned int" ## string offset=2189 - .asciz "hnext" ## string offset=2207 - .asciz "Udata" ## string offset=2213 - .asciz "ttuv_" ## string offset=2219 - .asciz "metatable" ## string offset=2225 - .asciz "Table" ## string offset=2235 - .asciz "flags" ## string offset=2241 - .asciz "lsizenode" ## string offset=2247 - .asciz "sizearray" ## string offset=2257 - .asciz "array" ## string offset=2267 - .asciz "TValue" ## string offset=2273 - .asciz "lua_TValue" ## string offset=2280 - .asciz "value_" ## string offset=2291 - .asciz "Value" ## string offset=2298 - .asciz "p" ## string offset=2304 - .asciz "b" ## string offset=2306 - .asciz "int" ## string offset=2308 - .asciz "f" ## string offset=2312 - .asciz "lua_CFunction" ## string offset=2314 - .asciz "lua_State" ## string offset=2328 - .asciz "status" ## string offset=2338 - .asciz "top" ## string offset=2345 - .asciz "StkId" ## string offset=2349 - .asciz "l_G" ## string offset=2355 - .asciz "global_State" ## string offset=2359 - .asciz "frealloc" ## string offset=2372 - .asciz "lua_Alloc" ## string offset=2381 - .asciz "ud" ## string offset=2391 - .asciz "totalbytes" ## string offset=2394 - .asciz "l_mem" ## string offset=2405 - .asciz "ptrdiff_t" ## string offset=2411 - .asciz "long int" ## string offset=2421 - .asciz "GCdebt" ## string offset=2430 - .asciz "GCmemtrav" ## string offset=2437 - .asciz "lu_mem" ## string offset=2447 - .asciz "GCestimate" ## string offset=2454 - .asciz "strt" ## string offset=2465 - .asciz "stringtable" ## string offset=2470 - .asciz "nuse" ## string offset=2482 - .asciz "size" ## string offset=2487 - .asciz "l_registry" ## string offset=2492 - .asciz "seed" ## string offset=2503 - .asciz "currentwhite" ## string offset=2508 - .asciz "gcstate" ## string offset=2521 - .asciz "gckind" ## string offset=2529 - .asciz "gcrunning" ## string offset=2536 - .asciz "allgc" ## string offset=2546 - .asciz "sweepgc" ## string offset=2552 - .asciz "finobj" ## string offset=2560 - .asciz "gray" ## string offset=2567 - .asciz "grayagain" ## string offset=2572 - .asciz "weak" ## string offset=2582 - .asciz "ephemeron" ## string offset=2587 - .asciz "allweak" ## string offset=2597 - .asciz "tobefnz" ## string offset=2605 - .asciz "fixedgc" ## string offset=2613 - .asciz "twups" ## string offset=2621 - .asciz "gcfinnum" ## string offset=2627 - .asciz "gcpause" ## string offset=2636 - .asciz "gcstepmul" ## string offset=2644 - .asciz "panic" ## string offset=2654 - .asciz "mainthread" ## string offset=2660 - .asciz "version" ## string offset=2671 - .asciz "memerrmsg" ## string offset=2679 - .asciz "tmname" ## string offset=2689 - .asciz "mt" ## string offset=2696 - .asciz "strcache" ## string offset=2699 - .asciz "ravi_state" ## string offset=2708 - .asciz "ravi_State" ## string offset=2719 - .asciz "dispatch" ## string offset=2730 - .asciz "ASMFunction" ## string offset=2739 - .asciz "ravi_writeline" ## string offset=2751 - .asciz "ravi_Writeline" ## string offset=2766 - .asciz "ravi_writestring" ## string offset=2781 - .asciz "ravi_Writestring" ## string offset=2798 - .asciz "ravi_writestringerror" ## string offset=2815 - .asciz "ravi_Writestringerror" ## string offset=2837 - .asciz "ravi_debugger_data" ## string offset=2859 - .asciz "ci" ## string offset=2878 - .asciz "CallInfo" ## string offset=2881 - .asciz "func" ## string offset=2890 - .asciz "previous" ## string offset=2895 - .asciz "l" ## string offset=2904 - .asciz "base" ## string offset=2906 - .asciz "savedpc" ## string offset=2911 - .asciz "Instruction" ## string offset=2919 - .asciz "c" ## string offset=2931 - .asciz "k" ## string offset=2933 - .asciz "lua_KFunction" ## string offset=2935 - .asciz "lua_KContext" ## string offset=2949 - .asciz "intptr_t" ## string offset=2962 - .asciz "__darwin_intptr_t" ## string offset=2971 - .asciz "old_errfunc" ## string offset=2989 - .asciz "ctx" ## string offset=3001 - .asciz "nresults" ## string offset=3005 - .asciz "short" ## string offset=3014 - .asciz "callstatus" ## string offset=3020 - .asciz "unsigned short" ## string offset=3031 - .asciz "stacklevel" ## string offset=3046 - .asciz "jitstatus" ## string offset=3057 - .asciz "oldpc" ## string offset=3067 - .asciz "stack_last" ## string offset=3073 - .asciz "stack" ## string offset=3084 - .asciz "openupval" ## string offset=3090 - .asciz "UpVal" ## string offset=3100 - .asciz "v" ## string offset=3106 - .asciz "refcount" ## string offset=3108 - .asciz "open" ## string offset=3117 - .asciz "touched" ## string offset=3122 - .asciz "value" ## string offset=3130 - .asciz "gclist" ## string offset=3136 - .asciz "errorJmp" ## string offset=3143 - .asciz "lua_longjmp" ## string offset=3152 - .asciz "base_ci" ## string offset=3164 - .asciz "hook" ## string offset=3172 - .asciz "lua_Hook" ## string offset=3177 - .asciz "lua_Debug" ## string offset=3186 - .asciz "event" ## string offset=3196 - .asciz "name" ## string offset=3202 - .asciz "namewhat" ## string offset=3207 - .asciz "what" ## string offset=3216 - .asciz "source" ## string offset=3221 - .asciz "currentline" ## string offset=3228 - .asciz "linedefined" ## string offset=3240 - .asciz "lastlinedefined" ## string offset=3252 - .asciz "nups" ## string offset=3268 - .asciz "nparams" ## string offset=3273 - .asciz "isvararg" ## string offset=3281 - .asciz "istailcall" ## string offset=3290 - .asciz "short_src" ## string offset=3301 - .asciz "i_ci" ## string offset=3311 - .asciz "errfunc" ## string offset=3316 - .asciz "stacksize" ## string offset=3324 - .asciz "basehookcount" ## string offset=3334 - .asciz "hookcount" ## string offset=3348 - .asciz "nny" ## string offset=3358 - .asciz "nCcalls" ## string offset=3362 - .asciz "hookmask" ## string offset=3370 - .asciz "allowhook" ## string offset=3379 - .asciz "nci" ## string offset=3389 - .asciz "i" ## string offset=3393 - .asciz "lua_Integer" ## string offset=3395 - .asciz "long long int" ## string offset=3407 - .asciz "n" ## string offset=3421 - .asciz "tt_" ## string offset=3423 - .asciz "node" ## string offset=3427 - .asciz "Node" ## string offset=3432 - .asciz "i_val" ## string offset=3437 - .asciz "i_key" ## string offset=3443 - .asciz "TKey" ## string offset=3449 - .asciz "nk" ## string offset=3454 - .asciz "tvk" ## string offset=3457 - .asciz "lastfree" ## string offset=3461 - .asciz "ravi_array" ## string offset=3470 - .asciz "RaviArray" ## string offset=3481 - .asciz "data" ## string offset=3491 - .asciz "len" ## string offset=3496 - .asciz "array_type" ## string offset=3500 - .asciz "array_modifier" ## string offset=3511 - .asciz "hmask" ## string offset=3526 - .asciz "user_" ## string offset=3532 - .asciz "cl" ## string offset=3538 - .asciz "Closure" ## string offset=3541 - .asciz "CClosure" ## string offset=3549 - .asciz "nupvalues" ## string offset=3558 - .asciz "upvalue" ## string offset=3568 - .asciz "LClosure" ## string offset=3576 - .asciz "Proto" ## string offset=3585 - .asciz "numparams" ## string offset=3591 - .asciz "is_vararg" ## string offset=3601 - .asciz "maxstacksize" ## string offset=3611 - .asciz "sizeupvalues" ## string offset=3624 - .asciz "sizek" ## string offset=3637 - .asciz "sizecode" ## string offset=3643 - .asciz "sizelineinfo" ## string offset=3652 - .asciz "sizep" ## string offset=3665 - .asciz "sizelocvars" ## string offset=3671 - .asciz "code" ## string offset=3683 - .asciz "lineinfo" ## string offset=3688 - .asciz "locvars" ## string offset=3697 - .asciz "LocVar" ## string offset=3705 - .asciz "varname" ## string offset=3712 - .asciz "usertype" ## string offset=3720 - .asciz "startpc" ## string offset=3729 - .asciz "endpc" ## string offset=3737 - .asciz "ravi_type" ## string offset=3743 - .asciz "upvalues" ## string offset=3753 - .asciz "Upvaldesc" ## string offset=3762 - .asciz "instack" ## string offset=3772 - .asciz "idx" ## string offset=3780 - .asciz "cache" ## string offset=3784 - .asciz "ravi_jit" ## string offset=3790 - .asciz "RaviJITProto" ## string offset=3799 - .asciz "jit_status" ## string offset=3812 - .asciz "jit_flags" ## string offset=3823 - .asciz "execution_count" ## string offset=3833 - .asciz "jit_data" ## string offset=3849 - .asciz "jit_function" ## string offset=3858 - .asciz "upvals" ## string offset=3871 - .asciz "h" ## string offset=3878 - .asciz "th" ## string offset=3880 - .asciz "lua_Unsigned" ## string offset=3883 - .asciz "long long unsigned int" ## string offset=3896 - .asciz "OpCode" ## string offset=3919 - .asciz "luaV_tonumber_" ## string offset=3926 - .asciz "luaV_tointeger" ## string offset=3941 - .asciz "obj" ## string offset=3956 - .asciz "mode" ## string offset=3960 - .asciz "luaV_tointeger_" ## string offset=3965 - .asciz "luaV_forlimit" ## string offset=3981 - .asciz "luaV_finishget" ## string offset=3995 - .asciz "luaV_finishset" ## string offset=4010 - .asciz "luaV_gettable" ## string offset=4025 - .asciz "luaV_settable" ## string offset=4039 - .asciz "LTnum" ## string offset=4053 - .asciz "r" ## string offset=4059 - .asciz "li" ## string offset=4061 - .asciz "lf" ## string offset=4064 - .asciz "l_strcmp" ## string offset=4067 - .asciz "ls" ## string offset=4076 - .asciz "rs" ## string offset=4079 - .asciz "ll" ## string offset=4082 - .asciz "lr" ## string offset=4085 - .asciz "temp" ## string offset=4088 - .asciz "LTintfloat" ## string offset=4093 - .asciz "LEintfloat" ## string offset=4104 - .asciz "luaV_lessthan" ## string offset=4115 - .asciz "LEnum" ## string offset=4129 - .asciz "luaV_lessequal" ## string offset=4135 - .asciz "luaV_equalobj" ## string offset=4150 - .asciz "copy2buff" ## string offset=4164 - .asciz "buff" ## string offset=4174 - .asciz "tl" ## string offset=4179 - .asciz "luaV_concat" ## string offset=4182 - .asciz "luaV_objlen" ## string offset=4194 - .asciz "luaV_div" ## string offset=4206 - .asciz "luaV_mod" ## string offset=4215 - .asciz "luaV_shiftl" ## string offset=4224 - .asciz "luaV_finishOp" ## string offset=4236 - .asciz "luaH_getshortstr" ## string offset=4250 - .asciz "t" ## string offset=4267 - .asciz "key" ## string offset=4269 - .asciz "nx" ## string offset=4273 - .asciz "x" ## string offset=4276 - .asciz "y" ## string offset=4278 - .asciz "L" ## string offset=4280 - .asciz "m" ## string offset=4282 - .asciz "q" ## string offset=4284 - .asciz "getcached" ## string offset=4286 - .asciz "encup" ## string offset=4296 - .asciz "nup" ## string offset=4302 - .asciz "uv" ## string offset=4306 - .asciz "pushclosure" ## string offset=4309 - .asciz "ra" ## string offset=4321 - .asciz "ncl" ## string offset=4324 - .asciz "x_" ## string offset=4328 - .asciz "io" ## string offset=4331 - .asciz "check_usertype" ## string offset=4334 - .asciz "o" ## string offset=4349 - .asciz "reg" ## string offset=4351 - .asciz "metatab" ## string offset=4355 - .asciz "luaV_execute" ## string offset=4363 - .asciz "ravi_dump_value" ## string offset=4376 - .asciz "ravi_dump_ci" ## string offset=4392 - .asciz "func_type" ## string offset=4405 - .asciz "funcpos" ## string offset=4415 - .asciz "stack_ptr" ## string offset=4423 - .asciz "ravi_dump_stack" ## string offset=4433 - .asciz "ravi_dump_stacktop" ## string offset=4449 - .asciz "ravi_debug_trace" ## string offset=4468 - .asciz "raviV_op_newarrayint" ## string offset=4485 - .asciz "raviV_op_newarrayfloat" ## string offset=4506 - .asciz "raviV_op_newtable" ## string offset=4529 - .asciz "raviV_op_setlist" ## string offset=4547 - .asciz "raviV_op_concat" ## string offset=4564 - .asciz "raviV_op_closure" ## string offset=4580 - .asciz "raviV_op_vararg" ## string offset=4597 - .asciz "raviV_op_loadnil" ## string offset=4613 - .asciz "raviV_op_setupvali" ## string offset=4630 - .asciz "raviV_op_setupvalf" ## string offset=4649 - .asciz "raviV_op_setupvalai" ## string offset=4668 - .asciz "raviV_op_setupvalaf" ## string offset=4688 - .asciz "raviV_op_setupvalt" ## string offset=4708 - .asciz "raviV_op_setupval" ## string offset=4727 - .asciz "raviV_op_add" ## string offset=4745 - .asciz "raviV_op_sub" ## string offset=4758 - .asciz "raviV_op_mul" ## string offset=4771 - .asciz "raviV_op_div" ## string offset=4784 - .asciz "raviV_op_shl" ## string offset=4797 - .asciz "raviV_op_shr" ## string offset=4810 - .asciz "raviV_op_band" ## string offset=4823 - .asciz "raviV_op_bor" ## string offset=4837 - .asciz "raviV_op_bxor" ## string offset=4850 - .asciz "raviV_op_bnot" ## string offset=4864 - .asciz "raviV_gettable_sskey" ## string offset=4878 - .asciz "raviV_settable_sskey" ## string offset=4899 - .asciz "raviV_gettable_i" ## string offset=4920 - .asciz "raviV_settable_i" ## string offset=4937 - .asciz "raviV_op_totype" ## string offset=4954 - .asciz "step" ## string offset=4970 - .asciz "stopnow" ## string offset=4975 - .asciz "val" ## string offset=4983 - .asciz "slot" ## string offset=4987 - .asciz "io1" ## string offset=4992 - .asciz "loop" ## string offset=4996 - .asciz "tm" ## string offset=5001 - .asciz "aux" ## string offset=5004 - .asciz "ukey" ## string offset=5008 - .asciz "d" ## string offset=5013 - .asciz "res" ## string offset=5015 - .asciz "t1" ## string offset=5019 - .asciz "t2" ## string offset=5022 - .asciz "i1" ## string offset=5025 - .asciz "i2" ## string offset=5028 - .asciz "total" ## string offset=5031 - .asciz "rb" ## string offset=5037 - .asciz "inst" ## string offset=5040 - .asciz "op" ## string offset=5045 - .asciz "pc" ## string offset=5048 - .asciz "mask" ## string offset=5051 - .asciz "upval" ## string offset=5056 - .asciz "rc" ## string offset=5062 - .asciz "ic" ## string offset=5065 - .asciz "ib" ## string offset=5068 - .asciz "c_or_compiled" ## string offset=5071 - .asciz "nfunc" ## string offset=5085 - .asciz "oci" ## string offset=5091 - .asciz "ofunc" ## string offset=5095 - .asciz "lim" ## string offset=5101 - .asciz "nres" ## string offset=5105 - .asciz "limit" ## string offset=5110 - .asciz "plimit" ## string offset=5116 - .asciz "ilimit" ## string offset=5123 - .asciz "initv" ## string offset=5130 - .asciz "cb" ## string offset=5136 - .asciz "last" ## string offset=5139 - .asciz "j" ## string offset=5144 - .asciz "istep" ## string offset=5146 - .asciz "ia" ## string offset=5152 - .asciz "nb" ## string offset=5155 - .asciz "nc" ## string offset=5158 - .asciz "a" ## string offset=5161 - .asciz "init" ## string offset=5163 - .asciz "pstep" ## string offset=5168 - .asciz "ninit" ## string offset=5174 - .asciz "nlimit" ## string offset=5180 - .asciz "nstep" ## string offset=5187 - .asciz "equals" ## string offset=5193 - .asciz "lessthan" ## string offset=5200 - .asciz "lessequals" ## string offset=5209 - .asciz "pinit" ## string offset=5220 - .asciz "na" ## string offset=5226 - .asciz "s" ## string offset=5229 - .asciz "ci_top" ## string offset=5231 - .asciz "buf" ## string offset=5238 - .asciz "opCode" ## string offset=5242 - .asciz "closure" ## string offset=5249 - .asciz "Bx" ## string offset=5257 - .section __DWARF,__debug_loc,regular,debug -Lsection_debug_loc: -Ldebug_loc0: -Lset0 = Lfunc_begin0-Lfunc_begin0 - .quad Lset0 -Lset1 = Ltmp7-Lfunc_begin0 - .quad Lset1 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2 = Ltmp7-Lfunc_begin0 - .quad Lset2 -Lset3 = Ltmp10-Lfunc_begin0 - .quad Lset3 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset4 = Ltmp11-Lfunc_begin0 - .quad Lset4 -Lset5 = Ltmp15-Lfunc_begin0 - .quad Lset5 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1: -Lset6 = Lfunc_begin0-Lfunc_begin0 - .quad Lset6 -Lset7 = Ltmp6-Lfunc_begin0 - .quad Lset7 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8 = Ltmp6-Lfunc_begin0 - .quad Lset8 -Lset9 = Ltmp21-Lfunc_begin0 - .quad Lset9 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset10 = Ltmp22-Lfunc_begin0 - .quad Lset10 -Lset11 = Lfunc_end0-Lfunc_begin0 - .quad Lset11 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc2: -Lset12 = Ltmp13-Lfunc_begin0 - .quad Lset12 -Lset13 = Ltmp14-Lfunc_begin0 - .quad Lset13 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc3: -Lset14 = Lfunc_begin1-Lfunc_begin0 - .quad Lset14 -Lset15 = Ltmp34-Lfunc_begin0 - .quad Lset15 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset16 = Ltmp34-Lfunc_begin0 - .quad Lset16 -Lset17 = Ltmp35-Lfunc_begin0 - .quad Lset17 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc4: -Lset18 = Lfunc_begin1-Lfunc_begin0 - .quad Lset18 -Lset19 = Ltmp33-Lfunc_begin0 - .quad Lset19 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset20 = Ltmp33-Lfunc_begin0 - .quad Lset20 -Lset21 = Ltmp56-Lfunc_begin0 - .quad Lset21 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc5: -Lset22 = Lfunc_begin1-Lfunc_begin0 - .quad Lset22 -Lset23 = Ltmp32-Lfunc_begin0 - .quad Lset23 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset24 = Ltmp32-Lfunc_begin0 - .quad Lset24 -Lset25 = Ltmp44-Lfunc_begin0 - .quad Lset25 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset26 = Ltmp45-Lfunc_begin0 - .quad Lset26 -Lset27 = Ltmp52-Lfunc_begin0 - .quad Lset27 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc6: -Lset28 = Ltmp40-Lfunc_begin0 - .quad Lset28 -Lset29 = Ltmp44-Lfunc_begin0 - .quad Lset29 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc7: -Lset30 = Ltmp46-Lfunc_begin0 - .quad Lset30 -Lset31 = Ltmp47-Lfunc_begin0 - .quad Lset31 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset32 = Ltmp47-Lfunc_begin0 - .quad Lset32 -Lset33 = Lfunc_end1-Lfunc_begin0 - .quad Lset33 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc8: -Lset34 = Ltmp48-Lfunc_begin0 - .quad Lset34 -Lset35 = Ltmp53-Lfunc_begin0 - .quad Lset35 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc9: -Lset36 = Lfunc_begin2-Lfunc_begin0 - .quad Lset36 -Lset37 = Ltmp67-Lfunc_begin0 - .quad Lset37 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset38 = Ltmp67-Lfunc_begin0 - .quad Lset38 -Lset39 = Ltmp68-Lfunc_begin0 - .quad Lset39 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc10: -Lset40 = Lfunc_begin2-Lfunc_begin0 - .quad Lset40 -Lset41 = Ltmp66-Lfunc_begin0 - .quad Lset41 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset42 = Ltmp66-Lfunc_begin0 - .quad Lset42 -Lset43 = Ltmp86-Lfunc_begin0 - .quad Lset43 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc11: -Lset44 = Ltmp73-Lfunc_begin0 - .quad Lset44 -Lset45 = Ltmp78-Lfunc_begin0 - .quad Lset45 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc12: -Lset46 = Ltmp80-Lfunc_begin0 - .quad Lset46 -Lset47 = Ltmp81-Lfunc_begin0 - .quad Lset47 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset48 = Ltmp81-Lfunc_begin0 - .quad Lset48 -Lset49 = Lfunc_end2-Lfunc_begin0 - .quad Lset49 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc13: -Lset50 = Ltmp82-Lfunc_begin0 - .quad Lset50 -Lset51 = Ltmp84-Lfunc_begin0 - .quad Lset51 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc14: -Lset52 = Lfunc_begin3-Lfunc_begin0 - .quad Lset52 -Lset53 = Ltmp100-Lfunc_begin0 - .quad Lset53 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset54 = Ltmp100-Lfunc_begin0 - .quad Lset54 -Lset55 = Ltmp112-Lfunc_begin0 - .quad Lset55 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset56 = Ltmp113-Lfunc_begin0 - .quad Lset56 -Lset57 = Ltmp125-Lfunc_begin0 - .quad Lset57 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset58 = Ltmp127-Lfunc_begin0 - .quad Lset58 -Lset59 = Ltmp130-Lfunc_begin0 - .quad Lset59 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset60 = Ltmp138-Lfunc_begin0 - .quad Lset60 -Lset61 = Ltmp140-Lfunc_begin0 - .quad Lset61 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset62 = Ltmp141-Lfunc_begin0 - .quad Lset62 -Lset63 = Ltmp146-Lfunc_begin0 - .quad Lset63 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc15: -Lset64 = Lfunc_begin3-Lfunc_begin0 - .quad Lset64 -Lset65 = Ltmp99-Lfunc_begin0 - .quad Lset65 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset66 = Ltmp99-Lfunc_begin0 - .quad Lset66 -Lset67 = Ltmp134-Lfunc_begin0 - .quad Lset67 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset68 = Ltmp135-Lfunc_begin0 - .quad Lset68 -Lset69 = Ltmp136-Lfunc_begin0 - .quad Lset69 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset70 = Ltmp138-Lfunc_begin0 - .quad Lset70 -Lset71 = Ltmp152-Lfunc_begin0 - .quad Lset71 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset72 = Ltmp153-Lfunc_begin0 - .quad Lset72 -Lset73 = Lfunc_end3-Lfunc_begin0 - .quad Lset73 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc16: -Lset74 = Lfunc_begin3-Lfunc_begin0 - .quad Lset74 -Lset75 = Ltmp98-Lfunc_begin0 - .quad Lset75 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset76 = Ltmp98-Lfunc_begin0 - .quad Lset76 -Lset77 = Lfunc_end3-Lfunc_begin0 - .quad Lset77 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc17: -Lset78 = Lfunc_begin3-Lfunc_begin0 - .quad Lset78 -Lset79 = Ltmp97-Lfunc_begin0 - .quad Lset79 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset80 = Ltmp97-Lfunc_begin0 - .quad Lset80 -Lset81 = Ltmp112-Lfunc_begin0 - .quad Lset81 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset82 = Ltmp113-Lfunc_begin0 - .quad Lset82 -Lset83 = Ltmp125-Lfunc_begin0 - .quad Lset83 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset84 = Ltmp127-Lfunc_begin0 - .quad Lset84 -Lset85 = Ltmp137-Lfunc_begin0 - .quad Lset85 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset86 = Ltmp138-Lfunc_begin0 - .quad Lset86 -Lset87 = Ltmp152-Lfunc_begin0 - .quad Lset87 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset88 = Ltmp153-Lfunc_begin0 - .quad Lset88 -Lset89 = Lfunc_end3-Lfunc_begin0 - .quad Lset89 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc18: -Lset90 = Ltmp107-Lfunc_begin0 - .quad Lset90 -Lset91 = Ltmp112-Lfunc_begin0 - .quad Lset91 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc19: -Lset92 = Ltmp114-Lfunc_begin0 - .quad Lset92 -Lset93 = Ltmp115-Lfunc_begin0 - .quad Lset93 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset94 = Ltmp115-Lfunc_begin0 - .quad Lset94 -Lset95 = Ltmp120-Lfunc_begin0 - .quad Lset95 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset96 = Ltmp120-Lfunc_begin0 - .quad Lset96 -Lset97 = Ltmp121-Lfunc_begin0 - .quad Lset97 - .short 1 ## Loc expr size - .byte 99 ## DW_OP_reg19 - .quad 0 - .quad 0 -Ldebug_loc20: -Lset98 = Ltmp116-Lfunc_begin0 - .quad Lset98 -Lset99 = Ltmp119-Lfunc_begin0 - .quad Lset99 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset100 = Ltmp119-Lfunc_begin0 - .quad Lset100 -Lset101 = Ltmp122-Lfunc_begin0 - .quad Lset101 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc21: -Lset102 = Ltmp143-Lfunc_begin0 - .quad Lset102 -Lset103 = Ltmp146-Lfunc_begin0 - .quad Lset103 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc22: -Lset104 = Ltmp144-Lfunc_begin0 - .quad Lset104 -Lset105 = Ltmp145-Lfunc_begin0 - .quad Lset105 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc23: -Lset106 = Lfunc_begin4-Lfunc_begin0 - .quad Lset106 -Lset107 = Ltmp168-Lfunc_begin0 - .quad Lset107 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset108 = Ltmp168-Lfunc_begin0 - .quad Lset108 -Lset109 = Ltmp187-Lfunc_begin0 - .quad Lset109 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset110 = Ltmp188-Lfunc_begin0 - .quad Lset110 -Lset111 = Ltmp189-Lfunc_begin0 - .quad Lset111 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset112 = Ltmp195-Lfunc_begin0 - .quad Lset112 -Lset113 = Lfunc_end4-Lfunc_begin0 - .quad Lset113 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc24: -Lset114 = Lfunc_begin4-Lfunc_begin0 - .quad Lset114 -Lset115 = Ltmp167-Lfunc_begin0 - .quad Lset115 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset116 = Ltmp167-Lfunc_begin0 - .quad Lset116 -Lset117 = Ltmp169-Lfunc_begin0 - .quad Lset117 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc25: -Lset118 = Lfunc_begin4-Lfunc_begin0 - .quad Lset118 -Lset119 = Ltmp166-Lfunc_begin0 - .quad Lset119 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset120 = Ltmp166-Lfunc_begin0 - .quad Lset120 -Lset121 = Ltmp186-Lfunc_begin0 - .quad Lset121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset122 = Ltmp188-Lfunc_begin0 - .quad Lset122 -Lset123 = Ltmp190-Lfunc_begin0 - .quad Lset123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc26: -Lset124 = Lfunc_begin4-Lfunc_begin0 - .quad Lset124 -Lset125 = Ltmp165-Lfunc_begin0 - .quad Lset125 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset126 = Ltmp165-Lfunc_begin0 - .quad Lset126 -Lset127 = Ltmp193-Lfunc_begin0 - .quad Lset127 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -Lset128 = Ltmp193-Lfunc_begin0 - .quad Lset128 -Lset129 = Ltmp194-Lfunc_begin0 - .quad Lset129 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc27: -Lset130 = Lfunc_begin4-Lfunc_begin0 - .quad Lset130 -Lset131 = Ltmp164-Lfunc_begin0 - .quad Lset131 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset132 = Ltmp164-Lfunc_begin0 - .quad Lset132 -Lset133 = Ltmp169-Lfunc_begin0 - .quad Lset133 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset134 = Ltmp183-Lfunc_begin0 - .quad Lset134 -Lset135 = Ltmp184-Lfunc_begin0 - .quad Lset135 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset136 = Ltmp191-Lfunc_begin0 - .quad Lset136 -Lset137 = Ltmp192-Lfunc_begin0 - .quad Lset137 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc28: -Lset138 = Ltmp163-Lfunc_begin0 - .quad Lset138 -Lset139 = Ltmp165-Lfunc_begin0 - .quad Lset139 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset140 = Ltmp165-Lfunc_begin0 - .quad Lset140 -Lset141 = Lfunc_end4-Lfunc_begin0 - .quad Lset141 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc29: -Lset142 = Ltmp169-Lfunc_begin0 - .quad Lset142 -Lset143 = Ltmp185-Lfunc_begin0 - .quad Lset143 - .short 2 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 -Lset144 = Ltmp185-Lfunc_begin0 - .quad Lset144 -Lset145 = Ltmp186-Lfunc_begin0 - .quad Lset145 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset146 = Ltmp187-Lfunc_begin0 - .quad Lset146 -Lset147 = Lfunc_end4-Lfunc_begin0 - .quad Lset147 - .short 2 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc30: -Lset148 = Ltmp173-Lfunc_begin0 - .quad Lset148 -Lset149 = Ltmp175-Lfunc_begin0 - .quad Lset149 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset150 = Ltmp177-Lfunc_begin0 - .quad Lset150 -Lset151 = Ltmp179-Lfunc_begin0 - .quad Lset151 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc31: -Lset152 = Lfunc_begin5-Lfunc_begin0 - .quad Lset152 -Lset153 = Ltmp209-Lfunc_begin0 - .quad Lset153 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset154 = Ltmp209-Lfunc_begin0 - .quad Lset154 -Lset155 = Lfunc_end5-Lfunc_begin0 - .quad Lset155 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc32: -Lset156 = Lfunc_begin5-Lfunc_begin0 - .quad Lset156 -Lset157 = Ltmp208-Lfunc_begin0 - .quad Lset157 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset158 = Ltmp208-Lfunc_begin0 - .quad Lset158 -Lset159 = Ltmp210-Lfunc_begin0 - .quad Lset159 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc33: -Lset160 = Lfunc_begin5-Lfunc_begin0 - .quad Lset160 -Lset161 = Ltmp207-Lfunc_begin0 - .quad Lset161 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset162 = Ltmp207-Lfunc_begin0 - .quad Lset162 -Lset163 = Lfunc_end5-Lfunc_begin0 - .quad Lset163 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc34: -Lset164 = Lfunc_begin5-Lfunc_begin0 - .quad Lset164 -Lset165 = Ltmp206-Lfunc_begin0 - .quad Lset165 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset166 = Ltmp206-Lfunc_begin0 - .quad Lset166 -Lset167 = Ltmp233-Lfunc_begin0 - .quad Lset167 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset168 = Ltmp233-Lfunc_begin0 - .quad Lset168 -Lset169 = Ltmp236-Lfunc_begin0 - .quad Lset169 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset170 = Ltmp238-Lfunc_begin0 - .quad Lset170 -Lset171 = Ltmp240-Lfunc_begin0 - .quad Lset171 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset172 = Ltmp240-Lfunc_begin0 - .quad Lset172 -Lset173 = Ltmp245-Lfunc_begin0 - .quad Lset173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc35: -Lset174 = Lfunc_begin5-Lfunc_begin0 - .quad Lset174 -Lset175 = Ltmp205-Lfunc_begin0 - .quad Lset175 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset176 = Ltmp205-Lfunc_begin0 - .quad Lset176 -Lset177 = Ltmp210-Lfunc_begin0 - .quad Lset177 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset178 = Ltmp226-Lfunc_begin0 - .quad Lset178 -Lset179 = Ltmp227-Lfunc_begin0 - .quad Lset179 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset180 = Ltmp232-Lfunc_begin0 - .quad Lset180 -Lset181 = Ltmp232-Lfunc_begin0 - .quad Lset181 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset182 = Ltmp239-Lfunc_begin0 - .quad Lset182 -Lset183 = Ltmp245-Lfunc_begin0 - .quad Lset183 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc36: -Lset184 = Ltmp210-Lfunc_begin0 - .quad Lset184 -Lset185 = Ltmp228-Lfunc_begin0 - .quad Lset185 - .short 2 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 -Lset186 = Ltmp228-Lfunc_begin0 - .quad Lset186 -Lset187 = Ltmp229-Lfunc_begin0 - .quad Lset187 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset188 = Ltmp230-Lfunc_begin0 - .quad Lset188 -Lset189 = Lfunc_end5-Lfunc_begin0 - .quad Lset189 - .short 2 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc37: -Lset190 = Ltmp213-Lfunc_begin0 - .quad Lset190 -Lset191 = Ltmp219-Lfunc_begin0 - .quad Lset191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset192 = Ltmp230-Lfunc_begin0 - .quad Lset192 -Lset193 = Ltmp237-Lfunc_begin0 - .quad Lset193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc38: -Lset194 = Ltmp218-Lfunc_begin0 - .quad Lset194 -Lset195 = Ltmp220-Lfunc_begin0 - .quad Lset195 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset196 = Ltmp221-Lfunc_begin0 - .quad Lset196 -Lset197 = Ltmp223-Lfunc_begin0 - .quad Lset197 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc39: -Lset198 = Lfunc_begin6-Lfunc_begin0 - .quad Lset198 -Lset199 = Ltmp259-Lfunc_begin0 - .quad Lset199 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset200 = Ltmp259-Lfunc_begin0 - .quad Lset200 -Lset201 = Ltmp271-Lfunc_begin0 - .quad Lset201 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset202 = Ltmp273-Lfunc_begin0 - .quad Lset202 -Lset203 = Ltmp278-Lfunc_begin0 - .quad Lset203 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset204 = Ltmp281-Lfunc_begin0 - .quad Lset204 -Lset205 = Ltmp287-Lfunc_begin0 - .quad Lset205 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset206 = Ltmp290-Lfunc_begin0 - .quad Lset206 -Lset207 = Ltmp293-Lfunc_begin0 - .quad Lset207 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset208 = Ltmp294-Lfunc_begin0 - .quad Lset208 -Lset209 = Lfunc_end6-Lfunc_begin0 - .quad Lset209 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc40: -Lset210 = Lfunc_begin6-Lfunc_begin0 - .quad Lset210 -Lset211 = Ltmp258-Lfunc_begin0 - .quad Lset211 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset212 = Ltmp258-Lfunc_begin0 - .quad Lset212 -Lset213 = Ltmp271-Lfunc_begin0 - .quad Lset213 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset214 = Ltmp273-Lfunc_begin0 - .quad Lset214 -Lset215 = Ltmp278-Lfunc_begin0 - .quad Lset215 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset216 = Ltmp281-Lfunc_begin0 - .quad Lset216 -Lset217 = Ltmp287-Lfunc_begin0 - .quad Lset217 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset218 = Ltmp290-Lfunc_begin0 - .quad Lset218 -Lset219 = Ltmp293-Lfunc_begin0 - .quad Lset219 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc41: -Lset220 = Lfunc_begin6-Lfunc_begin0 - .quad Lset220 -Lset221 = Ltmp257-Lfunc_begin0 - .quad Lset221 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset222 = Ltmp257-Lfunc_begin0 - .quad Lset222 -Lset223 = Ltmp271-Lfunc_begin0 - .quad Lset223 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset224 = Ltmp273-Lfunc_begin0 - .quad Lset224 -Lset225 = Ltmp278-Lfunc_begin0 - .quad Lset225 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset226 = Ltmp281-Lfunc_begin0 - .quad Lset226 -Lset227 = Ltmp287-Lfunc_begin0 - .quad Lset227 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset228 = Ltmp290-Lfunc_begin0 - .quad Lset228 -Lset229 = Ltmp293-Lfunc_begin0 - .quad Lset229 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset230 = Ltmp294-Lfunc_begin0 - .quad Lset230 -Lset231 = Ltmp295-Lfunc_begin0 - .quad Lset231 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc42: -Lset232 = Lfunc_begin6-Lfunc_begin0 - .quad Lset232 -Lset233 = Ltmp256-Lfunc_begin0 - .quad Lset233 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset234 = Ltmp256-Lfunc_begin0 - .quad Lset234 -Lset235 = Ltmp272-Lfunc_begin0 - .quad Lset235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset236 = Ltmp273-Lfunc_begin0 - .quad Lset236 -Lset237 = Ltmp293-Lfunc_begin0 - .quad Lset237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc43: -Lset238 = Ltmp255-Lfunc_begin0 - .quad Lset238 -Lset239 = Ltmp256-Lfunc_begin0 - .quad Lset239 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset240 = Ltmp256-Lfunc_begin0 - .quad Lset240 -Lset241 = Ltmp261-Lfunc_begin0 - .quad Lset241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc44: -Lset242 = Ltmp255-Lfunc_begin0 - .quad Lset242 -Lset243 = Ltmp256-Lfunc_begin0 - .quad Lset243 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset244 = Ltmp256-Lfunc_begin0 - .quad Lset244 -Lset245 = Ltmp261-Lfunc_begin0 - .quad Lset245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc45: -Lset246 = Ltmp255-Lfunc_begin0 - .quad Lset246 -Lset247 = Ltmp256-Lfunc_begin0 - .quad Lset247 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset248 = Ltmp256-Lfunc_begin0 - .quad Lset248 -Lset249 = Ltmp261-Lfunc_begin0 - .quad Lset249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc46: -Lset250 = Ltmp263-Lfunc_begin0 - .quad Lset250 -Lset251 = Ltmp266-Lfunc_begin0 - .quad Lset251 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset252 = Ltmp290-Lfunc_begin0 - .quad Lset252 -Lset253 = Ltmp292-Lfunc_begin0 - .quad Lset253 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc47: -Lset254 = Ltmp264-Lfunc_begin0 - .quad Lset254 -Lset255 = Ltmp268-Lfunc_begin0 - .quad Lset255 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset256 = Ltmp290-Lfunc_begin0 - .quad Lset256 -Lset257 = Ltmp292-Lfunc_begin0 - .quad Lset257 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc48: -Lset258 = Ltmp267-Lfunc_begin0 - .quad Lset258 -Lset259 = Ltmp268-Lfunc_begin0 - .quad Lset259 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset260 = Ltmp269-Lfunc_begin0 - .quad Lset260 -Lset261 = Ltmp269-Lfunc_begin0 - .quad Lset261 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset262 = Ltmp291-Lfunc_begin0 - .quad Lset262 -Lset263 = Ltmp292-Lfunc_begin0 - .quad Lset263 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc49: -Lset264 = Ltmp276-Lfunc_begin0 - .quad Lset264 -Lset265 = Ltmp279-Lfunc_begin0 - .quad Lset265 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc50: -Lset266 = Ltmp277-Lfunc_begin0 - .quad Lset266 -Lset267 = Ltmp280-Lfunc_begin0 - .quad Lset267 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc51: -Lset268 = Ltmp279-Lfunc_begin0 - .quad Lset268 -Lset269 = Ltmp281-Lfunc_begin0 - .quad Lset269 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc52: -Lset270 = Ltmp285-Lfunc_begin0 - .quad Lset270 -Lset271 = Ltmp288-Lfunc_begin0 - .quad Lset271 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc53: -Lset272 = Ltmp286-Lfunc_begin0 - .quad Lset272 -Lset273 = Ltmp289-Lfunc_begin0 - .quad Lset273 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc54: -Lset274 = Ltmp288-Lfunc_begin0 - .quad Lset274 -Lset275 = Ltmp290-Lfunc_begin0 - .quad Lset275 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc55: -Lset276 = Lfunc_begin7-Lfunc_begin0 - .quad Lset276 -Lset277 = Ltmp308-Lfunc_begin0 - .quad Lset277 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset278 = Ltmp308-Lfunc_begin0 - .quad Lset278 -Lset279 = Ltmp318-Lfunc_begin0 - .quad Lset279 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset280 = Ltmp319-Lfunc_begin0 - .quad Lset280 -Lset281 = Ltmp325-Lfunc_begin0 - .quad Lset281 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset282 = Ltmp327-Lfunc_begin0 - .quad Lset282 -Lset283 = Ltmp328-Lfunc_begin0 - .quad Lset283 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset284 = Ltmp329-Lfunc_begin0 - .quad Lset284 -Lset285 = Ltmp345-Lfunc_begin0 - .quad Lset285 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset286 = Ltmp348-Lfunc_begin0 - .quad Lset286 -Lset287 = Ltmp352-Lfunc_begin0 - .quad Lset287 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset288 = Ltmp354-Lfunc_begin0 - .quad Lset288 -Lset289 = Ltmp373-Lfunc_begin0 - .quad Lset289 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset290 = Ltmp374-Lfunc_begin0 - .quad Lset290 -Lset291 = Ltmp382-Lfunc_begin0 - .quad Lset291 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset292 = Ltmp384-Lfunc_begin0 - .quad Lset292 -Lset293 = Ltmp389-Lfunc_begin0 - .quad Lset293 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset294 = Ltmp390-Lfunc_begin0 - .quad Lset294 -Lset295 = Ltmp400-Lfunc_begin0 - .quad Lset295 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset296 = Ltmp403-Lfunc_begin0 - .quad Lset296 -Lset297 = Ltmp405-Lfunc_begin0 - .quad Lset297 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset298 = Ltmp406-Lfunc_begin0 - .quad Lset298 -Lset299 = Lfunc_end7-Lfunc_begin0 - .quad Lset299 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc56: -Lset300 = Lfunc_begin7-Lfunc_begin0 - .quad Lset300 -Lset301 = Ltmp307-Lfunc_begin0 - .quad Lset301 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset302 = Ltmp307-Lfunc_begin0 - .quad Lset302 -Lset303 = Ltmp318-Lfunc_begin0 - .quad Lset303 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset304 = Ltmp319-Lfunc_begin0 - .quad Lset304 -Lset305 = Ltmp323-Lfunc_begin0 - .quad Lset305 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset306 = Ltmp327-Lfunc_begin0 - .quad Lset306 -Lset307 = Ltmp328-Lfunc_begin0 - .quad Lset307 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset308 = Ltmp329-Lfunc_begin0 - .quad Lset308 -Lset309 = Ltmp332-Lfunc_begin0 - .quad Lset309 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset310 = Ltmp338-Lfunc_begin0 - .quad Lset310 -Lset311 = Ltmp341-Lfunc_begin0 - .quad Lset311 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset312 = Ltmp348-Lfunc_begin0 - .quad Lset312 -Lset313 = Ltmp350-Lfunc_begin0 - .quad Lset313 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc57: -Lset314 = Lfunc_begin7-Lfunc_begin0 - .quad Lset314 -Lset315 = Ltmp306-Lfunc_begin0 - .quad Lset315 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset316 = Ltmp306-Lfunc_begin0 - .quad Lset316 -Lset317 = Ltmp318-Lfunc_begin0 - .quad Lset317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset318 = Ltmp319-Lfunc_begin0 - .quad Lset318 -Lset319 = Ltmp321-Lfunc_begin0 - .quad Lset319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset320 = Ltmp327-Lfunc_begin0 - .quad Lset320 -Lset321 = Ltmp328-Lfunc_begin0 - .quad Lset321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset322 = Ltmp329-Lfunc_begin0 - .quad Lset322 -Lset323 = Ltmp337-Lfunc_begin0 - .quad Lset323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset324 = Ltmp338-Lfunc_begin0 - .quad Lset324 -Lset325 = Ltmp345-Lfunc_begin0 - .quad Lset325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset326 = Ltmp348-Lfunc_begin0 - .quad Lset326 -Lset327 = Ltmp352-Lfunc_begin0 - .quad Lset327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset328 = Ltmp354-Lfunc_begin0 - .quad Lset328 -Lset329 = Ltmp371-Lfunc_begin0 - .quad Lset329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset330 = Ltmp374-Lfunc_begin0 - .quad Lset330 -Lset331 = Ltmp382-Lfunc_begin0 - .quad Lset331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset332 = Ltmp390-Lfunc_begin0 - .quad Lset332 -Lset333 = Ltmp400-Lfunc_begin0 - .quad Lset333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset334 = Ltmp406-Lfunc_begin0 - .quad Lset334 -Lset335 = Ltmp407-Lfunc_begin0 - .quad Lset335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc58: -Lset336 = Lfunc_begin7-Lfunc_begin0 - .quad Lset336 -Lset337 = Ltmp305-Lfunc_begin0 - .quad Lset337 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset338 = Ltmp305-Lfunc_begin0 - .quad Lset338 -Lset339 = Ltmp318-Lfunc_begin0 - .quad Lset339 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset340 = Ltmp319-Lfunc_begin0 - .quad Lset340 -Lset341 = Ltmp326-Lfunc_begin0 - .quad Lset341 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset342 = Ltmp327-Lfunc_begin0 - .quad Lset342 -Lset343 = Ltmp328-Lfunc_begin0 - .quad Lset343 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset344 = Ltmp329-Lfunc_begin0 - .quad Lset344 -Lset345 = Ltmp358-Lfunc_begin0 - .quad Lset345 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset346 = Ltmp359-Lfunc_begin0 - .quad Lset346 -Lset347 = Ltmp360-Lfunc_begin0 - .quad Lset347 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset348 = Ltmp371-Lfunc_begin0 - .quad Lset348 -Lset349 = Ltmp373-Lfunc_begin0 - .quad Lset349 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset350 = Ltmp385-Lfunc_begin0 - .quad Lset350 -Lset351 = Ltmp388-Lfunc_begin0 - .quad Lset351 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc59: -Lset352 = Ltmp312-Lfunc_begin0 - .quad Lset352 -Lset353 = Ltmp315-Lfunc_begin0 - .quad Lset353 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset354 = Ltmp348-Lfunc_begin0 - .quad Lset354 -Lset355 = Ltmp349-Lfunc_begin0 - .quad Lset355 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc60: -Lset356 = Ltmp313-Lfunc_begin0 - .quad Lset356 -Lset357 = Ltmp317-Lfunc_begin0 - .quad Lset357 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset358 = Ltmp348-Lfunc_begin0 - .quad Lset358 -Lset359 = Ltmp349-Lfunc_begin0 - .quad Lset359 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc61: -Lset360 = Ltmp316-Lfunc_begin0 - .quad Lset360 -Lset361 = Ltmp317-Lfunc_begin0 - .quad Lset361 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset362 = Ltmp319-Lfunc_begin0 - .quad Lset362 -Lset363 = Ltmp319-Lfunc_begin0 - .quad Lset363 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc62: -Lset364 = Ltmp332-Lfunc_begin0 - .quad Lset364 -Lset365 = Ltmp334-Lfunc_begin0 - .quad Lset365 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset366 = Ltmp350-Lfunc_begin0 - .quad Lset366 -Lset367 = Ltmp354-Lfunc_begin0 - .quad Lset367 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset368 = Ltmp371-Lfunc_begin0 - .quad Lset368 -Lset369 = Ltmp373-Lfunc_begin0 - .quad Lset369 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc63: -Lset370 = Ltmp336-Lfunc_begin0 - .quad Lset370 -Lset371 = Ltmp338-Lfunc_begin0 - .quad Lset371 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset372 = Ltmp345-Lfunc_begin0 - .quad Lset372 -Lset373 = Ltmp347-Lfunc_begin0 - .quad Lset373 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc64: -Lset374 = Ltmp341-Lfunc_begin0 - .quad Lset374 -Lset375 = Ltmp345-Lfunc_begin0 - .quad Lset375 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset376 = Ltmp385-Lfunc_begin0 - .quad Lset376 -Lset377 = Ltmp387-Lfunc_begin0 - .quad Lset377 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc65: -Lset378 = Ltmp344-Lfunc_begin0 - .quad Lset378 -Lset379 = Ltmp345-Lfunc_begin0 - .quad Lset379 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset380 = Ltmp385-Lfunc_begin0 - .quad Lset380 -Lset381 = Ltmp390-Lfunc_begin0 - .quad Lset381 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc66: -Lset382 = Ltmp346-Lfunc_begin0 - .quad Lset382 -Lset383 = Ltmp348-Lfunc_begin0 - .quad Lset383 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc67: -Lset384 = Ltmp351-Lfunc_begin0 - .quad Lset384 -Lset385 = Ltmp354-Lfunc_begin0 - .quad Lset385 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset386 = Ltmp371-Lfunc_begin0 - .quad Lset386 -Lset387 = Ltmp372-Lfunc_begin0 - .quad Lset387 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc68: -Lset388 = Ltmp353-Lfunc_begin0 - .quad Lset388 -Lset389 = Ltmp354-Lfunc_begin0 - .quad Lset389 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc69: -Lset390 = Ltmp356-Lfunc_begin0 - .quad Lset390 -Lset391 = Ltmp357-Lfunc_begin0 - .quad Lset391 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc70: -Lset392 = Ltmp356-Lfunc_begin0 - .quad Lset392 -Lset393 = Ltmp358-Lfunc_begin0 - .quad Lset393 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc71: -Lset394 = Ltmp360-Lfunc_begin0 - .quad Lset394 -Lset395 = Ltmp362-Lfunc_begin0 - .quad Lset395 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset396 = Ltmp366-Lfunc_begin0 - .quad Lset396 -Lset397 = Ltmp371-Lfunc_begin0 - .quad Lset397 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc72: -Lset398 = Ltmp381-Lfunc_begin0 - .quad Lset398 -Lset399 = Ltmp383-Lfunc_begin0 - .quad Lset399 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset400 = Ltmp384-Lfunc_begin0 - .quad Lset400 -Lset401 = Ltmp385-Lfunc_begin0 - .quad Lset401 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc73: -Lset402 = Ltmp383-Lfunc_begin0 - .quad Lset402 -Lset403 = Ltmp384-Lfunc_begin0 - .quad Lset403 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc74: -Lset404 = Ltmp386-Lfunc_begin0 - .quad Lset404 -Lset405 = Ltmp388-Lfunc_begin0 - .quad Lset405 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc75: -Lset406 = Ltmp392-Lfunc_begin0 - .quad Lset406 -Lset407 = Ltmp393-Lfunc_begin0 - .quad Lset407 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset408 = Ltmp393-Lfunc_begin0 - .quad Lset408 -Lset409 = Lfunc_end7-Lfunc_begin0 - .quad Lset409 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc76: -Lset410 = Ltmp394-Lfunc_begin0 - .quad Lset410 -Lset411 = Ltmp396-Lfunc_begin0 - .quad Lset411 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc77: -Lset412 = Ltmp399-Lfunc_begin0 - .quad Lset412 -Lset413 = Ltmp402-Lfunc_begin0 - .quad Lset413 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset414 = Ltmp403-Lfunc_begin0 - .quad Lset414 -Lset415 = Ltmp404-Lfunc_begin0 - .quad Lset415 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc78: -Lset416 = Ltmp401-Lfunc_begin0 - .quad Lset416 -Lset417 = Ltmp403-Lfunc_begin0 - .quad Lset417 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc79: -Lset418 = Lfunc_begin8-Lfunc_begin0 - .quad Lset418 -Lset419 = Ltmp418-Lfunc_begin0 - .quad Lset419 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset420 = Ltmp418-Lfunc_begin0 - .quad Lset420 -Lset421 = Ltmp423-Lfunc_begin0 - .quad Lset421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset422 = Ltmp428-Lfunc_begin0 - .quad Lset422 -Lset423 = Ltmp430-Lfunc_begin0 - .quad Lset423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset424 = Ltmp434-Lfunc_begin0 - .quad Lset424 -Lset425 = Ltmp437-Lfunc_begin0 - .quad Lset425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc80: -Lset426 = Lfunc_begin8-Lfunc_begin0 - .quad Lset426 -Lset427 = Ltmp417-Lfunc_begin0 - .quad Lset427 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset428 = Ltmp417-Lfunc_begin0 - .quad Lset428 -Lset429 = Ltmp427-Lfunc_begin0 - .quad Lset429 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset430 = Ltmp428-Lfunc_begin0 - .quad Lset430 -Lset431 = Ltmp433-Lfunc_begin0 - .quad Lset431 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset432 = Ltmp434-Lfunc_begin0 - .quad Lset432 -Lset433 = Ltmp437-Lfunc_begin0 - .quad Lset433 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset434 = Ltmp452-Lfunc_begin0 - .quad Lset434 -Lset435 = Ltmp454-Lfunc_begin0 - .quad Lset435 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc81: -Lset436 = Lfunc_begin8-Lfunc_begin0 - .quad Lset436 -Lset437 = Ltmp416-Lfunc_begin0 - .quad Lset437 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset438 = Ltmp416-Lfunc_begin0 - .quad Lset438 -Lset439 = Ltmp433-Lfunc_begin0 - .quad Lset439 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset440 = Ltmp434-Lfunc_begin0 - .quad Lset440 -Lset441 = Ltmp437-Lfunc_begin0 - .quad Lset441 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset442 = Ltmp452-Lfunc_begin0 - .quad Lset442 -Lset443 = Ltmp458-Lfunc_begin0 - .quad Lset443 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset444 = Ltmp459-Lfunc_begin0 - .quad Lset444 -Lset445 = Ltmp462-Lfunc_begin0 - .quad Lset445 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc82: -Lset446 = Ltmp426-Lfunc_begin0 - .quad Lset446 -Lset447 = Ltmp428-Lfunc_begin0 - .quad Lset447 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset448 = Ltmp456-Lfunc_begin0 - .quad Lset448 -Lset449 = Ltmp459-Lfunc_begin0 - .quad Lset449 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset450 = Ltmp466-Lfunc_begin0 - .quad Lset450 -Lset451 = Ltmp471-Lfunc_begin0 - .quad Lset451 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc83: -Lset452 = Ltmp426-Lfunc_begin0 - .quad Lset452 -Lset453 = Ltmp427-Lfunc_begin0 - .quad Lset453 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset454 = Ltmp456-Lfunc_begin0 - .quad Lset454 -Lset455 = Ltmp459-Lfunc_begin0 - .quad Lset455 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset456 = Ltmp466-Lfunc_begin0 - .quad Lset456 -Lset457 = Ltmp471-Lfunc_begin0 - .quad Lset457 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc84: -Lset458 = Ltmp431-Lfunc_begin0 - .quad Lset458 -Lset459 = Ltmp434-Lfunc_begin0 - .quad Lset459 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset460 = Ltmp437-Lfunc_begin0 - .quad Lset460 -Lset461 = Ltmp439-Lfunc_begin0 - .quad Lset461 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc85: -Lset462 = Ltmp432-Lfunc_begin0 - .quad Lset462 -Lset463 = Ltmp434-Lfunc_begin0 - .quad Lset463 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset464 = Ltmp437-Lfunc_begin0 - .quad Lset464 -Lset465 = Ltmp440-Lfunc_begin0 - .quad Lset465 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset466 = Ltmp441-Lfunc_begin0 - .quad Lset466 -Lset467 = Ltmp442-Lfunc_begin0 - .quad Lset467 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc86: -Lset468 = Ltmp435-Lfunc_begin0 - .quad Lset468 -Lset469 = Ltmp436-Lfunc_begin0 - .quad Lset469 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc87: -Lset470 = Ltmp442-Lfunc_begin0 - .quad Lset470 -Lset471 = Ltmp443-Lfunc_begin0 - .quad Lset471 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset472 = Ltmp443-Lfunc_begin0 - .quad Lset472 -Lset473 = Ltmp447-Lfunc_begin0 - .quad Lset473 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset474 = Ltmp450-Lfunc_begin0 - .quad Lset474 -Lset475 = Ltmp452-Lfunc_begin0 - .quad Lset475 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset476 = Ltmp463-Lfunc_begin0 - .quad Lset476 -Lset477 = Ltmp464-Lfunc_begin0 - .quad Lset477 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc88: -Lset478 = Ltmp444-Lfunc_begin0 - .quad Lset478 -Lset479 = Ltmp447-Lfunc_begin0 - .quad Lset479 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc89: -Lset480 = Ltmp445-Lfunc_begin0 - .quad Lset480 -Lset481 = Ltmp447-Lfunc_begin0 - .quad Lset481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc90: -Lset482 = Ltmp446-Lfunc_begin0 - .quad Lset482 -Lset483 = Ltmp447-Lfunc_begin0 - .quad Lset483 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc91: -Lset484 = Ltmp448-Lfunc_begin0 - .quad Lset484 -Lset485 = Ltmp449-Lfunc_begin0 - .quad Lset485 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc92: -Lset486 = Ltmp453-Lfunc_begin0 - .quad Lset486 -Lset487 = Ltmp456-Lfunc_begin0 - .quad Lset487 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset488 = Ltmp459-Lfunc_begin0 - .quad Lset488 -Lset489 = Ltmp463-Lfunc_begin0 - .quad Lset489 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset490 = Ltmp473-Lfunc_begin0 - .quad Lset490 -Lset491 = Ltmp476-Lfunc_begin0 - .quad Lset491 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset492 = Ltmp478-Lfunc_begin0 - .quad Lset492 -Lset493 = Ltmp479-Lfunc_begin0 - .quad Lset493 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc93: -Lset494 = Ltmp453-Lfunc_begin0 - .quad Lset494 -Lset495 = Ltmp456-Lfunc_begin0 - .quad Lset495 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset496 = Ltmp459-Lfunc_begin0 - .quad Lset496 -Lset497 = Ltmp463-Lfunc_begin0 - .quad Lset497 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset498 = Ltmp473-Lfunc_begin0 - .quad Lset498 -Lset499 = Ltmp476-Lfunc_begin0 - .quad Lset499 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset500 = Ltmp478-Lfunc_begin0 - .quad Lset500 -Lset501 = Lfunc_end8-Lfunc_begin0 - .quad Lset501 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc94: -Lset502 = Ltmp453-Lfunc_begin0 - .quad Lset502 -Lset503 = Ltmp454-Lfunc_begin0 - .quad Lset503 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc95: -Lset504 = Ltmp457-Lfunc_begin0 - .quad Lset504 -Lset505 = Ltmp459-Lfunc_begin0 - .quad Lset505 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset506 = Ltmp466-Lfunc_begin0 - .quad Lset506 -Lset507 = Ltmp471-Lfunc_begin0 - .quad Lset507 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc96: -Lset508 = Ltmp461-Lfunc_begin0 - .quad Lset508 -Lset509 = Ltmp463-Lfunc_begin0 - .quad Lset509 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset510 = Ltmp473-Lfunc_begin0 - .quad Lset510 -Lset511 = Ltmp476-Lfunc_begin0 - .quad Lset511 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset512 = Ltmp478-Lfunc_begin0 - .quad Lset512 -Lset513 = Lfunc_end8-Lfunc_begin0 - .quad Lset513 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc97: -Lset514 = Ltmp461-Lfunc_begin0 - .quad Lset514 -Lset515 = Ltmp463-Lfunc_begin0 - .quad Lset515 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset516 = Ltmp473-Lfunc_begin0 - .quad Lset516 -Lset517 = Ltmp476-Lfunc_begin0 - .quad Lset517 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset518 = Ltmp478-Lfunc_begin0 - .quad Lset518 -Lset519 = Ltmp479-Lfunc_begin0 - .quad Lset519 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc98: -Lset520 = Lfunc_begin9-Lfunc_begin0 - .quad Lset520 -Lset521 = Ltmp491-Lfunc_begin0 - .quad Lset521 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset522 = Ltmp491-Lfunc_begin0 - .quad Lset522 -Lset523 = Ltmp496-Lfunc_begin0 - .quad Lset523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset524 = Ltmp502-Lfunc_begin0 - .quad Lset524 -Lset525 = Ltmp504-Lfunc_begin0 - .quad Lset525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset526 = Ltmp508-Lfunc_begin0 - .quad Lset526 -Lset527 = Ltmp512-Lfunc_begin0 - .quad Lset527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset528 = Ltmp557-Lfunc_begin0 - .quad Lset528 -Lset529 = Lfunc_end9-Lfunc_begin0 - .quad Lset529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc99: -Lset530 = Lfunc_begin9-Lfunc_begin0 - .quad Lset530 -Lset531 = Ltmp490-Lfunc_begin0 - .quad Lset531 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset532 = Ltmp490-Lfunc_begin0 - .quad Lset532 -Lset533 = Ltmp500-Lfunc_begin0 - .quad Lset533 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset534 = Ltmp502-Lfunc_begin0 - .quad Lset534 -Lset535 = Ltmp507-Lfunc_begin0 - .quad Lset535 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset536 = Ltmp508-Lfunc_begin0 - .quad Lset536 -Lset537 = Ltmp512-Lfunc_begin0 - .quad Lset537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset538 = Ltmp513-Lfunc_begin0 - .quad Lset538 -Lset539 = Ltmp515-Lfunc_begin0 - .quad Lset539 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset540 = Ltmp557-Lfunc_begin0 - .quad Lset540 -Lset541 = Lfunc_end9-Lfunc_begin0 - .quad Lset541 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc100: -Lset542 = Lfunc_begin9-Lfunc_begin0 - .quad Lset542 -Lset543 = Ltmp489-Lfunc_begin0 - .quad Lset543 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset544 = Ltmp489-Lfunc_begin0 - .quad Lset544 -Lset545 = Ltmp507-Lfunc_begin0 - .quad Lset545 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset546 = Ltmp508-Lfunc_begin0 - .quad Lset546 -Lset547 = Ltmp512-Lfunc_begin0 - .quad Lset547 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset548 = Ltmp513-Lfunc_begin0 - .quad Lset548 -Lset549 = Ltmp517-Lfunc_begin0 - .quad Lset549 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset550 = Ltmp532-Lfunc_begin0 - .quad Lset550 -Lset551 = Ltmp534-Lfunc_begin0 - .quad Lset551 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset552 = Ltmp535-Lfunc_begin0 - .quad Lset552 -Lset553 = Ltmp538-Lfunc_begin0 - .quad Lset553 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset554 = Ltmp557-Lfunc_begin0 - .quad Lset554 -Lset555 = Lfunc_end9-Lfunc_begin0 - .quad Lset555 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc101: -Lset556 = Ltmp499-Lfunc_begin0 - .quad Lset556 -Lset557 = Ltmp502-Lfunc_begin0 - .quad Lset557 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset558 = Ltmp532-Lfunc_begin0 - .quad Lset558 -Lset559 = Ltmp535-Lfunc_begin0 - .quad Lset559 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset560 = Ltmp543-Lfunc_begin0 - .quad Lset560 -Lset561 = Ltmp546-Lfunc_begin0 - .quad Lset561 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset562 = Ltmp552-Lfunc_begin0 - .quad Lset562 -Lset563 = Ltmp554-Lfunc_begin0 - .quad Lset563 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc102: -Lset564 = Ltmp499-Lfunc_begin0 - .quad Lset564 -Lset565 = Ltmp500-Lfunc_begin0 - .quad Lset565 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset566 = Ltmp532-Lfunc_begin0 - .quad Lset566 -Lset567 = Ltmp535-Lfunc_begin0 - .quad Lset567 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset568 = Ltmp543-Lfunc_begin0 - .quad Lset568 -Lset569 = Ltmp546-Lfunc_begin0 - .quad Lset569 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset570 = Ltmp552-Lfunc_begin0 - .quad Lset570 -Lset571 = Ltmp554-Lfunc_begin0 - .quad Lset571 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc103: -Lset572 = Ltmp505-Lfunc_begin0 - .quad Lset572 -Lset573 = Ltmp508-Lfunc_begin0 - .quad Lset573 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset574 = Ltmp517-Lfunc_begin0 - .quad Lset574 -Lset575 = Ltmp519-Lfunc_begin0 - .quad Lset575 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc104: -Lset576 = Ltmp506-Lfunc_begin0 - .quad Lset576 -Lset577 = Ltmp508-Lfunc_begin0 - .quad Lset577 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset578 = Ltmp517-Lfunc_begin0 - .quad Lset578 -Lset579 = Ltmp520-Lfunc_begin0 - .quad Lset579 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset580 = Ltmp521-Lfunc_begin0 - .quad Lset580 -Lset581 = Ltmp522-Lfunc_begin0 - .quad Lset581 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc105: -Lset582 = Ltmp509-Lfunc_begin0 - .quad Lset582 -Lset583 = Ltmp510-Lfunc_begin0 - .quad Lset583 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset584 = Ltmp511-Lfunc_begin0 - .quad Lset584 -Lset585 = Ltmp512-Lfunc_begin0 - .quad Lset585 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc106: -Lset586 = Ltmp514-Lfunc_begin0 - .quad Lset586 -Lset587 = Ltmp517-Lfunc_begin0 - .quad Lset587 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset588 = Ltmp535-Lfunc_begin0 - .quad Lset588 -Lset589 = Ltmp539-Lfunc_begin0 - .quad Lset589 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset590 = Ltmp548-Lfunc_begin0 - .quad Lset590 -Lset591 = Ltmp552-Lfunc_begin0 - .quad Lset591 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc107: -Lset592 = Ltmp514-Lfunc_begin0 - .quad Lset592 -Lset593 = Ltmp517-Lfunc_begin0 - .quad Lset593 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset594 = Ltmp535-Lfunc_begin0 - .quad Lset594 -Lset595 = Ltmp539-Lfunc_begin0 - .quad Lset595 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset596 = Ltmp548-Lfunc_begin0 - .quad Lset596 -Lset597 = Ltmp552-Lfunc_begin0 - .quad Lset597 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset598 = Ltmp555-Lfunc_begin0 - .quad Lset598 -Lset599 = Ltmp557-Lfunc_begin0 - .quad Lset599 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc108: -Lset600 = Ltmp514-Lfunc_begin0 - .quad Lset600 -Lset601 = Ltmp515-Lfunc_begin0 - .quad Lset601 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc109: -Lset602 = Ltmp522-Lfunc_begin0 - .quad Lset602 -Lset603 = Ltmp523-Lfunc_begin0 - .quad Lset603 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset604 = Ltmp523-Lfunc_begin0 - .quad Lset604 -Lset605 = Ltmp527-Lfunc_begin0 - .quad Lset605 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset606 = Ltmp530-Lfunc_begin0 - .quad Lset606 -Lset607 = Ltmp532-Lfunc_begin0 - .quad Lset607 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset608 = Ltmp539-Lfunc_begin0 - .quad Lset608 -Lset609 = Ltmp540-Lfunc_begin0 - .quad Lset609 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc110: -Lset610 = Ltmp524-Lfunc_begin0 - .quad Lset610 -Lset611 = Ltmp527-Lfunc_begin0 - .quad Lset611 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc111: -Lset612 = Ltmp525-Lfunc_begin0 - .quad Lset612 -Lset613 = Ltmp527-Lfunc_begin0 - .quad Lset613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc112: -Lset614 = Ltmp526-Lfunc_begin0 - .quad Lset614 -Lset615 = Ltmp527-Lfunc_begin0 - .quad Lset615 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc113: -Lset616 = Ltmp528-Lfunc_begin0 - .quad Lset616 -Lset617 = Ltmp529-Lfunc_begin0 - .quad Lset617 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc114: -Lset618 = Ltmp533-Lfunc_begin0 - .quad Lset618 -Lset619 = Ltmp535-Lfunc_begin0 - .quad Lset619 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset620 = Ltmp543-Lfunc_begin0 - .quad Lset620 -Lset621 = Ltmp546-Lfunc_begin0 - .quad Lset621 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset622 = Ltmp552-Lfunc_begin0 - .quad Lset622 -Lset623 = Ltmp554-Lfunc_begin0 - .quad Lset623 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc115: -Lset624 = Ltmp537-Lfunc_begin0 - .quad Lset624 -Lset625 = Ltmp539-Lfunc_begin0 - .quad Lset625 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset626 = Ltmp548-Lfunc_begin0 - .quad Lset626 -Lset627 = Ltmp552-Lfunc_begin0 - .quad Lset627 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset628 = Ltmp555-Lfunc_begin0 - .quad Lset628 -Lset629 = Ltmp557-Lfunc_begin0 - .quad Lset629 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc116: -Lset630 = Ltmp537-Lfunc_begin0 - .quad Lset630 -Lset631 = Ltmp539-Lfunc_begin0 - .quad Lset631 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset632 = Ltmp548-Lfunc_begin0 - .quad Lset632 -Lset633 = Ltmp552-Lfunc_begin0 - .quad Lset633 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc117: -Lset634 = Lfunc_begin10-Lfunc_begin0 - .quad Lset634 -Lset635 = Ltmp568-Lfunc_begin0 - .quad Lset635 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset636 = Ltmp568-Lfunc_begin0 - .quad Lset636 -Lset637 = Ltmp571-Lfunc_begin0 - .quad Lset637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset638 = Ltmp584-Lfunc_begin0 - .quad Lset638 -Lset639 = Ltmp602-Lfunc_begin0 - .quad Lset639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset640 = Ltmp603-Lfunc_begin0 - .quad Lset640 -Lset641 = Ltmp607-Lfunc_begin0 - .quad Lset641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc118: -Lset642 = Lfunc_begin10-Lfunc_begin0 - .quad Lset642 -Lset643 = Ltmp567-Lfunc_begin0 - .quad Lset643 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset644 = Ltmp567-Lfunc_begin0 - .quad Lset644 -Lset645 = Ltmp576-Lfunc_begin0 - .quad Lset645 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset646 = Ltmp579-Lfunc_begin0 - .quad Lset646 -Lset647 = Ltmp581-Lfunc_begin0 - .quad Lset647 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset648 = Ltmp583-Lfunc_begin0 - .quad Lset648 -Lset649 = Ltmp602-Lfunc_begin0 - .quad Lset649 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset650 = Ltmp603-Lfunc_begin0 - .quad Lset650 -Lset651 = Ltmp607-Lfunc_begin0 - .quad Lset651 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset652 = Ltmp608-Lfunc_begin0 - .quad Lset652 -Lset653 = Ltmp609-Lfunc_begin0 - .quad Lset653 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset654 = Ltmp611-Lfunc_begin0 - .quad Lset654 -Lset655 = Ltmp612-Lfunc_begin0 - .quad Lset655 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc119: -Lset656 = Lfunc_begin10-Lfunc_begin0 - .quad Lset656 -Lset657 = Ltmp566-Lfunc_begin0 - .quad Lset657 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset658 = Ltmp566-Lfunc_begin0 - .quad Lset658 -Lset659 = Ltmp577-Lfunc_begin0 - .quad Lset659 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset660 = Ltmp579-Lfunc_begin0 - .quad Lset660 -Lset661 = Ltmp581-Lfunc_begin0 - .quad Lset661 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset662 = Ltmp583-Lfunc_begin0 - .quad Lset662 -Lset663 = Ltmp602-Lfunc_begin0 - .quad Lset663 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset664 = Ltmp603-Lfunc_begin0 - .quad Lset664 -Lset665 = Ltmp607-Lfunc_begin0 - .quad Lset665 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset666 = Ltmp608-Lfunc_begin0 - .quad Lset666 -Lset667 = Ltmp610-Lfunc_begin0 - .quad Lset667 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset668 = Ltmp611-Lfunc_begin0 - .quad Lset668 -Lset669 = Ltmp624-Lfunc_begin0 - .quad Lset669 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset670 = Ltmp634-Lfunc_begin0 - .quad Lset670 -Lset671 = Ltmp643-Lfunc_begin0 - .quad Lset671 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc120: -Lset672 = Ltmp575-Lfunc_begin0 - .quad Lset672 -Lset673 = Ltmp576-Lfunc_begin0 - .quad Lset673 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc121: -Lset674 = Ltmp576-Lfunc_begin0 - .quad Lset674 -Lset675 = Ltmp576-Lfunc_begin0 - .quad Lset675 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc122: -Lset676 = Ltmp590-Lfunc_begin0 - .quad Lset676 -Lset677 = Ltmp591-Lfunc_begin0 - .quad Lset677 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset678 = Ltmp599-Lfunc_begin0 - .quad Lset678 -Lset679 = Ltmp600-Lfunc_begin0 - .quad Lset679 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc123: -Lset680 = Ltmp612-Lfunc_begin0 - .quad Lset680 -Lset681 = Ltmp614-Lfunc_begin0 - .quad Lset681 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset682 = Ltmp618-Lfunc_begin0 - .quad Lset682 -Lset683 = Ltmp623-Lfunc_begin0 - .quad Lset683 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc124: -Lset684 = Ltmp624-Lfunc_begin0 - .quad Lset684 -Lset685 = Ltmp626-Lfunc_begin0 - .quad Lset685 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -Lset686 = Ltmp628-Lfunc_begin0 - .quad Lset686 -Lset687 = Ltmp633-Lfunc_begin0 - .quad Lset687 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc125: -Lset688 = Ltmp636-Lfunc_begin0 - .quad Lset688 -Lset689 = Ltmp637-Lfunc_begin0 - .quad Lset689 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset690 = Ltmp637-Lfunc_begin0 - .quad Lset690 -Lset691 = Lfunc_end10-Lfunc_begin0 - .quad Lset691 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc126: -Lset692 = Ltmp638-Lfunc_begin0 - .quad Lset692 -Lset693 = Ltmp640-Lfunc_begin0 - .quad Lset693 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc127: -Lset694 = Ltmp644-Lfunc_begin0 - .quad Lset694 -Lset695 = Ltmp645-Lfunc_begin0 - .quad Lset695 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset696 = Ltmp645-Lfunc_begin0 - .quad Lset696 -Lset697 = Lfunc_end10-Lfunc_begin0 - .quad Lset697 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc128: -Lset698 = Ltmp646-Lfunc_begin0 - .quad Lset698 -Lset699 = Ltmp648-Lfunc_begin0 - .quad Lset699 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc129: -Lset700 = Lfunc_begin11-Lfunc_begin0 - .quad Lset700 -Lset701 = Ltmp660-Lfunc_begin0 - .quad Lset701 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset702 = Ltmp660-Lfunc_begin0 - .quad Lset702 -Lset703 = Ltmp681-Lfunc_begin0 - .quad Lset703 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset704 = Ltmp681-Lfunc_begin0 - .quad Lset704 -Lset705 = Ltmp688-Lfunc_begin0 - .quad Lset705 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset706 = Ltmp688-Lfunc_begin0 - .quad Lset706 -Lset707 = Ltmp689-Lfunc_begin0 - .quad Lset707 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset708 = Ltmp689-Lfunc_begin0 - .quad Lset708 -Lset709 = Ltmp694-Lfunc_begin0 - .quad Lset709 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset710 = Ltmp694-Lfunc_begin0 - .quad Lset710 -Lset711 = Ltmp697-Lfunc_begin0 - .quad Lset711 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset712 = Ltmp697-Lfunc_begin0 - .quad Lset712 -Lset713 = Ltmp705-Lfunc_begin0 - .quad Lset713 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset714 = Ltmp705-Lfunc_begin0 - .quad Lset714 -Lset715 = Ltmp717-Lfunc_begin0 - .quad Lset715 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset716 = Ltmp718-Lfunc_begin0 - .quad Lset716 -Lset717 = Lfunc_end11-Lfunc_begin0 - .quad Lset717 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc130: -Lset718 = Lfunc_begin11-Lfunc_begin0 - .quad Lset718 -Lset719 = Ltmp659-Lfunc_begin0 - .quad Lset719 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset720 = Ltmp659-Lfunc_begin0 - .quad Lset720 -Lset721 = Ltmp662-Lfunc_begin0 - .quad Lset721 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset722 = Ltmp715-Lfunc_begin0 - .quad Lset722 -Lset723 = Ltmp717-Lfunc_begin0 - .quad Lset723 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc131: -Lset724 = Ltmp662-Lfunc_begin0 - .quad Lset724 -Lset725 = Ltmp665-Lfunc_begin0 - .quad Lset725 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset726 = Ltmp668-Lfunc_begin0 - .quad Lset726 -Lset727 = Ltmp676-Lfunc_begin0 - .quad Lset727 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset728 = Ltmp677-Lfunc_begin0 - .quad Lset728 -Lset729 = Ltmp679-Lfunc_begin0 - .quad Lset729 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset730 = Ltmp679-Lfunc_begin0 - .quad Lset730 -Lset731 = Ltmp708-Lfunc_begin0 - .quad Lset731 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -Lset732 = Ltmp708-Lfunc_begin0 - .quad Lset732 -Lset733 = Ltmp709-Lfunc_begin0 - .quad Lset733 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset734 = Ltmp711-Lfunc_begin0 - .quad Lset734 -Lset735 = Ltmp712-Lfunc_begin0 - .quad Lset735 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc132: -Lset736 = Ltmp663-Lfunc_begin0 - .quad Lset736 -Lset737 = Ltmp664-Lfunc_begin0 - .quad Lset737 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc133: -Lset738 = Ltmp683-Lfunc_begin0 - .quad Lset738 -Lset739 = Ltmp686-Lfunc_begin0 - .quad Lset739 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc134: -Lset740 = Ltmp686-Lfunc_begin0 - .quad Lset740 -Lset741 = Ltmp687-Lfunc_begin0 - .quad Lset741 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc135: -Lset742 = Ltmp689-Lfunc_begin0 - .quad Lset742 -Lset743 = Ltmp692-Lfunc_begin0 - .quad Lset743 - .short 2 ## Loc expr size - .byte 16 ## DW_OP_constu - .byte 0 ## 0 -Lset744 = Ltmp692-Lfunc_begin0 - .quad Lset744 -Lset745 = Ltmp693-Lfunc_begin0 - .quad Lset745 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc136: -Lset746 = Ltmp691-Lfunc_begin0 - .quad Lset746 -Lset747 = Ltmp692-Lfunc_begin0 - .quad Lset747 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc137: -Lset748 = Ltmp695-Lfunc_begin0 - .quad Lset748 -Lset749 = Ltmp696-Lfunc_begin0 - .quad Lset749 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset750 = Ltmp698-Lfunc_begin0 - .quad Lset750 -Lset751 = Ltmp699-Lfunc_begin0 - .quad Lset751 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset752 = Ltmp699-Lfunc_begin0 - .quad Lset752 -Lset753 = Lfunc_end11-Lfunc_begin0 - .quad Lset753 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc138: -Lset754 = Ltmp698-Lfunc_begin0 - .quad Lset754 -Lset755 = Ltmp703-Lfunc_begin0 - .quad Lset755 - .short 2 ## Loc expr size - .byte 16 ## DW_OP_constu - .byte 0 ## 0 -Lset756 = Ltmp703-Lfunc_begin0 - .quad Lset756 -Lset757 = Ltmp704-Lfunc_begin0 - .quad Lset757 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc139: -Lset758 = Ltmp702-Lfunc_begin0 - .quad Lset758 -Lset759 = Ltmp703-Lfunc_begin0 - .quad Lset759 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc140: -Lset760 = Ltmp709-Lfunc_begin0 - .quad Lset760 -Lset761 = Ltmp710-Lfunc_begin0 - .quad Lset761 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc141: -Lset762 = Lfunc_begin12-Lfunc_begin0 - .quad Lset762 -Lset763 = Ltmp730-Lfunc_begin0 - .quad Lset763 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset764 = Ltmp730-Lfunc_begin0 - .quad Lset764 -Lset765 = Ltmp734-Lfunc_begin0 - .quad Lset765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset766 = Ltmp736-Lfunc_begin0 - .quad Lset766 -Lset767 = Ltmp743-Lfunc_begin0 - .quad Lset767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset768 = Ltmp749-Lfunc_begin0 - .quad Lset768 -Lset769 = Ltmp754-Lfunc_begin0 - .quad Lset769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset770 = Ltmp755-Lfunc_begin0 - .quad Lset770 -Lset771 = Lfunc_end12-Lfunc_begin0 - .quad Lset771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc142: -Lset772 = Lfunc_begin12-Lfunc_begin0 - .quad Lset772 -Lset773 = Ltmp729-Lfunc_begin0 - .quad Lset773 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset774 = Ltmp729-Lfunc_begin0 - .quad Lset774 -Lset775 = Ltmp744-Lfunc_begin0 - .quad Lset775 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset776 = Ltmp745-Lfunc_begin0 - .quad Lset776 -Lset777 = Ltmp747-Lfunc_begin0 - .quad Lset777 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset778 = Ltmp749-Lfunc_begin0 - .quad Lset778 -Lset779 = Ltmp753-Lfunc_begin0 - .quad Lset779 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc143: -Lset780 = Lfunc_begin12-Lfunc_begin0 - .quad Lset780 -Lset781 = Ltmp728-Lfunc_begin0 - .quad Lset781 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset782 = Ltmp728-Lfunc_begin0 - .quad Lset782 -Lset783 = Ltmp743-Lfunc_begin0 - .quad Lset783 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset784 = Ltmp745-Lfunc_begin0 - .quad Lset784 -Lset785 = Ltmp747-Lfunc_begin0 - .quad Lset785 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset786 = Ltmp749-Lfunc_begin0 - .quad Lset786 -Lset787 = Ltmp752-Lfunc_begin0 - .quad Lset787 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset788 = Ltmp755-Lfunc_begin0 - .quad Lset788 -Lset789 = Lfunc_end12-Lfunc_begin0 - .quad Lset789 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc144: -Lset790 = Ltmp727-Lfunc_begin0 - .quad Lset790 -Lset791 = Ltmp729-Lfunc_begin0 - .quad Lset791 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset792 = Ltmp729-Lfunc_begin0 - .quad Lset792 -Lset793 = Ltmp731-Lfunc_begin0 - .quad Lset793 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc145: -Lset794 = Ltmp727-Lfunc_begin0 - .quad Lset794 -Lset795 = Ltmp729-Lfunc_begin0 - .quad Lset795 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset796 = Ltmp729-Lfunc_begin0 - .quad Lset796 -Lset797 = Ltmp731-Lfunc_begin0 - .quad Lset797 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc146: -Lset798 = Ltmp727-Lfunc_begin0 - .quad Lset798 -Lset799 = Ltmp729-Lfunc_begin0 - .quad Lset799 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset800 = Ltmp729-Lfunc_begin0 - .quad Lset800 -Lset801 = Ltmp731-Lfunc_begin0 - .quad Lset801 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc147: -Lset802 = Ltmp727-Lfunc_begin0 - .quad Lset802 -Lset803 = Ltmp729-Lfunc_begin0 - .quad Lset803 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset804 = Ltmp729-Lfunc_begin0 - .quad Lset804 -Lset805 = Ltmp731-Lfunc_begin0 - .quad Lset805 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc148: -Lset806 = Ltmp735-Lfunc_begin0 - .quad Lset806 -Lset807 = Ltmp736-Lfunc_begin0 - .quad Lset807 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc149: -Lset808 = Ltmp739-Lfunc_begin0 - .quad Lset808 -Lset809 = Ltmp744-Lfunc_begin0 - .quad Lset809 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc150: -Lset810 = Ltmp742-Lfunc_begin0 - .quad Lset810 -Lset811 = Ltmp743-Lfunc_begin0 - .quad Lset811 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset812 = Ltmp750-Lfunc_begin0 - .quad Lset812 -Lset813 = Ltmp751-Lfunc_begin0 - .quad Lset813 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc151: -Lset814 = Lfunc_begin13-Lfunc_begin0 - .quad Lset814 -Lset815 = Ltmp760-Lfunc_begin0 - .quad Lset815 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset816 = Ltmp771-Lfunc_begin0 - .quad Lset816 -Lset817 = Lfunc_end13-Lfunc_begin0 - .quad Lset817 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc152: -Lset818 = Lfunc_begin13-Lfunc_begin0 - .quad Lset818 -Lset819 = Ltmp761-Lfunc_begin0 - .quad Lset819 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset820 = Ltmp763-Lfunc_begin0 - .quad Lset820 -Lset821 = Ltmp767-Lfunc_begin0 - .quad Lset821 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc153: -Lset822 = Lfunc_begin13-Lfunc_begin0 - .quad Lset822 -Lset823 = Ltmp757-Lfunc_begin0 - .quad Lset823 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset824 = Ltmp757-Lfunc_begin0 - .quad Lset824 -Lset825 = Ltmp760-Lfunc_begin0 - .quad Lset825 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset826 = Ltmp763-Lfunc_begin0 - .quad Lset826 -Lset827 = Ltmp767-Lfunc_begin0 - .quad Lset827 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc154: -Lset828 = Lfunc_begin14-Lfunc_begin0 - .quad Lset828 -Lset829 = Ltmp775-Lfunc_begin0 - .quad Lset829 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset830 = Ltmp782-Lfunc_begin0 - .quad Lset830 -Lset831 = Ltmp784-Lfunc_begin0 - .quad Lset831 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc155: -Lset832 = Lfunc_begin14-Lfunc_begin0 - .quad Lset832 -Lset833 = Ltmp773-Lfunc_begin0 - .quad Lset833 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset834 = Ltmp773-Lfunc_begin0 - .quad Lset834 -Lset835 = Ltmp777-Lfunc_begin0 - .quad Lset835 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset836 = Ltmp782-Lfunc_begin0 - .quad Lset836 -Lset837 = Ltmp785-Lfunc_begin0 - .quad Lset837 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc156: -Lset838 = Lfunc_begin15-Lfunc_begin0 - .quad Lset838 -Lset839 = Ltmp793-Lfunc_begin0 - .quad Lset839 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset840 = Ltmp796-Lfunc_begin0 - .quad Lset840 -Lset841 = Ltmp797-Lfunc_begin0 - .quad Lset841 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc157: -Lset842 = Lfunc_begin16-Lfunc_begin0 - .quad Lset842 -Lset843 = Ltmp807-Lfunc_begin0 - .quad Lset843 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset844 = Ltmp807-Lfunc_begin0 - .quad Lset844 -Lset845 = Ltmp822-Lfunc_begin0 - .quad Lset845 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset846 = Ltmp823-Lfunc_begin0 - .quad Lset846 -Lset847 = Ltmp840-Lfunc_begin0 - .quad Lset847 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc158: -Lset848 = Ltmp808-Lfunc_begin0 - .quad Lset848 -Lset849 = Ltmp817-Lfunc_begin0 - .quad Lset849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset850 = Ltmp823-Lfunc_begin0 - .quad Lset850 -Lset851 = Lfunc_end16-Lfunc_begin0 - .quad Lset851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc159: -Lset852 = Ltmp809-Lfunc_begin0 - .quad Lset852 -Lset853 = Ltmp814-Lfunc_begin0 - .quad Lset853 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset854 = Ltmp817-Lfunc_begin0 - .quad Lset854 -Lset855 = Ltmp822-Lfunc_begin0 - .quad Lset855 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset856 = Ltmp824-Lfunc_begin0 - .quad Lset856 -Lset857 = Ltmp827-Lfunc_begin0 - .quad Lset857 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc160: -Lset858 = Ltmp811-Lfunc_begin0 - .quad Lset858 -Lset859 = Ltmp821-Lfunc_begin0 - .quad Lset859 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset860 = Ltmp823-Lfunc_begin0 - .quad Lset860 -Lset861 = Ltmp833-Lfunc_begin0 - .quad Lset861 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset862 = Ltmp835-Lfunc_begin0 - .quad Lset862 -Lset863 = Ltmp844-Lfunc_begin0 - .quad Lset863 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc161: -Lset864 = Ltmp812-Lfunc_begin0 - .quad Lset864 -Lset865 = Ltmp813-Lfunc_begin0 - .quad Lset865 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset866 = Ltmp817-Lfunc_begin0 - .quad Lset866 -Lset867 = Ltmp818-Lfunc_begin0 - .quad Lset867 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc162: -Lset868 = Ltmp825-Lfunc_begin0 - .quad Lset868 -Lset869 = Ltmp826-Lfunc_begin0 - .quad Lset869 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc163: -Lset870 = Ltmp828-Lfunc_begin0 - .quad Lset870 -Lset871 = Ltmp832-Lfunc_begin0 - .quad Lset871 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc164: -Lset872 = Ltmp837-Lfunc_begin0 - .quad Lset872 -Lset873 = Ltmp841-Lfunc_begin0 - .quad Lset873 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset874 = Ltmp842-Lfunc_begin0 - .quad Lset874 -Lset875 = Ltmp843-Lfunc_begin0 - .quad Lset875 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc165: -Lset876 = Lfunc_begin17-Lfunc_begin0 - .quad Lset876 -Lset877 = Ltmp855-Lfunc_begin0 - .quad Lset877 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset878 = Ltmp855-Lfunc_begin0 - .quad Lset878 -Lset879 = Ltmp873-Lfunc_begin0 - .quad Lset879 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset880 = Ltmp873-Lfunc_begin0 - .quad Lset880 -Lset881 = Ltmp875-Lfunc_begin0 - .quad Lset881 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset882 = Ltmp875-Lfunc_begin0 - .quad Lset882 -Lset883 = Ltmp880-Lfunc_begin0 - .quad Lset883 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset884 = Ltmp880-Lfunc_begin0 - .quad Lset884 -Lset885 = Ltmp882-Lfunc_begin0 - .quad Lset885 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset886 = Ltmp882-Lfunc_begin0 - .quad Lset886 -Lset887 = Ltmp895-Lfunc_begin0 - .quad Lset887 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset888 = Ltmp895-Lfunc_begin0 - .quad Lset888 -Lset889 = Ltmp897-Lfunc_begin0 - .quad Lset889 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset890 = Ltmp897-Lfunc_begin0 - .quad Lset890 -Lset891 = Ltmp911-Lfunc_begin0 - .quad Lset891 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset892 = Ltmp911-Lfunc_begin0 - .quad Lset892 -Lset893 = Ltmp913-Lfunc_begin0 - .quad Lset893 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset894 = Ltmp913-Lfunc_begin0 - .quad Lset894 -Lset895 = Ltmp927-Lfunc_begin0 - .quad Lset895 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset896 = Ltmp927-Lfunc_begin0 - .quad Lset896 -Lset897 = Ltmp929-Lfunc_begin0 - .quad Lset897 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset898 = Ltmp929-Lfunc_begin0 - .quad Lset898 -Lset899 = Ltmp945-Lfunc_begin0 - .quad Lset899 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset900 = Ltmp945-Lfunc_begin0 - .quad Lset900 -Lset901 = Ltmp947-Lfunc_begin0 - .quad Lset901 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset902 = Ltmp947-Lfunc_begin0 - .quad Lset902 -Lset903 = Ltmp968-Lfunc_begin0 - .quad Lset903 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset904 = Ltmp968-Lfunc_begin0 - .quad Lset904 -Lset905 = Ltmp970-Lfunc_begin0 - .quad Lset905 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset906 = Ltmp970-Lfunc_begin0 - .quad Lset906 -Lset907 = Ltmp993-Lfunc_begin0 - .quad Lset907 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset908 = Ltmp993-Lfunc_begin0 - .quad Lset908 -Lset909 = Ltmp994-Lfunc_begin0 - .quad Lset909 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset910 = Ltmp994-Lfunc_begin0 - .quad Lset910 -Lset911 = Ltmp1000-Lfunc_begin0 - .quad Lset911 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset912 = Ltmp1000-Lfunc_begin0 - .quad Lset912 -Lset913 = Ltmp1001-Lfunc_begin0 - .quad Lset913 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset914 = Ltmp1001-Lfunc_begin0 - .quad Lset914 -Lset915 = Ltmp1011-Lfunc_begin0 - .quad Lset915 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset916 = Ltmp1011-Lfunc_begin0 - .quad Lset916 -Lset917 = Ltmp1012-Lfunc_begin0 - .quad Lset917 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset918 = Ltmp1012-Lfunc_begin0 - .quad Lset918 -Lset919 = Ltmp1017-Lfunc_begin0 - .quad Lset919 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset920 = Ltmp1017-Lfunc_begin0 - .quad Lset920 -Lset921 = Ltmp1018-Lfunc_begin0 - .quad Lset921 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset922 = Ltmp1018-Lfunc_begin0 - .quad Lset922 -Lset923 = Ltmp1019-Lfunc_begin0 - .quad Lset923 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset924 = Ltmp1022-Lfunc_begin0 - .quad Lset924 -Lset925 = Ltmp1029-Lfunc_begin0 - .quad Lset925 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset926 = Ltmp1029-Lfunc_begin0 - .quad Lset926 -Lset927 = Ltmp1036-Lfunc_begin0 - .quad Lset927 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset928 = Ltmp1036-Lfunc_begin0 - .quad Lset928 -Lset929 = Ltmp1039-Lfunc_begin0 - .quad Lset929 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset930 = Ltmp1039-Lfunc_begin0 - .quad Lset930 -Lset931 = Ltmp1042-Lfunc_begin0 - .quad Lset931 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset932 = Ltmp1042-Lfunc_begin0 - .quad Lset932 -Lset933 = Ltmp1045-Lfunc_begin0 - .quad Lset933 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset934 = Ltmp1046-Lfunc_begin0 - .quad Lset934 -Lset935 = Ltmp1064-Lfunc_begin0 - .quad Lset935 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset936 = Ltmp1064-Lfunc_begin0 - .quad Lset936 -Lset937 = Ltmp1065-Lfunc_begin0 - .quad Lset937 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset938 = Ltmp1065-Lfunc_begin0 - .quad Lset938 -Lset939 = Ltmp1071-Lfunc_begin0 - .quad Lset939 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset940 = Ltmp1071-Lfunc_begin0 - .quad Lset940 -Lset941 = Ltmp1072-Lfunc_begin0 - .quad Lset941 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset942 = Ltmp1072-Lfunc_begin0 - .quad Lset942 -Lset943 = Ltmp1082-Lfunc_begin0 - .quad Lset943 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset944 = Ltmp1082-Lfunc_begin0 - .quad Lset944 -Lset945 = Ltmp1083-Lfunc_begin0 - .quad Lset945 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset946 = Ltmp1083-Lfunc_begin0 - .quad Lset946 -Lset947 = Ltmp1088-Lfunc_begin0 - .quad Lset947 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset948 = Ltmp1088-Lfunc_begin0 - .quad Lset948 -Lset949 = Ltmp1089-Lfunc_begin0 - .quad Lset949 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset950 = Ltmp1089-Lfunc_begin0 - .quad Lset950 -Lset951 = Ltmp1090-Lfunc_begin0 - .quad Lset951 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset952 = Ltmp1093-Lfunc_begin0 - .quad Lset952 -Lset953 = Ltmp1100-Lfunc_begin0 - .quad Lset953 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset954 = Ltmp1100-Lfunc_begin0 - .quad Lset954 -Lset955 = Ltmp1107-Lfunc_begin0 - .quad Lset955 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset956 = Ltmp1107-Lfunc_begin0 - .quad Lset956 -Lset957 = Ltmp1110-Lfunc_begin0 - .quad Lset957 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset958 = Ltmp1110-Lfunc_begin0 - .quad Lset958 -Lset959 = Ltmp1113-Lfunc_begin0 - .quad Lset959 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset960 = Ltmp1113-Lfunc_begin0 - .quad Lset960 -Lset961 = Ltmp1116-Lfunc_begin0 - .quad Lset961 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset962 = Ltmp1117-Lfunc_begin0 - .quad Lset962 -Lset963 = Ltmp1139-Lfunc_begin0 - .quad Lset963 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset964 = Ltmp1139-Lfunc_begin0 - .quad Lset964 -Lset965 = Ltmp1140-Lfunc_begin0 - .quad Lset965 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset966 = Ltmp1140-Lfunc_begin0 - .quad Lset966 -Lset967 = Ltmp1154-Lfunc_begin0 - .quad Lset967 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset968 = Ltmp1155-Lfunc_begin0 - .quad Lset968 -Lset969 = Ltmp1156-Lfunc_begin0 - .quad Lset969 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset970 = Ltmp1156-Lfunc_begin0 - .quad Lset970 -Lset971 = Ltmp1159-Lfunc_begin0 - .quad Lset971 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset972 = Ltmp1159-Lfunc_begin0 - .quad Lset972 -Lset973 = Ltmp1160-Lfunc_begin0 - .quad Lset973 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset974 = Ltmp1160-Lfunc_begin0 - .quad Lset974 -Lset975 = Ltmp1170-Lfunc_begin0 - .quad Lset975 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset976 = Ltmp1170-Lfunc_begin0 - .quad Lset976 -Lset977 = Ltmp1174-Lfunc_begin0 - .quad Lset977 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset978 = Ltmp1174-Lfunc_begin0 - .quad Lset978 -Lset979 = Ltmp1178-Lfunc_begin0 - .quad Lset979 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset980 = Ltmp1179-Lfunc_begin0 - .quad Lset980 -Lset981 = Ltmp1181-Lfunc_begin0 - .quad Lset981 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset982 = Ltmp1181-Lfunc_begin0 - .quad Lset982 -Lset983 = Ltmp1186-Lfunc_begin0 - .quad Lset983 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset984 = Ltmp1187-Lfunc_begin0 - .quad Lset984 -Lset985 = Ltmp1192-Lfunc_begin0 - .quad Lset985 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset986 = Ltmp1193-Lfunc_begin0 - .quad Lset986 -Lset987 = Ltmp1194-Lfunc_begin0 - .quad Lset987 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset988 = Ltmp1194-Lfunc_begin0 - .quad Lset988 -Lset989 = Ltmp1195-Lfunc_begin0 - .quad Lset989 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset990 = Ltmp1196-Lfunc_begin0 - .quad Lset990 -Lset991 = Ltmp1197-Lfunc_begin0 - .quad Lset991 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset992 = Ltmp1198-Lfunc_begin0 - .quad Lset992 -Lset993 = Ltmp1210-Lfunc_begin0 - .quad Lset993 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset994 = Ltmp1210-Lfunc_begin0 - .quad Lset994 -Lset995 = Ltmp1211-Lfunc_begin0 - .quad Lset995 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset996 = Ltmp1212-Lfunc_begin0 - .quad Lset996 -Lset997 = Ltmp1213-Lfunc_begin0 - .quad Lset997 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset998 = Ltmp1213-Lfunc_begin0 - .quad Lset998 -Lset999 = Ltmp1214-Lfunc_begin0 - .quad Lset999 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1000 = Ltmp1214-Lfunc_begin0 - .quad Lset1000 -Lset1001 = Ltmp1215-Lfunc_begin0 - .quad Lset1001 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1002 = Ltmp1217-Lfunc_begin0 - .quad Lset1002 -Lset1003 = Ltmp1220-Lfunc_begin0 - .quad Lset1003 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1004 = Ltmp1220-Lfunc_begin0 - .quad Lset1004 -Lset1005 = Ltmp1221-Lfunc_begin0 - .quad Lset1005 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1006 = Ltmp1221-Lfunc_begin0 - .quad Lset1006 -Lset1007 = Ltmp1233-Lfunc_begin0 - .quad Lset1007 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1008 = Ltmp1233-Lfunc_begin0 - .quad Lset1008 -Lset1009 = Ltmp1234-Lfunc_begin0 - .quad Lset1009 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1010 = Ltmp1237-Lfunc_begin0 - .quad Lset1010 -Lset1011 = Ltmp1243-Lfunc_begin0 - .quad Lset1011 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1012 = Ltmp1243-Lfunc_begin0 - .quad Lset1012 -Lset1013 = Ltmp1251-Lfunc_begin0 - .quad Lset1013 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1014 = Ltmp1251-Lfunc_begin0 - .quad Lset1014 -Lset1015 = Ltmp1252-Lfunc_begin0 - .quad Lset1015 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1016 = Ltmp1253-Lfunc_begin0 - .quad Lset1016 -Lset1017 = Ltmp1257-Lfunc_begin0 - .quad Lset1017 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1018 = Ltmp1257-Lfunc_begin0 - .quad Lset1018 -Lset1019 = Ltmp1265-Lfunc_begin0 - .quad Lset1019 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1020 = Ltmp1265-Lfunc_begin0 - .quad Lset1020 -Lset1021 = Ltmp1267-Lfunc_begin0 - .quad Lset1021 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1022 = Ltmp1267-Lfunc_begin0 - .quad Lset1022 -Lset1023 = Ltmp1271-Lfunc_begin0 - .quad Lset1023 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1024 = Ltmp1271-Lfunc_begin0 - .quad Lset1024 -Lset1025 = Ltmp1272-Lfunc_begin0 - .quad Lset1025 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1026 = Ltmp1272-Lfunc_begin0 - .quad Lset1026 -Lset1027 = Ltmp1273-Lfunc_begin0 - .quad Lset1027 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1028 = Ltmp1276-Lfunc_begin0 - .quad Lset1028 -Lset1029 = Ltmp1286-Lfunc_begin0 - .quad Lset1029 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1030 = Ltmp1286-Lfunc_begin0 - .quad Lset1030 -Lset1031 = Ltmp1288-Lfunc_begin0 - .quad Lset1031 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1032 = Ltmp1288-Lfunc_begin0 - .quad Lset1032 -Lset1033 = Ltmp1299-Lfunc_begin0 - .quad Lset1033 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1034 = Ltmp1299-Lfunc_begin0 - .quad Lset1034 -Lset1035 = Ltmp1301-Lfunc_begin0 - .quad Lset1035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1036 = Ltmp1301-Lfunc_begin0 - .quad Lset1036 -Lset1037 = Ltmp1321-Lfunc_begin0 - .quad Lset1037 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1038 = Ltmp1321-Lfunc_begin0 - .quad Lset1038 -Lset1039 = Ltmp1322-Lfunc_begin0 - .quad Lset1039 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1040 = Ltmp1322-Lfunc_begin0 - .quad Lset1040 -Lset1041 = Ltmp1336-Lfunc_begin0 - .quad Lset1041 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1042 = Ltmp1337-Lfunc_begin0 - .quad Lset1042 -Lset1043 = Ltmp1338-Lfunc_begin0 - .quad Lset1043 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1044 = Ltmp1338-Lfunc_begin0 - .quad Lset1044 -Lset1045 = Ltmp1342-Lfunc_begin0 - .quad Lset1045 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1046 = Ltmp1342-Lfunc_begin0 - .quad Lset1046 -Lset1047 = Ltmp1343-Lfunc_begin0 - .quad Lset1047 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1048 = Ltmp1343-Lfunc_begin0 - .quad Lset1048 -Lset1049 = Ltmp1353-Lfunc_begin0 - .quad Lset1049 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1050 = Ltmp1353-Lfunc_begin0 - .quad Lset1050 -Lset1051 = Ltmp1357-Lfunc_begin0 - .quad Lset1051 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1052 = Ltmp1357-Lfunc_begin0 - .quad Lset1052 -Lset1053 = Ltmp1361-Lfunc_begin0 - .quad Lset1053 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1054 = Ltmp1362-Lfunc_begin0 - .quad Lset1054 -Lset1055 = Ltmp1364-Lfunc_begin0 - .quad Lset1055 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1056 = Ltmp1364-Lfunc_begin0 - .quad Lset1056 -Lset1057 = Ltmp1369-Lfunc_begin0 - .quad Lset1057 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1058 = Ltmp1370-Lfunc_begin0 - .quad Lset1058 -Lset1059 = Ltmp1375-Lfunc_begin0 - .quad Lset1059 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1060 = Ltmp1376-Lfunc_begin0 - .quad Lset1060 -Lset1061 = Ltmp1377-Lfunc_begin0 - .quad Lset1061 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1062 = Ltmp1377-Lfunc_begin0 - .quad Lset1062 -Lset1063 = Ltmp1378-Lfunc_begin0 - .quad Lset1063 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1064 = Ltmp1379-Lfunc_begin0 - .quad Lset1064 -Lset1065 = Ltmp1380-Lfunc_begin0 - .quad Lset1065 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1066 = Ltmp1381-Lfunc_begin0 - .quad Lset1066 -Lset1067 = Ltmp1393-Lfunc_begin0 - .quad Lset1067 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1068 = Ltmp1393-Lfunc_begin0 - .quad Lset1068 -Lset1069 = Ltmp1394-Lfunc_begin0 - .quad Lset1069 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1070 = Ltmp1395-Lfunc_begin0 - .quad Lset1070 -Lset1071 = Ltmp1396-Lfunc_begin0 - .quad Lset1071 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1072 = Ltmp1396-Lfunc_begin0 - .quad Lset1072 -Lset1073 = Ltmp1397-Lfunc_begin0 - .quad Lset1073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1074 = Ltmp1397-Lfunc_begin0 - .quad Lset1074 -Lset1075 = Ltmp1398-Lfunc_begin0 - .quad Lset1075 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1076 = Ltmp1400-Lfunc_begin0 - .quad Lset1076 -Lset1077 = Ltmp1403-Lfunc_begin0 - .quad Lset1077 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1078 = Ltmp1403-Lfunc_begin0 - .quad Lset1078 -Lset1079 = Ltmp1404-Lfunc_begin0 - .quad Lset1079 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1080 = Ltmp1404-Lfunc_begin0 - .quad Lset1080 -Lset1081 = Ltmp1416-Lfunc_begin0 - .quad Lset1081 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1082 = Ltmp1416-Lfunc_begin0 - .quad Lset1082 -Lset1083 = Ltmp1417-Lfunc_begin0 - .quad Lset1083 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1084 = Ltmp1420-Lfunc_begin0 - .quad Lset1084 -Lset1085 = Ltmp1425-Lfunc_begin0 - .quad Lset1085 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1086 = Ltmp1425-Lfunc_begin0 - .quad Lset1086 -Lset1087 = Ltmp1432-Lfunc_begin0 - .quad Lset1087 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1088 = Ltmp1432-Lfunc_begin0 - .quad Lset1088 -Lset1089 = Ltmp1433-Lfunc_begin0 - .quad Lset1089 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1090 = Ltmp1435-Lfunc_begin0 - .quad Lset1090 -Lset1091 = Ltmp1438-Lfunc_begin0 - .quad Lset1091 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1092 = Ltmp1438-Lfunc_begin0 - .quad Lset1092 -Lset1093 = Ltmp1445-Lfunc_begin0 - .quad Lset1093 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1094 = Ltmp1445-Lfunc_begin0 - .quad Lset1094 -Lset1095 = Ltmp1447-Lfunc_begin0 - .quad Lset1095 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1096 = Ltmp1447-Lfunc_begin0 - .quad Lset1096 -Lset1097 = Ltmp1449-Lfunc_begin0 - .quad Lset1097 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1098 = Ltmp1450-Lfunc_begin0 - .quad Lset1098 -Lset1099 = Ltmp1453-Lfunc_begin0 - .quad Lset1099 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1100 = Ltmp1453-Lfunc_begin0 - .quad Lset1100 -Lset1101 = Ltmp1454-Lfunc_begin0 - .quad Lset1101 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1102 = Ltmp1454-Lfunc_begin0 - .quad Lset1102 -Lset1103 = Ltmp1455-Lfunc_begin0 - .quad Lset1103 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1104 = Ltmp1458-Lfunc_begin0 - .quad Lset1104 -Lset1105 = Ltmp1479-Lfunc_begin0 - .quad Lset1105 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1106 = Ltmp1479-Lfunc_begin0 - .quad Lset1106 -Lset1107 = Ltmp1480-Lfunc_begin0 - .quad Lset1107 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1108 = Ltmp1480-Lfunc_begin0 - .quad Lset1108 -Lset1109 = Ltmp1483-Lfunc_begin0 - .quad Lset1109 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1110 = Ltmp1483-Lfunc_begin0 - .quad Lset1110 -Lset1111 = Ltmp1487-Lfunc_begin0 - .quad Lset1111 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1112 = Ltmp1487-Lfunc_begin0 - .quad Lset1112 -Lset1113 = Ltmp1499-Lfunc_begin0 - .quad Lset1113 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1114 = Ltmp1499-Lfunc_begin0 - .quad Lset1114 -Lset1115 = Ltmp1500-Lfunc_begin0 - .quad Lset1115 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1116 = Ltmp1500-Lfunc_begin0 - .quad Lset1116 -Lset1117 = Ltmp1509-Lfunc_begin0 - .quad Lset1117 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1118 = Ltmp1509-Lfunc_begin0 - .quad Lset1118 -Lset1119 = Ltmp1513-Lfunc_begin0 - .quad Lset1119 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1120 = Ltmp1513-Lfunc_begin0 - .quad Lset1120 -Lset1121 = Ltmp1521-Lfunc_begin0 - .quad Lset1121 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1122 = Ltmp1521-Lfunc_begin0 - .quad Lset1122 -Lset1123 = Ltmp1525-Lfunc_begin0 - .quad Lset1123 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1124 = Ltmp1526-Lfunc_begin0 - .quad Lset1124 -Lset1125 = Ltmp1529-Lfunc_begin0 - .quad Lset1125 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1126 = Ltmp1529-Lfunc_begin0 - .quad Lset1126 -Lset1127 = Ltmp1530-Lfunc_begin0 - .quad Lset1127 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1128 = Ltmp1530-Lfunc_begin0 - .quad Lset1128 -Lset1129 = Ltmp1531-Lfunc_begin0 - .quad Lset1129 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1130 = Ltmp1532-Lfunc_begin0 - .quad Lset1130 -Lset1131 = Ltmp1534-Lfunc_begin0 - .quad Lset1131 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1132 = Ltmp1534-Lfunc_begin0 - .quad Lset1132 -Lset1133 = Ltmp1535-Lfunc_begin0 - .quad Lset1133 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1134 = Ltmp1536-Lfunc_begin0 - .quad Lset1134 -Lset1135 = Ltmp1537-Lfunc_begin0 - .quad Lset1135 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1136 = Ltmp1538-Lfunc_begin0 - .quad Lset1136 -Lset1137 = Ltmp1549-Lfunc_begin0 - .quad Lset1137 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1138 = Ltmp1549-Lfunc_begin0 - .quad Lset1138 -Lset1139 = Ltmp1550-Lfunc_begin0 - .quad Lset1139 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1140 = Ltmp1551-Lfunc_begin0 - .quad Lset1140 -Lset1141 = Ltmp1552-Lfunc_begin0 - .quad Lset1141 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1142 = Ltmp1552-Lfunc_begin0 - .quad Lset1142 -Lset1143 = Ltmp1553-Lfunc_begin0 - .quad Lset1143 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1144 = Ltmp1553-Lfunc_begin0 - .quad Lset1144 -Lset1145 = Ltmp1554-Lfunc_begin0 - .quad Lset1145 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1146 = Ltmp1555-Lfunc_begin0 - .quad Lset1146 -Lset1147 = Ltmp1560-Lfunc_begin0 - .quad Lset1147 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1148 = Ltmp1560-Lfunc_begin0 - .quad Lset1148 -Lset1149 = Ltmp1561-Lfunc_begin0 - .quad Lset1149 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1150 = Ltmp1561-Lfunc_begin0 - .quad Lset1150 -Lset1151 = Ltmp1572-Lfunc_begin0 - .quad Lset1151 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1152 = Ltmp1572-Lfunc_begin0 - .quad Lset1152 -Lset1153 = Ltmp1573-Lfunc_begin0 - .quad Lset1153 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1154 = Ltmp1576-Lfunc_begin0 - .quad Lset1154 -Lset1155 = Ltmp1581-Lfunc_begin0 - .quad Lset1155 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1156 = Ltmp1581-Lfunc_begin0 - .quad Lset1156 -Lset1157 = Ltmp1595-Lfunc_begin0 - .quad Lset1157 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1158 = Ltmp1595-Lfunc_begin0 - .quad Lset1158 -Lset1159 = Ltmp1596-Lfunc_begin0 - .quad Lset1159 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1160 = Ltmp1596-Lfunc_begin0 - .quad Lset1160 -Lset1161 = Ltmp1598-Lfunc_begin0 - .quad Lset1161 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1162 = Ltmp1598-Lfunc_begin0 - .quad Lset1162 -Lset1163 = Ltmp1599-Lfunc_begin0 - .quad Lset1163 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1164 = Ltmp1599-Lfunc_begin0 - .quad Lset1164 -Lset1165 = Ltmp1616-Lfunc_begin0 - .quad Lset1165 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1166 = Ltmp1616-Lfunc_begin0 - .quad Lset1166 -Lset1167 = Ltmp1617-Lfunc_begin0 - .quad Lset1167 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1168 = Ltmp1617-Lfunc_begin0 - .quad Lset1168 -Lset1169 = Ltmp1620-Lfunc_begin0 - .quad Lset1169 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1170 = Ltmp1620-Lfunc_begin0 - .quad Lset1170 -Lset1171 = Ltmp1621-Lfunc_begin0 - .quad Lset1171 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1172 = Ltmp1621-Lfunc_begin0 - .quad Lset1172 -Lset1173 = Ltmp1643-Lfunc_begin0 - .quad Lset1173 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1174 = Ltmp1643-Lfunc_begin0 - .quad Lset1174 -Lset1175 = Ltmp1644-Lfunc_begin0 - .quad Lset1175 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1176 = Ltmp1644-Lfunc_begin0 - .quad Lset1176 -Lset1177 = Ltmp1649-Lfunc_begin0 - .quad Lset1177 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1178 = Ltmp1649-Lfunc_begin0 - .quad Lset1178 -Lset1179 = Ltmp1650-Lfunc_begin0 - .quad Lset1179 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1180 = Ltmp1650-Lfunc_begin0 - .quad Lset1180 -Lset1181 = Ltmp1651-Lfunc_begin0 - .quad Lset1181 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1182 = Ltmp1653-Lfunc_begin0 - .quad Lset1182 -Lset1183 = Ltmp1665-Lfunc_begin0 - .quad Lset1183 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1184 = Ltmp1665-Lfunc_begin0 - .quad Lset1184 -Lset1185 = Ltmp1666-Lfunc_begin0 - .quad Lset1185 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1186 = Ltmp1666-Lfunc_begin0 - .quad Lset1186 -Lset1187 = Ltmp1675-Lfunc_begin0 - .quad Lset1187 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1188 = Ltmp1675-Lfunc_begin0 - .quad Lset1188 -Lset1189 = Ltmp1676-Lfunc_begin0 - .quad Lset1189 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1190 = Ltmp1676-Lfunc_begin0 - .quad Lset1190 -Lset1191 = Ltmp1683-Lfunc_begin0 - .quad Lset1191 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1192 = Ltmp1683-Lfunc_begin0 - .quad Lset1192 -Lset1193 = Ltmp1686-Lfunc_begin0 - .quad Lset1193 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1194 = Ltmp1686-Lfunc_begin0 - .quad Lset1194 -Lset1195 = Ltmp1687-Lfunc_begin0 - .quad Lset1195 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1196 = Ltmp1687-Lfunc_begin0 - .quad Lset1196 -Lset1197 = Ltmp1698-Lfunc_begin0 - .quad Lset1197 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1198 = Ltmp1700-Lfunc_begin0 - .quad Lset1198 -Lset1199 = Ltmp1702-Lfunc_begin0 - .quad Lset1199 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1200 = Ltmp1702-Lfunc_begin0 - .quad Lset1200 -Lset1201 = Ltmp1703-Lfunc_begin0 - .quad Lset1201 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset1202 = Ltmp1703-Lfunc_begin0 - .quad Lset1202 -Lset1203 = Ltmp1706-Lfunc_begin0 - .quad Lset1203 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1204 = Ltmp1707-Lfunc_begin0 - .quad Lset1204 -Lset1205 = Ltmp1709-Lfunc_begin0 - .quad Lset1205 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1206 = Ltmp1709-Lfunc_begin0 - .quad Lset1206 -Lset1207 = Ltmp1710-Lfunc_begin0 - .quad Lset1207 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset1208 = Ltmp1710-Lfunc_begin0 - .quad Lset1208 -Lset1209 = Ltmp1714-Lfunc_begin0 - .quad Lset1209 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1210 = Ltmp1714-Lfunc_begin0 - .quad Lset1210 -Lset1211 = Ltmp1718-Lfunc_begin0 - .quad Lset1211 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1212 = Ltmp1718-Lfunc_begin0 - .quad Lset1212 -Lset1213 = Ltmp1719-Lfunc_begin0 - .quad Lset1213 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset1214 = Ltmp1719-Lfunc_begin0 - .quad Lset1214 -Lset1215 = Ltmp1722-Lfunc_begin0 - .quad Lset1215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1216 = Ltmp1722-Lfunc_begin0 - .quad Lset1216 -Lset1217 = Ltmp1724-Lfunc_begin0 - .quad Lset1217 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1218 = Ltmp1724-Lfunc_begin0 - .quad Lset1218 -Lset1219 = Ltmp1724-Lfunc_begin0 - .quad Lset1219 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1220 = Ltmp1724-Lfunc_begin0 - .quad Lset1220 -Lset1221 = Ltmp1749-Lfunc_begin0 - .quad Lset1221 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1222 = Ltmp1749-Lfunc_begin0 - .quad Lset1222 -Lset1223 = Ltmp1752-Lfunc_begin0 - .quad Lset1223 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1224 = Ltmp1752-Lfunc_begin0 - .quad Lset1224 -Lset1225 = Ltmp1753-Lfunc_begin0 - .quad Lset1225 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1226 = Ltmp1753-Lfunc_begin0 - .quad Lset1226 -Lset1227 = Ltmp1764-Lfunc_begin0 - .quad Lset1227 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1228 = Ltmp1764-Lfunc_begin0 - .quad Lset1228 -Lset1229 = Ltmp1768-Lfunc_begin0 - .quad Lset1229 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1230 = Ltmp1768-Lfunc_begin0 - .quad Lset1230 -Lset1231 = Ltmp1769-Lfunc_begin0 - .quad Lset1231 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1232 = Ltmp1769-Lfunc_begin0 - .quad Lset1232 -Lset1233 = Ltmp1770-Lfunc_begin0 - .quad Lset1233 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1234 = Ltmp1770-Lfunc_begin0 - .quad Lset1234 -Lset1235 = Ltmp1773-Lfunc_begin0 - .quad Lset1235 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1236 = Ltmp1773-Lfunc_begin0 - .quad Lset1236 -Lset1237 = Ltmp1774-Lfunc_begin0 - .quad Lset1237 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1238 = Ltmp1774-Lfunc_begin0 - .quad Lset1238 -Lset1239 = Ltmp1788-Lfunc_begin0 - .quad Lset1239 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1240 = Ltmp1788-Lfunc_begin0 - .quad Lset1240 -Lset1241 = Ltmp1790-Lfunc_begin0 - .quad Lset1241 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1242 = Ltmp1790-Lfunc_begin0 - .quad Lset1242 -Lset1243 = Ltmp1796-Lfunc_begin0 - .quad Lset1243 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1244 = Ltmp1797-Lfunc_begin0 - .quad Lset1244 -Lset1245 = Ltmp1800-Lfunc_begin0 - .quad Lset1245 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1246 = Ltmp1800-Lfunc_begin0 - .quad Lset1246 -Lset1247 = Ltmp1803-Lfunc_begin0 - .quad Lset1247 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1248 = Ltmp1803-Lfunc_begin0 - .quad Lset1248 -Lset1249 = Ltmp1804-Lfunc_begin0 - .quad Lset1249 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1250 = Ltmp1804-Lfunc_begin0 - .quad Lset1250 -Lset1251 = Ltmp1809-Lfunc_begin0 - .quad Lset1251 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1252 = Ltmp1809-Lfunc_begin0 - .quad Lset1252 -Lset1253 = Ltmp1817-Lfunc_begin0 - .quad Lset1253 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1254 = Ltmp1817-Lfunc_begin0 - .quad Lset1254 -Lset1255 = Ltmp1819-Lfunc_begin0 - .quad Lset1255 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1256 = Ltmp1819-Lfunc_begin0 - .quad Lset1256 -Lset1257 = Ltmp1827-Lfunc_begin0 - .quad Lset1257 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1258 = Ltmp1827-Lfunc_begin0 - .quad Lset1258 -Lset1259 = Ltmp1828-Lfunc_begin0 - .quad Lset1259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1260 = Ltmp1828-Lfunc_begin0 - .quad Lset1260 -Lset1261 = Ltmp1856-Lfunc_begin0 - .quad Lset1261 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1262 = Ltmp1857-Lfunc_begin0 - .quad Lset1262 -Lset1263 = Ltmp1864-Lfunc_begin0 - .quad Lset1263 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1264 = Ltmp1864-Lfunc_begin0 - .quad Lset1264 -Lset1265 = Ltmp1866-Lfunc_begin0 - .quad Lset1265 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1266 = Ltmp1866-Lfunc_begin0 - .quad Lset1266 -Lset1267 = Ltmp1872-Lfunc_begin0 - .quad Lset1267 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1268 = Ltmp1873-Lfunc_begin0 - .quad Lset1268 -Lset1269 = Ltmp1876-Lfunc_begin0 - .quad Lset1269 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1270 = Ltmp1876-Lfunc_begin0 - .quad Lset1270 -Lset1271 = Ltmp1879-Lfunc_begin0 - .quad Lset1271 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1272 = Ltmp1879-Lfunc_begin0 - .quad Lset1272 -Lset1273 = Ltmp1880-Lfunc_begin0 - .quad Lset1273 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1274 = Ltmp1880-Lfunc_begin0 - .quad Lset1274 -Lset1275 = Ltmp1885-Lfunc_begin0 - .quad Lset1275 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1276 = Ltmp1885-Lfunc_begin0 - .quad Lset1276 -Lset1277 = Ltmp1893-Lfunc_begin0 - .quad Lset1277 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1278 = Ltmp1893-Lfunc_begin0 - .quad Lset1278 -Lset1279 = Ltmp1895-Lfunc_begin0 - .quad Lset1279 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1280 = Ltmp1895-Lfunc_begin0 - .quad Lset1280 -Lset1281 = Ltmp1903-Lfunc_begin0 - .quad Lset1281 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1282 = Ltmp1903-Lfunc_begin0 - .quad Lset1282 -Lset1283 = Ltmp1904-Lfunc_begin0 - .quad Lset1283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1284 = Ltmp1904-Lfunc_begin0 - .quad Lset1284 -Lset1285 = Ltmp1932-Lfunc_begin0 - .quad Lset1285 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1286 = Ltmp1933-Lfunc_begin0 - .quad Lset1286 -Lset1287 = Ltmp1940-Lfunc_begin0 - .quad Lset1287 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1288 = Ltmp1940-Lfunc_begin0 - .quad Lset1288 -Lset1289 = Ltmp1942-Lfunc_begin0 - .quad Lset1289 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1290 = Ltmp1942-Lfunc_begin0 - .quad Lset1290 -Lset1291 = Ltmp1948-Lfunc_begin0 - .quad Lset1291 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1292 = Ltmp1949-Lfunc_begin0 - .quad Lset1292 -Lset1293 = Ltmp1952-Lfunc_begin0 - .quad Lset1293 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1294 = Ltmp1952-Lfunc_begin0 - .quad Lset1294 -Lset1295 = Ltmp1955-Lfunc_begin0 - .quad Lset1295 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1296 = Ltmp1955-Lfunc_begin0 - .quad Lset1296 -Lset1297 = Ltmp1956-Lfunc_begin0 - .quad Lset1297 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1298 = Ltmp1956-Lfunc_begin0 - .quad Lset1298 -Lset1299 = Ltmp1961-Lfunc_begin0 - .quad Lset1299 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1300 = Ltmp1961-Lfunc_begin0 - .quad Lset1300 -Lset1301 = Ltmp1969-Lfunc_begin0 - .quad Lset1301 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1302 = Ltmp1969-Lfunc_begin0 - .quad Lset1302 -Lset1303 = Ltmp1971-Lfunc_begin0 - .quad Lset1303 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1304 = Ltmp1971-Lfunc_begin0 - .quad Lset1304 -Lset1305 = Ltmp1979-Lfunc_begin0 - .quad Lset1305 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1306 = Ltmp1979-Lfunc_begin0 - .quad Lset1306 -Lset1307 = Ltmp1980-Lfunc_begin0 - .quad Lset1307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1308 = Ltmp1980-Lfunc_begin0 - .quad Lset1308 -Lset1309 = Ltmp2008-Lfunc_begin0 - .quad Lset1309 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1310 = Ltmp2009-Lfunc_begin0 - .quad Lset1310 -Lset1311 = Ltmp2021-Lfunc_begin0 - .quad Lset1311 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1312 = Ltmp2021-Lfunc_begin0 - .quad Lset1312 -Lset1313 = Ltmp2023-Lfunc_begin0 - .quad Lset1313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1314 = Ltmp2023-Lfunc_begin0 - .quad Lset1314 -Lset1315 = Ltmp2029-Lfunc_begin0 - .quad Lset1315 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1316 = Ltmp2030-Lfunc_begin0 - .quad Lset1316 -Lset1317 = Ltmp2033-Lfunc_begin0 - .quad Lset1317 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1318 = Ltmp2033-Lfunc_begin0 - .quad Lset1318 -Lset1319 = Ltmp2037-Lfunc_begin0 - .quad Lset1319 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1320 = Ltmp2037-Lfunc_begin0 - .quad Lset1320 -Lset1321 = Ltmp2038-Lfunc_begin0 - .quad Lset1321 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1322 = Ltmp2038-Lfunc_begin0 - .quad Lset1322 -Lset1323 = Ltmp2044-Lfunc_begin0 - .quad Lset1323 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1324 = Ltmp2044-Lfunc_begin0 - .quad Lset1324 -Lset1325 = Ltmp2052-Lfunc_begin0 - .quad Lset1325 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1326 = Ltmp2052-Lfunc_begin0 - .quad Lset1326 -Lset1327 = Ltmp2054-Lfunc_begin0 - .quad Lset1327 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1328 = Ltmp2054-Lfunc_begin0 - .quad Lset1328 -Lset1329 = Ltmp2062-Lfunc_begin0 - .quad Lset1329 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1330 = Ltmp2062-Lfunc_begin0 - .quad Lset1330 -Lset1331 = Ltmp2063-Lfunc_begin0 - .quad Lset1331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1332 = Ltmp2063-Lfunc_begin0 - .quad Lset1332 -Lset1333 = Ltmp2087-Lfunc_begin0 - .quad Lset1333 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1334 = Ltmp2089-Lfunc_begin0 - .quad Lset1334 -Lset1335 = Ltmp2099-Lfunc_begin0 - .quad Lset1335 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1336 = Ltmp2099-Lfunc_begin0 - .quad Lset1336 -Lset1337 = Ltmp2101-Lfunc_begin0 - .quad Lset1337 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1338 = Ltmp2101-Lfunc_begin0 - .quad Lset1338 -Lset1339 = Ltmp2103-Lfunc_begin0 - .quad Lset1339 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1340 = Ltmp2103-Lfunc_begin0 - .quad Lset1340 -Lset1341 = Ltmp2107-Lfunc_begin0 - .quad Lset1341 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1342 = Ltmp2109-Lfunc_begin0 - .quad Lset1342 -Lset1343 = Ltmp2121-Lfunc_begin0 - .quad Lset1343 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1344 = Ltmp2121-Lfunc_begin0 - .quad Lset1344 -Lset1345 = Ltmp2123-Lfunc_begin0 - .quad Lset1345 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1346 = Ltmp2123-Lfunc_begin0 - .quad Lset1346 -Lset1347 = Ltmp2131-Lfunc_begin0 - .quad Lset1347 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1348 = Ltmp2131-Lfunc_begin0 - .quad Lset1348 -Lset1349 = Ltmp2133-Lfunc_begin0 - .quad Lset1349 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1350 = Ltmp2133-Lfunc_begin0 - .quad Lset1350 -Lset1351 = Ltmp2142-Lfunc_begin0 - .quad Lset1351 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1352 = Ltmp2142-Lfunc_begin0 - .quad Lset1352 -Lset1353 = Ltmp2143-Lfunc_begin0 - .quad Lset1353 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1354 = Ltmp2143-Lfunc_begin0 - .quad Lset1354 -Lset1355 = Ltmp2165-Lfunc_begin0 - .quad Lset1355 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1356 = Ltmp2167-Lfunc_begin0 - .quad Lset1356 -Lset1357 = Ltmp2177-Lfunc_begin0 - .quad Lset1357 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1358 = Ltmp2177-Lfunc_begin0 - .quad Lset1358 -Lset1359 = Ltmp2179-Lfunc_begin0 - .quad Lset1359 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1360 = Ltmp2179-Lfunc_begin0 - .quad Lset1360 -Lset1361 = Ltmp2181-Lfunc_begin0 - .quad Lset1361 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1362 = Ltmp2181-Lfunc_begin0 - .quad Lset1362 -Lset1363 = Ltmp2185-Lfunc_begin0 - .quad Lset1363 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1364 = Ltmp2187-Lfunc_begin0 - .quad Lset1364 -Lset1365 = Ltmp2199-Lfunc_begin0 - .quad Lset1365 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1366 = Ltmp2199-Lfunc_begin0 - .quad Lset1366 -Lset1367 = Ltmp2201-Lfunc_begin0 - .quad Lset1367 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1368 = Ltmp2201-Lfunc_begin0 - .quad Lset1368 -Lset1369 = Ltmp2209-Lfunc_begin0 - .quad Lset1369 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1370 = Ltmp2209-Lfunc_begin0 - .quad Lset1370 -Lset1371 = Ltmp2211-Lfunc_begin0 - .quad Lset1371 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1372 = Ltmp2211-Lfunc_begin0 - .quad Lset1372 -Lset1373 = Ltmp2220-Lfunc_begin0 - .quad Lset1373 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1374 = Ltmp2220-Lfunc_begin0 - .quad Lset1374 -Lset1375 = Ltmp2221-Lfunc_begin0 - .quad Lset1375 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1376 = Ltmp2221-Lfunc_begin0 - .quad Lset1376 -Lset1377 = Ltmp2243-Lfunc_begin0 - .quad Lset1377 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1378 = Ltmp2245-Lfunc_begin0 - .quad Lset1378 -Lset1379 = Ltmp2255-Lfunc_begin0 - .quad Lset1379 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1380 = Ltmp2255-Lfunc_begin0 - .quad Lset1380 -Lset1381 = Ltmp2257-Lfunc_begin0 - .quad Lset1381 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1382 = Ltmp2257-Lfunc_begin0 - .quad Lset1382 -Lset1383 = Ltmp2259-Lfunc_begin0 - .quad Lset1383 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1384 = Ltmp2259-Lfunc_begin0 - .quad Lset1384 -Lset1385 = Ltmp2263-Lfunc_begin0 - .quad Lset1385 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1386 = Ltmp2265-Lfunc_begin0 - .quad Lset1386 -Lset1387 = Ltmp2277-Lfunc_begin0 - .quad Lset1387 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1388 = Ltmp2277-Lfunc_begin0 - .quad Lset1388 -Lset1389 = Ltmp2279-Lfunc_begin0 - .quad Lset1389 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1390 = Ltmp2279-Lfunc_begin0 - .quad Lset1390 -Lset1391 = Ltmp2287-Lfunc_begin0 - .quad Lset1391 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1392 = Ltmp2287-Lfunc_begin0 - .quad Lset1392 -Lset1393 = Ltmp2289-Lfunc_begin0 - .quad Lset1393 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1394 = Ltmp2289-Lfunc_begin0 - .quad Lset1394 -Lset1395 = Ltmp2298-Lfunc_begin0 - .quad Lset1395 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1396 = Ltmp2298-Lfunc_begin0 - .quad Lset1396 -Lset1397 = Ltmp2299-Lfunc_begin0 - .quad Lset1397 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1398 = Ltmp2299-Lfunc_begin0 - .quad Lset1398 -Lset1399 = Ltmp2321-Lfunc_begin0 - .quad Lset1399 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1400 = Ltmp2322-Lfunc_begin0 - .quad Lset1400 -Lset1401 = Ltmp2332-Lfunc_begin0 - .quad Lset1401 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1402 = Ltmp2332-Lfunc_begin0 - .quad Lset1402 -Lset1403 = Ltmp2334-Lfunc_begin0 - .quad Lset1403 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1404 = Ltmp2334-Lfunc_begin0 - .quad Lset1404 -Lset1405 = Ltmp2336-Lfunc_begin0 - .quad Lset1405 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1406 = Ltmp2336-Lfunc_begin0 - .quad Lset1406 -Lset1407 = Ltmp2340-Lfunc_begin0 - .quad Lset1407 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1408 = Ltmp2341-Lfunc_begin0 - .quad Lset1408 -Lset1409 = Ltmp2353-Lfunc_begin0 - .quad Lset1409 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1410 = Ltmp2353-Lfunc_begin0 - .quad Lset1410 -Lset1411 = Ltmp2354-Lfunc_begin0 - .quad Lset1411 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1412 = Ltmp2354-Lfunc_begin0 - .quad Lset1412 -Lset1413 = Ltmp2362-Lfunc_begin0 - .quad Lset1413 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1414 = Ltmp2362-Lfunc_begin0 - .quad Lset1414 -Lset1415 = Ltmp2363-Lfunc_begin0 - .quad Lset1415 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1416 = Ltmp2363-Lfunc_begin0 - .quad Lset1416 -Lset1417 = Ltmp2372-Lfunc_begin0 - .quad Lset1417 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1418 = Ltmp2372-Lfunc_begin0 - .quad Lset1418 -Lset1419 = Ltmp2373-Lfunc_begin0 - .quad Lset1419 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1420 = Ltmp2373-Lfunc_begin0 - .quad Lset1420 -Lset1421 = Ltmp2397-Lfunc_begin0 - .quad Lset1421 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1422 = Ltmp2398-Lfunc_begin0 - .quad Lset1422 -Lset1423 = Ltmp2403-Lfunc_begin0 - .quad Lset1423 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1424 = Ltmp2404-Lfunc_begin0 - .quad Lset1424 -Lset1425 = Ltmp2414-Lfunc_begin0 - .quad Lset1425 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1426 = Ltmp2414-Lfunc_begin0 - .quad Lset1426 -Lset1427 = Ltmp2416-Lfunc_begin0 - .quad Lset1427 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1428 = Ltmp2416-Lfunc_begin0 - .quad Lset1428 -Lset1429 = Ltmp2418-Lfunc_begin0 - .quad Lset1429 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1430 = Ltmp2418-Lfunc_begin0 - .quad Lset1430 -Lset1431 = Ltmp2422-Lfunc_begin0 - .quad Lset1431 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1432 = Ltmp2423-Lfunc_begin0 - .quad Lset1432 -Lset1433 = Ltmp2435-Lfunc_begin0 - .quad Lset1433 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1434 = Ltmp2435-Lfunc_begin0 - .quad Lset1434 -Lset1435 = Ltmp2436-Lfunc_begin0 - .quad Lset1435 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1436 = Ltmp2436-Lfunc_begin0 - .quad Lset1436 -Lset1437 = Ltmp2444-Lfunc_begin0 - .quad Lset1437 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1438 = Ltmp2444-Lfunc_begin0 - .quad Lset1438 -Lset1439 = Ltmp2445-Lfunc_begin0 - .quad Lset1439 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1440 = Ltmp2445-Lfunc_begin0 - .quad Lset1440 -Lset1441 = Ltmp2454-Lfunc_begin0 - .quad Lset1441 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1442 = Ltmp2454-Lfunc_begin0 - .quad Lset1442 -Lset1443 = Ltmp2455-Lfunc_begin0 - .quad Lset1443 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1444 = Ltmp2455-Lfunc_begin0 - .quad Lset1444 -Lset1445 = Ltmp2482-Lfunc_begin0 - .quad Lset1445 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1446 = Ltmp2483-Lfunc_begin0 - .quad Lset1446 -Lset1447 = Ltmp2490-Lfunc_begin0 - .quad Lset1447 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1448 = Ltmp2490-Lfunc_begin0 - .quad Lset1448 -Lset1449 = Ltmp2492-Lfunc_begin0 - .quad Lset1449 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1450 = Ltmp2492-Lfunc_begin0 - .quad Lset1450 -Lset1451 = Ltmp2497-Lfunc_begin0 - .quad Lset1451 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1452 = Ltmp2499-Lfunc_begin0 - .quad Lset1452 -Lset1453 = Ltmp2501-Lfunc_begin0 - .quad Lset1453 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1454 = Ltmp2501-Lfunc_begin0 - .quad Lset1454 -Lset1455 = Ltmp2502-Lfunc_begin0 - .quad Lset1455 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1456 = Ltmp2502-Lfunc_begin0 - .quad Lset1456 -Lset1457 = Ltmp2505-Lfunc_begin0 - .quad Lset1457 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1458 = Ltmp2505-Lfunc_begin0 - .quad Lset1458 -Lset1459 = Ltmp2506-Lfunc_begin0 - .quad Lset1459 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1460 = Ltmp2507-Lfunc_begin0 - .quad Lset1460 -Lset1461 = Ltmp2512-Lfunc_begin0 - .quad Lset1461 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1462 = Ltmp2512-Lfunc_begin0 - .quad Lset1462 -Lset1463 = Ltmp2516-Lfunc_begin0 - .quad Lset1463 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1464 = Ltmp2516-Lfunc_begin0 - .quad Lset1464 -Lset1465 = Ltmp2518-Lfunc_begin0 - .quad Lset1465 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1466 = Ltmp2518-Lfunc_begin0 - .quad Lset1466 -Lset1467 = Ltmp2521-Lfunc_begin0 - .quad Lset1467 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1468 = Ltmp2522-Lfunc_begin0 - .quad Lset1468 -Lset1469 = Ltmp2526-Lfunc_begin0 - .quad Lset1469 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1470 = Ltmp2526-Lfunc_begin0 - .quad Lset1470 -Lset1471 = Ltmp2527-Lfunc_begin0 - .quad Lset1471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1472 = Ltmp2527-Lfunc_begin0 - .quad Lset1472 -Lset1473 = Ltmp2533-Lfunc_begin0 - .quad Lset1473 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1474 = Ltmp2534-Lfunc_begin0 - .quad Lset1474 -Lset1475 = Ltmp2551-Lfunc_begin0 - .quad Lset1475 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1476 = Ltmp2551-Lfunc_begin0 - .quad Lset1476 -Lset1477 = Ltmp2561-Lfunc_begin0 - .quad Lset1477 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1478 = Ltmp2561-Lfunc_begin0 - .quad Lset1478 -Lset1479 = Ltmp2577-Lfunc_begin0 - .quad Lset1479 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1480 = Ltmp2577-Lfunc_begin0 - .quad Lset1480 -Lset1481 = Ltmp2579-Lfunc_begin0 - .quad Lset1481 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1482 = Ltmp2579-Lfunc_begin0 - .quad Lset1482 -Lset1483 = Ltmp2584-Lfunc_begin0 - .quad Lset1483 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1484 = Ltmp2586-Lfunc_begin0 - .quad Lset1484 -Lset1485 = Ltmp2588-Lfunc_begin0 - .quad Lset1485 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1486 = Ltmp2588-Lfunc_begin0 - .quad Lset1486 -Lset1487 = Ltmp2589-Lfunc_begin0 - .quad Lset1487 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1488 = Ltmp2589-Lfunc_begin0 - .quad Lset1488 -Lset1489 = Ltmp2592-Lfunc_begin0 - .quad Lset1489 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1490 = Ltmp2592-Lfunc_begin0 - .quad Lset1490 -Lset1491 = Ltmp2593-Lfunc_begin0 - .quad Lset1491 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1492 = Ltmp2594-Lfunc_begin0 - .quad Lset1492 -Lset1493 = Ltmp2599-Lfunc_begin0 - .quad Lset1493 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1494 = Ltmp2599-Lfunc_begin0 - .quad Lset1494 -Lset1495 = Ltmp2603-Lfunc_begin0 - .quad Lset1495 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1496 = Ltmp2603-Lfunc_begin0 - .quad Lset1496 -Lset1497 = Ltmp2605-Lfunc_begin0 - .quad Lset1497 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1498 = Ltmp2605-Lfunc_begin0 - .quad Lset1498 -Lset1499 = Ltmp2608-Lfunc_begin0 - .quad Lset1499 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1500 = Ltmp2609-Lfunc_begin0 - .quad Lset1500 -Lset1501 = Ltmp2613-Lfunc_begin0 - .quad Lset1501 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1502 = Ltmp2613-Lfunc_begin0 - .quad Lset1502 -Lset1503 = Ltmp2614-Lfunc_begin0 - .quad Lset1503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1504 = Ltmp2614-Lfunc_begin0 - .quad Lset1504 -Lset1505 = Ltmp2621-Lfunc_begin0 - .quad Lset1505 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1506 = Ltmp2622-Lfunc_begin0 - .quad Lset1506 -Lset1507 = Ltmp2643-Lfunc_begin0 - .quad Lset1507 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1508 = Ltmp2643-Lfunc_begin0 - .quad Lset1508 -Lset1509 = Ltmp2648-Lfunc_begin0 - .quad Lset1509 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1510 = Ltmp2648-Lfunc_begin0 - .quad Lset1510 -Lset1511 = Ltmp2665-Lfunc_begin0 - .quad Lset1511 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1512 = Ltmp2665-Lfunc_begin0 - .quad Lset1512 -Lset1513 = Ltmp2667-Lfunc_begin0 - .quad Lset1513 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1514 = Ltmp2667-Lfunc_begin0 - .quad Lset1514 -Lset1515 = Ltmp2673-Lfunc_begin0 - .quad Lset1515 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1516 = Ltmp2674-Lfunc_begin0 - .quad Lset1516 -Lset1517 = Ltmp2675-Lfunc_begin0 - .quad Lset1517 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1518 = Ltmp2675-Lfunc_begin0 - .quad Lset1518 -Lset1519 = Ltmp2676-Lfunc_begin0 - .quad Lset1519 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1520 = Ltmp2676-Lfunc_begin0 - .quad Lset1520 -Lset1521 = Ltmp2677-Lfunc_begin0 - .quad Lset1521 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1522 = Ltmp2677-Lfunc_begin0 - .quad Lset1522 -Lset1523 = Ltmp2681-Lfunc_begin0 - .quad Lset1523 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1524 = Ltmp2681-Lfunc_begin0 - .quad Lset1524 -Lset1525 = Ltmp2682-Lfunc_begin0 - .quad Lset1525 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1526 = Ltmp2683-Lfunc_begin0 - .quad Lset1526 -Lset1527 = Ltmp2689-Lfunc_begin0 - .quad Lset1527 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1528 = Ltmp2689-Lfunc_begin0 - .quad Lset1528 -Lset1529 = Ltmp2693-Lfunc_begin0 - .quad Lset1529 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1530 = Ltmp2693-Lfunc_begin0 - .quad Lset1530 -Lset1531 = Ltmp2695-Lfunc_begin0 - .quad Lset1531 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1532 = Ltmp2695-Lfunc_begin0 - .quad Lset1532 -Lset1533 = Ltmp2702-Lfunc_begin0 - .quad Lset1533 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1534 = Ltmp2702-Lfunc_begin0 - .quad Lset1534 -Lset1535 = Ltmp2703-Lfunc_begin0 - .quad Lset1535 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1536 = Ltmp2703-Lfunc_begin0 - .quad Lset1536 -Lset1537 = Ltmp2718-Lfunc_begin0 - .quad Lset1537 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1538 = Ltmp2718-Lfunc_begin0 - .quad Lset1538 -Lset1539 = Ltmp2722-Lfunc_begin0 - .quad Lset1539 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1540 = Ltmp2722-Lfunc_begin0 - .quad Lset1540 -Lset1541 = Ltmp2732-Lfunc_begin0 - .quad Lset1541 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1542 = Ltmp2732-Lfunc_begin0 - .quad Lset1542 -Lset1543 = Ltmp2734-Lfunc_begin0 - .quad Lset1543 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1544 = Ltmp2734-Lfunc_begin0 - .quad Lset1544 -Lset1545 = Ltmp2739-Lfunc_begin0 - .quad Lset1545 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1546 = Ltmp2740-Lfunc_begin0 - .quad Lset1546 -Lset1547 = Ltmp2746-Lfunc_begin0 - .quad Lset1547 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1548 = Ltmp2746-Lfunc_begin0 - .quad Lset1548 -Lset1549 = Ltmp2754-Lfunc_begin0 - .quad Lset1549 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1550 = Ltmp2754-Lfunc_begin0 - .quad Lset1550 -Lset1551 = Ltmp2755-Lfunc_begin0 - .quad Lset1551 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1552 = Ltmp2755-Lfunc_begin0 - .quad Lset1552 -Lset1553 = Ltmp2778-Lfunc_begin0 - .quad Lset1553 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1554 = Ltmp2778-Lfunc_begin0 - .quad Lset1554 -Lset1555 = Ltmp2790-Lfunc_begin0 - .quad Lset1555 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1556 = Ltmp2790-Lfunc_begin0 - .quad Lset1556 -Lset1557 = Ltmp2792-Lfunc_begin0 - .quad Lset1557 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1558 = Ltmp2792-Lfunc_begin0 - .quad Lset1558 -Lset1559 = Ltmp2794-Lfunc_begin0 - .quad Lset1559 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1560 = Ltmp2794-Lfunc_begin0 - .quad Lset1560 -Lset1561 = Ltmp2798-Lfunc_begin0 - .quad Lset1561 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1562 = Ltmp2798-Lfunc_begin0 - .quad Lset1562 -Lset1563 = Ltmp2801-Lfunc_begin0 - .quad Lset1563 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1564 = Ltmp2801-Lfunc_begin0 - .quad Lset1564 -Lset1565 = Ltmp2802-Lfunc_begin0 - .quad Lset1565 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1566 = Ltmp2802-Lfunc_begin0 - .quad Lset1566 -Lset1567 = Ltmp2811-Lfunc_begin0 - .quad Lset1567 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1568 = Ltmp2811-Lfunc_begin0 - .quad Lset1568 -Lset1569 = Ltmp2812-Lfunc_begin0 - .quad Lset1569 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset1570 = Ltmp2812-Lfunc_begin0 - .quad Lset1570 -Lset1571 = Ltmp2813-Lfunc_begin0 - .quad Lset1571 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1572 = Ltmp2813-Lfunc_begin0 - .quad Lset1572 -Lset1573 = Ltmp2819-Lfunc_begin0 - .quad Lset1573 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1574 = Ltmp2819-Lfunc_begin0 - .quad Lset1574 -Lset1575 = Ltmp2824-Lfunc_begin0 - .quad Lset1575 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1576 = Ltmp2824-Lfunc_begin0 - .quad Lset1576 -Lset1577 = Ltmp2833-Lfunc_begin0 - .quad Lset1577 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1578 = Ltmp2833-Lfunc_begin0 - .quad Lset1578 -Lset1579 = Ltmp2835-Lfunc_begin0 - .quad Lset1579 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1580 = Ltmp2835-Lfunc_begin0 - .quad Lset1580 -Lset1581 = Ltmp2853-Lfunc_begin0 - .quad Lset1581 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1582 = Ltmp2853-Lfunc_begin0 - .quad Lset1582 -Lset1583 = Ltmp2854-Lfunc_begin0 - .quad Lset1583 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1584 = Ltmp2854-Lfunc_begin0 - .quad Lset1584 -Lset1585 = Ltmp2860-Lfunc_begin0 - .quad Lset1585 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1586 = Ltmp2860-Lfunc_begin0 - .quad Lset1586 -Lset1587 = Ltmp2861-Lfunc_begin0 - .quad Lset1587 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1588 = Ltmp2861-Lfunc_begin0 - .quad Lset1588 -Lset1589 = Ltmp2873-Lfunc_begin0 - .quad Lset1589 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1590 = Ltmp2873-Lfunc_begin0 - .quad Lset1590 -Lset1591 = Ltmp2875-Lfunc_begin0 - .quad Lset1591 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1592 = Ltmp2875-Lfunc_begin0 - .quad Lset1592 -Lset1593 = Ltmp2887-Lfunc_begin0 - .quad Lset1593 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1594 = Ltmp2887-Lfunc_begin0 - .quad Lset1594 -Lset1595 = Ltmp2888-Lfunc_begin0 - .quad Lset1595 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1596 = Ltmp2888-Lfunc_begin0 - .quad Lset1596 -Lset1597 = Ltmp2897-Lfunc_begin0 - .quad Lset1597 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1598 = Ltmp2897-Lfunc_begin0 - .quad Lset1598 -Lset1599 = Ltmp2898-Lfunc_begin0 - .quad Lset1599 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1600 = Ltmp2898-Lfunc_begin0 - .quad Lset1600 -Lset1601 = Ltmp2903-Lfunc_begin0 - .quad Lset1601 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1602 = Ltmp2906-Lfunc_begin0 - .quad Lset1602 -Lset1603 = Ltmp2916-Lfunc_begin0 - .quad Lset1603 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1604 = Ltmp2916-Lfunc_begin0 - .quad Lset1604 -Lset1605 = Ltmp2917-Lfunc_begin0 - .quad Lset1605 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1606 = Ltmp2917-Lfunc_begin0 - .quad Lset1606 -Lset1607 = Ltmp2924-Lfunc_begin0 - .quad Lset1607 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1608 = Ltmp2924-Lfunc_begin0 - .quad Lset1608 -Lset1609 = Ltmp2925-Lfunc_begin0 - .quad Lset1609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1610 = Ltmp2925-Lfunc_begin0 - .quad Lset1610 -Lset1611 = Ltmp2938-Lfunc_begin0 - .quad Lset1611 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1612 = Ltmp2938-Lfunc_begin0 - .quad Lset1612 -Lset1613 = Ltmp2940-Lfunc_begin0 - .quad Lset1613 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1614 = Ltmp2940-Lfunc_begin0 - .quad Lset1614 -Lset1615 = Ltmp2948-Lfunc_begin0 - .quad Lset1615 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1616 = Ltmp2948-Lfunc_begin0 - .quad Lset1616 -Lset1617 = Ltmp2958-Lfunc_begin0 - .quad Lset1617 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1618 = Ltmp2958-Lfunc_begin0 - .quad Lset1618 -Lset1619 = Ltmp2959-Lfunc_begin0 - .quad Lset1619 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1620 = Ltmp2959-Lfunc_begin0 - .quad Lset1620 -Lset1621 = Ltmp2962-Lfunc_begin0 - .quad Lset1621 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1622 = Ltmp2962-Lfunc_begin0 - .quad Lset1622 -Lset1623 = Ltmp2972-Lfunc_begin0 - .quad Lset1623 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1624 = Ltmp2972-Lfunc_begin0 - .quad Lset1624 -Lset1625 = Ltmp2974-Lfunc_begin0 - .quad Lset1625 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1626 = Ltmp2974-Lfunc_begin0 - .quad Lset1626 -Lset1627 = Ltmp2988-Lfunc_begin0 - .quad Lset1627 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1628 = Ltmp2988-Lfunc_begin0 - .quad Lset1628 -Lset1629 = Ltmp2989-Lfunc_begin0 - .quad Lset1629 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1630 = Ltmp2989-Lfunc_begin0 - .quad Lset1630 -Lset1631 = Ltmp2993-Lfunc_begin0 - .quad Lset1631 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1632 = Ltmp2996-Lfunc_begin0 - .quad Lset1632 -Lset1633 = Ltmp2997-Lfunc_begin0 - .quad Lset1633 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1634 = Ltmp2997-Lfunc_begin0 - .quad Lset1634 -Lset1635 = Ltmp2998-Lfunc_begin0 - .quad Lset1635 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1636 = Ltmp2998-Lfunc_begin0 - .quad Lset1636 -Lset1637 = Ltmp3004-Lfunc_begin0 - .quad Lset1637 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1638 = Ltmp3006-Lfunc_begin0 - .quad Lset1638 -Lset1639 = Ltmp3014-Lfunc_begin0 - .quad Lset1639 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1640 = Ltmp3014-Lfunc_begin0 - .quad Lset1640 -Lset1641 = Ltmp3016-Lfunc_begin0 - .quad Lset1641 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1642 = Ltmp3016-Lfunc_begin0 - .quad Lset1642 -Lset1643 = Ltmp3030-Lfunc_begin0 - .quad Lset1643 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1644 = Ltmp3030-Lfunc_begin0 - .quad Lset1644 -Lset1645 = Ltmp3031-Lfunc_begin0 - .quad Lset1645 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1646 = Ltmp3031-Lfunc_begin0 - .quad Lset1646 -Lset1647 = Ltmp3035-Lfunc_begin0 - .quad Lset1647 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1648 = Ltmp3038-Lfunc_begin0 - .quad Lset1648 -Lset1649 = Ltmp3039-Lfunc_begin0 - .quad Lset1649 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1650 = Ltmp3039-Lfunc_begin0 - .quad Lset1650 -Lset1651 = Ltmp3040-Lfunc_begin0 - .quad Lset1651 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1652 = Ltmp3040-Lfunc_begin0 - .quad Lset1652 -Lset1653 = Ltmp3046-Lfunc_begin0 - .quad Lset1653 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1654 = Ltmp3048-Lfunc_begin0 - .quad Lset1654 -Lset1655 = Ltmp3056-Lfunc_begin0 - .quad Lset1655 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1656 = Ltmp3056-Lfunc_begin0 - .quad Lset1656 -Lset1657 = Ltmp3058-Lfunc_begin0 - .quad Lset1657 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1658 = Ltmp3058-Lfunc_begin0 - .quad Lset1658 -Lset1659 = Ltmp3077-Lfunc_begin0 - .quad Lset1659 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1660 = Ltmp3077-Lfunc_begin0 - .quad Lset1660 -Lset1661 = Ltmp3078-Lfunc_begin0 - .quad Lset1661 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1662 = Ltmp3078-Lfunc_begin0 - .quad Lset1662 -Lset1663 = Ltmp3090-Lfunc_begin0 - .quad Lset1663 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1664 = Ltmp3090-Lfunc_begin0 - .quad Lset1664 -Lset1665 = Ltmp3092-Lfunc_begin0 - .quad Lset1665 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1666 = Ltmp3092-Lfunc_begin0 - .quad Lset1666 -Lset1667 = Ltmp3114-Lfunc_begin0 - .quad Lset1667 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1668 = Ltmp3114-Lfunc_begin0 - .quad Lset1668 -Lset1669 = Ltmp3115-Lfunc_begin0 - .quad Lset1669 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1670 = Ltmp3115-Lfunc_begin0 - .quad Lset1670 -Lset1671 = Ltmp3128-Lfunc_begin0 - .quad Lset1671 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1672 = Ltmp3128-Lfunc_begin0 - .quad Lset1672 -Lset1673 = Ltmp3130-Lfunc_begin0 - .quad Lset1673 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1674 = Ltmp3130-Lfunc_begin0 - .quad Lset1674 -Lset1675 = Ltmp3142-Lfunc_begin0 - .quad Lset1675 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1676 = Ltmp3142-Lfunc_begin0 - .quad Lset1676 -Lset1677 = Ltmp3143-Lfunc_begin0 - .quad Lset1677 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1678 = Ltmp3143-Lfunc_begin0 - .quad Lset1678 -Lset1679 = Ltmp3163-Lfunc_begin0 - .quad Lset1679 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1680 = Ltmp3163-Lfunc_begin0 - .quad Lset1680 -Lset1681 = Ltmp3165-Lfunc_begin0 - .quad Lset1681 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1682 = Ltmp3165-Lfunc_begin0 - .quad Lset1682 -Lset1683 = Ltmp3175-Lfunc_begin0 - .quad Lset1683 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1684 = Ltmp3175-Lfunc_begin0 - .quad Lset1684 -Lset1685 = Ltmp3176-Lfunc_begin0 - .quad Lset1685 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1686 = Ltmp3176-Lfunc_begin0 - .quad Lset1686 -Lset1687 = Ltmp3190-Lfunc_begin0 - .quad Lset1687 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1688 = Ltmp3190-Lfunc_begin0 - .quad Lset1688 -Lset1689 = Ltmp3204-Lfunc_begin0 - .quad Lset1689 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1690 = Ltmp3204-Lfunc_begin0 - .quad Lset1690 -Lset1691 = Ltmp3213-Lfunc_begin0 - .quad Lset1691 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1692 = Ltmp3213-Lfunc_begin0 - .quad Lset1692 -Lset1693 = Ltmp3214-Lfunc_begin0 - .quad Lset1693 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1694 = Ltmp3214-Lfunc_begin0 - .quad Lset1694 -Lset1695 = Ltmp3220-Lfunc_begin0 - .quad Lset1695 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1696 = Ltmp3220-Lfunc_begin0 - .quad Lset1696 -Lset1697 = Ltmp3224-Lfunc_begin0 - .quad Lset1697 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1698 = Ltmp3224-Lfunc_begin0 - .quad Lset1698 -Lset1699 = Ltmp3227-Lfunc_begin0 - .quad Lset1699 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1700 = Ltmp3227-Lfunc_begin0 - .quad Lset1700 -Lset1701 = Ltmp3229-Lfunc_begin0 - .quad Lset1701 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1702 = Ltmp3229-Lfunc_begin0 - .quad Lset1702 -Lset1703 = Ltmp3261-Lfunc_begin0 - .quad Lset1703 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1704 = Ltmp3261-Lfunc_begin0 - .quad Lset1704 -Lset1705 = Ltmp3262-Lfunc_begin0 - .quad Lset1705 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1706 = Ltmp3262-Lfunc_begin0 - .quad Lset1706 -Lset1707 = Ltmp3272-Lfunc_begin0 - .quad Lset1707 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1708 = Ltmp3273-Lfunc_begin0 - .quad Lset1708 -Lset1709 = Ltmp3277-Lfunc_begin0 - .quad Lset1709 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1710 = Ltmp3277-Lfunc_begin0 - .quad Lset1710 -Lset1711 = Ltmp3279-Lfunc_begin0 - .quad Lset1711 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1712 = Ltmp3279-Lfunc_begin0 - .quad Lset1712 -Lset1713 = Ltmp3283-Lfunc_begin0 - .quad Lset1713 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1714 = Ltmp3283-Lfunc_begin0 - .quad Lset1714 -Lset1715 = Ltmp3284-Lfunc_begin0 - .quad Lset1715 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1716 = Ltmp3285-Lfunc_begin0 - .quad Lset1716 -Lset1717 = Ltmp3290-Lfunc_begin0 - .quad Lset1717 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1718 = Ltmp3290-Lfunc_begin0 - .quad Lset1718 -Lset1719 = Ltmp3295-Lfunc_begin0 - .quad Lset1719 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1720 = Ltmp3295-Lfunc_begin0 - .quad Lset1720 -Lset1721 = Ltmp3296-Lfunc_begin0 - .quad Lset1721 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1722 = Ltmp3297-Lfunc_begin0 - .quad Lset1722 -Lset1723 = Ltmp3302-Lfunc_begin0 - .quad Lset1723 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1724 = Ltmp3302-Lfunc_begin0 - .quad Lset1724 -Lset1725 = Ltmp3304-Lfunc_begin0 - .quad Lset1725 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1726 = Ltmp3304-Lfunc_begin0 - .quad Lset1726 -Lset1727 = Ltmp3319-Lfunc_begin0 - .quad Lset1727 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1728 = Ltmp3322-Lfunc_begin0 - .quad Lset1728 -Lset1729 = Ltmp3324-Lfunc_begin0 - .quad Lset1729 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1730 = Ltmp3324-Lfunc_begin0 - .quad Lset1730 -Lset1731 = Ltmp3364-Lfunc_begin0 - .quad Lset1731 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1732 = Ltmp3364-Lfunc_begin0 - .quad Lset1732 -Lset1733 = Ltmp3366-Lfunc_begin0 - .quad Lset1733 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1734 = Ltmp3366-Lfunc_begin0 - .quad Lset1734 -Lset1735 = Ltmp3376-Lfunc_begin0 - .quad Lset1735 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1736 = Ltmp3376-Lfunc_begin0 - .quad Lset1736 -Lset1737 = Ltmp3378-Lfunc_begin0 - .quad Lset1737 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1738 = Ltmp3378-Lfunc_begin0 - .quad Lset1738 -Lset1739 = Ltmp3393-Lfunc_begin0 - .quad Lset1739 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1740 = Ltmp3393-Lfunc_begin0 - .quad Lset1740 -Lset1741 = Ltmp3394-Lfunc_begin0 - .quad Lset1741 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1742 = Ltmp3394-Lfunc_begin0 - .quad Lset1742 -Lset1743 = Ltmp3403-Lfunc_begin0 - .quad Lset1743 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1744 = Ltmp3405-Lfunc_begin0 - .quad Lset1744 -Lset1745 = Ltmp3418-Lfunc_begin0 - .quad Lset1745 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1746 = Ltmp3418-Lfunc_begin0 - .quad Lset1746 -Lset1747 = Ltmp3422-Lfunc_begin0 - .quad Lset1747 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1748 = Ltmp3422-Lfunc_begin0 - .quad Lset1748 -Lset1749 = Ltmp3477-Lfunc_begin0 - .quad Lset1749 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1750 = Ltmp3477-Lfunc_begin0 - .quad Lset1750 -Lset1751 = Ltmp3488-Lfunc_begin0 - .quad Lset1751 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1752 = Ltmp3488-Lfunc_begin0 - .quad Lset1752 -Lset1753 = Ltmp3490-Lfunc_begin0 - .quad Lset1753 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1754 = Ltmp3490-Lfunc_begin0 - .quad Lset1754 -Lset1755 = Ltmp3494-Lfunc_begin0 - .quad Lset1755 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1756 = Ltmp3494-Lfunc_begin0 - .quad Lset1756 -Lset1757 = Ltmp3512-Lfunc_begin0 - .quad Lset1757 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1758 = Ltmp3512-Lfunc_begin0 - .quad Lset1758 -Lset1759 = Ltmp3514-Lfunc_begin0 - .quad Lset1759 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1760 = Ltmp3514-Lfunc_begin0 - .quad Lset1760 -Lset1761 = Ltmp3533-Lfunc_begin0 - .quad Lset1761 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1762 = Ltmp3533-Lfunc_begin0 - .quad Lset1762 -Lset1763 = Ltmp3534-Lfunc_begin0 - .quad Lset1763 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1764 = Ltmp3534-Lfunc_begin0 - .quad Lset1764 -Lset1765 = Ltmp3535-Lfunc_begin0 - .quad Lset1765 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1766 = Ltmp3535-Lfunc_begin0 - .quad Lset1766 -Lset1767 = Ltmp3539-Lfunc_begin0 - .quad Lset1767 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1768 = Ltmp3539-Lfunc_begin0 - .quad Lset1768 -Lset1769 = Ltmp3541-Lfunc_begin0 - .quad Lset1769 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1770 = Ltmp3541-Lfunc_begin0 - .quad Lset1770 -Lset1771 = Ltmp3554-Lfunc_begin0 - .quad Lset1771 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1772 = Ltmp3554-Lfunc_begin0 - .quad Lset1772 -Lset1773 = Ltmp3555-Lfunc_begin0 - .quad Lset1773 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1774 = Ltmp3555-Lfunc_begin0 - .quad Lset1774 -Lset1775 = Ltmp3569-Lfunc_begin0 - .quad Lset1775 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1776 = Ltmp3569-Lfunc_begin0 - .quad Lset1776 -Lset1777 = Ltmp3570-Lfunc_begin0 - .quad Lset1777 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1778 = Ltmp3570-Lfunc_begin0 - .quad Lset1778 -Lset1779 = Ltmp3602-Lfunc_begin0 - .quad Lset1779 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1780 = Ltmp3602-Lfunc_begin0 - .quad Lset1780 -Lset1781 = Ltmp3604-Lfunc_begin0 - .quad Lset1781 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1782 = Ltmp3604-Lfunc_begin0 - .quad Lset1782 -Lset1783 = Ltmp3616-Lfunc_begin0 - .quad Lset1783 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1784 = Ltmp3616-Lfunc_begin0 - .quad Lset1784 -Lset1785 = Ltmp3618-Lfunc_begin0 - .quad Lset1785 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1786 = Ltmp3618-Lfunc_begin0 - .quad Lset1786 -Lset1787 = Ltmp3633-Lfunc_begin0 - .quad Lset1787 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1788 = Ltmp3633-Lfunc_begin0 - .quad Lset1788 -Lset1789 = Ltmp3635-Lfunc_begin0 - .quad Lset1789 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1790 = Ltmp3635-Lfunc_begin0 - .quad Lset1790 -Lset1791 = Ltmp3650-Lfunc_begin0 - .quad Lset1791 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1792 = Ltmp3650-Lfunc_begin0 - .quad Lset1792 -Lset1793 = Ltmp3652-Lfunc_begin0 - .quad Lset1793 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1794 = Ltmp3652-Lfunc_begin0 - .quad Lset1794 -Lset1795 = Ltmp3667-Lfunc_begin0 - .quad Lset1795 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1796 = Ltmp3667-Lfunc_begin0 - .quad Lset1796 -Lset1797 = Ltmp3669-Lfunc_begin0 - .quad Lset1797 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1798 = Ltmp3669-Lfunc_begin0 - .quad Lset1798 -Lset1799 = Ltmp3694-Lfunc_begin0 - .quad Lset1799 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1800 = Ltmp3694-Lfunc_begin0 - .quad Lset1800 -Lset1801 = Ltmp3696-Lfunc_begin0 - .quad Lset1801 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1802 = Ltmp3696-Lfunc_begin0 - .quad Lset1802 -Lset1803 = Ltmp3723-Lfunc_begin0 - .quad Lset1803 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1804 = Ltmp3723-Lfunc_begin0 - .quad Lset1804 -Lset1805 = Ltmp3725-Lfunc_begin0 - .quad Lset1805 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1806 = Ltmp3725-Lfunc_begin0 - .quad Lset1806 -Lset1807 = Ltmp3740-Lfunc_begin0 - .quad Lset1807 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1808 = Ltmp3740-Lfunc_begin0 - .quad Lset1808 -Lset1809 = Ltmp3742-Lfunc_begin0 - .quad Lset1809 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1810 = Ltmp3742-Lfunc_begin0 - .quad Lset1810 -Lset1811 = Ltmp3755-Lfunc_begin0 - .quad Lset1811 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1812 = Ltmp3755-Lfunc_begin0 - .quad Lset1812 -Lset1813 = Ltmp3756-Lfunc_begin0 - .quad Lset1813 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1814 = Ltmp3756-Lfunc_begin0 - .quad Lset1814 -Lset1815 = Ltmp3770-Lfunc_begin0 - .quad Lset1815 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1816 = Ltmp3770-Lfunc_begin0 - .quad Lset1816 -Lset1817 = Ltmp3772-Lfunc_begin0 - .quad Lset1817 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1818 = Ltmp3772-Lfunc_begin0 - .quad Lset1818 -Lset1819 = Ltmp3785-Lfunc_begin0 - .quad Lset1819 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1820 = Ltmp3785-Lfunc_begin0 - .quad Lset1820 -Lset1821 = Ltmp3786-Lfunc_begin0 - .quad Lset1821 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1822 = Ltmp3786-Lfunc_begin0 - .quad Lset1822 -Lset1823 = Ltmp3800-Lfunc_begin0 - .quad Lset1823 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1824 = Ltmp3800-Lfunc_begin0 - .quad Lset1824 -Lset1825 = Ltmp3802-Lfunc_begin0 - .quad Lset1825 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1826 = Ltmp3802-Lfunc_begin0 - .quad Lset1826 -Lset1827 = Ltmp3815-Lfunc_begin0 - .quad Lset1827 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1828 = Ltmp3815-Lfunc_begin0 - .quad Lset1828 -Lset1829 = Ltmp3816-Lfunc_begin0 - .quad Lset1829 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1830 = Ltmp3816-Lfunc_begin0 - .quad Lset1830 -Lset1831 = Ltmp3830-Lfunc_begin0 - .quad Lset1831 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1832 = Ltmp3830-Lfunc_begin0 - .quad Lset1832 -Lset1833 = Ltmp3832-Lfunc_begin0 - .quad Lset1833 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1834 = Ltmp3832-Lfunc_begin0 - .quad Lset1834 -Lset1835 = Ltmp3845-Lfunc_begin0 - .quad Lset1835 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1836 = Ltmp3845-Lfunc_begin0 - .quad Lset1836 -Lset1837 = Ltmp3846-Lfunc_begin0 - .quad Lset1837 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1838 = Ltmp3846-Lfunc_begin0 - .quad Lset1838 -Lset1839 = Ltmp3860-Lfunc_begin0 - .quad Lset1839 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1840 = Ltmp3860-Lfunc_begin0 - .quad Lset1840 -Lset1841 = Ltmp3862-Lfunc_begin0 - .quad Lset1841 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1842 = Ltmp3862-Lfunc_begin0 - .quad Lset1842 -Lset1843 = Ltmp3875-Lfunc_begin0 - .quad Lset1843 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1844 = Ltmp3875-Lfunc_begin0 - .quad Lset1844 -Lset1845 = Ltmp3876-Lfunc_begin0 - .quad Lset1845 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1846 = Ltmp3876-Lfunc_begin0 - .quad Lset1846 -Lset1847 = Ltmp3890-Lfunc_begin0 - .quad Lset1847 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1848 = Ltmp3890-Lfunc_begin0 - .quad Lset1848 -Lset1849 = Ltmp3892-Lfunc_begin0 - .quad Lset1849 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1850 = Ltmp3892-Lfunc_begin0 - .quad Lset1850 -Lset1851 = Ltmp3905-Lfunc_begin0 - .quad Lset1851 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1852 = Ltmp3905-Lfunc_begin0 - .quad Lset1852 -Lset1853 = Ltmp3906-Lfunc_begin0 - .quad Lset1853 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset1854 = Ltmp3906-Lfunc_begin0 - .quad Lset1854 -Lset1855 = Ltmp3920-Lfunc_begin0 - .quad Lset1855 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1856 = Ltmp3920-Lfunc_begin0 - .quad Lset1856 -Lset1857 = Ltmp3922-Lfunc_begin0 - .quad Lset1857 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1858 = Ltmp3922-Lfunc_begin0 - .quad Lset1858 -Lset1859 = Ltmp3943-Lfunc_begin0 - .quad Lset1859 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1860 = Ltmp3943-Lfunc_begin0 - .quad Lset1860 -Lset1861 = Ltmp3944-Lfunc_begin0 - .quad Lset1861 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1862 = Ltmp3944-Lfunc_begin0 - .quad Lset1862 -Lset1863 = Ltmp3965-Lfunc_begin0 - .quad Lset1863 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1864 = Ltmp3965-Lfunc_begin0 - .quad Lset1864 -Lset1865 = Ltmp3966-Lfunc_begin0 - .quad Lset1865 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1866 = Ltmp3966-Lfunc_begin0 - .quad Lset1866 -Lset1867 = Ltmp3972-Lfunc_begin0 - .quad Lset1867 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1868 = Ltmp3972-Lfunc_begin0 - .quad Lset1868 -Lset1869 = Ltmp3973-Lfunc_begin0 - .quad Lset1869 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1870 = Ltmp3973-Lfunc_begin0 - .quad Lset1870 -Lset1871 = Ltmp3978-Lfunc_begin0 - .quad Lset1871 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1872 = Ltmp3978-Lfunc_begin0 - .quad Lset1872 -Lset1873 = Ltmp3979-Lfunc_begin0 - .quad Lset1873 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1874 = Ltmp3979-Lfunc_begin0 - .quad Lset1874 -Lset1875 = Ltmp3994-Lfunc_begin0 - .quad Lset1875 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1876 = Ltmp3994-Lfunc_begin0 - .quad Lset1876 -Lset1877 = Ltmp3995-Lfunc_begin0 - .quad Lset1877 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1878 = Ltmp3995-Lfunc_begin0 - .quad Lset1878 -Lset1879 = Ltmp4001-Lfunc_begin0 - .quad Lset1879 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1880 = Ltmp4001-Lfunc_begin0 - .quad Lset1880 -Lset1881 = Ltmp4002-Lfunc_begin0 - .quad Lset1881 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1882 = Ltmp4002-Lfunc_begin0 - .quad Lset1882 -Lset1883 = Ltmp4007-Lfunc_begin0 - .quad Lset1883 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1884 = Ltmp4007-Lfunc_begin0 - .quad Lset1884 -Lset1885 = Ltmp4008-Lfunc_begin0 - .quad Lset1885 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1886 = Ltmp4008-Lfunc_begin0 - .quad Lset1886 -Lset1887 = Ltmp4029-Lfunc_begin0 - .quad Lset1887 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1888 = Ltmp4029-Lfunc_begin0 - .quad Lset1888 -Lset1889 = Ltmp4030-Lfunc_begin0 - .quad Lset1889 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1890 = Ltmp4030-Lfunc_begin0 - .quad Lset1890 -Lset1891 = Ltmp4033-Lfunc_begin0 - .quad Lset1891 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1892 = Ltmp4034-Lfunc_begin0 - .quad Lset1892 -Lset1893 = Ltmp4035-Lfunc_begin0 - .quad Lset1893 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1894 = Ltmp4035-Lfunc_begin0 - .quad Lset1894 -Lset1895 = Ltmp4041-Lfunc_begin0 - .quad Lset1895 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1896 = Ltmp4041-Lfunc_begin0 - .quad Lset1896 -Lset1897 = Ltmp4042-Lfunc_begin0 - .quad Lset1897 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1898 = Ltmp4042-Lfunc_begin0 - .quad Lset1898 -Lset1899 = Ltmp4053-Lfunc_begin0 - .quad Lset1899 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1900 = Ltmp4053-Lfunc_begin0 - .quad Lset1900 -Lset1901 = Ltmp4054-Lfunc_begin0 - .quad Lset1901 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1902 = Ltmp4054-Lfunc_begin0 - .quad Lset1902 -Lset1903 = Ltmp4055-Lfunc_begin0 - .quad Lset1903 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1904 = Ltmp4057-Lfunc_begin0 - .quad Lset1904 -Lset1905 = Ltmp4071-Lfunc_begin0 - .quad Lset1905 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1906 = Ltmp4072-Lfunc_begin0 - .quad Lset1906 -Lset1907 = Ltmp4081-Lfunc_begin0 - .quad Lset1907 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1908 = Ltmp4084-Lfunc_begin0 - .quad Lset1908 -Lset1909 = Ltmp4086-Lfunc_begin0 - .quad Lset1909 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1910 = Ltmp4086-Lfunc_begin0 - .quad Lset1910 -Lset1911 = Ltmp4087-Lfunc_begin0 - .quad Lset1911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1912 = Ltmp4087-Lfunc_begin0 - .quad Lset1912 -Lset1913 = Ltmp4091-Lfunc_begin0 - .quad Lset1913 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1914 = Ltmp4091-Lfunc_begin0 - .quad Lset1914 -Lset1915 = Ltmp4092-Lfunc_begin0 - .quad Lset1915 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1916 = Ltmp4092-Lfunc_begin0 - .quad Lset1916 -Lset1917 = Ltmp4098-Lfunc_begin0 - .quad Lset1917 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1918 = Ltmp4098-Lfunc_begin0 - .quad Lset1918 -Lset1919 = Ltmp4099-Lfunc_begin0 - .quad Lset1919 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1920 = Ltmp4099-Lfunc_begin0 - .quad Lset1920 -Lset1921 = Ltmp4100-Lfunc_begin0 - .quad Lset1921 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1922 = Ltmp4103-Lfunc_begin0 - .quad Lset1922 -Lset1923 = Ltmp4109-Lfunc_begin0 - .quad Lset1923 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1924 = Ltmp4111-Lfunc_begin0 - .quad Lset1924 -Lset1925 = Ltmp4128-Lfunc_begin0 - .quad Lset1925 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1926 = Ltmp4131-Lfunc_begin0 - .quad Lset1926 -Lset1927 = Ltmp4133-Lfunc_begin0 - .quad Lset1927 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1928 = Ltmp4133-Lfunc_begin0 - .quad Lset1928 -Lset1929 = Ltmp4134-Lfunc_begin0 - .quad Lset1929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset1930 = Ltmp4134-Lfunc_begin0 - .quad Lset1930 -Lset1931 = Ltmp4138-Lfunc_begin0 - .quad Lset1931 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1932 = Ltmp4138-Lfunc_begin0 - .quad Lset1932 -Lset1933 = Ltmp4139-Lfunc_begin0 - .quad Lset1933 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1934 = Ltmp4139-Lfunc_begin0 - .quad Lset1934 -Lset1935 = Ltmp4145-Lfunc_begin0 - .quad Lset1935 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1936 = Ltmp4145-Lfunc_begin0 - .quad Lset1936 -Lset1937 = Ltmp4146-Lfunc_begin0 - .quad Lset1937 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1938 = Ltmp4146-Lfunc_begin0 - .quad Lset1938 -Lset1939 = Ltmp4147-Lfunc_begin0 - .quad Lset1939 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1940 = Ltmp4150-Lfunc_begin0 - .quad Lset1940 -Lset1941 = Ltmp4156-Lfunc_begin0 - .quad Lset1941 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1942 = Ltmp4158-Lfunc_begin0 - .quad Lset1942 -Lset1943 = Ltmp4175-Lfunc_begin0 - .quad Lset1943 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1944 = Ltmp4175-Lfunc_begin0 - .quad Lset1944 -Lset1945 = Ltmp4177-Lfunc_begin0 - .quad Lset1945 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1946 = Ltmp4177-Lfunc_begin0 - .quad Lset1946 -Lset1947 = Ltmp4180-Lfunc_begin0 - .quad Lset1947 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1948 = Ltmp4180-Lfunc_begin0 - .quad Lset1948 -Lset1949 = Ltmp4186-Lfunc_begin0 - .quad Lset1949 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1950 = Ltmp4186-Lfunc_begin0 - .quad Lset1950 -Lset1951 = Ltmp4188-Lfunc_begin0 - .quad Lset1951 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1952 = Ltmp4188-Lfunc_begin0 - .quad Lset1952 -Lset1953 = Ltmp4194-Lfunc_begin0 - .quad Lset1953 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1954 = Ltmp4194-Lfunc_begin0 - .quad Lset1954 -Lset1955 = Ltmp4212-Lfunc_begin0 - .quad Lset1955 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset1956 = Ltmp4212-Lfunc_begin0 - .quad Lset1956 -Lset1957 = Ltmp4220-Lfunc_begin0 - .quad Lset1957 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1958 = Ltmp4220-Lfunc_begin0 - .quad Lset1958 -Lset1959 = Ltmp4222-Lfunc_begin0 - .quad Lset1959 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1960 = Ltmp4222-Lfunc_begin0 - .quad Lset1960 -Lset1961 = Ltmp4241-Lfunc_begin0 - .quad Lset1961 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1962 = Ltmp4241-Lfunc_begin0 - .quad Lset1962 -Lset1963 = Ltmp4243-Lfunc_begin0 - .quad Lset1963 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1964 = Ltmp4243-Lfunc_begin0 - .quad Lset1964 -Lset1965 = Ltmp4262-Lfunc_begin0 - .quad Lset1965 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1966 = Ltmp4262-Lfunc_begin0 - .quad Lset1966 -Lset1967 = Ltmp4265-Lfunc_begin0 - .quad Lset1967 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1968 = Ltmp4265-Lfunc_begin0 - .quad Lset1968 -Lset1969 = Ltmp4281-Lfunc_begin0 - .quad Lset1969 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1970 = Ltmp4281-Lfunc_begin0 - .quad Lset1970 -Lset1971 = Ltmp4283-Lfunc_begin0 - .quad Lset1971 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1972 = Ltmp4283-Lfunc_begin0 - .quad Lset1972 -Lset1973 = Ltmp4294-Lfunc_begin0 - .quad Lset1973 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1974 = Ltmp4294-Lfunc_begin0 - .quad Lset1974 -Lset1975 = Ltmp4297-Lfunc_begin0 - .quad Lset1975 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1976 = Ltmp4297-Lfunc_begin0 - .quad Lset1976 -Lset1977 = Ltmp4299-Lfunc_begin0 - .quad Lset1977 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1978 = Ltmp4299-Lfunc_begin0 - .quad Lset1978 -Lset1979 = Ltmp4300-Lfunc_begin0 - .quad Lset1979 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1980 = Ltmp4300-Lfunc_begin0 - .quad Lset1980 -Lset1981 = Ltmp4301-Lfunc_begin0 - .quad Lset1981 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1982 = Ltmp4303-Lfunc_begin0 - .quad Lset1982 -Lset1983 = Ltmp4304-Lfunc_begin0 - .quad Lset1983 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1984 = Ltmp4304-Lfunc_begin0 - .quad Lset1984 -Lset1985 = Ltmp4306-Lfunc_begin0 - .quad Lset1985 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1986 = Ltmp4309-Lfunc_begin0 - .quad Lset1986 -Lset1987 = Ltmp4317-Lfunc_begin0 - .quad Lset1987 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset1988 = Ltmp4317-Lfunc_begin0 - .quad Lset1988 -Lset1989 = Ltmp4322-Lfunc_begin0 - .quad Lset1989 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1990 = Ltmp4323-Lfunc_begin0 - .quad Lset1990 -Lset1991 = Ltmp4326-Lfunc_begin0 - .quad Lset1991 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset1992 = Ltmp4326-Lfunc_begin0 - .quad Lset1992 -Lset1993 = Ltmp4332-Lfunc_begin0 - .quad Lset1993 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1994 = Ltmp4332-Lfunc_begin0 - .quad Lset1994 -Lset1995 = Ltmp4334-Lfunc_begin0 - .quad Lset1995 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset1996 = Ltmp4334-Lfunc_begin0 - .quad Lset1996 -Lset1997 = Ltmp4346-Lfunc_begin0 - .quad Lset1997 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset1998 = Ltmp4346-Lfunc_begin0 - .quad Lset1998 -Lset1999 = Ltmp4350-Lfunc_begin0 - .quad Lset1999 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2000 = Ltmp4350-Lfunc_begin0 - .quad Lset2000 -Lset2001 = Ltmp4352-Lfunc_begin0 - .quad Lset2001 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2002 = Ltmp4352-Lfunc_begin0 - .quad Lset2002 -Lset2003 = Ltmp4355-Lfunc_begin0 - .quad Lset2003 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2004 = Ltmp4355-Lfunc_begin0 - .quad Lset2004 -Lset2005 = Ltmp4363-Lfunc_begin0 - .quad Lset2005 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2006 = Ltmp4363-Lfunc_begin0 - .quad Lset2006 -Lset2007 = Ltmp4365-Lfunc_begin0 - .quad Lset2007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset2008 = Ltmp4365-Lfunc_begin0 - .quad Lset2008 -Lset2009 = Ltmp4381-Lfunc_begin0 - .quad Lset2009 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2010 = Ltmp4381-Lfunc_begin0 - .quad Lset2010 -Lset2011 = Ltmp4383-Lfunc_begin0 - .quad Lset2011 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2012 = Ltmp4383-Lfunc_begin0 - .quad Lset2012 -Lset2013 = Ltmp4385-Lfunc_begin0 - .quad Lset2013 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2014 = Ltmp4385-Lfunc_begin0 - .quad Lset2014 -Lset2015 = Ltmp4387-Lfunc_begin0 - .quad Lset2015 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2016 = Ltmp4387-Lfunc_begin0 - .quad Lset2016 -Lset2017 = Ltmp4388-Lfunc_begin0 - .quad Lset2017 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2018 = Ltmp4388-Lfunc_begin0 - .quad Lset2018 -Lset2019 = Ltmp4394-Lfunc_begin0 - .quad Lset2019 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2020 = Ltmp4394-Lfunc_begin0 - .quad Lset2020 -Lset2021 = Ltmp4395-Lfunc_begin0 - .quad Lset2021 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2022 = Ltmp4395-Lfunc_begin0 - .quad Lset2022 -Lset2023 = Ltmp4396-Lfunc_begin0 - .quad Lset2023 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2024 = Ltmp4398-Lfunc_begin0 - .quad Lset2024 -Lset2025 = Ltmp4399-Lfunc_begin0 - .quad Lset2025 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2026 = Ltmp4399-Lfunc_begin0 - .quad Lset2026 -Lset2027 = Ltmp4402-Lfunc_begin0 - .quad Lset2027 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2028 = Ltmp4404-Lfunc_begin0 - .quad Lset2028 -Lset2029 = Ltmp4410-Lfunc_begin0 - .quad Lset2029 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2030 = Ltmp4411-Lfunc_begin0 - .quad Lset2030 -Lset2031 = Ltmp4415-Lfunc_begin0 - .quad Lset2031 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2032 = Ltmp4416-Lfunc_begin0 - .quad Lset2032 -Lset2033 = Ltmp4419-Lfunc_begin0 - .quad Lset2033 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2034 = Ltmp4419-Lfunc_begin0 - .quad Lset2034 -Lset2035 = Ltmp4425-Lfunc_begin0 - .quad Lset2035 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2036 = Ltmp4425-Lfunc_begin0 - .quad Lset2036 -Lset2037 = Ltmp4427-Lfunc_begin0 - .quad Lset2037 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2038 = Ltmp4427-Lfunc_begin0 - .quad Lset2038 -Lset2039 = Ltmp4439-Lfunc_begin0 - .quad Lset2039 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2040 = Ltmp4439-Lfunc_begin0 - .quad Lset2040 -Lset2041 = Ltmp4443-Lfunc_begin0 - .quad Lset2041 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2042 = Ltmp4443-Lfunc_begin0 - .quad Lset2042 -Lset2043 = Ltmp4444-Lfunc_begin0 - .quad Lset2043 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2044 = Ltmp4444-Lfunc_begin0 - .quad Lset2044 -Lset2045 = Ltmp4447-Lfunc_begin0 - .quad Lset2045 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2046 = Ltmp4447-Lfunc_begin0 - .quad Lset2046 -Lset2047 = Ltmp4452-Lfunc_begin0 - .quad Lset2047 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2048 = Ltmp4453-Lfunc_begin0 - .quad Lset2048 -Lset2049 = Ltmp4464-Lfunc_begin0 - .quad Lset2049 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2050 = Ltmp4464-Lfunc_begin0 - .quad Lset2050 -Lset2051 = Ltmp4466-Lfunc_begin0 - .quad Lset2051 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2052 = Ltmp4466-Lfunc_begin0 - .quad Lset2052 -Lset2053 = Ltmp4468-Lfunc_begin0 - .quad Lset2053 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2054 = Ltmp4468-Lfunc_begin0 - .quad Lset2054 -Lset2055 = Ltmp4472-Lfunc_begin0 - .quad Lset2055 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2056 = Ltmp4472-Lfunc_begin0 - .quad Lset2056 -Lset2057 = Ltmp4483-Lfunc_begin0 - .quad Lset2057 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2058 = Ltmp4483-Lfunc_begin0 - .quad Lset2058 -Lset2059 = Ltmp4500-Lfunc_begin0 - .quad Lset2059 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2060 = Ltmp4500-Lfunc_begin0 - .quad Lset2060 -Lset2061 = Ltmp4502-Lfunc_begin0 - .quad Lset2061 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2062 = Ltmp4502-Lfunc_begin0 - .quad Lset2062 -Lset2063 = Ltmp4509-Lfunc_begin0 - .quad Lset2063 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2064 = Ltmp4509-Lfunc_begin0 - .quad Lset2064 -Lset2065 = Ltmp4514-Lfunc_begin0 - .quad Lset2065 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2066 = Ltmp4515-Lfunc_begin0 - .quad Lset2066 -Lset2067 = Ltmp4537-Lfunc_begin0 - .quad Lset2067 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2068 = Ltmp4537-Lfunc_begin0 - .quad Lset2068 -Lset2069 = Ltmp4539-Lfunc_begin0 - .quad Lset2069 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2070 = Ltmp4539-Lfunc_begin0 - .quad Lset2070 -Lset2071 = Ltmp4551-Lfunc_begin0 - .quad Lset2071 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2072 = Ltmp4551-Lfunc_begin0 - .quad Lset2072 -Lset2073 = Ltmp4553-Lfunc_begin0 - .quad Lset2073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset2074 = Ltmp4553-Lfunc_begin0 - .quad Lset2074 -Lset2075 = Ltmp4561-Lfunc_begin0 - .quad Lset2075 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2076 = Ltmp4561-Lfunc_begin0 - .quad Lset2076 -Lset2077 = Ltmp4563-Lfunc_begin0 - .quad Lset2077 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2078 = Ltmp4563-Lfunc_begin0 - .quad Lset2078 -Lset2079 = Ltmp4575-Lfunc_begin0 - .quad Lset2079 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2080 = Ltmp4575-Lfunc_begin0 - .quad Lset2080 -Lset2081 = Ltmp4577-Lfunc_begin0 - .quad Lset2081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset2082 = Ltmp4577-Lfunc_begin0 - .quad Lset2082 -Lset2083 = Ltmp4585-Lfunc_begin0 - .quad Lset2083 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2084 = Ltmp4585-Lfunc_begin0 - .quad Lset2084 -Lset2085 = Ltmp4587-Lfunc_begin0 - .quad Lset2085 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2086 = Ltmp4587-Lfunc_begin0 - .quad Lset2086 -Lset2087 = Ltmp4599-Lfunc_begin0 - .quad Lset2087 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2088 = Ltmp4599-Lfunc_begin0 - .quad Lset2088 -Lset2089 = Ltmp4601-Lfunc_begin0 - .quad Lset2089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset2090 = Ltmp4601-Lfunc_begin0 - .quad Lset2090 -Lset2091 = Ltmp4609-Lfunc_begin0 - .quad Lset2091 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2092 = Ltmp4609-Lfunc_begin0 - .quad Lset2092 -Lset2093 = Ltmp4611-Lfunc_begin0 - .quad Lset2093 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2094 = Ltmp4611-Lfunc_begin0 - .quad Lset2094 -Lset2095 = Ltmp4624-Lfunc_begin0 - .quad Lset2095 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2096 = Ltmp4624-Lfunc_begin0 - .quad Lset2096 -Lset2097 = Ltmp4626-Lfunc_begin0 - .quad Lset2097 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2098 = Ltmp4626-Lfunc_begin0 - .quad Lset2098 -Lset2099 = Ltmp4639-Lfunc_begin0 - .quad Lset2099 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2100 = Ltmp4639-Lfunc_begin0 - .quad Lset2100 -Lset2101 = Ltmp4641-Lfunc_begin0 - .quad Lset2101 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2102 = Ltmp4641-Lfunc_begin0 - .quad Lset2102 -Lset2103 = Ltmp4655-Lfunc_begin0 - .quad Lset2103 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2104 = Ltmp4655-Lfunc_begin0 - .quad Lset2104 -Lset2105 = Ltmp4657-Lfunc_begin0 - .quad Lset2105 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2106 = Ltmp4657-Lfunc_begin0 - .quad Lset2106 -Lset2107 = Ltmp4671-Lfunc_begin0 - .quad Lset2107 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2108 = Ltmp4671-Lfunc_begin0 - .quad Lset2108 -Lset2109 = Ltmp4673-Lfunc_begin0 - .quad Lset2109 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2110 = Ltmp4673-Lfunc_begin0 - .quad Lset2110 -Lset2111 = Ltmp4688-Lfunc_begin0 - .quad Lset2111 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2112 = Ltmp4688-Lfunc_begin0 - .quad Lset2112 -Lset2113 = Ltmp4690-Lfunc_begin0 - .quad Lset2113 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2114 = Ltmp4690-Lfunc_begin0 - .quad Lset2114 -Lset2115 = Ltmp4705-Lfunc_begin0 - .quad Lset2115 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2116 = Ltmp4705-Lfunc_begin0 - .quad Lset2116 -Lset2117 = Ltmp4707-Lfunc_begin0 - .quad Lset2117 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2118 = Ltmp4707-Lfunc_begin0 - .quad Lset2118 -Lset2119 = Ltmp4722-Lfunc_begin0 - .quad Lset2119 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2120 = Ltmp4722-Lfunc_begin0 - .quad Lset2120 -Lset2121 = Ltmp4724-Lfunc_begin0 - .quad Lset2121 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2122 = Ltmp4724-Lfunc_begin0 - .quad Lset2122 -Lset2123 = Ltmp4739-Lfunc_begin0 - .quad Lset2123 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2124 = Ltmp4739-Lfunc_begin0 - .quad Lset2124 -Lset2125 = Ltmp4741-Lfunc_begin0 - .quad Lset2125 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2126 = Ltmp4741-Lfunc_begin0 - .quad Lset2126 -Lset2127 = Ltmp4756-Lfunc_begin0 - .quad Lset2127 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2128 = Ltmp4756-Lfunc_begin0 - .quad Lset2128 -Lset2129 = Ltmp4758-Lfunc_begin0 - .quad Lset2129 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2130 = Ltmp4758-Lfunc_begin0 - .quad Lset2130 -Lset2131 = Ltmp4773-Lfunc_begin0 - .quad Lset2131 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2132 = Ltmp4773-Lfunc_begin0 - .quad Lset2132 -Lset2133 = Ltmp4775-Lfunc_begin0 - .quad Lset2133 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2134 = Ltmp4775-Lfunc_begin0 - .quad Lset2134 -Lset2135 = Ltmp4790-Lfunc_begin0 - .quad Lset2135 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2136 = Ltmp4790-Lfunc_begin0 - .quad Lset2136 -Lset2137 = Ltmp4792-Lfunc_begin0 - .quad Lset2137 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2138 = Ltmp4792-Lfunc_begin0 - .quad Lset2138 -Lset2139 = Ltmp4807-Lfunc_begin0 - .quad Lset2139 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2140 = Ltmp4807-Lfunc_begin0 - .quad Lset2140 -Lset2141 = Ltmp4809-Lfunc_begin0 - .quad Lset2141 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2142 = Ltmp4809-Lfunc_begin0 - .quad Lset2142 -Lset2143 = Ltmp4824-Lfunc_begin0 - .quad Lset2143 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2144 = Ltmp4824-Lfunc_begin0 - .quad Lset2144 -Lset2145 = Ltmp4826-Lfunc_begin0 - .quad Lset2145 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2146 = Ltmp4826-Lfunc_begin0 - .quad Lset2146 -Lset2147 = Ltmp4841-Lfunc_begin0 - .quad Lset2147 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2148 = Ltmp4841-Lfunc_begin0 - .quad Lset2148 -Lset2149 = Ltmp4843-Lfunc_begin0 - .quad Lset2149 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2150 = Ltmp4843-Lfunc_begin0 - .quad Lset2150 -Lset2151 = Ltmp4858-Lfunc_begin0 - .quad Lset2151 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2152 = Ltmp4858-Lfunc_begin0 - .quad Lset2152 -Lset2153 = Ltmp4860-Lfunc_begin0 - .quad Lset2153 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2154 = Ltmp4860-Lfunc_begin0 - .quad Lset2154 -Lset2155 = Ltmp4875-Lfunc_begin0 - .quad Lset2155 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2156 = Ltmp4875-Lfunc_begin0 - .quad Lset2156 -Lset2157 = Ltmp4877-Lfunc_begin0 - .quad Lset2157 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2158 = Ltmp4877-Lfunc_begin0 - .quad Lset2158 -Lset2159 = Ltmp4892-Lfunc_begin0 - .quad Lset2159 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2160 = Ltmp4892-Lfunc_begin0 - .quad Lset2160 -Lset2161 = Ltmp4894-Lfunc_begin0 - .quad Lset2161 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2162 = Ltmp4894-Lfunc_begin0 - .quad Lset2162 -Lset2163 = Ltmp4907-Lfunc_begin0 - .quad Lset2163 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2164 = Ltmp4908-Lfunc_begin0 - .quad Lset2164 -Lset2165 = Ltmp4921-Lfunc_begin0 - .quad Lset2165 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2166 = Ltmp4921-Lfunc_begin0 - .quad Lset2166 -Lset2167 = Ltmp4923-Lfunc_begin0 - .quad Lset2167 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2168 = Ltmp4923-Lfunc_begin0 - .quad Lset2168 -Lset2169 = Ltmp4925-Lfunc_begin0 - .quad Lset2169 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2170 = Ltmp4925-Lfunc_begin0 - .quad Lset2170 -Lset2171 = Ltmp4929-Lfunc_begin0 - .quad Lset2171 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2172 = Ltmp4929-Lfunc_begin0 - .quad Lset2172 -Lset2173 = Ltmp4939-Lfunc_begin0 - .quad Lset2173 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2174 = Ltmp4939-Lfunc_begin0 - .quad Lset2174 -Lset2175 = Ltmp4956-Lfunc_begin0 - .quad Lset2175 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2176 = Ltmp4956-Lfunc_begin0 - .quad Lset2176 -Lset2177 = Ltmp4958-Lfunc_begin0 - .quad Lset2177 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2178 = Ltmp4958-Lfunc_begin0 - .quad Lset2178 -Lset2179 = Ltmp4963-Lfunc_begin0 - .quad Lset2179 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2180 = Ltmp4964-Lfunc_begin0 - .quad Lset2180 -Lset2181 = Ltmp4970-Lfunc_begin0 - .quad Lset2181 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2182 = Ltmp4970-Lfunc_begin0 - .quad Lset2182 -Lset2183 = Ltmp4976-Lfunc_begin0 - .quad Lset2183 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2184 = Ltmp4977-Lfunc_begin0 - .quad Lset2184 -Lset2185 = Ltmp4994-Lfunc_begin0 - .quad Lset2185 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2186 = Ltmp4994-Lfunc_begin0 - .quad Lset2186 -Lset2187 = Ltmp4996-Lfunc_begin0 - .quad Lset2187 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2188 = Ltmp4996-Lfunc_begin0 - .quad Lset2188 -Lset2189 = Ltmp5012-Lfunc_begin0 - .quad Lset2189 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2190 = Ltmp5012-Lfunc_begin0 - .quad Lset2190 -Lset2191 = Ltmp5014-Lfunc_begin0 - .quad Lset2191 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2192 = Ltmp5014-Lfunc_begin0 - .quad Lset2192 -Lset2193 = Ltmp5030-Lfunc_begin0 - .quad Lset2193 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2194 = Ltmp5030-Lfunc_begin0 - .quad Lset2194 -Lset2195 = Ltmp5032-Lfunc_begin0 - .quad Lset2195 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2196 = Ltmp5032-Lfunc_begin0 - .quad Lset2196 -Lset2197 = Ltmp5046-Lfunc_begin0 - .quad Lset2197 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2198 = Ltmp5046-Lfunc_begin0 - .quad Lset2198 -Lset2199 = Ltmp5057-Lfunc_begin0 - .quad Lset2199 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2200 = Ltmp5057-Lfunc_begin0 - .quad Lset2200 -Lset2201 = Ltmp5059-Lfunc_begin0 - .quad Lset2201 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2202 = Ltmp5059-Lfunc_begin0 - .quad Lset2202 -Lset2203 = Ltmp5061-Lfunc_begin0 - .quad Lset2203 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2204 = Ltmp5061-Lfunc_begin0 - .quad Lset2204 -Lset2205 = Ltmp5065-Lfunc_begin0 - .quad Lset2205 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2206 = Ltmp5065-Lfunc_begin0 - .quad Lset2206 -Lset2207 = Ltmp5076-Lfunc_begin0 - .quad Lset2207 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2208 = Ltmp5076-Lfunc_begin0 - .quad Lset2208 -Lset2209 = Ltmp5090-Lfunc_begin0 - .quad Lset2209 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2210 = Ltmp5090-Lfunc_begin0 - .quad Lset2210 -Lset2211 = Ltmp5092-Lfunc_begin0 - .quad Lset2211 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2212 = Ltmp5092-Lfunc_begin0 - .quad Lset2212 -Lset2213 = Ltmp5099-Lfunc_begin0 - .quad Lset2213 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2214 = Ltmp5099-Lfunc_begin0 - .quad Lset2214 -Lset2215 = Ltmp5104-Lfunc_begin0 - .quad Lset2215 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2216 = Ltmp5105-Lfunc_begin0 - .quad Lset2216 -Lset2217 = Ltmp5124-Lfunc_begin0 - .quad Lset2217 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2218 = Ltmp5124-Lfunc_begin0 - .quad Lset2218 -Lset2219 = Ltmp5126-Lfunc_begin0 - .quad Lset2219 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2220 = Ltmp5126-Lfunc_begin0 - .quad Lset2220 -Lset2221 = Ltmp5139-Lfunc_begin0 - .quad Lset2221 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2222 = Ltmp5139-Lfunc_begin0 - .quad Lset2222 -Lset2223 = Ltmp5141-Lfunc_begin0 - .quad Lset2223 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2224 = Ltmp5141-Lfunc_begin0 - .quad Lset2224 -Lset2225 = Ltmp5154-Lfunc_begin0 - .quad Lset2225 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2226 = Ltmp5154-Lfunc_begin0 - .quad Lset2226 -Lset2227 = Ltmp5156-Lfunc_begin0 - .quad Lset2227 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2228 = Ltmp5156-Lfunc_begin0 - .quad Lset2228 -Lset2229 = Ltmp5169-Lfunc_begin0 - .quad Lset2229 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2230 = Ltmp5169-Lfunc_begin0 - .quad Lset2230 -Lset2231 = Ltmp5171-Lfunc_begin0 - .quad Lset2231 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2232 = Ltmp5171-Lfunc_begin0 - .quad Lset2232 -Lset2233 = Ltmp5185-Lfunc_begin0 - .quad Lset2233 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2234 = Ltmp5185-Lfunc_begin0 - .quad Lset2234 -Lset2235 = Ltmp5187-Lfunc_begin0 - .quad Lset2235 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2236 = Ltmp5187-Lfunc_begin0 - .quad Lset2236 -Lset2237 = Ltmp5202-Lfunc_begin0 - .quad Lset2237 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2238 = Ltmp5202-Lfunc_begin0 - .quad Lset2238 -Lset2239 = Ltmp5203-Lfunc_begin0 - .quad Lset2239 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset2240 = Ltmp5203-Lfunc_begin0 - .quad Lset2240 -Lset2241 = Ltmp5236-Lfunc_begin0 - .quad Lset2241 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2242 = Ltmp5237-Lfunc_begin0 - .quad Lset2242 -Lset2243 = Ltmp5243-Lfunc_begin0 - .quad Lset2243 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2244 = Ltmp5243-Lfunc_begin0 - .quad Lset2244 -Lset2245 = Ltmp5249-Lfunc_begin0 - .quad Lset2245 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2246 = Ltmp5249-Lfunc_begin0 - .quad Lset2246 -Lset2247 = Ltmp5250-Lfunc_begin0 - .quad Lset2247 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2248 = Ltmp5250-Lfunc_begin0 - .quad Lset2248 -Lset2249 = Ltmp5256-Lfunc_begin0 - .quad Lset2249 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2250 = Ltmp5256-Lfunc_begin0 - .quad Lset2250 -Lset2251 = Ltmp5257-Lfunc_begin0 - .quad Lset2251 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2252 = Ltmp5257-Lfunc_begin0 - .quad Lset2252 -Lset2253 = Ltmp5264-Lfunc_begin0 - .quad Lset2253 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset2254 = Ltmp5264-Lfunc_begin0 - .quad Lset2254 -Lset2255 = Ltmp5265-Lfunc_begin0 - .quad Lset2255 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset2256 = Ltmp5265-Lfunc_begin0 - .quad Lset2256 -Lset2257 = Ltmp5271-Lfunc_begin0 - .quad Lset2257 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc166: -Lset2258 = Ltmp856-Lfunc_begin0 - .quad Lset2258 -Lset2259 = Ltmp859-Lfunc_begin0 - .quad Lset2259 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2260 = Ltmp3160-Lfunc_begin0 - .quad Lset2260 -Lset2261 = Ltmp3161-Lfunc_begin0 - .quad Lset2261 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2262 = Ltmp3192-Lfunc_begin0 - .quad Lset2262 -Lset2263 = Ltmp3203-Lfunc_begin0 - .quad Lset2263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset2264 = Ltmp3203-Lfunc_begin0 - .quad Lset2264 -Lset2265 = Ltmp3208-Lfunc_begin0 - .quad Lset2265 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2266 = Ltmp3223-Lfunc_begin0 - .quad Lset2266 -Lset2267 = Ltmp3225-Lfunc_begin0 - .quad Lset2267 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc167: -Lset2268 = Ltmp860-Lfunc_begin0 - .quad Lset2268 -Lset2269 = Ltmp865-Lfunc_begin0 - .quad Lset2269 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2270 = Ltmp888-Lfunc_begin0 - .quad Lset2270 -Lset2271 = Ltmp889-Lfunc_begin0 - .quad Lset2271 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2272 = Ltmp904-Lfunc_begin0 - .quad Lset2272 -Lset2273 = Ltmp905-Lfunc_begin0 - .quad Lset2273 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2274 = Ltmp920-Lfunc_begin0 - .quad Lset2274 -Lset2275 = Ltmp921-Lfunc_begin0 - .quad Lset2275 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2276 = Ltmp936-Lfunc_begin0 - .quad Lset2276 -Lset2277 = Ltmp938-Lfunc_begin0 - .quad Lset2277 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2278 = Ltmp961-Lfunc_begin0 - .quad Lset2278 -Lset2279 = Ltmp962-Lfunc_begin0 - .quad Lset2279 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2280 = Ltmp977-Lfunc_begin0 - .quad Lset2280 -Lset2281 = Ltmp979-Lfunc_begin0 - .quad Lset2281 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2282 = Ltmp991-Lfunc_begin0 - .quad Lset2282 -Lset2283 = Ltmp997-Lfunc_begin0 - .quad Lset2283 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2284 = Ltmp1047-Lfunc_begin0 - .quad Lset2284 -Lset2285 = Ltmp1052-Lfunc_begin0 - .quad Lset2285 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2286 = Ltmp1052-Lfunc_begin0 - .quad Lset2286 -Lset2287 = Ltmp1054-Lfunc_begin0 - .quad Lset2287 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2288 = Ltmp1062-Lfunc_begin0 - .quad Lset2288 -Lset2289 = Ltmp1068-Lfunc_begin0 - .quad Lset2289 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2290 = Ltmp1118-Lfunc_begin0 - .quad Lset2290 -Lset2291 = Ltmp1123-Lfunc_begin0 - .quad Lset2291 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2292 = Ltmp1123-Lfunc_begin0 - .quad Lset2292 -Lset2293 = Ltmp1125-Lfunc_begin0 - .quad Lset2293 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2294 = Ltmp1137-Lfunc_begin0 - .quad Lset2294 -Lset2295 = Ltmp1143-Lfunc_begin0 - .quad Lset2295 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2296 = Ltmp1277-Lfunc_begin0 - .quad Lset2296 -Lset2297 = Ltmp1282-Lfunc_begin0 - .quad Lset2297 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2298 = Ltmp1282-Lfunc_begin0 - .quad Lset2298 -Lset2299 = Ltmp1284-Lfunc_begin0 - .quad Lset2299 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2300 = Ltmp1302-Lfunc_begin0 - .quad Lset2300 -Lset2301 = Ltmp1303-Lfunc_begin0 - .quad Lset2301 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2302 = Ltmp1319-Lfunc_begin0 - .quad Lset2302 -Lset2303 = Ltmp1325-Lfunc_begin0 - .quad Lset2303 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2304 = Ltmp1459-Lfunc_begin0 - .quad Lset2304 -Lset2305 = Ltmp1464-Lfunc_begin0 - .quad Lset2305 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2306 = Ltmp1464-Lfunc_begin0 - .quad Lset2306 -Lset2307 = Ltmp1466-Lfunc_begin0 - .quad Lset2307 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2308 = Ltmp1477-Lfunc_begin0 - .quad Lset2308 -Lset2309 = Ltmp1483-Lfunc_begin0 - .quad Lset2309 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2310 = Ltmp1605-Lfunc_begin0 - .quad Lset2310 -Lset2311 = Ltmp1610-Lfunc_begin0 - .quad Lset2311 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2312 = Ltmp1610-Lfunc_begin0 - .quad Lset2312 -Lset2313 = Ltmp1612-Lfunc_begin0 - .quad Lset2313 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2314 = Ltmp1618-Lfunc_begin0 - .quad Lset2314 -Lset2315 = Ltmp1624-Lfunc_begin0 - .quad Lset2315 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2316 = Ltmp1654-Lfunc_begin0 - .quad Lset2316 -Lset2317 = Ltmp1660-Lfunc_begin0 - .quad Lset2317 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2318 = Ltmp1660-Lfunc_begin0 - .quad Lset2318 -Lset2319 = Ltmp1662-Lfunc_begin0 - .quad Lset2319 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2320 = Ltmp1691-Lfunc_begin0 - .quad Lset2320 -Lset2321 = Ltmp1693-Lfunc_begin0 - .quad Lset2321 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2322 = Ltmp1707-Lfunc_begin0 - .quad Lset2322 -Lset2323 = Ltmp1716-Lfunc_begin0 - .quad Lset2323 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2324 = Ltmp1742-Lfunc_begin0 - .quad Lset2324 -Lset2325 = Ltmp1747-Lfunc_begin0 - .quad Lset2325 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2326 = Ltmp1747-Lfunc_begin0 - .quad Lset2326 -Lset2327 = Ltmp1750-Lfunc_begin0 - .quad Lset2327 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2328 = Ltmp1750-Lfunc_begin0 - .quad Lset2328 -Lset2329 = Ltmp1756-Lfunc_begin0 - .quad Lset2329 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2330 = Ltmp1778-Lfunc_begin0 - .quad Lset2330 -Lset2331 = Ltmp1784-Lfunc_begin0 - .quad Lset2331 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2332 = Ltmp1784-Lfunc_begin0 - .quad Lset2332 -Lset2333 = Ltmp1786-Lfunc_begin0 - .quad Lset2333 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2334 = Ltmp1857-Lfunc_begin0 - .quad Lset2334 -Lset2335 = Ltmp1858-Lfunc_begin0 - .quad Lset2335 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2336 = Ltmp1933-Lfunc_begin0 - .quad Lset2336 -Lset2337 = Ltmp1934-Lfunc_begin0 - .quad Lset2337 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2338 = Ltmp2009-Lfunc_begin0 - .quad Lset2338 -Lset2339 = Ltmp2010-Lfunc_begin0 - .quad Lset2339 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2340 = Ltmp2081-Lfunc_begin0 - .quad Lset2340 -Lset2341 = Ltmp2082-Lfunc_begin0 - .quad Lset2341 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2342 = Ltmp2160-Lfunc_begin0 - .quad Lset2342 -Lset2343 = Ltmp2161-Lfunc_begin0 - .quad Lset2343 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2344 = Ltmp2238-Lfunc_begin0 - .quad Lset2344 -Lset2345 = Ltmp2239-Lfunc_begin0 - .quad Lset2345 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2346 = Ltmp2316-Lfunc_begin0 - .quad Lset2346 -Lset2347 = Ltmp2317-Lfunc_begin0 - .quad Lset2347 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2348 = Ltmp2398-Lfunc_begin0 - .quad Lset2348 -Lset2349 = Ltmp2399-Lfunc_begin0 - .quad Lset2349 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2350 = Ltmp2483-Lfunc_begin0 - .quad Lset2350 -Lset2351 = Ltmp2484-Lfunc_begin0 - .quad Lset2351 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2352 = Ltmp2570-Lfunc_begin0 - .quad Lset2352 -Lset2353 = Ltmp2571-Lfunc_begin0 - .quad Lset2353 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2354 = Ltmp2655-Lfunc_begin0 - .quad Lset2354 -Lset2355 = Ltmp2656-Lfunc_begin0 - .quad Lset2355 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2356 = Ltmp2723-Lfunc_begin0 - .quad Lset2356 -Lset2357 = Ltmp2724-Lfunc_begin0 - .quad Lset2357 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset2358 = Ltmp2724-Lfunc_begin0 - .quad Lset2358 -Lset2359 = Ltmp2725-Lfunc_begin0 - .quad Lset2359 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2360 = Ltmp2773-Lfunc_begin0 - .quad Lset2360 -Lset2361 = Ltmp2774-Lfunc_begin0 - .quad Lset2361 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2362 = Ltmp2826-Lfunc_begin0 - .quad Lset2362 -Lset2363 = Ltmp2827-Lfunc_begin0 - .quad Lset2363 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2364 = Ltmp2846-Lfunc_begin0 - .quad Lset2364 -Lset2365 = Ltmp2847-Lfunc_begin0 - .quad Lset2365 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2366 = Ltmp2862-Lfunc_begin0 - .quad Lset2366 -Lset2367 = Ltmp2863-Lfunc_begin0 - .quad Lset2367 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2368 = Ltmp2907-Lfunc_begin0 - .quad Lset2368 -Lset2369 = Ltmp2908-Lfunc_begin0 - .quad Lset2369 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2370 = Ltmp2913-Lfunc_begin0 - .quad Lset2370 -Lset2371 = Ltmp2920-Lfunc_begin0 - .quad Lset2371 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2372 = Ltmp2928-Lfunc_begin0 - .quad Lset2372 -Lset2373 = Ltmp2934-Lfunc_begin0 - .quad Lset2373 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2374 = Ltmp2934-Lfunc_begin0 - .quad Lset2374 -Lset2375 = Ltmp2936-Lfunc_begin0 - .quad Lset2375 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2376 = Ltmp2956-Lfunc_begin0 - .quad Lset2376 -Lset2377 = Ltmp2959-Lfunc_begin0 - .quad Lset2377 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2378 = Ltmp2960-Lfunc_begin0 - .quad Lset2378 -Lset2379 = Ltmp2961-Lfunc_begin0 - .quad Lset2379 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2380 = Ltmp2961-Lfunc_begin0 - .quad Lset2380 -Lset2381 = Ltmp2964-Lfunc_begin0 - .quad Lset2381 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2382 = Ltmp3001-Lfunc_begin0 - .quad Lset2382 -Lset2383 = Ltmp3004-Lfunc_begin0 - .quad Lset2383 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2384 = Ltmp3005-Lfunc_begin0 - .quad Lset2384 -Lset2385 = Ltmp3007-Lfunc_begin0 - .quad Lset2385 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2386 = Ltmp3043-Lfunc_begin0 - .quad Lset2386 -Lset2387 = Ltmp3046-Lfunc_begin0 - .quad Lset2387 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2388 = Ltmp3047-Lfunc_begin0 - .quad Lset2388 -Lset2389 = Ltmp3049-Lfunc_begin0 - .quad Lset2389 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2390 = Ltmp3072-Lfunc_begin0 - .quad Lset2390 -Lset2391 = Ltmp3073-Lfunc_begin0 - .quad Lset2391 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2392 = Ltmp3081-Lfunc_begin0 - .quad Lset2392 -Lset2393 = Ltmp3084-Lfunc_begin0 - .quad Lset2393 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2394 = Ltmp3107-Lfunc_begin0 - .quad Lset2394 -Lset2395 = Ltmp3108-Lfunc_begin0 - .quad Lset2395 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2396 = Ltmp3118-Lfunc_begin0 - .quad Lset2396 -Lset2397 = Ltmp3122-Lfunc_begin0 - .quad Lset2397 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2398 = Ltmp3151-Lfunc_begin0 - .quad Lset2398 -Lset2399 = Ltmp3152-Lfunc_begin0 - .quad Lset2399 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset2400 = Ltmp3152-Lfunc_begin0 - .quad Lset2400 -Lset2401 = Ltmp3153-Lfunc_begin0 - .quad Lset2401 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2402 = Ltmp3179-Lfunc_begin0 - .quad Lset2402 -Lset2403 = Ltmp3180-Lfunc_begin0 - .quad Lset2403 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2404 = Ltmp3235-Lfunc_begin0 - .quad Lset2404 -Lset2405 = Ltmp3237-Lfunc_begin0 - .quad Lset2405 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2406 = Ltmp3252-Lfunc_begin0 - .quad Lset2406 -Lset2407 = Ltmp3255-Lfunc_begin0 - .quad Lset2407 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2408 = Ltmp3259-Lfunc_begin0 - .quad Lset2408 -Lset2409 = Ltmp3265-Lfunc_begin0 - .quad Lset2409 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2410 = Ltmp3348-Lfunc_begin0 - .quad Lset2410 -Lset2411 = Ltmp3353-Lfunc_begin0 - .quad Lset2411 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2412 = Ltmp3353-Lfunc_begin0 - .quad Lset2412 -Lset2413 = Ltmp3355-Lfunc_begin0 - .quad Lset2413 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2414 = Ltmp3371-Lfunc_begin0 - .quad Lset2414 -Lset2415 = Ltmp3372-Lfunc_begin0 - .quad Lset2415 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2416 = Ltmp3386-Lfunc_begin0 - .quad Lset2416 -Lset2417 = Ltmp3387-Lfunc_begin0 - .quad Lset2417 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2418 = Ltmp3406-Lfunc_begin0 - .quad Lset2418 -Lset2419 = Ltmp3408-Lfunc_begin0 - .quad Lset2419 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2420 = Ltmp3478-Lfunc_begin0 - .quad Lset2420 -Lset2421 = Ltmp3479-Lfunc_begin0 - .quad Lset2421 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset2422 = Ltmp3479-Lfunc_begin0 - .quad Lset2422 -Lset2423 = Ltmp3480-Lfunc_begin0 - .quad Lset2423 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2424 = Ltmp3546-Lfunc_begin0 - .quad Lset2424 -Lset2425 = Ltmp3547-Lfunc_begin0 - .quad Lset2425 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2426 = Ltmp3594-Lfunc_begin0 - .quad Lset2426 -Lset2427 = Ltmp3595-Lfunc_begin0 - .quad Lset2427 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2428 = Ltmp3608-Lfunc_begin0 - .quad Lset2428 -Lset2429 = Ltmp3610-Lfunc_begin0 - .quad Lset2429 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2430 = Ltmp3626-Lfunc_begin0 - .quad Lset2430 -Lset2431 = Ltmp3627-Lfunc_begin0 - .quad Lset2431 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2432 = Ltmp3643-Lfunc_begin0 - .quad Lset2432 -Lset2433 = Ltmp3644-Lfunc_begin0 - .quad Lset2433 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2434 = Ltmp3660-Lfunc_begin0 - .quad Lset2434 -Lset2435 = Ltmp3661-Lfunc_begin0 - .quad Lset2435 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2436 = Ltmp3687-Lfunc_begin0 - .quad Lset2436 -Lset2437 = Ltmp3688-Lfunc_begin0 - .quad Lset2437 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2438 = Ltmp3716-Lfunc_begin0 - .quad Lset2438 -Lset2439 = Ltmp3717-Lfunc_begin0 - .quad Lset2439 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2440 = Ltmp3733-Lfunc_begin0 - .quad Lset2440 -Lset2441 = Ltmp3734-Lfunc_begin0 - .quad Lset2441 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2442 = Ltmp3759-Lfunc_begin0 - .quad Lset2442 -Lset2443 = Ltmp3762-Lfunc_begin0 - .quad Lset2443 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2444 = Ltmp3763-Lfunc_begin0 - .quad Lset2444 -Lset2445 = Ltmp3764-Lfunc_begin0 - .quad Lset2445 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2446 = Ltmp3789-Lfunc_begin0 - .quad Lset2446 -Lset2447 = Ltmp3792-Lfunc_begin0 - .quad Lset2447 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2448 = Ltmp3793-Lfunc_begin0 - .quad Lset2448 -Lset2449 = Ltmp3794-Lfunc_begin0 - .quad Lset2449 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2450 = Ltmp3819-Lfunc_begin0 - .quad Lset2450 -Lset2451 = Ltmp3822-Lfunc_begin0 - .quad Lset2451 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2452 = Ltmp3823-Lfunc_begin0 - .quad Lset2452 -Lset2453 = Ltmp3824-Lfunc_begin0 - .quad Lset2453 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2454 = Ltmp3849-Lfunc_begin0 - .quad Lset2454 -Lset2455 = Ltmp3852-Lfunc_begin0 - .quad Lset2455 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2456 = Ltmp3853-Lfunc_begin0 - .quad Lset2456 -Lset2457 = Ltmp3854-Lfunc_begin0 - .quad Lset2457 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2458 = Ltmp3879-Lfunc_begin0 - .quad Lset2458 -Lset2459 = Ltmp3882-Lfunc_begin0 - .quad Lset2459 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2460 = Ltmp3883-Lfunc_begin0 - .quad Lset2460 -Lset2461 = Ltmp3884-Lfunc_begin0 - .quad Lset2461 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2462 = Ltmp3909-Lfunc_begin0 - .quad Lset2462 -Lset2463 = Ltmp3912-Lfunc_begin0 - .quad Lset2463 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2464 = Ltmp3913-Lfunc_begin0 - .quad Lset2464 -Lset2465 = Ltmp3914-Lfunc_begin0 - .quad Lset2465 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2466 = Ltmp3932-Lfunc_begin0 - .quad Lset2466 -Lset2467 = Ltmp3935-Lfunc_begin0 - .quad Lset2467 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2468 = Ltmp3940-Lfunc_begin0 - .quad Lset2468 -Lset2469 = Ltmp3947-Lfunc_begin0 - .quad Lset2469 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2470 = Ltmp3956-Lfunc_begin0 - .quad Lset2470 -Lset2471 = Ltmp3961-Lfunc_begin0 - .quad Lset2471 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2472 = Ltmp3961-Lfunc_begin0 - .quad Lset2472 -Lset2473 = Ltmp3963-Lfunc_begin0 - .quad Lset2473 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2474 = Ltmp3984-Lfunc_begin0 - .quad Lset2474 -Lset2475 = Ltmp3985-Lfunc_begin0 - .quad Lset2475 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset2476 = Ltmp4012-Lfunc_begin0 - .quad Lset2476 -Lset2477 = Ltmp4013-Lfunc_begin0 - .quad Lset2477 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2478 = Ltmp4027-Lfunc_begin0 - .quad Lset2478 -Lset2479 = Ltmp4033-Lfunc_begin0 - .quad Lset2479 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2480 = Ltmp4073-Lfunc_begin0 - .quad Lset2480 -Lset2481 = Ltmp4079-Lfunc_begin0 - .quad Lset2481 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2482 = Ltmp4079-Lfunc_begin0 - .quad Lset2482 -Lset2483 = Ltmp4081-Lfunc_begin0 - .quad Lset2483 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2484 = Ltmp4088-Lfunc_begin0 - .quad Lset2484 -Lset2485 = Ltmp4095-Lfunc_begin0 - .quad Lset2485 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2486 = Ltmp4121-Lfunc_begin0 - .quad Lset2486 -Lset2487 = Ltmp4126-Lfunc_begin0 - .quad Lset2487 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2488 = Ltmp4126-Lfunc_begin0 - .quad Lset2488 -Lset2489 = Ltmp4128-Lfunc_begin0 - .quad Lset2489 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2490 = Ltmp4135-Lfunc_begin0 - .quad Lset2490 -Lset2491 = Ltmp4142-Lfunc_begin0 - .quad Lset2491 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2492 = Ltmp4168-Lfunc_begin0 - .quad Lset2492 -Lset2493 = Ltmp4173-Lfunc_begin0 - .quad Lset2493 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2494 = Ltmp4173-Lfunc_begin0 - .quad Lset2494 -Lset2495 = Ltmp4175-Lfunc_begin0 - .quad Lset2495 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2496 = Ltmp4212-Lfunc_begin0 - .quad Lset2496 -Lset2497 = Ltmp4213-Lfunc_begin0 - .quad Lset2497 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2498 = Ltmp4234-Lfunc_begin0 - .quad Lset2498 -Lset2499 = Ltmp4235-Lfunc_begin0 - .quad Lset2499 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2500 = Ltmp4255-Lfunc_begin0 - .quad Lset2500 -Lset2501 = Ltmp4256-Lfunc_begin0 - .quad Lset2501 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2502 = Ltmp4323-Lfunc_begin0 - .quad Lset2502 -Lset2503 = Ltmp4324-Lfunc_begin0 - .quad Lset2503 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2504 = Ltmp4353-Lfunc_begin0 - .quad Lset2504 -Lset2505 = Ltmp4354-Lfunc_begin0 - .quad Lset2505 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2506 = Ltmp4416-Lfunc_begin0 - .quad Lset2506 -Lset2507 = Ltmp4417-Lfunc_begin0 - .quad Lset2507 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2508 = Ltmp4445-Lfunc_begin0 - .quad Lset2508 -Lset2509 = Ltmp4446-Lfunc_begin0 - .quad Lset2509 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2510 = Ltmp4491-Lfunc_begin0 - .quad Lset2510 -Lset2511 = Ltmp4492-Lfunc_begin0 - .quad Lset2511 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2512 = Ltmp4530-Lfunc_begin0 - .quad Lset2512 -Lset2513 = Ltmp4531-Lfunc_begin0 - .quad Lset2513 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2514 = Ltmp4554-Lfunc_begin0 - .quad Lset2514 -Lset2515 = Ltmp4555-Lfunc_begin0 - .quad Lset2515 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2516 = Ltmp4578-Lfunc_begin0 - .quad Lset2516 -Lset2517 = Ltmp4579-Lfunc_begin0 - .quad Lset2517 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2518 = Ltmp4602-Lfunc_begin0 - .quad Lset2518 -Lset2519 = Ltmp4603-Lfunc_begin0 - .quad Lset2519 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2520 = Ltmp4617-Lfunc_begin0 - .quad Lset2520 -Lset2521 = Ltmp4618-Lfunc_begin0 - .quad Lset2521 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2522 = Ltmp4632-Lfunc_begin0 - .quad Lset2522 -Lset2523 = Ltmp4633-Lfunc_begin0 - .quad Lset2523 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2524 = Ltmp4648-Lfunc_begin0 - .quad Lset2524 -Lset2525 = Ltmp4649-Lfunc_begin0 - .quad Lset2525 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2526 = Ltmp4664-Lfunc_begin0 - .quad Lset2526 -Lset2527 = Ltmp4665-Lfunc_begin0 - .quad Lset2527 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2528 = Ltmp4681-Lfunc_begin0 - .quad Lset2528 -Lset2529 = Ltmp4682-Lfunc_begin0 - .quad Lset2529 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2530 = Ltmp4698-Lfunc_begin0 - .quad Lset2530 -Lset2531 = Ltmp4699-Lfunc_begin0 - .quad Lset2531 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2532 = Ltmp4715-Lfunc_begin0 - .quad Lset2532 -Lset2533 = Ltmp4716-Lfunc_begin0 - .quad Lset2533 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2534 = Ltmp4732-Lfunc_begin0 - .quad Lset2534 -Lset2535 = Ltmp4733-Lfunc_begin0 - .quad Lset2535 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2536 = Ltmp4749-Lfunc_begin0 - .quad Lset2536 -Lset2537 = Ltmp4750-Lfunc_begin0 - .quad Lset2537 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2538 = Ltmp4766-Lfunc_begin0 - .quad Lset2538 -Lset2539 = Ltmp4767-Lfunc_begin0 - .quad Lset2539 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2540 = Ltmp4783-Lfunc_begin0 - .quad Lset2540 -Lset2541 = Ltmp4784-Lfunc_begin0 - .quad Lset2541 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2542 = Ltmp4800-Lfunc_begin0 - .quad Lset2542 -Lset2543 = Ltmp4801-Lfunc_begin0 - .quad Lset2543 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2544 = Ltmp4817-Lfunc_begin0 - .quad Lset2544 -Lset2545 = Ltmp4818-Lfunc_begin0 - .quad Lset2545 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2546 = Ltmp4834-Lfunc_begin0 - .quad Lset2546 -Lset2547 = Ltmp4835-Lfunc_begin0 - .quad Lset2547 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2548 = Ltmp4851-Lfunc_begin0 - .quad Lset2548 -Lset2549 = Ltmp4852-Lfunc_begin0 - .quad Lset2549 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2550 = Ltmp4868-Lfunc_begin0 - .quad Lset2550 -Lset2551 = Ltmp4869-Lfunc_begin0 - .quad Lset2551 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2552 = Ltmp4885-Lfunc_begin0 - .quad Lset2552 -Lset2553 = Ltmp4886-Lfunc_begin0 - .quad Lset2553 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2554 = Ltmp4902-Lfunc_begin0 - .quad Lset2554 -Lset2555 = Ltmp4903-Lfunc_begin0 - .quad Lset2555 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2556 = Ltmp4947-Lfunc_begin0 - .quad Lset2556 -Lset2557 = Ltmp4948-Lfunc_begin0 - .quad Lset2557 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2558 = Ltmp4987-Lfunc_begin0 - .quad Lset2558 -Lset2559 = Ltmp4988-Lfunc_begin0 - .quad Lset2559 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2560 = Ltmp5005-Lfunc_begin0 - .quad Lset2560 -Lset2561 = Ltmp5006-Lfunc_begin0 - .quad Lset2561 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2562 = Ltmp5023-Lfunc_begin0 - .quad Lset2562 -Lset2563 = Ltmp5024-Lfunc_begin0 - .quad Lset2563 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2564 = Ltmp5041-Lfunc_begin0 - .quad Lset2564 -Lset2565 = Ltmp5042-Lfunc_begin0 - .quad Lset2565 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2566 = Ltmp5081-Lfunc_begin0 - .quad Lset2566 -Lset2567 = Ltmp5082-Lfunc_begin0 - .quad Lset2567 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2568 = Ltmp5117-Lfunc_begin0 - .quad Lset2568 -Lset2569 = Ltmp5118-Lfunc_begin0 - .quad Lset2569 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2570 = Ltmp5132-Lfunc_begin0 - .quad Lset2570 -Lset2571 = Ltmp5133-Lfunc_begin0 - .quad Lset2571 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2572 = Ltmp5147-Lfunc_begin0 - .quad Lset2572 -Lset2573 = Ltmp5148-Lfunc_begin0 - .quad Lset2573 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2574 = Ltmp5162-Lfunc_begin0 - .quad Lset2574 -Lset2575 = Ltmp5163-Lfunc_begin0 - .quad Lset2575 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2576 = Ltmp5178-Lfunc_begin0 - .quad Lset2576 -Lset2577 = Ltmp5179-Lfunc_begin0 - .quad Lset2577 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2578 = Ltmp5194-Lfunc_begin0 - .quad Lset2578 -Lset2579 = Ltmp5195-Lfunc_begin0 - .quad Lset2579 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset2580 = Ltmp5229-Lfunc_begin0 - .quad Lset2580 -Lset2581 = Ltmp5230-Lfunc_begin0 - .quad Lset2581 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 - .quad 0 - .quad 0 -Ldebug_loc168: -Lset2582 = Ltmp861-Lfunc_begin0 - .quad Lset2582 -Lset2583 = Ltmp862-Lfunc_begin0 - .quad Lset2583 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset2584 = Ltmp862-Lfunc_begin0 - .quad Lset2584 -Lset2585 = Lfunc_end17-Lfunc_begin0 - .quad Lset2585 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc169: -Lset2586 = Ltmp864-Lfunc_begin0 - .quad Lset2586 -Lset2587 = Ltmp872-Lfunc_begin0 - .quad Lset2587 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2588 = Ltmp872-Lfunc_begin0 - .quad Lset2588 -Lset2589 = Ltmp874-Lfunc_begin0 - .quad Lset2589 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2590 = Ltmp874-Lfunc_begin0 - .quad Lset2590 -Lset2591 = Ltmp879-Lfunc_begin0 - .quad Lset2591 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2592 = Ltmp879-Lfunc_begin0 - .quad Lset2592 -Lset2593 = Ltmp881-Lfunc_begin0 - .quad Lset2593 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2594 = Ltmp881-Lfunc_begin0 - .quad Lset2594 -Lset2595 = Ltmp894-Lfunc_begin0 - .quad Lset2595 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2596 = Ltmp894-Lfunc_begin0 - .quad Lset2596 -Lset2597 = Ltmp896-Lfunc_begin0 - .quad Lset2597 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2598 = Ltmp896-Lfunc_begin0 - .quad Lset2598 -Lset2599 = Ltmp910-Lfunc_begin0 - .quad Lset2599 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2600 = Ltmp910-Lfunc_begin0 - .quad Lset2600 -Lset2601 = Ltmp912-Lfunc_begin0 - .quad Lset2601 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2602 = Ltmp912-Lfunc_begin0 - .quad Lset2602 -Lset2603 = Ltmp926-Lfunc_begin0 - .quad Lset2603 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2604 = Ltmp926-Lfunc_begin0 - .quad Lset2604 -Lset2605 = Ltmp928-Lfunc_begin0 - .quad Lset2605 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2606 = Ltmp928-Lfunc_begin0 - .quad Lset2606 -Lset2607 = Ltmp944-Lfunc_begin0 - .quad Lset2607 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2608 = Ltmp944-Lfunc_begin0 - .quad Lset2608 -Lset2609 = Ltmp946-Lfunc_begin0 - .quad Lset2609 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2610 = Ltmp946-Lfunc_begin0 - .quad Lset2610 -Lset2611 = Ltmp967-Lfunc_begin0 - .quad Lset2611 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2612 = Ltmp967-Lfunc_begin0 - .quad Lset2612 -Lset2613 = Ltmp969-Lfunc_begin0 - .quad Lset2613 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2614 = Ltmp969-Lfunc_begin0 - .quad Lset2614 -Lset2615 = Ltmp983-Lfunc_begin0 - .quad Lset2615 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2616 = Ltmp983-Lfunc_begin0 - .quad Lset2616 -Lset2617 = Ltmp1022-Lfunc_begin0 - .quad Lset2617 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2618 = Ltmp1022-Lfunc_begin0 - .quad Lset2618 -Lset2619 = Ltmp1025-Lfunc_begin0 - .quad Lset2619 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2620 = Ltmp1025-Lfunc_begin0 - .quad Lset2620 -Lset2621 = Ltmp1053-Lfunc_begin0 - .quad Lset2621 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2622 = Ltmp1053-Lfunc_begin0 - .quad Lset2622 -Lset2623 = Ltmp1054-Lfunc_begin0 - .quad Lset2623 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2624 = Ltmp1054-Lfunc_begin0 - .quad Lset2624 -Lset2625 = Ltmp1093-Lfunc_begin0 - .quad Lset2625 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2626 = Ltmp1093-Lfunc_begin0 - .quad Lset2626 -Lset2627 = Ltmp1096-Lfunc_begin0 - .quad Lset2627 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2628 = Ltmp1096-Lfunc_begin0 - .quad Lset2628 -Lset2629 = Ltmp1124-Lfunc_begin0 - .quad Lset2629 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2630 = Ltmp1124-Lfunc_begin0 - .quad Lset2630 -Lset2631 = Ltmp1125-Lfunc_begin0 - .quad Lset2631 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2632 = Ltmp1132-Lfunc_begin0 - .quad Lset2632 -Lset2633 = Ltmp1237-Lfunc_begin0 - .quad Lset2633 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2634 = Ltmp1237-Lfunc_begin0 - .quad Lset2634 -Lset2635 = Ltmp1242-Lfunc_begin0 - .quad Lset2635 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2636 = Ltmp1244-Lfunc_begin0 - .quad Lset2636 -Lset2637 = Ltmp1283-Lfunc_begin0 - .quad Lset2637 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2638 = Ltmp1283-Lfunc_begin0 - .quad Lset2638 -Lset2639 = Ltmp1285-Lfunc_begin0 - .quad Lset2639 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2640 = Ltmp1285-Lfunc_begin0 - .quad Lset2640 -Lset2641 = Ltmp1287-Lfunc_begin0 - .quad Lset2641 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2642 = Ltmp1287-Lfunc_begin0 - .quad Lset2642 -Lset2643 = Ltmp1298-Lfunc_begin0 - .quad Lset2643 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2644 = Ltmp1298-Lfunc_begin0 - .quad Lset2644 -Lset2645 = Ltmp1300-Lfunc_begin0 - .quad Lset2645 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2646 = Ltmp1300-Lfunc_begin0 - .quad Lset2646 -Lset2647 = Ltmp1307-Lfunc_begin0 - .quad Lset2647 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2648 = Ltmp1308-Lfunc_begin0 - .quad Lset2648 -Lset2649 = Ltmp1420-Lfunc_begin0 - .quad Lset2649 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2650 = Ltmp1420-Lfunc_begin0 - .quad Lset2650 -Lset2651 = Ltmp1424-Lfunc_begin0 - .quad Lset2651 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2652 = Ltmp1426-Lfunc_begin0 - .quad Lset2652 -Lset2653 = Ltmp1465-Lfunc_begin0 - .quad Lset2653 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2654 = Ltmp1465-Lfunc_begin0 - .quad Lset2654 -Lset2655 = Ltmp1466-Lfunc_begin0 - .quad Lset2655 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2656 = Ltmp1467-Lfunc_begin0 - .quad Lset2656 -Lset2657 = Ltmp1576-Lfunc_begin0 - .quad Lset2657 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2658 = Ltmp1576-Lfunc_begin0 - .quad Lset2658 -Lset2659 = Ltmp1581-Lfunc_begin0 - .quad Lset2659 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2660 = Ltmp1581-Lfunc_begin0 - .quad Lset2660 -Lset2661 = Ltmp1611-Lfunc_begin0 - .quad Lset2661 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2662 = Ltmp1611-Lfunc_begin0 - .quad Lset2662 -Lset2663 = Ltmp1612-Lfunc_begin0 - .quad Lset2663 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2664 = Ltmp1612-Lfunc_begin0 - .quad Lset2664 -Lset2665 = Ltmp1624-Lfunc_begin0 - .quad Lset2665 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2666 = Ltmp1624-Lfunc_begin0 - .quad Lset2666 -Lset2667 = Ltmp1629-Lfunc_begin0 - .quad Lset2667 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2668 = Ltmp1629-Lfunc_begin0 - .quad Lset2668 -Lset2669 = Ltmp1661-Lfunc_begin0 - .quad Lset2669 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2670 = Ltmp1661-Lfunc_begin0 - .quad Lset2670 -Lset2671 = Ltmp1662-Lfunc_begin0 - .quad Lset2671 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2672 = Ltmp1662-Lfunc_begin0 - .quad Lset2672 -Lset2673 = Ltmp1670-Lfunc_begin0 - .quad Lset2673 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2674 = Ltmp1672-Lfunc_begin0 - .quad Lset2674 -Lset2675 = Ltmp1684-Lfunc_begin0 - .quad Lset2675 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2676 = Ltmp1684-Lfunc_begin0 - .quad Lset2676 -Lset2677 = Ltmp1697-Lfunc_begin0 - .quad Lset2677 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2678 = Ltmp1697-Lfunc_begin0 - .quad Lset2678 -Lset2679 = Ltmp1698-Lfunc_begin0 - .quad Lset2679 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2680 = Ltmp1700-Lfunc_begin0 - .quad Lset2680 -Lset2681 = Ltmp1724-Lfunc_begin0 - .quad Lset2681 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2682 = Ltmp1724-Lfunc_begin0 - .quad Lset2682 -Lset2683 = Ltmp1727-Lfunc_begin0 - .quad Lset2683 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2684 = Ltmp1727-Lfunc_begin0 - .quad Lset2684 -Lset2685 = Ltmp1748-Lfunc_begin0 - .quad Lset2685 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2686 = Ltmp1748-Lfunc_begin0 - .quad Lset2686 -Lset2687 = Ltmp1750-Lfunc_begin0 - .quad Lset2687 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2688 = Ltmp1750-Lfunc_begin0 - .quad Lset2688 -Lset2689 = Ltmp1756-Lfunc_begin0 - .quad Lset2689 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2690 = Ltmp1756-Lfunc_begin0 - .quad Lset2690 -Lset2691 = Ltmp1759-Lfunc_begin0 - .quad Lset2691 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2692 = Ltmp1759-Lfunc_begin0 - .quad Lset2692 -Lset2693 = Ltmp1785-Lfunc_begin0 - .quad Lset2693 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2694 = Ltmp1785-Lfunc_begin0 - .quad Lset2694 -Lset2695 = Ltmp1787-Lfunc_begin0 - .quad Lset2695 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2696 = Ltmp1787-Lfunc_begin0 - .quad Lset2696 -Lset2697 = Ltmp1789-Lfunc_begin0 - .quad Lset2697 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2698 = Ltmp1789-Lfunc_begin0 - .quad Lset2698 -Lset2699 = Ltmp1794-Lfunc_begin0 - .quad Lset2699 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2700 = Ltmp1794-Lfunc_begin0 - .quad Lset2700 -Lset2701 = Ltmp1796-Lfunc_begin0 - .quad Lset2701 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2702 = Ltmp1797-Lfunc_begin0 - .quad Lset2702 -Lset2703 = Ltmp1799-Lfunc_begin0 - .quad Lset2703 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2704 = Ltmp1799-Lfunc_begin0 - .quad Lset2704 -Lset2705 = Ltmp1800-Lfunc_begin0 - .quad Lset2705 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2706 = Ltmp1800-Lfunc_begin0 - .quad Lset2706 -Lset2707 = Ltmp1803-Lfunc_begin0 - .quad Lset2707 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2708 = Ltmp1803-Lfunc_begin0 - .quad Lset2708 -Lset2709 = Ltmp1808-Lfunc_begin0 - .quad Lset2709 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2710 = Ltmp1808-Lfunc_begin0 - .quad Lset2710 -Lset2711 = Ltmp1810-Lfunc_begin0 - .quad Lset2711 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2712 = Ltmp1810-Lfunc_begin0 - .quad Lset2712 -Lset2713 = Ltmp1813-Lfunc_begin0 - .quad Lset2713 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2714 = Ltmp1813-Lfunc_begin0 - .quad Lset2714 -Lset2715 = Ltmp1815-Lfunc_begin0 - .quad Lset2715 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2716 = Ltmp1815-Lfunc_begin0 - .quad Lset2716 -Lset2717 = Ltmp1816-Lfunc_begin0 - .quad Lset2717 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2718 = Ltmp1816-Lfunc_begin0 - .quad Lset2718 -Lset2719 = Ltmp1818-Lfunc_begin0 - .quad Lset2719 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2720 = Ltmp1819-Lfunc_begin0 - .quad Lset2720 -Lset2721 = Ltmp1834-Lfunc_begin0 - .quad Lset2721 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2722 = Ltmp1834-Lfunc_begin0 - .quad Lset2722 -Lset2723 = Ltmp1847-Lfunc_begin0 - .quad Lset2723 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2724 = Ltmp1847-Lfunc_begin0 - .quad Lset2724 -Lset2725 = Ltmp1848-Lfunc_begin0 - .quad Lset2725 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2726 = Ltmp1848-Lfunc_begin0 - .quad Lset2726 -Lset2727 = Ltmp1849-Lfunc_begin0 - .quad Lset2727 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2728 = Ltmp1849-Lfunc_begin0 - .quad Lset2728 -Lset2729 = Ltmp1856-Lfunc_begin0 - .quad Lset2729 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2730 = Ltmp1857-Lfunc_begin0 - .quad Lset2730 -Lset2731 = Ltmp1863-Lfunc_begin0 - .quad Lset2731 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2732 = Ltmp1863-Lfunc_begin0 - .quad Lset2732 -Lset2733 = Ltmp1865-Lfunc_begin0 - .quad Lset2733 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2734 = Ltmp1865-Lfunc_begin0 - .quad Lset2734 -Lset2735 = Ltmp1870-Lfunc_begin0 - .quad Lset2735 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2736 = Ltmp1870-Lfunc_begin0 - .quad Lset2736 -Lset2737 = Ltmp1872-Lfunc_begin0 - .quad Lset2737 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2738 = Ltmp1873-Lfunc_begin0 - .quad Lset2738 -Lset2739 = Ltmp1875-Lfunc_begin0 - .quad Lset2739 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2740 = Ltmp1875-Lfunc_begin0 - .quad Lset2740 -Lset2741 = Ltmp1876-Lfunc_begin0 - .quad Lset2741 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2742 = Ltmp1876-Lfunc_begin0 - .quad Lset2742 -Lset2743 = Ltmp1879-Lfunc_begin0 - .quad Lset2743 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2744 = Ltmp1879-Lfunc_begin0 - .quad Lset2744 -Lset2745 = Ltmp1884-Lfunc_begin0 - .quad Lset2745 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2746 = Ltmp1884-Lfunc_begin0 - .quad Lset2746 -Lset2747 = Ltmp1886-Lfunc_begin0 - .quad Lset2747 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2748 = Ltmp1886-Lfunc_begin0 - .quad Lset2748 -Lset2749 = Ltmp1889-Lfunc_begin0 - .quad Lset2749 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2750 = Ltmp1889-Lfunc_begin0 - .quad Lset2750 -Lset2751 = Ltmp1891-Lfunc_begin0 - .quad Lset2751 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2752 = Ltmp1891-Lfunc_begin0 - .quad Lset2752 -Lset2753 = Ltmp1892-Lfunc_begin0 - .quad Lset2753 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2754 = Ltmp1892-Lfunc_begin0 - .quad Lset2754 -Lset2755 = Ltmp1894-Lfunc_begin0 - .quad Lset2755 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2756 = Ltmp1895-Lfunc_begin0 - .quad Lset2756 -Lset2757 = Ltmp1910-Lfunc_begin0 - .quad Lset2757 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2758 = Ltmp1910-Lfunc_begin0 - .quad Lset2758 -Lset2759 = Ltmp1923-Lfunc_begin0 - .quad Lset2759 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2760 = Ltmp1923-Lfunc_begin0 - .quad Lset2760 -Lset2761 = Ltmp1924-Lfunc_begin0 - .quad Lset2761 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2762 = Ltmp1924-Lfunc_begin0 - .quad Lset2762 -Lset2763 = Ltmp1925-Lfunc_begin0 - .quad Lset2763 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2764 = Ltmp1925-Lfunc_begin0 - .quad Lset2764 -Lset2765 = Ltmp1932-Lfunc_begin0 - .quad Lset2765 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2766 = Ltmp1933-Lfunc_begin0 - .quad Lset2766 -Lset2767 = Ltmp1939-Lfunc_begin0 - .quad Lset2767 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2768 = Ltmp1939-Lfunc_begin0 - .quad Lset2768 -Lset2769 = Ltmp1941-Lfunc_begin0 - .quad Lset2769 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2770 = Ltmp1941-Lfunc_begin0 - .quad Lset2770 -Lset2771 = Ltmp1946-Lfunc_begin0 - .quad Lset2771 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2772 = Ltmp1946-Lfunc_begin0 - .quad Lset2772 -Lset2773 = Ltmp1948-Lfunc_begin0 - .quad Lset2773 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2774 = Ltmp1949-Lfunc_begin0 - .quad Lset2774 -Lset2775 = Ltmp1951-Lfunc_begin0 - .quad Lset2775 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2776 = Ltmp1951-Lfunc_begin0 - .quad Lset2776 -Lset2777 = Ltmp1952-Lfunc_begin0 - .quad Lset2777 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2778 = Ltmp1952-Lfunc_begin0 - .quad Lset2778 -Lset2779 = Ltmp1955-Lfunc_begin0 - .quad Lset2779 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2780 = Ltmp1955-Lfunc_begin0 - .quad Lset2780 -Lset2781 = Ltmp1960-Lfunc_begin0 - .quad Lset2781 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2782 = Ltmp1960-Lfunc_begin0 - .quad Lset2782 -Lset2783 = Ltmp1962-Lfunc_begin0 - .quad Lset2783 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2784 = Ltmp1962-Lfunc_begin0 - .quad Lset2784 -Lset2785 = Ltmp1965-Lfunc_begin0 - .quad Lset2785 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2786 = Ltmp1965-Lfunc_begin0 - .quad Lset2786 -Lset2787 = Ltmp1967-Lfunc_begin0 - .quad Lset2787 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2788 = Ltmp1967-Lfunc_begin0 - .quad Lset2788 -Lset2789 = Ltmp1968-Lfunc_begin0 - .quad Lset2789 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2790 = Ltmp1968-Lfunc_begin0 - .quad Lset2790 -Lset2791 = Ltmp1970-Lfunc_begin0 - .quad Lset2791 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2792 = Ltmp1971-Lfunc_begin0 - .quad Lset2792 -Lset2793 = Ltmp1986-Lfunc_begin0 - .quad Lset2793 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2794 = Ltmp1986-Lfunc_begin0 - .quad Lset2794 -Lset2795 = Ltmp1999-Lfunc_begin0 - .quad Lset2795 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2796 = Ltmp1999-Lfunc_begin0 - .quad Lset2796 -Lset2797 = Ltmp2000-Lfunc_begin0 - .quad Lset2797 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2798 = Ltmp2000-Lfunc_begin0 - .quad Lset2798 -Lset2799 = Ltmp2001-Lfunc_begin0 - .quad Lset2799 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2800 = Ltmp2001-Lfunc_begin0 - .quad Lset2800 -Lset2801 = Ltmp2008-Lfunc_begin0 - .quad Lset2801 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2802 = Ltmp2009-Lfunc_begin0 - .quad Lset2802 -Lset2803 = Ltmp2016-Lfunc_begin0 - .quad Lset2803 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2804 = Ltmp2016-Lfunc_begin0 - .quad Lset2804 -Lset2805 = Ltmp2018-Lfunc_begin0 - .quad Lset2805 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2806 = Ltmp2018-Lfunc_begin0 - .quad Lset2806 -Lset2807 = Ltmp2020-Lfunc_begin0 - .quad Lset2807 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2808 = Ltmp2020-Lfunc_begin0 - .quad Lset2808 -Lset2809 = Ltmp2022-Lfunc_begin0 - .quad Lset2809 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2810 = Ltmp2022-Lfunc_begin0 - .quad Lset2810 -Lset2811 = Ltmp2027-Lfunc_begin0 - .quad Lset2811 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2812 = Ltmp2027-Lfunc_begin0 - .quad Lset2812 -Lset2813 = Ltmp2029-Lfunc_begin0 - .quad Lset2813 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2814 = Ltmp2030-Lfunc_begin0 - .quad Lset2814 -Lset2815 = Ltmp2032-Lfunc_begin0 - .quad Lset2815 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2816 = Ltmp2032-Lfunc_begin0 - .quad Lset2816 -Lset2817 = Ltmp2033-Lfunc_begin0 - .quad Lset2817 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2818 = Ltmp2033-Lfunc_begin0 - .quad Lset2818 -Lset2819 = Ltmp2037-Lfunc_begin0 - .quad Lset2819 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2820 = Ltmp2037-Lfunc_begin0 - .quad Lset2820 -Lset2821 = Ltmp2042-Lfunc_begin0 - .quad Lset2821 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2822 = Ltmp2042-Lfunc_begin0 - .quad Lset2822 -Lset2823 = Ltmp2045-Lfunc_begin0 - .quad Lset2823 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2824 = Ltmp2045-Lfunc_begin0 - .quad Lset2824 -Lset2825 = Ltmp2048-Lfunc_begin0 - .quad Lset2825 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2826 = Ltmp2048-Lfunc_begin0 - .quad Lset2826 -Lset2827 = Ltmp2050-Lfunc_begin0 - .quad Lset2827 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2828 = Ltmp2050-Lfunc_begin0 - .quad Lset2828 -Lset2829 = Ltmp2051-Lfunc_begin0 - .quad Lset2829 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2830 = Ltmp2051-Lfunc_begin0 - .quad Lset2830 -Lset2831 = Ltmp2053-Lfunc_begin0 - .quad Lset2831 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2832 = Ltmp2054-Lfunc_begin0 - .quad Lset2832 -Lset2833 = Ltmp2069-Lfunc_begin0 - .quad Lset2833 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2834 = Ltmp2069-Lfunc_begin0 - .quad Lset2834 -Lset2835 = Ltmp2075-Lfunc_begin0 - .quad Lset2835 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2836 = Ltmp2075-Lfunc_begin0 - .quad Lset2836 -Lset2837 = Ltmp2083-Lfunc_begin0 - .quad Lset2837 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2838 = Ltmp2083-Lfunc_begin0 - .quad Lset2838 -Lset2839 = Ltmp2088-Lfunc_begin0 - .quad Lset2839 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2840 = Ltmp2088-Lfunc_begin0 - .quad Lset2840 -Lset2841 = Ltmp2099-Lfunc_begin0 - .quad Lset2841 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2842 = Ltmp2099-Lfunc_begin0 - .quad Lset2842 -Lset2843 = Ltmp2100-Lfunc_begin0 - .quad Lset2843 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2844 = Ltmp2100-Lfunc_begin0 - .quad Lset2844 -Lset2845 = Ltmp2102-Lfunc_begin0 - .quad Lset2845 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2846 = Ltmp2102-Lfunc_begin0 - .quad Lset2846 -Lset2847 = Ltmp2108-Lfunc_begin0 - .quad Lset2847 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2848 = Ltmp2108-Lfunc_begin0 - .quad Lset2848 -Lset2849 = Ltmp2122-Lfunc_begin0 - .quad Lset2849 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2850 = Ltmp2122-Lfunc_begin0 - .quad Lset2850 -Lset2851 = Ltmp2123-Lfunc_begin0 - .quad Lset2851 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2852 = Ltmp2123-Lfunc_begin0 - .quad Lset2852 -Lset2853 = Ltmp2132-Lfunc_begin0 - .quad Lset2853 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2854 = Ltmp2132-Lfunc_begin0 - .quad Lset2854 -Lset2855 = Ltmp2133-Lfunc_begin0 - .quad Lset2855 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2856 = Ltmp2133-Lfunc_begin0 - .quad Lset2856 -Lset2857 = Ltmp2148-Lfunc_begin0 - .quad Lset2857 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2858 = Ltmp2148-Lfunc_begin0 - .quad Lset2858 -Lset2859 = Ltmp2166-Lfunc_begin0 - .quad Lset2859 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2860 = Ltmp2166-Lfunc_begin0 - .quad Lset2860 -Lset2861 = Ltmp2177-Lfunc_begin0 - .quad Lset2861 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2862 = Ltmp2177-Lfunc_begin0 - .quad Lset2862 -Lset2863 = Ltmp2178-Lfunc_begin0 - .quad Lset2863 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2864 = Ltmp2178-Lfunc_begin0 - .quad Lset2864 -Lset2865 = Ltmp2180-Lfunc_begin0 - .quad Lset2865 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2866 = Ltmp2180-Lfunc_begin0 - .quad Lset2866 -Lset2867 = Ltmp2186-Lfunc_begin0 - .quad Lset2867 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2868 = Ltmp2186-Lfunc_begin0 - .quad Lset2868 -Lset2869 = Ltmp2200-Lfunc_begin0 - .quad Lset2869 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2870 = Ltmp2200-Lfunc_begin0 - .quad Lset2870 -Lset2871 = Ltmp2201-Lfunc_begin0 - .quad Lset2871 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2872 = Ltmp2201-Lfunc_begin0 - .quad Lset2872 -Lset2873 = Ltmp2210-Lfunc_begin0 - .quad Lset2873 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2874 = Ltmp2210-Lfunc_begin0 - .quad Lset2874 -Lset2875 = Ltmp2211-Lfunc_begin0 - .quad Lset2875 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2876 = Ltmp2211-Lfunc_begin0 - .quad Lset2876 -Lset2877 = Ltmp2226-Lfunc_begin0 - .quad Lset2877 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2878 = Ltmp2226-Lfunc_begin0 - .quad Lset2878 -Lset2879 = Ltmp2244-Lfunc_begin0 - .quad Lset2879 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2880 = Ltmp2244-Lfunc_begin0 - .quad Lset2880 -Lset2881 = Ltmp2255-Lfunc_begin0 - .quad Lset2881 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2882 = Ltmp2255-Lfunc_begin0 - .quad Lset2882 -Lset2883 = Ltmp2256-Lfunc_begin0 - .quad Lset2883 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2884 = Ltmp2256-Lfunc_begin0 - .quad Lset2884 -Lset2885 = Ltmp2258-Lfunc_begin0 - .quad Lset2885 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2886 = Ltmp2258-Lfunc_begin0 - .quad Lset2886 -Lset2887 = Ltmp2264-Lfunc_begin0 - .quad Lset2887 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2888 = Ltmp2264-Lfunc_begin0 - .quad Lset2888 -Lset2889 = Ltmp2278-Lfunc_begin0 - .quad Lset2889 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2890 = Ltmp2278-Lfunc_begin0 - .quad Lset2890 -Lset2891 = Ltmp2279-Lfunc_begin0 - .quad Lset2891 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2892 = Ltmp2279-Lfunc_begin0 - .quad Lset2892 -Lset2893 = Ltmp2288-Lfunc_begin0 - .quad Lset2893 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2894 = Ltmp2288-Lfunc_begin0 - .quad Lset2894 -Lset2895 = Ltmp2289-Lfunc_begin0 - .quad Lset2895 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2896 = Ltmp2289-Lfunc_begin0 - .quad Lset2896 -Lset2897 = Ltmp2304-Lfunc_begin0 - .quad Lset2897 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2898 = Ltmp2304-Lfunc_begin0 - .quad Lset2898 -Lset2899 = Ltmp2321-Lfunc_begin0 - .quad Lset2899 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2900 = Ltmp2321-Lfunc_begin0 - .quad Lset2900 -Lset2901 = Ltmp2332-Lfunc_begin0 - .quad Lset2901 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2902 = Ltmp2332-Lfunc_begin0 - .quad Lset2902 -Lset2903 = Ltmp2333-Lfunc_begin0 - .quad Lset2903 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2904 = Ltmp2333-Lfunc_begin0 - .quad Lset2904 -Lset2905 = Ltmp2335-Lfunc_begin0 - .quad Lset2905 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2906 = Ltmp2335-Lfunc_begin0 - .quad Lset2906 -Lset2907 = Ltmp2340-Lfunc_begin0 - .quad Lset2907 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2908 = Ltmp2340-Lfunc_begin0 - .quad Lset2908 -Lset2909 = Ltmp2378-Lfunc_begin0 - .quad Lset2909 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2910 = Ltmp2378-Lfunc_begin0 - .quad Lset2910 -Lset2911 = Ltmp2382-Lfunc_begin0 - .quad Lset2911 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2912 = Ltmp2382-Lfunc_begin0 - .quad Lset2912 -Lset2913 = Ltmp2398-Lfunc_begin0 - .quad Lset2913 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2914 = Ltmp2398-Lfunc_begin0 - .quad Lset2914 -Lset2915 = Ltmp2403-Lfunc_begin0 - .quad Lset2915 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2916 = Ltmp2403-Lfunc_begin0 - .quad Lset2916 -Lset2917 = Ltmp2414-Lfunc_begin0 - .quad Lset2917 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2918 = Ltmp2414-Lfunc_begin0 - .quad Lset2918 -Lset2919 = Ltmp2415-Lfunc_begin0 - .quad Lset2919 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2920 = Ltmp2415-Lfunc_begin0 - .quad Lset2920 -Lset2921 = Ltmp2417-Lfunc_begin0 - .quad Lset2921 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2922 = Ltmp2417-Lfunc_begin0 - .quad Lset2922 -Lset2923 = Ltmp2422-Lfunc_begin0 - .quad Lset2923 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2924 = Ltmp2422-Lfunc_begin0 - .quad Lset2924 -Lset2925 = Ltmp2460-Lfunc_begin0 - .quad Lset2925 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2926 = Ltmp2460-Lfunc_begin0 - .quad Lset2926 -Lset2927 = Ltmp2464-Lfunc_begin0 - .quad Lset2927 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2928 = Ltmp2464-Lfunc_begin0 - .quad Lset2928 -Lset2929 = Ltmp2483-Lfunc_begin0 - .quad Lset2929 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2930 = Ltmp2483-Lfunc_begin0 - .quad Lset2930 -Lset2931 = Ltmp2489-Lfunc_begin0 - .quad Lset2931 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2932 = Ltmp2489-Lfunc_begin0 - .quad Lset2932 -Lset2933 = Ltmp2491-Lfunc_begin0 - .quad Lset2933 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2934 = Ltmp2491-Lfunc_begin0 - .quad Lset2934 -Lset2935 = Ltmp2496-Lfunc_begin0 - .quad Lset2935 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2936 = Ltmp2496-Lfunc_begin0 - .quad Lset2936 -Lset2937 = Ltmp2531-Lfunc_begin0 - .quad Lset2937 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2938 = Ltmp2531-Lfunc_begin0 - .quad Lset2938 -Lset2939 = Ltmp2532-Lfunc_begin0 - .quad Lset2939 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2940 = Ltmp2532-Lfunc_begin0 - .quad Lset2940 -Lset2941 = Ltmp2534-Lfunc_begin0 - .quad Lset2941 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2942 = Ltmp2534-Lfunc_begin0 - .quad Lset2942 -Lset2943 = Ltmp2545-Lfunc_begin0 - .quad Lset2943 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2944 = Ltmp2546-Lfunc_begin0 - .quad Lset2944 -Lset2945 = Ltmp2560-Lfunc_begin0 - .quad Lset2945 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2946 = Ltmp2560-Lfunc_begin0 - .quad Lset2946 -Lset2947 = Ltmp2576-Lfunc_begin0 - .quad Lset2947 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2948 = Ltmp2576-Lfunc_begin0 - .quad Lset2948 -Lset2949 = Ltmp2578-Lfunc_begin0 - .quad Lset2949 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2950 = Ltmp2578-Lfunc_begin0 - .quad Lset2950 -Lset2951 = Ltmp2583-Lfunc_begin0 - .quad Lset2951 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2952 = Ltmp2583-Lfunc_begin0 - .quad Lset2952 -Lset2953 = Ltmp2619-Lfunc_begin0 - .quad Lset2953 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2954 = Ltmp2619-Lfunc_begin0 - .quad Lset2954 -Lset2955 = Ltmp2620-Lfunc_begin0 - .quad Lset2955 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2956 = Ltmp2620-Lfunc_begin0 - .quad Lset2956 -Lset2957 = Ltmp2622-Lfunc_begin0 - .quad Lset2957 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2958 = Ltmp2622-Lfunc_begin0 - .quad Lset2958 -Lset2959 = Ltmp2629-Lfunc_begin0 - .quad Lset2959 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2960 = Ltmp2629-Lfunc_begin0 - .quad Lset2960 -Lset2961 = Ltmp2637-Lfunc_begin0 - .quad Lset2961 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2962 = Ltmp2638-Lfunc_begin0 - .quad Lset2962 -Lset2963 = Ltmp2647-Lfunc_begin0 - .quad Lset2963 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2964 = Ltmp2647-Lfunc_begin0 - .quad Lset2964 -Lset2965 = Ltmp2649-Lfunc_begin0 - .quad Lset2965 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2966 = Ltmp2649-Lfunc_begin0 - .quad Lset2966 -Lset2967 = Ltmp2655-Lfunc_begin0 - .quad Lset2967 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset2968 = Ltmp2655-Lfunc_begin0 - .quad Lset2968 -Lset2969 = Ltmp2660-Lfunc_begin0 - .quad Lset2969 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2970 = Ltmp2661-Lfunc_begin0 - .quad Lset2970 -Lset2971 = Ltmp2663-Lfunc_begin0 - .quad Lset2971 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2972 = Ltmp2663-Lfunc_begin0 - .quad Lset2972 -Lset2973 = Ltmp2664-Lfunc_begin0 - .quad Lset2973 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2974 = Ltmp2664-Lfunc_begin0 - .quad Lset2974 -Lset2975 = Ltmp2666-Lfunc_begin0 - .quad Lset2975 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2976 = Ltmp2666-Lfunc_begin0 - .quad Lset2976 -Lset2977 = Ltmp2671-Lfunc_begin0 - .quad Lset2977 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2978 = Ltmp2671-Lfunc_begin0 - .quad Lset2978 -Lset2979 = Ltmp2709-Lfunc_begin0 - .quad Lset2979 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2980 = Ltmp2709-Lfunc_begin0 - .quad Lset2980 -Lset2981 = Ltmp2714-Lfunc_begin0 - .quad Lset2981 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2982 = Ltmp2714-Lfunc_begin0 - .quad Lset2982 -Lset2983 = Ltmp2726-Lfunc_begin0 - .quad Lset2983 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset2984 = Ltmp2726-Lfunc_begin0 - .quad Lset2984 -Lset2985 = Ltmp2731-Lfunc_begin0 - .quad Lset2985 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2986 = Ltmp2731-Lfunc_begin0 - .quad Lset2986 -Lset2987 = Ltmp2733-Lfunc_begin0 - .quad Lset2987 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2988 = Ltmp2733-Lfunc_begin0 - .quad Lset2988 -Lset2989 = Ltmp2738-Lfunc_begin0 - .quad Lset2989 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2990 = Ltmp2738-Lfunc_begin0 - .quad Lset2990 -Lset2991 = Ltmp2745-Lfunc_begin0 - .quad Lset2991 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2992 = Ltmp2746-Lfunc_begin0 - .quad Lset2992 -Lset2993 = Ltmp2749-Lfunc_begin0 - .quad Lset2993 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2994 = Ltmp2749-Lfunc_begin0 - .quad Lset2994 -Lset2995 = Ltmp2751-Lfunc_begin0 - .quad Lset2995 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset2996 = Ltmp2751-Lfunc_begin0 - .quad Lset2996 -Lset2997 = Ltmp2759-Lfunc_begin0 - .quad Lset2997 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset2998 = Ltmp2759-Lfunc_begin0 - .quad Lset2998 -Lset2999 = Ltmp2764-Lfunc_begin0 - .quad Lset2999 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3000 = Ltmp2764-Lfunc_begin0 - .quad Lset3000 -Lset3001 = Ltmp2769-Lfunc_begin0 - .quad Lset3001 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3002 = Ltmp2769-Lfunc_begin0 - .quad Lset3002 -Lset3003 = Ltmp2770-Lfunc_begin0 - .quad Lset3003 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3004 = Ltmp2770-Lfunc_begin0 - .quad Lset3004 -Lset3005 = Ltmp2772-Lfunc_begin0 - .quad Lset3005 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3006 = Ltmp2772-Lfunc_begin0 - .quad Lset3006 -Lset3007 = Ltmp2779-Lfunc_begin0 - .quad Lset3007 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3008 = Ltmp2779-Lfunc_begin0 - .quad Lset3008 -Lset3009 = Ltmp2790-Lfunc_begin0 - .quad Lset3009 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3010 = Ltmp2790-Lfunc_begin0 - .quad Lset3010 -Lset3011 = Ltmp2791-Lfunc_begin0 - .quad Lset3011 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3012 = Ltmp2791-Lfunc_begin0 - .quad Lset3012 -Lset3013 = Ltmp2793-Lfunc_begin0 - .quad Lset3013 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3014 = Ltmp2793-Lfunc_begin0 - .quad Lset3014 -Lset3015 = Ltmp2798-Lfunc_begin0 - .quad Lset3015 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3016 = Ltmp2798-Lfunc_begin0 - .quad Lset3016 -Lset3017 = Ltmp2800-Lfunc_begin0 - .quad Lset3017 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3018 = Ltmp2800-Lfunc_begin0 - .quad Lset3018 -Lset3019 = Ltmp2802-Lfunc_begin0 - .quad Lset3019 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3020 = Ltmp2802-Lfunc_begin0 - .quad Lset3020 -Lset3021 = Ltmp2818-Lfunc_begin0 - .quad Lset3021 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3022 = Ltmp2818-Lfunc_begin0 - .quad Lset3022 -Lset3023 = Ltmp2832-Lfunc_begin0 - .quad Lset3023 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3024 = Ltmp2832-Lfunc_begin0 - .quad Lset3024 -Lset3025 = Ltmp2834-Lfunc_begin0 - .quad Lset3025 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3026 = Ltmp2834-Lfunc_begin0 - .quad Lset3026 -Lset3027 = Ltmp2851-Lfunc_begin0 - .quad Lset3027 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3028 = Ltmp2851-Lfunc_begin0 - .quad Lset3028 -Lset3029 = Ltmp2857-Lfunc_begin0 - .quad Lset3029 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3030 = Ltmp2857-Lfunc_begin0 - .quad Lset3030 -Lset3031 = Ltmp2857-Lfunc_begin0 - .quad Lset3031 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3032 = Ltmp2857-Lfunc_begin0 - .quad Lset3032 -Lset3033 = Ltmp2870-Lfunc_begin0 - .quad Lset3033 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3034 = Ltmp2870-Lfunc_begin0 - .quad Lset3034 -Lset3035 = Ltmp2872-Lfunc_begin0 - .quad Lset3035 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3036 = Ltmp2872-Lfunc_begin0 - .quad Lset3036 -Lset3037 = Ltmp2874-Lfunc_begin0 - .quad Lset3037 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3038 = Ltmp2874-Lfunc_begin0 - .quad Lset3038 -Lset3039 = Ltmp2879-Lfunc_begin0 - .quad Lset3039 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3040 = Ltmp2879-Lfunc_begin0 - .quad Lset3040 -Lset3041 = Ltmp2904-Lfunc_begin0 - .quad Lset3041 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3042 = Ltmp2904-Lfunc_begin0 - .quad Lset3042 -Lset3043 = Ltmp2913-Lfunc_begin0 - .quad Lset3043 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3044 = Ltmp2913-Lfunc_begin0 - .quad Lset3044 -Lset3045 = Ltmp2935-Lfunc_begin0 - .quad Lset3045 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3046 = Ltmp2935-Lfunc_begin0 - .quad Lset3046 -Lset3047 = Ltmp2937-Lfunc_begin0 - .quad Lset3047 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3048 = Ltmp2937-Lfunc_begin0 - .quad Lset3048 -Lset3049 = Ltmp2939-Lfunc_begin0 - .quad Lset3049 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3050 = Ltmp2939-Lfunc_begin0 - .quad Lset3050 -Lset3051 = Ltmp2947-Lfunc_begin0 - .quad Lset3051 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3052 = Ltmp2947-Lfunc_begin0 - .quad Lset3052 -Lset3053 = Ltmp2950-Lfunc_begin0 - .quad Lset3053 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset3054 = Ltmp2950-Lfunc_begin0 - .quad Lset3054 -Lset3055 = Ltmp2957-Lfunc_begin0 - .quad Lset3055 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset3056 = Ltmp2957-Lfunc_begin0 - .quad Lset3056 -Lset3057 = Ltmp2959-Lfunc_begin0 - .quad Lset3057 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3058 = Ltmp2959-Lfunc_begin0 - .quad Lset3058 -Lset3059 = Ltmp2963-Lfunc_begin0 - .quad Lset3059 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset3060 = Ltmp2963-Lfunc_begin0 - .quad Lset3060 -Lset3061 = Ltmp2971-Lfunc_begin0 - .quad Lset3061 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3062 = Ltmp2971-Lfunc_begin0 - .quad Lset3062 -Lset3063 = Ltmp2973-Lfunc_begin0 - .quad Lset3063 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3064 = Ltmp2973-Lfunc_begin0 - .quad Lset3064 -Lset3065 = Ltmp2981-Lfunc_begin0 - .quad Lset3065 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3066 = Ltmp2981-Lfunc_begin0 - .quad Lset3066 -Lset3067 = Ltmp2992-Lfunc_begin0 - .quad Lset3067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset3068 = Ltmp2992-Lfunc_begin0 - .quad Lset3068 -Lset3069 = Ltmp3003-Lfunc_begin0 - .quad Lset3069 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3070 = Ltmp3003-Lfunc_begin0 - .quad Lset3070 -Lset3071 = Ltmp3004-Lfunc_begin0 - .quad Lset3071 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3072 = Ltmp3006-Lfunc_begin0 - .quad Lset3072 -Lset3073 = Ltmp3013-Lfunc_begin0 - .quad Lset3073 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3074 = Ltmp3013-Lfunc_begin0 - .quad Lset3074 -Lset3075 = Ltmp3015-Lfunc_begin0 - .quad Lset3075 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3076 = Ltmp3015-Lfunc_begin0 - .quad Lset3076 -Lset3077 = Ltmp3023-Lfunc_begin0 - .quad Lset3077 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3078 = Ltmp3023-Lfunc_begin0 - .quad Lset3078 -Lset3079 = Ltmp3034-Lfunc_begin0 - .quad Lset3079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset3080 = Ltmp3034-Lfunc_begin0 - .quad Lset3080 -Lset3081 = Ltmp3045-Lfunc_begin0 - .quad Lset3081 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3082 = Ltmp3045-Lfunc_begin0 - .quad Lset3082 -Lset3083 = Ltmp3046-Lfunc_begin0 - .quad Lset3083 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3084 = Ltmp3048-Lfunc_begin0 - .quad Lset3084 -Lset3085 = Ltmp3055-Lfunc_begin0 - .quad Lset3085 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3086 = Ltmp3055-Lfunc_begin0 - .quad Lset3086 -Lset3087 = Ltmp3057-Lfunc_begin0 - .quad Lset3087 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3088 = Ltmp3057-Lfunc_begin0 - .quad Lset3088 -Lset3089 = Ltmp3073-Lfunc_begin0 - .quad Lset3089 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3090 = Ltmp3073-Lfunc_begin0 - .quad Lset3090 -Lset3091 = Ltmp3083-Lfunc_begin0 - .quad Lset3091 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3092 = Ltmp3083-Lfunc_begin0 - .quad Lset3092 -Lset3093 = Ltmp3089-Lfunc_begin0 - .quad Lset3093 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3094 = Ltmp3089-Lfunc_begin0 - .quad Lset3094 -Lset3095 = Ltmp3091-Lfunc_begin0 - .quad Lset3095 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3096 = Ltmp3091-Lfunc_begin0 - .quad Lset3096 -Lset3097 = Ltmp3108-Lfunc_begin0 - .quad Lset3097 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3098 = Ltmp3108-Lfunc_begin0 - .quad Lset3098 -Lset3099 = Ltmp3120-Lfunc_begin0 - .quad Lset3099 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3100 = Ltmp3120-Lfunc_begin0 - .quad Lset3100 -Lset3101 = Ltmp3127-Lfunc_begin0 - .quad Lset3101 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3102 = Ltmp3127-Lfunc_begin0 - .quad Lset3102 -Lset3103 = Ltmp3129-Lfunc_begin0 - .quad Lset3103 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3104 = Ltmp3129-Lfunc_begin0 - .quad Lset3104 -Lset3105 = Ltmp3134-Lfunc_begin0 - .quad Lset3105 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3106 = Ltmp3134-Lfunc_begin0 - .quad Lset3106 -Lset3107 = Ltmp3155-Lfunc_begin0 - .quad Lset3107 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3108 = Ltmp3155-Lfunc_begin0 - .quad Lset3108 -Lset3109 = Ltmp3159-Lfunc_begin0 - .quad Lset3109 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3110 = Ltmp3161-Lfunc_begin0 - .quad Lset3110 -Lset3111 = Ltmp3162-Lfunc_begin0 - .quad Lset3111 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3112 = Ltmp3162-Lfunc_begin0 - .quad Lset3112 -Lset3113 = Ltmp3164-Lfunc_begin0 - .quad Lset3113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset3114 = Ltmp3164-Lfunc_begin0 - .quad Lset3114 -Lset3115 = Ltmp3168-Lfunc_begin0 - .quad Lset3115 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3116 = Ltmp3168-Lfunc_begin0 - .quad Lset3116 -Lset3117 = Ltmp3182-Lfunc_begin0 - .quad Lset3117 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3118 = Ltmp3182-Lfunc_begin0 - .quad Lset3118 -Lset3119 = Ltmp3188-Lfunc_begin0 - .quad Lset3119 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3120 = Ltmp3225-Lfunc_begin0 - .quad Lset3120 -Lset3121 = Ltmp3226-Lfunc_begin0 - .quad Lset3121 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3122 = Ltmp3226-Lfunc_begin0 - .quad Lset3122 -Lset3123 = Ltmp3228-Lfunc_begin0 - .quad Lset3123 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3124 = Ltmp3228-Lfunc_begin0 - .quad Lset3124 -Lset3125 = Ltmp3259-Lfunc_begin0 - .quad Lset3125 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3126 = Ltmp3259-Lfunc_begin0 - .quad Lset3126 -Lset3127 = Ltmp3354-Lfunc_begin0 - .quad Lset3127 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3128 = Ltmp3354-Lfunc_begin0 - .quad Lset3128 -Lset3129 = Ltmp3363-Lfunc_begin0 - .quad Lset3129 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3130 = Ltmp3363-Lfunc_begin0 - .quad Lset3130 -Lset3131 = Ltmp3365-Lfunc_begin0 - .quad Lset3131 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3132 = Ltmp3365-Lfunc_begin0 - .quad Lset3132 -Lset3133 = Ltmp3375-Lfunc_begin0 - .quad Lset3133 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3134 = Ltmp3375-Lfunc_begin0 - .quad Lset3134 -Lset3135 = Ltmp3377-Lfunc_begin0 - .quad Lset3135 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3136 = Ltmp3377-Lfunc_begin0 - .quad Lset3136 -Lset3137 = Ltmp3391-Lfunc_begin0 - .quad Lset3137 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3138 = Ltmp3391-Lfunc_begin0 - .quad Lset3138 -Lset3139 = Ltmp3485-Lfunc_begin0 - .quad Lset3139 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3140 = Ltmp3485-Lfunc_begin0 - .quad Lset3140 -Lset3141 = Ltmp3487-Lfunc_begin0 - .quad Lset3141 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3142 = Ltmp3487-Lfunc_begin0 - .quad Lset3142 -Lset3143 = Ltmp3489-Lfunc_begin0 - .quad Lset3143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset3144 = Ltmp3489-Lfunc_begin0 - .quad Lset3144 -Lset3145 = Ltmp3494-Lfunc_begin0 - .quad Lset3145 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3146 = Ltmp3494-Lfunc_begin0 - .quad Lset3146 -Lset3147 = Ltmp3513-Lfunc_begin0 - .quad Lset3147 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3148 = Ltmp3513-Lfunc_begin0 - .quad Lset3148 -Lset3149 = Ltmp3514-Lfunc_begin0 - .quad Lset3149 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3150 = Ltmp3514-Lfunc_begin0 - .quad Lset3150 -Lset3151 = Ltmp3531-Lfunc_begin0 - .quad Lset3151 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3152 = Ltmp3531-Lfunc_begin0 - .quad Lset3152 -Lset3153 = Ltmp3538-Lfunc_begin0 - .quad Lset3153 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3154 = Ltmp3538-Lfunc_begin0 - .quad Lset3154 -Lset3155 = Ltmp3540-Lfunc_begin0 - .quad Lset3155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset3156 = Ltmp3540-Lfunc_begin0 - .quad Lset3156 -Lset3157 = Ltmp3552-Lfunc_begin0 - .quad Lset3157 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3158 = Ltmp3552-Lfunc_begin0 - .quad Lset3158 -Lset3159 = Ltmp3599-Lfunc_begin0 - .quad Lset3159 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3160 = Ltmp3599-Lfunc_begin0 - .quad Lset3160 -Lset3161 = Ltmp3601-Lfunc_begin0 - .quad Lset3161 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3162 = Ltmp3601-Lfunc_begin0 - .quad Lset3162 -Lset3163 = Ltmp3603-Lfunc_begin0 - .quad Lset3163 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3164 = Ltmp3603-Lfunc_begin0 - .quad Lset3164 -Lset3165 = Ltmp3615-Lfunc_begin0 - .quad Lset3165 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3166 = Ltmp3615-Lfunc_begin0 - .quad Lset3166 -Lset3167 = Ltmp3617-Lfunc_begin0 - .quad Lset3167 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3168 = Ltmp3617-Lfunc_begin0 - .quad Lset3168 -Lset3169 = Ltmp3632-Lfunc_begin0 - .quad Lset3169 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3170 = Ltmp3632-Lfunc_begin0 - .quad Lset3170 -Lset3171 = Ltmp3634-Lfunc_begin0 - .quad Lset3171 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3172 = Ltmp3634-Lfunc_begin0 - .quad Lset3172 -Lset3173 = Ltmp3649-Lfunc_begin0 - .quad Lset3173 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3174 = Ltmp3649-Lfunc_begin0 - .quad Lset3174 -Lset3175 = Ltmp3651-Lfunc_begin0 - .quad Lset3175 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3176 = Ltmp3651-Lfunc_begin0 - .quad Lset3176 -Lset3177 = Ltmp3666-Lfunc_begin0 - .quad Lset3177 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3178 = Ltmp3666-Lfunc_begin0 - .quad Lset3178 -Lset3179 = Ltmp3668-Lfunc_begin0 - .quad Lset3179 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3180 = Ltmp3668-Lfunc_begin0 - .quad Lset3180 -Lset3181 = Ltmp3693-Lfunc_begin0 - .quad Lset3181 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3182 = Ltmp3693-Lfunc_begin0 - .quad Lset3182 -Lset3183 = Ltmp3695-Lfunc_begin0 - .quad Lset3183 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3184 = Ltmp3695-Lfunc_begin0 - .quad Lset3184 -Lset3185 = Ltmp3722-Lfunc_begin0 - .quad Lset3185 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3186 = Ltmp3722-Lfunc_begin0 - .quad Lset3186 -Lset3187 = Ltmp3724-Lfunc_begin0 - .quad Lset3187 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3188 = Ltmp3724-Lfunc_begin0 - .quad Lset3188 -Lset3189 = Ltmp3739-Lfunc_begin0 - .quad Lset3189 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3190 = Ltmp3739-Lfunc_begin0 - .quad Lset3190 -Lset3191 = Ltmp3741-Lfunc_begin0 - .quad Lset3191 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3192 = Ltmp3741-Lfunc_begin0 - .quad Lset3192 -Lset3193 = Ltmp3751-Lfunc_begin0 - .quad Lset3193 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3194 = Ltmp3751-Lfunc_begin0 - .quad Lset3194 -Lset3195 = Ltmp3761-Lfunc_begin0 - .quad Lset3195 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3196 = Ltmp3761-Lfunc_begin0 - .quad Lset3196 -Lset3197 = Ltmp3769-Lfunc_begin0 - .quad Lset3197 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3198 = Ltmp3769-Lfunc_begin0 - .quad Lset3198 -Lset3199 = Ltmp3771-Lfunc_begin0 - .quad Lset3199 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3200 = Ltmp3771-Lfunc_begin0 - .quad Lset3200 -Lset3201 = Ltmp3781-Lfunc_begin0 - .quad Lset3201 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3202 = Ltmp3781-Lfunc_begin0 - .quad Lset3202 -Lset3203 = Ltmp3791-Lfunc_begin0 - .quad Lset3203 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3204 = Ltmp3791-Lfunc_begin0 - .quad Lset3204 -Lset3205 = Ltmp3799-Lfunc_begin0 - .quad Lset3205 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3206 = Ltmp3799-Lfunc_begin0 - .quad Lset3206 -Lset3207 = Ltmp3801-Lfunc_begin0 - .quad Lset3207 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3208 = Ltmp3801-Lfunc_begin0 - .quad Lset3208 -Lset3209 = Ltmp3811-Lfunc_begin0 - .quad Lset3209 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3210 = Ltmp3811-Lfunc_begin0 - .quad Lset3210 -Lset3211 = Ltmp3821-Lfunc_begin0 - .quad Lset3211 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3212 = Ltmp3821-Lfunc_begin0 - .quad Lset3212 -Lset3213 = Ltmp3829-Lfunc_begin0 - .quad Lset3213 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3214 = Ltmp3829-Lfunc_begin0 - .quad Lset3214 -Lset3215 = Ltmp3831-Lfunc_begin0 - .quad Lset3215 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3216 = Ltmp3831-Lfunc_begin0 - .quad Lset3216 -Lset3217 = Ltmp3841-Lfunc_begin0 - .quad Lset3217 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3218 = Ltmp3841-Lfunc_begin0 - .quad Lset3218 -Lset3219 = Ltmp3851-Lfunc_begin0 - .quad Lset3219 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3220 = Ltmp3851-Lfunc_begin0 - .quad Lset3220 -Lset3221 = Ltmp3859-Lfunc_begin0 - .quad Lset3221 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3222 = Ltmp3859-Lfunc_begin0 - .quad Lset3222 -Lset3223 = Ltmp3861-Lfunc_begin0 - .quad Lset3223 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3224 = Ltmp3861-Lfunc_begin0 - .quad Lset3224 -Lset3225 = Ltmp3871-Lfunc_begin0 - .quad Lset3225 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3226 = Ltmp3871-Lfunc_begin0 - .quad Lset3226 -Lset3227 = Ltmp3881-Lfunc_begin0 - .quad Lset3227 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3228 = Ltmp3881-Lfunc_begin0 - .quad Lset3228 -Lset3229 = Ltmp3889-Lfunc_begin0 - .quad Lset3229 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3230 = Ltmp3889-Lfunc_begin0 - .quad Lset3230 -Lset3231 = Ltmp3891-Lfunc_begin0 - .quad Lset3231 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3232 = Ltmp3891-Lfunc_begin0 - .quad Lset3232 -Lset3233 = Ltmp3901-Lfunc_begin0 - .quad Lset3233 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3234 = Ltmp3901-Lfunc_begin0 - .quad Lset3234 -Lset3235 = Ltmp3911-Lfunc_begin0 - .quad Lset3235 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3236 = Ltmp3911-Lfunc_begin0 - .quad Lset3236 -Lset3237 = Ltmp3919-Lfunc_begin0 - .quad Lset3237 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3238 = Ltmp3919-Lfunc_begin0 - .quad Lset3238 -Lset3239 = Ltmp3921-Lfunc_begin0 - .quad Lset3239 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3240 = Ltmp3921-Lfunc_begin0 - .quad Lset3240 -Lset3241 = Ltmp3939-Lfunc_begin0 - .quad Lset3241 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3242 = Ltmp3939-Lfunc_begin0 - .quad Lset3242 -Lset3243 = Ltmp3947-Lfunc_begin0 - .quad Lset3243 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3244 = Ltmp3947-Lfunc_begin0 - .quad Lset3244 -Lset3245 = Ltmp3949-Lfunc_begin0 - .quad Lset3245 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3246 = Ltmp3949-Lfunc_begin0 - .quad Lset3246 -Lset3247 = Ltmp3962-Lfunc_begin0 - .quad Lset3247 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3248 = Ltmp3962-Lfunc_begin0 - .quad Lset3248 -Lset3249 = Ltmp3963-Lfunc_begin0 - .quad Lset3249 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3250 = Ltmp3963-Lfunc_begin0 - .quad Lset3250 -Lset3251 = Ltmp3991-Lfunc_begin0 - .quad Lset3251 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3252 = Ltmp3991-Lfunc_begin0 - .quad Lset3252 -Lset3253 = Ltmp3992-Lfunc_begin0 - .quad Lset3253 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3254 = Ltmp3992-Lfunc_begin0 - .quad Lset3254 -Lset3255 = Ltmp4019-Lfunc_begin0 - .quad Lset3255 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3256 = Ltmp4019-Lfunc_begin0 - .quad Lset3256 -Lset3257 = Ltmp4020-Lfunc_begin0 - .quad Lset3257 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3258 = Ltmp4020-Lfunc_begin0 - .quad Lset3258 -Lset3259 = Ltmp4057-Lfunc_begin0 - .quad Lset3259 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3260 = Ltmp4057-Lfunc_begin0 - .quad Lset3260 -Lset3261 = Ltmp4060-Lfunc_begin0 - .quad Lset3261 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3262 = Ltmp4060-Lfunc_begin0 - .quad Lset3262 -Lset3263 = Ltmp4080-Lfunc_begin0 - .quad Lset3263 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3264 = Ltmp4080-Lfunc_begin0 - .quad Lset3264 -Lset3265 = Ltmp4081-Lfunc_begin0 - .quad Lset3265 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3266 = Ltmp4082-Lfunc_begin0 - .quad Lset3266 -Lset3267 = Ltmp4103-Lfunc_begin0 - .quad Lset3267 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3268 = Ltmp4103-Lfunc_begin0 - .quad Lset3268 -Lset3269 = Ltmp4108-Lfunc_begin0 - .quad Lset3269 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3270 = Ltmp4117-Lfunc_begin0 - .quad Lset3270 -Lset3271 = Ltmp4127-Lfunc_begin0 - .quad Lset3271 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3272 = Ltmp4127-Lfunc_begin0 - .quad Lset3272 -Lset3273 = Ltmp4128-Lfunc_begin0 - .quad Lset3273 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3274 = Ltmp4129-Lfunc_begin0 - .quad Lset3274 -Lset3275 = Ltmp4150-Lfunc_begin0 - .quad Lset3275 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3276 = Ltmp4150-Lfunc_begin0 - .quad Lset3276 -Lset3277 = Ltmp4155-Lfunc_begin0 - .quad Lset3277 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3278 = Ltmp4164-Lfunc_begin0 - .quad Lset3278 -Lset3279 = Ltmp4174-Lfunc_begin0 - .quad Lset3279 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3280 = Ltmp4174-Lfunc_begin0 - .quad Lset3280 -Lset3281 = Ltmp4178-Lfunc_begin0 - .quad Lset3281 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3282 = Ltmp4178-Lfunc_begin0 - .quad Lset3282 -Lset3283 = Ltmp4179-Lfunc_begin0 - .quad Lset3283 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset3284 = Ltmp4179-Lfunc_begin0 - .quad Lset3284 -Lset3285 = Ltmp4185-Lfunc_begin0 - .quad Lset3285 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3286 = Ltmp4185-Lfunc_begin0 - .quad Lset3286 -Lset3287 = Ltmp4187-Lfunc_begin0 - .quad Lset3287 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3288 = Ltmp4187-Lfunc_begin0 - .quad Lset3288 -Lset3289 = Ltmp4195-Lfunc_begin0 - .quad Lset3289 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3290 = Ltmp4195-Lfunc_begin0 - .quad Lset3290 -Lset3291 = Ltmp4199-Lfunc_begin0 - .quad Lset3291 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset3292 = Ltmp4199-Lfunc_begin0 - .quad Lset3292 -Lset3293 = Ltmp4202-Lfunc_begin0 - .quad Lset3293 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset3294 = Ltmp4202-Lfunc_begin0 - .quad Lset3294 -Lset3295 = Ltmp4210-Lfunc_begin0 - .quad Lset3295 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset3296 = Ltmp4210-Lfunc_begin0 - .quad Lset3296 -Lset3297 = Ltmp4219-Lfunc_begin0 - .quad Lset3297 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3298 = Ltmp4219-Lfunc_begin0 - .quad Lset3298 -Lset3299 = Ltmp4221-Lfunc_begin0 - .quad Lset3299 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3300 = Ltmp4221-Lfunc_begin0 - .quad Lset3300 -Lset3301 = Ltmp4240-Lfunc_begin0 - .quad Lset3301 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3302 = Ltmp4240-Lfunc_begin0 - .quad Lset3302 -Lset3303 = Ltmp4242-Lfunc_begin0 - .quad Lset3303 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3304 = Ltmp4242-Lfunc_begin0 - .quad Lset3304 -Lset3305 = Ltmp4261-Lfunc_begin0 - .quad Lset3305 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3306 = Ltmp4261-Lfunc_begin0 - .quad Lset3306 -Lset3307 = Ltmp4263-Lfunc_begin0 - .quad Lset3307 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3308 = Ltmp4263-Lfunc_begin0 - .quad Lset3308 -Lset3309 = Ltmp4273-Lfunc_begin0 - .quad Lset3309 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3310 = Ltmp4273-Lfunc_begin0 - .quad Lset3310 -Lset3311 = Ltmp4302-Lfunc_begin0 - .quad Lset3311 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3312 = Ltmp4302-Lfunc_begin0 - .quad Lset3312 -Lset3313 = Ltmp4303-Lfunc_begin0 - .quad Lset3313 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3314 = Ltmp4303-Lfunc_begin0 - .quad Lset3314 -Lset3315 = Ltmp4307-Lfunc_begin0 - .quad Lset3315 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3316 = Ltmp4307-Lfunc_begin0 - .quad Lset3316 -Lset3317 = Ltmp4308-Lfunc_begin0 - .quad Lset3317 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3318 = Ltmp4309-Lfunc_begin0 - .quad Lset3318 -Lset3319 = Ltmp4318-Lfunc_begin0 - .quad Lset3319 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3320 = Ltmp4318-Lfunc_begin0 - .quad Lset3320 -Lset3321 = Ltmp4322-Lfunc_begin0 - .quad Lset3321 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset3322 = Ltmp4323-Lfunc_begin0 - .quad Lset3322 -Lset3323 = Ltmp4331-Lfunc_begin0 - .quad Lset3323 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3324 = Ltmp4331-Lfunc_begin0 - .quad Lset3324 -Lset3325 = Ltmp4333-Lfunc_begin0 - .quad Lset3325 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3326 = Ltmp4333-Lfunc_begin0 - .quad Lset3326 -Lset3327 = Ltmp4342-Lfunc_begin0 - .quad Lset3327 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3328 = Ltmp4342-Lfunc_begin0 - .quad Lset3328 -Lset3329 = Ltmp4356-Lfunc_begin0 - .quad Lset3329 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3330 = Ltmp4356-Lfunc_begin0 - .quad Lset3330 -Lset3331 = Ltmp4362-Lfunc_begin0 - .quad Lset3331 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3332 = Ltmp4362-Lfunc_begin0 - .quad Lset3332 -Lset3333 = Ltmp4364-Lfunc_begin0 - .quad Lset3333 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3334 = Ltmp4364-Lfunc_begin0 - .quad Lset3334 -Lset3335 = Ltmp4373-Lfunc_begin0 - .quad Lset3335 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3336 = Ltmp4373-Lfunc_begin0 - .quad Lset3336 -Lset3337 = Ltmp4397-Lfunc_begin0 - .quad Lset3337 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3338 = Ltmp4397-Lfunc_begin0 - .quad Lset3338 -Lset3339 = Ltmp4398-Lfunc_begin0 - .quad Lset3339 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3340 = Ltmp4398-Lfunc_begin0 - .quad Lset3340 -Lset3341 = Ltmp4403-Lfunc_begin0 - .quad Lset3341 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3342 = Ltmp4403-Lfunc_begin0 - .quad Lset3342 -Lset3343 = Ltmp4404-Lfunc_begin0 - .quad Lset3343 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3344 = Ltmp4404-Lfunc_begin0 - .quad Lset3344 -Lset3345 = Ltmp4411-Lfunc_begin0 - .quad Lset3345 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3346 = Ltmp4411-Lfunc_begin0 - .quad Lset3346 -Lset3347 = Ltmp4415-Lfunc_begin0 - .quad Lset3347 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset3348 = Ltmp4416-Lfunc_begin0 - .quad Lset3348 -Lset3349 = Ltmp4424-Lfunc_begin0 - .quad Lset3349 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3350 = Ltmp4424-Lfunc_begin0 - .quad Lset3350 -Lset3351 = Ltmp4426-Lfunc_begin0 - .quad Lset3351 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3352 = Ltmp4426-Lfunc_begin0 - .quad Lset3352 -Lset3353 = Ltmp4435-Lfunc_begin0 - .quad Lset3353 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3354 = Ltmp4435-Lfunc_begin0 - .quad Lset3354 -Lset3355 = Ltmp4448-Lfunc_begin0 - .quad Lset3355 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3356 = Ltmp4448-Lfunc_begin0 - .quad Lset3356 -Lset3357 = Ltmp4454-Lfunc_begin0 - .quad Lset3357 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3358 = Ltmp4454-Lfunc_begin0 - .quad Lset3358 -Lset3359 = Ltmp4464-Lfunc_begin0 - .quad Lset3359 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3360 = Ltmp4464-Lfunc_begin0 - .quad Lset3360 -Lset3361 = Ltmp4465-Lfunc_begin0 - .quad Lset3361 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3362 = Ltmp4465-Lfunc_begin0 - .quad Lset3362 -Lset3363 = Ltmp4467-Lfunc_begin0 - .quad Lset3363 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3364 = Ltmp4467-Lfunc_begin0 - .quad Lset3364 -Lset3365 = Ltmp4472-Lfunc_begin0 - .quad Lset3365 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3366 = Ltmp4472-Lfunc_begin0 - .quad Lset3366 -Lset3367 = Ltmp4473-Lfunc_begin0 - .quad Lset3367 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3368 = Ltmp4473-Lfunc_begin0 - .quad Lset3368 -Lset3369 = Ltmp4474-Lfunc_begin0 - .quad Lset3369 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3370 = Ltmp4474-Lfunc_begin0 - .quad Lset3370 -Lset3371 = Ltmp4480-Lfunc_begin0 - .quad Lset3371 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3372 = Ltmp4480-Lfunc_begin0 - .quad Lset3372 -Lset3373 = Ltmp4499-Lfunc_begin0 - .quad Lset3373 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3374 = Ltmp4499-Lfunc_begin0 - .quad Lset3374 -Lset3375 = Ltmp4501-Lfunc_begin0 - .quad Lset3375 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3376 = Ltmp4501-Lfunc_begin0 - .quad Lset3376 -Lset3377 = Ltmp4508-Lfunc_begin0 - .quad Lset3377 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3378 = Ltmp4508-Lfunc_begin0 - .quad Lset3378 -Lset3379 = Ltmp4518-Lfunc_begin0 - .quad Lset3379 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3380 = Ltmp4518-Lfunc_begin0 - .quad Lset3380 -Lset3381 = Ltmp4536-Lfunc_begin0 - .quad Lset3381 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3382 = Ltmp4536-Lfunc_begin0 - .quad Lset3382 -Lset3383 = Ltmp4538-Lfunc_begin0 - .quad Lset3383 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3384 = Ltmp4538-Lfunc_begin0 - .quad Lset3384 -Lset3385 = Ltmp4550-Lfunc_begin0 - .quad Lset3385 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3386 = Ltmp4550-Lfunc_begin0 - .quad Lset3386 -Lset3387 = Ltmp4552-Lfunc_begin0 - .quad Lset3387 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3388 = Ltmp4552-Lfunc_begin0 - .quad Lset3388 -Lset3389 = Ltmp4560-Lfunc_begin0 - .quad Lset3389 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3390 = Ltmp4560-Lfunc_begin0 - .quad Lset3390 -Lset3391 = Ltmp4562-Lfunc_begin0 - .quad Lset3391 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3392 = Ltmp4562-Lfunc_begin0 - .quad Lset3392 -Lset3393 = Ltmp4574-Lfunc_begin0 - .quad Lset3393 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3394 = Ltmp4574-Lfunc_begin0 - .quad Lset3394 -Lset3395 = Ltmp4576-Lfunc_begin0 - .quad Lset3395 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3396 = Ltmp4576-Lfunc_begin0 - .quad Lset3396 -Lset3397 = Ltmp4584-Lfunc_begin0 - .quad Lset3397 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3398 = Ltmp4584-Lfunc_begin0 - .quad Lset3398 -Lset3399 = Ltmp4586-Lfunc_begin0 - .quad Lset3399 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3400 = Ltmp4586-Lfunc_begin0 - .quad Lset3400 -Lset3401 = Ltmp4598-Lfunc_begin0 - .quad Lset3401 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3402 = Ltmp4598-Lfunc_begin0 - .quad Lset3402 -Lset3403 = Ltmp4600-Lfunc_begin0 - .quad Lset3403 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3404 = Ltmp4600-Lfunc_begin0 - .quad Lset3404 -Lset3405 = Ltmp4608-Lfunc_begin0 - .quad Lset3405 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3406 = Ltmp4608-Lfunc_begin0 - .quad Lset3406 -Lset3407 = Ltmp4610-Lfunc_begin0 - .quad Lset3407 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3408 = Ltmp4610-Lfunc_begin0 - .quad Lset3408 -Lset3409 = Ltmp4623-Lfunc_begin0 - .quad Lset3409 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3410 = Ltmp4623-Lfunc_begin0 - .quad Lset3410 -Lset3411 = Ltmp4625-Lfunc_begin0 - .quad Lset3411 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3412 = Ltmp4625-Lfunc_begin0 - .quad Lset3412 -Lset3413 = Ltmp4638-Lfunc_begin0 - .quad Lset3413 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3414 = Ltmp4638-Lfunc_begin0 - .quad Lset3414 -Lset3415 = Ltmp4640-Lfunc_begin0 - .quad Lset3415 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3416 = Ltmp4640-Lfunc_begin0 - .quad Lset3416 -Lset3417 = Ltmp4654-Lfunc_begin0 - .quad Lset3417 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3418 = Ltmp4654-Lfunc_begin0 - .quad Lset3418 -Lset3419 = Ltmp4656-Lfunc_begin0 - .quad Lset3419 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3420 = Ltmp4656-Lfunc_begin0 - .quad Lset3420 -Lset3421 = Ltmp4670-Lfunc_begin0 - .quad Lset3421 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3422 = Ltmp4670-Lfunc_begin0 - .quad Lset3422 -Lset3423 = Ltmp4672-Lfunc_begin0 - .quad Lset3423 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3424 = Ltmp4672-Lfunc_begin0 - .quad Lset3424 -Lset3425 = Ltmp4687-Lfunc_begin0 - .quad Lset3425 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3426 = Ltmp4687-Lfunc_begin0 - .quad Lset3426 -Lset3427 = Ltmp4689-Lfunc_begin0 - .quad Lset3427 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3428 = Ltmp4689-Lfunc_begin0 - .quad Lset3428 -Lset3429 = Ltmp4704-Lfunc_begin0 - .quad Lset3429 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3430 = Ltmp4704-Lfunc_begin0 - .quad Lset3430 -Lset3431 = Ltmp4706-Lfunc_begin0 - .quad Lset3431 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3432 = Ltmp4706-Lfunc_begin0 - .quad Lset3432 -Lset3433 = Ltmp4721-Lfunc_begin0 - .quad Lset3433 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3434 = Ltmp4721-Lfunc_begin0 - .quad Lset3434 -Lset3435 = Ltmp4723-Lfunc_begin0 - .quad Lset3435 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3436 = Ltmp4723-Lfunc_begin0 - .quad Lset3436 -Lset3437 = Ltmp4738-Lfunc_begin0 - .quad Lset3437 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3438 = Ltmp4738-Lfunc_begin0 - .quad Lset3438 -Lset3439 = Ltmp4740-Lfunc_begin0 - .quad Lset3439 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3440 = Ltmp4740-Lfunc_begin0 - .quad Lset3440 -Lset3441 = Ltmp4755-Lfunc_begin0 - .quad Lset3441 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3442 = Ltmp4755-Lfunc_begin0 - .quad Lset3442 -Lset3443 = Ltmp4757-Lfunc_begin0 - .quad Lset3443 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3444 = Ltmp4757-Lfunc_begin0 - .quad Lset3444 -Lset3445 = Ltmp4772-Lfunc_begin0 - .quad Lset3445 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3446 = Ltmp4772-Lfunc_begin0 - .quad Lset3446 -Lset3447 = Ltmp4774-Lfunc_begin0 - .quad Lset3447 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3448 = Ltmp4774-Lfunc_begin0 - .quad Lset3448 -Lset3449 = Ltmp4789-Lfunc_begin0 - .quad Lset3449 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3450 = Ltmp4789-Lfunc_begin0 - .quad Lset3450 -Lset3451 = Ltmp4791-Lfunc_begin0 - .quad Lset3451 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3452 = Ltmp4791-Lfunc_begin0 - .quad Lset3452 -Lset3453 = Ltmp4806-Lfunc_begin0 - .quad Lset3453 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3454 = Ltmp4806-Lfunc_begin0 - .quad Lset3454 -Lset3455 = Ltmp4808-Lfunc_begin0 - .quad Lset3455 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3456 = Ltmp4808-Lfunc_begin0 - .quad Lset3456 -Lset3457 = Ltmp4823-Lfunc_begin0 - .quad Lset3457 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3458 = Ltmp4823-Lfunc_begin0 - .quad Lset3458 -Lset3459 = Ltmp4825-Lfunc_begin0 - .quad Lset3459 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3460 = Ltmp4825-Lfunc_begin0 - .quad Lset3460 -Lset3461 = Ltmp4840-Lfunc_begin0 - .quad Lset3461 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3462 = Ltmp4840-Lfunc_begin0 - .quad Lset3462 -Lset3463 = Ltmp4842-Lfunc_begin0 - .quad Lset3463 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3464 = Ltmp4842-Lfunc_begin0 - .quad Lset3464 -Lset3465 = Ltmp4857-Lfunc_begin0 - .quad Lset3465 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3466 = Ltmp4857-Lfunc_begin0 - .quad Lset3466 -Lset3467 = Ltmp4859-Lfunc_begin0 - .quad Lset3467 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3468 = Ltmp4859-Lfunc_begin0 - .quad Lset3468 -Lset3469 = Ltmp4874-Lfunc_begin0 - .quad Lset3469 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3470 = Ltmp4874-Lfunc_begin0 - .quad Lset3470 -Lset3471 = Ltmp4876-Lfunc_begin0 - .quad Lset3471 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3472 = Ltmp4876-Lfunc_begin0 - .quad Lset3472 -Lset3473 = Ltmp4891-Lfunc_begin0 - .quad Lset3473 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3474 = Ltmp4891-Lfunc_begin0 - .quad Lset3474 -Lset3475 = Ltmp4893-Lfunc_begin0 - .quad Lset3475 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3476 = Ltmp4893-Lfunc_begin0 - .quad Lset3476 -Lset3477 = Ltmp4907-Lfunc_begin0 - .quad Lset3477 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3478 = Ltmp4907-Lfunc_begin0 - .quad Lset3478 -Lset3479 = Ltmp4917-Lfunc_begin0 - .quad Lset3479 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3480 = Ltmp4918-Lfunc_begin0 - .quad Lset3480 -Lset3481 = Ltmp4921-Lfunc_begin0 - .quad Lset3481 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3482 = Ltmp4921-Lfunc_begin0 - .quad Lset3482 -Lset3483 = Ltmp4922-Lfunc_begin0 - .quad Lset3483 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3484 = Ltmp4922-Lfunc_begin0 - .quad Lset3484 -Lset3485 = Ltmp4924-Lfunc_begin0 - .quad Lset3485 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3486 = Ltmp4924-Lfunc_begin0 - .quad Lset3486 -Lset3487 = Ltmp4929-Lfunc_begin0 - .quad Lset3487 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3488 = Ltmp4929-Lfunc_begin0 - .quad Lset3488 -Lset3489 = Ltmp4938-Lfunc_begin0 - .quad Lset3489 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3490 = Ltmp4938-Lfunc_begin0 - .quad Lset3490 -Lset3491 = Ltmp4942-Lfunc_begin0 - .quad Lset3491 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3492 = Ltmp4942-Lfunc_begin0 - .quad Lset3492 -Lset3493 = Ltmp4946-Lfunc_begin0 - .quad Lset3493 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3494 = Ltmp4946-Lfunc_begin0 - .quad Lset3494 -Lset3495 = Ltmp4952-Lfunc_begin0 - .quad Lset3495 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3496 = Ltmp4952-Lfunc_begin0 - .quad Lset3496 -Lset3497 = Ltmp4954-Lfunc_begin0 - .quad Lset3497 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3498 = Ltmp4954-Lfunc_begin0 - .quad Lset3498 -Lset3499 = Ltmp4955-Lfunc_begin0 - .quad Lset3499 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3500 = Ltmp4955-Lfunc_begin0 - .quad Lset3500 -Lset3501 = Ltmp4957-Lfunc_begin0 - .quad Lset3501 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3502 = Ltmp4957-Lfunc_begin0 - .quad Lset3502 -Lset3503 = Ltmp4962-Lfunc_begin0 - .quad Lset3503 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3504 = Ltmp4962-Lfunc_begin0 - .quad Lset3504 -Lset3505 = Ltmp4969-Lfunc_begin0 - .quad Lset3505 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3506 = Ltmp4971-Lfunc_begin0 - .quad Lset3506 -Lset3507 = Ltmp4976-Lfunc_begin0 - .quad Lset3507 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3508 = Ltmp4977-Lfunc_begin0 - .quad Lset3508 -Lset3509 = Ltmp4981-Lfunc_begin0 - .quad Lset3509 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3510 = Ltmp4981-Lfunc_begin0 - .quad Lset3510 -Lset3511 = Ltmp4985-Lfunc_begin0 - .quad Lset3511 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3512 = Ltmp4985-Lfunc_begin0 - .quad Lset3512 -Lset3513 = Ltmp4993-Lfunc_begin0 - .quad Lset3513 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3514 = Ltmp4993-Lfunc_begin0 - .quad Lset3514 -Lset3515 = Ltmp4995-Lfunc_begin0 - .quad Lset3515 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3516 = Ltmp4995-Lfunc_begin0 - .quad Lset3516 -Lset3517 = Ltmp5011-Lfunc_begin0 - .quad Lset3517 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3518 = Ltmp5011-Lfunc_begin0 - .quad Lset3518 -Lset3519 = Ltmp5013-Lfunc_begin0 - .quad Lset3519 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3520 = Ltmp5013-Lfunc_begin0 - .quad Lset3520 -Lset3521 = Ltmp5029-Lfunc_begin0 - .quad Lset3521 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3522 = Ltmp5029-Lfunc_begin0 - .quad Lset3522 -Lset3523 = Ltmp5031-Lfunc_begin0 - .quad Lset3523 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3524 = Ltmp5031-Lfunc_begin0 - .quad Lset3524 -Lset3525 = Ltmp5047-Lfunc_begin0 - .quad Lset3525 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3526 = Ltmp5047-Lfunc_begin0 - .quad Lset3526 -Lset3527 = Ltmp5057-Lfunc_begin0 - .quad Lset3527 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3528 = Ltmp5057-Lfunc_begin0 - .quad Lset3528 -Lset3529 = Ltmp5058-Lfunc_begin0 - .quad Lset3529 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3530 = Ltmp5058-Lfunc_begin0 - .quad Lset3530 -Lset3531 = Ltmp5060-Lfunc_begin0 - .quad Lset3531 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3532 = Ltmp5060-Lfunc_begin0 - .quad Lset3532 -Lset3533 = Ltmp5065-Lfunc_begin0 - .quad Lset3533 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3534 = Ltmp5065-Lfunc_begin0 - .quad Lset3534 -Lset3535 = Ltmp5075-Lfunc_begin0 - .quad Lset3535 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3536 = Ltmp5075-Lfunc_begin0 - .quad Lset3536 -Lset3537 = Ltmp5089-Lfunc_begin0 - .quad Lset3537 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3538 = Ltmp5089-Lfunc_begin0 - .quad Lset3538 -Lset3539 = Ltmp5091-Lfunc_begin0 - .quad Lset3539 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3540 = Ltmp5091-Lfunc_begin0 - .quad Lset3540 -Lset3541 = Ltmp5098-Lfunc_begin0 - .quad Lset3541 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3542 = Ltmp5098-Lfunc_begin0 - .quad Lset3542 -Lset3543 = Ltmp5107-Lfunc_begin0 - .quad Lset3543 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -96 - .byte 127 ## -Lset3544 = Ltmp5107-Lfunc_begin0 - .quad Lset3544 -Lset3545 = Ltmp5123-Lfunc_begin0 - .quad Lset3545 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3546 = Ltmp5123-Lfunc_begin0 - .quad Lset3546 -Lset3547 = Ltmp5125-Lfunc_begin0 - .quad Lset3547 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3548 = Ltmp5125-Lfunc_begin0 - .quad Lset3548 -Lset3549 = Ltmp5138-Lfunc_begin0 - .quad Lset3549 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3550 = Ltmp5138-Lfunc_begin0 - .quad Lset3550 -Lset3551 = Ltmp5140-Lfunc_begin0 - .quad Lset3551 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3552 = Ltmp5140-Lfunc_begin0 - .quad Lset3552 -Lset3553 = Ltmp5153-Lfunc_begin0 - .quad Lset3553 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3554 = Ltmp5153-Lfunc_begin0 - .quad Lset3554 -Lset3555 = Ltmp5155-Lfunc_begin0 - .quad Lset3555 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3556 = Ltmp5155-Lfunc_begin0 - .quad Lset3556 -Lset3557 = Ltmp5168-Lfunc_begin0 - .quad Lset3557 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3558 = Ltmp5168-Lfunc_begin0 - .quad Lset3558 -Lset3559 = Ltmp5170-Lfunc_begin0 - .quad Lset3559 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3560 = Ltmp5170-Lfunc_begin0 - .quad Lset3560 -Lset3561 = Ltmp5184-Lfunc_begin0 - .quad Lset3561 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3562 = Ltmp5184-Lfunc_begin0 - .quad Lset3562 -Lset3563 = Ltmp5186-Lfunc_begin0 - .quad Lset3563 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3564 = Ltmp5186-Lfunc_begin0 - .quad Lset3564 -Lset3565 = Ltmp5199-Lfunc_begin0 - .quad Lset3565 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3566 = Ltmp5199-Lfunc_begin0 - .quad Lset3566 -Lset3567 = Ltmp5207-Lfunc_begin0 - .quad Lset3567 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3568 = Ltmp5207-Lfunc_begin0 - .quad Lset3568 -Lset3569 = Ltmp5209-Lfunc_begin0 - .quad Lset3569 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset3570 = Ltmp5209-Lfunc_begin0 - .quad Lset3570 -Lset3571 = Ltmp5235-Lfunc_begin0 - .quad Lset3571 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset3572 = Ltmp5235-Lfunc_begin0 - .quad Lset3572 -Lset3573 = Ltmp5236-Lfunc_begin0 - .quad Lset3573 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc170: -Lset3574 = Ltmp865-Lfunc_begin0 - .quad Lset3574 -Lset3575 = Ltmp886-Lfunc_begin0 - .quad Lset3575 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3576 = Ltmp889-Lfunc_begin0 - .quad Lset3576 -Lset3577 = Ltmp901-Lfunc_begin0 - .quad Lset3577 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3578 = Ltmp905-Lfunc_begin0 - .quad Lset3578 -Lset3579 = Ltmp917-Lfunc_begin0 - .quad Lset3579 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3580 = Ltmp921-Lfunc_begin0 - .quad Lset3580 -Lset3581 = Ltmp933-Lfunc_begin0 - .quad Lset3581 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3582 = Ltmp939-Lfunc_begin0 - .quad Lset3582 -Lset3583 = Ltmp951-Lfunc_begin0 - .quad Lset3583 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3584 = Ltmp962-Lfunc_begin0 - .quad Lset3584 -Lset3585 = Ltmp974-Lfunc_begin0 - .quad Lset3585 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3586 = Ltmp979-Lfunc_begin0 - .quad Lset3586 -Lset3587 = Ltmp983-Lfunc_begin0 - .quad Lset3587 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3588 = Ltmp991-Lfunc_begin0 - .quad Lset3588 -Lset3589 = Ltmp997-Lfunc_begin0 - .quad Lset3589 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3590 = Ltmp1048-Lfunc_begin0 - .quad Lset3590 -Lset3591 = Ltmp1054-Lfunc_begin0 - .quad Lset3591 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3592 = Ltmp1062-Lfunc_begin0 - .quad Lset3592 -Lset3593 = Ltmp1068-Lfunc_begin0 - .quad Lset3593 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3594 = Ltmp1119-Lfunc_begin0 - .quad Lset3594 -Lset3595 = Ltmp1125-Lfunc_begin0 - .quad Lset3595 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3596 = Ltmp1137-Lfunc_begin0 - .quad Lset3596 -Lset3597 = Ltmp1143-Lfunc_begin0 - .quad Lset3597 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3598 = Ltmp1278-Lfunc_begin0 - .quad Lset3598 -Lset3599 = Ltmp1292-Lfunc_begin0 - .quad Lset3599 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3600 = Ltmp1303-Lfunc_begin0 - .quad Lset3600 -Lset3601 = Ltmp1307-Lfunc_begin0 - .quad Lset3601 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3602 = Ltmp1319-Lfunc_begin0 - .quad Lset3602 -Lset3603 = Ltmp1325-Lfunc_begin0 - .quad Lset3603 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3604 = Ltmp1460-Lfunc_begin0 - .quad Lset3604 -Lset3605 = Ltmp1466-Lfunc_begin0 - .quad Lset3605 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3606 = Ltmp1477-Lfunc_begin0 - .quad Lset3606 -Lset3607 = Ltmp1483-Lfunc_begin0 - .quad Lset3607 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3608 = Ltmp1606-Lfunc_begin0 - .quad Lset3608 -Lset3609 = Ltmp1612-Lfunc_begin0 - .quad Lset3609 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3610 = Ltmp1618-Lfunc_begin0 - .quad Lset3610 -Lset3611 = Ltmp1624-Lfunc_begin0 - .quad Lset3611 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3612 = Ltmp1655-Lfunc_begin0 - .quad Lset3612 -Lset3613 = Ltmp1670-Lfunc_begin0 - .quad Lset3613 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3614 = Ltmp1693-Lfunc_begin0 - .quad Lset3614 -Lset3615 = Ltmp1698-Lfunc_begin0 - .quad Lset3615 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3616 = Ltmp1707-Lfunc_begin0 - .quad Lset3616 -Lset3617 = Ltmp1716-Lfunc_begin0 - .quad Lset3617 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3618 = Ltmp1743-Lfunc_begin0 - .quad Lset3618 -Lset3619 = Ltmp1756-Lfunc_begin0 - .quad Lset3619 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3620 = Ltmp1779-Lfunc_begin0 - .quad Lset3620 -Lset3621 = Ltmp1794-Lfunc_begin0 - .quad Lset3621 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3622 = Ltmp1858-Lfunc_begin0 - .quad Lset3622 -Lset3623 = Ltmp1870-Lfunc_begin0 - .quad Lset3623 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3624 = Ltmp1934-Lfunc_begin0 - .quad Lset3624 -Lset3625 = Ltmp1946-Lfunc_begin0 - .quad Lset3625 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3626 = Ltmp2010-Lfunc_begin0 - .quad Lset3626 -Lset3627 = Ltmp2014-Lfunc_begin0 - .quad Lset3627 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3628 = Ltmp2018-Lfunc_begin0 - .quad Lset3628 -Lset3629 = Ltmp2027-Lfunc_begin0 - .quad Lset3629 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3630 = Ltmp2082-Lfunc_begin0 - .quad Lset3630 -Lset3631 = Ltmp2087-Lfunc_begin0 - .quad Lset3631 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3632 = Ltmp2099-Lfunc_begin0 - .quad Lset3632 -Lset3633 = Ltmp2107-Lfunc_begin0 - .quad Lset3633 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3634 = Ltmp2161-Lfunc_begin0 - .quad Lset3634 -Lset3635 = Ltmp2165-Lfunc_begin0 - .quad Lset3635 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3636 = Ltmp2177-Lfunc_begin0 - .quad Lset3636 -Lset3637 = Ltmp2185-Lfunc_begin0 - .quad Lset3637 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3638 = Ltmp2239-Lfunc_begin0 - .quad Lset3638 -Lset3639 = Ltmp2243-Lfunc_begin0 - .quad Lset3639 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3640 = Ltmp2255-Lfunc_begin0 - .quad Lset3640 -Lset3641 = Ltmp2263-Lfunc_begin0 - .quad Lset3641 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3642 = Ltmp2317-Lfunc_begin0 - .quad Lset3642 -Lset3643 = Ltmp2321-Lfunc_begin0 - .quad Lset3643 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3644 = Ltmp2332-Lfunc_begin0 - .quad Lset3644 -Lset3645 = Ltmp2340-Lfunc_begin0 - .quad Lset3645 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3646 = Ltmp2399-Lfunc_begin0 - .quad Lset3646 -Lset3647 = Ltmp2403-Lfunc_begin0 - .quad Lset3647 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3648 = Ltmp2414-Lfunc_begin0 - .quad Lset3648 -Lset3649 = Ltmp2422-Lfunc_begin0 - .quad Lset3649 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3650 = Ltmp2484-Lfunc_begin0 - .quad Lset3650 -Lset3651 = Ltmp2496-Lfunc_begin0 - .quad Lset3651 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3652 = Ltmp2571-Lfunc_begin0 - .quad Lset3652 -Lset3653 = Ltmp2583-Lfunc_begin0 - .quad Lset3653 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3654 = Ltmp2656-Lfunc_begin0 - .quad Lset3654 -Lset3655 = Ltmp2660-Lfunc_begin0 - .quad Lset3655 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3656 = Ltmp2663-Lfunc_begin0 - .quad Lset3656 -Lset3657 = Ltmp2671-Lfunc_begin0 - .quad Lset3657 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3658 = Ltmp2725-Lfunc_begin0 - .quad Lset3658 -Lset3659 = Ltmp2738-Lfunc_begin0 - .quad Lset3659 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3660 = Ltmp2774-Lfunc_begin0 - .quad Lset3660 -Lset3661 = Ltmp2778-Lfunc_begin0 - .quad Lset3661 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3662 = Ltmp2790-Lfunc_begin0 - .quad Lset3662 -Lset3663 = Ltmp2798-Lfunc_begin0 - .quad Lset3663 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3664 = Ltmp2827-Lfunc_begin0 - .quad Lset3664 -Lset3665 = Ltmp2839-Lfunc_begin0 - .quad Lset3665 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3666 = Ltmp2847-Lfunc_begin0 - .quad Lset3666 -Lset3667 = Ltmp2857-Lfunc_begin0 - .quad Lset3667 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3668 = Ltmp2863-Lfunc_begin0 - .quad Lset3668 -Lset3669 = Ltmp2879-Lfunc_begin0 - .quad Lset3669 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3670 = Ltmp2908-Lfunc_begin0 - .quad Lset3670 -Lset3671 = Ltmp2920-Lfunc_begin0 - .quad Lset3671 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3672 = Ltmp2929-Lfunc_begin0 - .quad Lset3672 -Lset3673 = Ltmp2943-Lfunc_begin0 - .quad Lset3673 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3674 = Ltmp2951-Lfunc_begin0 - .quad Lset3674 -Lset3675 = Ltmp2955-Lfunc_begin0 - .quad Lset3675 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3676 = Ltmp2964-Lfunc_begin0 - .quad Lset3676 -Lset3677 = Ltmp2978-Lfunc_begin0 - .quad Lset3677 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3678 = Ltmp2994-Lfunc_begin0 - .quad Lset3678 -Lset3679 = Ltmp3000-Lfunc_begin0 - .quad Lset3679 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3680 = Ltmp3007-Lfunc_begin0 - .quad Lset3680 -Lset3681 = Ltmp3020-Lfunc_begin0 - .quad Lset3681 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3682 = Ltmp3036-Lfunc_begin0 - .quad Lset3682 -Lset3683 = Ltmp3042-Lfunc_begin0 - .quad Lset3683 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3684 = Ltmp3049-Lfunc_begin0 - .quad Lset3684 -Lset3685 = Ltmp3062-Lfunc_begin0 - .quad Lset3685 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3686 = Ltmp3074-Lfunc_begin0 - .quad Lset3686 -Lset3687 = Ltmp3080-Lfunc_begin0 - .quad Lset3687 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3688 = Ltmp3084-Lfunc_begin0 - .quad Lset3688 -Lset3689 = Ltmp3096-Lfunc_begin0 - .quad Lset3689 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3690 = Ltmp3111-Lfunc_begin0 - .quad Lset3690 -Lset3691 = Ltmp3117-Lfunc_begin0 - .quad Lset3691 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3692 = Ltmp3122-Lfunc_begin0 - .quad Lset3692 -Lset3693 = Ltmp3134-Lfunc_begin0 - .quad Lset3693 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3694 = Ltmp3153-Lfunc_begin0 - .quad Lset3694 -Lset3695 = Ltmp3159-Lfunc_begin0 - .quad Lset3695 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3696 = Ltmp3161-Lfunc_begin0 - .quad Lset3696 -Lset3697 = Ltmp3168-Lfunc_begin0 - .quad Lset3697 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3698 = Ltmp3180-Lfunc_begin0 - .quad Lset3698 -Lset3699 = Ltmp3188-Lfunc_begin0 - .quad Lset3699 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3700 = Ltmp3225-Lfunc_begin0 - .quad Lset3700 -Lset3701 = Ltmp3233-Lfunc_begin0 - .quad Lset3701 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3702 = Ltmp3255-Lfunc_begin0 - .quad Lset3702 -Lset3703 = Ltmp3265-Lfunc_begin0 - .quad Lset3703 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3704 = Ltmp3349-Lfunc_begin0 - .quad Lset3704 -Lset3705 = Ltmp3355-Lfunc_begin0 - .quad Lset3705 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3706 = Ltmp3372-Lfunc_begin0 - .quad Lset3706 -Lset3707 = Ltmp3382-Lfunc_begin0 - .quad Lset3707 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3708 = Ltmp3387-Lfunc_begin0 - .quad Lset3708 -Lset3709 = Ltmp3398-Lfunc_begin0 - .quad Lset3709 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3710 = Ltmp3480-Lfunc_begin0 - .quad Lset3710 -Lset3711 = Ltmp3494-Lfunc_begin0 - .quad Lset3711 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3712 = Ltmp3547-Lfunc_begin0 - .quad Lset3712 -Lset3713 = Ltmp3559-Lfunc_begin0 - .quad Lset3713 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3714 = Ltmp3595-Lfunc_begin0 - .quad Lset3714 -Lset3715 = Ltmp3608-Lfunc_begin0 - .quad Lset3715 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3716 = Ltmp3610-Lfunc_begin0 - .quad Lset3716 -Lset3717 = Ltmp3622-Lfunc_begin0 - .quad Lset3717 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3718 = Ltmp3627-Lfunc_begin0 - .quad Lset3718 -Lset3719 = Ltmp3639-Lfunc_begin0 - .quad Lset3719 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3720 = Ltmp3644-Lfunc_begin0 - .quad Lset3720 -Lset3721 = Ltmp3656-Lfunc_begin0 - .quad Lset3721 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3722 = Ltmp3661-Lfunc_begin0 - .quad Lset3722 -Lset3723 = Ltmp3673-Lfunc_begin0 - .quad Lset3723 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3724 = Ltmp3688-Lfunc_begin0 - .quad Lset3724 -Lset3725 = Ltmp3700-Lfunc_begin0 - .quad Lset3725 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3726 = Ltmp3717-Lfunc_begin0 - .quad Lset3726 -Lset3727 = Ltmp3729-Lfunc_begin0 - .quad Lset3727 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3728 = Ltmp3734-Lfunc_begin0 - .quad Lset3728 -Lset3729 = Ltmp3746-Lfunc_begin0 - .quad Lset3729 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3730 = Ltmp3752-Lfunc_begin0 - .quad Lset3730 -Lset3731 = Ltmp3758-Lfunc_begin0 - .quad Lset3731 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3732 = Ltmp3764-Lfunc_begin0 - .quad Lset3732 -Lset3733 = Ltmp3776-Lfunc_begin0 - .quad Lset3733 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3734 = Ltmp3782-Lfunc_begin0 - .quad Lset3734 -Lset3735 = Ltmp3788-Lfunc_begin0 - .quad Lset3735 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3736 = Ltmp3794-Lfunc_begin0 - .quad Lset3736 -Lset3737 = Ltmp3806-Lfunc_begin0 - .quad Lset3737 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3738 = Ltmp3812-Lfunc_begin0 - .quad Lset3738 -Lset3739 = Ltmp3818-Lfunc_begin0 - .quad Lset3739 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3740 = Ltmp3824-Lfunc_begin0 - .quad Lset3740 -Lset3741 = Ltmp3836-Lfunc_begin0 - .quad Lset3741 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3742 = Ltmp3842-Lfunc_begin0 - .quad Lset3742 -Lset3743 = Ltmp3848-Lfunc_begin0 - .quad Lset3743 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3744 = Ltmp3854-Lfunc_begin0 - .quad Lset3744 -Lset3745 = Ltmp3866-Lfunc_begin0 - .quad Lset3745 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3746 = Ltmp3872-Lfunc_begin0 - .quad Lset3746 -Lset3747 = Ltmp3878-Lfunc_begin0 - .quad Lset3747 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3748 = Ltmp3884-Lfunc_begin0 - .quad Lset3748 -Lset3749 = Ltmp3896-Lfunc_begin0 - .quad Lset3749 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3750 = Ltmp3902-Lfunc_begin0 - .quad Lset3750 -Lset3751 = Ltmp3908-Lfunc_begin0 - .quad Lset3751 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3752 = Ltmp3914-Lfunc_begin0 - .quad Lset3752 -Lset3753 = Ltmp3926-Lfunc_begin0 - .quad Lset3753 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3754 = Ltmp3935-Lfunc_begin0 - .quad Lset3754 -Lset3755 = Ltmp3939-Lfunc_begin0 - .quad Lset3755 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3756 = Ltmp3940-Lfunc_begin0 - .quad Lset3756 -Lset3757 = Ltmp3947-Lfunc_begin0 - .quad Lset3757 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3758 = Ltmp3957-Lfunc_begin0 - .quad Lset3758 -Lset3759 = Ltmp3970-Lfunc_begin0 - .quad Lset3759 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3760 = Ltmp3985-Lfunc_begin0 - .quad Lset3760 -Lset3761 = Ltmp3999-Lfunc_begin0 - .quad Lset3761 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3762 = Ltmp4013-Lfunc_begin0 - .quad Lset3762 -Lset3763 = Ltmp4020-Lfunc_begin0 - .quad Lset3763 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3764 = Ltmp4027-Lfunc_begin0 - .quad Lset3764 -Lset3765 = Ltmp4033-Lfunc_begin0 - .quad Lset3765 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3766 = Ltmp4074-Lfunc_begin0 - .quad Lset3766 -Lset3767 = Ltmp4081-Lfunc_begin0 - .quad Lset3767 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3768 = Ltmp4088-Lfunc_begin0 - .quad Lset3768 -Lset3769 = Ltmp4095-Lfunc_begin0 - .quad Lset3769 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3770 = Ltmp4122-Lfunc_begin0 - .quad Lset3770 -Lset3771 = Ltmp4128-Lfunc_begin0 - .quad Lset3771 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3772 = Ltmp4135-Lfunc_begin0 - .quad Lset3772 -Lset3773 = Ltmp4142-Lfunc_begin0 - .quad Lset3773 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3774 = Ltmp4169-Lfunc_begin0 - .quad Lset3774 -Lset3775 = Ltmp4175-Lfunc_begin0 - .quad Lset3775 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3776 = Ltmp4184-Lfunc_begin0 - .quad Lset3776 -Lset3777 = Ltmp4192-Lfunc_begin0 - .quad Lset3777 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3778 = Ltmp4213-Lfunc_begin0 - .quad Lset3778 -Lset3779 = Ltmp4226-Lfunc_begin0 - .quad Lset3779 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3780 = Ltmp4235-Lfunc_begin0 - .quad Lset3780 -Lset3781 = Ltmp4247-Lfunc_begin0 - .quad Lset3781 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3782 = Ltmp4256-Lfunc_begin0 - .quad Lset3782 -Lset3783 = Ltmp4269-Lfunc_begin0 - .quad Lset3783 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3784 = Ltmp4324-Lfunc_begin0 - .quad Lset3784 -Lset3785 = Ltmp4338-Lfunc_begin0 - .quad Lset3785 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3786 = Ltmp4354-Lfunc_begin0 - .quad Lset3786 -Lset3787 = Ltmp4369-Lfunc_begin0 - .quad Lset3787 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3788 = Ltmp4417-Lfunc_begin0 - .quad Lset3788 -Lset3789 = Ltmp4431-Lfunc_begin0 - .quad Lset3789 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3790 = Ltmp4446-Lfunc_begin0 - .quad Lset3790 -Lset3791 = Ltmp4452-Lfunc_begin0 - .quad Lset3791 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3792 = Ltmp4464-Lfunc_begin0 - .quad Lset3792 -Lset3793 = Ltmp4472-Lfunc_begin0 - .quad Lset3793 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3794 = Ltmp4492-Lfunc_begin0 - .quad Lset3794 -Lset3795 = Ltmp4496-Lfunc_begin0 - .quad Lset3795 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3796 = Ltmp4498-Lfunc_begin0 - .quad Lset3796 -Lset3797 = Ltmp4506-Lfunc_begin0 - .quad Lset3797 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3798 = Ltmp4531-Lfunc_begin0 - .quad Lset3798 -Lset3799 = Ltmp4543-Lfunc_begin0 - .quad Lset3799 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3800 = Ltmp4555-Lfunc_begin0 - .quad Lset3800 -Lset3801 = Ltmp4567-Lfunc_begin0 - .quad Lset3801 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3802 = Ltmp4579-Lfunc_begin0 - .quad Lset3802 -Lset3803 = Ltmp4591-Lfunc_begin0 - .quad Lset3803 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3804 = Ltmp4603-Lfunc_begin0 - .quad Lset3804 -Lset3805 = Ltmp4615-Lfunc_begin0 - .quad Lset3805 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3806 = Ltmp4618-Lfunc_begin0 - .quad Lset3806 -Lset3807 = Ltmp4630-Lfunc_begin0 - .quad Lset3807 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3808 = Ltmp4633-Lfunc_begin0 - .quad Lset3808 -Lset3809 = Ltmp4645-Lfunc_begin0 - .quad Lset3809 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3810 = Ltmp4649-Lfunc_begin0 - .quad Lset3810 -Lset3811 = Ltmp4661-Lfunc_begin0 - .quad Lset3811 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3812 = Ltmp4665-Lfunc_begin0 - .quad Lset3812 -Lset3813 = Ltmp4677-Lfunc_begin0 - .quad Lset3813 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3814 = Ltmp4682-Lfunc_begin0 - .quad Lset3814 -Lset3815 = Ltmp4694-Lfunc_begin0 - .quad Lset3815 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3816 = Ltmp4699-Lfunc_begin0 - .quad Lset3816 -Lset3817 = Ltmp4711-Lfunc_begin0 - .quad Lset3817 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3818 = Ltmp4716-Lfunc_begin0 - .quad Lset3818 -Lset3819 = Ltmp4728-Lfunc_begin0 - .quad Lset3819 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3820 = Ltmp4733-Lfunc_begin0 - .quad Lset3820 -Lset3821 = Ltmp4745-Lfunc_begin0 - .quad Lset3821 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3822 = Ltmp4750-Lfunc_begin0 - .quad Lset3822 -Lset3823 = Ltmp4762-Lfunc_begin0 - .quad Lset3823 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3824 = Ltmp4767-Lfunc_begin0 - .quad Lset3824 -Lset3825 = Ltmp4779-Lfunc_begin0 - .quad Lset3825 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3826 = Ltmp4784-Lfunc_begin0 - .quad Lset3826 -Lset3827 = Ltmp4796-Lfunc_begin0 - .quad Lset3827 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3828 = Ltmp4801-Lfunc_begin0 - .quad Lset3828 -Lset3829 = Ltmp4813-Lfunc_begin0 - .quad Lset3829 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3830 = Ltmp4818-Lfunc_begin0 - .quad Lset3830 -Lset3831 = Ltmp4830-Lfunc_begin0 - .quad Lset3831 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3832 = Ltmp4835-Lfunc_begin0 - .quad Lset3832 -Lset3833 = Ltmp4847-Lfunc_begin0 - .quad Lset3833 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3834 = Ltmp4852-Lfunc_begin0 - .quad Lset3834 -Lset3835 = Ltmp4864-Lfunc_begin0 - .quad Lset3835 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3836 = Ltmp4869-Lfunc_begin0 - .quad Lset3836 -Lset3837 = Ltmp4881-Lfunc_begin0 - .quad Lset3837 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3838 = Ltmp4886-Lfunc_begin0 - .quad Lset3838 -Lset3839 = Ltmp4898-Lfunc_begin0 - .quad Lset3839 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3840 = Ltmp4903-Lfunc_begin0 - .quad Lset3840 -Lset3841 = Ltmp4907-Lfunc_begin0 - .quad Lset3841 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3842 = Ltmp4921-Lfunc_begin0 - .quad Lset3842 -Lset3843 = Ltmp4929-Lfunc_begin0 - .quad Lset3843 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3844 = Ltmp4948-Lfunc_begin0 - .quad Lset3844 -Lset3845 = Ltmp4952-Lfunc_begin0 - .quad Lset3845 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3846 = Ltmp4954-Lfunc_begin0 - .quad Lset3846 -Lset3847 = Ltmp4962-Lfunc_begin0 - .quad Lset3847 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3848 = Ltmp4988-Lfunc_begin0 - .quad Lset3848 -Lset3849 = Ltmp5000-Lfunc_begin0 - .quad Lset3849 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3850 = Ltmp5006-Lfunc_begin0 - .quad Lset3850 -Lset3851 = Ltmp5018-Lfunc_begin0 - .quad Lset3851 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3852 = Ltmp5024-Lfunc_begin0 - .quad Lset3852 -Lset3853 = Ltmp5036-Lfunc_begin0 - .quad Lset3853 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3854 = Ltmp5042-Lfunc_begin0 - .quad Lset3854 -Lset3855 = Ltmp5046-Lfunc_begin0 - .quad Lset3855 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3856 = Ltmp5057-Lfunc_begin0 - .quad Lset3856 -Lset3857 = Ltmp5065-Lfunc_begin0 - .quad Lset3857 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3858 = Ltmp5082-Lfunc_begin0 - .quad Lset3858 -Lset3859 = Ltmp5086-Lfunc_begin0 - .quad Lset3859 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3860 = Ltmp5088-Lfunc_begin0 - .quad Lset3860 -Lset3861 = Ltmp5096-Lfunc_begin0 - .quad Lset3861 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3862 = Ltmp5118-Lfunc_begin0 - .quad Lset3862 -Lset3863 = Ltmp5130-Lfunc_begin0 - .quad Lset3863 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3864 = Ltmp5133-Lfunc_begin0 - .quad Lset3864 -Lset3865 = Ltmp5145-Lfunc_begin0 - .quad Lset3865 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3866 = Ltmp5148-Lfunc_begin0 - .quad Lset3866 -Lset3867 = Ltmp5160-Lfunc_begin0 - .quad Lset3867 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3868 = Ltmp5163-Lfunc_begin0 - .quad Lset3868 -Lset3869 = Ltmp5175-Lfunc_begin0 - .quad Lset3869 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3870 = Ltmp5179-Lfunc_begin0 - .quad Lset3870 -Lset3871 = Ltmp5191-Lfunc_begin0 - .quad Lset3871 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3872 = Ltmp5195-Lfunc_begin0 - .quad Lset3872 -Lset3873 = Ltmp5207-Lfunc_begin0 - .quad Lset3873 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3874 = Ltmp5230-Lfunc_begin0 - .quad Lset3874 -Lset3875 = Ltmp5236-Lfunc_begin0 - .quad Lset3875 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc171: -Lset3876 = Ltmp869-Lfunc_begin0 - .quad Lset3876 -Lset3877 = Ltmp871-Lfunc_begin0 - .quad Lset3877 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3878 = Ltmp891-Lfunc_begin0 - .quad Lset3878 -Lset3879 = Ltmp893-Lfunc_begin0 - .quad Lset3879 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3880 = Ltmp907-Lfunc_begin0 - .quad Lset3880 -Lset3881 = Ltmp909-Lfunc_begin0 - .quad Lset3881 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3882 = Ltmp923-Lfunc_begin0 - .quad Lset3882 -Lset3883 = Ltmp925-Lfunc_begin0 - .quad Lset3883 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3884 = Ltmp941-Lfunc_begin0 - .quad Lset3884 -Lset3885 = Ltmp943-Lfunc_begin0 - .quad Lset3885 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3886 = Ltmp964-Lfunc_begin0 - .quad Lset3886 -Lset3887 = Ltmp966-Lfunc_begin0 - .quad Lset3887 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3888 = Ltmp981-Lfunc_begin0 - .quad Lset3888 -Lset3889 = Ltmp983-Lfunc_begin0 - .quad Lset3889 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3890 = Ltmp1050-Lfunc_begin0 - .quad Lset3890 -Lset3891 = Ltmp1054-Lfunc_begin0 - .quad Lset3891 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3892 = Ltmp1121-Lfunc_begin0 - .quad Lset3892 -Lset3893 = Ltmp1125-Lfunc_begin0 - .quad Lset3893 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3894 = Ltmp1280-Lfunc_begin0 - .quad Lset3894 -Lset3895 = Ltmp1284-Lfunc_begin0 - .quad Lset3895 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3896 = Ltmp1305-Lfunc_begin0 - .quad Lset3896 -Lset3897 = Ltmp1307-Lfunc_begin0 - .quad Lset3897 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3898 = Ltmp1462-Lfunc_begin0 - .quad Lset3898 -Lset3899 = Ltmp1466-Lfunc_begin0 - .quad Lset3899 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3900 = Ltmp1608-Lfunc_begin0 - .quad Lset3900 -Lset3901 = Ltmp1612-Lfunc_begin0 - .quad Lset3901 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3902 = Ltmp1658-Lfunc_begin0 - .quad Lset3902 -Lset3903 = Ltmp1662-Lfunc_begin0 - .quad Lset3903 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3904 = Ltmp1695-Lfunc_begin0 - .quad Lset3904 -Lset3905 = Ltmp1698-Lfunc_begin0 - .quad Lset3905 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3906 = Ltmp1745-Lfunc_begin0 - .quad Lset3906 -Lset3907 = Ltmp1750-Lfunc_begin0 - .quad Lset3907 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3908 = Ltmp1782-Lfunc_begin0 - .quad Lset3908 -Lset3909 = Ltmp1786-Lfunc_begin0 - .quad Lset3909 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3910 = Ltmp1860-Lfunc_begin0 - .quad Lset3910 -Lset3911 = Ltmp1862-Lfunc_begin0 - .quad Lset3911 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3912 = Ltmp1936-Lfunc_begin0 - .quad Lset3912 -Lset3913 = Ltmp1938-Lfunc_begin0 - .quad Lset3913 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3914 = Ltmp2012-Lfunc_begin0 - .quad Lset3914 -Lset3915 = Ltmp2014-Lfunc_begin0 - .quad Lset3915 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3916 = Ltmp2085-Lfunc_begin0 - .quad Lset3916 -Lset3917 = Ltmp2087-Lfunc_begin0 - .quad Lset3917 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3918 = Ltmp2163-Lfunc_begin0 - .quad Lset3918 -Lset3919 = Ltmp2165-Lfunc_begin0 - .quad Lset3919 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3920 = Ltmp2241-Lfunc_begin0 - .quad Lset3920 -Lset3921 = Ltmp2243-Lfunc_begin0 - .quad Lset3921 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3922 = Ltmp2319-Lfunc_begin0 - .quad Lset3922 -Lset3923 = Ltmp2321-Lfunc_begin0 - .quad Lset3923 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3924 = Ltmp2401-Lfunc_begin0 - .quad Lset3924 -Lset3925 = Ltmp2403-Lfunc_begin0 - .quad Lset3925 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3926 = Ltmp2486-Lfunc_begin0 - .quad Lset3926 -Lset3927 = Ltmp2488-Lfunc_begin0 - .quad Lset3927 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3928 = Ltmp2573-Lfunc_begin0 - .quad Lset3928 -Lset3929 = Ltmp2575-Lfunc_begin0 - .quad Lset3929 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3930 = Ltmp2658-Lfunc_begin0 - .quad Lset3930 -Lset3931 = Ltmp2660-Lfunc_begin0 - .quad Lset3931 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3932 = Ltmp2728-Lfunc_begin0 - .quad Lset3932 -Lset3933 = Ltmp2730-Lfunc_begin0 - .quad Lset3933 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3934 = Ltmp2776-Lfunc_begin0 - .quad Lset3934 -Lset3935 = Ltmp2778-Lfunc_begin0 - .quad Lset3935 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3936 = Ltmp2829-Lfunc_begin0 - .quad Lset3936 -Lset3937 = Ltmp2831-Lfunc_begin0 - .quad Lset3937 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3938 = Ltmp2849-Lfunc_begin0 - .quad Lset3938 -Lset3939 = Ltmp2851-Lfunc_begin0 - .quad Lset3939 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3940 = Ltmp2867-Lfunc_begin0 - .quad Lset3940 -Lset3941 = Ltmp2871-Lfunc_begin0 - .quad Lset3941 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3942 = Ltmp2911-Lfunc_begin0 - .quad Lset3942 -Lset3943 = Ltmp2913-Lfunc_begin0 - .quad Lset3943 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3944 = Ltmp2932-Lfunc_begin0 - .quad Lset3944 -Lset3945 = Ltmp2936-Lfunc_begin0 - .quad Lset3945 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3946 = Ltmp2968-Lfunc_begin0 - .quad Lset3946 -Lset3947 = Ltmp2970-Lfunc_begin0 - .quad Lset3947 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3948 = Ltmp3010-Lfunc_begin0 - .quad Lset3948 -Lset3949 = Ltmp3012-Lfunc_begin0 - .quad Lset3949 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3950 = Ltmp3052-Lfunc_begin0 - .quad Lset3950 -Lset3951 = Ltmp3054-Lfunc_begin0 - .quad Lset3951 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3952 = Ltmp3086-Lfunc_begin0 - .quad Lset3952 -Lset3953 = Ltmp3088-Lfunc_begin0 - .quad Lset3953 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3954 = Ltmp3124-Lfunc_begin0 - .quad Lset3954 -Lset3955 = Ltmp3126-Lfunc_begin0 - .quad Lset3955 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3956 = Ltmp3157-Lfunc_begin0 - .quad Lset3956 -Lset3957 = Ltmp3159-Lfunc_begin0 - .quad Lset3957 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3958 = Ltmp3185-Lfunc_begin0 - .quad Lset3958 -Lset3959 = Ltmp3188-Lfunc_begin0 - .quad Lset3959 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3960 = Ltmp3257-Lfunc_begin0 - .quad Lset3960 -Lset3961 = Ltmp3259-Lfunc_begin0 - .quad Lset3961 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3962 = Ltmp3351-Lfunc_begin0 - .quad Lset3962 -Lset3963 = Ltmp3355-Lfunc_begin0 - .quad Lset3963 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3964 = Ltmp3389-Lfunc_begin0 - .quad Lset3964 -Lset3965 = Ltmp3391-Lfunc_begin0 - .quad Lset3965 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3966 = Ltmp3482-Lfunc_begin0 - .quad Lset3966 -Lset3967 = Ltmp3486-Lfunc_begin0 - .quad Lset3967 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3968 = Ltmp3549-Lfunc_begin0 - .quad Lset3968 -Lset3969 = Ltmp3552-Lfunc_begin0 - .quad Lset3969 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3970 = Ltmp3597-Lfunc_begin0 - .quad Lset3970 -Lset3971 = Ltmp3600-Lfunc_begin0 - .quad Lset3971 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3972 = Ltmp3612-Lfunc_begin0 - .quad Lset3972 -Lset3973 = Ltmp3614-Lfunc_begin0 - .quad Lset3973 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3974 = Ltmp3629-Lfunc_begin0 - .quad Lset3974 -Lset3975 = Ltmp3631-Lfunc_begin0 - .quad Lset3975 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3976 = Ltmp3646-Lfunc_begin0 - .quad Lset3976 -Lset3977 = Ltmp3648-Lfunc_begin0 - .quad Lset3977 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3978 = Ltmp3663-Lfunc_begin0 - .quad Lset3978 -Lset3979 = Ltmp3665-Lfunc_begin0 - .quad Lset3979 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3980 = Ltmp3690-Lfunc_begin0 - .quad Lset3980 -Lset3981 = Ltmp3692-Lfunc_begin0 - .quad Lset3981 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3982 = Ltmp3719-Lfunc_begin0 - .quad Lset3982 -Lset3983 = Ltmp3721-Lfunc_begin0 - .quad Lset3983 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3984 = Ltmp3736-Lfunc_begin0 - .quad Lset3984 -Lset3985 = Ltmp3738-Lfunc_begin0 - .quad Lset3985 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3986 = Ltmp3766-Lfunc_begin0 - .quad Lset3986 -Lset3987 = Ltmp3768-Lfunc_begin0 - .quad Lset3987 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3988 = Ltmp3796-Lfunc_begin0 - .quad Lset3988 -Lset3989 = Ltmp3798-Lfunc_begin0 - .quad Lset3989 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3990 = Ltmp3826-Lfunc_begin0 - .quad Lset3990 -Lset3991 = Ltmp3828-Lfunc_begin0 - .quad Lset3991 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3992 = Ltmp3856-Lfunc_begin0 - .quad Lset3992 -Lset3993 = Ltmp3858-Lfunc_begin0 - .quad Lset3993 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3994 = Ltmp3886-Lfunc_begin0 - .quad Lset3994 -Lset3995 = Ltmp3888-Lfunc_begin0 - .quad Lset3995 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3996 = Ltmp3916-Lfunc_begin0 - .quad Lset3996 -Lset3997 = Ltmp3918-Lfunc_begin0 - .quad Lset3997 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset3998 = Ltmp3937-Lfunc_begin0 - .quad Lset3998 -Lset3999 = Ltmp3939-Lfunc_begin0 - .quad Lset3999 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4000 = Ltmp3959-Lfunc_begin0 - .quad Lset4000 -Lset4001 = Ltmp3963-Lfunc_begin0 - .quad Lset4001 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4002 = Ltmp3989-Lfunc_begin0 - .quad Lset4002 -Lset4003 = Ltmp3992-Lfunc_begin0 - .quad Lset4003 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4004 = Ltmp4017-Lfunc_begin0 - .quad Lset4004 -Lset4005 = Ltmp4020-Lfunc_begin0 - .quad Lset4005 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4006 = Ltmp4077-Lfunc_begin0 - .quad Lset4006 -Lset4007 = Ltmp4081-Lfunc_begin0 - .quad Lset4007 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4008 = Ltmp4124-Lfunc_begin0 - .quad Lset4008 -Lset4009 = Ltmp4128-Lfunc_begin0 - .quad Lset4009 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4010 = Ltmp4171-Lfunc_begin0 - .quad Lset4010 -Lset4011 = Ltmp4175-Lfunc_begin0 - .quad Lset4011 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4012 = Ltmp4216-Lfunc_begin0 - .quad Lset4012 -Lset4013 = Ltmp4218-Lfunc_begin0 - .quad Lset4013 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4014 = Ltmp4237-Lfunc_begin0 - .quad Lset4014 -Lset4015 = Ltmp4239-Lfunc_begin0 - .quad Lset4015 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4016 = Ltmp4258-Lfunc_begin0 - .quad Lset4016 -Lset4017 = Ltmp4260-Lfunc_begin0 - .quad Lset4017 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4018 = Ltmp4328-Lfunc_begin0 - .quad Lset4018 -Lset4019 = Ltmp4330-Lfunc_begin0 - .quad Lset4019 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4020 = Ltmp4358-Lfunc_begin0 - .quad Lset4020 -Lset4021 = Ltmp4360-Lfunc_begin0 - .quad Lset4021 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4022 = Ltmp4421-Lfunc_begin0 - .quad Lset4022 -Lset4023 = Ltmp4423-Lfunc_begin0 - .quad Lset4023 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4024 = Ltmp4450-Lfunc_begin0 - .quad Lset4024 -Lset4025 = Ltmp4452-Lfunc_begin0 - .quad Lset4025 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4026 = Ltmp4494-Lfunc_begin0 - .quad Lset4026 -Lset4027 = Ltmp4496-Lfunc_begin0 - .quad Lset4027 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4028 = Ltmp4533-Lfunc_begin0 - .quad Lset4028 -Lset4029 = Ltmp4535-Lfunc_begin0 - .quad Lset4029 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4030 = Ltmp4557-Lfunc_begin0 - .quad Lset4030 -Lset4031 = Ltmp4559-Lfunc_begin0 - .quad Lset4031 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4032 = Ltmp4581-Lfunc_begin0 - .quad Lset4032 -Lset4033 = Ltmp4583-Lfunc_begin0 - .quad Lset4033 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4034 = Ltmp4605-Lfunc_begin0 - .quad Lset4034 -Lset4035 = Ltmp4607-Lfunc_begin0 - .quad Lset4035 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4036 = Ltmp4620-Lfunc_begin0 - .quad Lset4036 -Lset4037 = Ltmp4622-Lfunc_begin0 - .quad Lset4037 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4038 = Ltmp4635-Lfunc_begin0 - .quad Lset4038 -Lset4039 = Ltmp4637-Lfunc_begin0 - .quad Lset4039 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4040 = Ltmp4651-Lfunc_begin0 - .quad Lset4040 -Lset4041 = Ltmp4653-Lfunc_begin0 - .quad Lset4041 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4042 = Ltmp4667-Lfunc_begin0 - .quad Lset4042 -Lset4043 = Ltmp4669-Lfunc_begin0 - .quad Lset4043 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4044 = Ltmp4684-Lfunc_begin0 - .quad Lset4044 -Lset4045 = Ltmp4686-Lfunc_begin0 - .quad Lset4045 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4046 = Ltmp4701-Lfunc_begin0 - .quad Lset4046 -Lset4047 = Ltmp4703-Lfunc_begin0 - .quad Lset4047 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4048 = Ltmp4718-Lfunc_begin0 - .quad Lset4048 -Lset4049 = Ltmp4720-Lfunc_begin0 - .quad Lset4049 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4050 = Ltmp4735-Lfunc_begin0 - .quad Lset4050 -Lset4051 = Ltmp4737-Lfunc_begin0 - .quad Lset4051 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4052 = Ltmp4752-Lfunc_begin0 - .quad Lset4052 -Lset4053 = Ltmp4754-Lfunc_begin0 - .quad Lset4053 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4054 = Ltmp4769-Lfunc_begin0 - .quad Lset4054 -Lset4055 = Ltmp4771-Lfunc_begin0 - .quad Lset4055 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4056 = Ltmp4786-Lfunc_begin0 - .quad Lset4056 -Lset4057 = Ltmp4788-Lfunc_begin0 - .quad Lset4057 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4058 = Ltmp4803-Lfunc_begin0 - .quad Lset4058 -Lset4059 = Ltmp4805-Lfunc_begin0 - .quad Lset4059 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4060 = Ltmp4820-Lfunc_begin0 - .quad Lset4060 -Lset4061 = Ltmp4822-Lfunc_begin0 - .quad Lset4061 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4062 = Ltmp4837-Lfunc_begin0 - .quad Lset4062 -Lset4063 = Ltmp4839-Lfunc_begin0 - .quad Lset4063 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4064 = Ltmp4854-Lfunc_begin0 - .quad Lset4064 -Lset4065 = Ltmp4856-Lfunc_begin0 - .quad Lset4065 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4066 = Ltmp4871-Lfunc_begin0 - .quad Lset4066 -Lset4067 = Ltmp4873-Lfunc_begin0 - .quad Lset4067 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4068 = Ltmp4888-Lfunc_begin0 - .quad Lset4068 -Lset4069 = Ltmp4890-Lfunc_begin0 - .quad Lset4069 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4070 = Ltmp4905-Lfunc_begin0 - .quad Lset4070 -Lset4071 = Ltmp4907-Lfunc_begin0 - .quad Lset4071 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4072 = Ltmp4950-Lfunc_begin0 - .quad Lset4072 -Lset4073 = Ltmp4952-Lfunc_begin0 - .quad Lset4073 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4074 = Ltmp4990-Lfunc_begin0 - .quad Lset4074 -Lset4075 = Ltmp4992-Lfunc_begin0 - .quad Lset4075 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4076 = Ltmp5008-Lfunc_begin0 - .quad Lset4076 -Lset4077 = Ltmp5010-Lfunc_begin0 - .quad Lset4077 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4078 = Ltmp5026-Lfunc_begin0 - .quad Lset4078 -Lset4079 = Ltmp5028-Lfunc_begin0 - .quad Lset4079 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4080 = Ltmp5044-Lfunc_begin0 - .quad Lset4080 -Lset4081 = Ltmp5046-Lfunc_begin0 - .quad Lset4081 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4082 = Ltmp5084-Lfunc_begin0 - .quad Lset4082 -Lset4083 = Ltmp5086-Lfunc_begin0 - .quad Lset4083 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4084 = Ltmp5120-Lfunc_begin0 - .quad Lset4084 -Lset4085 = Ltmp5122-Lfunc_begin0 - .quad Lset4085 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4086 = Ltmp5135-Lfunc_begin0 - .quad Lset4086 -Lset4087 = Ltmp5137-Lfunc_begin0 - .quad Lset4087 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4088 = Ltmp5150-Lfunc_begin0 - .quad Lset4088 -Lset4089 = Ltmp5152-Lfunc_begin0 - .quad Lset4089 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4090 = Ltmp5165-Lfunc_begin0 - .quad Lset4090 -Lset4091 = Ltmp5167-Lfunc_begin0 - .quad Lset4091 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4092 = Ltmp5181-Lfunc_begin0 - .quad Lset4092 -Lset4093 = Ltmp5183-Lfunc_begin0 - .quad Lset4093 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4094 = Ltmp5197-Lfunc_begin0 - .quad Lset4094 -Lset4095 = Ltmp5199-Lfunc_begin0 - .quad Lset4095 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4096 = Ltmp5232-Lfunc_begin0 - .quad Lset4096 -Lset4097 = Ltmp5236-Lfunc_begin0 - .quad Lset4097 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc172: -Lset4098 = Ltmp870-Lfunc_begin0 - .quad Lset4098 -Lset4099 = Ltmp871-Lfunc_begin0 - .quad Lset4099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4100 = Ltmp892-Lfunc_begin0 - .quad Lset4100 -Lset4101 = Ltmp893-Lfunc_begin0 - .quad Lset4101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4102 = Ltmp908-Lfunc_begin0 - .quad Lset4102 -Lset4103 = Ltmp909-Lfunc_begin0 - .quad Lset4103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4104 = Ltmp924-Lfunc_begin0 - .quad Lset4104 -Lset4105 = Ltmp925-Lfunc_begin0 - .quad Lset4105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4106 = Ltmp942-Lfunc_begin0 - .quad Lset4106 -Lset4107 = Ltmp943-Lfunc_begin0 - .quad Lset4107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4108 = Ltmp955-Lfunc_begin0 - .quad Lset4108 -Lset4109 = Ltmp956-Lfunc_begin0 - .quad Lset4109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4110 = Ltmp965-Lfunc_begin0 - .quad Lset4110 -Lset4111 = Ltmp966-Lfunc_begin0 - .quad Lset4111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4112 = Ltmp982-Lfunc_begin0 - .quad Lset4112 -Lset4113 = Ltmp983-Lfunc_begin0 - .quad Lset4113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4114 = Ltmp1051-Lfunc_begin0 - .quad Lset4114 -Lset4115 = Ltmp1054-Lfunc_begin0 - .quad Lset4115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4116 = Ltmp1122-Lfunc_begin0 - .quad Lset4116 -Lset4117 = Ltmp1125-Lfunc_begin0 - .quad Lset4117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4118 = Ltmp1281-Lfunc_begin0 - .quad Lset4118 -Lset4119 = Ltmp1284-Lfunc_begin0 - .quad Lset4119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4120 = Ltmp1306-Lfunc_begin0 - .quad Lset4120 -Lset4121 = Ltmp1307-Lfunc_begin0 - .quad Lset4121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4122 = Ltmp1463-Lfunc_begin0 - .quad Lset4122 -Lset4123 = Ltmp1466-Lfunc_begin0 - .quad Lset4123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4124 = Ltmp1609-Lfunc_begin0 - .quad Lset4124 -Lset4125 = Ltmp1612-Lfunc_begin0 - .quad Lset4125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4126 = Ltmp1659-Lfunc_begin0 - .quad Lset4126 -Lset4127 = Ltmp1662-Lfunc_begin0 - .quad Lset4127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4128 = Ltmp1696-Lfunc_begin0 - .quad Lset4128 -Lset4129 = Ltmp1698-Lfunc_begin0 - .quad Lset4129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4130 = Ltmp1746-Lfunc_begin0 - .quad Lset4130 -Lset4131 = Ltmp1750-Lfunc_begin0 - .quad Lset4131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4132 = Ltmp1783-Lfunc_begin0 - .quad Lset4132 -Lset4133 = Ltmp1786-Lfunc_begin0 - .quad Lset4133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4134 = Ltmp1861-Lfunc_begin0 - .quad Lset4134 -Lset4135 = Ltmp1862-Lfunc_begin0 - .quad Lset4135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4136 = Ltmp1937-Lfunc_begin0 - .quad Lset4136 -Lset4137 = Ltmp1938-Lfunc_begin0 - .quad Lset4137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4138 = Ltmp2013-Lfunc_begin0 - .quad Lset4138 -Lset4139 = Ltmp2014-Lfunc_begin0 - .quad Lset4139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4140 = Ltmp2086-Lfunc_begin0 - .quad Lset4140 -Lset4141 = Ltmp2087-Lfunc_begin0 - .quad Lset4141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4142 = Ltmp2164-Lfunc_begin0 - .quad Lset4142 -Lset4143 = Ltmp2165-Lfunc_begin0 - .quad Lset4143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4144 = Ltmp2242-Lfunc_begin0 - .quad Lset4144 -Lset4145 = Ltmp2243-Lfunc_begin0 - .quad Lset4145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4146 = Ltmp2320-Lfunc_begin0 - .quad Lset4146 -Lset4147 = Ltmp2321-Lfunc_begin0 - .quad Lset4147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4148 = Ltmp2402-Lfunc_begin0 - .quad Lset4148 -Lset4149 = Ltmp2403-Lfunc_begin0 - .quad Lset4149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4150 = Ltmp2487-Lfunc_begin0 - .quad Lset4150 -Lset4151 = Ltmp2488-Lfunc_begin0 - .quad Lset4151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4152 = Ltmp2574-Lfunc_begin0 - .quad Lset4152 -Lset4153 = Ltmp2575-Lfunc_begin0 - .quad Lset4153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4154 = Ltmp2659-Lfunc_begin0 - .quad Lset4154 -Lset4155 = Ltmp2660-Lfunc_begin0 - .quad Lset4155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4156 = Ltmp2729-Lfunc_begin0 - .quad Lset4156 -Lset4157 = Ltmp2730-Lfunc_begin0 - .quad Lset4157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4158 = Ltmp2777-Lfunc_begin0 - .quad Lset4158 -Lset4159 = Ltmp2778-Lfunc_begin0 - .quad Lset4159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4160 = Ltmp2830-Lfunc_begin0 - .quad Lset4160 -Lset4161 = Ltmp2831-Lfunc_begin0 - .quad Lset4161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4162 = Ltmp2850-Lfunc_begin0 - .quad Lset4162 -Lset4163 = Ltmp2851-Lfunc_begin0 - .quad Lset4163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4164 = Ltmp2868-Lfunc_begin0 - .quad Lset4164 -Lset4165 = Ltmp2871-Lfunc_begin0 - .quad Lset4165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4166 = Ltmp2894-Lfunc_begin0 - .quad Lset4166 -Lset4167 = Ltmp2896-Lfunc_begin0 - .quad Lset4167 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset4168 = Ltmp2912-Lfunc_begin0 - .quad Lset4168 -Lset4169 = Ltmp2913-Lfunc_begin0 - .quad Lset4169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4170 = Ltmp2933-Lfunc_begin0 - .quad Lset4170 -Lset4171 = Ltmp2936-Lfunc_begin0 - .quad Lset4171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4172 = Ltmp2969-Lfunc_begin0 - .quad Lset4172 -Lset4173 = Ltmp2970-Lfunc_begin0 - .quad Lset4173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4174 = Ltmp3011-Lfunc_begin0 - .quad Lset4174 -Lset4175 = Ltmp3012-Lfunc_begin0 - .quad Lset4175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4176 = Ltmp3053-Lfunc_begin0 - .quad Lset4176 -Lset4177 = Ltmp3054-Lfunc_begin0 - .quad Lset4177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4178 = Ltmp3087-Lfunc_begin0 - .quad Lset4178 -Lset4179 = Ltmp3088-Lfunc_begin0 - .quad Lset4179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4180 = Ltmp3125-Lfunc_begin0 - .quad Lset4180 -Lset4181 = Ltmp3126-Lfunc_begin0 - .quad Lset4181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4182 = Ltmp3158-Lfunc_begin0 - .quad Lset4182 -Lset4183 = Ltmp3159-Lfunc_begin0 - .quad Lset4183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4184 = Ltmp3186-Lfunc_begin0 - .quad Lset4184 -Lset4185 = Ltmp3188-Lfunc_begin0 - .quad Lset4185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4186 = Ltmp3258-Lfunc_begin0 - .quad Lset4186 -Lset4187 = Ltmp3259-Lfunc_begin0 - .quad Lset4187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4188 = Ltmp3352-Lfunc_begin0 - .quad Lset4188 -Lset4189 = Ltmp3355-Lfunc_begin0 - .quad Lset4189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4190 = Ltmp3373-Lfunc_begin0 - .quad Lset4190 -Lset4191 = Ltmp3374-Lfunc_begin0 - .quad Lset4191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4192 = Ltmp3390-Lfunc_begin0 - .quad Lset4192 -Lset4193 = Ltmp3391-Lfunc_begin0 - .quad Lset4193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4194 = Ltmp3483-Lfunc_begin0 - .quad Lset4194 -Lset4195 = Ltmp3486-Lfunc_begin0 - .quad Lset4195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4196 = Ltmp3550-Lfunc_begin0 - .quad Lset4196 -Lset4197 = Ltmp3552-Lfunc_begin0 - .quad Lset4197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4198 = Ltmp3575-Lfunc_begin0 - .quad Lset4198 -Lset4199 = Ltmp3576-Lfunc_begin0 - .quad Lset4199 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset4200 = Ltmp3576-Lfunc_begin0 - .quad Lset4200 -Lset4201 = Ltmp3576-Lfunc_begin0 - .quad Lset4201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4202 = Ltmp3598-Lfunc_begin0 - .quad Lset4202 -Lset4203 = Ltmp3600-Lfunc_begin0 - .quad Lset4203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4204 = Ltmp3613-Lfunc_begin0 - .quad Lset4204 -Lset4205 = Ltmp3614-Lfunc_begin0 - .quad Lset4205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4206 = Ltmp3630-Lfunc_begin0 - .quad Lset4206 -Lset4207 = Ltmp3631-Lfunc_begin0 - .quad Lset4207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4208 = Ltmp3647-Lfunc_begin0 - .quad Lset4208 -Lset4209 = Ltmp3648-Lfunc_begin0 - .quad Lset4209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4210 = Ltmp3664-Lfunc_begin0 - .quad Lset4210 -Lset4211 = Ltmp3665-Lfunc_begin0 - .quad Lset4211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4212 = Ltmp3691-Lfunc_begin0 - .quad Lset4212 -Lset4213 = Ltmp3692-Lfunc_begin0 - .quad Lset4213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4214 = Ltmp3720-Lfunc_begin0 - .quad Lset4214 -Lset4215 = Ltmp3721-Lfunc_begin0 - .quad Lset4215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4216 = Ltmp3737-Lfunc_begin0 - .quad Lset4216 -Lset4217 = Ltmp3738-Lfunc_begin0 - .quad Lset4217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4218 = Ltmp3767-Lfunc_begin0 - .quad Lset4218 -Lset4219 = Ltmp3768-Lfunc_begin0 - .quad Lset4219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4220 = Ltmp3797-Lfunc_begin0 - .quad Lset4220 -Lset4221 = Ltmp3798-Lfunc_begin0 - .quad Lset4221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4222 = Ltmp3827-Lfunc_begin0 - .quad Lset4222 -Lset4223 = Ltmp3828-Lfunc_begin0 - .quad Lset4223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4224 = Ltmp3857-Lfunc_begin0 - .quad Lset4224 -Lset4225 = Ltmp3858-Lfunc_begin0 - .quad Lset4225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4226 = Ltmp3887-Lfunc_begin0 - .quad Lset4226 -Lset4227 = Ltmp3888-Lfunc_begin0 - .quad Lset4227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4228 = Ltmp3917-Lfunc_begin0 - .quad Lset4228 -Lset4229 = Ltmp3918-Lfunc_begin0 - .quad Lset4229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4230 = Ltmp3938-Lfunc_begin0 - .quad Lset4230 -Lset4231 = Ltmp3939-Lfunc_begin0 - .quad Lset4231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4232 = Ltmp3960-Lfunc_begin0 - .quad Lset4232 -Lset4233 = Ltmp3963-Lfunc_begin0 - .quad Lset4233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4234 = Ltmp3990-Lfunc_begin0 - .quad Lset4234 -Lset4235 = Ltmp3992-Lfunc_begin0 - .quad Lset4235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4236 = Ltmp4018-Lfunc_begin0 - .quad Lset4236 -Lset4237 = Ltmp4020-Lfunc_begin0 - .quad Lset4237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4238 = Ltmp4078-Lfunc_begin0 - .quad Lset4238 -Lset4239 = Ltmp4081-Lfunc_begin0 - .quad Lset4239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4240 = Ltmp4125-Lfunc_begin0 - .quad Lset4240 -Lset4241 = Ltmp4128-Lfunc_begin0 - .quad Lset4241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4242 = Ltmp4172-Lfunc_begin0 - .quad Lset4242 -Lset4243 = Ltmp4175-Lfunc_begin0 - .quad Lset4243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4244 = Ltmp4217-Lfunc_begin0 - .quad Lset4244 -Lset4245 = Ltmp4218-Lfunc_begin0 - .quad Lset4245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4246 = Ltmp4238-Lfunc_begin0 - .quad Lset4246 -Lset4247 = Ltmp4239-Lfunc_begin0 - .quad Lset4247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4248 = Ltmp4259-Lfunc_begin0 - .quad Lset4248 -Lset4249 = Ltmp4260-Lfunc_begin0 - .quad Lset4249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4250 = Ltmp4329-Lfunc_begin0 - .quad Lset4250 -Lset4251 = Ltmp4330-Lfunc_begin0 - .quad Lset4251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4252 = Ltmp4359-Lfunc_begin0 - .quad Lset4252 -Lset4253 = Ltmp4360-Lfunc_begin0 - .quad Lset4253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4254 = Ltmp4422-Lfunc_begin0 - .quad Lset4254 -Lset4255 = Ltmp4423-Lfunc_begin0 - .quad Lset4255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4256 = Ltmp4451-Lfunc_begin0 - .quad Lset4256 -Lset4257 = Ltmp4452-Lfunc_begin0 - .quad Lset4257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4258 = Ltmp4495-Lfunc_begin0 - .quad Lset4258 -Lset4259 = Ltmp4496-Lfunc_begin0 - .quad Lset4259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4260 = Ltmp4534-Lfunc_begin0 - .quad Lset4260 -Lset4261 = Ltmp4535-Lfunc_begin0 - .quad Lset4261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4262 = Ltmp4558-Lfunc_begin0 - .quad Lset4262 -Lset4263 = Ltmp4559-Lfunc_begin0 - .quad Lset4263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4264 = Ltmp4582-Lfunc_begin0 - .quad Lset4264 -Lset4265 = Ltmp4583-Lfunc_begin0 - .quad Lset4265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4266 = Ltmp4606-Lfunc_begin0 - .quad Lset4266 -Lset4267 = Ltmp4607-Lfunc_begin0 - .quad Lset4267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4268 = Ltmp4621-Lfunc_begin0 - .quad Lset4268 -Lset4269 = Ltmp4622-Lfunc_begin0 - .quad Lset4269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4270 = Ltmp4636-Lfunc_begin0 - .quad Lset4270 -Lset4271 = Ltmp4637-Lfunc_begin0 - .quad Lset4271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4272 = Ltmp4652-Lfunc_begin0 - .quad Lset4272 -Lset4273 = Ltmp4653-Lfunc_begin0 - .quad Lset4273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4274 = Ltmp4668-Lfunc_begin0 - .quad Lset4274 -Lset4275 = Ltmp4669-Lfunc_begin0 - .quad Lset4275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4276 = Ltmp4685-Lfunc_begin0 - .quad Lset4276 -Lset4277 = Ltmp4686-Lfunc_begin0 - .quad Lset4277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4278 = Ltmp4702-Lfunc_begin0 - .quad Lset4278 -Lset4279 = Ltmp4703-Lfunc_begin0 - .quad Lset4279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4280 = Ltmp4719-Lfunc_begin0 - .quad Lset4280 -Lset4281 = Ltmp4720-Lfunc_begin0 - .quad Lset4281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4282 = Ltmp4736-Lfunc_begin0 - .quad Lset4282 -Lset4283 = Ltmp4737-Lfunc_begin0 - .quad Lset4283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4284 = Ltmp4753-Lfunc_begin0 - .quad Lset4284 -Lset4285 = Ltmp4754-Lfunc_begin0 - .quad Lset4285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4286 = Ltmp4770-Lfunc_begin0 - .quad Lset4286 -Lset4287 = Ltmp4771-Lfunc_begin0 - .quad Lset4287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4288 = Ltmp4787-Lfunc_begin0 - .quad Lset4288 -Lset4289 = Ltmp4788-Lfunc_begin0 - .quad Lset4289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4290 = Ltmp4804-Lfunc_begin0 - .quad Lset4290 -Lset4291 = Ltmp4805-Lfunc_begin0 - .quad Lset4291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4292 = Ltmp4821-Lfunc_begin0 - .quad Lset4292 -Lset4293 = Ltmp4822-Lfunc_begin0 - .quad Lset4293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4294 = Ltmp4838-Lfunc_begin0 - .quad Lset4294 -Lset4295 = Ltmp4839-Lfunc_begin0 - .quad Lset4295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4296 = Ltmp4855-Lfunc_begin0 - .quad Lset4296 -Lset4297 = Ltmp4856-Lfunc_begin0 - .quad Lset4297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4298 = Ltmp4872-Lfunc_begin0 - .quad Lset4298 -Lset4299 = Ltmp4873-Lfunc_begin0 - .quad Lset4299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4300 = Ltmp4889-Lfunc_begin0 - .quad Lset4300 -Lset4301 = Ltmp4890-Lfunc_begin0 - .quad Lset4301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4302 = Ltmp4906-Lfunc_begin0 - .quad Lset4302 -Lset4303 = Ltmp4907-Lfunc_begin0 - .quad Lset4303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4304 = Ltmp4951-Lfunc_begin0 - .quad Lset4304 -Lset4305 = Ltmp4952-Lfunc_begin0 - .quad Lset4305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4306 = Ltmp4991-Lfunc_begin0 - .quad Lset4306 -Lset4307 = Ltmp4992-Lfunc_begin0 - .quad Lset4307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4308 = Ltmp5009-Lfunc_begin0 - .quad Lset4308 -Lset4309 = Ltmp5010-Lfunc_begin0 - .quad Lset4309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4310 = Ltmp5027-Lfunc_begin0 - .quad Lset4310 -Lset4311 = Ltmp5028-Lfunc_begin0 - .quad Lset4311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4312 = Ltmp5045-Lfunc_begin0 - .quad Lset4312 -Lset4313 = Ltmp5046-Lfunc_begin0 - .quad Lset4313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4314 = Ltmp5085-Lfunc_begin0 - .quad Lset4314 -Lset4315 = Ltmp5086-Lfunc_begin0 - .quad Lset4315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4316 = Ltmp5121-Lfunc_begin0 - .quad Lset4316 -Lset4317 = Ltmp5122-Lfunc_begin0 - .quad Lset4317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4318 = Ltmp5136-Lfunc_begin0 - .quad Lset4318 -Lset4319 = Ltmp5137-Lfunc_begin0 - .quad Lset4319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4320 = Ltmp5151-Lfunc_begin0 - .quad Lset4320 -Lset4321 = Ltmp5152-Lfunc_begin0 - .quad Lset4321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4322 = Ltmp5166-Lfunc_begin0 - .quad Lset4322 -Lset4323 = Ltmp5167-Lfunc_begin0 - .quad Lset4323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4324 = Ltmp5182-Lfunc_begin0 - .quad Lset4324 -Lset4325 = Ltmp5183-Lfunc_begin0 - .quad Lset4325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4326 = Ltmp5198-Lfunc_begin0 - .quad Lset4326 -Lset4327 = Ltmp5199-Lfunc_begin0 - .quad Lset4327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset4328 = Ltmp5233-Lfunc_begin0 - .quad Lset4328 -Lset4329 = Ltmp5236-Lfunc_begin0 - .quad Lset4329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc173: -Lset4330 = Ltmp877-Lfunc_begin0 - .quad Lset4330 -Lset4331 = Ltmp878-Lfunc_begin0 - .quad Lset4331 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4332 = Ltmp885-Lfunc_begin0 - .quad Lset4332 -Lset4333 = Ltmp886-Lfunc_begin0 - .quad Lset4333 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4334 = Ltmp900-Lfunc_begin0 - .quad Lset4334 -Lset4335 = Ltmp901-Lfunc_begin0 - .quad Lset4335 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4336 = Ltmp916-Lfunc_begin0 - .quad Lset4336 -Lset4337 = Ltmp917-Lfunc_begin0 - .quad Lset4337 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4338 = Ltmp932-Lfunc_begin0 - .quad Lset4338 -Lset4339 = Ltmp933-Lfunc_begin0 - .quad Lset4339 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4340 = Ltmp950-Lfunc_begin0 - .quad Lset4340 -Lset4341 = Ltmp951-Lfunc_begin0 - .quad Lset4341 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4342 = Ltmp973-Lfunc_begin0 - .quad Lset4342 -Lset4343 = Ltmp974-Lfunc_begin0 - .quad Lset4343 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4344 = Ltmp996-Lfunc_begin0 - .quad Lset4344 -Lset4345 = Ltmp997-Lfunc_begin0 - .quad Lset4345 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4346 = Ltmp1021-Lfunc_begin0 - .quad Lset4346 -Lset4347 = Ltmp1022-Lfunc_begin0 - .quad Lset4347 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4348 = Ltmp1045-Lfunc_begin0 - .quad Lset4348 -Lset4349 = Ltmp1067-Lfunc_begin0 - .quad Lset4349 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## -Lset4350 = Ltmp1067-Lfunc_begin0 - .quad Lset4350 -Lset4351 = Ltmp1068-Lfunc_begin0 - .quad Lset4351 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4352 = Ltmp1092-Lfunc_begin0 - .quad Lset4352 -Lset4353 = Ltmp1093-Lfunc_begin0 - .quad Lset4353 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4354 = Ltmp1116-Lfunc_begin0 - .quad Lset4354 -Lset4355 = Ltmp1142-Lfunc_begin0 - .quad Lset4355 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## -Lset4356 = Ltmp1142-Lfunc_begin0 - .quad Lset4356 -Lset4357 = Ltmp1143-Lfunc_begin0 - .quad Lset4357 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4358 = Ltmp1275-Lfunc_begin0 - .quad Lset4358 -Lset4359 = Ltmp1276-Lfunc_begin0 - .quad Lset4359 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4360 = Ltmp1291-Lfunc_begin0 - .quad Lset4360 -Lset4361 = Ltmp1292-Lfunc_begin0 - .quad Lset4361 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4362 = Ltmp1324-Lfunc_begin0 - .quad Lset4362 -Lset4363 = Ltmp1325-Lfunc_begin0 - .quad Lset4363 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4364 = Ltmp1457-Lfunc_begin0 - .quad Lset4364 -Lset4365 = Ltmp1458-Lfunc_begin0 - .quad Lset4365 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4366 = Ltmp1482-Lfunc_begin0 - .quad Lset4366 -Lset4367 = Ltmp1483-Lfunc_begin0 - .quad Lset4367 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4368 = Ltmp1603-Lfunc_begin0 - .quad Lset4368 -Lset4369 = Ltmp1604-Lfunc_begin0 - .quad Lset4369 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4370 = Ltmp1623-Lfunc_begin0 - .quad Lset4370 -Lset4371 = Ltmp1624-Lfunc_begin0 - .quad Lset4371 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4372 = Ltmp1653-Lfunc_begin0 - .quad Lset4372 -Lset4373 = Ltmp1653-Lfunc_begin0 - .quad Lset4373 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4374 = Ltmp1669-Lfunc_begin0 - .quad Lset4374 -Lset4375 = Ltmp1670-Lfunc_begin0 - .quad Lset4375 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4376 = Ltmp1691-Lfunc_begin0 - .quad Lset4376 -Lset4377 = Ltmp1691-Lfunc_begin0 - .quad Lset4377 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4378 = Ltmp1715-Lfunc_begin0 - .quad Lset4378 -Lset4379 = Ltmp1716-Lfunc_begin0 - .quad Lset4379 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4380 = Ltmp1723-Lfunc_begin0 - .quad Lset4380 -Lset4381 = Ltmp1724-Lfunc_begin0 - .quad Lset4381 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4382 = Ltmp1755-Lfunc_begin0 - .quad Lset4382 -Lset4383 = Ltmp1756-Lfunc_begin0 - .quad Lset4383 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4384 = Ltmp1777-Lfunc_begin0 - .quad Lset4384 -Lset4385 = Ltmp1777-Lfunc_begin0 - .quad Lset4385 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4386 = Ltmp1793-Lfunc_begin0 - .quad Lset4386 -Lset4387 = Ltmp1794-Lfunc_begin0 - .quad Lset4387 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4388 = Ltmp1831-Lfunc_begin0 - .quad Lset4388 -Lset4389 = Ltmp1832-Lfunc_begin0 - .quad Lset4389 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4390 = Ltmp1869-Lfunc_begin0 - .quad Lset4390 -Lset4391 = Ltmp1870-Lfunc_begin0 - .quad Lset4391 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4392 = Ltmp1907-Lfunc_begin0 - .quad Lset4392 -Lset4393 = Ltmp1908-Lfunc_begin0 - .quad Lset4393 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4394 = Ltmp1945-Lfunc_begin0 - .quad Lset4394 -Lset4395 = Ltmp1946-Lfunc_begin0 - .quad Lset4395 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4396 = Ltmp1983-Lfunc_begin0 - .quad Lset4396 -Lset4397 = Ltmp1984-Lfunc_begin0 - .quad Lset4397 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4398 = Ltmp2026-Lfunc_begin0 - .quad Lset4398 -Lset4399 = Ltmp2027-Lfunc_begin0 - .quad Lset4399 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4400 = Ltmp2066-Lfunc_begin0 - .quad Lset4400 -Lset4401 = Ltmp2067-Lfunc_begin0 - .quad Lset4401 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4402 = Ltmp2106-Lfunc_begin0 - .quad Lset4402 -Lset4403 = Ltmp2107-Lfunc_begin0 - .quad Lset4403 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4404 = Ltmp2146-Lfunc_begin0 - .quad Lset4404 -Lset4405 = Ltmp2149-Lfunc_begin0 - .quad Lset4405 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4406 = Ltmp2184-Lfunc_begin0 - .quad Lset4406 -Lset4407 = Ltmp2185-Lfunc_begin0 - .quad Lset4407 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4408 = Ltmp2224-Lfunc_begin0 - .quad Lset4408 -Lset4409 = Ltmp2227-Lfunc_begin0 - .quad Lset4409 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4410 = Ltmp2262-Lfunc_begin0 - .quad Lset4410 -Lset4411 = Ltmp2263-Lfunc_begin0 - .quad Lset4411 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4412 = Ltmp2302-Lfunc_begin0 - .quad Lset4412 -Lset4413 = Ltmp2305-Lfunc_begin0 - .quad Lset4413 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4414 = Ltmp2339-Lfunc_begin0 - .quad Lset4414 -Lset4415 = Ltmp2340-Lfunc_begin0 - .quad Lset4415 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4416 = Ltmp2376-Lfunc_begin0 - .quad Lset4416 -Lset4417 = Ltmp2378-Lfunc_begin0 - .quad Lset4417 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4418 = Ltmp2421-Lfunc_begin0 - .quad Lset4418 -Lset4419 = Ltmp2422-Lfunc_begin0 - .quad Lset4419 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4420 = Ltmp2458-Lfunc_begin0 - .quad Lset4420 -Lset4421 = Ltmp2460-Lfunc_begin0 - .quad Lset4421 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4422 = Ltmp2495-Lfunc_begin0 - .quad Lset4422 -Lset4423 = Ltmp2496-Lfunc_begin0 - .quad Lset4423 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4424 = Ltmp2530-Lfunc_begin0 - .quad Lset4424 -Lset4425 = Ltmp2532-Lfunc_begin0 - .quad Lset4425 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4426 = Ltmp2582-Lfunc_begin0 - .quad Lset4426 -Lset4427 = Ltmp2583-Lfunc_begin0 - .quad Lset4427 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4428 = Ltmp2617-Lfunc_begin0 - .quad Lset4428 -Lset4429 = Ltmp2618-Lfunc_begin0 - .quad Lset4429 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4430 = Ltmp2618-Lfunc_begin0 - .quad Lset4430 -Lset4431 = Ltmp2620-Lfunc_begin0 - .quad Lset4431 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4432 = Ltmp2670-Lfunc_begin0 - .quad Lset4432 -Lset4433 = Ltmp2671-Lfunc_begin0 - .quad Lset4433 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4434 = Ltmp2705-Lfunc_begin0 - .quad Lset4434 -Lset4435 = Ltmp2706-Lfunc_begin0 - .quad Lset4435 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4436 = Ltmp2706-Lfunc_begin0 - .quad Lset4436 -Lset4437 = Ltmp2707-Lfunc_begin0 - .quad Lset4437 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4438 = Ltmp2737-Lfunc_begin0 - .quad Lset4438 -Lset4439 = Ltmp2738-Lfunc_begin0 - .quad Lset4439 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4440 = Ltmp2758-Lfunc_begin0 - .quad Lset4440 -Lset4441 = Ltmp2760-Lfunc_begin0 - .quad Lset4441 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4442 = Ltmp2797-Lfunc_begin0 - .quad Lset4442 -Lset4443 = Ltmp2798-Lfunc_begin0 - .quad Lset4443 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4444 = Ltmp2816-Lfunc_begin0 - .quad Lset4444 -Lset4445 = Ltmp2817-Lfunc_begin0 - .quad Lset4445 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4446 = Ltmp2817-Lfunc_begin0 - .quad Lset4446 -Lset4447 = Ltmp2819-Lfunc_begin0 - .quad Lset4447 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4448 = Ltmp2838-Lfunc_begin0 - .quad Lset4448 -Lset4449 = Ltmp2839-Lfunc_begin0 - .quad Lset4449 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4450 = Ltmp2856-Lfunc_begin0 - .quad Lset4450 -Lset4451 = Ltmp2857-Lfunc_begin0 - .quad Lset4451 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4452 = Ltmp2878-Lfunc_begin0 - .quad Lset4452 -Lset4453 = Ltmp2879-Lfunc_begin0 - .quad Lset4453 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4454 = Ltmp2919-Lfunc_begin0 - .quad Lset4454 -Lset4455 = Ltmp2920-Lfunc_begin0 - .quad Lset4455 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4456 = Ltmp2942-Lfunc_begin0 - .quad Lset4456 -Lset4457 = Ltmp2943-Lfunc_begin0 - .quad Lset4457 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4458 = Ltmp2977-Lfunc_begin0 - .quad Lset4458 -Lset4459 = Ltmp2978-Lfunc_begin0 - .quad Lset4459 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4460 = Ltmp2991-Lfunc_begin0 - .quad Lset4460 -Lset4461 = Ltmp2991-Lfunc_begin0 - .quad Lset4461 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4462 = Ltmp3002-Lfunc_begin0 - .quad Lset4462 -Lset4463 = Ltmp3004-Lfunc_begin0 - .quad Lset4463 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4464 = Ltmp3019-Lfunc_begin0 - .quad Lset4464 -Lset4465 = Ltmp3020-Lfunc_begin0 - .quad Lset4465 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4466 = Ltmp3033-Lfunc_begin0 - .quad Lset4466 -Lset4467 = Ltmp3033-Lfunc_begin0 - .quad Lset4467 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4468 = Ltmp3044-Lfunc_begin0 - .quad Lset4468 -Lset4469 = Ltmp3046-Lfunc_begin0 - .quad Lset4469 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4470 = Ltmp3061-Lfunc_begin0 - .quad Lset4470 -Lset4471 = Ltmp3062-Lfunc_begin0 - .quad Lset4471 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4472 = Ltmp3082-Lfunc_begin0 - .quad Lset4472 -Lset4473 = Ltmp3083-Lfunc_begin0 - .quad Lset4473 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4474 = Ltmp3095-Lfunc_begin0 - .quad Lset4474 -Lset4475 = Ltmp3096-Lfunc_begin0 - .quad Lset4475 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4476 = Ltmp3119-Lfunc_begin0 - .quad Lset4476 -Lset4477 = Ltmp3121-Lfunc_begin0 - .quad Lset4477 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4478 = Ltmp3133-Lfunc_begin0 - .quad Lset4478 -Lset4479 = Ltmp3134-Lfunc_begin0 - .quad Lset4479 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4480 = Ltmp3167-Lfunc_begin0 - .quad Lset4480 -Lset4481 = Ltmp3168-Lfunc_begin0 - .quad Lset4481 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4482 = Ltmp3232-Lfunc_begin0 - .quad Lset4482 -Lset4483 = Ltmp3233-Lfunc_begin0 - .quad Lset4483 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4484 = Ltmp3264-Lfunc_begin0 - .quad Lset4484 -Lset4485 = Ltmp3265-Lfunc_begin0 - .quad Lset4485 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4486 = Ltmp3370-Lfunc_begin0 - .quad Lset4486 -Lset4487 = Ltmp3374-Lfunc_begin0 - .quad Lset4487 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4488 = Ltmp3381-Lfunc_begin0 - .quad Lset4488 -Lset4489 = Ltmp3382-Lfunc_begin0 - .quad Lset4489 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4490 = Ltmp3397-Lfunc_begin0 - .quad Lset4490 -Lset4491 = Ltmp3398-Lfunc_begin0 - .quad Lset4491 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4492 = Ltmp3493-Lfunc_begin0 - .quad Lset4492 -Lset4493 = Ltmp3494-Lfunc_begin0 - .quad Lset4493 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4494 = Ltmp3546-Lfunc_begin0 - .quad Lset4494 -Lset4495 = Ltmp3546-Lfunc_begin0 - .quad Lset4495 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4496 = Ltmp3558-Lfunc_begin0 - .quad Lset4496 -Lset4497 = Ltmp3559-Lfunc_begin0 - .quad Lset4497 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4498 = Ltmp3573-Lfunc_begin0 - .quad Lset4498 -Lset4499 = Ltmp3574-Lfunc_begin0 - .quad Lset4499 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4500 = Ltmp3574-Lfunc_begin0 - .quad Lset4500 -Lset4501 = Ltmp3607-Lfunc_begin0 - .quad Lset4501 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## -Lset4502 = Ltmp3607-Lfunc_begin0 - .quad Lset4502 -Lset4503 = Ltmp3608-Lfunc_begin0 - .quad Lset4503 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4504 = Ltmp3621-Lfunc_begin0 - .quad Lset4504 -Lset4505 = Ltmp3622-Lfunc_begin0 - .quad Lset4505 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4506 = Ltmp3638-Lfunc_begin0 - .quad Lset4506 -Lset4507 = Ltmp3639-Lfunc_begin0 - .quad Lset4507 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4508 = Ltmp3655-Lfunc_begin0 - .quad Lset4508 -Lset4509 = Ltmp3656-Lfunc_begin0 - .quad Lset4509 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4510 = Ltmp3672-Lfunc_begin0 - .quad Lset4510 -Lset4511 = Ltmp3673-Lfunc_begin0 - .quad Lset4511 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4512 = Ltmp3699-Lfunc_begin0 - .quad Lset4512 -Lset4513 = Ltmp3700-Lfunc_begin0 - .quad Lset4513 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4514 = Ltmp3728-Lfunc_begin0 - .quad Lset4514 -Lset4515 = Ltmp3729-Lfunc_begin0 - .quad Lset4515 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4516 = Ltmp3745-Lfunc_begin0 - .quad Lset4516 -Lset4517 = Ltmp3746-Lfunc_begin0 - .quad Lset4517 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4518 = Ltmp3760-Lfunc_begin0 - .quad Lset4518 -Lset4519 = Ltmp3762-Lfunc_begin0 - .quad Lset4519 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4520 = Ltmp3775-Lfunc_begin0 - .quad Lset4520 -Lset4521 = Ltmp3776-Lfunc_begin0 - .quad Lset4521 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4522 = Ltmp3790-Lfunc_begin0 - .quad Lset4522 -Lset4523 = Ltmp3792-Lfunc_begin0 - .quad Lset4523 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4524 = Ltmp3805-Lfunc_begin0 - .quad Lset4524 -Lset4525 = Ltmp3806-Lfunc_begin0 - .quad Lset4525 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4526 = Ltmp3820-Lfunc_begin0 - .quad Lset4526 -Lset4527 = Ltmp3822-Lfunc_begin0 - .quad Lset4527 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4528 = Ltmp3835-Lfunc_begin0 - .quad Lset4528 -Lset4529 = Ltmp3836-Lfunc_begin0 - .quad Lset4529 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4530 = Ltmp3850-Lfunc_begin0 - .quad Lset4530 -Lset4531 = Ltmp3852-Lfunc_begin0 - .quad Lset4531 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4532 = Ltmp3865-Lfunc_begin0 - .quad Lset4532 -Lset4533 = Ltmp3866-Lfunc_begin0 - .quad Lset4533 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4534 = Ltmp3880-Lfunc_begin0 - .quad Lset4534 -Lset4535 = Ltmp3882-Lfunc_begin0 - .quad Lset4535 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4536 = Ltmp3895-Lfunc_begin0 - .quad Lset4536 -Lset4537 = Ltmp3896-Lfunc_begin0 - .quad Lset4537 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4538 = Ltmp3910-Lfunc_begin0 - .quad Lset4538 -Lset4539 = Ltmp3912-Lfunc_begin0 - .quad Lset4539 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4540 = Ltmp3925-Lfunc_begin0 - .quad Lset4540 -Lset4541 = Ltmp3926-Lfunc_begin0 - .quad Lset4541 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4542 = Ltmp3946-Lfunc_begin0 - .quad Lset4542 -Lset4543 = Ltmp3947-Lfunc_begin0 - .quad Lset4543 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4544 = Ltmp3969-Lfunc_begin0 - .quad Lset4544 -Lset4545 = Ltmp3970-Lfunc_begin0 - .quad Lset4545 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4546 = Ltmp3984-Lfunc_begin0 - .quad Lset4546 -Lset4547 = Ltmp3984-Lfunc_begin0 - .quad Lset4547 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4548 = Ltmp3998-Lfunc_begin0 - .quad Lset4548 -Lset4549 = Ltmp3999-Lfunc_begin0 - .quad Lset4549 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4550 = Ltmp4012-Lfunc_begin0 - .quad Lset4550 -Lset4551 = Ltmp4012-Lfunc_begin0 - .quad Lset4551 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4552 = Ltmp4032-Lfunc_begin0 - .quad Lset4552 -Lset4553 = Ltmp4033-Lfunc_begin0 - .quad Lset4553 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4554 = Ltmp4071-Lfunc_begin0 - .quad Lset4554 -Lset4555 = Ltmp4075-Lfunc_begin0 - .quad Lset4555 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4556 = Ltmp4094-Lfunc_begin0 - .quad Lset4556 -Lset4557 = Ltmp4095-Lfunc_begin0 - .quad Lset4557 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4558 = Ltmp4102-Lfunc_begin0 - .quad Lset4558 -Lset4559 = Ltmp4103-Lfunc_begin0 - .quad Lset4559 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4560 = Ltmp4141-Lfunc_begin0 - .quad Lset4560 -Lset4561 = Ltmp4142-Lfunc_begin0 - .quad Lset4561 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4562 = Ltmp4149-Lfunc_begin0 - .quad Lset4562 -Lset4563 = Ltmp4150-Lfunc_begin0 - .quad Lset4563 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4564 = Ltmp4183-Lfunc_begin0 - .quad Lset4564 -Lset4565 = Ltmp4184-Lfunc_begin0 - .quad Lset4565 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4566 = Ltmp4191-Lfunc_begin0 - .quad Lset4566 -Lset4567 = Ltmp4192-Lfunc_begin0 - .quad Lset4567 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4568 = Ltmp4225-Lfunc_begin0 - .quad Lset4568 -Lset4569 = Ltmp4226-Lfunc_begin0 - .quad Lset4569 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4570 = Ltmp4246-Lfunc_begin0 - .quad Lset4570 -Lset4571 = Ltmp4247-Lfunc_begin0 - .quad Lset4571 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4572 = Ltmp4268-Lfunc_begin0 - .quad Lset4572 -Lset4573 = Ltmp4269-Lfunc_begin0 - .quad Lset4573 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4574 = Ltmp4337-Lfunc_begin0 - .quad Lset4574 -Lset4575 = Ltmp4338-Lfunc_begin0 - .quad Lset4575 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4576 = Ltmp4368-Lfunc_begin0 - .quad Lset4576 -Lset4577 = Ltmp4369-Lfunc_begin0 - .quad Lset4577 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4578 = Ltmp4430-Lfunc_begin0 - .quad Lset4578 -Lset4579 = Ltmp4431-Lfunc_begin0 - .quad Lset4579 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4580 = Ltmp4471-Lfunc_begin0 - .quad Lset4580 -Lset4581 = Ltmp4472-Lfunc_begin0 - .quad Lset4581 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4582 = Ltmp4505-Lfunc_begin0 - .quad Lset4582 -Lset4583 = Ltmp4506-Lfunc_begin0 - .quad Lset4583 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4584 = Ltmp4542-Lfunc_begin0 - .quad Lset4584 -Lset4585 = Ltmp4543-Lfunc_begin0 - .quad Lset4585 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4586 = Ltmp4566-Lfunc_begin0 - .quad Lset4586 -Lset4587 = Ltmp4567-Lfunc_begin0 - .quad Lset4587 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4588 = Ltmp4590-Lfunc_begin0 - .quad Lset4588 -Lset4589 = Ltmp4591-Lfunc_begin0 - .quad Lset4589 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4590 = Ltmp4614-Lfunc_begin0 - .quad Lset4590 -Lset4591 = Ltmp4615-Lfunc_begin0 - .quad Lset4591 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4592 = Ltmp4629-Lfunc_begin0 - .quad Lset4592 -Lset4593 = Ltmp4630-Lfunc_begin0 - .quad Lset4593 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4594 = Ltmp4644-Lfunc_begin0 - .quad Lset4594 -Lset4595 = Ltmp4645-Lfunc_begin0 - .quad Lset4595 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4596 = Ltmp4660-Lfunc_begin0 - .quad Lset4596 -Lset4597 = Ltmp4661-Lfunc_begin0 - .quad Lset4597 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4598 = Ltmp4676-Lfunc_begin0 - .quad Lset4598 -Lset4599 = Ltmp4677-Lfunc_begin0 - .quad Lset4599 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4600 = Ltmp4693-Lfunc_begin0 - .quad Lset4600 -Lset4601 = Ltmp4694-Lfunc_begin0 - .quad Lset4601 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4602 = Ltmp4710-Lfunc_begin0 - .quad Lset4602 -Lset4603 = Ltmp4711-Lfunc_begin0 - .quad Lset4603 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4604 = Ltmp4727-Lfunc_begin0 - .quad Lset4604 -Lset4605 = Ltmp4728-Lfunc_begin0 - .quad Lset4605 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4606 = Ltmp4744-Lfunc_begin0 - .quad Lset4606 -Lset4607 = Ltmp4745-Lfunc_begin0 - .quad Lset4607 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4608 = Ltmp4761-Lfunc_begin0 - .quad Lset4608 -Lset4609 = Ltmp4762-Lfunc_begin0 - .quad Lset4609 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4610 = Ltmp4778-Lfunc_begin0 - .quad Lset4610 -Lset4611 = Ltmp4779-Lfunc_begin0 - .quad Lset4611 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4612 = Ltmp4795-Lfunc_begin0 - .quad Lset4612 -Lset4613 = Ltmp4796-Lfunc_begin0 - .quad Lset4613 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4614 = Ltmp4812-Lfunc_begin0 - .quad Lset4614 -Lset4615 = Ltmp4813-Lfunc_begin0 - .quad Lset4615 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4616 = Ltmp4829-Lfunc_begin0 - .quad Lset4616 -Lset4617 = Ltmp4830-Lfunc_begin0 - .quad Lset4617 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4618 = Ltmp4846-Lfunc_begin0 - .quad Lset4618 -Lset4619 = Ltmp4847-Lfunc_begin0 - .quad Lset4619 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4620 = Ltmp4863-Lfunc_begin0 - .quad Lset4620 -Lset4621 = Ltmp4864-Lfunc_begin0 - .quad Lset4621 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4622 = Ltmp4880-Lfunc_begin0 - .quad Lset4622 -Lset4623 = Ltmp4881-Lfunc_begin0 - .quad Lset4623 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4624 = Ltmp4897-Lfunc_begin0 - .quad Lset4624 -Lset4625 = Ltmp4898-Lfunc_begin0 - .quad Lset4625 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4626 = Ltmp4928-Lfunc_begin0 - .quad Lset4626 -Lset4627 = Ltmp4929-Lfunc_begin0 - .quad Lset4627 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4628 = Ltmp4961-Lfunc_begin0 - .quad Lset4628 -Lset4629 = Ltmp4962-Lfunc_begin0 - .quad Lset4629 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4630 = Ltmp4999-Lfunc_begin0 - .quad Lset4630 -Lset4631 = Ltmp5000-Lfunc_begin0 - .quad Lset4631 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4632 = Ltmp5017-Lfunc_begin0 - .quad Lset4632 -Lset4633 = Ltmp5018-Lfunc_begin0 - .quad Lset4633 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4634 = Ltmp5035-Lfunc_begin0 - .quad Lset4634 -Lset4635 = Ltmp5036-Lfunc_begin0 - .quad Lset4635 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4636 = Ltmp5064-Lfunc_begin0 - .quad Lset4636 -Lset4637 = Ltmp5065-Lfunc_begin0 - .quad Lset4637 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4638 = Ltmp5095-Lfunc_begin0 - .quad Lset4638 -Lset4639 = Ltmp5096-Lfunc_begin0 - .quad Lset4639 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4640 = Ltmp5129-Lfunc_begin0 - .quad Lset4640 -Lset4641 = Ltmp5130-Lfunc_begin0 - .quad Lset4641 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4642 = Ltmp5144-Lfunc_begin0 - .quad Lset4642 -Lset4643 = Ltmp5145-Lfunc_begin0 - .quad Lset4643 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4644 = Ltmp5159-Lfunc_begin0 - .quad Lset4644 -Lset4645 = Ltmp5160-Lfunc_begin0 - .quad Lset4645 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4646 = Ltmp5174-Lfunc_begin0 - .quad Lset4646 -Lset4647 = Ltmp5175-Lfunc_begin0 - .quad Lset4647 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4648 = Ltmp5190-Lfunc_begin0 - .quad Lset4648 -Lset4649 = Ltmp5191-Lfunc_begin0 - .quad Lset4649 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4650 = Ltmp5206-Lfunc_begin0 - .quad Lset4650 -Lset4651 = Ltmp5207-Lfunc_begin0 - .quad Lset4651 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc174: -Lset4652 = Ltmp884-Lfunc_begin0 - .quad Lset4652 -Lset4653 = Ltmp886-Lfunc_begin0 - .quad Lset4653 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4654 = Ltmp899-Lfunc_begin0 - .quad Lset4654 -Lset4655 = Ltmp901-Lfunc_begin0 - .quad Lset4655 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4656 = Ltmp915-Lfunc_begin0 - .quad Lset4656 -Lset4657 = Ltmp917-Lfunc_begin0 - .quad Lset4657 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4658 = Ltmp931-Lfunc_begin0 - .quad Lset4658 -Lset4659 = Ltmp933-Lfunc_begin0 - .quad Lset4659 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4660 = Ltmp949-Lfunc_begin0 - .quad Lset4660 -Lset4661 = Ltmp951-Lfunc_begin0 - .quad Lset4661 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4662 = Ltmp972-Lfunc_begin0 - .quad Lset4662 -Lset4663 = Ltmp974-Lfunc_begin0 - .quad Lset4663 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4664 = Ltmp995-Lfunc_begin0 - .quad Lset4664 -Lset4665 = Ltmp997-Lfunc_begin0 - .quad Lset4665 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4666 = Ltmp1020-Lfunc_begin0 - .quad Lset4666 -Lset4667 = Ltmp1022-Lfunc_begin0 - .quad Lset4667 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4668 = Ltmp1066-Lfunc_begin0 - .quad Lset4668 -Lset4669 = Ltmp1068-Lfunc_begin0 - .quad Lset4669 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4670 = Ltmp1091-Lfunc_begin0 - .quad Lset4670 -Lset4671 = Ltmp1093-Lfunc_begin0 - .quad Lset4671 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4672 = Ltmp1141-Lfunc_begin0 - .quad Lset4672 -Lset4673 = Ltmp1143-Lfunc_begin0 - .quad Lset4673 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4674 = Ltmp1274-Lfunc_begin0 - .quad Lset4674 -Lset4675 = Ltmp1276-Lfunc_begin0 - .quad Lset4675 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4676 = Ltmp1290-Lfunc_begin0 - .quad Lset4676 -Lset4677 = Ltmp1292-Lfunc_begin0 - .quad Lset4677 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4678 = Ltmp1323-Lfunc_begin0 - .quad Lset4678 -Lset4679 = Ltmp1325-Lfunc_begin0 - .quad Lset4679 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4680 = Ltmp1456-Lfunc_begin0 - .quad Lset4680 -Lset4681 = Ltmp1458-Lfunc_begin0 - .quad Lset4681 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4682 = Ltmp1481-Lfunc_begin0 - .quad Lset4682 -Lset4683 = Ltmp1483-Lfunc_begin0 - .quad Lset4683 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4684 = Ltmp1602-Lfunc_begin0 - .quad Lset4684 -Lset4685 = Ltmp1604-Lfunc_begin0 - .quad Lset4685 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4686 = Ltmp1622-Lfunc_begin0 - .quad Lset4686 -Lset4687 = Ltmp1624-Lfunc_begin0 - .quad Lset4687 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4688 = Ltmp1652-Lfunc_begin0 - .quad Lset4688 -Lset4689 = Ltmp1653-Lfunc_begin0 - .quad Lset4689 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4690 = Ltmp1668-Lfunc_begin0 - .quad Lset4690 -Lset4691 = Ltmp1670-Lfunc_begin0 - .quad Lset4691 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4692 = Ltmp1690-Lfunc_begin0 - .quad Lset4692 -Lset4693 = Ltmp1691-Lfunc_begin0 - .quad Lset4693 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4694 = Ltmp1705-Lfunc_begin0 - .quad Lset4694 -Lset4695 = Ltmp1707-Lfunc_begin0 - .quad Lset4695 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4696 = Ltmp1713-Lfunc_begin0 - .quad Lset4696 -Lset4697 = Ltmp1716-Lfunc_begin0 - .quad Lset4697 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4698 = Ltmp1721-Lfunc_begin0 - .quad Lset4698 -Lset4699 = Ltmp1722-Lfunc_begin0 - .quad Lset4699 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4700 = Ltmp1754-Lfunc_begin0 - .quad Lset4700 -Lset4701 = Ltmp1756-Lfunc_begin0 - .quad Lset4701 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4702 = Ltmp1776-Lfunc_begin0 - .quad Lset4702 -Lset4703 = Ltmp1777-Lfunc_begin0 - .quad Lset4703 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4704 = Ltmp1792-Lfunc_begin0 - .quad Lset4704 -Lset4705 = Ltmp1794-Lfunc_begin0 - .quad Lset4705 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4706 = Ltmp1830-Lfunc_begin0 - .quad Lset4706 -Lset4707 = Ltmp1832-Lfunc_begin0 - .quad Lset4707 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4708 = Ltmp1868-Lfunc_begin0 - .quad Lset4708 -Lset4709 = Ltmp1870-Lfunc_begin0 - .quad Lset4709 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4710 = Ltmp1906-Lfunc_begin0 - .quad Lset4710 -Lset4711 = Ltmp1908-Lfunc_begin0 - .quad Lset4711 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4712 = Ltmp1944-Lfunc_begin0 - .quad Lset4712 -Lset4713 = Ltmp1946-Lfunc_begin0 - .quad Lset4713 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4714 = Ltmp1982-Lfunc_begin0 - .quad Lset4714 -Lset4715 = Ltmp1984-Lfunc_begin0 - .quad Lset4715 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4716 = Ltmp2025-Lfunc_begin0 - .quad Lset4716 -Lset4717 = Ltmp2027-Lfunc_begin0 - .quad Lset4717 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4718 = Ltmp2065-Lfunc_begin0 - .quad Lset4718 -Lset4719 = Ltmp2067-Lfunc_begin0 - .quad Lset4719 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4720 = Ltmp2105-Lfunc_begin0 - .quad Lset4720 -Lset4721 = Ltmp2107-Lfunc_begin0 - .quad Lset4721 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4722 = Ltmp2145-Lfunc_begin0 - .quad Lset4722 -Lset4723 = Ltmp2149-Lfunc_begin0 - .quad Lset4723 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4724 = Ltmp2183-Lfunc_begin0 - .quad Lset4724 -Lset4725 = Ltmp2185-Lfunc_begin0 - .quad Lset4725 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4726 = Ltmp2223-Lfunc_begin0 - .quad Lset4726 -Lset4727 = Ltmp2227-Lfunc_begin0 - .quad Lset4727 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4728 = Ltmp2261-Lfunc_begin0 - .quad Lset4728 -Lset4729 = Ltmp2263-Lfunc_begin0 - .quad Lset4729 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4730 = Ltmp2301-Lfunc_begin0 - .quad Lset4730 -Lset4731 = Ltmp2305-Lfunc_begin0 - .quad Lset4731 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4732 = Ltmp2338-Lfunc_begin0 - .quad Lset4732 -Lset4733 = Ltmp2340-Lfunc_begin0 - .quad Lset4733 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4734 = Ltmp2375-Lfunc_begin0 - .quad Lset4734 -Lset4735 = Ltmp2378-Lfunc_begin0 - .quad Lset4735 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4736 = Ltmp2420-Lfunc_begin0 - .quad Lset4736 -Lset4737 = Ltmp2422-Lfunc_begin0 - .quad Lset4737 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4738 = Ltmp2457-Lfunc_begin0 - .quad Lset4738 -Lset4739 = Ltmp2460-Lfunc_begin0 - .quad Lset4739 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4740 = Ltmp2494-Lfunc_begin0 - .quad Lset4740 -Lset4741 = Ltmp2496-Lfunc_begin0 - .quad Lset4741 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4742 = Ltmp2529-Lfunc_begin0 - .quad Lset4742 -Lset4743 = Ltmp2532-Lfunc_begin0 - .quad Lset4743 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4744 = Ltmp2581-Lfunc_begin0 - .quad Lset4744 -Lset4745 = Ltmp2583-Lfunc_begin0 - .quad Lset4745 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4746 = Ltmp2616-Lfunc_begin0 - .quad Lset4746 -Lset4747 = Ltmp2620-Lfunc_begin0 - .quad Lset4747 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4748 = Ltmp2669-Lfunc_begin0 - .quad Lset4748 -Lset4749 = Ltmp2671-Lfunc_begin0 - .quad Lset4749 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4750 = Ltmp2704-Lfunc_begin0 - .quad Lset4750 -Lset4751 = Ltmp2707-Lfunc_begin0 - .quad Lset4751 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4752 = Ltmp2736-Lfunc_begin0 - .quad Lset4752 -Lset4753 = Ltmp2738-Lfunc_begin0 - .quad Lset4753 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4754 = Ltmp2757-Lfunc_begin0 - .quad Lset4754 -Lset4755 = Ltmp2760-Lfunc_begin0 - .quad Lset4755 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4756 = Ltmp2796-Lfunc_begin0 - .quad Lset4756 -Lset4757 = Ltmp2798-Lfunc_begin0 - .quad Lset4757 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4758 = Ltmp2815-Lfunc_begin0 - .quad Lset4758 -Lset4759 = Ltmp2819-Lfunc_begin0 - .quad Lset4759 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4760 = Ltmp2837-Lfunc_begin0 - .quad Lset4760 -Lset4761 = Ltmp2839-Lfunc_begin0 - .quad Lset4761 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4762 = Ltmp2877-Lfunc_begin0 - .quad Lset4762 -Lset4763 = Ltmp2879-Lfunc_begin0 - .quad Lset4763 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4764 = Ltmp2889-Lfunc_begin0 - .quad Lset4764 -Lset4765 = Ltmp2903-Lfunc_begin0 - .quad Lset4765 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4766 = Ltmp2918-Lfunc_begin0 - .quad Lset4766 -Lset4767 = Ltmp2920-Lfunc_begin0 - .quad Lset4767 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4768 = Ltmp2976-Lfunc_begin0 - .quad Lset4768 -Lset4769 = Ltmp2978-Lfunc_begin0 - .quad Lset4769 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4770 = Ltmp2990-Lfunc_begin0 - .quad Lset4770 -Lset4771 = Ltmp2991-Lfunc_begin0 - .quad Lset4771 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4772 = Ltmp3018-Lfunc_begin0 - .quad Lset4772 -Lset4773 = Ltmp3020-Lfunc_begin0 - .quad Lset4773 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4774 = Ltmp3032-Lfunc_begin0 - .quad Lset4774 -Lset4775 = Ltmp3033-Lfunc_begin0 - .quad Lset4775 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4776 = Ltmp3060-Lfunc_begin0 - .quad Lset4776 -Lset4777 = Ltmp3062-Lfunc_begin0 - .quad Lset4777 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4778 = Ltmp3094-Lfunc_begin0 - .quad Lset4778 -Lset4779 = Ltmp3096-Lfunc_begin0 - .quad Lset4779 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4780 = Ltmp3132-Lfunc_begin0 - .quad Lset4780 -Lset4781 = Ltmp3134-Lfunc_begin0 - .quad Lset4781 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4782 = Ltmp3147-Lfunc_begin0 - .quad Lset4782 -Lset4783 = Ltmp3156-Lfunc_begin0 - .quad Lset4783 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4784 = Ltmp3231-Lfunc_begin0 - .quad Lset4784 -Lset4785 = Ltmp3233-Lfunc_begin0 - .quad Lset4785 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4786 = Ltmp3263-Lfunc_begin0 - .quad Lset4786 -Lset4787 = Ltmp3265-Lfunc_begin0 - .quad Lset4787 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4788 = Ltmp3369-Lfunc_begin0 - .quad Lset4788 -Lset4789 = Ltmp3374-Lfunc_begin0 - .quad Lset4789 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4790 = Ltmp3380-Lfunc_begin0 - .quad Lset4790 -Lset4791 = Ltmp3382-Lfunc_begin0 - .quad Lset4791 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4792 = Ltmp3396-Lfunc_begin0 - .quad Lset4792 -Lset4793 = Ltmp3398-Lfunc_begin0 - .quad Lset4793 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4794 = Ltmp3492-Lfunc_begin0 - .quad Lset4794 -Lset4795 = Ltmp3494-Lfunc_begin0 - .quad Lset4795 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4796 = Ltmp3545-Lfunc_begin0 - .quad Lset4796 -Lset4797 = Ltmp3546-Lfunc_begin0 - .quad Lset4797 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4798 = Ltmp3557-Lfunc_begin0 - .quad Lset4798 -Lset4799 = Ltmp3559-Lfunc_begin0 - .quad Lset4799 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4800 = Ltmp3572-Lfunc_begin0 - .quad Lset4800 -Lset4801 = Ltmp3576-Lfunc_begin0 - .quad Lset4801 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4802 = Ltmp3606-Lfunc_begin0 - .quad Lset4802 -Lset4803 = Ltmp3608-Lfunc_begin0 - .quad Lset4803 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4804 = Ltmp3620-Lfunc_begin0 - .quad Lset4804 -Lset4805 = Ltmp3622-Lfunc_begin0 - .quad Lset4805 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4806 = Ltmp3637-Lfunc_begin0 - .quad Lset4806 -Lset4807 = Ltmp3639-Lfunc_begin0 - .quad Lset4807 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4808 = Ltmp3654-Lfunc_begin0 - .quad Lset4808 -Lset4809 = Ltmp3656-Lfunc_begin0 - .quad Lset4809 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4810 = Ltmp3671-Lfunc_begin0 - .quad Lset4810 -Lset4811 = Ltmp3673-Lfunc_begin0 - .quad Lset4811 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4812 = Ltmp3698-Lfunc_begin0 - .quad Lset4812 -Lset4813 = Ltmp3700-Lfunc_begin0 - .quad Lset4813 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4814 = Ltmp3727-Lfunc_begin0 - .quad Lset4814 -Lset4815 = Ltmp3729-Lfunc_begin0 - .quad Lset4815 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4816 = Ltmp3744-Lfunc_begin0 - .quad Lset4816 -Lset4817 = Ltmp3746-Lfunc_begin0 - .quad Lset4817 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4818 = Ltmp3774-Lfunc_begin0 - .quad Lset4818 -Lset4819 = Ltmp3776-Lfunc_begin0 - .quad Lset4819 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4820 = Ltmp3804-Lfunc_begin0 - .quad Lset4820 -Lset4821 = Ltmp3806-Lfunc_begin0 - .quad Lset4821 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4822 = Ltmp3834-Lfunc_begin0 - .quad Lset4822 -Lset4823 = Ltmp3836-Lfunc_begin0 - .quad Lset4823 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4824 = Ltmp3864-Lfunc_begin0 - .quad Lset4824 -Lset4825 = Ltmp3866-Lfunc_begin0 - .quad Lset4825 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4826 = Ltmp3894-Lfunc_begin0 - .quad Lset4826 -Lset4827 = Ltmp3896-Lfunc_begin0 - .quad Lset4827 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4828 = Ltmp3924-Lfunc_begin0 - .quad Lset4828 -Lset4829 = Ltmp3926-Lfunc_begin0 - .quad Lset4829 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4830 = Ltmp3945-Lfunc_begin0 - .quad Lset4830 -Lset4831 = Ltmp3947-Lfunc_begin0 - .quad Lset4831 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4832 = Ltmp3968-Lfunc_begin0 - .quad Lset4832 -Lset4833 = Ltmp3970-Lfunc_begin0 - .quad Lset4833 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4834 = Ltmp3983-Lfunc_begin0 - .quad Lset4834 -Lset4835 = Ltmp3984-Lfunc_begin0 - .quad Lset4835 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4836 = Ltmp3997-Lfunc_begin0 - .quad Lset4836 -Lset4837 = Ltmp3999-Lfunc_begin0 - .quad Lset4837 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4838 = Ltmp4011-Lfunc_begin0 - .quad Lset4838 -Lset4839 = Ltmp4012-Lfunc_begin0 - .quad Lset4839 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4840 = Ltmp4031-Lfunc_begin0 - .quad Lset4840 -Lset4841 = Ltmp4033-Lfunc_begin0 - .quad Lset4841 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4842 = Ltmp4056-Lfunc_begin0 - .quad Lset4842 -Lset4843 = Ltmp4057-Lfunc_begin0 - .quad Lset4843 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4844 = Ltmp4093-Lfunc_begin0 - .quad Lset4844 -Lset4845 = Ltmp4095-Lfunc_begin0 - .quad Lset4845 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4846 = Ltmp4101-Lfunc_begin0 - .quad Lset4846 -Lset4847 = Ltmp4103-Lfunc_begin0 - .quad Lset4847 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4848 = Ltmp4140-Lfunc_begin0 - .quad Lset4848 -Lset4849 = Ltmp4142-Lfunc_begin0 - .quad Lset4849 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4850 = Ltmp4148-Lfunc_begin0 - .quad Lset4850 -Lset4851 = Ltmp4150-Lfunc_begin0 - .quad Lset4851 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4852 = Ltmp4182-Lfunc_begin0 - .quad Lset4852 -Lset4853 = Ltmp4184-Lfunc_begin0 - .quad Lset4853 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4854 = Ltmp4190-Lfunc_begin0 - .quad Lset4854 -Lset4855 = Ltmp4192-Lfunc_begin0 - .quad Lset4855 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4856 = Ltmp4224-Lfunc_begin0 - .quad Lset4856 -Lset4857 = Ltmp4226-Lfunc_begin0 - .quad Lset4857 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4858 = Ltmp4245-Lfunc_begin0 - .quad Lset4858 -Lset4859 = Ltmp4247-Lfunc_begin0 - .quad Lset4859 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4860 = Ltmp4267-Lfunc_begin0 - .quad Lset4860 -Lset4861 = Ltmp4269-Lfunc_begin0 - .quad Lset4861 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4862 = Ltmp4336-Lfunc_begin0 - .quad Lset4862 -Lset4863 = Ltmp4338-Lfunc_begin0 - .quad Lset4863 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4864 = Ltmp4367-Lfunc_begin0 - .quad Lset4864 -Lset4865 = Ltmp4369-Lfunc_begin0 - .quad Lset4865 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4866 = Ltmp4429-Lfunc_begin0 - .quad Lset4866 -Lset4867 = Ltmp4431-Lfunc_begin0 - .quad Lset4867 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4868 = Ltmp4470-Lfunc_begin0 - .quad Lset4868 -Lset4869 = Ltmp4472-Lfunc_begin0 - .quad Lset4869 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4870 = Ltmp4504-Lfunc_begin0 - .quad Lset4870 -Lset4871 = Ltmp4506-Lfunc_begin0 - .quad Lset4871 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4872 = Ltmp4541-Lfunc_begin0 - .quad Lset4872 -Lset4873 = Ltmp4543-Lfunc_begin0 - .quad Lset4873 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4874 = Ltmp4565-Lfunc_begin0 - .quad Lset4874 -Lset4875 = Ltmp4567-Lfunc_begin0 - .quad Lset4875 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4876 = Ltmp4589-Lfunc_begin0 - .quad Lset4876 -Lset4877 = Ltmp4591-Lfunc_begin0 - .quad Lset4877 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4878 = Ltmp4613-Lfunc_begin0 - .quad Lset4878 -Lset4879 = Ltmp4615-Lfunc_begin0 - .quad Lset4879 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4880 = Ltmp4628-Lfunc_begin0 - .quad Lset4880 -Lset4881 = Ltmp4630-Lfunc_begin0 - .quad Lset4881 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4882 = Ltmp4643-Lfunc_begin0 - .quad Lset4882 -Lset4883 = Ltmp4645-Lfunc_begin0 - .quad Lset4883 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4884 = Ltmp4659-Lfunc_begin0 - .quad Lset4884 -Lset4885 = Ltmp4661-Lfunc_begin0 - .quad Lset4885 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4886 = Ltmp4675-Lfunc_begin0 - .quad Lset4886 -Lset4887 = Ltmp4677-Lfunc_begin0 - .quad Lset4887 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4888 = Ltmp4692-Lfunc_begin0 - .quad Lset4888 -Lset4889 = Ltmp4694-Lfunc_begin0 - .quad Lset4889 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4890 = Ltmp4709-Lfunc_begin0 - .quad Lset4890 -Lset4891 = Ltmp4711-Lfunc_begin0 - .quad Lset4891 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4892 = Ltmp4726-Lfunc_begin0 - .quad Lset4892 -Lset4893 = Ltmp4728-Lfunc_begin0 - .quad Lset4893 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4894 = Ltmp4743-Lfunc_begin0 - .quad Lset4894 -Lset4895 = Ltmp4745-Lfunc_begin0 - .quad Lset4895 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4896 = Ltmp4760-Lfunc_begin0 - .quad Lset4896 -Lset4897 = Ltmp4762-Lfunc_begin0 - .quad Lset4897 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4898 = Ltmp4777-Lfunc_begin0 - .quad Lset4898 -Lset4899 = Ltmp4779-Lfunc_begin0 - .quad Lset4899 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4900 = Ltmp4794-Lfunc_begin0 - .quad Lset4900 -Lset4901 = Ltmp4796-Lfunc_begin0 - .quad Lset4901 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4902 = Ltmp4811-Lfunc_begin0 - .quad Lset4902 -Lset4903 = Ltmp4813-Lfunc_begin0 - .quad Lset4903 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4904 = Ltmp4828-Lfunc_begin0 - .quad Lset4904 -Lset4905 = Ltmp4830-Lfunc_begin0 - .quad Lset4905 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4906 = Ltmp4845-Lfunc_begin0 - .quad Lset4906 -Lset4907 = Ltmp4847-Lfunc_begin0 - .quad Lset4907 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4908 = Ltmp4862-Lfunc_begin0 - .quad Lset4908 -Lset4909 = Ltmp4864-Lfunc_begin0 - .quad Lset4909 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4910 = Ltmp4879-Lfunc_begin0 - .quad Lset4910 -Lset4911 = Ltmp4881-Lfunc_begin0 - .quad Lset4911 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4912 = Ltmp4896-Lfunc_begin0 - .quad Lset4912 -Lset4913 = Ltmp4898-Lfunc_begin0 - .quad Lset4913 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4914 = Ltmp4927-Lfunc_begin0 - .quad Lset4914 -Lset4915 = Ltmp4929-Lfunc_begin0 - .quad Lset4915 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4916 = Ltmp4960-Lfunc_begin0 - .quad Lset4916 -Lset4917 = Ltmp4962-Lfunc_begin0 - .quad Lset4917 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4918 = Ltmp4998-Lfunc_begin0 - .quad Lset4918 -Lset4919 = Ltmp5000-Lfunc_begin0 - .quad Lset4919 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4920 = Ltmp5016-Lfunc_begin0 - .quad Lset4920 -Lset4921 = Ltmp5018-Lfunc_begin0 - .quad Lset4921 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4922 = Ltmp5034-Lfunc_begin0 - .quad Lset4922 -Lset4923 = Ltmp5036-Lfunc_begin0 - .quad Lset4923 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4924 = Ltmp5063-Lfunc_begin0 - .quad Lset4924 -Lset4925 = Ltmp5065-Lfunc_begin0 - .quad Lset4925 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4926 = Ltmp5094-Lfunc_begin0 - .quad Lset4926 -Lset4927 = Ltmp5096-Lfunc_begin0 - .quad Lset4927 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4928 = Ltmp5128-Lfunc_begin0 - .quad Lset4928 -Lset4929 = Ltmp5130-Lfunc_begin0 - .quad Lset4929 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4930 = Ltmp5143-Lfunc_begin0 - .quad Lset4930 -Lset4931 = Ltmp5145-Lfunc_begin0 - .quad Lset4931 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4932 = Ltmp5158-Lfunc_begin0 - .quad Lset4932 -Lset4933 = Ltmp5160-Lfunc_begin0 - .quad Lset4933 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4934 = Ltmp5173-Lfunc_begin0 - .quad Lset4934 -Lset4935 = Ltmp5175-Lfunc_begin0 - .quad Lset4935 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4936 = Ltmp5189-Lfunc_begin0 - .quad Lset4936 -Lset4937 = Ltmp5191-Lfunc_begin0 - .quad Lset4937 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset4938 = Ltmp5205-Lfunc_begin0 - .quad Lset4938 -Lset4939 = Ltmp5207-Lfunc_begin0 - .quad Lset4939 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc175: -Lset4940 = Ltmp953-Lfunc_begin0 - .quad Lset4940 -Lset4941 = Ltmp955-Lfunc_begin0 - .quad Lset4941 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset4942 = Ltmp957-Lfunc_begin0 - .quad Lset4942 -Lset4943 = Ltmp958-Lfunc_begin0 - .quad Lset4943 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc176: -Lset4944 = Ltmp976-Lfunc_begin0 - .quad Lset4944 -Lset4945 = Ltmp978-Lfunc_begin0 - .quad Lset4945 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc177: -Lset4946 = Ltmp986-Lfunc_begin0 - .quad Lset4946 -Lset4947 = Ltmp989-Lfunc_begin0 - .quad Lset4947 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc178: -Lset4948 = Ltmp987-Lfunc_begin0 - .quad Lset4948 -Lset4949 = Ltmp990-Lfunc_begin0 - .quad Lset4949 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc179: -Lset4950 = Ltmp989-Lfunc_begin0 - .quad Lset4950 -Lset4951 = Ltmp991-Lfunc_begin0 - .quad Lset4951 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc180: -Lset4952 = Ltmp997-Lfunc_begin0 - .quad Lset4952 -Lset4953 = Ltmp1024-Lfunc_begin0 - .quad Lset4953 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset4954 = Ltmp1024-Lfunc_begin0 - .quad Lset4954 -Lset4955 = Ltmp1034-Lfunc_begin0 - .quad Lset4955 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset4956 = Ltmp1034-Lfunc_begin0 - .quad Lset4956 -Lset4957 = Ltmp1039-Lfunc_begin0 - .quad Lset4957 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset4958 = Ltmp1039-Lfunc_begin0 - .quad Lset4958 -Lset4959 = Ltmp1040-Lfunc_begin0 - .quad Lset4959 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset4960 = Ltmp1040-Lfunc_begin0 - .quad Lset4960 -Lset4961 = Lfunc_end17-Lfunc_begin0 - .quad Lset4961 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc181: -Lset4962 = Ltmp997-Lfunc_begin0 - .quad Lset4962 -Lset4963 = Ltmp1000-Lfunc_begin0 - .quad Lset4963 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset4964 = Ltmp1010-Lfunc_begin0 - .quad Lset4964 -Lset4965 = Ltmp1014-Lfunc_begin0 - .quad Lset4965 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset4966 = Ltmp1026-Lfunc_begin0 - .quad Lset4966 -Lset4967 = Ltmp1044-Lfunc_begin0 - .quad Lset4967 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc182: -Lset4968 = Ltmp1005-Lfunc_begin0 - .quad Lset4968 -Lset4969 = Ltmp1008-Lfunc_begin0 - .quad Lset4969 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc183: -Lset4970 = Ltmp1006-Lfunc_begin0 - .quad Lset4970 -Lset4971 = Ltmp1009-Lfunc_begin0 - .quad Lset4971 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc184: -Lset4972 = Ltmp1008-Lfunc_begin0 - .quad Lset4972 -Lset4973 = Ltmp1010-Lfunc_begin0 - .quad Lset4973 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc185: -Lset4974 = Ltmp1010-Lfunc_begin0 - .quad Lset4974 -Lset4975 = Ltmp1014-Lfunc_begin0 - .quad Lset4975 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset4976 = Ltmp1032-Lfunc_begin0 - .quad Lset4976 -Lset4977 = Ltmp1037-Lfunc_begin0 - .quad Lset4977 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc186: -Lset4978 = Ltmp1010-Lfunc_begin0 - .quad Lset4978 -Lset4979 = Ltmp1014-Lfunc_begin0 - .quad Lset4979 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset4980 = Ltmp1033-Lfunc_begin0 - .quad Lset4980 -Lset4981 = Ltmp1039-Lfunc_begin0 - .quad Lset4981 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc187: -Lset4982 = Ltmp1013-Lfunc_begin0 - .quad Lset4982 -Lset4983 = Ltmp1014-Lfunc_begin0 - .quad Lset4983 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset4984 = Ltmp1038-Lfunc_begin0 - .quad Lset4984 -Lset4985 = Ltmp1039-Lfunc_begin0 - .quad Lset4985 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset4986 = Ltmp1041-Lfunc_begin0 - .quad Lset4986 -Lset4987 = Ltmp1042-Lfunc_begin0 - .quad Lset4987 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc188: -Lset4988 = Ltmp1057-Lfunc_begin0 - .quad Lset4988 -Lset4989 = Ltmp1060-Lfunc_begin0 - .quad Lset4989 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc189: -Lset4990 = Ltmp1058-Lfunc_begin0 - .quad Lset4990 -Lset4991 = Ltmp1061-Lfunc_begin0 - .quad Lset4991 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc190: -Lset4992 = Ltmp1060-Lfunc_begin0 - .quad Lset4992 -Lset4993 = Ltmp1062-Lfunc_begin0 - .quad Lset4993 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc191: -Lset4994 = Ltmp1068-Lfunc_begin0 - .quad Lset4994 -Lset4995 = Ltmp1095-Lfunc_begin0 - .quad Lset4995 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset4996 = Ltmp1095-Lfunc_begin0 - .quad Lset4996 -Lset4997 = Ltmp1105-Lfunc_begin0 - .quad Lset4997 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset4998 = Ltmp1105-Lfunc_begin0 - .quad Lset4998 -Lset4999 = Ltmp1110-Lfunc_begin0 - .quad Lset4999 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset5000 = Ltmp1110-Lfunc_begin0 - .quad Lset5000 -Lset5001 = Ltmp1111-Lfunc_begin0 - .quad Lset5001 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset5002 = Ltmp1111-Lfunc_begin0 - .quad Lset5002 -Lset5003 = Lfunc_end17-Lfunc_begin0 - .quad Lset5003 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc192: -Lset5004 = Ltmp1068-Lfunc_begin0 - .quad Lset5004 -Lset5005 = Ltmp1071-Lfunc_begin0 - .quad Lset5005 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5006 = Ltmp1081-Lfunc_begin0 - .quad Lset5006 -Lset5007 = Ltmp1085-Lfunc_begin0 - .quad Lset5007 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5008 = Ltmp1097-Lfunc_begin0 - .quad Lset5008 -Lset5009 = Ltmp1115-Lfunc_begin0 - .quad Lset5009 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc193: -Lset5010 = Ltmp1076-Lfunc_begin0 - .quad Lset5010 -Lset5011 = Ltmp1079-Lfunc_begin0 - .quad Lset5011 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc194: -Lset5012 = Ltmp1077-Lfunc_begin0 - .quad Lset5012 -Lset5013 = Ltmp1080-Lfunc_begin0 - .quad Lset5013 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc195: -Lset5014 = Ltmp1079-Lfunc_begin0 - .quad Lset5014 -Lset5015 = Ltmp1081-Lfunc_begin0 - .quad Lset5015 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc196: -Lset5016 = Ltmp1081-Lfunc_begin0 - .quad Lset5016 -Lset5017 = Ltmp1085-Lfunc_begin0 - .quad Lset5017 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5018 = Ltmp1103-Lfunc_begin0 - .quad Lset5018 -Lset5019 = Ltmp1108-Lfunc_begin0 - .quad Lset5019 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc197: -Lset5020 = Ltmp1081-Lfunc_begin0 - .quad Lset5020 -Lset5021 = Ltmp1085-Lfunc_begin0 - .quad Lset5021 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset5022 = Ltmp1104-Lfunc_begin0 - .quad Lset5022 -Lset5023 = Ltmp1110-Lfunc_begin0 - .quad Lset5023 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc198: -Lset5024 = Ltmp1084-Lfunc_begin0 - .quad Lset5024 -Lset5025 = Ltmp1085-Lfunc_begin0 - .quad Lset5025 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset5026 = Ltmp1109-Lfunc_begin0 - .quad Lset5026 -Lset5027 = Ltmp1110-Lfunc_begin0 - .quad Lset5027 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset5028 = Ltmp1112-Lfunc_begin0 - .quad Lset5028 -Lset5029 = Ltmp1113-Lfunc_begin0 - .quad Lset5029 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc199: -Lset5030 = Ltmp1128-Lfunc_begin0 - .quad Lset5030 -Lset5031 = Ltmp1130-Lfunc_begin0 - .quad Lset5031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset5032 = Ltmp1161-Lfunc_begin0 - .quad Lset5032 -Lset5033 = Ltmp1167-Lfunc_begin0 - .quad Lset5033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset5034 = Ltmp1190-Lfunc_begin0 - .quad Lset5034 -Lset5035 = Ltmp1192-Lfunc_begin0 - .quad Lset5035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc200: -Lset5036 = Ltmp1133-Lfunc_begin0 - .quad Lset5036 -Lset5037 = Ltmp1136-Lfunc_begin0 - .quad Lset5037 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5038 = Ltmp1189-Lfunc_begin0 - .quad Lset5038 -Lset5039 = Ltmp1190-Lfunc_begin0 - .quad Lset5039 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc201: -Lset5040 = Ltmp1135-Lfunc_begin0 - .quad Lset5040 -Lset5041 = Ltmp1137-Lfunc_begin0 - .quad Lset5041 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc202: -Lset5042 = Ltmp1146-Lfunc_begin0 - .quad Lset5042 -Lset5043 = Ltmp1154-Lfunc_begin0 - .quad Lset5043 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5044 = Ltmp1212-Lfunc_begin0 - .quad Lset5044 -Lset5045 = Ltmp1215-Lfunc_begin0 - .quad Lset5045 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc203: -Lset5046 = Ltmp1150-Lfunc_begin0 - .quad Lset5046 -Lset5047 = Ltmp1153-Lfunc_begin0 - .quad Lset5047 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5048 = Ltmp1212-Lfunc_begin0 - .quad Lset5048 -Lset5049 = Ltmp1215-Lfunc_begin0 - .quad Lset5049 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc204: -Lset5050 = Ltmp1152-Lfunc_begin0 - .quad Lset5050 -Lset5051 = Ltmp1154-Lfunc_begin0 - .quad Lset5051 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc205: -Lset5052 = Ltmp1163-Lfunc_begin0 - .quad Lset5052 -Lset5053 = Ltmp1166-Lfunc_begin0 - .quad Lset5053 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5054 = Ltmp1190-Lfunc_begin0 - .quad Lset5054 -Lset5055 = Ltmp1191-Lfunc_begin0 - .quad Lset5055 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc206: -Lset5056 = Ltmp1165-Lfunc_begin0 - .quad Lset5056 -Lset5057 = Ltmp1167-Lfunc_begin0 - .quad Lset5057 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc207: -Lset5058 = Ltmp1171-Lfunc_begin0 - .quad Lset5058 -Lset5059 = Ltmp1172-Lfunc_begin0 - .quad Lset5059 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc208: -Lset5060 = Ltmp1176-Lfunc_begin0 - .quad Lset5060 -Lset5061 = Ltmp1177-Lfunc_begin0 - .quad Lset5061 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset5062 = Ltmp1182-Lfunc_begin0 - .quad Lset5062 -Lset5063 = Ltmp1183-Lfunc_begin0 - .quad Lset5063 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc209: -Lset5064 = Ltmp1205-Lfunc_begin0 - .quad Lset5064 -Lset5065 = Ltmp1208-Lfunc_begin0 - .quad Lset5065 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5066 = Ltmp1209-Lfunc_begin0 - .quad Lset5066 -Lset5067 = Ltmp1211-Lfunc_begin0 - .quad Lset5067 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc210: -Lset5068 = Ltmp1207-Lfunc_begin0 - .quad Lset5068 -Lset5069 = Ltmp1209-Lfunc_begin0 - .quad Lset5069 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc211: -Lset5070 = Ltmp1218-Lfunc_begin0 - .quad Lset5070 -Lset5071 = Ltmp1219-Lfunc_begin0 - .quad Lset5071 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5072 = Ltmp1219-Lfunc_begin0 - .quad Lset5072 -Lset5073 = Lfunc_end17-Lfunc_begin0 - .quad Lset5073 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc212: -Lset5074 = Ltmp1222-Lfunc_begin0 - .quad Lset5074 -Lset5075 = Ltmp1224-Lfunc_begin0 - .quad Lset5075 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc213: -Lset5076 = Ltmp1228-Lfunc_begin0 - .quad Lset5076 -Lset5077 = Ltmp1231-Lfunc_begin0 - .quad Lset5077 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5078 = Ltmp1232-Lfunc_begin0 - .quad Lset5078 -Lset5079 = Ltmp1234-Lfunc_begin0 - .quad Lset5079 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc214: -Lset5080 = Ltmp1230-Lfunc_begin0 - .quad Lset5080 -Lset5081 = Ltmp1232-Lfunc_begin0 - .quad Lset5081 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc215: -Lset5082 = Ltmp1238-Lfunc_begin0 - .quad Lset5082 -Lset5083 = Ltmp1249-Lfunc_begin0 - .quad Lset5083 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5084 = Ltmp1249-Lfunc_begin0 - .quad Lset5084 -Lset5085 = Ltmp1253-Lfunc_begin0 - .quad Lset5085 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset5086 = Ltmp1253-Lfunc_begin0 - .quad Lset5086 -Lset5087 = Ltmp1254-Lfunc_begin0 - .quad Lset5087 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5088 = Ltmp1254-Lfunc_begin0 - .quad Lset5088 -Lset5089 = Lfunc_end17-Lfunc_begin0 - .quad Lset5089 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc216: -Lset5090 = Ltmp1239-Lfunc_begin0 - .quad Lset5090 -Lset5091 = Ltmp1247-Lfunc_begin0 - .quad Lset5091 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5092 = Ltmp1247-Lfunc_begin0 - .quad Lset5092 -Lset5093 = Ltmp1253-Lfunc_begin0 - .quad Lset5093 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -Lset5094 = Ltmp1253-Lfunc_begin0 - .quad Lset5094 -Lset5095 = Ltmp1255-Lfunc_begin0 - .quad Lset5095 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5096 = Ltmp1255-Lfunc_begin0 - .quad Lset5096 -Lset5097 = Lfunc_end17-Lfunc_begin0 - .quad Lset5097 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc217: -Lset5098 = Ltmp1240-Lfunc_begin0 - .quad Lset5098 -Lset5099 = Ltmp1252-Lfunc_begin0 - .quad Lset5099 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5100 = Ltmp1253-Lfunc_begin0 - .quad Lset5100 -Lset5101 = Ltmp1257-Lfunc_begin0 - .quad Lset5101 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5102 = Ltmp1258-Lfunc_begin0 - .quad Lset5102 -Lset5103 = Ltmp1273-Lfunc_begin0 - .quad Lset5103 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc218: -Lset5104 = Ltmp1240-Lfunc_begin0 - .quad Lset5104 -Lset5105 = Ltmp1242-Lfunc_begin0 - .quad Lset5105 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc219: -Lset5106 = Ltmp1240-Lfunc_begin0 - .quad Lset5106 -Lset5107 = Ltmp1242-Lfunc_begin0 - .quad Lset5107 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc220: -Lset5108 = Ltmp1240-Lfunc_begin0 - .quad Lset5108 -Lset5109 = Ltmp1242-Lfunc_begin0 - .quad Lset5109 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc221: -Lset5110 = Ltmp1246-Lfunc_begin0 - .quad Lset5110 -Lset5111 = Ltmp1252-Lfunc_begin0 - .quad Lset5111 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc222: -Lset5112 = Ltmp1248-Lfunc_begin0 - .quad Lset5112 -Lset5113 = Ltmp1252-Lfunc_begin0 - .quad Lset5113 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc223: -Lset5114 = Ltmp1256-Lfunc_begin0 - .quad Lset5114 -Lset5115 = Ltmp1257-Lfunc_begin0 - .quad Lset5115 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc224: -Lset5116 = Ltmp1294-Lfunc_begin0 - .quad Lset5116 -Lset5117 = Ltmp1302-Lfunc_begin0 - .quad Lset5117 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc225: -Lset5118 = Ltmp1310-Lfunc_begin0 - .quad Lset5118 -Lset5119 = Ltmp1312-Lfunc_begin0 - .quad Lset5119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset5120 = Ltmp1344-Lfunc_begin0 - .quad Lset5120 -Lset5121 = Ltmp1350-Lfunc_begin0 - .quad Lset5121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset5122 = Ltmp1373-Lfunc_begin0 - .quad Lset5122 -Lset5123 = Ltmp1375-Lfunc_begin0 - .quad Lset5123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc226: -Lset5124 = Ltmp1315-Lfunc_begin0 - .quad Lset5124 -Lset5125 = Ltmp1318-Lfunc_begin0 - .quad Lset5125 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5126 = Ltmp1372-Lfunc_begin0 - .quad Lset5126 -Lset5127 = Ltmp1373-Lfunc_begin0 - .quad Lset5127 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc227: -Lset5128 = Ltmp1317-Lfunc_begin0 - .quad Lset5128 -Lset5129 = Ltmp1319-Lfunc_begin0 - .quad Lset5129 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc228: -Lset5130 = Ltmp1328-Lfunc_begin0 - .quad Lset5130 -Lset5131 = Ltmp1336-Lfunc_begin0 - .quad Lset5131 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5132 = Ltmp1395-Lfunc_begin0 - .quad Lset5132 -Lset5133 = Ltmp1398-Lfunc_begin0 - .quad Lset5133 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc229: -Lset5134 = Ltmp1332-Lfunc_begin0 - .quad Lset5134 -Lset5135 = Ltmp1335-Lfunc_begin0 - .quad Lset5135 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5136 = Ltmp1395-Lfunc_begin0 - .quad Lset5136 -Lset5137 = Ltmp1398-Lfunc_begin0 - .quad Lset5137 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc230: -Lset5138 = Ltmp1334-Lfunc_begin0 - .quad Lset5138 -Lset5139 = Ltmp1336-Lfunc_begin0 - .quad Lset5139 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc231: -Lset5140 = Ltmp1339-Lfunc_begin0 - .quad Lset5140 -Lset5141 = Ltmp1340-Lfunc_begin0 - .quad Lset5141 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5142 = Ltmp1434-Lfunc_begin0 - .quad Lset5142 -Lset5143 = Ltmp1435-Lfunc_begin0 - .quad Lset5143 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5144 = Ltmp1437-Lfunc_begin0 - .quad Lset5144 -Lset5145 = Ltmp1438-Lfunc_begin0 - .quad Lset5145 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc232: -Lset5146 = Ltmp1346-Lfunc_begin0 - .quad Lset5146 -Lset5147 = Ltmp1349-Lfunc_begin0 - .quad Lset5147 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5148 = Ltmp1373-Lfunc_begin0 - .quad Lset5148 -Lset5149 = Ltmp1374-Lfunc_begin0 - .quad Lset5149 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc233: -Lset5150 = Ltmp1348-Lfunc_begin0 - .quad Lset5150 -Lset5151 = Ltmp1350-Lfunc_begin0 - .quad Lset5151 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc234: -Lset5152 = Ltmp1354-Lfunc_begin0 - .quad Lset5152 -Lset5153 = Ltmp1355-Lfunc_begin0 - .quad Lset5153 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc235: -Lset5154 = Ltmp1359-Lfunc_begin0 - .quad Lset5154 -Lset5155 = Ltmp1360-Lfunc_begin0 - .quad Lset5155 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset5156 = Ltmp1365-Lfunc_begin0 - .quad Lset5156 -Lset5157 = Ltmp1366-Lfunc_begin0 - .quad Lset5157 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc236: -Lset5158 = Ltmp1388-Lfunc_begin0 - .quad Lset5158 -Lset5159 = Ltmp1391-Lfunc_begin0 - .quad Lset5159 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5160 = Ltmp1392-Lfunc_begin0 - .quad Lset5160 -Lset5161 = Ltmp1394-Lfunc_begin0 - .quad Lset5161 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc237: -Lset5162 = Ltmp1390-Lfunc_begin0 - .quad Lset5162 -Lset5163 = Ltmp1392-Lfunc_begin0 - .quad Lset5163 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc238: -Lset5164 = Ltmp1401-Lfunc_begin0 - .quad Lset5164 -Lset5165 = Ltmp1402-Lfunc_begin0 - .quad Lset5165 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5166 = Ltmp1402-Lfunc_begin0 - .quad Lset5166 -Lset5167 = Lfunc_end17-Lfunc_begin0 - .quad Lset5167 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc239: -Lset5168 = Ltmp1405-Lfunc_begin0 - .quad Lset5168 -Lset5169 = Ltmp1407-Lfunc_begin0 - .quad Lset5169 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc240: -Lset5170 = Ltmp1411-Lfunc_begin0 - .quad Lset5170 -Lset5171 = Ltmp1414-Lfunc_begin0 - .quad Lset5171 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5172 = Ltmp1415-Lfunc_begin0 - .quad Lset5172 -Lset5173 = Ltmp1417-Lfunc_begin0 - .quad Lset5173 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc241: -Lset5174 = Ltmp1413-Lfunc_begin0 - .quad Lset5174 -Lset5175 = Ltmp1415-Lfunc_begin0 - .quad Lset5175 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc242: -Lset5176 = Ltmp1421-Lfunc_begin0 - .quad Lset5176 -Lset5177 = Ltmp1429-Lfunc_begin0 - .quad Lset5177 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5178 = Ltmp1429-Lfunc_begin0 - .quad Lset5178 -Lset5179 = Ltmp1435-Lfunc_begin0 - .quad Lset5179 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset5180 = Ltmp1435-Lfunc_begin0 - .quad Lset5180 -Lset5181 = Ltmp1436-Lfunc_begin0 - .quad Lset5181 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5182 = Ltmp1436-Lfunc_begin0 - .quad Lset5182 -Lset5183 = Lfunc_end17-Lfunc_begin0 - .quad Lset5183 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc243: -Lset5184 = Ltmp1422-Lfunc_begin0 - .quad Lset5184 -Lset5185 = Ltmp1433-Lfunc_begin0 - .quad Lset5185 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5186 = Ltmp1435-Lfunc_begin0 - .quad Lset5186 -Lset5187 = Ltmp1449-Lfunc_begin0 - .quad Lset5187 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5188 = Ltmp1450-Lfunc_begin0 - .quad Lset5188 -Lset5189 = Ltmp1455-Lfunc_begin0 - .quad Lset5189 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc244: -Lset5190 = Ltmp1422-Lfunc_begin0 - .quad Lset5190 -Lset5191 = Ltmp1424-Lfunc_begin0 - .quad Lset5191 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc245: -Lset5192 = Ltmp1422-Lfunc_begin0 - .quad Lset5192 -Lset5193 = Ltmp1424-Lfunc_begin0 - .quad Lset5193 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc246: -Lset5194 = Ltmp1422-Lfunc_begin0 - .quad Lset5194 -Lset5195 = Ltmp1424-Lfunc_begin0 - .quad Lset5195 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc247: -Lset5196 = Ltmp1428-Lfunc_begin0 - .quad Lset5196 -Lset5197 = Ltmp1433-Lfunc_begin0 - .quad Lset5197 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc248: -Lset5198 = Ltmp1430-Lfunc_begin0 - .quad Lset5198 -Lset5199 = Ltmp1433-Lfunc_begin0 - .quad Lset5199 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc249: -Lset5200 = Ltmp1468-Lfunc_begin0 - .quad Lset5200 -Lset5201 = Ltmp1470-Lfunc_begin0 - .quad Lset5201 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5202 = Ltmp1500-Lfunc_begin0 - .quad Lset5202 -Lset5203 = Ltmp1506-Lfunc_begin0 - .quad Lset5203 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5204 = Ltmp1532-Lfunc_begin0 - .quad Lset5204 -Lset5205 = Ltmp1534-Lfunc_begin0 - .quad Lset5205 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc250: -Lset5206 = Ltmp1473-Lfunc_begin0 - .quad Lset5206 -Lset5207 = Ltmp1476-Lfunc_begin0 - .quad Lset5207 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5208 = Ltmp1528-Lfunc_begin0 - .quad Lset5208 -Lset5209 = Ltmp1531-Lfunc_begin0 - .quad Lset5209 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc251: -Lset5210 = Ltmp1475-Lfunc_begin0 - .quad Lset5210 -Lset5211 = Ltmp1477-Lfunc_begin0 - .quad Lset5211 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc252: -Lset5212 = Ltmp1483-Lfunc_begin0 - .quad Lset5212 -Lset5213 = Ltmp1484-Lfunc_begin0 - .quad Lset5213 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5214 = Ltmp1484-Lfunc_begin0 - .quad Lset5214 -Lset5215 = Ltmp1485-Lfunc_begin0 - .quad Lset5215 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5216 = Ltmp1485-Lfunc_begin0 - .quad Lset5216 -Lset5217 = Ltmp1487-Lfunc_begin0 - .quad Lset5217 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5218 = Ltmp1578-Lfunc_begin0 - .quad Lset5218 -Lset5219 = Ltmp1588-Lfunc_begin0 - .quad Lset5219 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5220 = Ltmp1596-Lfunc_begin0 - .quad Lset5220 -Lset5221 = Ltmp1600-Lfunc_begin0 - .quad Lset5221 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc253: -Lset5222 = Ltmp1483-Lfunc_begin0 - .quad Lset5222 -Lset5223 = Ltmp1487-Lfunc_begin0 - .quad Lset5223 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5224 = Ltmp1579-Lfunc_begin0 - .quad Lset5224 -Lset5225 = Ltmp1600-Lfunc_begin0 - .quad Lset5225 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc254: -Lset5226 = Ltmp1483-Lfunc_begin0 - .quad Lset5226 -Lset5227 = Ltmp1487-Lfunc_begin0 - .quad Lset5227 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5228 = Ltmp1582-Lfunc_begin0 - .quad Lset5228 -Lset5229 = Ltmp1585-Lfunc_begin0 - .quad Lset5229 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc255: -Lset5230 = Ltmp1483-Lfunc_begin0 - .quad Lset5230 -Lset5231 = Ltmp1487-Lfunc_begin0 - .quad Lset5231 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset5232 = Ltmp1583-Lfunc_begin0 - .quad Lset5232 -Lset5233 = Ltmp1593-Lfunc_begin0 - .quad Lset5233 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc256: -Lset5234 = Ltmp1486-Lfunc_begin0 - .quad Lset5234 -Lset5235 = Ltmp1487-Lfunc_begin0 - .quad Lset5235 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5236 = Ltmp1586-Lfunc_begin0 - .quad Lset5236 -Lset5237 = Ltmp1586-Lfunc_begin0 - .quad Lset5237 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc257: -Lset5238 = Ltmp1489-Lfunc_begin0 - .quad Lset5238 -Lset5239 = Ltmp1497-Lfunc_begin0 - .quad Lset5239 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5240 = Ltmp1551-Lfunc_begin0 - .quad Lset5240 -Lset5241 = Ltmp1554-Lfunc_begin0 - .quad Lset5241 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc258: -Lset5242 = Ltmp1493-Lfunc_begin0 - .quad Lset5242 -Lset5243 = Ltmp1496-Lfunc_begin0 - .quad Lset5243 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5244 = Ltmp1551-Lfunc_begin0 - .quad Lset5244 -Lset5245 = Ltmp1554-Lfunc_begin0 - .quad Lset5245 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc259: -Lset5246 = Ltmp1495-Lfunc_begin0 - .quad Lset5246 -Lset5247 = Ltmp1497-Lfunc_begin0 - .quad Lset5247 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc260: -Lset5248 = Ltmp1502-Lfunc_begin0 - .quad Lset5248 -Lset5249 = Ltmp1505-Lfunc_begin0 - .quad Lset5249 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5250 = Ltmp1532-Lfunc_begin0 - .quad Lset5250 -Lset5251 = Ltmp1533-Lfunc_begin0 - .quad Lset5251 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc261: -Lset5252 = Ltmp1504-Lfunc_begin0 - .quad Lset5252 -Lset5253 = Ltmp1506-Lfunc_begin0 - .quad Lset5253 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc262: -Lset5254 = Ltmp1510-Lfunc_begin0 - .quad Lset5254 -Lset5255 = Ltmp1511-Lfunc_begin0 - .quad Lset5255 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc263: -Lset5256 = Ltmp1514-Lfunc_begin0 - .quad Lset5256 -Lset5257 = Ltmp1516-Lfunc_begin0 - .quad Lset5257 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset5258 = Ltmp1516-Lfunc_begin0 - .quad Lset5258 -Lset5259 = Ltmp1517-Lfunc_begin0 - .quad Lset5259 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset5260 = Ltmp1522-Lfunc_begin0 - .quad Lset5260 -Lset5261 = Ltmp1525-Lfunc_begin0 - .quad Lset5261 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset5262 = Ltmp1526-Lfunc_begin0 - .quad Lset5262 -Lset5263 = Ltmp1528-Lfunc_begin0 - .quad Lset5263 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc264: -Lset5264 = Ltmp1544-Lfunc_begin0 - .quad Lset5264 -Lset5265 = Ltmp1547-Lfunc_begin0 - .quad Lset5265 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5266 = Ltmp1548-Lfunc_begin0 - .quad Lset5266 -Lset5267 = Ltmp1550-Lfunc_begin0 - .quad Lset5267 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc265: -Lset5268 = Ltmp1546-Lfunc_begin0 - .quad Lset5268 -Lset5269 = Ltmp1548-Lfunc_begin0 - .quad Lset5269 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc266: -Lset5270 = Ltmp1558-Lfunc_begin0 - .quad Lset5270 -Lset5271 = Ltmp1559-Lfunc_begin0 - .quad Lset5271 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5272 = Ltmp1559-Lfunc_begin0 - .quad Lset5272 -Lset5273 = Lfunc_end17-Lfunc_begin0 - .quad Lset5273 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc267: -Lset5274 = Ltmp1562-Lfunc_begin0 - .quad Lset5274 -Lset5275 = Ltmp1564-Lfunc_begin0 - .quad Lset5275 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc268: -Lset5276 = Ltmp1567-Lfunc_begin0 - .quad Lset5276 -Lset5277 = Ltmp1570-Lfunc_begin0 - .quad Lset5277 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset5278 = Ltmp1571-Lfunc_begin0 - .quad Lset5278 -Lset5279 = Ltmp1573-Lfunc_begin0 - .quad Lset5279 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc269: -Lset5280 = Ltmp1569-Lfunc_begin0 - .quad Lset5280 -Lset5281 = Ltmp1571-Lfunc_begin0 - .quad Lset5281 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc270: -Lset5282 = Ltmp1579-Lfunc_begin0 - .quad Lset5282 -Lset5283 = Ltmp1581-Lfunc_begin0 - .quad Lset5283 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc271: -Lset5284 = Ltmp1579-Lfunc_begin0 - .quad Lset5284 -Lset5285 = Ltmp1581-Lfunc_begin0 - .quad Lset5285 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc272: -Lset5286 = Ltmp1579-Lfunc_begin0 - .quad Lset5286 -Lset5287 = Ltmp1581-Lfunc_begin0 - .quad Lset5287 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc273: -Lset5288 = Ltmp1612-Lfunc_begin0 - .quad Lset5288 -Lset5289 = Ltmp1618-Lfunc_begin0 - .quad Lset5289 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5290 = Ltmp1626-Lfunc_begin0 - .quad Lset5290 -Lset5291 = Ltmp1636-Lfunc_begin0 - .quad Lset5291 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5292 = Ltmp1637-Lfunc_begin0 - .quad Lset5292 -Lset5293 = Ltmp1639-Lfunc_begin0 - .quad Lset5293 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5294 = Ltmp1646-Lfunc_begin0 - .quad Lset5294 -Lset5295 = Ltmp1651-Lfunc_begin0 - .quad Lset5295 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc274: -Lset5296 = Ltmp1612-Lfunc_begin0 - .quad Lset5296 -Lset5297 = Ltmp1616-Lfunc_begin0 - .quad Lset5297 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5298 = Ltmp1627-Lfunc_begin0 - .quad Lset5298 -Lset5299 = Ltmp1636-Lfunc_begin0 - .quad Lset5299 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5300 = Ltmp1637-Lfunc_begin0 - .quad Lset5300 -Lset5301 = Ltmp1648-Lfunc_begin0 - .quad Lset5301 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc275: -Lset5302 = Ltmp1632-Lfunc_begin0 - .quad Lset5302 -Lset5303 = Ltmp1632-Lfunc_begin0 - .quad Lset5303 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5304 = Ltmp1635-Lfunc_begin0 - .quad Lset5304 -Lset5305 = Ltmp1636-Lfunc_begin0 - .quad Lset5305 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc276: -Lset5306 = Ltmp1637-Lfunc_begin0 - .quad Lset5306 -Lset5307 = Ltmp1649-Lfunc_begin0 - .quad Lset5307 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc277: -Lset5308 = Ltmp1673-Lfunc_begin0 - .quad Lset5308 -Lset5309 = Ltmp1680-Lfunc_begin0 - .quad Lset5309 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc278: -Lset5310 = Ltmp1674-Lfunc_begin0 - .quad Lset5310 -Lset5311 = Ltmp1681-Lfunc_begin0 - .quad Lset5311 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc279: -Lset5312 = Ltmp1677-Lfunc_begin0 - .quad Lset5312 -Lset5313 = Ltmp1679-Lfunc_begin0 - .quad Lset5313 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc280: -Lset5314 = Ltmp1677-Lfunc_begin0 - .quad Lset5314 -Lset5315 = Ltmp1681-Lfunc_begin0 - .quad Lset5315 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc281: -Lset5316 = Ltmp1700-Lfunc_begin0 - .quad Lset5316 -Lset5317 = Ltmp1707-Lfunc_begin0 - .quad Lset5317 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5318 = Ltmp1716-Lfunc_begin0 - .quad Lset5318 -Lset5319 = Ltmp1722-Lfunc_begin0 - .quad Lset5319 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5320 = Ltmp1726-Lfunc_begin0 - .quad Lset5320 -Lset5321 = Ltmp1731-Lfunc_begin0 - .quad Lset5321 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5322 = Ltmp1733-Lfunc_begin0 - .quad Lset5322 -Lset5323 = Ltmp1737-Lfunc_begin0 - .quad Lset5323 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5324 = Ltmp1738-Lfunc_begin0 - .quad Lset5324 -Lset5325 = Ltmp1740-Lfunc_begin0 - .quad Lset5325 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5326 = Ltmp5264-Lfunc_begin0 - .quad Lset5326 -Lset5327 = Ltmp5265-Lfunc_begin0 - .quad Lset5327 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc282: -Lset5328 = Ltmp1700-Lfunc_begin0 - .quad Lset5328 -Lset5329 = Ltmp1707-Lfunc_begin0 - .quad Lset5329 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5330 = Ltmp1716-Lfunc_begin0 - .quad Lset5330 -Lset5331 = Ltmp1722-Lfunc_begin0 - .quad Lset5331 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5332 = Ltmp1728-Lfunc_begin0 - .quad Lset5332 -Lset5333 = Ltmp1731-Lfunc_begin0 - .quad Lset5333 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5334 = Ltmp1733-Lfunc_begin0 - .quad Lset5334 -Lset5335 = Ltmp1737-Lfunc_begin0 - .quad Lset5335 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset5336 = Ltmp1738-Lfunc_begin0 - .quad Lset5336 -Lset5337 = Ltmp1740-Lfunc_begin0 - .quad Lset5337 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc283: -Lset5338 = Ltmp1716-Lfunc_begin0 - .quad Lset5338 -Lset5339 = Ltmp1722-Lfunc_begin0 - .quad Lset5339 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset5340 = Ltmp1738-Lfunc_begin0 - .quad Lset5340 -Lset5341 = Ltmp1741-Lfunc_begin0 - .quad Lset5341 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc284: -Lset5342 = Ltmp1733-Lfunc_begin0 - .quad Lset5342 -Lset5343 = Ltmp1733-Lfunc_begin0 - .quad Lset5343 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset5344 = Ltmp1736-Lfunc_begin0 - .quad Lset5344 -Lset5345 = Ltmp1737-Lfunc_begin0 - .quad Lset5345 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc285: -Lset5346 = Ltmp1758-Lfunc_begin0 - .quad Lset5346 -Lset5347 = Ltmp1767-Lfunc_begin0 - .quad Lset5347 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5348 = Ltmp1770-Lfunc_begin0 - .quad Lset5348 -Lset5349 = Ltmp1772-Lfunc_begin0 - .quad Lset5349 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc286: -Lset5350 = Ltmp1760-Lfunc_begin0 - .quad Lset5350 -Lset5351 = Ltmp1767-Lfunc_begin0 - .quad Lset5351 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset5352 = Ltmp1770-Lfunc_begin0 - .quad Lset5352 -Lset5353 = Ltmp1773-Lfunc_begin0 - .quad Lset5353 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc287: -Lset5354 = Ltmp1761-Lfunc_begin0 - .quad Lset5354 -Lset5355 = Ltmp1767-Lfunc_begin0 - .quad Lset5355 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc288: -Lset5356 = Ltmp1766-Lfunc_begin0 - .quad Lset5356 -Lset5357 = Ltmp1769-Lfunc_begin0 - .quad Lset5357 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc289: -Lset5358 = Ltmp1794-Lfunc_begin0 - .quad Lset5358 -Lset5359 = Ltmp1795-Lfunc_begin0 - .quad Lset5359 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5360 = Ltmp1803-Lfunc_begin0 - .quad Lset5360 -Lset5361 = Ltmp1808-Lfunc_begin0 - .quad Lset5361 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5362 = Ltmp1817-Lfunc_begin0 - .quad Lset5362 -Lset5363 = Ltmp1818-Lfunc_begin0 - .quad Lset5363 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5364 = Ltmp1819-Lfunc_begin0 - .quad Lset5364 -Lset5365 = Ltmp1821-Lfunc_begin0 - .quad Lset5365 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5366 = Ltmp1823-Lfunc_begin0 - .quad Lset5366 -Lset5367 = Ltmp1826-Lfunc_begin0 - .quad Lset5367 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5368 = Ltmp1836-Lfunc_begin0 - .quad Lset5368 -Lset5369 = Ltmp1844-Lfunc_begin0 - .quad Lset5369 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5370 = Ltmp1848-Lfunc_begin0 - .quad Lset5370 -Lset5371 = Ltmp1853-Lfunc_begin0 - .quad Lset5371 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc290: -Lset5372 = Ltmp1794-Lfunc_begin0 - .quad Lset5372 -Lset5373 = Ltmp1796-Lfunc_begin0 - .quad Lset5373 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5374 = Ltmp1803-Lfunc_begin0 - .quad Lset5374 -Lset5375 = Ltmp1808-Lfunc_begin0 - .quad Lset5375 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5376 = Ltmp1817-Lfunc_begin0 - .quad Lset5376 -Lset5377 = Ltmp1818-Lfunc_begin0 - .quad Lset5377 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5378 = Ltmp1819-Lfunc_begin0 - .quad Lset5378 -Lset5379 = Ltmp1821-Lfunc_begin0 - .quad Lset5379 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5380 = Ltmp1837-Lfunc_begin0 - .quad Lset5380 -Lset5381 = Ltmp1839-Lfunc_begin0 - .quad Lset5381 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5382 = Ltmp1851-Lfunc_begin0 - .quad Lset5382 -Lset5383 = Ltmp1853-Lfunc_begin0 - .quad Lset5383 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc291: -Lset5384 = Ltmp1794-Lfunc_begin0 - .quad Lset5384 -Lset5385 = Ltmp1796-Lfunc_begin0 - .quad Lset5385 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5386 = Ltmp1803-Lfunc_begin0 - .quad Lset5386 -Lset5387 = Ltmp1808-Lfunc_begin0 - .quad Lset5387 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5388 = Ltmp1817-Lfunc_begin0 - .quad Lset5388 -Lset5389 = Ltmp1818-Lfunc_begin0 - .quad Lset5389 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5390 = Ltmp1819-Lfunc_begin0 - .quad Lset5390 -Lset5391 = Ltmp1821-Lfunc_begin0 - .quad Lset5391 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5392 = Ltmp1823-Lfunc_begin0 - .quad Lset5392 -Lset5393 = Ltmp1832-Lfunc_begin0 - .quad Lset5393 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5394 = Ltmp1837-Lfunc_begin0 - .quad Lset5394 -Lset5395 = Ltmp1845-Lfunc_begin0 - .quad Lset5395 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5396 = Ltmp1848-Lfunc_begin0 - .quad Lset5396 -Lset5397 = Ltmp1855-Lfunc_begin0 - .quad Lset5397 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc292: -Lset5398 = Ltmp1801-Lfunc_begin0 - .quad Lset5398 -Lset5399 = Ltmp1802-Lfunc_begin0 - .quad Lset5399 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc293: -Lset5400 = Ltmp1805-Lfunc_begin0 - .quad Lset5400 -Lset5401 = Ltmp1806-Lfunc_begin0 - .quad Lset5401 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc294: -Lset5402 = Ltmp1836-Lfunc_begin0 - .quad Lset5402 -Lset5403 = Ltmp1839-Lfunc_begin0 - .quad Lset5403 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5404 = Ltmp1850-Lfunc_begin0 - .quad Lset5404 -Lset5405 = Ltmp1851-Lfunc_begin0 - .quad Lset5405 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc295: -Lset5406 = Ltmp1841-Lfunc_begin0 - .quad Lset5406 -Lset5407 = Ltmp1842-Lfunc_begin0 - .quad Lset5407 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc296: -Lset5408 = Ltmp1870-Lfunc_begin0 - .quad Lset5408 -Lset5409 = Ltmp1871-Lfunc_begin0 - .quad Lset5409 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5410 = Ltmp1879-Lfunc_begin0 - .quad Lset5410 -Lset5411 = Ltmp1884-Lfunc_begin0 - .quad Lset5411 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5412 = Ltmp1893-Lfunc_begin0 - .quad Lset5412 -Lset5413 = Ltmp1894-Lfunc_begin0 - .quad Lset5413 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5414 = Ltmp1895-Lfunc_begin0 - .quad Lset5414 -Lset5415 = Ltmp1897-Lfunc_begin0 - .quad Lset5415 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5416 = Ltmp1899-Lfunc_begin0 - .quad Lset5416 -Lset5417 = Ltmp1902-Lfunc_begin0 - .quad Lset5417 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5418 = Ltmp1912-Lfunc_begin0 - .quad Lset5418 -Lset5419 = Ltmp1920-Lfunc_begin0 - .quad Lset5419 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5420 = Ltmp1924-Lfunc_begin0 - .quad Lset5420 -Lset5421 = Ltmp1929-Lfunc_begin0 - .quad Lset5421 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc297: -Lset5422 = Ltmp1870-Lfunc_begin0 - .quad Lset5422 -Lset5423 = Ltmp1872-Lfunc_begin0 - .quad Lset5423 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5424 = Ltmp1879-Lfunc_begin0 - .quad Lset5424 -Lset5425 = Ltmp1884-Lfunc_begin0 - .quad Lset5425 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5426 = Ltmp1893-Lfunc_begin0 - .quad Lset5426 -Lset5427 = Ltmp1894-Lfunc_begin0 - .quad Lset5427 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5428 = Ltmp1895-Lfunc_begin0 - .quad Lset5428 -Lset5429 = Ltmp1897-Lfunc_begin0 - .quad Lset5429 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5430 = Ltmp1913-Lfunc_begin0 - .quad Lset5430 -Lset5431 = Ltmp1915-Lfunc_begin0 - .quad Lset5431 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5432 = Ltmp1927-Lfunc_begin0 - .quad Lset5432 -Lset5433 = Ltmp1929-Lfunc_begin0 - .quad Lset5433 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc298: -Lset5434 = Ltmp1870-Lfunc_begin0 - .quad Lset5434 -Lset5435 = Ltmp1872-Lfunc_begin0 - .quad Lset5435 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5436 = Ltmp1879-Lfunc_begin0 - .quad Lset5436 -Lset5437 = Ltmp1884-Lfunc_begin0 - .quad Lset5437 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5438 = Ltmp1893-Lfunc_begin0 - .quad Lset5438 -Lset5439 = Ltmp1894-Lfunc_begin0 - .quad Lset5439 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5440 = Ltmp1895-Lfunc_begin0 - .quad Lset5440 -Lset5441 = Ltmp1897-Lfunc_begin0 - .quad Lset5441 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5442 = Ltmp1899-Lfunc_begin0 - .quad Lset5442 -Lset5443 = Ltmp1908-Lfunc_begin0 - .quad Lset5443 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5444 = Ltmp1913-Lfunc_begin0 - .quad Lset5444 -Lset5445 = Ltmp1921-Lfunc_begin0 - .quad Lset5445 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5446 = Ltmp1924-Lfunc_begin0 - .quad Lset5446 -Lset5447 = Ltmp1931-Lfunc_begin0 - .quad Lset5447 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc299: -Lset5448 = Ltmp1877-Lfunc_begin0 - .quad Lset5448 -Lset5449 = Ltmp1878-Lfunc_begin0 - .quad Lset5449 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc300: -Lset5450 = Ltmp1881-Lfunc_begin0 - .quad Lset5450 -Lset5451 = Ltmp1882-Lfunc_begin0 - .quad Lset5451 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc301: -Lset5452 = Ltmp1912-Lfunc_begin0 - .quad Lset5452 -Lset5453 = Ltmp1915-Lfunc_begin0 - .quad Lset5453 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5454 = Ltmp1926-Lfunc_begin0 - .quad Lset5454 -Lset5455 = Ltmp1927-Lfunc_begin0 - .quad Lset5455 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc302: -Lset5456 = Ltmp1917-Lfunc_begin0 - .quad Lset5456 -Lset5457 = Ltmp1918-Lfunc_begin0 - .quad Lset5457 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc303: -Lset5458 = Ltmp1946-Lfunc_begin0 - .quad Lset5458 -Lset5459 = Ltmp1947-Lfunc_begin0 - .quad Lset5459 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5460 = Ltmp1955-Lfunc_begin0 - .quad Lset5460 -Lset5461 = Ltmp1960-Lfunc_begin0 - .quad Lset5461 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5462 = Ltmp1969-Lfunc_begin0 - .quad Lset5462 -Lset5463 = Ltmp1970-Lfunc_begin0 - .quad Lset5463 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5464 = Ltmp1971-Lfunc_begin0 - .quad Lset5464 -Lset5465 = Ltmp1973-Lfunc_begin0 - .quad Lset5465 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5466 = Ltmp1975-Lfunc_begin0 - .quad Lset5466 -Lset5467 = Ltmp1978-Lfunc_begin0 - .quad Lset5467 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5468 = Ltmp1988-Lfunc_begin0 - .quad Lset5468 -Lset5469 = Ltmp1996-Lfunc_begin0 - .quad Lset5469 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5470 = Ltmp2000-Lfunc_begin0 - .quad Lset5470 -Lset5471 = Ltmp2005-Lfunc_begin0 - .quad Lset5471 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc304: -Lset5472 = Ltmp1946-Lfunc_begin0 - .quad Lset5472 -Lset5473 = Ltmp1948-Lfunc_begin0 - .quad Lset5473 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5474 = Ltmp1955-Lfunc_begin0 - .quad Lset5474 -Lset5475 = Ltmp1960-Lfunc_begin0 - .quad Lset5475 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5476 = Ltmp1969-Lfunc_begin0 - .quad Lset5476 -Lset5477 = Ltmp1970-Lfunc_begin0 - .quad Lset5477 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5478 = Ltmp1971-Lfunc_begin0 - .quad Lset5478 -Lset5479 = Ltmp1973-Lfunc_begin0 - .quad Lset5479 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5480 = Ltmp1989-Lfunc_begin0 - .quad Lset5480 -Lset5481 = Ltmp1991-Lfunc_begin0 - .quad Lset5481 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5482 = Ltmp2003-Lfunc_begin0 - .quad Lset5482 -Lset5483 = Ltmp2005-Lfunc_begin0 - .quad Lset5483 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc305: -Lset5484 = Ltmp1946-Lfunc_begin0 - .quad Lset5484 -Lset5485 = Ltmp1948-Lfunc_begin0 - .quad Lset5485 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5486 = Ltmp1955-Lfunc_begin0 - .quad Lset5486 -Lset5487 = Ltmp1960-Lfunc_begin0 - .quad Lset5487 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5488 = Ltmp1969-Lfunc_begin0 - .quad Lset5488 -Lset5489 = Ltmp1970-Lfunc_begin0 - .quad Lset5489 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5490 = Ltmp1971-Lfunc_begin0 - .quad Lset5490 -Lset5491 = Ltmp1973-Lfunc_begin0 - .quad Lset5491 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5492 = Ltmp1975-Lfunc_begin0 - .quad Lset5492 -Lset5493 = Ltmp1984-Lfunc_begin0 - .quad Lset5493 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5494 = Ltmp1989-Lfunc_begin0 - .quad Lset5494 -Lset5495 = Ltmp1997-Lfunc_begin0 - .quad Lset5495 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5496 = Ltmp2000-Lfunc_begin0 - .quad Lset5496 -Lset5497 = Ltmp2007-Lfunc_begin0 - .quad Lset5497 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc306: -Lset5498 = Ltmp1953-Lfunc_begin0 - .quad Lset5498 -Lset5499 = Ltmp1954-Lfunc_begin0 - .quad Lset5499 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc307: -Lset5500 = Ltmp1957-Lfunc_begin0 - .quad Lset5500 -Lset5501 = Ltmp1958-Lfunc_begin0 - .quad Lset5501 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc308: -Lset5502 = Ltmp1988-Lfunc_begin0 - .quad Lset5502 -Lset5503 = Ltmp1991-Lfunc_begin0 - .quad Lset5503 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5504 = Ltmp2002-Lfunc_begin0 - .quad Lset5504 -Lset5505 = Ltmp2003-Lfunc_begin0 - .quad Lset5505 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc309: -Lset5506 = Ltmp1993-Lfunc_begin0 - .quad Lset5506 -Lset5507 = Ltmp1994-Lfunc_begin0 - .quad Lset5507 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc310: -Lset5508 = Ltmp2014-Lfunc_begin0 - .quad Lset5508 -Lset5509 = Ltmp2018-Lfunc_begin0 - .quad Lset5509 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5510 = Ltmp2032-Lfunc_begin0 - .quad Lset5510 -Lset5511 = Ltmp2037-Lfunc_begin0 - .quad Lset5511 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5512 = Ltmp2042-Lfunc_begin0 - .quad Lset5512 -Lset5513 = Ltmp2043-Lfunc_begin0 - .quad Lset5513 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5514 = Ltmp2045-Lfunc_begin0 - .quad Lset5514 -Lset5515 = Ltmp2050-Lfunc_begin0 - .quad Lset5515 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5516 = Ltmp2067-Lfunc_begin0 - .quad Lset5516 -Lset5517 = Ltmp2068-Lfunc_begin0 - .quad Lset5517 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5518 = Ltmp2071-Lfunc_begin0 - .quad Lset5518 -Lset5519 = Ltmp2074-Lfunc_begin0 - .quad Lset5519 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc311: -Lset5520 = Ltmp2014-Lfunc_begin0 - .quad Lset5520 -Lset5521 = Ltmp2018-Lfunc_begin0 - .quad Lset5521 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5522 = Ltmp2027-Lfunc_begin0 - .quad Lset5522 -Lset5523 = Ltmp2028-Lfunc_begin0 - .quad Lset5523 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5524 = Ltmp2032-Lfunc_begin0 - .quad Lset5524 -Lset5525 = Ltmp2043-Lfunc_begin0 - .quad Lset5525 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5526 = Ltmp2045-Lfunc_begin0 - .quad Lset5526 -Lset5527 = Ltmp2053-Lfunc_begin0 - .quad Lset5527 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5528 = Ltmp2054-Lfunc_begin0 - .quad Lset5528 -Lset5529 = Ltmp2056-Lfunc_begin0 - .quad Lset5529 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5530 = Ltmp2058-Lfunc_begin0 - .quad Lset5530 -Lset5531 = Ltmp2061-Lfunc_begin0 - .quad Lset5531 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5532 = Ltmp2067-Lfunc_begin0 - .quad Lset5532 -Lset5533 = Ltmp2068-Lfunc_begin0 - .quad Lset5533 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5534 = Ltmp2071-Lfunc_begin0 - .quad Lset5534 -Lset5535 = Ltmp2078-Lfunc_begin0 - .quad Lset5535 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc312: -Lset5536 = Ltmp2014-Lfunc_begin0 - .quad Lset5536 -Lset5537 = Ltmp2018-Lfunc_begin0 - .quad Lset5537 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5538 = Ltmp2027-Lfunc_begin0 - .quad Lset5538 -Lset5539 = Ltmp2029-Lfunc_begin0 - .quad Lset5539 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5540 = Ltmp2032-Lfunc_begin0 - .quad Lset5540 -Lset5541 = Ltmp2043-Lfunc_begin0 - .quad Lset5541 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5542 = Ltmp2045-Lfunc_begin0 - .quad Lset5542 -Lset5543 = Ltmp2053-Lfunc_begin0 - .quad Lset5543 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5544 = Ltmp2054-Lfunc_begin0 - .quad Lset5544 -Lset5545 = Ltmp2056-Lfunc_begin0 - .quad Lset5545 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5546 = Ltmp2058-Lfunc_begin0 - .quad Lset5546 -Lset5547 = Ltmp2068-Lfunc_begin0 - .quad Lset5547 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5548 = Ltmp2072-Lfunc_begin0 - .quad Lset5548 -Lset5549 = Ltmp2080-Lfunc_begin0 - .quad Lset5549 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc313: -Lset5550 = Ltmp2027-Lfunc_begin0 - .quad Lset5550 -Lset5551 = Ltmp2029-Lfunc_begin0 - .quad Lset5551 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5552 = Ltmp2037-Lfunc_begin0 - .quad Lset5552 -Lset5553 = Ltmp2042-Lfunc_begin0 - .quad Lset5553 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5554 = Ltmp2052-Lfunc_begin0 - .quad Lset5554 -Lset5555 = Ltmp2053-Lfunc_begin0 - .quad Lset5555 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5556 = Ltmp2054-Lfunc_begin0 - .quad Lset5556 -Lset5557 = Ltmp2056-Lfunc_begin0 - .quad Lset5557 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5558 = Ltmp2072-Lfunc_begin0 - .quad Lset5558 -Lset5559 = Ltmp2074-Lfunc_begin0 - .quad Lset5559 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5560 = Ltmp2076-Lfunc_begin0 - .quad Lset5560 -Lset5561 = Ltmp2078-Lfunc_begin0 - .quad Lset5561 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc314: -Lset5562 = Ltmp2034-Lfunc_begin0 - .quad Lset5562 -Lset5563 = Ltmp2035-Lfunc_begin0 - .quad Lset5563 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc315: -Lset5564 = Ltmp2039-Lfunc_begin0 - .quad Lset5564 -Lset5565 = Ltmp2040-Lfunc_begin0 - .quad Lset5565 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc316: -Lset5566 = Ltmp2087-Lfunc_begin0 - .quad Lset5566 -Lset5567 = Ltmp2090-Lfunc_begin0 - .quad Lset5567 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5568 = Ltmp2092-Lfunc_begin0 - .quad Lset5568 -Lset5569 = Ltmp2093-Lfunc_begin0 - .quad Lset5569 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5570 = Ltmp2107-Lfunc_begin0 - .quad Lset5570 -Lset5571 = Ltmp2110-Lfunc_begin0 - .quad Lset5571 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5572 = Ltmp2112-Lfunc_begin0 - .quad Lset5572 -Lset5573 = Ltmp2113-Lfunc_begin0 - .quad Lset5573 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5574 = Ltmp2119-Lfunc_begin0 - .quad Lset5574 -Lset5575 = Ltmp2120-Lfunc_begin0 - .quad Lset5575 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5576 = Ltmp2139-Lfunc_begin0 - .quad Lset5576 -Lset5577 = Ltmp2147-Lfunc_begin0 - .quad Lset5577 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5578 = Ltmp2152-Lfunc_begin0 - .quad Lset5578 -Lset5579 = Ltmp2157-Lfunc_begin0 - .quad Lset5579 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc317: -Lset5580 = Ltmp2087-Lfunc_begin0 - .quad Lset5580 -Lset5581 = Ltmp2090-Lfunc_begin0 - .quad Lset5581 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5582 = Ltmp2092-Lfunc_begin0 - .quad Lset5582 -Lset5583 = Ltmp2093-Lfunc_begin0 - .quad Lset5583 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5584 = Ltmp2107-Lfunc_begin0 - .quad Lset5584 -Lset5585 = Ltmp2110-Lfunc_begin0 - .quad Lset5585 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5586 = Ltmp2112-Lfunc_begin0 - .quad Lset5586 -Lset5587 = Ltmp2113-Lfunc_begin0 - .quad Lset5587 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5588 = Ltmp2119-Lfunc_begin0 - .quad Lset5588 -Lset5589 = Ltmp2120-Lfunc_begin0 - .quad Lset5589 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5590 = Ltmp2139-Lfunc_begin0 - .quad Lset5590 -Lset5591 = Ltmp2149-Lfunc_begin0 - .quad Lset5591 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5592 = Ltmp2153-Lfunc_begin0 - .quad Lset5592 -Lset5593 = Ltmp2159-Lfunc_begin0 - .quad Lset5593 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc318: -Lset5594 = Ltmp2091-Lfunc_begin0 - .quad Lset5594 -Lset5595 = Ltmp2092-Lfunc_begin0 - .quad Lset5595 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5596 = Ltmp2095-Lfunc_begin0 - .quad Lset5596 -Lset5597 = Ltmp2096-Lfunc_begin0 - .quad Lset5597 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc319: -Lset5598 = Ltmp2111-Lfunc_begin0 - .quad Lset5598 -Lset5599 = Ltmp2112-Lfunc_begin0 - .quad Lset5599 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5600 = Ltmp2115-Lfunc_begin0 - .quad Lset5600 -Lset5601 = Ltmp2116-Lfunc_begin0 - .quad Lset5601 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc320: -Lset5602 = Ltmp2124-Lfunc_begin0 - .quad Lset5602 -Lset5603 = Ltmp2125-Lfunc_begin0 - .quad Lset5603 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5604 = Ltmp2125-Lfunc_begin0 - .quad Lset5604 -Lset5605 = Lfunc_end17-Lfunc_begin0 - .quad Lset5605 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc321: -Lset5606 = Ltmp2126-Lfunc_begin0 - .quad Lset5606 -Lset5607 = Ltmp2128-Lfunc_begin0 - .quad Lset5607 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc322: -Lset5608 = Ltmp2134-Lfunc_begin0 - .quad Lset5608 -Lset5609 = Ltmp2135-Lfunc_begin0 - .quad Lset5609 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5610 = Ltmp2135-Lfunc_begin0 - .quad Lset5610 -Lset5611 = Lfunc_end17-Lfunc_begin0 - .quad Lset5611 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc323: -Lset5612 = Ltmp2136-Lfunc_begin0 - .quad Lset5612 -Lset5613 = Ltmp2138-Lfunc_begin0 - .quad Lset5613 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc324: -Lset5614 = Ltmp2152-Lfunc_begin0 - .quad Lset5614 -Lset5615 = Ltmp2154-Lfunc_begin0 - .quad Lset5615 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc325: -Lset5616 = Ltmp2153-Lfunc_begin0 - .quad Lset5616 -Lset5617 = Ltmp2154-Lfunc_begin0 - .quad Lset5617 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc326: -Lset5618 = Ltmp2155-Lfunc_begin0 - .quad Lset5618 -Lset5619 = Ltmp2155-Lfunc_begin0 - .quad Lset5619 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc327: -Lset5620 = Ltmp2158-Lfunc_begin0 - .quad Lset5620 -Lset5621 = Ltmp2159-Lfunc_begin0 - .quad Lset5621 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc328: -Lset5622 = Ltmp2165-Lfunc_begin0 - .quad Lset5622 -Lset5623 = Ltmp2168-Lfunc_begin0 - .quad Lset5623 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5624 = Ltmp2170-Lfunc_begin0 - .quad Lset5624 -Lset5625 = Ltmp2171-Lfunc_begin0 - .quad Lset5625 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5626 = Ltmp2185-Lfunc_begin0 - .quad Lset5626 -Lset5627 = Ltmp2188-Lfunc_begin0 - .quad Lset5627 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5628 = Ltmp2190-Lfunc_begin0 - .quad Lset5628 -Lset5629 = Ltmp2191-Lfunc_begin0 - .quad Lset5629 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5630 = Ltmp2197-Lfunc_begin0 - .quad Lset5630 -Lset5631 = Ltmp2198-Lfunc_begin0 - .quad Lset5631 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5632 = Ltmp2217-Lfunc_begin0 - .quad Lset5632 -Lset5633 = Ltmp2225-Lfunc_begin0 - .quad Lset5633 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5634 = Ltmp2230-Lfunc_begin0 - .quad Lset5634 -Lset5635 = Ltmp2235-Lfunc_begin0 - .quad Lset5635 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc329: -Lset5636 = Ltmp2165-Lfunc_begin0 - .quad Lset5636 -Lset5637 = Ltmp2168-Lfunc_begin0 - .quad Lset5637 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5638 = Ltmp2170-Lfunc_begin0 - .quad Lset5638 -Lset5639 = Ltmp2171-Lfunc_begin0 - .quad Lset5639 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5640 = Ltmp2185-Lfunc_begin0 - .quad Lset5640 -Lset5641 = Ltmp2188-Lfunc_begin0 - .quad Lset5641 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5642 = Ltmp2190-Lfunc_begin0 - .quad Lset5642 -Lset5643 = Ltmp2191-Lfunc_begin0 - .quad Lset5643 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5644 = Ltmp2197-Lfunc_begin0 - .quad Lset5644 -Lset5645 = Ltmp2198-Lfunc_begin0 - .quad Lset5645 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5646 = Ltmp2217-Lfunc_begin0 - .quad Lset5646 -Lset5647 = Ltmp2227-Lfunc_begin0 - .quad Lset5647 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5648 = Ltmp2231-Lfunc_begin0 - .quad Lset5648 -Lset5649 = Ltmp2237-Lfunc_begin0 - .quad Lset5649 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc330: -Lset5650 = Ltmp2169-Lfunc_begin0 - .quad Lset5650 -Lset5651 = Ltmp2170-Lfunc_begin0 - .quad Lset5651 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5652 = Ltmp2173-Lfunc_begin0 - .quad Lset5652 -Lset5653 = Ltmp2174-Lfunc_begin0 - .quad Lset5653 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc331: -Lset5654 = Ltmp2189-Lfunc_begin0 - .quad Lset5654 -Lset5655 = Ltmp2190-Lfunc_begin0 - .quad Lset5655 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5656 = Ltmp2193-Lfunc_begin0 - .quad Lset5656 -Lset5657 = Ltmp2194-Lfunc_begin0 - .quad Lset5657 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc332: -Lset5658 = Ltmp2202-Lfunc_begin0 - .quad Lset5658 -Lset5659 = Ltmp2203-Lfunc_begin0 - .quad Lset5659 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5660 = Ltmp2203-Lfunc_begin0 - .quad Lset5660 -Lset5661 = Lfunc_end17-Lfunc_begin0 - .quad Lset5661 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc333: -Lset5662 = Ltmp2204-Lfunc_begin0 - .quad Lset5662 -Lset5663 = Ltmp2206-Lfunc_begin0 - .quad Lset5663 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc334: -Lset5664 = Ltmp2212-Lfunc_begin0 - .quad Lset5664 -Lset5665 = Ltmp2213-Lfunc_begin0 - .quad Lset5665 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5666 = Ltmp2213-Lfunc_begin0 - .quad Lset5666 -Lset5667 = Lfunc_end17-Lfunc_begin0 - .quad Lset5667 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc335: -Lset5668 = Ltmp2214-Lfunc_begin0 - .quad Lset5668 -Lset5669 = Ltmp2216-Lfunc_begin0 - .quad Lset5669 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc336: -Lset5670 = Ltmp2230-Lfunc_begin0 - .quad Lset5670 -Lset5671 = Ltmp2232-Lfunc_begin0 - .quad Lset5671 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc337: -Lset5672 = Ltmp2231-Lfunc_begin0 - .quad Lset5672 -Lset5673 = Ltmp2232-Lfunc_begin0 - .quad Lset5673 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc338: -Lset5674 = Ltmp2233-Lfunc_begin0 - .quad Lset5674 -Lset5675 = Ltmp2233-Lfunc_begin0 - .quad Lset5675 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc339: -Lset5676 = Ltmp2236-Lfunc_begin0 - .quad Lset5676 -Lset5677 = Ltmp2237-Lfunc_begin0 - .quad Lset5677 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc340: -Lset5678 = Ltmp2243-Lfunc_begin0 - .quad Lset5678 -Lset5679 = Ltmp2246-Lfunc_begin0 - .quad Lset5679 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5680 = Ltmp2248-Lfunc_begin0 - .quad Lset5680 -Lset5681 = Ltmp2249-Lfunc_begin0 - .quad Lset5681 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5682 = Ltmp2263-Lfunc_begin0 - .quad Lset5682 -Lset5683 = Ltmp2266-Lfunc_begin0 - .quad Lset5683 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5684 = Ltmp2268-Lfunc_begin0 - .quad Lset5684 -Lset5685 = Ltmp2269-Lfunc_begin0 - .quad Lset5685 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5686 = Ltmp2275-Lfunc_begin0 - .quad Lset5686 -Lset5687 = Ltmp2276-Lfunc_begin0 - .quad Lset5687 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5688 = Ltmp2295-Lfunc_begin0 - .quad Lset5688 -Lset5689 = Ltmp2303-Lfunc_begin0 - .quad Lset5689 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5690 = Ltmp2308-Lfunc_begin0 - .quad Lset5690 -Lset5691 = Ltmp2313-Lfunc_begin0 - .quad Lset5691 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc341: -Lset5692 = Ltmp2243-Lfunc_begin0 - .quad Lset5692 -Lset5693 = Ltmp2246-Lfunc_begin0 - .quad Lset5693 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5694 = Ltmp2248-Lfunc_begin0 - .quad Lset5694 -Lset5695 = Ltmp2249-Lfunc_begin0 - .quad Lset5695 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5696 = Ltmp2263-Lfunc_begin0 - .quad Lset5696 -Lset5697 = Ltmp2266-Lfunc_begin0 - .quad Lset5697 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5698 = Ltmp2268-Lfunc_begin0 - .quad Lset5698 -Lset5699 = Ltmp2269-Lfunc_begin0 - .quad Lset5699 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5700 = Ltmp2275-Lfunc_begin0 - .quad Lset5700 -Lset5701 = Ltmp2276-Lfunc_begin0 - .quad Lset5701 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5702 = Ltmp2295-Lfunc_begin0 - .quad Lset5702 -Lset5703 = Ltmp2305-Lfunc_begin0 - .quad Lset5703 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5704 = Ltmp2309-Lfunc_begin0 - .quad Lset5704 -Lset5705 = Ltmp2315-Lfunc_begin0 - .quad Lset5705 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc342: -Lset5706 = Ltmp2247-Lfunc_begin0 - .quad Lset5706 -Lset5707 = Ltmp2248-Lfunc_begin0 - .quad Lset5707 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5708 = Ltmp2251-Lfunc_begin0 - .quad Lset5708 -Lset5709 = Ltmp2252-Lfunc_begin0 - .quad Lset5709 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc343: -Lset5710 = Ltmp2267-Lfunc_begin0 - .quad Lset5710 -Lset5711 = Ltmp2268-Lfunc_begin0 - .quad Lset5711 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5712 = Ltmp2271-Lfunc_begin0 - .quad Lset5712 -Lset5713 = Ltmp2272-Lfunc_begin0 - .quad Lset5713 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc344: -Lset5714 = Ltmp2280-Lfunc_begin0 - .quad Lset5714 -Lset5715 = Ltmp2281-Lfunc_begin0 - .quad Lset5715 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5716 = Ltmp2281-Lfunc_begin0 - .quad Lset5716 -Lset5717 = Lfunc_end17-Lfunc_begin0 - .quad Lset5717 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc345: -Lset5718 = Ltmp2282-Lfunc_begin0 - .quad Lset5718 -Lset5719 = Ltmp2284-Lfunc_begin0 - .quad Lset5719 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc346: -Lset5720 = Ltmp2290-Lfunc_begin0 - .quad Lset5720 -Lset5721 = Ltmp2291-Lfunc_begin0 - .quad Lset5721 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5722 = Ltmp2291-Lfunc_begin0 - .quad Lset5722 -Lset5723 = Lfunc_end17-Lfunc_begin0 - .quad Lset5723 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc347: -Lset5724 = Ltmp2292-Lfunc_begin0 - .quad Lset5724 -Lset5725 = Ltmp2294-Lfunc_begin0 - .quad Lset5725 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc348: -Lset5726 = Ltmp2308-Lfunc_begin0 - .quad Lset5726 -Lset5727 = Ltmp2310-Lfunc_begin0 - .quad Lset5727 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc349: -Lset5728 = Ltmp2309-Lfunc_begin0 - .quad Lset5728 -Lset5729 = Ltmp2310-Lfunc_begin0 - .quad Lset5729 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc350: -Lset5730 = Ltmp2311-Lfunc_begin0 - .quad Lset5730 -Lset5731 = Ltmp2311-Lfunc_begin0 - .quad Lset5731 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc351: -Lset5732 = Ltmp2314-Lfunc_begin0 - .quad Lset5732 -Lset5733 = Ltmp2315-Lfunc_begin0 - .quad Lset5733 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc352: -Lset5734 = Ltmp2321-Lfunc_begin0 - .quad Lset5734 -Lset5735 = Ltmp2323-Lfunc_begin0 - .quad Lset5735 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5736 = Ltmp2325-Lfunc_begin0 - .quad Lset5736 -Lset5737 = Ltmp2326-Lfunc_begin0 - .quad Lset5737 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5738 = Ltmp2340-Lfunc_begin0 - .quad Lset5738 -Lset5739 = Ltmp2342-Lfunc_begin0 - .quad Lset5739 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5740 = Ltmp2344-Lfunc_begin0 - .quad Lset5740 -Lset5741 = Ltmp2345-Lfunc_begin0 - .quad Lset5741 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5742 = Ltmp2351-Lfunc_begin0 - .quad Lset5742 -Lset5743 = Ltmp2352-Lfunc_begin0 - .quad Lset5743 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5744 = Ltmp2369-Lfunc_begin0 - .quad Lset5744 -Lset5745 = Ltmp2377-Lfunc_begin0 - .quad Lset5745 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5746 = Ltmp2381-Lfunc_begin0 - .quad Lset5746 -Lset5747 = Ltmp2387-Lfunc_begin0 - .quad Lset5747 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc353: -Lset5748 = Ltmp2321-Lfunc_begin0 - .quad Lset5748 -Lset5749 = Ltmp2323-Lfunc_begin0 - .quad Lset5749 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5750 = Ltmp2325-Lfunc_begin0 - .quad Lset5750 -Lset5751 = Ltmp2326-Lfunc_begin0 - .quad Lset5751 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5752 = Ltmp2340-Lfunc_begin0 - .quad Lset5752 -Lset5753 = Ltmp2342-Lfunc_begin0 - .quad Lset5753 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5754 = Ltmp2344-Lfunc_begin0 - .quad Lset5754 -Lset5755 = Ltmp2345-Lfunc_begin0 - .quad Lset5755 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5756 = Ltmp2351-Lfunc_begin0 - .quad Lset5756 -Lset5757 = Ltmp2352-Lfunc_begin0 - .quad Lset5757 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5758 = Ltmp2369-Lfunc_begin0 - .quad Lset5758 -Lset5759 = Ltmp2378-Lfunc_begin0 - .quad Lset5759 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5760 = Ltmp2383-Lfunc_begin0 - .quad Lset5760 -Lset5761 = Ltmp2389-Lfunc_begin0 - .quad Lset5761 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc354: -Lset5762 = Ltmp2324-Lfunc_begin0 - .quad Lset5762 -Lset5763 = Ltmp2325-Lfunc_begin0 - .quad Lset5763 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5764 = Ltmp2328-Lfunc_begin0 - .quad Lset5764 -Lset5765 = Ltmp2329-Lfunc_begin0 - .quad Lset5765 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc355: -Lset5766 = Ltmp2343-Lfunc_begin0 - .quad Lset5766 -Lset5767 = Ltmp2344-Lfunc_begin0 - .quad Lset5767 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset5768 = Ltmp2347-Lfunc_begin0 - .quad Lset5768 -Lset5769 = Ltmp2348-Lfunc_begin0 - .quad Lset5769 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc356: -Lset5770 = Ltmp2355-Lfunc_begin0 - .quad Lset5770 -Lset5771 = Ltmp2356-Lfunc_begin0 - .quad Lset5771 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5772 = Ltmp2356-Lfunc_begin0 - .quad Lset5772 -Lset5773 = Lfunc_end17-Lfunc_begin0 - .quad Lset5773 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc357: -Lset5774 = Ltmp2357-Lfunc_begin0 - .quad Lset5774 -Lset5775 = Ltmp2359-Lfunc_begin0 - .quad Lset5775 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc358: -Lset5776 = Ltmp2364-Lfunc_begin0 - .quad Lset5776 -Lset5777 = Ltmp2365-Lfunc_begin0 - .quad Lset5777 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5778 = Ltmp2365-Lfunc_begin0 - .quad Lset5778 -Lset5779 = Lfunc_end17-Lfunc_begin0 - .quad Lset5779 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc359: -Lset5780 = Ltmp2366-Lfunc_begin0 - .quad Lset5780 -Lset5781 = Ltmp2368-Lfunc_begin0 - .quad Lset5781 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc360: -Lset5782 = Ltmp2381-Lfunc_begin0 - .quad Lset5782 -Lset5783 = Ltmp2384-Lfunc_begin0 - .quad Lset5783 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc361: -Lset5784 = Ltmp2383-Lfunc_begin0 - .quad Lset5784 -Lset5785 = Ltmp2384-Lfunc_begin0 - .quad Lset5785 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc362: -Lset5786 = Ltmp2385-Lfunc_begin0 - .quad Lset5786 -Lset5787 = Ltmp2385-Lfunc_begin0 - .quad Lset5787 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc363: -Lset5788 = Ltmp2388-Lfunc_begin0 - .quad Lset5788 -Lset5789 = Ltmp2389-Lfunc_begin0 - .quad Lset5789 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc364: -Lset5790 = Ltmp2389-Lfunc_begin0 - .quad Lset5790 -Lset5791 = Ltmp2396-Lfunc_begin0 - .quad Lset5791 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc365: -Lset5792 = Ltmp2390-Lfunc_begin0 - .quad Lset5792 -Lset5793 = Ltmp2391-Lfunc_begin0 - .quad Lset5793 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc366: -Lset5794 = Ltmp2403-Lfunc_begin0 - .quad Lset5794 -Lset5795 = Ltmp2405-Lfunc_begin0 - .quad Lset5795 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5796 = Ltmp2407-Lfunc_begin0 - .quad Lset5796 -Lset5797 = Ltmp2408-Lfunc_begin0 - .quad Lset5797 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5798 = Ltmp2422-Lfunc_begin0 - .quad Lset5798 -Lset5799 = Ltmp2424-Lfunc_begin0 - .quad Lset5799 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5800 = Ltmp2426-Lfunc_begin0 - .quad Lset5800 -Lset5801 = Ltmp2427-Lfunc_begin0 - .quad Lset5801 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5802 = Ltmp2433-Lfunc_begin0 - .quad Lset5802 -Lset5803 = Ltmp2434-Lfunc_begin0 - .quad Lset5803 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5804 = Ltmp2451-Lfunc_begin0 - .quad Lset5804 -Lset5805 = Ltmp2459-Lfunc_begin0 - .quad Lset5805 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5806 = Ltmp2463-Lfunc_begin0 - .quad Lset5806 -Lset5807 = Ltmp2469-Lfunc_begin0 - .quad Lset5807 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc367: -Lset5808 = Ltmp2403-Lfunc_begin0 - .quad Lset5808 -Lset5809 = Ltmp2405-Lfunc_begin0 - .quad Lset5809 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5810 = Ltmp2407-Lfunc_begin0 - .quad Lset5810 -Lset5811 = Ltmp2408-Lfunc_begin0 - .quad Lset5811 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5812 = Ltmp2422-Lfunc_begin0 - .quad Lset5812 -Lset5813 = Ltmp2424-Lfunc_begin0 - .quad Lset5813 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5814 = Ltmp2426-Lfunc_begin0 - .quad Lset5814 -Lset5815 = Ltmp2427-Lfunc_begin0 - .quad Lset5815 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5816 = Ltmp2433-Lfunc_begin0 - .quad Lset5816 -Lset5817 = Ltmp2434-Lfunc_begin0 - .quad Lset5817 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5818 = Ltmp2451-Lfunc_begin0 - .quad Lset5818 -Lset5819 = Ltmp2460-Lfunc_begin0 - .quad Lset5819 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5820 = Ltmp2465-Lfunc_begin0 - .quad Lset5820 -Lset5821 = Ltmp2471-Lfunc_begin0 - .quad Lset5821 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc368: -Lset5822 = Ltmp2406-Lfunc_begin0 - .quad Lset5822 -Lset5823 = Ltmp2407-Lfunc_begin0 - .quad Lset5823 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset5824 = Ltmp2410-Lfunc_begin0 - .quad Lset5824 -Lset5825 = Ltmp2411-Lfunc_begin0 - .quad Lset5825 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc369: -Lset5826 = Ltmp2425-Lfunc_begin0 - .quad Lset5826 -Lset5827 = Ltmp2426-Lfunc_begin0 - .quad Lset5827 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset5828 = Ltmp2429-Lfunc_begin0 - .quad Lset5828 -Lset5829 = Ltmp2430-Lfunc_begin0 - .quad Lset5829 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc370: -Lset5830 = Ltmp2437-Lfunc_begin0 - .quad Lset5830 -Lset5831 = Ltmp2438-Lfunc_begin0 - .quad Lset5831 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5832 = Ltmp2438-Lfunc_begin0 - .quad Lset5832 -Lset5833 = Lfunc_end17-Lfunc_begin0 - .quad Lset5833 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc371: -Lset5834 = Ltmp2439-Lfunc_begin0 - .quad Lset5834 -Lset5835 = Ltmp2441-Lfunc_begin0 - .quad Lset5835 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc372: -Lset5836 = Ltmp2446-Lfunc_begin0 - .quad Lset5836 -Lset5837 = Ltmp2447-Lfunc_begin0 - .quad Lset5837 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5838 = Ltmp2447-Lfunc_begin0 - .quad Lset5838 -Lset5839 = Lfunc_end17-Lfunc_begin0 - .quad Lset5839 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc373: -Lset5840 = Ltmp2448-Lfunc_begin0 - .quad Lset5840 -Lset5841 = Ltmp2450-Lfunc_begin0 - .quad Lset5841 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc374: -Lset5842 = Ltmp2463-Lfunc_begin0 - .quad Lset5842 -Lset5843 = Ltmp2466-Lfunc_begin0 - .quad Lset5843 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc375: -Lset5844 = Ltmp2465-Lfunc_begin0 - .quad Lset5844 -Lset5845 = Ltmp2466-Lfunc_begin0 - .quad Lset5845 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc376: -Lset5846 = Ltmp2467-Lfunc_begin0 - .quad Lset5846 -Lset5847 = Ltmp2467-Lfunc_begin0 - .quad Lset5847 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc377: -Lset5848 = Ltmp2470-Lfunc_begin0 - .quad Lset5848 -Lset5849 = Ltmp2471-Lfunc_begin0 - .quad Lset5849 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc378: -Lset5850 = Ltmp2477-Lfunc_begin0 - .quad Lset5850 -Lset5851 = Ltmp2478-Lfunc_begin0 - .quad Lset5851 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc379: -Lset5852 = Ltmp2496-Lfunc_begin0 - .quad Lset5852 -Lset5853 = Ltmp2497-Lfunc_begin0 - .quad Lset5853 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5854 = Ltmp2505-Lfunc_begin0 - .quad Lset5854 -Lset5855 = Ltmp2511-Lfunc_begin0 - .quad Lset5855 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5856 = Ltmp2516-Lfunc_begin0 - .quad Lset5856 -Lset5857 = Ltmp2517-Lfunc_begin0 - .quad Lset5857 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5858 = Ltmp2519-Lfunc_begin0 - .quad Lset5858 -Lset5859 = Ltmp2521-Lfunc_begin0 - .quad Lset5859 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5860 = Ltmp2522-Lfunc_begin0 - .quad Lset5860 -Lset5861 = Ltmp2525-Lfunc_begin0 - .quad Lset5861 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5862 = Ltmp2536-Lfunc_begin0 - .quad Lset5862 -Lset5863 = Ltmp2543-Lfunc_begin0 - .quad Lset5863 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5864 = Ltmp2547-Lfunc_begin0 - .quad Lset5864 -Lset5865 = Ltmp2551-Lfunc_begin0 - .quad Lset5865 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5866 = Ltmp2562-Lfunc_begin0 - .quad Lset5866 -Lset5867 = Ltmp2568-Lfunc_begin0 - .quad Lset5867 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc380: -Lset5868 = Ltmp2496-Lfunc_begin0 - .quad Lset5868 -Lset5869 = Ltmp2498-Lfunc_begin0 - .quad Lset5869 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5870 = Ltmp2505-Lfunc_begin0 - .quad Lset5870 -Lset5871 = Ltmp2511-Lfunc_begin0 - .quad Lset5871 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5872 = Ltmp2516-Lfunc_begin0 - .quad Lset5872 -Lset5873 = Ltmp2517-Lfunc_begin0 - .quad Lset5873 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5874 = Ltmp2519-Lfunc_begin0 - .quad Lset5874 -Lset5875 = Ltmp2521-Lfunc_begin0 - .quad Lset5875 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5876 = Ltmp2537-Lfunc_begin0 - .quad Lset5876 -Lset5877 = Ltmp2539-Lfunc_begin0 - .quad Lset5877 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5878 = Ltmp2549-Lfunc_begin0 - .quad Lset5878 -Lset5879 = Ltmp2551-Lfunc_begin0 - .quad Lset5879 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc381: -Lset5880 = Ltmp2496-Lfunc_begin0 - .quad Lset5880 -Lset5881 = Ltmp2498-Lfunc_begin0 - .quad Lset5881 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5882 = Ltmp2505-Lfunc_begin0 - .quad Lset5882 -Lset5883 = Ltmp2511-Lfunc_begin0 - .quad Lset5883 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5884 = Ltmp2516-Lfunc_begin0 - .quad Lset5884 -Lset5885 = Ltmp2517-Lfunc_begin0 - .quad Lset5885 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5886 = Ltmp2519-Lfunc_begin0 - .quad Lset5886 -Lset5887 = Ltmp2521-Lfunc_begin0 - .quad Lset5887 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5888 = Ltmp2522-Lfunc_begin0 - .quad Lset5888 -Lset5889 = Ltmp2532-Lfunc_begin0 - .quad Lset5889 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5890 = Ltmp2537-Lfunc_begin0 - .quad Lset5890 -Lset5891 = Ltmp2543-Lfunc_begin0 - .quad Lset5891 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5892 = Ltmp2547-Lfunc_begin0 - .quad Lset5892 -Lset5893 = Ltmp2554-Lfunc_begin0 - .quad Lset5893 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc382: -Lset5894 = Ltmp2503-Lfunc_begin0 - .quad Lset5894 -Lset5895 = Ltmp2504-Lfunc_begin0 - .quad Lset5895 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc383: -Lset5896 = Ltmp2508-Lfunc_begin0 - .quad Lset5896 -Lset5897 = Ltmp2509-Lfunc_begin0 - .quad Lset5897 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc384: -Lset5898 = Ltmp2536-Lfunc_begin0 - .quad Lset5898 -Lset5899 = Ltmp2539-Lfunc_begin0 - .quad Lset5899 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5900 = Ltmp2548-Lfunc_begin0 - .quad Lset5900 -Lset5901 = Ltmp2549-Lfunc_begin0 - .quad Lset5901 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc385: -Lset5902 = Ltmp2541-Lfunc_begin0 - .quad Lset5902 -Lset5903 = Ltmp2545-Lfunc_begin0 - .quad Lset5903 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5904 = Ltmp2562-Lfunc_begin0 - .quad Lset5904 -Lset5905 = Ltmp2566-Lfunc_begin0 - .quad Lset5905 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc386: -Lset5906 = Ltmp2541-Lfunc_begin0 - .quad Lset5906 -Lset5907 = Ltmp2545-Lfunc_begin0 - .quad Lset5907 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset5908 = Ltmp2562-Lfunc_begin0 - .quad Lset5908 -Lset5909 = Ltmp2566-Lfunc_begin0 - .quad Lset5909 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc387: -Lset5910 = Ltmp2555-Lfunc_begin0 - .quad Lset5910 -Lset5911 = Ltmp2556-Lfunc_begin0 - .quad Lset5911 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset5912 = Ltmp2556-Lfunc_begin0 - .quad Lset5912 -Lset5913 = Ltmp2558-Lfunc_begin0 - .quad Lset5913 - .short 1 ## Loc expr size - .byte 100 ## DW_OP_reg20 - .quad 0 - .quad 0 -Ldebug_loc388: -Lset5914 = Ltmp2563-Lfunc_begin0 - .quad Lset5914 -Lset5915 = Ltmp2565-Lfunc_begin0 - .quad Lset5915 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc389: -Lset5916 = Ltmp2563-Lfunc_begin0 - .quad Lset5916 -Lset5917 = Ltmp2565-Lfunc_begin0 - .quad Lset5917 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc390: -Lset5918 = Ltmp2583-Lfunc_begin0 - .quad Lset5918 -Lset5919 = Ltmp2584-Lfunc_begin0 - .quad Lset5919 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5920 = Ltmp2592-Lfunc_begin0 - .quad Lset5920 -Lset5921 = Ltmp2598-Lfunc_begin0 - .quad Lset5921 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5922 = Ltmp2603-Lfunc_begin0 - .quad Lset5922 -Lset5923 = Ltmp2604-Lfunc_begin0 - .quad Lset5923 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5924 = Ltmp2606-Lfunc_begin0 - .quad Lset5924 -Lset5925 = Ltmp2608-Lfunc_begin0 - .quad Lset5925 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5926 = Ltmp2609-Lfunc_begin0 - .quad Lset5926 -Lset5927 = Ltmp2612-Lfunc_begin0 - .quad Lset5927 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5928 = Ltmp2624-Lfunc_begin0 - .quad Lset5928 -Lset5929 = Ltmp2633-Lfunc_begin0 - .quad Lset5929 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5930 = Ltmp2639-Lfunc_begin0 - .quad Lset5930 -Lset5931 = Ltmp2643-Lfunc_begin0 - .quad Lset5931 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc391: -Lset5932 = Ltmp2583-Lfunc_begin0 - .quad Lset5932 -Lset5933 = Ltmp2585-Lfunc_begin0 - .quad Lset5933 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5934 = Ltmp2592-Lfunc_begin0 - .quad Lset5934 -Lset5935 = Ltmp2598-Lfunc_begin0 - .quad Lset5935 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5936 = Ltmp2603-Lfunc_begin0 - .quad Lset5936 -Lset5937 = Ltmp2604-Lfunc_begin0 - .quad Lset5937 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5938 = Ltmp2606-Lfunc_begin0 - .quad Lset5938 -Lset5939 = Ltmp2608-Lfunc_begin0 - .quad Lset5939 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5940 = Ltmp2625-Lfunc_begin0 - .quad Lset5940 -Lset5941 = Ltmp2627-Lfunc_begin0 - .quad Lset5941 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5942 = Ltmp2641-Lfunc_begin0 - .quad Lset5942 -Lset5943 = Ltmp2643-Lfunc_begin0 - .quad Lset5943 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc392: -Lset5944 = Ltmp2583-Lfunc_begin0 - .quad Lset5944 -Lset5945 = Ltmp2585-Lfunc_begin0 - .quad Lset5945 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5946 = Ltmp2592-Lfunc_begin0 - .quad Lset5946 -Lset5947 = Ltmp2598-Lfunc_begin0 - .quad Lset5947 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5948 = Ltmp2603-Lfunc_begin0 - .quad Lset5948 -Lset5949 = Ltmp2604-Lfunc_begin0 - .quad Lset5949 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5950 = Ltmp2606-Lfunc_begin0 - .quad Lset5950 -Lset5951 = Ltmp2608-Lfunc_begin0 - .quad Lset5951 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5952 = Ltmp2609-Lfunc_begin0 - .quad Lset5952 -Lset5953 = Ltmp2620-Lfunc_begin0 - .quad Lset5953 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5954 = Ltmp2625-Lfunc_begin0 - .quad Lset5954 -Lset5955 = Ltmp2633-Lfunc_begin0 - .quad Lset5955 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset5956 = Ltmp2639-Lfunc_begin0 - .quad Lset5956 -Lset5957 = Ltmp2646-Lfunc_begin0 - .quad Lset5957 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc393: -Lset5958 = Ltmp2590-Lfunc_begin0 - .quad Lset5958 -Lset5959 = Ltmp2591-Lfunc_begin0 - .quad Lset5959 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc394: -Lset5960 = Ltmp2595-Lfunc_begin0 - .quad Lset5960 -Lset5961 = Ltmp2596-Lfunc_begin0 - .quad Lset5961 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc395: -Lset5962 = Ltmp2624-Lfunc_begin0 - .quad Lset5962 -Lset5963 = Ltmp2627-Lfunc_begin0 - .quad Lset5963 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5964 = Ltmp2640-Lfunc_begin0 - .quad Lset5964 -Lset5965 = Ltmp2641-Lfunc_begin0 - .quad Lset5965 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc396: -Lset5966 = Ltmp2630-Lfunc_begin0 - .quad Lset5966 -Lset5967 = Ltmp2636-Lfunc_begin0 - .quad Lset5967 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset5968 = Ltmp2649-Lfunc_begin0 - .quad Lset5968 -Lset5969 = Ltmp2654-Lfunc_begin0 - .quad Lset5969 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc397: -Lset5970 = Ltmp2630-Lfunc_begin0 - .quad Lset5970 -Lset5971 = Ltmp2636-Lfunc_begin0 - .quad Lset5971 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset5972 = Ltmp2649-Lfunc_begin0 - .quad Lset5972 -Lset5973 = Ltmp2654-Lfunc_begin0 - .quad Lset5973 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc398: -Lset5974 = Ltmp2631-Lfunc_begin0 - .quad Lset5974 -Lset5975 = Ltmp2635-Lfunc_begin0 - .quad Lset5975 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset5976 = Ltmp2649-Lfunc_begin0 - .quad Lset5976 -Lset5977 = Ltmp2654-Lfunc_begin0 - .quad Lset5977 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc399: -Lset5978 = Ltmp2631-Lfunc_begin0 - .quad Lset5978 -Lset5979 = Ltmp2635-Lfunc_begin0 - .quad Lset5979 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset5980 = Ltmp2649-Lfunc_begin0 - .quad Lset5980 -Lset5981 = Ltmp2654-Lfunc_begin0 - .quad Lset5981 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc400: -Lset5982 = Ltmp2660-Lfunc_begin0 - .quad Lset5982 -Lset5983 = Ltmp2663-Lfunc_begin0 - .quad Lset5983 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5984 = Ltmp2676-Lfunc_begin0 - .quad Lset5984 -Lset5985 = Ltmp2681-Lfunc_begin0 - .quad Lset5985 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5986 = Ltmp2687-Lfunc_begin0 - .quad Lset5986 -Lset5987 = Ltmp2688-Lfunc_begin0 - .quad Lset5987 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5988 = Ltmp2689-Lfunc_begin0 - .quad Lset5988 -Lset5989 = Ltmp2693-Lfunc_begin0 - .quad Lset5989 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5990 = Ltmp2707-Lfunc_begin0 - .quad Lset5990 -Lset5991 = Ltmp2708-Lfunc_begin0 - .quad Lset5991 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5992 = Ltmp2711-Lfunc_begin0 - .quad Lset5992 -Lset5993 = Ltmp2714-Lfunc_begin0 - .quad Lset5993 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc401: -Lset5994 = Ltmp2660-Lfunc_begin0 - .quad Lset5994 -Lset5995 = Ltmp2663-Lfunc_begin0 - .quad Lset5995 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5996 = Ltmp2671-Lfunc_begin0 - .quad Lset5996 -Lset5997 = Ltmp2672-Lfunc_begin0 - .quad Lset5997 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset5998 = Ltmp2676-Lfunc_begin0 - .quad Lset5998 -Lset5999 = Ltmp2688-Lfunc_begin0 - .quad Lset5999 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6000 = Ltmp2689-Lfunc_begin0 - .quad Lset6000 -Lset6001 = Ltmp2694-Lfunc_begin0 - .quad Lset6001 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6002 = Ltmp2695-Lfunc_begin0 - .quad Lset6002 -Lset6003 = Ltmp2697-Lfunc_begin0 - .quad Lset6003 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6004 = Ltmp2699-Lfunc_begin0 - .quad Lset6004 -Lset6005 = Ltmp2702-Lfunc_begin0 - .quad Lset6005 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6006 = Ltmp2707-Lfunc_begin0 - .quad Lset6006 -Lset6007 = Ltmp2708-Lfunc_begin0 - .quad Lset6007 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6008 = Ltmp2711-Lfunc_begin0 - .quad Lset6008 -Lset6009 = Ltmp2717-Lfunc_begin0 - .quad Lset6009 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc402: -Lset6010 = Ltmp2660-Lfunc_begin0 - .quad Lset6010 -Lset6011 = Ltmp2663-Lfunc_begin0 - .quad Lset6011 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6012 = Ltmp2671-Lfunc_begin0 - .quad Lset6012 -Lset6013 = Ltmp2673-Lfunc_begin0 - .quad Lset6013 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6014 = Ltmp2676-Lfunc_begin0 - .quad Lset6014 -Lset6015 = Ltmp2688-Lfunc_begin0 - .quad Lset6015 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6016 = Ltmp2689-Lfunc_begin0 - .quad Lset6016 -Lset6017 = Ltmp2694-Lfunc_begin0 - .quad Lset6017 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6018 = Ltmp2695-Lfunc_begin0 - .quad Lset6018 -Lset6019 = Ltmp2697-Lfunc_begin0 - .quad Lset6019 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6020 = Ltmp2699-Lfunc_begin0 - .quad Lset6020 -Lset6021 = Ltmp2708-Lfunc_begin0 - .quad Lset6021 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6022 = Ltmp2712-Lfunc_begin0 - .quad Lset6022 -Lset6023 = Ltmp2721-Lfunc_begin0 - .quad Lset6023 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc403: -Lset6024 = Ltmp2671-Lfunc_begin0 - .quad Lset6024 -Lset6025 = Ltmp2673-Lfunc_begin0 - .quad Lset6025 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6026 = Ltmp2681-Lfunc_begin0 - .quad Lset6026 -Lset6027 = Ltmp2687-Lfunc_begin0 - .quad Lset6027 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6028 = Ltmp2693-Lfunc_begin0 - .quad Lset6028 -Lset6029 = Ltmp2694-Lfunc_begin0 - .quad Lset6029 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6030 = Ltmp2695-Lfunc_begin0 - .quad Lset6030 -Lset6031 = Ltmp2697-Lfunc_begin0 - .quad Lset6031 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6032 = Ltmp2712-Lfunc_begin0 - .quad Lset6032 -Lset6033 = Ltmp2714-Lfunc_begin0 - .quad Lset6033 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6034 = Ltmp2715-Lfunc_begin0 - .quad Lset6034 -Lset6035 = Ltmp2717-Lfunc_begin0 - .quad Lset6035 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc404: -Lset6036 = Ltmp2678-Lfunc_begin0 - .quad Lset6036 -Lset6037 = Ltmp2679-Lfunc_begin0 - .quad Lset6037 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc405: -Lset6038 = Ltmp2684-Lfunc_begin0 - .quad Lset6038 -Lset6039 = Ltmp2685-Lfunc_begin0 - .quad Lset6039 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc406: -Lset6040 = Ltmp2741-Lfunc_begin0 - .quad Lset6040 -Lset6041 = Ltmp2742-Lfunc_begin0 - .quad Lset6041 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc407: -Lset6042 = Ltmp2765-Lfunc_begin0 - .quad Lset6042 -Lset6043 = Ltmp2770-Lfunc_begin0 - .quad Lset6043 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc408: -Lset6044 = Ltmp2765-Lfunc_begin0 - .quad Lset6044 -Lset6045 = Ltmp2767-Lfunc_begin0 - .quad Lset6045 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc409: -Lset6046 = Ltmp2778-Lfunc_begin0 - .quad Lset6046 -Lset6047 = Ltmp2782-Lfunc_begin0 - .quad Lset6047 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset6048 = Ltmp2821-Lfunc_begin0 - .quad Lset6048 -Lset6049 = Ltmp2825-Lfunc_begin0 - .quad Lset6049 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc410: -Lset6050 = Ltmp2784-Lfunc_begin0 - .quad Lset6050 -Lset6051 = Ltmp2789-Lfunc_begin0 - .quad Lset6051 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset6052 = Ltmp2789-Lfunc_begin0 - .quad Lset6052 -Lset6053 = Ltmp2790-Lfunc_begin0 - .quad Lset6053 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc411: -Lset6054 = Ltmp2803-Lfunc_begin0 - .quad Lset6054 -Lset6055 = Ltmp2804-Lfunc_begin0 - .quad Lset6055 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6056 = Ltmp2804-Lfunc_begin0 - .quad Lset6056 -Lset6057 = Lfunc_end17-Lfunc_begin0 - .quad Lset6057 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc412: -Lset6058 = Ltmp2805-Lfunc_begin0 - .quad Lset6058 -Lset6059 = Ltmp2807-Lfunc_begin0 - .quad Lset6059 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc413: -Lset6060 = Ltmp2821-Lfunc_begin0 - .quad Lset6060 -Lset6061 = Ltmp2822-Lfunc_begin0 - .quad Lset6061 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc414: -Lset6062 = Ltmp2823-Lfunc_begin0 - .quad Lset6062 -Lset6063 = Ltmp2825-Lfunc_begin0 - .quad Lset6063 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc415: -Lset6064 = Ltmp2845-Lfunc_begin0 - .quad Lset6064 -Lset6065 = Ltmp2848-Lfunc_begin0 - .quad Lset6065 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc416: -Lset6066 = Ltmp2881-Lfunc_begin0 - .quad Lset6066 -Lset6067 = Ltmp2902-Lfunc_begin0 - .quad Lset6067 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc417: -Lset6068 = Ltmp2882-Lfunc_begin0 - .quad Lset6068 -Lset6069 = Ltmp2883-Lfunc_begin0 - .quad Lset6069 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6070 = Ltmp2883-Lfunc_begin0 - .quad Lset6070 -Lset6071 = Ltmp2884-Lfunc_begin0 - .quad Lset6071 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc418: -Lset6072 = Ltmp2894-Lfunc_begin0 - .quad Lset6072 -Lset6073 = Ltmp2896-Lfunc_begin0 - .quad Lset6073 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc419: -Lset6074 = Ltmp2895-Lfunc_begin0 - .quad Lset6074 -Lset6075 = Ltmp2902-Lfunc_begin0 - .quad Lset6075 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc420: -Lset6076 = Ltmp2945-Lfunc_begin0 - .quad Lset6076 -Lset6077 = Ltmp2949-Lfunc_begin0 - .quad Lset6077 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc421: -Lset6078 = Ltmp2946-Lfunc_begin0 - .quad Lset6078 -Lset6079 = Ltmp2949-Lfunc_begin0 - .quad Lset6079 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc422: -Lset6080 = Ltmp2980-Lfunc_begin0 - .quad Lset6080 -Lset6081 = Ltmp2991-Lfunc_begin0 - .quad Lset6081 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc423: -Lset6082 = Ltmp2982-Lfunc_begin0 - .quad Lset6082 -Lset6083 = Ltmp2991-Lfunc_begin0 - .quad Lset6083 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc424: -Lset6084 = Ltmp2989-Lfunc_begin0 - .quad Lset6084 -Lset6085 = Ltmp2991-Lfunc_begin0 - .quad Lset6085 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc425: -Lset6086 = Ltmp3022-Lfunc_begin0 - .quad Lset6086 -Lset6087 = Ltmp3033-Lfunc_begin0 - .quad Lset6087 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc426: -Lset6088 = Ltmp3024-Lfunc_begin0 - .quad Lset6088 -Lset6089 = Ltmp3033-Lfunc_begin0 - .quad Lset6089 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc427: -Lset6090 = Ltmp3031-Lfunc_begin0 - .quad Lset6090 -Lset6091 = Ltmp3033-Lfunc_begin0 - .quad Lset6091 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc428: -Lset6092 = Ltmp3098-Lfunc_begin0 - .quad Lset6092 -Lset6093 = Ltmp3106-Lfunc_begin0 - .quad Lset6093 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6094 = Ltmp3108-Lfunc_begin0 - .quad Lset6094 -Lset6095 = Ltmp3109-Lfunc_begin0 - .quad Lset6095 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc429: -Lset6096 = Ltmp3136-Lfunc_begin0 - .quad Lset6096 -Lset6097 = Ltmp3139-Lfunc_begin0 - .quad Lset6097 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc430: -Lset6098 = Ltmp3137-Lfunc_begin0 - .quad Lset6098 -Lset6099 = Ltmp3146-Lfunc_begin0 - .quad Lset6099 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc431: -Lset6100 = Ltmp3140-Lfunc_begin0 - .quad Lset6100 -Lset6101 = Ltmp3143-Lfunc_begin0 - .quad Lset6101 - .short 2 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 -Lset6102 = Ltmp3143-Lfunc_begin0 - .quad Lset6102 -Lset6103 = Ltmp3149-Lfunc_begin0 - .quad Lset6103 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc432: -Lset6104 = Ltmp3170-Lfunc_begin0 - .quad Lset6104 -Lset6105 = Ltmp3172-Lfunc_begin0 - .quad Lset6105 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc433: -Lset6106 = Ltmp3189-Lfunc_begin0 - .quad Lset6106 -Lset6107 = Ltmp3206-Lfunc_begin0 - .quad Lset6107 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc434: -Lset6108 = Ltmp3191-Lfunc_begin0 - .quad Lset6108 -Lset6109 = Ltmp3203-Lfunc_begin0 - .quad Lset6109 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc435: -Lset6110 = Ltmp3192-Lfunc_begin0 - .quad Lset6110 -Lset6111 = Ltmp3203-Lfunc_begin0 - .quad Lset6111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6112 = Ltmp3203-Lfunc_begin0 - .quad Lset6112 -Lset6113 = Ltmp3208-Lfunc_begin0 - .quad Lset6113 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc436: -Lset6114 = Ltmp3193-Lfunc_begin0 - .quad Lset6114 -Lset6115 = Ltmp3197-Lfunc_begin0 - .quad Lset6115 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6116 = Ltmp3197-Lfunc_begin0 - .quad Lset6116 -Lset6117 = Ltmp3198-Lfunc_begin0 - .quad Lset6117 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -Lset6118 = Ltmp3198-Lfunc_begin0 - .quad Lset6118 -Lset6119 = Ltmp3207-Lfunc_begin0 - .quad Lset6119 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc437: -Lset6120 = Ltmp3194-Lfunc_begin0 - .quad Lset6120 -Lset6121 = Ltmp3202-Lfunc_begin0 - .quad Lset6121 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc438: -Lset6122 = Ltmp3210-Lfunc_begin0 - .quad Lset6122 -Lset6123 = Ltmp3217-Lfunc_begin0 - .quad Lset6123 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6124 = Ltmp3221-Lfunc_begin0 - .quad Lset6124 -Lset6125 = Ltmp3225-Lfunc_begin0 - .quad Lset6125 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc439: -Lset6126 = Ltmp3219-Lfunc_begin0 - .quad Lset6126 -Lset6127 = Ltmp3222-Lfunc_begin0 - .quad Lset6127 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc440: -Lset6128 = Ltmp3233-Lfunc_begin0 - .quad Lset6128 -Lset6129 = Ltmp3234-Lfunc_begin0 - .quad Lset6129 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -Lset6130 = Ltmp3245-Lfunc_begin0 - .quad Lset6130 -Lset6131 = Ltmp3250-Lfunc_begin0 - .quad Lset6131 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc441: -Lset6132 = Ltmp3233-Lfunc_begin0 - .quad Lset6132 -Lset6133 = Ltmp3237-Lfunc_begin0 - .quad Lset6133 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6134 = Ltmp3247-Lfunc_begin0 - .quad Lset6134 -Lset6135 = Ltmp3250-Lfunc_begin0 - .quad Lset6135 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc442: -Lset6136 = Ltmp3240-Lfunc_begin0 - .quad Lset6136 -Lset6137 = Ltmp3244-Lfunc_begin0 - .quad Lset6137 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6138 = Ltmp3250-Lfunc_begin0 - .quad Lset6138 -Lset6139 = Ltmp3251-Lfunc_begin0 - .quad Lset6139 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc443: -Lset6140 = Ltmp3241-Lfunc_begin0 - .quad Lset6140 -Lset6141 = Ltmp3243-Lfunc_begin0 - .quad Lset6141 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc444: -Lset6142 = Ltmp3242-Lfunc_begin0 - .quad Lset6142 -Lset6143 = Ltmp3244-Lfunc_begin0 - .quad Lset6143 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6144 = Ltmp3250-Lfunc_begin0 - .quad Lset6144 -Lset6145 = Ltmp3254-Lfunc_begin0 - .quad Lset6145 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc445: -Lset6146 = Ltmp3246-Lfunc_begin0 - .quad Lset6146 -Lset6147 = Ltmp3249-Lfunc_begin0 - .quad Lset6147 - .short 1 ## Loc expr size - .byte 99 ## DW_OP_reg19 - .quad 0 - .quad 0 -Ldebug_loc446: -Lset6148 = Ltmp3265-Lfunc_begin0 - .quad Lset6148 -Lset6149 = Ltmp3267-Lfunc_begin0 - .quad Lset6149 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6150 = Ltmp3271-Lfunc_begin0 - .quad Lset6150 -Lset6151 = Ltmp3276-Lfunc_begin0 - .quad Lset6151 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6152 = Ltmp3317-Lfunc_begin0 - .quad Lset6152 -Lset6153 = Ltmp3318-Lfunc_begin0 - .quad Lset6153 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6154 = Ltmp3332-Lfunc_begin0 - .quad Lset6154 -Lset6155 = Ltmp3335-Lfunc_begin0 - .quad Lset6155 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc447: -Lset6156 = Ltmp3265-Lfunc_begin0 - .quad Lset6156 -Lset6157 = Ltmp3267-Lfunc_begin0 - .quad Lset6157 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6158 = Ltmp3271-Lfunc_begin0 - .quad Lset6158 -Lset6159 = Ltmp3276-Lfunc_begin0 - .quad Lset6159 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6160 = Ltmp3317-Lfunc_begin0 - .quad Lset6160 -Lset6161 = Ltmp3326-Lfunc_begin0 - .quad Lset6161 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6162 = Ltmp3332-Lfunc_begin0 - .quad Lset6162 -Lset6163 = Ltmp3336-Lfunc_begin0 - .quad Lset6163 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc448: -Lset6164 = Ltmp3274-Lfunc_begin0 - .quad Lset6164 -Lset6165 = Ltmp3275-Lfunc_begin0 - .quad Lset6165 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc449: -Lset6166 = Ltmp3280-Lfunc_begin0 - .quad Lset6166 -Lset6167 = Ltmp3281-Lfunc_begin0 - .quad Lset6167 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc450: -Lset6168 = Ltmp3286-Lfunc_begin0 - .quad Lset6168 -Lset6169 = Ltmp3287-Lfunc_begin0 - .quad Lset6169 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc451: -Lset6170 = Ltmp3317-Lfunc_begin0 - .quad Lset6170 -Lset6171 = Ltmp3318-Lfunc_begin0 - .quad Lset6171 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc452: -Lset6172 = Ltmp3317-Lfunc_begin0 - .quad Lset6172 -Lset6173 = Ltmp3318-Lfunc_begin0 - .quad Lset6173 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc453: -Lset6174 = Ltmp3320-Lfunc_begin0 - .quad Lset6174 -Lset6175 = Ltmp3326-Lfunc_begin0 - .quad Lset6175 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc454: -Lset6176 = Ltmp3321-Lfunc_begin0 - .quad Lset6176 -Lset6177 = Ltmp3326-Lfunc_begin0 - .quad Lset6177 - .short 2 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc455: -Lset6178 = Ltmp3329-Lfunc_begin0 - .quad Lset6178 -Lset6179 = Ltmp3331-Lfunc_begin0 - .quad Lset6179 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc456: -Lset6180 = Ltmp3355-Lfunc_begin0 - .quad Lset6180 -Lset6181 = Ltmp3360-Lfunc_begin0 - .quad Lset6181 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc457: -Lset6182 = Ltmp3355-Lfunc_begin0 - .quad Lset6182 -Lset6183 = Ltmp3360-Lfunc_begin0 - .quad Lset6183 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc458: -Lset6184 = Ltmp3382-Lfunc_begin0 - .quad Lset6184 -Lset6185 = Ltmp3386-Lfunc_begin0 - .quad Lset6185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc459: -Lset6186 = Ltmp3400-Lfunc_begin0 - .quad Lset6186 -Lset6187 = Ltmp3402-Lfunc_begin0 - .quad Lset6187 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6188 = Ltmp3403-Lfunc_begin0 - .quad Lset6188 -Lset6189 = Ltmp3403-Lfunc_begin0 - .quad Lset6189 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc460: -Lset6190 = Ltmp3401-Lfunc_begin0 - .quad Lset6190 -Lset6191 = Ltmp3404-Lfunc_begin0 - .quad Lset6191 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6192 = Ltmp3409-Lfunc_begin0 - .quad Lset6192 -Lset6193 = Ltmp3409-Lfunc_begin0 - .quad Lset6193 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc461: -Lset6194 = Ltmp3410-Lfunc_begin0 - .quad Lset6194 -Lset6195 = Ltmp3427-Lfunc_begin0 - .quad Lset6195 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc462: -Lset6196 = Ltmp3411-Lfunc_begin0 - .quad Lset6196 -Lset6197 = Ltmp3417-Lfunc_begin0 - .quad Lset6197 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6198 = Ltmp3423-Lfunc_begin0 - .quad Lset6198 -Lset6199 = Ltmp3427-Lfunc_begin0 - .quad Lset6199 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc463: -Lset6200 = Ltmp3426-Lfunc_begin0 - .quad Lset6200 -Lset6201 = Ltmp3427-Lfunc_begin0 - .quad Lset6201 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6202 = Ltmp3428-Lfunc_begin0 - .quad Lset6202 -Lset6203 = Ltmp3429-Lfunc_begin0 - .quad Lset6203 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc464: -Lset6204 = Ltmp3428-Lfunc_begin0 - .quad Lset6204 -Lset6205 = Ltmp3429-Lfunc_begin0 - .quad Lset6205 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc465: -Lset6206 = Ltmp3428-Lfunc_begin0 - .quad Lset6206 -Lset6207 = Ltmp3429-Lfunc_begin0 - .quad Lset6207 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc466: -Lset6208 = Ltmp3428-Lfunc_begin0 - .quad Lset6208 -Lset6209 = Ltmp3429-Lfunc_begin0 - .quad Lset6209 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc467: -Lset6210 = Ltmp3428-Lfunc_begin0 - .quad Lset6210 -Lset6211 = Ltmp3429-Lfunc_begin0 - .quad Lset6211 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc468: -Lset6212 = Ltmp3428-Lfunc_begin0 - .quad Lset6212 -Lset6213 = Ltmp3429-Lfunc_begin0 - .quad Lset6213 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc469: -Lset6214 = Ltmp3428-Lfunc_begin0 - .quad Lset6214 -Lset6215 = Ltmp3429-Lfunc_begin0 - .quad Lset6215 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc470: -Lset6216 = Ltmp3430-Lfunc_begin0 - .quad Lset6216 -Lset6217 = Ltmp3431-Lfunc_begin0 - .quad Lset6217 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6218 = Ltmp3444-Lfunc_begin0 - .quad Lset6218 -Lset6219 = Ltmp3446-Lfunc_begin0 - .quad Lset6219 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6220 = Ltmp3450-Lfunc_begin0 - .quad Lset6220 -Lset6221 = Ltmp3453-Lfunc_begin0 - .quad Lset6221 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6222 = Ltmp3468-Lfunc_begin0 - .quad Lset6222 -Lset6223 = Ltmp3469-Lfunc_begin0 - .quad Lset6223 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc471: -Lset6224 = Ltmp3430-Lfunc_begin0 - .quad Lset6224 -Lset6225 = Ltmp3431-Lfunc_begin0 - .quad Lset6225 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc472: -Lset6226 = Ltmp3430-Lfunc_begin0 - .quad Lset6226 -Lset6227 = Ltmp3431-Lfunc_begin0 - .quad Lset6227 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc473: -Lset6228 = Ltmp3430-Lfunc_begin0 - .quad Lset6228 -Lset6229 = Ltmp3431-Lfunc_begin0 - .quad Lset6229 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6230 = Ltmp3444-Lfunc_begin0 - .quad Lset6230 -Lset6231 = Ltmp3446-Lfunc_begin0 - .quad Lset6231 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc474: -Lset6232 = Ltmp3438-Lfunc_begin0 - .quad Lset6232 -Lset6233 = Ltmp3443-Lfunc_begin0 - .quad Lset6233 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset6234 = Ltmp3443-Lfunc_begin0 - .quad Lset6234 -Lset6235 = Ltmp3444-Lfunc_begin0 - .quad Lset6235 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc475: -Lset6236 = Ltmp3449-Lfunc_begin0 - .quad Lset6236 -Lset6237 = Ltmp3450-Lfunc_begin0 - .quad Lset6237 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc476: -Lset6238 = Ltmp3452-Lfunc_begin0 - .quad Lset6238 -Lset6239 = Ltmp3453-Lfunc_begin0 - .quad Lset6239 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc477: -Lset6240 = Ltmp3454-Lfunc_begin0 - .quad Lset6240 -Lset6241 = Ltmp3455-Lfunc_begin0 - .quad Lset6241 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc478: -Lset6242 = Ltmp3458-Lfunc_begin0 - .quad Lset6242 -Lset6243 = Ltmp3459-Lfunc_begin0 - .quad Lset6243 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6244 = Ltmp3459-Lfunc_begin0 - .quad Lset6244 -Lset6245 = Lfunc_end17-Lfunc_begin0 - .quad Lset6245 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc479: -Lset6246 = Ltmp3460-Lfunc_begin0 - .quad Lset6246 -Lset6247 = Ltmp3462-Lfunc_begin0 - .quad Lset6247 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc480: -Lset6248 = Ltmp3465-Lfunc_begin0 - .quad Lset6248 -Lset6249 = Ltmp3466-Lfunc_begin0 - .quad Lset6249 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc481: -Lset6250 = Ltmp3473-Lfunc_begin0 - .quad Lset6250 -Lset6251 = Ltmp3474-Lfunc_begin0 - .quad Lset6251 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc482: -Lset6252 = Ltmp3496-Lfunc_begin0 - .quad Lset6252 -Lset6253 = Ltmp3503-Lfunc_begin0 - .quad Lset6253 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6254 = Ltmp3503-Lfunc_begin0 - .quad Lset6254 -Lset6255 = Lfunc_end17-Lfunc_begin0 - .quad Lset6255 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc483: -Lset6256 = Ltmp3496-Lfunc_begin0 - .quad Lset6256 -Lset6257 = Ltmp3503-Lfunc_begin0 - .quad Lset6257 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6258 = Ltmp3503-Lfunc_begin0 - .quad Lset6258 -Lset6259 = Ltmp3518-Lfunc_begin0 - .quad Lset6259 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset6260 = Ltmp3518-Lfunc_begin0 - .quad Lset6260 -Lset6261 = Ltmp3521-Lfunc_begin0 - .quad Lset6261 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6262 = Ltmp3521-Lfunc_begin0 - .quad Lset6262 -Lset6263 = Ltmp3530-Lfunc_begin0 - .quad Lset6263 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset6264 = Ltmp3530-Lfunc_begin0 - .quad Lset6264 -Lset6265 = Ltmp3534-Lfunc_begin0 - .quad Lset6265 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc484: -Lset6266 = Ltmp3496-Lfunc_begin0 - .quad Lset6266 -Lset6267 = Ltmp3501-Lfunc_begin0 - .quad Lset6267 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6268 = Ltmp3515-Lfunc_begin0 - .quad Lset6268 -Lset6269 = Ltmp3518-Lfunc_begin0 - .quad Lset6269 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset6270 = Ltmp3518-Lfunc_begin0 - .quad Lset6270 -Lset6271 = Ltmp3521-Lfunc_begin0 - .quad Lset6271 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6272 = Ltmp3521-Lfunc_begin0 - .quad Lset6272 -Lset6273 = Ltmp3530-Lfunc_begin0 - .quad Lset6273 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset6274 = Ltmp3530-Lfunc_begin0 - .quad Lset6274 -Lset6275 = Ltmp3534-Lfunc_begin0 - .quad Lset6275 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc485: -Lset6276 = Ltmp3497-Lfunc_begin0 - .quad Lset6276 -Lset6277 = Ltmp3511-Lfunc_begin0 - .quad Lset6277 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc486: -Lset6278 = Ltmp3497-Lfunc_begin0 - .quad Lset6278 -Lset6279 = Ltmp3514-Lfunc_begin0 - .quad Lset6279 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc487: -Lset6280 = Ltmp3497-Lfunc_begin0 - .quad Lset6280 -Lset6281 = Ltmp3501-Lfunc_begin0 - .quad Lset6281 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc488: -Lset6282 = Ltmp3499-Lfunc_begin0 - .quad Lset6282 -Lset6283 = Ltmp3511-Lfunc_begin0 - .quad Lset6283 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc489: -Lset6284 = Ltmp3499-Lfunc_begin0 - .quad Lset6284 -Lset6285 = Ltmp3501-Lfunc_begin0 - .quad Lset6285 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6286 = Ltmp3515-Lfunc_begin0 - .quad Lset6286 -Lset6287 = Ltmp3524-Lfunc_begin0 - .quad Lset6287 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc490: -Lset6288 = Ltmp3500-Lfunc_begin0 - .quad Lset6288 -Lset6289 = Ltmp3511-Lfunc_begin0 - .quad Lset6289 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc491: -Lset6290 = Ltmp3500-Lfunc_begin0 - .quad Lset6290 -Lset6291 = Ltmp3501-Lfunc_begin0 - .quad Lset6291 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6292 = Ltmp3515-Lfunc_begin0 - .quad Lset6292 -Lset6293 = Ltmp3524-Lfunc_begin0 - .quad Lset6293 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc492: -Lset6294 = Ltmp3507-Lfunc_begin0 - .quad Lset6294 -Lset6295 = Ltmp3508-Lfunc_begin0 - .quad Lset6295 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc493: -Lset6296 = Ltmp3516-Lfunc_begin0 - .quad Lset6296 -Lset6297 = Ltmp3533-Lfunc_begin0 - .quad Lset6297 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -104 - .byte 127 ## -Lset6298 = Ltmp3533-Lfunc_begin0 - .quad Lset6298 -Lset6299 = Ltmp3534-Lfunc_begin0 - .quad Lset6299 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc494: -Lset6300 = Ltmp3517-Lfunc_begin0 - .quad Lset6300 -Lset6301 = Ltmp3523-Lfunc_begin0 - .quad Lset6301 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6302 = Ltmp3523-Lfunc_begin0 - .quad Lset6302 -Lset6303 = Ltmp3530-Lfunc_begin0 - .quad Lset6303 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## -Lset6304 = Ltmp3530-Lfunc_begin0 - .quad Lset6304 -Lset6305 = Ltmp3534-Lfunc_begin0 - .quad Lset6305 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc495: -Lset6306 = Ltmp3517-Lfunc_begin0 - .quad Lset6306 -Lset6307 = Ltmp3521-Lfunc_begin0 - .quad Lset6307 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc496: -Lset6308 = Ltmp3563-Lfunc_begin0 - .quad Lset6308 -Lset6309 = Ltmp3564-Lfunc_begin0 - .quad Lset6309 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6310 = Ltmp3565-Lfunc_begin0 - .quad Lset6310 -Lset6311 = Ltmp3578-Lfunc_begin0 - .quad Lset6311 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc497: -Lset6312 = Ltmp3564-Lfunc_begin0 - .quad Lset6312 -Lset6313 = Ltmp3566-Lfunc_begin0 - .quad Lset6313 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6314 = Ltmp3566-Lfunc_begin0 - .quad Lset6314 -Lset6315 = Ltmp3567-Lfunc_begin0 - .quad Lset6315 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6316 = Ltmp3567-Lfunc_begin0 - .quad Lset6316 -Lset6317 = Ltmp3578-Lfunc_begin0 - .quad Lset6317 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc498: -Lset6318 = Ltmp3624-Lfunc_begin0 - .quad Lset6318 -Lset6319 = Ltmp3628-Lfunc_begin0 - .quad Lset6319 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc499: -Lset6320 = Ltmp3625-Lfunc_begin0 - .quad Lset6320 -Lset6321 = Ltmp3628-Lfunc_begin0 - .quad Lset6321 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc500: -Lset6322 = Ltmp3641-Lfunc_begin0 - .quad Lset6322 -Lset6323 = Ltmp3645-Lfunc_begin0 - .quad Lset6323 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc501: -Lset6324 = Ltmp3642-Lfunc_begin0 - .quad Lset6324 -Lset6325 = Ltmp3645-Lfunc_begin0 - .quad Lset6325 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc502: -Lset6326 = Ltmp3658-Lfunc_begin0 - .quad Lset6326 -Lset6327 = Ltmp3662-Lfunc_begin0 - .quad Lset6327 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc503: -Lset6328 = Ltmp3659-Lfunc_begin0 - .quad Lset6328 -Lset6329 = Ltmp3662-Lfunc_begin0 - .quad Lset6329 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc504: -Lset6330 = Ltmp3675-Lfunc_begin0 - .quad Lset6330 -Lset6331 = Ltmp3677-Lfunc_begin0 - .quad Lset6331 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc505: -Lset6332 = Ltmp3676-Lfunc_begin0 - .quad Lset6332 -Lset6333 = Ltmp3679-Lfunc_begin0 - .quad Lset6333 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc506: -Lset6334 = Ltmp3677-Lfunc_begin0 - .quad Lset6334 -Lset6335 = Ltmp3680-Lfunc_begin0 - .quad Lset6335 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6336 = Ltmp3683-Lfunc_begin0 - .quad Lset6336 -Lset6337 = Ltmp3684-Lfunc_begin0 - .quad Lset6337 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc507: -Lset6338 = Ltmp3678-Lfunc_begin0 - .quad Lset6338 -Lset6339 = Ltmp3686-Lfunc_begin0 - .quad Lset6339 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc508: -Lset6340 = Ltmp3702-Lfunc_begin0 - .quad Lset6340 -Lset6341 = Ltmp3705-Lfunc_begin0 - .quad Lset6341 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc509: -Lset6342 = Ltmp3703-Lfunc_begin0 - .quad Lset6342 -Lset6343 = Ltmp3706-Lfunc_begin0 - .quad Lset6343 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc510: -Lset6344 = Ltmp3704-Lfunc_begin0 - .quad Lset6344 -Lset6345 = Ltmp3715-Lfunc_begin0 - .quad Lset6345 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc511: -Lset6346 = Ltmp3705-Lfunc_begin0 - .quad Lset6346 -Lset6347 = Ltmp3707-Lfunc_begin0 - .quad Lset6347 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6348 = Ltmp3710-Lfunc_begin0 - .quad Lset6348 -Lset6349 = Ltmp3712-Lfunc_begin0 - .quad Lset6349 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc512: -Lset6350 = Ltmp3731-Lfunc_begin0 - .quad Lset6350 -Lset6351 = Ltmp3732-Lfunc_begin0 - .quad Lset6351 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc513: -Lset6352 = Ltmp3748-Lfunc_begin0 - .quad Lset6352 -Lset6353 = Ltmp3751-Lfunc_begin0 - .quad Lset6353 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc514: -Lset6354 = Ltmp3749-Lfunc_begin0 - .quad Lset6354 -Lset6355 = Ltmp3751-Lfunc_begin0 - .quad Lset6355 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc515: -Lset6356 = Ltmp3778-Lfunc_begin0 - .quad Lset6356 -Lset6357 = Ltmp3781-Lfunc_begin0 - .quad Lset6357 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc516: -Lset6358 = Ltmp3779-Lfunc_begin0 - .quad Lset6358 -Lset6359 = Ltmp3781-Lfunc_begin0 - .quad Lset6359 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc517: -Lset6360 = Ltmp3808-Lfunc_begin0 - .quad Lset6360 -Lset6361 = Ltmp3811-Lfunc_begin0 - .quad Lset6361 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc518: -Lset6362 = Ltmp3809-Lfunc_begin0 - .quad Lset6362 -Lset6363 = Ltmp3811-Lfunc_begin0 - .quad Lset6363 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc519: -Lset6364 = Ltmp3838-Lfunc_begin0 - .quad Lset6364 -Lset6365 = Ltmp3841-Lfunc_begin0 - .quad Lset6365 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc520: -Lset6366 = Ltmp3839-Lfunc_begin0 - .quad Lset6366 -Lset6367 = Ltmp3841-Lfunc_begin0 - .quad Lset6367 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc521: -Lset6368 = Ltmp3868-Lfunc_begin0 - .quad Lset6368 -Lset6369 = Ltmp3871-Lfunc_begin0 - .quad Lset6369 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc522: -Lset6370 = Ltmp3869-Lfunc_begin0 - .quad Lset6370 -Lset6371 = Ltmp3871-Lfunc_begin0 - .quad Lset6371 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc523: -Lset6372 = Ltmp3898-Lfunc_begin0 - .quad Lset6372 -Lset6373 = Ltmp3901-Lfunc_begin0 - .quad Lset6373 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc524: -Lset6374 = Ltmp3899-Lfunc_begin0 - .quad Lset6374 -Lset6375 = Ltmp3901-Lfunc_begin0 - .quad Lset6375 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc525: -Lset6376 = Ltmp3929-Lfunc_begin0 - .quad Lset6376 -Lset6377 = Ltmp3930-Lfunc_begin0 - .quad Lset6377 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc526: -Lset6378 = Ltmp3930-Lfunc_begin0 - .quad Lset6378 -Lset6379 = Ltmp3934-Lfunc_begin0 - .quad Lset6379 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc527: -Lset6380 = Ltmp3939-Lfunc_begin0 - .quad Lset6380 -Lset6381 = Ltmp3940-Lfunc_begin0 - .quad Lset6381 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6382 = Ltmp3950-Lfunc_begin0 - .quad Lset6382 -Lset6383 = Ltmp3953-Lfunc_begin0 - .quad Lset6383 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc528: -Lset6384 = Ltmp3951-Lfunc_begin0 - .quad Lset6384 -Lset6385 = Ltmp3958-Lfunc_begin0 - .quad Lset6385 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc529: -Lset6386 = Ltmp3974-Lfunc_begin0 - .quad Lset6386 -Lset6387 = Ltmp3976-Lfunc_begin0 - .quad Lset6387 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc530: -Lset6388 = Ltmp3974-Lfunc_begin0 - .quad Lset6388 -Lset6389 = Ltmp3976-Lfunc_begin0 - .quad Lset6389 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc531: -Lset6390 = Ltmp4003-Lfunc_begin0 - .quad Lset6390 -Lset6391 = Ltmp4005-Lfunc_begin0 - .quad Lset6391 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc532: -Lset6392 = Ltmp4003-Lfunc_begin0 - .quad Lset6392 -Lset6393 = Ltmp4005-Lfunc_begin0 - .quad Lset6393 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc533: -Lset6394 = Ltmp4022-Lfunc_begin0 - .quad Lset6394 -Lset6395 = Ltmp4025-Lfunc_begin0 - .quad Lset6395 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc534: -Lset6396 = Ltmp4023-Lfunc_begin0 - .quad Lset6396 -Lset6397 = Ltmp4026-Lfunc_begin0 - .quad Lset6397 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc535: -Lset6398 = Ltmp4025-Lfunc_begin0 - .quad Lset6398 -Lset6399 = Ltmp4027-Lfunc_begin0 - .quad Lset6399 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc536: -Lset6400 = Ltmp4033-Lfunc_begin0 - .quad Lset6400 -Lset6401 = Ltmp4040-Lfunc_begin0 - .quad Lset6401 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6402 = Ltmp4059-Lfunc_begin0 - .quad Lset6402 -Lset6403 = Ltmp4070-Lfunc_begin0 - .quad Lset6403 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc537: -Lset6404 = Ltmp4033-Lfunc_begin0 - .quad Lset6404 -Lset6405 = Ltmp4041-Lfunc_begin0 - .quad Lset6405 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6406 = Ltmp4061-Lfunc_begin0 - .quad Lset6406 -Lset6407 = Ltmp4070-Lfunc_begin0 - .quad Lset6407 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc538: -Lset6408 = Ltmp4033-Lfunc_begin0 - .quad Lset6408 -Lset6409 = Ltmp4037-Lfunc_begin0 - .quad Lset6409 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6410 = Ltmp4064-Lfunc_begin0 - .quad Lset6410 -Lset6411 = Ltmp4067-Lfunc_begin0 - .quad Lset6411 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc539: -Lset6412 = Ltmp4033-Lfunc_begin0 - .quad Lset6412 -Lset6413 = Ltmp4037-Lfunc_begin0 - .quad Lset6413 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6414 = Ltmp4065-Lfunc_begin0 - .quad Lset6414 -Lset6415 = Ltmp4068-Lfunc_begin0 - .quad Lset6415 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc540: -Lset6416 = Ltmp4036-Lfunc_begin0 - .quad Lset6416 -Lset6417 = Ltmp4037-Lfunc_begin0 - .quad Lset6417 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6418 = Ltmp4068-Lfunc_begin0 - .quad Lset6418 -Lset6419 = Ltmp4068-Lfunc_begin0 - .quad Lset6419 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc541: -Lset6420 = Ltmp4045-Lfunc_begin0 - .quad Lset6420 -Lset6421 = Ltmp4048-Lfunc_begin0 - .quad Lset6421 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc542: -Lset6422 = Ltmp4046-Lfunc_begin0 - .quad Lset6422 -Lset6423 = Ltmp4049-Lfunc_begin0 - .quad Lset6423 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc543: -Lset6424 = Ltmp4048-Lfunc_begin0 - .quad Lset6424 -Lset6425 = Ltmp4050-Lfunc_begin0 - .quad Lset6425 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc544: -Lset6426 = Ltmp4084-Lfunc_begin0 - .quad Lset6426 -Lset6427 = Ltmp4088-Lfunc_begin0 - .quad Lset6427 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6428 = Ltmp4095-Lfunc_begin0 - .quad Lset6428 -Lset6429 = Ltmp4100-Lfunc_begin0 - .quad Lset6429 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6430 = Ltmp4105-Lfunc_begin0 - .quad Lset6430 -Lset6431 = Ltmp4109-Lfunc_begin0 - .quad Lset6431 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6432 = Ltmp4111-Lfunc_begin0 - .quad Lset6432 -Lset6433 = Ltmp4115-Lfunc_begin0 - .quad Lset6433 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6434 = Ltmp4116-Lfunc_begin0 - .quad Lset6434 -Lset6435 = Ltmp4119-Lfunc_begin0 - .quad Lset6435 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6436 = Ltmp5261-Lfunc_begin0 - .quad Lset6436 -Lset6437 = Ltmp5262-Lfunc_begin0 - .quad Lset6437 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc545: -Lset6438 = Ltmp4084-Lfunc_begin0 - .quad Lset6438 -Lset6439 = Ltmp4088-Lfunc_begin0 - .quad Lset6439 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6440 = Ltmp4095-Lfunc_begin0 - .quad Lset6440 -Lset6441 = Ltmp4100-Lfunc_begin0 - .quad Lset6441 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6442 = Ltmp4106-Lfunc_begin0 - .quad Lset6442 -Lset6443 = Ltmp4109-Lfunc_begin0 - .quad Lset6443 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6444 = Ltmp4111-Lfunc_begin0 - .quad Lset6444 -Lset6445 = Ltmp4115-Lfunc_begin0 - .quad Lset6445 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6446 = Ltmp4116-Lfunc_begin0 - .quad Lset6446 -Lset6447 = Ltmp4119-Lfunc_begin0 - .quad Lset6447 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc546: -Lset6448 = Ltmp4095-Lfunc_begin0 - .quad Lset6448 -Lset6449 = Ltmp4100-Lfunc_begin0 - .quad Lset6449 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6450 = Ltmp4117-Lfunc_begin0 - .quad Lset6450 -Lset6451 = Ltmp4120-Lfunc_begin0 - .quad Lset6451 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc547: -Lset6452 = Ltmp4111-Lfunc_begin0 - .quad Lset6452 -Lset6453 = Ltmp4111-Lfunc_begin0 - .quad Lset6453 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6454 = Ltmp4114-Lfunc_begin0 - .quad Lset6454 -Lset6455 = Ltmp4115-Lfunc_begin0 - .quad Lset6455 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc548: -Lset6456 = Ltmp4131-Lfunc_begin0 - .quad Lset6456 -Lset6457 = Ltmp4135-Lfunc_begin0 - .quad Lset6457 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6458 = Ltmp4142-Lfunc_begin0 - .quad Lset6458 -Lset6459 = Ltmp4147-Lfunc_begin0 - .quad Lset6459 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6460 = Ltmp4152-Lfunc_begin0 - .quad Lset6460 -Lset6461 = Ltmp4156-Lfunc_begin0 - .quad Lset6461 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6462 = Ltmp4158-Lfunc_begin0 - .quad Lset6462 -Lset6463 = Ltmp4162-Lfunc_begin0 - .quad Lset6463 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6464 = Ltmp4163-Lfunc_begin0 - .quad Lset6464 -Lset6465 = Ltmp4166-Lfunc_begin0 - .quad Lset6465 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc549: -Lset6466 = Ltmp4131-Lfunc_begin0 - .quad Lset6466 -Lset6467 = Ltmp4135-Lfunc_begin0 - .quad Lset6467 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6468 = Ltmp4142-Lfunc_begin0 - .quad Lset6468 -Lset6469 = Ltmp4147-Lfunc_begin0 - .quad Lset6469 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6470 = Ltmp4153-Lfunc_begin0 - .quad Lset6470 -Lset6471 = Ltmp4156-Lfunc_begin0 - .quad Lset6471 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6472 = Ltmp4158-Lfunc_begin0 - .quad Lset6472 -Lset6473 = Ltmp4162-Lfunc_begin0 - .quad Lset6473 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset6474 = Ltmp4163-Lfunc_begin0 - .quad Lset6474 -Lset6475 = Ltmp4166-Lfunc_begin0 - .quad Lset6475 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc550: -Lset6476 = Ltmp4142-Lfunc_begin0 - .quad Lset6476 -Lset6477 = Ltmp4147-Lfunc_begin0 - .quad Lset6477 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6478 = Ltmp4164-Lfunc_begin0 - .quad Lset6478 -Lset6479 = Ltmp4167-Lfunc_begin0 - .quad Lset6479 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc551: -Lset6480 = Ltmp4158-Lfunc_begin0 - .quad Lset6480 -Lset6481 = Ltmp4158-Lfunc_begin0 - .quad Lset6481 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6482 = Ltmp4161-Lfunc_begin0 - .quad Lset6482 -Lset6483 = Ltmp4162-Lfunc_begin0 - .quad Lset6483 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc552: -Lset6484 = Ltmp4175-Lfunc_begin0 - .quad Lset6484 -Lset6485 = Ltmp4184-Lfunc_begin0 - .quad Lset6485 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6486 = Ltmp4196-Lfunc_begin0 - .quad Lset6486 -Lset6487 = Ltmp4208-Lfunc_begin0 - .quad Lset6487 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6488 = Ltmp4209-Lfunc_begin0 - .quad Lset6488 -Lset6489 = Ltmp4211-Lfunc_begin0 - .quad Lset6489 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc553: -Lset6490 = Ltmp4175-Lfunc_begin0 - .quad Lset6490 -Lset6491 = Ltmp4184-Lfunc_begin0 - .quad Lset6491 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6492 = Ltmp4200-Lfunc_begin0 - .quad Lset6492 -Lset6493 = Ltmp4208-Lfunc_begin0 - .quad Lset6493 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6494 = Ltmp4209-Lfunc_begin0 - .quad Lset6494 -Lset6495 = Ltmp4211-Lfunc_begin0 - .quad Lset6495 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc554: -Lset6496 = Ltmp4175-Lfunc_begin0 - .quad Lset6496 -Lset6497 = Ltmp4184-Lfunc_begin0 - .quad Lset6497 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6498 = Ltmp4209-Lfunc_begin0 - .quad Lset6498 -Lset6499 = Ltmp4212-Lfunc_begin0 - .quad Lset6499 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc555: -Lset6500 = Ltmp4201-Lfunc_begin0 - .quad Lset6500 -Lset6501 = Ltmp4208-Lfunc_begin0 - .quad Lset6501 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc556: -Lset6502 = Ltmp4203-Lfunc_begin0 - .quad Lset6502 -Lset6503 = Ltmp4204-Lfunc_begin0 - .quad Lset6503 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc557: -Lset6504 = Ltmp4204-Lfunc_begin0 - .quad Lset6504 -Lset6505 = Ltmp4204-Lfunc_begin0 - .quad Lset6505 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset6506 = Ltmp4207-Lfunc_begin0 - .quad Lset6506 -Lset6507 = Ltmp4208-Lfunc_begin0 - .quad Lset6507 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc558: -Lset6508 = Ltmp4228-Lfunc_begin0 - .quad Lset6508 -Lset6509 = Ltmp4231-Lfunc_begin0 - .quad Lset6509 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc559: -Lset6510 = Ltmp4229-Lfunc_begin0 - .quad Lset6510 -Lset6511 = Ltmp4233-Lfunc_begin0 - .quad Lset6511 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc560: -Lset6512 = Ltmp4230-Lfunc_begin0 - .quad Lset6512 -Lset6513 = Ltmp4233-Lfunc_begin0 - .quad Lset6513 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc561: -Lset6514 = Ltmp4230-Lfunc_begin0 - .quad Lset6514 -Lset6515 = Ltmp4232-Lfunc_begin0 - .quad Lset6515 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc562: -Lset6516 = Ltmp4232-Lfunc_begin0 - .quad Lset6516 -Lset6517 = Ltmp4236-Lfunc_begin0 - .quad Lset6517 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc563: -Lset6518 = Ltmp4249-Lfunc_begin0 - .quad Lset6518 -Lset6519 = Ltmp4252-Lfunc_begin0 - .quad Lset6519 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc564: -Lset6520 = Ltmp4250-Lfunc_begin0 - .quad Lset6520 -Lset6521 = Ltmp4254-Lfunc_begin0 - .quad Lset6521 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc565: -Lset6522 = Ltmp4251-Lfunc_begin0 - .quad Lset6522 -Lset6523 = Ltmp4254-Lfunc_begin0 - .quad Lset6523 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc566: -Lset6524 = Ltmp4251-Lfunc_begin0 - .quad Lset6524 -Lset6525 = Ltmp4253-Lfunc_begin0 - .quad Lset6525 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc567: -Lset6526 = Ltmp4253-Lfunc_begin0 - .quad Lset6526 -Lset6527 = Ltmp4257-Lfunc_begin0 - .quad Lset6527 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc568: -Lset6528 = Ltmp4271-Lfunc_begin0 - .quad Lset6528 -Lset6529 = Ltmp4295-Lfunc_begin0 - .quad Lset6529 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## -Lset6530 = Ltmp4295-Lfunc_begin0 - .quad Lset6530 -Lset6531 = Ltmp4299-Lfunc_begin0 - .quad Lset6531 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6532 = Ltmp4303-Lfunc_begin0 - .quad Lset6532 -Lset6533 = Ltmp4306-Lfunc_begin0 - .quad Lset6533 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc569: -Lset6534 = Ltmp4272-Lfunc_begin0 - .quad Lset6534 -Lset6535 = Ltmp4277-Lfunc_begin0 - .quad Lset6535 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc570: -Lset6536 = Ltmp4274-Lfunc_begin0 - .quad Lset6536 -Lset6537 = Ltmp4277-Lfunc_begin0 - .quad Lset6537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6538 = Ltmp4294-Lfunc_begin0 - .quad Lset6538 -Lset6539 = Ltmp4299-Lfunc_begin0 - .quad Lset6539 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6540 = Ltmp4303-Lfunc_begin0 - .quad Lset6540 -Lset6541 = Ltmp4305-Lfunc_begin0 - .quad Lset6541 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc571: -Lset6542 = Ltmp4274-Lfunc_begin0 - .quad Lset6542 -Lset6543 = Ltmp4277-Lfunc_begin0 - .quad Lset6543 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc572: -Lset6544 = Ltmp4275-Lfunc_begin0 - .quad Lset6544 -Lset6545 = Ltmp4277-Lfunc_begin0 - .quad Lset6545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6546 = Ltmp4294-Lfunc_begin0 - .quad Lset6546 -Lset6547 = Ltmp4299-Lfunc_begin0 - .quad Lset6547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6548 = Ltmp4303-Lfunc_begin0 - .quad Lset6548 -Lset6549 = Ltmp4306-Lfunc_begin0 - .quad Lset6549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc573: -Lset6550 = Ltmp4278-Lfunc_begin0 - .quad Lset6550 -Lset6551 = Ltmp4283-Lfunc_begin0 - .quad Lset6551 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6552 = Ltmp4299-Lfunc_begin0 - .quad Lset6552 -Lset6553 = Ltmp4301-Lfunc_begin0 - .quad Lset6553 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc574: -Lset6554 = Ltmp4282-Lfunc_begin0 - .quad Lset6554 -Lset6555 = Ltmp4283-Lfunc_begin0 - .quad Lset6555 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc575: -Lset6556 = Ltmp4283-Lfunc_begin0 - .quad Lset6556 -Lset6557 = Ltmp4285-Lfunc_begin0 - .quad Lset6557 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset6558 = Ltmp4285-Lfunc_begin0 - .quad Lset6558 -Lset6559 = Ltmp4286-Lfunc_begin0 - .quad Lset6559 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset6560 = Ltmp4289-Lfunc_begin0 - .quad Lset6560 -Lset6561 = Ltmp4294-Lfunc_begin0 - .quad Lset6561 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc576: -Lset6562 = Ltmp4294-Lfunc_begin0 - .quad Lset6562 -Lset6563 = Ltmp4299-Lfunc_begin0 - .quad Lset6563 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6564 = Ltmp4303-Lfunc_begin0 - .quad Lset6564 -Lset6565 = Ltmp4306-Lfunc_begin0 - .quad Lset6565 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc577: -Lset6566 = Ltmp4298-Lfunc_begin0 - .quad Lset6566 -Lset6567 = Ltmp4299-Lfunc_begin0 - .quad Lset6567 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc578: -Lset6568 = Ltmp4310-Lfunc_begin0 - .quad Lset6568 -Lset6569 = Ltmp4311-Lfunc_begin0 - .quad Lset6569 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6570 = Ltmp4311-Lfunc_begin0 - .quad Lset6570 -Lset6571 = Lfunc_end17-Lfunc_begin0 - .quad Lset6571 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc579: -Lset6572 = Ltmp4312-Lfunc_begin0 - .quad Lset6572 -Lset6573 = Ltmp4314-Lfunc_begin0 - .quad Lset6573 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc580: -Lset6574 = Ltmp4315-Lfunc_begin0 - .quad Lset6574 -Lset6575 = Ltmp4322-Lfunc_begin0 - .quad Lset6575 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc581: -Lset6576 = Ltmp4320-Lfunc_begin0 - .quad Lset6576 -Lset6577 = Ltmp4321-Lfunc_begin0 - .quad Lset6577 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc582: -Lset6578 = Ltmp4340-Lfunc_begin0 - .quad Lset6578 -Lset6579 = Ltmp4353-Lfunc_begin0 - .quad Lset6579 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc583: -Lset6580 = Ltmp4341-Lfunc_begin0 - .quad Lset6580 -Lset6581 = Ltmp4345-Lfunc_begin0 - .quad Lset6581 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc584: -Lset6582 = Ltmp4343-Lfunc_begin0 - .quad Lset6582 -Lset6583 = Ltmp4348-Lfunc_begin0 - .quad Lset6583 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6584 = Ltmp4350-Lfunc_begin0 - .quad Lset6584 -Lset6585 = Ltmp4353-Lfunc_begin0 - .quad Lset6585 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc585: -Lset6586 = Ltmp4344-Lfunc_begin0 - .quad Lset6586 -Lset6587 = Ltmp4349-Lfunc_begin0 - .quad Lset6587 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6588 = Ltmp4350-Lfunc_begin0 - .quad Lset6588 -Lset6589 = Ltmp4351-Lfunc_begin0 - .quad Lset6589 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc586: -Lset6590 = Ltmp4344-Lfunc_begin0 - .quad Lset6590 -Lset6591 = Ltmp4349-Lfunc_begin0 - .quad Lset6591 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6592 = Ltmp4350-Lfunc_begin0 - .quad Lset6592 -Lset6593 = Ltmp4351-Lfunc_begin0 - .quad Lset6593 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc587: -Lset6594 = Ltmp4347-Lfunc_begin0 - .quad Lset6594 -Lset6595 = Ltmp4350-Lfunc_begin0 - .quad Lset6595 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc588: -Lset6596 = Ltmp4371-Lfunc_begin0 - .quad Lset6596 -Lset6597 = Ltmp4377-Lfunc_begin0 - .quad Lset6597 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6598 = Ltmp4383-Lfunc_begin0 - .quad Lset6598 -Lset6599 = Ltmp4387-Lfunc_begin0 - .quad Lset6599 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset6600 = Ltmp4398-Lfunc_begin0 - .quad Lset6600 -Lset6601 = Ltmp4400-Lfunc_begin0 - .quad Lset6601 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc589: -Lset6602 = Ltmp4372-Lfunc_begin0 - .quad Lset6602 -Lset6603 = Ltmp4377-Lfunc_begin0 - .quad Lset6603 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc590: -Lset6604 = Ltmp4374-Lfunc_begin0 - .quad Lset6604 -Lset6605 = Ltmp4377-Lfunc_begin0 - .quad Lset6605 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6606 = Ltmp4383-Lfunc_begin0 - .quad Lset6606 -Lset6607 = Ltmp4387-Lfunc_begin0 - .quad Lset6607 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6608 = Ltmp4398-Lfunc_begin0 - .quad Lset6608 -Lset6609 = Ltmp4401-Lfunc_begin0 - .quad Lset6609 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc591: -Lset6610 = Ltmp4374-Lfunc_begin0 - .quad Lset6610 -Lset6611 = Ltmp4377-Lfunc_begin0 - .quad Lset6611 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc592: -Lset6612 = Ltmp4375-Lfunc_begin0 - .quad Lset6612 -Lset6613 = Ltmp4377-Lfunc_begin0 - .quad Lset6613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6614 = Ltmp4383-Lfunc_begin0 - .quad Lset6614 -Lset6615 = Ltmp4387-Lfunc_begin0 - .quad Lset6615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6616 = Ltmp4398-Lfunc_begin0 - .quad Lset6616 -Lset6617 = Ltmp4402-Lfunc_begin0 - .quad Lset6617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc593: -Lset6618 = Ltmp4378-Lfunc_begin0 - .quad Lset6618 -Lset6619 = Ltmp4383-Lfunc_begin0 - .quad Lset6619 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6620 = Ltmp4394-Lfunc_begin0 - .quad Lset6620 -Lset6621 = Ltmp4396-Lfunc_begin0 - .quad Lset6621 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc594: -Lset6622 = Ltmp4382-Lfunc_begin0 - .quad Lset6622 -Lset6623 = Ltmp4383-Lfunc_begin0 - .quad Lset6623 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc595: -Lset6624 = Ltmp4383-Lfunc_begin0 - .quad Lset6624 -Lset6625 = Ltmp4387-Lfunc_begin0 - .quad Lset6625 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6626 = Ltmp4398-Lfunc_begin0 - .quad Lset6626 -Lset6627 = Ltmp4402-Lfunc_begin0 - .quad Lset6627 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc596: -Lset6628 = Ltmp4386-Lfunc_begin0 - .quad Lset6628 -Lset6629 = Ltmp4387-Lfunc_begin0 - .quad Lset6629 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc597: -Lset6630 = Ltmp4391-Lfunc_begin0 - .quad Lset6630 -Lset6631 = Ltmp4392-Lfunc_begin0 - .quad Lset6631 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc598: -Lset6632 = Ltmp4411-Lfunc_begin0 - .quad Lset6632 -Lset6633 = Ltmp4415-Lfunc_begin0 - .quad Lset6633 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc599: -Lset6634 = Ltmp4413-Lfunc_begin0 - .quad Lset6634 -Lset6635 = Ltmp4414-Lfunc_begin0 - .quad Lset6635 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc600: -Lset6636 = Ltmp4433-Lfunc_begin0 - .quad Lset6636 -Lset6637 = Ltmp4445-Lfunc_begin0 - .quad Lset6637 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc601: -Lset6638 = Ltmp4434-Lfunc_begin0 - .quad Lset6638 -Lset6639 = Ltmp4438-Lfunc_begin0 - .quad Lset6639 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc602: -Lset6640 = Ltmp4436-Lfunc_begin0 - .quad Lset6640 -Lset6641 = Ltmp4441-Lfunc_begin0 - .quad Lset6641 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset6642 = Ltmp4443-Lfunc_begin0 - .quad Lset6642 -Lset6643 = Ltmp4445-Lfunc_begin0 - .quad Lset6643 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc603: -Lset6644 = Ltmp4437-Lfunc_begin0 - .quad Lset6644 -Lset6645 = Ltmp4442-Lfunc_begin0 - .quad Lset6645 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6646 = Ltmp4443-Lfunc_begin0 - .quad Lset6646 -Lset6647 = Ltmp4445-Lfunc_begin0 - .quad Lset6647 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc604: -Lset6648 = Ltmp4437-Lfunc_begin0 - .quad Lset6648 -Lset6649 = Ltmp4442-Lfunc_begin0 - .quad Lset6649 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6650 = Ltmp4443-Lfunc_begin0 - .quad Lset6650 -Lset6651 = Ltmp4445-Lfunc_begin0 - .quad Lset6651 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc605: -Lset6652 = Ltmp4440-Lfunc_begin0 - .quad Lset6652 -Lset6653 = Ltmp4443-Lfunc_begin0 - .quad Lset6653 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc606: -Lset6654 = Ltmp4456-Lfunc_begin0 - .quad Lset6654 -Lset6655 = Ltmp4458-Lfunc_begin0 - .quad Lset6655 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -Lset6656 = Ltmp4460-Lfunc_begin0 - .quad Lset6656 -Lset6657 = Ltmp4461-Lfunc_begin0 - .quad Lset6657 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc607: -Lset6658 = Ltmp4475-Lfunc_begin0 - .quad Lset6658 -Lset6659 = Ltmp4476-Lfunc_begin0 - .quad Lset6659 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6660 = Ltmp4476-Lfunc_begin0 - .quad Lset6660 -Lset6661 = Lfunc_end17-Lfunc_begin0 - .quad Lset6661 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc608: -Lset6662 = Ltmp4477-Lfunc_begin0 - .quad Lset6662 -Lset6663 = Ltmp4479-Lfunc_begin0 - .quad Lset6663 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc609: -Lset6664 = Ltmp4488-Lfunc_begin0 - .quad Lset6664 -Lset6665 = Ltmp4488-Lfunc_begin0 - .quad Lset6665 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc610: -Lset6666 = Ltmp4489-Lfunc_begin0 - .quad Lset6666 -Lset6667 = Ltmp4490-Lfunc_begin0 - .quad Lset6667 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc611: -Lset6668 = Ltmp4490-Lfunc_begin0 - .quad Lset6668 -Lset6669 = Ltmp4493-Lfunc_begin0 - .quad Lset6669 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc612: -Lset6670 = Ltmp4510-Lfunc_begin0 - .quad Lset6670 -Lset6671 = Ltmp4511-Lfunc_begin0 - .quad Lset6671 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc613: -Lset6672 = Ltmp4528-Lfunc_begin0 - .quad Lset6672 -Lset6673 = Ltmp4529-Lfunc_begin0 - .quad Lset6673 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc614: -Lset6674 = Ltmp4529-Lfunc_begin0 - .quad Lset6674 -Lset6675 = Ltmp4532-Lfunc_begin0 - .quad Lset6675 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc615: -Lset6676 = Ltmp4546-Lfunc_begin0 - .quad Lset6676 -Lset6677 = Ltmp4554-Lfunc_begin0 - .quad Lset6677 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc616: -Lset6678 = Ltmp4570-Lfunc_begin0 - .quad Lset6678 -Lset6679 = Ltmp4578-Lfunc_begin0 - .quad Lset6679 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc617: -Lset6680 = Ltmp4594-Lfunc_begin0 - .quad Lset6680 -Lset6681 = Ltmp4602-Lfunc_begin0 - .quad Lset6681 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc618: -Lset6682 = Ltmp4679-Lfunc_begin0 - .quad Lset6682 -Lset6683 = Ltmp4683-Lfunc_begin0 - .quad Lset6683 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc619: -Lset6684 = Ltmp4680-Lfunc_begin0 - .quad Lset6684 -Lset6685 = Ltmp4683-Lfunc_begin0 - .quad Lset6685 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc620: -Lset6686 = Ltmp4696-Lfunc_begin0 - .quad Lset6686 -Lset6687 = Ltmp4700-Lfunc_begin0 - .quad Lset6687 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc621: -Lset6688 = Ltmp4697-Lfunc_begin0 - .quad Lset6688 -Lset6689 = Ltmp4700-Lfunc_begin0 - .quad Lset6689 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc622: -Lset6690 = Ltmp4713-Lfunc_begin0 - .quad Lset6690 -Lset6691 = Ltmp4717-Lfunc_begin0 - .quad Lset6691 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc623: -Lset6692 = Ltmp4714-Lfunc_begin0 - .quad Lset6692 -Lset6693 = Ltmp4717-Lfunc_begin0 - .quad Lset6693 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc624: -Lset6694 = Ltmp4730-Lfunc_begin0 - .quad Lset6694 -Lset6695 = Ltmp4734-Lfunc_begin0 - .quad Lset6695 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc625: -Lset6696 = Ltmp4731-Lfunc_begin0 - .quad Lset6696 -Lset6697 = Ltmp4734-Lfunc_begin0 - .quad Lset6697 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc626: -Lset6698 = Ltmp4747-Lfunc_begin0 - .quad Lset6698 -Lset6699 = Ltmp4751-Lfunc_begin0 - .quad Lset6699 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc627: -Lset6700 = Ltmp4748-Lfunc_begin0 - .quad Lset6700 -Lset6701 = Ltmp4751-Lfunc_begin0 - .quad Lset6701 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc628: -Lset6702 = Ltmp4764-Lfunc_begin0 - .quad Lset6702 -Lset6703 = Ltmp4768-Lfunc_begin0 - .quad Lset6703 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc629: -Lset6704 = Ltmp4765-Lfunc_begin0 - .quad Lset6704 -Lset6705 = Ltmp4768-Lfunc_begin0 - .quad Lset6705 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc630: -Lset6706 = Ltmp4781-Lfunc_begin0 - .quad Lset6706 -Lset6707 = Ltmp4785-Lfunc_begin0 - .quad Lset6707 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc631: -Lset6708 = Ltmp4782-Lfunc_begin0 - .quad Lset6708 -Lset6709 = Ltmp4785-Lfunc_begin0 - .quad Lset6709 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc632: -Lset6710 = Ltmp4798-Lfunc_begin0 - .quad Lset6710 -Lset6711 = Ltmp4802-Lfunc_begin0 - .quad Lset6711 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc633: -Lset6712 = Ltmp4799-Lfunc_begin0 - .quad Lset6712 -Lset6713 = Ltmp4802-Lfunc_begin0 - .quad Lset6713 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc634: -Lset6714 = Ltmp4815-Lfunc_begin0 - .quad Lset6714 -Lset6715 = Ltmp4819-Lfunc_begin0 - .quad Lset6715 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc635: -Lset6716 = Ltmp4816-Lfunc_begin0 - .quad Lset6716 -Lset6717 = Ltmp4819-Lfunc_begin0 - .quad Lset6717 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc636: -Lset6718 = Ltmp4832-Lfunc_begin0 - .quad Lset6718 -Lset6719 = Ltmp4836-Lfunc_begin0 - .quad Lset6719 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc637: -Lset6720 = Ltmp4833-Lfunc_begin0 - .quad Lset6720 -Lset6721 = Ltmp4836-Lfunc_begin0 - .quad Lset6721 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc638: -Lset6722 = Ltmp4849-Lfunc_begin0 - .quad Lset6722 -Lset6723 = Ltmp4853-Lfunc_begin0 - .quad Lset6723 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc639: -Lset6724 = Ltmp4850-Lfunc_begin0 - .quad Lset6724 -Lset6725 = Ltmp4853-Lfunc_begin0 - .quad Lset6725 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc640: -Lset6726 = Ltmp4866-Lfunc_begin0 - .quad Lset6726 -Lset6727 = Ltmp4870-Lfunc_begin0 - .quad Lset6727 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc641: -Lset6728 = Ltmp4867-Lfunc_begin0 - .quad Lset6728 -Lset6729 = Ltmp4870-Lfunc_begin0 - .quad Lset6729 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc642: -Lset6730 = Ltmp4883-Lfunc_begin0 - .quad Lset6730 -Lset6731 = Ltmp4887-Lfunc_begin0 - .quad Lset6731 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc643: -Lset6732 = Ltmp4884-Lfunc_begin0 - .quad Lset6732 -Lset6733 = Ltmp4887-Lfunc_begin0 - .quad Lset6733 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc644: -Lset6734 = Ltmp4900-Lfunc_begin0 - .quad Lset6734 -Lset6735 = Ltmp4904-Lfunc_begin0 - .quad Lset6735 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc645: -Lset6736 = Ltmp4901-Lfunc_begin0 - .quad Lset6736 -Lset6737 = Ltmp4904-Lfunc_begin0 - .quad Lset6737 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc646: -Lset6738 = Ltmp4914-Lfunc_begin0 - .quad Lset6738 -Lset6739 = Ltmp4917-Lfunc_begin0 - .quad Lset6739 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset6740 = Ltmp4918-Lfunc_begin0 - .quad Lset6740 -Lset6741 = Ltmp4920-Lfunc_begin0 - .quad Lset6741 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset6742 = Ltmp4920-Lfunc_begin0 - .quad Lset6742 -Lset6743 = Ltmp4921-Lfunc_begin0 - .quad Lset6743 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc647: -Lset6744 = Ltmp4931-Lfunc_begin0 - .quad Lset6744 -Lset6745 = Ltmp4932-Lfunc_begin0 - .quad Lset6745 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6746 = Ltmp4932-Lfunc_begin0 - .quad Lset6746 -Lset6747 = Lfunc_end17-Lfunc_begin0 - .quad Lset6747 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc648: -Lset6748 = Ltmp4933-Lfunc_begin0 - .quad Lset6748 -Lset6749 = Ltmp4935-Lfunc_begin0 - .quad Lset6749 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc649: -Lset6750 = Ltmp4943-Lfunc_begin0 - .quad Lset6750 -Lset6751 = Ltmp4946-Lfunc_begin0 - .quad Lset6751 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc650: -Lset6752 = Ltmp4943-Lfunc_begin0 - .quad Lset6752 -Lset6753 = Ltmp4944-Lfunc_begin0 - .quad Lset6753 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc651: -Lset6754 = Ltmp4945-Lfunc_begin0 - .quad Lset6754 -Lset6755 = Ltmp4946-Lfunc_begin0 - .quad Lset6755 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc652: -Lset6756 = Ltmp4952-Lfunc_begin0 - .quad Lset6756 -Lset6757 = Ltmp4954-Lfunc_begin0 - .quad Lset6757 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6758 = Ltmp4962-Lfunc_begin0 - .quad Lset6758 -Lset6759 = Ltmp4967-Lfunc_begin0 - .quad Lset6759 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6760 = Ltmp4982-Lfunc_begin0 - .quad Lset6760 -Lset6761 = Ltmp4984-Lfunc_begin0 - .quad Lset6761 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc653: -Lset6762 = Ltmp4952-Lfunc_begin0 - .quad Lset6762 -Lset6763 = Ltmp4954-Lfunc_begin0 - .quad Lset6763 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6764 = Ltmp4962-Lfunc_begin0 - .quad Lset6764 -Lset6765 = Ltmp4967-Lfunc_begin0 - .quad Lset6765 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6766 = Ltmp4982-Lfunc_begin0 - .quad Lset6766 -Lset6767 = Ltmp4986-Lfunc_begin0 - .quad Lset6767 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc654: -Lset6768 = Ltmp4965-Lfunc_begin0 - .quad Lset6768 -Lset6769 = Ltmp4966-Lfunc_begin0 - .quad Lset6769 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc655: -Lset6770 = Ltmp5050-Lfunc_begin0 - .quad Lset6770 -Lset6771 = Ltmp5051-Lfunc_begin0 - .quad Lset6771 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset6772 = Ltmp5053-Lfunc_begin0 - .quad Lset6772 -Lset6773 = Ltmp5054-Lfunc_begin0 - .quad Lset6773 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc656: -Lset6774 = Ltmp5068-Lfunc_begin0 - .quad Lset6774 -Lset6775 = Ltmp5069-Lfunc_begin0 - .quad Lset6775 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset6776 = Ltmp5069-Lfunc_begin0 - .quad Lset6776 -Lset6777 = Lfunc_end17-Lfunc_begin0 - .quad Lset6777 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc657: -Lset6778 = Ltmp5070-Lfunc_begin0 - .quad Lset6778 -Lset6779 = Ltmp5072-Lfunc_begin0 - .quad Lset6779 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc658: -Lset6780 = Ltmp5080-Lfunc_begin0 - .quad Lset6780 -Lset6781 = Ltmp5080-Lfunc_begin0 - .quad Lset6781 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc659: -Lset6782 = Ltmp5100-Lfunc_begin0 - .quad Lset6782 -Lset6783 = Ltmp5101-Lfunc_begin0 - .quad Lset6783 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc660: -Lset6784 = Ltmp5213-Lfunc_begin0 - .quad Lset6784 -Lset6785 = Ltmp5214-Lfunc_begin0 - .quad Lset6785 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6786 = Ltmp5216-Lfunc_begin0 - .quad Lset6786 -Lset6787 = Ltmp5226-Lfunc_begin0 - .quad Lset6787 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6788 = Ltmp5227-Lfunc_begin0 - .quad Lset6788 -Lset6789 = Ltmp5229-Lfunc_begin0 - .quad Lset6789 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6790 = Ltmp5243-Lfunc_begin0 - .quad Lset6790 -Lset6791 = Ltmp5244-Lfunc_begin0 - .quad Lset6791 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc661: -Lset6792 = Ltmp5213-Lfunc_begin0 - .quad Lset6792 -Lset6793 = Ltmp5214-Lfunc_begin0 - .quad Lset6793 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6794 = Ltmp5216-Lfunc_begin0 - .quad Lset6794 -Lset6795 = Ltmp5226-Lfunc_begin0 - .quad Lset6795 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6796 = Ltmp5227-Lfunc_begin0 - .quad Lset6796 -Lset6797 = Ltmp5229-Lfunc_begin0 - .quad Lset6797 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc662: -Lset6798 = Ltmp5220-Lfunc_begin0 - .quad Lset6798 -Lset6799 = Ltmp5226-Lfunc_begin0 - .quad Lset6799 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -Lset6800 = Ltmp5227-Lfunc_begin0 - .quad Lset6800 -Lset6801 = Ltmp5229-Lfunc_begin0 - .quad Lset6801 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc663: -Lset6802 = Ltmp5221-Lfunc_begin0 - .quad Lset6802 -Lset6803 = Ltmp5222-Lfunc_begin0 - .quad Lset6803 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc664: -Lset6804 = Ltmp5222-Lfunc_begin0 - .quad Lset6804 -Lset6805 = Ltmp5222-Lfunc_begin0 - .quad Lset6805 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset6806 = Ltmp5225-Lfunc_begin0 - .quad Lset6806 -Lset6807 = Ltmp5226-Lfunc_begin0 - .quad Lset6807 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc665: -Lset6808 = Ltmp5227-Lfunc_begin0 - .quad Lset6808 -Lset6809 = Ltmp5229-Lfunc_begin0 - .quad Lset6809 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc666: -Lset6810 = Ltmp5259-Lfunc_begin0 - .quad Lset6810 -Lset6811 = Ltmp5260-Lfunc_begin0 - .quad Lset6811 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc667: -Lset6812 = Ltmp5260-Lfunc_begin0 - .quad Lset6812 -Lset6813 = Ltmp5261-Lfunc_begin0 - .quad Lset6813 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc668: -Lset6814 = Lfunc_begin18-Lfunc_begin0 - .quad Lset6814 -Lset6815 = Ltmp5281-Lfunc_begin0 - .quad Lset6815 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6816 = Ltmp5282-Lfunc_begin0 - .quad Lset6816 -Lset6817 = Ltmp5283-Lfunc_begin0 - .quad Lset6817 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6818 = Ltmp5284-Lfunc_begin0 - .quad Lset6818 -Lset6819 = Ltmp5285-Lfunc_begin0 - .quad Lset6819 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6820 = Ltmp5286-Lfunc_begin0 - .quad Lset6820 -Lset6821 = Ltmp5289-Lfunc_begin0 - .quad Lset6821 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6822 = Ltmp5290-Lfunc_begin0 - .quad Lset6822 -Lset6823 = Ltmp5295-Lfunc_begin0 - .quad Lset6823 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6824 = Ltmp5296-Lfunc_begin0 - .quad Lset6824 -Lset6825 = Ltmp5297-Lfunc_begin0 - .quad Lset6825 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6826 = Ltmp5298-Lfunc_begin0 - .quad Lset6826 -Lset6827 = Ltmp5302-Lfunc_begin0 - .quad Lset6827 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6828 = Ltmp5303-Lfunc_begin0 - .quad Lset6828 -Lset6829 = Ltmp5307-Lfunc_begin0 - .quad Lset6829 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6830 = Ltmp5308-Lfunc_begin0 - .quad Lset6830 -Lset6831 = Ltmp5309-Lfunc_begin0 - .quad Lset6831 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6832 = Ltmp5310-Lfunc_begin0 - .quad Lset6832 -Lset6833 = Ltmp5311-Lfunc_begin0 - .quad Lset6833 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6834 = Ltmp5312-Lfunc_begin0 - .quad Lset6834 -Lset6835 = Ltmp5313-Lfunc_begin0 - .quad Lset6835 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6836 = Ltmp5314-Lfunc_begin0 - .quad Lset6836 -Lset6837 = Ltmp5316-Lfunc_begin0 - .quad Lset6837 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6838 = Ltmp5317-Lfunc_begin0 - .quad Lset6838 -Lset6839 = Ltmp5318-Lfunc_begin0 - .quad Lset6839 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6840 = Ltmp5319-Lfunc_begin0 - .quad Lset6840 -Lset6841 = Ltmp5320-Lfunc_begin0 - .quad Lset6841 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc669: -Lset6842 = Lfunc_begin18-Lfunc_begin0 - .quad Lset6842 -Lset6843 = Ltmp5280-Lfunc_begin0 - .quad Lset6843 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6844 = Ltmp5286-Lfunc_begin0 - .quad Lset6844 -Lset6845 = Ltmp5288-Lfunc_begin0 - .quad Lset6845 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6846 = Ltmp5290-Lfunc_begin0 - .quad Lset6846 -Lset6847 = Ltmp5294-Lfunc_begin0 - .quad Lset6847 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6848 = Ltmp5298-Lfunc_begin0 - .quad Lset6848 -Lset6849 = Ltmp5301-Lfunc_begin0 - .quad Lset6849 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6850 = Ltmp5303-Lfunc_begin0 - .quad Lset6850 -Lset6851 = Ltmp5304-Lfunc_begin0 - .quad Lset6851 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6852 = Ltmp5312-Lfunc_begin0 - .quad Lset6852 -Lset6853 = Ltmp5315-Lfunc_begin0 - .quad Lset6853 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc670: -Lset6854 = Lfunc_begin19-Lfunc_begin0 - .quad Lset6854 -Lset6855 = Ltmp5331-Lfunc_begin0 - .quad Lset6855 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6856 = Ltmp5331-Lfunc_begin0 - .quad Lset6856 -Lset6857 = Ltmp5346-Lfunc_begin0 - .quad Lset6857 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6858 = Ltmp5346-Lfunc_begin0 - .quad Lset6858 -Lset6859 = Ltmp5388-Lfunc_begin0 - .quad Lset6859 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -Lset6860 = Ltmp5388-Lfunc_begin0 - .quad Lset6860 -Lset6861 = Ltmp5391-Lfunc_begin0 - .quad Lset6861 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6862 = Ltmp5394-Lfunc_begin0 - .quad Lset6862 -Lset6863 = Ltmp5396-Lfunc_begin0 - .quad Lset6863 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc671: -Lset6864 = Lfunc_begin19-Lfunc_begin0 - .quad Lset6864 -Lset6865 = Ltmp5330-Lfunc_begin0 - .quad Lset6865 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6866 = Ltmp5330-Lfunc_begin0 - .quad Lset6866 -Lset6867 = Ltmp5335-Lfunc_begin0 - .quad Lset6867 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc672: -Lset6868 = Ltmp5334-Lfunc_begin0 - .quad Lset6868 -Lset6869 = Ltmp5336-Lfunc_begin0 - .quad Lset6869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset6870 = Ltmp5395-Lfunc_begin0 - .quad Lset6870 -Lset6871 = Ltmp5396-Lfunc_begin0 - .quad Lset6871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc673: -Lset6872 = Ltmp5337-Lfunc_begin0 - .quad Lset6872 -Lset6873 = Ltmp5341-Lfunc_begin0 - .quad Lset6873 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6874 = Ltmp5345-Lfunc_begin0 - .quad Lset6874 -Lset6875 = Ltmp5351-Lfunc_begin0 - .quad Lset6875 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc674: -Lset6876 = Ltmp5338-Lfunc_begin0 - .quad Lset6876 -Lset6877 = Ltmp5341-Lfunc_begin0 - .quad Lset6877 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc675: -Lset6878 = Ltmp5339-Lfunc_begin0 - .quad Lset6878 -Lset6879 = Ltmp5341-Lfunc_begin0 - .quad Lset6879 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6880 = Ltmp5345-Lfunc_begin0 - .quad Lset6880 -Lset6881 = Ltmp5346-Lfunc_begin0 - .quad Lset6881 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6882 = Ltmp5346-Lfunc_begin0 - .quad Lset6882 -Lset6883 = Lfunc_end19-Lfunc_begin0 - .quad Lset6883 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc676: -Lset6884 = Ltmp5340-Lfunc_begin0 - .quad Lset6884 -Lset6885 = Ltmp5341-Lfunc_begin0 - .quad Lset6885 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6886 = Ltmp5345-Lfunc_begin0 - .quad Lset6886 -Lset6887 = Ltmp5346-Lfunc_begin0 - .quad Lset6887 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset6888 = Ltmp5346-Lfunc_begin0 - .quad Lset6888 -Lset6889 = Ltmp5388-Lfunc_begin0 - .quad Lset6889 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -Lset6890 = Ltmp5388-Lfunc_begin0 - .quad Lset6890 -Lset6891 = Ltmp5389-Lfunc_begin0 - .quad Lset6891 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc677: -Lset6892 = Ltmp5348-Lfunc_begin0 - .quad Lset6892 -Lset6893 = Ltmp5386-Lfunc_begin0 - .quad Lset6893 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset6894 = Ltmp5386-Lfunc_begin0 - .quad Lset6894 -Lset6895 = Ltmp5387-Lfunc_begin0 - .quad Lset6895 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc678: -Lset6896 = Ltmp5349-Lfunc_begin0 - .quad Lset6896 -Lset6897 = Ltmp5352-Lfunc_begin0 - .quad Lset6897 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset6898 = Ltmp5368-Lfunc_begin0 - .quad Lset6898 -Lset6899 = Ltmp5369-Lfunc_begin0 - .quad Lset6899 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset6900 = Ltmp5370-Lfunc_begin0 - .quad Lset6900 -Lset6901 = Ltmp5374-Lfunc_begin0 - .quad Lset6901 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset6902 = Ltmp5376-Lfunc_begin0 - .quad Lset6902 -Lset6903 = Ltmp5377-Lfunc_begin0 - .quad Lset6903 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset6904 = Ltmp5382-Lfunc_begin0 - .quad Lset6904 -Lset6905 = Ltmp5385-Lfunc_begin0 - .quad Lset6905 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc679: -Lset6906 = Ltmp5383-Lfunc_begin0 - .quad Lset6906 -Lset6907 = Ltmp5385-Lfunc_begin0 - .quad Lset6907 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc680: -Lset6908 = Ltmp5395-Lfunc_begin0 - .quad Lset6908 -Lset6909 = Ltmp5396-Lfunc_begin0 - .quad Lset6909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc681: -Lset6910 = Lfunc_begin20-Lfunc_begin0 - .quad Lset6910 -Lset6911 = Ltmp5403-Lfunc_begin0 - .quad Lset6911 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc682: -Lset6912 = Ltmp5402-Lfunc_begin0 - .quad Lset6912 -Lset6913 = Ltmp5407-Lfunc_begin0 - .quad Lset6913 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc683: -Lset6914 = Lfunc_begin21-Lfunc_begin0 - .quad Lset6914 -Lset6915 = Ltmp5418-Lfunc_begin0 - .quad Lset6915 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6916 = Ltmp5418-Lfunc_begin0 - .quad Lset6916 -Lset6917 = Ltmp5440-Lfunc_begin0 - .quad Lset6917 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc684: -Lset6918 = Lfunc_begin21-Lfunc_begin0 - .quad Lset6918 -Lset6919 = Ltmp5429-Lfunc_begin0 - .quad Lset6919 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6920 = Ltmp5429-Lfunc_begin0 - .quad Lset6920 -Lset6921 = Lfunc_end21-Lfunc_begin0 - .quad Lset6921 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 204 ## -180 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc685: -Lset6922 = Lfunc_begin21-Lfunc_begin0 - .quad Lset6922 -Lset6923 = Ltmp5417-Lfunc_begin0 - .quad Lset6923 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6924 = Ltmp5417-Lfunc_begin0 - .quad Lset6924 -Lset6925 = Ltmp5431-Lfunc_begin0 - .quad Lset6925 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6926 = Ltmp5431-Lfunc_begin0 - .quad Lset6926 -Lset6927 = Ltmp5435-Lfunc_begin0 - .quad Lset6927 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 220 ## -164 - .byte 126 ## -Lset6928 = Ltmp5435-Lfunc_begin0 - .quad Lset6928 -Lset6929 = Ltmp5439-Lfunc_begin0 - .quad Lset6929 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc686: -Lset6930 = Ltmp5422-Lfunc_begin0 - .quad Lset6930 -Lset6931 = Ltmp5427-Lfunc_begin0 - .quad Lset6931 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc687: -Lset6932 = Ltmp5423-Lfunc_begin0 - .quad Lset6932 -Lset6933 = Ltmp5434-Lfunc_begin0 - .quad Lset6933 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc688: -Lset6934 = Ltmp5424-Lfunc_begin0 - .quad Lset6934 -Lset6935 = Ltmp5432-Lfunc_begin0 - .quad Lset6935 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc689: -Lset6936 = Ltmp5425-Lfunc_begin0 - .quad Lset6936 -Lset6937 = Ltmp5433-Lfunc_begin0 - .quad Lset6937 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc690: -Lset6938 = Ltmp5426-Lfunc_begin0 - .quad Lset6938 -Lset6939 = Ltmp5435-Lfunc_begin0 - .quad Lset6939 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc691: -Lset6940 = Ltmp5436-Lfunc_begin0 - .quad Lset6940 -Lset6941 = Ltmp5437-Lfunc_begin0 - .quad Lset6941 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc692: -Lset6942 = Lfunc_begin22-Lfunc_begin0 - .quad Lset6942 -Lset6943 = Ltmp5451-Lfunc_begin0 - .quad Lset6943 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6944 = Ltmp5451-Lfunc_begin0 - .quad Lset6944 -Lset6945 = Ltmp5457-Lfunc_begin0 - .quad Lset6945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc693: -Lset6946 = Lfunc_begin22-Lfunc_begin0 - .quad Lset6946 -Lset6947 = Ltmp5450-Lfunc_begin0 - .quad Lset6947 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6948 = Ltmp5450-Lfunc_begin0 - .quad Lset6948 -Lset6949 = Ltmp5457-Lfunc_begin0 - .quad Lset6949 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc694: -Lset6950 = Lfunc_begin22-Lfunc_begin0 - .quad Lset6950 -Lset6951 = Ltmp5449-Lfunc_begin0 - .quad Lset6951 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6952 = Ltmp5449-Lfunc_begin0 - .quad Lset6952 -Lset6953 = Ltmp5456-Lfunc_begin0 - .quad Lset6953 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc695: -Lset6954 = Ltmp5448-Lfunc_begin0 - .quad Lset6954 -Lset6955 = Ltmp5449-Lfunc_begin0 - .quad Lset6955 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6956 = Ltmp5449-Lfunc_begin0 - .quad Lset6956 -Lset6957 = Ltmp5455-Lfunc_begin0 - .quad Lset6957 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc696: -Lset6958 = Ltmp5452-Lfunc_begin0 - .quad Lset6958 -Lset6959 = Ltmp5454-Lfunc_begin0 - .quad Lset6959 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc697: -Lset6960 = Ltmp5452-Lfunc_begin0 - .quad Lset6960 -Lset6961 = Ltmp5454-Lfunc_begin0 - .quad Lset6961 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc698: -Lset6962 = Lfunc_begin23-Lfunc_begin0 - .quad Lset6962 -Lset6963 = Ltmp5468-Lfunc_begin0 - .quad Lset6963 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6964 = Ltmp5468-Lfunc_begin0 - .quad Lset6964 -Lset6965 = Ltmp5474-Lfunc_begin0 - .quad Lset6965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc699: -Lset6966 = Lfunc_begin23-Lfunc_begin0 - .quad Lset6966 -Lset6967 = Ltmp5467-Lfunc_begin0 - .quad Lset6967 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6968 = Ltmp5467-Lfunc_begin0 - .quad Lset6968 -Lset6969 = Ltmp5474-Lfunc_begin0 - .quad Lset6969 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc700: -Lset6970 = Lfunc_begin23-Lfunc_begin0 - .quad Lset6970 -Lset6971 = Ltmp5466-Lfunc_begin0 - .quad Lset6971 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6972 = Ltmp5466-Lfunc_begin0 - .quad Lset6972 -Lset6973 = Ltmp5473-Lfunc_begin0 - .quad Lset6973 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc701: -Lset6974 = Ltmp5465-Lfunc_begin0 - .quad Lset6974 -Lset6975 = Ltmp5466-Lfunc_begin0 - .quad Lset6975 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6976 = Ltmp5466-Lfunc_begin0 - .quad Lset6976 -Lset6977 = Ltmp5472-Lfunc_begin0 - .quad Lset6977 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc702: -Lset6978 = Ltmp5469-Lfunc_begin0 - .quad Lset6978 -Lset6979 = Ltmp5471-Lfunc_begin0 - .quad Lset6979 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc703: -Lset6980 = Ltmp5469-Lfunc_begin0 - .quad Lset6980 -Lset6981 = Ltmp5471-Lfunc_begin0 - .quad Lset6981 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc704: -Lset6982 = Lfunc_begin24-Lfunc_begin0 - .quad Lset6982 -Lset6983 = Ltmp5489-Lfunc_begin0 - .quad Lset6983 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset6984 = Ltmp5489-Lfunc_begin0 - .quad Lset6984 -Lset6985 = Ltmp5498-Lfunc_begin0 - .quad Lset6985 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc705: -Lset6986 = Lfunc_begin24-Lfunc_begin0 - .quad Lset6986 -Lset6987 = Ltmp5488-Lfunc_begin0 - .quad Lset6987 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset6988 = Ltmp5488-Lfunc_begin0 - .quad Lset6988 -Lset6989 = Lfunc_end24-Lfunc_begin0 - .quad Lset6989 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc706: -Lset6990 = Lfunc_begin24-Lfunc_begin0 - .quad Lset6990 -Lset6991 = Ltmp5487-Lfunc_begin0 - .quad Lset6991 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset6992 = Ltmp5487-Lfunc_begin0 - .quad Lset6992 -Lset6993 = Ltmp5497-Lfunc_begin0 - .quad Lset6993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc707: -Lset6994 = Lfunc_begin24-Lfunc_begin0 - .quad Lset6994 -Lset6995 = Ltmp5486-Lfunc_begin0 - .quad Lset6995 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset6996 = Ltmp5486-Lfunc_begin0 - .quad Lset6996 -Lset6997 = Ltmp5493-Lfunc_begin0 - .quad Lset6997 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc708: -Lset6998 = Lfunc_begin24-Lfunc_begin0 - .quad Lset6998 -Lset6999 = Ltmp5485-Lfunc_begin0 - .quad Lset6999 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7000 = Ltmp5485-Lfunc_begin0 - .quad Lset7000 -Lset7001 = Ltmp5494-Lfunc_begin0 - .quad Lset7001 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc709: -Lset7002 = Ltmp5484-Lfunc_begin0 - .quad Lset7002 -Lset7003 = Ltmp5487-Lfunc_begin0 - .quad Lset7003 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7004 = Ltmp5487-Lfunc_begin0 - .quad Lset7004 -Lset7005 = Ltmp5492-Lfunc_begin0 - .quad Lset7005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc710: -Lset7006 = Ltmp5490-Lfunc_begin0 - .quad Lset7006 -Lset7007 = Ltmp5492-Lfunc_begin0 - .quad Lset7007 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc711: -Lset7008 = Ltmp5490-Lfunc_begin0 - .quad Lset7008 -Lset7009 = Ltmp5494-Lfunc_begin0 - .quad Lset7009 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc712: -Lset7010 = Lfunc_begin25-Lfunc_begin0 - .quad Lset7010 -Lset7011 = Ltmp5512-Lfunc_begin0 - .quad Lset7011 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7012 = Ltmp5512-Lfunc_begin0 - .quad Lset7012 -Lset7013 = Lfunc_end25-Lfunc_begin0 - .quad Lset7013 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc713: -Lset7014 = Lfunc_begin25-Lfunc_begin0 - .quad Lset7014 -Lset7015 = Ltmp5511-Lfunc_begin0 - .quad Lset7015 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7016 = Ltmp5511-Lfunc_begin0 - .quad Lset7016 -Lset7017 = Lfunc_end25-Lfunc_begin0 - .quad Lset7017 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc714: -Lset7018 = Lfunc_begin25-Lfunc_begin0 - .quad Lset7018 -Lset7019 = Ltmp5510-Lfunc_begin0 - .quad Lset7019 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7020 = Ltmp5510-Lfunc_begin0 - .quad Lset7020 -Lset7021 = Ltmp5522-Lfunc_begin0 - .quad Lset7021 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7022 = Ltmp5530-Lfunc_begin0 - .quad Lset7022 -Lset7023 = Ltmp5579-Lfunc_begin0 - .quad Lset7023 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7024 = Ltmp5580-Lfunc_begin0 - .quad Lset7024 -Lset7025 = Ltmp5581-Lfunc_begin0 - .quad Lset7025 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7026 = Ltmp5583-Lfunc_begin0 - .quad Lset7026 -Lset7027 = Ltmp5592-Lfunc_begin0 - .quad Lset7027 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7028 = Ltmp5593-Lfunc_begin0 - .quad Lset7028 -Lset7029 = Ltmp5596-Lfunc_begin0 - .quad Lset7029 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7030 = Ltmp5597-Lfunc_begin0 - .quad Lset7030 -Lset7031 = Ltmp5598-Lfunc_begin0 - .quad Lset7031 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7032 = Ltmp5599-Lfunc_begin0 - .quad Lset7032 -Lset7033 = Ltmp5600-Lfunc_begin0 - .quad Lset7033 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc715: -Lset7034 = Lfunc_begin25-Lfunc_begin0 - .quad Lset7034 -Lset7035 = Ltmp5509-Lfunc_begin0 - .quad Lset7035 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7036 = Ltmp5509-Lfunc_begin0 - .quad Lset7036 -Lset7037 = Ltmp5513-Lfunc_begin0 - .quad Lset7037 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc716: -Lset7038 = Ltmp5508-Lfunc_begin0 - .quad Lset7038 -Lset7039 = Ltmp5509-Lfunc_begin0 - .quad Lset7039 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7040 = Ltmp5509-Lfunc_begin0 - .quad Lset7040 -Lset7041 = Ltmp5513-Lfunc_begin0 - .quad Lset7041 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7042 = Ltmp5514-Lfunc_begin0 - .quad Lset7042 -Lset7043 = Ltmp5514-Lfunc_begin0 - .quad Lset7043 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc717: -Lset7044 = Ltmp5515-Lfunc_begin0 - .quad Lset7044 -Lset7045 = Ltmp5518-Lfunc_begin0 - .quad Lset7045 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7046 = Ltmp5518-Lfunc_begin0 - .quad Lset7046 -Lset7047 = Ltmp5523-Lfunc_begin0 - .quad Lset7047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7048 = Ltmp5523-Lfunc_begin0 - .quad Lset7048 -Lset7049 = Ltmp5528-Lfunc_begin0 - .quad Lset7049 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7050 = Ltmp5528-Lfunc_begin0 - .quad Lset7050 -Lset7051 = Ltmp5530-Lfunc_begin0 - .quad Lset7051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7052 = Ltmp5530-Lfunc_begin0 - .quad Lset7052 -Lset7053 = Ltmp5531-Lfunc_begin0 - .quad Lset7053 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7054 = Ltmp5531-Lfunc_begin0 - .quad Lset7054 -Lset7055 = Ltmp5541-Lfunc_begin0 - .quad Lset7055 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7056 = Ltmp5541-Lfunc_begin0 - .quad Lset7056 -Lset7057 = Ltmp5543-Lfunc_begin0 - .quad Lset7057 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7058 = Ltmp5543-Lfunc_begin0 - .quad Lset7058 -Lset7059 = Ltmp5557-Lfunc_begin0 - .quad Lset7059 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7060 = Ltmp5557-Lfunc_begin0 - .quad Lset7060 -Lset7061 = Ltmp5559-Lfunc_begin0 - .quad Lset7061 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7062 = Ltmp5559-Lfunc_begin0 - .quad Lset7062 -Lset7063 = Ltmp5561-Lfunc_begin0 - .quad Lset7063 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7064 = Ltmp5561-Lfunc_begin0 - .quad Lset7064 -Lset7065 = Ltmp5563-Lfunc_begin0 - .quad Lset7065 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7066 = Ltmp5563-Lfunc_begin0 - .quad Lset7066 -Lset7067 = Ltmp5577-Lfunc_begin0 - .quad Lset7067 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7068 = Ltmp5577-Lfunc_begin0 - .quad Lset7068 -Lset7069 = Ltmp5579-Lfunc_begin0 - .quad Lset7069 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7070 = Ltmp5579-Lfunc_begin0 - .quad Lset7070 -Lset7071 = Ltmp5580-Lfunc_begin0 - .quad Lset7071 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7072 = Ltmp5580-Lfunc_begin0 - .quad Lset7072 -Lset7073 = Ltmp5581-Lfunc_begin0 - .quad Lset7073 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7074 = Ltmp5582-Lfunc_begin0 - .quad Lset7074 -Lset7075 = Ltmp5583-Lfunc_begin0 - .quad Lset7075 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7076 = Ltmp5583-Lfunc_begin0 - .quad Lset7076 -Lset7077 = Ltmp5586-Lfunc_begin0 - .quad Lset7077 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7078 = Ltmp5586-Lfunc_begin0 - .quad Lset7078 -Lset7079 = Ltmp5593-Lfunc_begin0 - .quad Lset7079 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7080 = Ltmp5593-Lfunc_begin0 - .quad Lset7080 -Lset7081 = Ltmp5596-Lfunc_begin0 - .quad Lset7081 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7082 = Ltmp5597-Lfunc_begin0 - .quad Lset7082 -Lset7083 = Ltmp5598-Lfunc_begin0 - .quad Lset7083 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7084 = Ltmp5598-Lfunc_begin0 - .quad Lset7084 -Lset7085 = Lfunc_end25-Lfunc_begin0 - .quad Lset7085 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc718: -Lset7086 = Ltmp5516-Lfunc_begin0 - .quad Lset7086 -Lset7087 = Ltmp5522-Lfunc_begin0 - .quad Lset7087 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7088 = Ltmp5529-Lfunc_begin0 - .quad Lset7088 -Lset7089 = Ltmp5579-Lfunc_begin0 - .quad Lset7089 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7090 = Ltmp5580-Lfunc_begin0 - .quad Lset7090 -Lset7091 = Ltmp5581-Lfunc_begin0 - .quad Lset7091 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7092 = Ltmp5583-Lfunc_begin0 - .quad Lset7092 -Lset7093 = Ltmp5592-Lfunc_begin0 - .quad Lset7093 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7094 = Ltmp5593-Lfunc_begin0 - .quad Lset7094 -Lset7095 = Ltmp5596-Lfunc_begin0 - .quad Lset7095 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7096 = Ltmp5597-Lfunc_begin0 - .quad Lset7096 -Lset7097 = Ltmp5598-Lfunc_begin0 - .quad Lset7097 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7098 = Ltmp5599-Lfunc_begin0 - .quad Lset7098 -Lset7099 = Ltmp5600-Lfunc_begin0 - .quad Lset7099 - .short 3 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc719: -Lset7100 = Ltmp5532-Lfunc_begin0 - .quad Lset7100 -Lset7101 = Ltmp5533-Lfunc_begin0 - .quad Lset7101 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7102 = Ltmp5535-Lfunc_begin0 - .quad Lset7102 -Lset7103 = Ltmp5536-Lfunc_begin0 - .quad Lset7103 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc720: -Lset7104 = Ltmp5535-Lfunc_begin0 - .quad Lset7104 -Lset7105 = Ltmp5536-Lfunc_begin0 - .quad Lset7105 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc721: -Lset7106 = Ltmp5535-Lfunc_begin0 - .quad Lset7106 -Lset7107 = Ltmp5536-Lfunc_begin0 - .quad Lset7107 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc722: -Lset7108 = Ltmp5535-Lfunc_begin0 - .quad Lset7108 -Lset7109 = Ltmp5536-Lfunc_begin0 - .quad Lset7109 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc723: -Lset7110 = Ltmp5535-Lfunc_begin0 - .quad Lset7110 -Lset7111 = Ltmp5536-Lfunc_begin0 - .quad Lset7111 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc724: -Lset7112 = Ltmp5535-Lfunc_begin0 - .quad Lset7112 -Lset7113 = Ltmp5536-Lfunc_begin0 - .quad Lset7113 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc725: -Lset7114 = Ltmp5535-Lfunc_begin0 - .quad Lset7114 -Lset7115 = Ltmp5536-Lfunc_begin0 - .quad Lset7115 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc726: -Lset7116 = Ltmp5537-Lfunc_begin0 - .quad Lset7116 -Lset7117 = Ltmp5538-Lfunc_begin0 - .quad Lset7117 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7118 = Ltmp5553-Lfunc_begin0 - .quad Lset7118 -Lset7119 = Ltmp5555-Lfunc_begin0 - .quad Lset7119 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7120 = Ltmp5560-Lfunc_begin0 - .quad Lset7120 -Lset7121 = Ltmp5564-Lfunc_begin0 - .quad Lset7121 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7122 = Ltmp5584-Lfunc_begin0 - .quad Lset7122 -Lset7123 = Ltmp5586-Lfunc_begin0 - .quad Lset7123 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc727: -Lset7124 = Ltmp5537-Lfunc_begin0 - .quad Lset7124 -Lset7125 = Ltmp5538-Lfunc_begin0 - .quad Lset7125 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc728: -Lset7126 = Ltmp5537-Lfunc_begin0 - .quad Lset7126 -Lset7127 = Ltmp5538-Lfunc_begin0 - .quad Lset7127 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc729: -Lset7128 = Ltmp5537-Lfunc_begin0 - .quad Lset7128 -Lset7129 = Ltmp5538-Lfunc_begin0 - .quad Lset7129 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7130 = Ltmp5553-Lfunc_begin0 - .quad Lset7130 -Lset7131 = Ltmp5555-Lfunc_begin0 - .quad Lset7131 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc730: -Lset7132 = Ltmp5548-Lfunc_begin0 - .quad Lset7132 -Lset7133 = Ltmp5553-Lfunc_begin0 - .quad Lset7133 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc731: -Lset7134 = Ltmp5559-Lfunc_begin0 - .quad Lset7134 -Lset7135 = Ltmp5560-Lfunc_begin0 - .quad Lset7135 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc732: -Lset7136 = Ltmp5563-Lfunc_begin0 - .quad Lset7136 -Lset7137 = Ltmp5564-Lfunc_begin0 - .quad Lset7137 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc733: -Lset7138 = Ltmp5566-Lfunc_begin0 - .quad Lset7138 -Lset7139 = Ltmp5568-Lfunc_begin0 - .quad Lset7139 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -Lset7140 = Ltmp5586-Lfunc_begin0 - .quad Lset7140 -Lset7141 = Ltmp5592-Lfunc_begin0 - .quad Lset7141 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc734: -Lset7142 = Ltmp5570-Lfunc_begin0 - .quad Lset7142 -Lset7143 = Ltmp5571-Lfunc_begin0 - .quad Lset7143 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7144 = Ltmp5571-Lfunc_begin0 - .quad Lset7144 -Lset7145 = Lfunc_end25-Lfunc_begin0 - .quad Lset7145 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 168 ## -88 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc735: -Lset7146 = Ltmp5572-Lfunc_begin0 - .quad Lset7146 -Lset7147 = Ltmp5574-Lfunc_begin0 - .quad Lset7147 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc736: -Lset7148 = Ltmp5579-Lfunc_begin0 - .quad Lset7148 -Lset7149 = Ltmp5580-Lfunc_begin0 - .quad Lset7149 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc737: -Lset7150 = Ltmp5595-Lfunc_begin0 - .quad Lset7150 -Lset7151 = Ltmp5596-Lfunc_begin0 - .quad Lset7151 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc738: -Lset7152 = Lfunc_begin26-Lfunc_begin0 - .quad Lset7152 -Lset7153 = Ltmp5614-Lfunc_begin0 - .quad Lset7153 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7154 = Ltmp5614-Lfunc_begin0 - .quad Lset7154 -Lset7155 = Ltmp5629-Lfunc_begin0 - .quad Lset7155 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc739: -Lset7156 = Lfunc_begin26-Lfunc_begin0 - .quad Lset7156 -Lset7157 = Ltmp5613-Lfunc_begin0 - .quad Lset7157 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7158 = Ltmp5613-Lfunc_begin0 - .quad Lset7158 -Lset7159 = Ltmp5628-Lfunc_begin0 - .quad Lset7159 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc740: -Lset7160 = Lfunc_begin26-Lfunc_begin0 - .quad Lset7160 -Lset7161 = Ltmp5612-Lfunc_begin0 - .quad Lset7161 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7162 = Ltmp5612-Lfunc_begin0 - .quad Lset7162 -Lset7163 = Ltmp5627-Lfunc_begin0 - .quad Lset7163 - .short 3 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc741: -Lset7164 = Lfunc_begin26-Lfunc_begin0 - .quad Lset7164 -Lset7165 = Ltmp5611-Lfunc_begin0 - .quad Lset7165 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7166 = Ltmp5611-Lfunc_begin0 - .quad Lset7166 -Lset7167 = Ltmp5627-Lfunc_begin0 - .quad Lset7167 - .short 3 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc742: -Lset7168 = Ltmp5615-Lfunc_begin0 - .quad Lset7168 -Lset7169 = Ltmp5616-Lfunc_begin0 - .quad Lset7169 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset7170 = Ltmp5619-Lfunc_begin0 - .quad Lset7170 -Lset7171 = Ltmp5627-Lfunc_begin0 - .quad Lset7171 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc743: -Lset7172 = Ltmp5623-Lfunc_begin0 - .quad Lset7172 -Lset7173 = Ltmp5625-Lfunc_begin0 - .quad Lset7173 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc744: -Lset7174 = Ltmp5623-Lfunc_begin0 - .quad Lset7174 -Lset7175 = Ltmp5625-Lfunc_begin0 - .quad Lset7175 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc745: -Lset7176 = Ltmp5624-Lfunc_begin0 - .quad Lset7176 -Lset7177 = Ltmp5627-Lfunc_begin0 - .quad Lset7177 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc746: -Lset7178 = Lfunc_begin27-Lfunc_begin0 - .quad Lset7178 -Lset7179 = Ltmp5640-Lfunc_begin0 - .quad Lset7179 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7180 = Ltmp5640-Lfunc_begin0 - .quad Lset7180 -Lset7181 = Ltmp5674-Lfunc_begin0 - .quad Lset7181 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7182 = Ltmp5675-Lfunc_begin0 - .quad Lset7182 -Lset7183 = Ltmp5687-Lfunc_begin0 - .quad Lset7183 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc747: -Lset7184 = Lfunc_begin27-Lfunc_begin0 - .quad Lset7184 -Lset7185 = Ltmp5639-Lfunc_begin0 - .quad Lset7185 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7186 = Ltmp5639-Lfunc_begin0 - .quad Lset7186 -Lset7187 = Ltmp5662-Lfunc_begin0 - .quad Lset7187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7188 = Ltmp5662-Lfunc_begin0 - .quad Lset7188 -Lset7189 = Ltmp5681-Lfunc_begin0 - .quad Lset7189 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -Lset7190 = Ltmp5681-Lfunc_begin0 - .quad Lset7190 -Lset7191 = Ltmp5682-Lfunc_begin0 - .quad Lset7191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7192 = Ltmp5682-Lfunc_begin0 - .quad Lset7192 -Lset7193 = Ltmp5683-Lfunc_begin0 - .quad Lset7193 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -Lset7194 = Ltmp5683-Lfunc_begin0 - .quad Lset7194 -Lset7195 = Ltmp5687-Lfunc_begin0 - .quad Lset7195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc748: -Lset7196 = Lfunc_begin27-Lfunc_begin0 - .quad Lset7196 -Lset7197 = Ltmp5642-Lfunc_begin0 - .quad Lset7197 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7198 = Ltmp5642-Lfunc_begin0 - .quad Lset7198 -Lset7199 = Lfunc_end27-Lfunc_begin0 - .quad Lset7199 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc749: -Lset7200 = Lfunc_begin27-Lfunc_begin0 - .quad Lset7200 -Lset7201 = Ltmp5665-Lfunc_begin0 - .quad Lset7201 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc750: -Lset7202 = Lfunc_begin27-Lfunc_begin0 - .quad Lset7202 -Lset7203 = Ltmp5648-Lfunc_begin0 - .quad Lset7203 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc751: -Lset7204 = Ltmp5641-Lfunc_begin0 - .quad Lset7204 -Lset7205 = Ltmp5660-Lfunc_begin0 - .quad Lset7205 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7206 = Ltmp5661-Lfunc_begin0 - .quad Lset7206 -Lset7207 = Ltmp5674-Lfunc_begin0 - .quad Lset7207 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7208 = Ltmp5675-Lfunc_begin0 - .quad Lset7208 -Lset7209 = Ltmp5678-Lfunc_begin0 - .quad Lset7209 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc752: -Lset7210 = Ltmp5641-Lfunc_begin0 - .quad Lset7210 -Lset7211 = Ltmp5657-Lfunc_begin0 - .quad Lset7211 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc753: -Lset7212 = Ltmp5641-Lfunc_begin0 - .quad Lset7212 -Lset7213 = Ltmp5648-Lfunc_begin0 - .quad Lset7213 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7214 = Ltmp5661-Lfunc_begin0 - .quad Lset7214 -Lset7215 = Ltmp5674-Lfunc_begin0 - .quad Lset7215 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7216 = Ltmp5675-Lfunc_begin0 - .quad Lset7216 -Lset7217 = Ltmp5678-Lfunc_begin0 - .quad Lset7217 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc754: -Lset7218 = Ltmp5643-Lfunc_begin0 - .quad Lset7218 -Lset7219 = Ltmp5647-Lfunc_begin0 - .quad Lset7219 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset7220 = Ltmp5647-Lfunc_begin0 - .quad Lset7220 -Lset7221 = Lfunc_end27-Lfunc_begin0 - .quad Lset7221 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc755: -Lset7222 = Ltmp5643-Lfunc_begin0 - .quad Lset7222 -Lset7223 = Ltmp5647-Lfunc_begin0 - .quad Lset7223 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset7224 = Ltmp5647-Lfunc_begin0 - .quad Lset7224 -Lset7225 = Ltmp5679-Lfunc_begin0 - .quad Lset7225 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 -Lset7226 = Ltmp5679-Lfunc_begin0 - .quad Lset7226 -Lset7227 = Ltmp5682-Lfunc_begin0 - .quad Lset7227 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc756: -Lset7228 = Ltmp5643-Lfunc_begin0 - .quad Lset7228 -Lset7229 = Ltmp5647-Lfunc_begin0 - .quad Lset7229 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset7230 = Ltmp5647-Lfunc_begin0 - .quad Lset7230 -Lset7231 = Ltmp5679-Lfunc_begin0 - .quad Lset7231 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 -Lset7232 = Ltmp5679-Lfunc_begin0 - .quad Lset7232 -Lset7233 = Ltmp5682-Lfunc_begin0 - .quad Lset7233 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc757: -Lset7234 = Ltmp5644-Lfunc_begin0 - .quad Lset7234 -Lset7235 = Ltmp5657-Lfunc_begin0 - .quad Lset7235 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc758: -Lset7236 = Ltmp5644-Lfunc_begin0 - .quad Lset7236 -Lset7237 = Ltmp5661-Lfunc_begin0 - .quad Lset7237 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc759: -Lset7238 = Ltmp5644-Lfunc_begin0 - .quad Lset7238 -Lset7239 = Ltmp5648-Lfunc_begin0 - .quad Lset7239 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc760: -Lset7240 = Ltmp5646-Lfunc_begin0 - .quad Lset7240 -Lset7241 = Ltmp5657-Lfunc_begin0 - .quad Lset7241 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc761: -Lset7242 = Ltmp5646-Lfunc_begin0 - .quad Lset7242 -Lset7243 = Ltmp5648-Lfunc_begin0 - .quad Lset7243 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7244 = Ltmp5661-Lfunc_begin0 - .quad Lset7244 -Lset7245 = Ltmp5670-Lfunc_begin0 - .quad Lset7245 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc762: -Lset7246 = Ltmp5647-Lfunc_begin0 - .quad Lset7246 -Lset7247 = Ltmp5657-Lfunc_begin0 - .quad Lset7247 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc763: -Lset7248 = Ltmp5647-Lfunc_begin0 - .quad Lset7248 -Lset7249 = Ltmp5648-Lfunc_begin0 - .quad Lset7249 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7250 = Ltmp5661-Lfunc_begin0 - .quad Lset7250 -Lset7251 = Ltmp5670-Lfunc_begin0 - .quad Lset7251 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc764: -Lset7252 = Ltmp5653-Lfunc_begin0 - .quad Lset7252 -Lset7253 = Ltmp5654-Lfunc_begin0 - .quad Lset7253 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc765: -Lset7254 = Ltmp5660-Lfunc_begin0 - .quad Lset7254 -Lset7255 = Ltmp5661-Lfunc_begin0 - .quad Lset7255 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc766: -Lset7256 = Ltmp5660-Lfunc_begin0 - .quad Lset7256 -Lset7257 = Ltmp5661-Lfunc_begin0 - .quad Lset7257 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc767: -Lset7258 = Ltmp5660-Lfunc_begin0 - .quad Lset7258 -Lset7259 = Ltmp5661-Lfunc_begin0 - .quad Lset7259 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc768: -Lset7260 = Ltmp5660-Lfunc_begin0 - .quad Lset7260 -Lset7261 = Ltmp5661-Lfunc_begin0 - .quad Lset7261 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc769: -Lset7262 = Ltmp5664-Lfunc_begin0 - .quad Lset7262 -Lset7263 = Ltmp5674-Lfunc_begin0 - .quad Lset7263 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7264 = Ltmp5675-Lfunc_begin0 - .quad Lset7264 -Lset7265 = Ltmp5682-Lfunc_begin0 - .quad Lset7265 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc770: -Lset7266 = Ltmp5665-Lfunc_begin0 - .quad Lset7266 -Lset7267 = Ltmp5667-Lfunc_begin0 - .quad Lset7267 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7268 = Ltmp5667-Lfunc_begin0 - .quad Lset7268 -Lset7269 = Lfunc_end27-Lfunc_begin0 - .quad Lset7269 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc771: -Lset7270 = Ltmp5665-Lfunc_begin0 - .quad Lset7270 -Lset7271 = Ltmp5667-Lfunc_begin0 - .quad Lset7271 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7272 = Ltmp5667-Lfunc_begin0 - .quad Lset7272 -Lset7273 = Lfunc_end27-Lfunc_begin0 - .quad Lset7273 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc772: -Lset7274 = Lfunc_begin28-Lfunc_begin0 - .quad Lset7274 -Lset7275 = Ltmp5698-Lfunc_begin0 - .quad Lset7275 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7276 = Ltmp5698-Lfunc_begin0 - .quad Lset7276 -Lset7277 = Ltmp5704-Lfunc_begin0 - .quad Lset7277 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7278 = Ltmp5707-Lfunc_begin0 - .quad Lset7278 -Lset7279 = Ltmp5715-Lfunc_begin0 - .quad Lset7279 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc773: -Lset7280 = Lfunc_begin28-Lfunc_begin0 - .quad Lset7280 -Lset7281 = Ltmp5697-Lfunc_begin0 - .quad Lset7281 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7282 = Ltmp5697-Lfunc_begin0 - .quad Lset7282 -Lset7283 = Ltmp5704-Lfunc_begin0 - .quad Lset7283 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7284 = Ltmp5707-Lfunc_begin0 - .quad Lset7284 -Lset7285 = Ltmp5712-Lfunc_begin0 - .quad Lset7285 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc774: -Lset7286 = Lfunc_begin28-Lfunc_begin0 - .quad Lset7286 -Lset7287 = Ltmp5704-Lfunc_begin0 - .quad Lset7287 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc775: -Lset7288 = Lfunc_begin28-Lfunc_begin0 - .quad Lset7288 -Lset7289 = Ltmp5709-Lfunc_begin0 - .quad Lset7289 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7290 = Ltmp5709-Lfunc_begin0 - .quad Lset7290 -Lset7291 = Ltmp5710-Lfunc_begin0 - .quad Lset7291 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -Lset7292 = Ltmp5710-Lfunc_begin0 - .quad Lset7292 -Lset7293 = Ltmp5715-Lfunc_begin0 - .quad Lset7293 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc776: -Lset7294 = Lfunc_begin28-Lfunc_begin0 - .quad Lset7294 -Lset7295 = Ltmp5703-Lfunc_begin0 - .quad Lset7295 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7296 = Ltmp5703-Lfunc_begin0 - .quad Lset7296 -Lset7297 = Ltmp5705-Lfunc_begin0 - .quad Lset7297 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7298 = Ltmp5705-Lfunc_begin0 - .quad Lset7298 -Lset7299 = Ltmp5707-Lfunc_begin0 - .quad Lset7299 - .short 3 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7300 = Ltmp5707-Lfunc_begin0 - .quad Lset7300 -Lset7301 = Ltmp5720-Lfunc_begin0 - .quad Lset7301 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc777: -Lset7302 = Ltmp5699-Lfunc_begin0 - .quad Lset7302 -Lset7303 = Ltmp5708-Lfunc_begin0 - .quad Lset7303 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7304 = Ltmp5713-Lfunc_begin0 - .quad Lset7304 -Lset7305 = Ltmp5715-Lfunc_begin0 - .quad Lset7305 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc778: -Lset7306 = Ltmp5702-Lfunc_begin0 - .quad Lset7306 -Lset7307 = Ltmp5703-Lfunc_begin0 - .quad Lset7307 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7308 = Ltmp5704-Lfunc_begin0 - .quad Lset7308 -Lset7309 = Ltmp5720-Lfunc_begin0 - .quad Lset7309 - .short 3 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc779: -Lset7310 = Ltmp5706-Lfunc_begin0 - .quad Lset7310 -Lset7311 = Ltmp5707-Lfunc_begin0 - .quad Lset7311 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -Lset7312 = Ltmp5714-Lfunc_begin0 - .quad Lset7312 -Lset7313 = Ltmp5715-Lfunc_begin0 - .quad Lset7313 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc780: -Lset7314 = Lfunc_begin29-Lfunc_begin0 - .quad Lset7314 -Lset7315 = Ltmp5734-Lfunc_begin0 - .quad Lset7315 - .short 3 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc781: -Lset7316 = Lfunc_begin29-Lfunc_begin0 - .quad Lset7316 -Lset7317 = Ltmp5738-Lfunc_begin0 - .quad Lset7317 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7318 = Ltmp5738-Lfunc_begin0 - .quad Lset7318 -Lset7319 = Ltmp5739-Lfunc_begin0 - .quad Lset7319 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7320 = Ltmp5739-Lfunc_begin0 - .quad Lset7320 -Lset7321 = Lfunc_end29-Lfunc_begin0 - .quad Lset7321 - .short 3 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc782: -Lset7322 = Ltmp5733-Lfunc_begin0 - .quad Lset7322 -Lset7323 = Ltmp5737-Lfunc_begin0 - .quad Lset7323 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset7324 = Ltmp5739-Lfunc_begin0 - .quad Lset7324 -Lset7325 = Ltmp5740-Lfunc_begin0 - .quad Lset7325 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc783: -Lset7326 = Lfunc_begin30-Lfunc_begin0 - .quad Lset7326 -Lset7327 = Ltmp5755-Lfunc_begin0 - .quad Lset7327 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7328 = Ltmp5755-Lfunc_begin0 - .quad Lset7328 -Lset7329 = Ltmp5757-Lfunc_begin0 - .quad Lset7329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7330 = Ltmp5764-Lfunc_begin0 - .quad Lset7330 -Lset7331 = Ltmp5782-Lfunc_begin0 - .quad Lset7331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7332 = Ltmp5783-Lfunc_begin0 - .quad Lset7332 -Lset7333 = Lfunc_end30-Lfunc_begin0 - .quad Lset7333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc784: -Lset7334 = Lfunc_begin30-Lfunc_begin0 - .quad Lset7334 -Lset7335 = Ltmp5754-Lfunc_begin0 - .quad Lset7335 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7336 = Ltmp5754-Lfunc_begin0 - .quad Lset7336 -Lset7337 = Ltmp5762-Lfunc_begin0 - .quad Lset7337 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7338 = Ltmp5764-Lfunc_begin0 - .quad Lset7338 -Lset7339 = Ltmp5783-Lfunc_begin0 - .quad Lset7339 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc785: -Lset7340 = Lfunc_begin30-Lfunc_begin0 - .quad Lset7340 -Lset7341 = Ltmp5753-Lfunc_begin0 - .quad Lset7341 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7342 = Ltmp5753-Lfunc_begin0 - .quad Lset7342 -Lset7343 = Ltmp5757-Lfunc_begin0 - .quad Lset7343 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7344 = Ltmp5764-Lfunc_begin0 - .quad Lset7344 -Lset7345 = Ltmp5765-Lfunc_begin0 - .quad Lset7345 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc786: -Lset7346 = Lfunc_begin30-Lfunc_begin0 - .quad Lset7346 -Lset7347 = Ltmp5752-Lfunc_begin0 - .quad Lset7347 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7348 = Ltmp5752-Lfunc_begin0 - .quad Lset7348 -Lset7349 = Ltmp5763-Lfunc_begin0 - .quad Lset7349 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7350 = Ltmp5764-Lfunc_begin0 - .quad Lset7350 -Lset7351 = Ltmp5783-Lfunc_begin0 - .quad Lset7351 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc787: -Lset7352 = Ltmp5759-Lfunc_begin0 - .quad Lset7352 -Lset7353 = Ltmp5760-Lfunc_begin0 - .quad Lset7353 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc788: -Lset7354 = Ltmp5760-Lfunc_begin0 - .quad Lset7354 -Lset7355 = Ltmp5764-Lfunc_begin0 - .quad Lset7355 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc789: -Lset7356 = Ltmp5765-Lfunc_begin0 - .quad Lset7356 -Lset7357 = Ltmp5767-Lfunc_begin0 - .quad Lset7357 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset7358 = Ltmp5771-Lfunc_begin0 - .quad Lset7358 -Lset7359 = Ltmp5776-Lfunc_begin0 - .quad Lset7359 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc790: -Lset7360 = Ltmp5777-Lfunc_begin0 - .quad Lset7360 -Lset7361 = Ltmp5778-Lfunc_begin0 - .quad Lset7361 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7362 = Ltmp5778-Lfunc_begin0 - .quad Lset7362 -Lset7363 = Lfunc_end30-Lfunc_begin0 - .quad Lset7363 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc791: -Lset7364 = Ltmp5779-Lfunc_begin0 - .quad Lset7364 -Lset7365 = Ltmp5781-Lfunc_begin0 - .quad Lset7365 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc792: -Lset7366 = Lfunc_begin31-Lfunc_begin0 - .quad Lset7366 -Lset7367 = Ltmp5795-Lfunc_begin0 - .quad Lset7367 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7368 = Ltmp5795-Lfunc_begin0 - .quad Lset7368 -Lset7369 = Ltmp5797-Lfunc_begin0 - .quad Lset7369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7370 = Ltmp5804-Lfunc_begin0 - .quad Lset7370 -Lset7371 = Ltmp5805-Lfunc_begin0 - .quad Lset7371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7372 = Ltmp5806-Lfunc_begin0 - .quad Lset7372 -Lset7373 = Ltmp5815-Lfunc_begin0 - .quad Lset7373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7374 = Ltmp5819-Lfunc_begin0 - .quad Lset7374 -Lset7375 = Lfunc_end31-Lfunc_begin0 - .quad Lset7375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc793: -Lset7376 = Lfunc_begin31-Lfunc_begin0 - .quad Lset7376 -Lset7377 = Ltmp5794-Lfunc_begin0 - .quad Lset7377 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7378 = Ltmp5794-Lfunc_begin0 - .quad Lset7378 -Lset7379 = Ltmp5802-Lfunc_begin0 - .quad Lset7379 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7380 = Ltmp5804-Lfunc_begin0 - .quad Lset7380 -Lset7381 = Ltmp5819-Lfunc_begin0 - .quad Lset7381 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc794: -Lset7382 = Lfunc_begin31-Lfunc_begin0 - .quad Lset7382 -Lset7383 = Ltmp5793-Lfunc_begin0 - .quad Lset7383 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7384 = Ltmp5793-Lfunc_begin0 - .quad Lset7384 -Lset7385 = Ltmp5798-Lfunc_begin0 - .quad Lset7385 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7386 = Ltmp5804-Lfunc_begin0 - .quad Lset7386 -Lset7387 = Ltmp5811-Lfunc_begin0 - .quad Lset7387 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc795: -Lset7388 = Lfunc_begin31-Lfunc_begin0 - .quad Lset7388 -Lset7389 = Ltmp5792-Lfunc_begin0 - .quad Lset7389 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7390 = Ltmp5792-Lfunc_begin0 - .quad Lset7390 -Lset7391 = Ltmp5803-Lfunc_begin0 - .quad Lset7391 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset7392 = Ltmp5804-Lfunc_begin0 - .quad Lset7392 -Lset7393 = Ltmp5819-Lfunc_begin0 - .quad Lset7393 - .short 3 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc796: -Lset7394 = Ltmp5799-Lfunc_begin0 - .quad Lset7394 -Lset7395 = Ltmp5800-Lfunc_begin0 - .quad Lset7395 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc797: -Lset7396 = Ltmp5800-Lfunc_begin0 - .quad Lset7396 -Lset7397 = Ltmp5804-Lfunc_begin0 - .quad Lset7397 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc798: -Lset7398 = Ltmp5808-Lfunc_begin0 - .quad Lset7398 -Lset7399 = Ltmp5811-Lfunc_begin0 - .quad Lset7399 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc799: -Lset7400 = Ltmp5809-Lfunc_begin0 - .quad Lset7400 -Lset7401 = Ltmp5810-Lfunc_begin0 - .quad Lset7401 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc800: -Lset7402 = Lfunc_begin32-Lfunc_begin0 - .quad Lset7402 -Lset7403 = Ltmp5823-Lfunc_begin0 - .quad Lset7403 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc801: -Lset7404 = Lfunc_begin32-Lfunc_begin0 - .quad Lset7404 -Lset7405 = Ltmp5825-Lfunc_begin0 - .quad Lset7405 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc802: -Lset7406 = Lfunc_begin32-Lfunc_begin0 - .quad Lset7406 -Lset7407 = Ltmp5824-Lfunc_begin0 - .quad Lset7407 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc803: -Lset7408 = Ltmp5823-Lfunc_begin0 - .quad Lset7408 -Lset7409 = Ltmp5828-Lfunc_begin0 - .quad Lset7409 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7410 = Ltmp5829-Lfunc_begin0 - .quad Lset7410 -Lset7411 = Ltmp5830-Lfunc_begin0 - .quad Lset7411 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc804: -Lset7412 = Lfunc_begin33-Lfunc_begin0 - .quad Lset7412 -Lset7413 = Ltmp5838-Lfunc_begin0 - .quad Lset7413 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc805: -Lset7414 = Lfunc_begin33-Lfunc_begin0 - .quad Lset7414 -Lset7415 = Ltmp5840-Lfunc_begin0 - .quad Lset7415 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc806: -Lset7416 = Lfunc_begin33-Lfunc_begin0 - .quad Lset7416 -Lset7417 = Ltmp5839-Lfunc_begin0 - .quad Lset7417 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc807: -Lset7418 = Ltmp5838-Lfunc_begin0 - .quad Lset7418 -Lset7419 = Ltmp5843-Lfunc_begin0 - .quad Lset7419 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7420 = Ltmp5844-Lfunc_begin0 - .quad Lset7420 -Lset7421 = Ltmp5845-Lfunc_begin0 - .quad Lset7421 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc808: -Lset7422 = Lfunc_begin34-Lfunc_begin0 - .quad Lset7422 -Lset7423 = Ltmp5853-Lfunc_begin0 - .quad Lset7423 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc809: -Lset7424 = Lfunc_begin34-Lfunc_begin0 - .quad Lset7424 -Lset7425 = Ltmp5855-Lfunc_begin0 - .quad Lset7425 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc810: -Lset7426 = Lfunc_begin34-Lfunc_begin0 - .quad Lset7426 -Lset7427 = Ltmp5854-Lfunc_begin0 - .quad Lset7427 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc811: -Lset7428 = Ltmp5853-Lfunc_begin0 - .quad Lset7428 -Lset7429 = Ltmp5858-Lfunc_begin0 - .quad Lset7429 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7430 = Ltmp5859-Lfunc_begin0 - .quad Lset7430 -Lset7431 = Ltmp5860-Lfunc_begin0 - .quad Lset7431 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc812: -Lset7432 = Lfunc_begin35-Lfunc_begin0 - .quad Lset7432 -Lset7433 = Ltmp5870-Lfunc_begin0 - .quad Lset7433 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc813: -Lset7434 = Lfunc_begin35-Lfunc_begin0 - .quad Lset7434 -Lset7435 = Ltmp5872-Lfunc_begin0 - .quad Lset7435 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc814: -Lset7436 = Lfunc_begin35-Lfunc_begin0 - .quad Lset7436 -Lset7437 = Ltmp5871-Lfunc_begin0 - .quad Lset7437 - .short 3 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc815: -Lset7438 = Ltmp5870-Lfunc_begin0 - .quad Lset7438 -Lset7439 = Ltmp5875-Lfunc_begin0 - .quad Lset7439 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7440 = Ltmp5876-Lfunc_begin0 - .quad Lset7440 -Lset7441 = Lfunc_end35-Lfunc_begin0 - .quad Lset7441 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc816: -Lset7442 = Lfunc_begin36-Lfunc_begin0 - .quad Lset7442 -Lset7443 = Ltmp5890-Lfunc_begin0 - .quad Lset7443 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7444 = Ltmp5890-Lfunc_begin0 - .quad Lset7444 -Lset7445 = Ltmp5893-Lfunc_begin0 - .quad Lset7445 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7446 = Ltmp5896-Lfunc_begin0 - .quad Lset7446 -Lset7447 = Ltmp5902-Lfunc_begin0 - .quad Lset7447 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7448 = Ltmp5905-Lfunc_begin0 - .quad Lset7448 -Lset7449 = Ltmp5906-Lfunc_begin0 - .quad Lset7449 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7450 = Ltmp5908-Lfunc_begin0 - .quad Lset7450 -Lset7451 = Ltmp5928-Lfunc_begin0 - .quad Lset7451 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7452 = Ltmp5930-Lfunc_begin0 - .quad Lset7452 -Lset7453 = Ltmp5932-Lfunc_begin0 - .quad Lset7453 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc817: -Lset7454 = Lfunc_begin36-Lfunc_begin0 - .quad Lset7454 -Lset7455 = Ltmp5889-Lfunc_begin0 - .quad Lset7455 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7456 = Ltmp5889-Lfunc_begin0 - .quad Lset7456 -Lset7457 = Ltmp5904-Lfunc_begin0 - .quad Lset7457 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7458 = Ltmp5905-Lfunc_begin0 - .quad Lset7458 -Lset7459 = Lfunc_end36-Lfunc_begin0 - .quad Lset7459 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc818: -Lset7460 = Lfunc_begin36-Lfunc_begin0 - .quad Lset7460 -Lset7461 = Ltmp5888-Lfunc_begin0 - .quad Lset7461 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7462 = Ltmp5888-Lfunc_begin0 - .quad Lset7462 -Lset7463 = Ltmp5902-Lfunc_begin0 - .quad Lset7463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7464 = Ltmp5905-Lfunc_begin0 - .quad Lset7464 -Lset7465 = Ltmp5906-Lfunc_begin0 - .quad Lset7465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7466 = Ltmp5908-Lfunc_begin0 - .quad Lset7466 -Lset7467 = Ltmp5928-Lfunc_begin0 - .quad Lset7467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7468 = Ltmp5930-Lfunc_begin0 - .quad Lset7468 -Lset7469 = Ltmp5932-Lfunc_begin0 - .quad Lset7469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc819: -Lset7470 = Lfunc_begin36-Lfunc_begin0 - .quad Lset7470 -Lset7471 = Ltmp5887-Lfunc_begin0 - .quad Lset7471 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7472 = Ltmp5887-Lfunc_begin0 - .quad Lset7472 -Lset7473 = Ltmp5903-Lfunc_begin0 - .quad Lset7473 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7474 = Ltmp5905-Lfunc_begin0 - .quad Lset7474 -Lset7475 = Ltmp5907-Lfunc_begin0 - .quad Lset7475 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7476 = Ltmp5908-Lfunc_begin0 - .quad Lset7476 -Lset7477 = Ltmp5928-Lfunc_begin0 - .quad Lset7477 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7478 = Ltmp5930-Lfunc_begin0 - .quad Lset7478 -Lset7479 = Ltmp5932-Lfunc_begin0 - .quad Lset7479 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc820: -Lset7480 = Ltmp5886-Lfunc_begin0 - .quad Lset7480 -Lset7481 = Ltmp5889-Lfunc_begin0 - .quad Lset7481 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7482 = Ltmp5889-Lfunc_begin0 - .quad Lset7482 -Lset7483 = Ltmp5892-Lfunc_begin0 - .quad Lset7483 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc821: -Lset7484 = Ltmp5886-Lfunc_begin0 - .quad Lset7484 -Lset7485 = Ltmp5889-Lfunc_begin0 - .quad Lset7485 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7486 = Ltmp5889-Lfunc_begin0 - .quad Lset7486 -Lset7487 = Ltmp5892-Lfunc_begin0 - .quad Lset7487 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc822: -Lset7488 = Ltmp5894-Lfunc_begin0 - .quad Lset7488 -Lset7489 = Ltmp5895-Lfunc_begin0 - .quad Lset7489 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc823: -Lset7490 = Ltmp5898-Lfunc_begin0 - .quad Lset7490 -Lset7491 = Ltmp5899-Lfunc_begin0 - .quad Lset7491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7492 = Ltmp5910-Lfunc_begin0 - .quad Lset7492 -Lset7493 = Ltmp5914-Lfunc_begin0 - .quad Lset7493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7494 = Ltmp5920-Lfunc_begin0 - .quad Lset7494 -Lset7495 = Ltmp5925-Lfunc_begin0 - .quad Lset7495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7496 = Ltmp5931-Lfunc_begin0 - .quad Lset7496 -Lset7497 = Ltmp5932-Lfunc_begin0 - .quad Lset7497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc824: -Lset7498 = Ltmp5911-Lfunc_begin0 - .quad Lset7498 -Lset7499 = Ltmp5912-Lfunc_begin0 - .quad Lset7499 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc825: -Lset7500 = Ltmp5916-Lfunc_begin0 - .quad Lset7500 -Lset7501 = Ltmp5920-Lfunc_begin0 - .quad Lset7501 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7502 = Ltmp5925-Lfunc_begin0 - .quad Lset7502 -Lset7503 = Ltmp5928-Lfunc_begin0 - .quad Lset7503 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc826: -Lset7504 = Ltmp5917-Lfunc_begin0 - .quad Lset7504 -Lset7505 = Ltmp5918-Lfunc_begin0 - .quad Lset7505 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc827: -Lset7506 = Lfunc_begin37-Lfunc_begin0 - .quad Lset7506 -Lset7507 = Ltmp5946-Lfunc_begin0 - .quad Lset7507 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7508 = Ltmp5946-Lfunc_begin0 - .quad Lset7508 -Lset7509 = Ltmp5949-Lfunc_begin0 - .quad Lset7509 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7510 = Ltmp5952-Lfunc_begin0 - .quad Lset7510 -Lset7511 = Ltmp5958-Lfunc_begin0 - .quad Lset7511 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7512 = Ltmp5961-Lfunc_begin0 - .quad Lset7512 -Lset7513 = Ltmp5962-Lfunc_begin0 - .quad Lset7513 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7514 = Ltmp5964-Lfunc_begin0 - .quad Lset7514 -Lset7515 = Ltmp5984-Lfunc_begin0 - .quad Lset7515 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7516 = Ltmp5986-Lfunc_begin0 - .quad Lset7516 -Lset7517 = Ltmp5988-Lfunc_begin0 - .quad Lset7517 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc828: -Lset7518 = Lfunc_begin37-Lfunc_begin0 - .quad Lset7518 -Lset7519 = Ltmp5945-Lfunc_begin0 - .quad Lset7519 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7520 = Ltmp5945-Lfunc_begin0 - .quad Lset7520 -Lset7521 = Ltmp5960-Lfunc_begin0 - .quad Lset7521 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7522 = Ltmp5961-Lfunc_begin0 - .quad Lset7522 -Lset7523 = Lfunc_end37-Lfunc_begin0 - .quad Lset7523 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc829: -Lset7524 = Lfunc_begin37-Lfunc_begin0 - .quad Lset7524 -Lset7525 = Ltmp5944-Lfunc_begin0 - .quad Lset7525 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7526 = Ltmp5944-Lfunc_begin0 - .quad Lset7526 -Lset7527 = Ltmp5958-Lfunc_begin0 - .quad Lset7527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7528 = Ltmp5961-Lfunc_begin0 - .quad Lset7528 -Lset7529 = Ltmp5962-Lfunc_begin0 - .quad Lset7529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7530 = Ltmp5964-Lfunc_begin0 - .quad Lset7530 -Lset7531 = Ltmp5984-Lfunc_begin0 - .quad Lset7531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7532 = Ltmp5986-Lfunc_begin0 - .quad Lset7532 -Lset7533 = Ltmp5988-Lfunc_begin0 - .quad Lset7533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc830: -Lset7534 = Lfunc_begin37-Lfunc_begin0 - .quad Lset7534 -Lset7535 = Ltmp5943-Lfunc_begin0 - .quad Lset7535 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7536 = Ltmp5943-Lfunc_begin0 - .quad Lset7536 -Lset7537 = Ltmp5959-Lfunc_begin0 - .quad Lset7537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7538 = Ltmp5961-Lfunc_begin0 - .quad Lset7538 -Lset7539 = Ltmp5963-Lfunc_begin0 - .quad Lset7539 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7540 = Ltmp5964-Lfunc_begin0 - .quad Lset7540 -Lset7541 = Ltmp5984-Lfunc_begin0 - .quad Lset7541 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7542 = Ltmp5986-Lfunc_begin0 - .quad Lset7542 -Lset7543 = Ltmp5988-Lfunc_begin0 - .quad Lset7543 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc831: -Lset7544 = Ltmp5942-Lfunc_begin0 - .quad Lset7544 -Lset7545 = Ltmp5945-Lfunc_begin0 - .quad Lset7545 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7546 = Ltmp5945-Lfunc_begin0 - .quad Lset7546 -Lset7547 = Ltmp5948-Lfunc_begin0 - .quad Lset7547 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc832: -Lset7548 = Ltmp5942-Lfunc_begin0 - .quad Lset7548 -Lset7549 = Ltmp5945-Lfunc_begin0 - .quad Lset7549 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7550 = Ltmp5945-Lfunc_begin0 - .quad Lset7550 -Lset7551 = Ltmp5948-Lfunc_begin0 - .quad Lset7551 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc833: -Lset7552 = Ltmp5950-Lfunc_begin0 - .quad Lset7552 -Lset7553 = Ltmp5951-Lfunc_begin0 - .quad Lset7553 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc834: -Lset7554 = Ltmp5954-Lfunc_begin0 - .quad Lset7554 -Lset7555 = Ltmp5955-Lfunc_begin0 - .quad Lset7555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7556 = Ltmp5966-Lfunc_begin0 - .quad Lset7556 -Lset7557 = Ltmp5970-Lfunc_begin0 - .quad Lset7557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7558 = Ltmp5976-Lfunc_begin0 - .quad Lset7558 -Lset7559 = Ltmp5981-Lfunc_begin0 - .quad Lset7559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7560 = Ltmp5987-Lfunc_begin0 - .quad Lset7560 -Lset7561 = Ltmp5988-Lfunc_begin0 - .quad Lset7561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc835: -Lset7562 = Ltmp5967-Lfunc_begin0 - .quad Lset7562 -Lset7563 = Ltmp5968-Lfunc_begin0 - .quad Lset7563 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc836: -Lset7564 = Ltmp5972-Lfunc_begin0 - .quad Lset7564 -Lset7565 = Ltmp5976-Lfunc_begin0 - .quad Lset7565 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7566 = Ltmp5981-Lfunc_begin0 - .quad Lset7566 -Lset7567 = Ltmp5984-Lfunc_begin0 - .quad Lset7567 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc837: -Lset7568 = Ltmp5973-Lfunc_begin0 - .quad Lset7568 -Lset7569 = Ltmp5974-Lfunc_begin0 - .quad Lset7569 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc838: -Lset7570 = Lfunc_begin38-Lfunc_begin0 - .quad Lset7570 -Lset7571 = Ltmp6002-Lfunc_begin0 - .quad Lset7571 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7572 = Ltmp6002-Lfunc_begin0 - .quad Lset7572 -Lset7573 = Ltmp6005-Lfunc_begin0 - .quad Lset7573 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7574 = Ltmp6008-Lfunc_begin0 - .quad Lset7574 -Lset7575 = Ltmp6014-Lfunc_begin0 - .quad Lset7575 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7576 = Ltmp6017-Lfunc_begin0 - .quad Lset7576 -Lset7577 = Ltmp6018-Lfunc_begin0 - .quad Lset7577 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7578 = Ltmp6020-Lfunc_begin0 - .quad Lset7578 -Lset7579 = Ltmp6040-Lfunc_begin0 - .quad Lset7579 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7580 = Ltmp6042-Lfunc_begin0 - .quad Lset7580 -Lset7581 = Ltmp6044-Lfunc_begin0 - .quad Lset7581 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc839: -Lset7582 = Lfunc_begin38-Lfunc_begin0 - .quad Lset7582 -Lset7583 = Ltmp6001-Lfunc_begin0 - .quad Lset7583 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7584 = Ltmp6001-Lfunc_begin0 - .quad Lset7584 -Lset7585 = Ltmp6016-Lfunc_begin0 - .quad Lset7585 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7586 = Ltmp6017-Lfunc_begin0 - .quad Lset7586 -Lset7587 = Lfunc_end38-Lfunc_begin0 - .quad Lset7587 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc840: -Lset7588 = Lfunc_begin38-Lfunc_begin0 - .quad Lset7588 -Lset7589 = Ltmp6000-Lfunc_begin0 - .quad Lset7589 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7590 = Ltmp6000-Lfunc_begin0 - .quad Lset7590 -Lset7591 = Ltmp6014-Lfunc_begin0 - .quad Lset7591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7592 = Ltmp6017-Lfunc_begin0 - .quad Lset7592 -Lset7593 = Ltmp6018-Lfunc_begin0 - .quad Lset7593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7594 = Ltmp6020-Lfunc_begin0 - .quad Lset7594 -Lset7595 = Ltmp6040-Lfunc_begin0 - .quad Lset7595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7596 = Ltmp6042-Lfunc_begin0 - .quad Lset7596 -Lset7597 = Ltmp6044-Lfunc_begin0 - .quad Lset7597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc841: -Lset7598 = Lfunc_begin38-Lfunc_begin0 - .quad Lset7598 -Lset7599 = Ltmp5999-Lfunc_begin0 - .quad Lset7599 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7600 = Ltmp5999-Lfunc_begin0 - .quad Lset7600 -Lset7601 = Ltmp6015-Lfunc_begin0 - .quad Lset7601 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7602 = Ltmp6017-Lfunc_begin0 - .quad Lset7602 -Lset7603 = Ltmp6019-Lfunc_begin0 - .quad Lset7603 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7604 = Ltmp6020-Lfunc_begin0 - .quad Lset7604 -Lset7605 = Ltmp6040-Lfunc_begin0 - .quad Lset7605 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7606 = Ltmp6042-Lfunc_begin0 - .quad Lset7606 -Lset7607 = Ltmp6044-Lfunc_begin0 - .quad Lset7607 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc842: -Lset7608 = Ltmp5998-Lfunc_begin0 - .quad Lset7608 -Lset7609 = Ltmp6001-Lfunc_begin0 - .quad Lset7609 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7610 = Ltmp6001-Lfunc_begin0 - .quad Lset7610 -Lset7611 = Ltmp6004-Lfunc_begin0 - .quad Lset7611 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc843: -Lset7612 = Ltmp5998-Lfunc_begin0 - .quad Lset7612 -Lset7613 = Ltmp6001-Lfunc_begin0 - .quad Lset7613 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7614 = Ltmp6001-Lfunc_begin0 - .quad Lset7614 -Lset7615 = Ltmp6004-Lfunc_begin0 - .quad Lset7615 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc844: -Lset7616 = Ltmp6006-Lfunc_begin0 - .quad Lset7616 -Lset7617 = Ltmp6007-Lfunc_begin0 - .quad Lset7617 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc845: -Lset7618 = Ltmp6010-Lfunc_begin0 - .quad Lset7618 -Lset7619 = Ltmp6011-Lfunc_begin0 - .quad Lset7619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7620 = Ltmp6022-Lfunc_begin0 - .quad Lset7620 -Lset7621 = Ltmp6026-Lfunc_begin0 - .quad Lset7621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7622 = Ltmp6032-Lfunc_begin0 - .quad Lset7622 -Lset7623 = Ltmp6037-Lfunc_begin0 - .quad Lset7623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7624 = Ltmp6043-Lfunc_begin0 - .quad Lset7624 -Lset7625 = Ltmp6044-Lfunc_begin0 - .quad Lset7625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc846: -Lset7626 = Ltmp6023-Lfunc_begin0 - .quad Lset7626 -Lset7627 = Ltmp6024-Lfunc_begin0 - .quad Lset7627 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc847: -Lset7628 = Ltmp6028-Lfunc_begin0 - .quad Lset7628 -Lset7629 = Ltmp6032-Lfunc_begin0 - .quad Lset7629 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7630 = Ltmp6037-Lfunc_begin0 - .quad Lset7630 -Lset7631 = Ltmp6040-Lfunc_begin0 - .quad Lset7631 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc848: -Lset7632 = Ltmp6029-Lfunc_begin0 - .quad Lset7632 -Lset7633 = Ltmp6030-Lfunc_begin0 - .quad Lset7633 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc849: -Lset7634 = Lfunc_begin39-Lfunc_begin0 - .quad Lset7634 -Lset7635 = Ltmp6058-Lfunc_begin0 - .quad Lset7635 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7636 = Ltmp6058-Lfunc_begin0 - .quad Lset7636 -Lset7637 = Ltmp6063-Lfunc_begin0 - .quad Lset7637 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7638 = Ltmp6066-Lfunc_begin0 - .quad Lset7638 -Lset7639 = Ltmp6070-Lfunc_begin0 - .quad Lset7639 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7640 = Ltmp6072-Lfunc_begin0 - .quad Lset7640 -Lset7641 = Ltmp6092-Lfunc_begin0 - .quad Lset7641 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset7642 = Ltmp6094-Lfunc_begin0 - .quad Lset7642 -Lset7643 = Ltmp6096-Lfunc_begin0 - .quad Lset7643 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc850: -Lset7644 = Lfunc_begin39-Lfunc_begin0 - .quad Lset7644 -Lset7645 = Ltmp6057-Lfunc_begin0 - .quad Lset7645 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7646 = Ltmp6057-Lfunc_begin0 - .quad Lset7646 -Lset7647 = Ltmp6065-Lfunc_begin0 - .quad Lset7647 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7648 = Ltmp6066-Lfunc_begin0 - .quad Lset7648 -Lset7649 = Lfunc_end39-Lfunc_begin0 - .quad Lset7649 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc851: -Lset7650 = Lfunc_begin39-Lfunc_begin0 - .quad Lset7650 -Lset7651 = Ltmp6056-Lfunc_begin0 - .quad Lset7651 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7652 = Ltmp6056-Lfunc_begin0 - .quad Lset7652 -Lset7653 = Ltmp6063-Lfunc_begin0 - .quad Lset7653 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7654 = Ltmp6066-Lfunc_begin0 - .quad Lset7654 -Lset7655 = Ltmp6070-Lfunc_begin0 - .quad Lset7655 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7656 = Ltmp6072-Lfunc_begin0 - .quad Lset7656 -Lset7657 = Ltmp6092-Lfunc_begin0 - .quad Lset7657 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7658 = Ltmp6094-Lfunc_begin0 - .quad Lset7658 -Lset7659 = Ltmp6096-Lfunc_begin0 - .quad Lset7659 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc852: -Lset7660 = Lfunc_begin39-Lfunc_begin0 - .quad Lset7660 -Lset7661 = Ltmp6055-Lfunc_begin0 - .quad Lset7661 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7662 = Ltmp6055-Lfunc_begin0 - .quad Lset7662 -Lset7663 = Ltmp6064-Lfunc_begin0 - .quad Lset7663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7664 = Ltmp6066-Lfunc_begin0 - .quad Lset7664 -Lset7665 = Ltmp6071-Lfunc_begin0 - .quad Lset7665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7666 = Ltmp6072-Lfunc_begin0 - .quad Lset7666 -Lset7667 = Ltmp6092-Lfunc_begin0 - .quad Lset7667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7668 = Ltmp6094-Lfunc_begin0 - .quad Lset7668 -Lset7669 = Ltmp6096-Lfunc_begin0 - .quad Lset7669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc853: -Lset7670 = Ltmp6054-Lfunc_begin0 - .quad Lset7670 -Lset7671 = Ltmp6057-Lfunc_begin0 - .quad Lset7671 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7672 = Ltmp6057-Lfunc_begin0 - .quad Lset7672 -Lset7673 = Ltmp6060-Lfunc_begin0 - .quad Lset7673 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc854: -Lset7674 = Ltmp6074-Lfunc_begin0 - .quad Lset7674 -Lset7675 = Ltmp6078-Lfunc_begin0 - .quad Lset7675 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7676 = Ltmp6084-Lfunc_begin0 - .quad Lset7676 -Lset7677 = Ltmp6089-Lfunc_begin0 - .quad Lset7677 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset7678 = Ltmp6095-Lfunc_begin0 - .quad Lset7678 -Lset7679 = Ltmp6096-Lfunc_begin0 - .quad Lset7679 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc855: -Lset7680 = Ltmp6075-Lfunc_begin0 - .quad Lset7680 -Lset7681 = Ltmp6076-Lfunc_begin0 - .quad Lset7681 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc856: -Lset7682 = Ltmp6080-Lfunc_begin0 - .quad Lset7682 -Lset7683 = Ltmp6084-Lfunc_begin0 - .quad Lset7683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7684 = Ltmp6089-Lfunc_begin0 - .quad Lset7684 -Lset7685 = Ltmp6092-Lfunc_begin0 - .quad Lset7685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc857: -Lset7686 = Ltmp6081-Lfunc_begin0 - .quad Lset7686 -Lset7687 = Ltmp6082-Lfunc_begin0 - .quad Lset7687 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc858: -Lset7688 = Lfunc_begin40-Lfunc_begin0 - .quad Lset7688 -Lset7689 = Ltmp6113-Lfunc_begin0 - .quad Lset7689 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7690 = Ltmp6123-Lfunc_begin0 - .quad Lset7690 -Lset7691 = Ltmp6124-Lfunc_begin0 - .quad Lset7691 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7692 = Ltmp6124-Lfunc_begin0 - .quad Lset7692 -Lset7693 = Ltmp6137-Lfunc_begin0 - .quad Lset7693 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7694 = Ltmp6137-Lfunc_begin0 - .quad Lset7694 -Lset7695 = Ltmp6139-Lfunc_begin0 - .quad Lset7695 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7696 = Ltmp6139-Lfunc_begin0 - .quad Lset7696 -Lset7697 = Ltmp6160-Lfunc_begin0 - .quad Lset7697 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7698 = Ltmp6160-Lfunc_begin0 - .quad Lset7698 -Lset7699 = Ltmp6161-Lfunc_begin0 - .quad Lset7699 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7700 = Ltmp6162-Lfunc_begin0 - .quad Lset7700 -Lset7701 = Lfunc_end40-Lfunc_begin0 - .quad Lset7701 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc859: -Lset7702 = Lfunc_begin40-Lfunc_begin0 - .quad Lset7702 -Lset7703 = Ltmp6109-Lfunc_begin0 - .quad Lset7703 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7704 = Ltmp6109-Lfunc_begin0 - .quad Lset7704 -Lset7705 = Ltmp6122-Lfunc_begin0 - .quad Lset7705 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7706 = Ltmp6123-Lfunc_begin0 - .quad Lset7706 -Lset7707 = Ltmp6138-Lfunc_begin0 - .quad Lset7707 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7708 = Ltmp6138-Lfunc_begin0 - .quad Lset7708 -Lset7709 = Ltmp6151-Lfunc_begin0 - .quad Lset7709 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7710 = Ltmp6151-Lfunc_begin0 - .quad Lset7710 -Lset7711 = Ltmp6159-Lfunc_begin0 - .quad Lset7711 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7712 = Ltmp6161-Lfunc_begin0 - .quad Lset7712 -Lset7713 = Ltmp6170-Lfunc_begin0 - .quad Lset7713 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7714 = Ltmp6170-Lfunc_begin0 - .quad Lset7714 -Lset7715 = Ltmp6171-Lfunc_begin0 - .quad Lset7715 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7716 = Ltmp6171-Lfunc_begin0 - .quad Lset7716 -Lset7717 = Ltmp6172-Lfunc_begin0 - .quad Lset7717 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7718 = Ltmp6172-Lfunc_begin0 - .quad Lset7718 -Lset7719 = Lfunc_end40-Lfunc_begin0 - .quad Lset7719 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc860: -Lset7720 = Lfunc_begin40-Lfunc_begin0 - .quad Lset7720 -Lset7721 = Ltmp6108-Lfunc_begin0 - .quad Lset7721 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7722 = Ltmp6108-Lfunc_begin0 - .quad Lset7722 -Lset7723 = Ltmp6113-Lfunc_begin0 - .quad Lset7723 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7724 = Ltmp6123-Lfunc_begin0 - .quad Lset7724 -Lset7725 = Ltmp6159-Lfunc_begin0 - .quad Lset7725 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7726 = Ltmp6162-Lfunc_begin0 - .quad Lset7726 -Lset7727 = Ltmp6168-Lfunc_begin0 - .quad Lset7727 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7728 = Ltmp6171-Lfunc_begin0 - .quad Lset7728 -Lset7729 = Lfunc_end40-Lfunc_begin0 - .quad Lset7729 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc861: -Lset7730 = Lfunc_begin40-Lfunc_begin0 - .quad Lset7730 -Lset7731 = Ltmp6107-Lfunc_begin0 - .quad Lset7731 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7732 = Ltmp6107-Lfunc_begin0 - .quad Lset7732 -Lset7733 = Ltmp6114-Lfunc_begin0 - .quad Lset7733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7734 = Ltmp6123-Lfunc_begin0 - .quad Lset7734 -Lset7735 = Ltmp6159-Lfunc_begin0 - .quad Lset7735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7736 = Ltmp6162-Lfunc_begin0 - .quad Lset7736 -Lset7737 = Ltmp6168-Lfunc_begin0 - .quad Lset7737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7738 = Ltmp6171-Lfunc_begin0 - .quad Lset7738 -Lset7739 = Lfunc_end40-Lfunc_begin0 - .quad Lset7739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc862: -Lset7740 = Ltmp6106-Lfunc_begin0 - .quad Lset7740 -Lset7741 = Ltmp6109-Lfunc_begin0 - .quad Lset7741 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7742 = Ltmp6109-Lfunc_begin0 - .quad Lset7742 -Lset7743 = Ltmp6110-Lfunc_begin0 - .quad Lset7743 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc863: -Lset7744 = Ltmp6110-Lfunc_begin0 - .quad Lset7744 -Lset7745 = Ltmp6111-Lfunc_begin0 - .quad Lset7745 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc864: -Lset7746 = Ltmp6111-Lfunc_begin0 - .quad Lset7746 -Lset7747 = Ltmp6111-Lfunc_begin0 - .quad Lset7747 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc865: -Lset7748 = Ltmp6114-Lfunc_begin0 - .quad Lset7748 -Lset7749 = Ltmp6114-Lfunc_begin0 - .quad Lset7749 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc866: -Lset7750 = Ltmp6114-Lfunc_begin0 - .quad Lset7750 -Lset7751 = Ltmp6121-Lfunc_begin0 - .quad Lset7751 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc867: -Lset7752 = Ltmp6115-Lfunc_begin0 - .quad Lset7752 -Lset7753 = Ltmp6116-Lfunc_begin0 - .quad Lset7753 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc868: -Lset7754 = Ltmp6126-Lfunc_begin0 - .quad Lset7754 -Lset7755 = Ltmp6128-Lfunc_begin0 - .quad Lset7755 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset7756 = Ltmp6132-Lfunc_begin0 - .quad Lset7756 -Lset7757 = Ltmp6137-Lfunc_begin0 - .quad Lset7757 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc869: -Lset7758 = Ltmp6140-Lfunc_begin0 - .quad Lset7758 -Lset7759 = Ltmp6142-Lfunc_begin0 - .quad Lset7759 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset7760 = Ltmp6146-Lfunc_begin0 - .quad Lset7760 -Lset7761 = Ltmp6151-Lfunc_begin0 - .quad Lset7761 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc870: -Lset7762 = Ltmp6153-Lfunc_begin0 - .quad Lset7762 -Lset7763 = Ltmp6154-Lfunc_begin0 - .quad Lset7763 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7764 = Ltmp6154-Lfunc_begin0 - .quad Lset7764 -Lset7765 = Lfunc_end40-Lfunc_begin0 - .quad Lset7765 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc871: -Lset7766 = Ltmp6155-Lfunc_begin0 - .quad Lset7766 -Lset7767 = Ltmp6157-Lfunc_begin0 - .quad Lset7767 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc872: -Lset7768 = Ltmp6163-Lfunc_begin0 - .quad Lset7768 -Lset7769 = Ltmp6164-Lfunc_begin0 - .quad Lset7769 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7770 = Ltmp6164-Lfunc_begin0 - .quad Lset7770 -Lset7771 = Lfunc_end40-Lfunc_begin0 - .quad Lset7771 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc873: -Lset7772 = Ltmp6165-Lfunc_begin0 - .quad Lset7772 -Lset7773 = Ltmp6167-Lfunc_begin0 - .quad Lset7773 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc874: -Lset7774 = Lfunc_begin41-Lfunc_begin0 - .quad Lset7774 -Lset7775 = Ltmp6189-Lfunc_begin0 - .quad Lset7775 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7776 = Ltmp6202-Lfunc_begin0 - .quad Lset7776 -Lset7777 = Ltmp6203-Lfunc_begin0 - .quad Lset7777 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7778 = Ltmp6203-Lfunc_begin0 - .quad Lset7778 -Lset7779 = Ltmp6216-Lfunc_begin0 - .quad Lset7779 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7780 = Ltmp6216-Lfunc_begin0 - .quad Lset7780 -Lset7781 = Ltmp6218-Lfunc_begin0 - .quad Lset7781 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7782 = Ltmp6218-Lfunc_begin0 - .quad Lset7782 -Lset7783 = Ltmp6239-Lfunc_begin0 - .quad Lset7783 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7784 = Ltmp6239-Lfunc_begin0 - .quad Lset7784 -Lset7785 = Ltmp6240-Lfunc_begin0 - .quad Lset7785 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7786 = Ltmp6241-Lfunc_begin0 - .quad Lset7786 -Lset7787 = Lfunc_end41-Lfunc_begin0 - .quad Lset7787 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc875: -Lset7788 = Lfunc_begin41-Lfunc_begin0 - .quad Lset7788 -Lset7789 = Ltmp6185-Lfunc_begin0 - .quad Lset7789 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7790 = Ltmp6185-Lfunc_begin0 - .quad Lset7790 -Lset7791 = Ltmp6201-Lfunc_begin0 - .quad Lset7791 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7792 = Ltmp6202-Lfunc_begin0 - .quad Lset7792 -Lset7793 = Ltmp6217-Lfunc_begin0 - .quad Lset7793 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7794 = Ltmp6217-Lfunc_begin0 - .quad Lset7794 -Lset7795 = Ltmp6230-Lfunc_begin0 - .quad Lset7795 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7796 = Ltmp6230-Lfunc_begin0 - .quad Lset7796 -Lset7797 = Ltmp6238-Lfunc_begin0 - .quad Lset7797 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7798 = Ltmp6240-Lfunc_begin0 - .quad Lset7798 -Lset7799 = Ltmp6249-Lfunc_begin0 - .quad Lset7799 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7800 = Ltmp6249-Lfunc_begin0 - .quad Lset7800 -Lset7801 = Ltmp6250-Lfunc_begin0 - .quad Lset7801 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7802 = Ltmp6250-Lfunc_begin0 - .quad Lset7802 -Lset7803 = Ltmp6251-Lfunc_begin0 - .quad Lset7803 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7804 = Ltmp6251-Lfunc_begin0 - .quad Lset7804 -Lset7805 = Lfunc_end41-Lfunc_begin0 - .quad Lset7805 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc876: -Lset7806 = Lfunc_begin41-Lfunc_begin0 - .quad Lset7806 -Lset7807 = Ltmp6184-Lfunc_begin0 - .quad Lset7807 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7808 = Ltmp6184-Lfunc_begin0 - .quad Lset7808 -Lset7809 = Ltmp6189-Lfunc_begin0 - .quad Lset7809 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7810 = Ltmp6202-Lfunc_begin0 - .quad Lset7810 -Lset7811 = Ltmp6238-Lfunc_begin0 - .quad Lset7811 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7812 = Ltmp6241-Lfunc_begin0 - .quad Lset7812 -Lset7813 = Ltmp6247-Lfunc_begin0 - .quad Lset7813 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7814 = Ltmp6250-Lfunc_begin0 - .quad Lset7814 -Lset7815 = Lfunc_end41-Lfunc_begin0 - .quad Lset7815 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc877: -Lset7816 = Lfunc_begin41-Lfunc_begin0 - .quad Lset7816 -Lset7817 = Ltmp6183-Lfunc_begin0 - .quad Lset7817 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7818 = Ltmp6183-Lfunc_begin0 - .quad Lset7818 -Lset7819 = Ltmp6190-Lfunc_begin0 - .quad Lset7819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7820 = Ltmp6202-Lfunc_begin0 - .quad Lset7820 -Lset7821 = Ltmp6238-Lfunc_begin0 - .quad Lset7821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7822 = Ltmp6241-Lfunc_begin0 - .quad Lset7822 -Lset7823 = Ltmp6247-Lfunc_begin0 - .quad Lset7823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7824 = Ltmp6250-Lfunc_begin0 - .quad Lset7824 -Lset7825 = Lfunc_end41-Lfunc_begin0 - .quad Lset7825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc878: -Lset7826 = Ltmp6182-Lfunc_begin0 - .quad Lset7826 -Lset7827 = Ltmp6185-Lfunc_begin0 - .quad Lset7827 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7828 = Ltmp6185-Lfunc_begin0 - .quad Lset7828 -Lset7829 = Ltmp6186-Lfunc_begin0 - .quad Lset7829 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc879: -Lset7830 = Ltmp6186-Lfunc_begin0 - .quad Lset7830 -Lset7831 = Ltmp6187-Lfunc_begin0 - .quad Lset7831 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc880: -Lset7832 = Ltmp6187-Lfunc_begin0 - .quad Lset7832 -Lset7833 = Ltmp6187-Lfunc_begin0 - .quad Lset7833 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc881: -Lset7834 = Ltmp6190-Lfunc_begin0 - .quad Lset7834 -Lset7835 = Ltmp6190-Lfunc_begin0 - .quad Lset7835 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc882: -Lset7836 = Ltmp6196-Lfunc_begin0 - .quad Lset7836 -Lset7837 = Ltmp6197-Lfunc_begin0 - .quad Lset7837 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc883: -Lset7838 = Ltmp6205-Lfunc_begin0 - .quad Lset7838 -Lset7839 = Ltmp6207-Lfunc_begin0 - .quad Lset7839 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset7840 = Ltmp6211-Lfunc_begin0 - .quad Lset7840 -Lset7841 = Ltmp6216-Lfunc_begin0 - .quad Lset7841 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc884: -Lset7842 = Ltmp6219-Lfunc_begin0 - .quad Lset7842 -Lset7843 = Ltmp6221-Lfunc_begin0 - .quad Lset7843 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset7844 = Ltmp6225-Lfunc_begin0 - .quad Lset7844 -Lset7845 = Ltmp6230-Lfunc_begin0 - .quad Lset7845 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc885: -Lset7846 = Ltmp6232-Lfunc_begin0 - .quad Lset7846 -Lset7847 = Ltmp6233-Lfunc_begin0 - .quad Lset7847 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7848 = Ltmp6233-Lfunc_begin0 - .quad Lset7848 -Lset7849 = Lfunc_end41-Lfunc_begin0 - .quad Lset7849 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc886: -Lset7850 = Ltmp6234-Lfunc_begin0 - .quad Lset7850 -Lset7851 = Ltmp6236-Lfunc_begin0 - .quad Lset7851 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc887: -Lset7852 = Ltmp6242-Lfunc_begin0 - .quad Lset7852 -Lset7853 = Ltmp6243-Lfunc_begin0 - .quad Lset7853 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7854 = Ltmp6243-Lfunc_begin0 - .quad Lset7854 -Lset7855 = Lfunc_end41-Lfunc_begin0 - .quad Lset7855 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc888: -Lset7856 = Ltmp6244-Lfunc_begin0 - .quad Lset7856 -Lset7857 = Ltmp6246-Lfunc_begin0 - .quad Lset7857 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc889: -Lset7858 = Lfunc_begin42-Lfunc_begin0 - .quad Lset7858 -Lset7859 = Ltmp6268-Lfunc_begin0 - .quad Lset7859 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7860 = Ltmp6271-Lfunc_begin0 - .quad Lset7860 -Lset7861 = Ltmp6272-Lfunc_begin0 - .quad Lset7861 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7862 = Ltmp6272-Lfunc_begin0 - .quad Lset7862 -Lset7863 = Ltmp6285-Lfunc_begin0 - .quad Lset7863 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7864 = Ltmp6285-Lfunc_begin0 - .quad Lset7864 -Lset7865 = Ltmp6287-Lfunc_begin0 - .quad Lset7865 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7866 = Ltmp6287-Lfunc_begin0 - .quad Lset7866 -Lset7867 = Ltmp6308-Lfunc_begin0 - .quad Lset7867 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7868 = Ltmp6308-Lfunc_begin0 - .quad Lset7868 -Lset7869 = Ltmp6309-Lfunc_begin0 - .quad Lset7869 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7870 = Ltmp6310-Lfunc_begin0 - .quad Lset7870 -Lset7871 = Lfunc_end42-Lfunc_begin0 - .quad Lset7871 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc890: -Lset7872 = Lfunc_begin42-Lfunc_begin0 - .quad Lset7872 -Lset7873 = Ltmp6264-Lfunc_begin0 - .quad Lset7873 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7874 = Ltmp6264-Lfunc_begin0 - .quad Lset7874 -Lset7875 = Ltmp6270-Lfunc_begin0 - .quad Lset7875 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7876 = Ltmp6271-Lfunc_begin0 - .quad Lset7876 -Lset7877 = Ltmp6286-Lfunc_begin0 - .quad Lset7877 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7878 = Ltmp6286-Lfunc_begin0 - .quad Lset7878 -Lset7879 = Ltmp6299-Lfunc_begin0 - .quad Lset7879 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7880 = Ltmp6299-Lfunc_begin0 - .quad Lset7880 -Lset7881 = Ltmp6307-Lfunc_begin0 - .quad Lset7881 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7882 = Ltmp6309-Lfunc_begin0 - .quad Lset7882 -Lset7883 = Ltmp6318-Lfunc_begin0 - .quad Lset7883 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7884 = Ltmp6318-Lfunc_begin0 - .quad Lset7884 -Lset7885 = Ltmp6319-Lfunc_begin0 - .quad Lset7885 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7886 = Ltmp6319-Lfunc_begin0 - .quad Lset7886 -Lset7887 = Ltmp6320-Lfunc_begin0 - .quad Lset7887 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7888 = Ltmp6320-Lfunc_begin0 - .quad Lset7888 -Lset7889 = Lfunc_end42-Lfunc_begin0 - .quad Lset7889 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc891: -Lset7890 = Lfunc_begin42-Lfunc_begin0 - .quad Lset7890 -Lset7891 = Ltmp6263-Lfunc_begin0 - .quad Lset7891 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7892 = Ltmp6263-Lfunc_begin0 - .quad Lset7892 -Lset7893 = Ltmp6268-Lfunc_begin0 - .quad Lset7893 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7894 = Ltmp6271-Lfunc_begin0 - .quad Lset7894 -Lset7895 = Ltmp6307-Lfunc_begin0 - .quad Lset7895 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7896 = Ltmp6310-Lfunc_begin0 - .quad Lset7896 -Lset7897 = Ltmp6316-Lfunc_begin0 - .quad Lset7897 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7898 = Ltmp6319-Lfunc_begin0 - .quad Lset7898 -Lset7899 = Lfunc_end42-Lfunc_begin0 - .quad Lset7899 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc892: -Lset7900 = Lfunc_begin42-Lfunc_begin0 - .quad Lset7900 -Lset7901 = Ltmp6262-Lfunc_begin0 - .quad Lset7901 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7902 = Ltmp6262-Lfunc_begin0 - .quad Lset7902 -Lset7903 = Ltmp6269-Lfunc_begin0 - .quad Lset7903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7904 = Ltmp6271-Lfunc_begin0 - .quad Lset7904 -Lset7905 = Ltmp6307-Lfunc_begin0 - .quad Lset7905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7906 = Ltmp6310-Lfunc_begin0 - .quad Lset7906 -Lset7907 = Ltmp6316-Lfunc_begin0 - .quad Lset7907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7908 = Ltmp6319-Lfunc_begin0 - .quad Lset7908 -Lset7909 = Lfunc_end42-Lfunc_begin0 - .quad Lset7909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc893: -Lset7910 = Ltmp6261-Lfunc_begin0 - .quad Lset7910 -Lset7911 = Ltmp6264-Lfunc_begin0 - .quad Lset7911 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7912 = Ltmp6264-Lfunc_begin0 - .quad Lset7912 -Lset7913 = Ltmp6265-Lfunc_begin0 - .quad Lset7913 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc894: -Lset7914 = Ltmp6265-Lfunc_begin0 - .quad Lset7914 -Lset7915 = Ltmp6266-Lfunc_begin0 - .quad Lset7915 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc895: -Lset7916 = Ltmp6266-Lfunc_begin0 - .quad Lset7916 -Lset7917 = Ltmp6266-Lfunc_begin0 - .quad Lset7917 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc896: -Lset7918 = Ltmp6269-Lfunc_begin0 - .quad Lset7918 -Lset7919 = Ltmp6269-Lfunc_begin0 - .quad Lset7919 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc897: -Lset7920 = Ltmp6274-Lfunc_begin0 - .quad Lset7920 -Lset7921 = Ltmp6276-Lfunc_begin0 - .quad Lset7921 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset7922 = Ltmp6280-Lfunc_begin0 - .quad Lset7922 -Lset7923 = Ltmp6285-Lfunc_begin0 - .quad Lset7923 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc898: -Lset7924 = Ltmp6288-Lfunc_begin0 - .quad Lset7924 -Lset7925 = Ltmp6290-Lfunc_begin0 - .quad Lset7925 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset7926 = Ltmp6294-Lfunc_begin0 - .quad Lset7926 -Lset7927 = Ltmp6299-Lfunc_begin0 - .quad Lset7927 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc899: -Lset7928 = Ltmp6301-Lfunc_begin0 - .quad Lset7928 -Lset7929 = Ltmp6302-Lfunc_begin0 - .quad Lset7929 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7930 = Ltmp6302-Lfunc_begin0 - .quad Lset7930 -Lset7931 = Lfunc_end42-Lfunc_begin0 - .quad Lset7931 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc900: -Lset7932 = Ltmp6303-Lfunc_begin0 - .quad Lset7932 -Lset7933 = Ltmp6305-Lfunc_begin0 - .quad Lset7933 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc901: -Lset7934 = Ltmp6311-Lfunc_begin0 - .quad Lset7934 -Lset7935 = Ltmp6312-Lfunc_begin0 - .quad Lset7935 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset7936 = Ltmp6312-Lfunc_begin0 - .quad Lset7936 -Lset7937 = Lfunc_end42-Lfunc_begin0 - .quad Lset7937 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc902: -Lset7938 = Ltmp6313-Lfunc_begin0 - .quad Lset7938 -Lset7939 = Ltmp6315-Lfunc_begin0 - .quad Lset7939 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc903: -Lset7940 = Lfunc_begin43-Lfunc_begin0 - .quad Lset7940 -Lset7941 = Ltmp6337-Lfunc_begin0 - .quad Lset7941 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7942 = Ltmp6340-Lfunc_begin0 - .quad Lset7942 -Lset7943 = Ltmp6341-Lfunc_begin0 - .quad Lset7943 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7944 = Ltmp6341-Lfunc_begin0 - .quad Lset7944 -Lset7945 = Ltmp6354-Lfunc_begin0 - .quad Lset7945 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7946 = Ltmp6354-Lfunc_begin0 - .quad Lset7946 -Lset7947 = Ltmp6356-Lfunc_begin0 - .quad Lset7947 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7948 = Ltmp6356-Lfunc_begin0 - .quad Lset7948 -Lset7949 = Ltmp6377-Lfunc_begin0 - .quad Lset7949 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset7950 = Ltmp6377-Lfunc_begin0 - .quad Lset7950 -Lset7951 = Ltmp6378-Lfunc_begin0 - .quad Lset7951 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset7952 = Ltmp6379-Lfunc_begin0 - .quad Lset7952 -Lset7953 = Lfunc_end43-Lfunc_begin0 - .quad Lset7953 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc904: -Lset7954 = Lfunc_begin43-Lfunc_begin0 - .quad Lset7954 -Lset7955 = Ltmp6333-Lfunc_begin0 - .quad Lset7955 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7956 = Ltmp6333-Lfunc_begin0 - .quad Lset7956 -Lset7957 = Ltmp6339-Lfunc_begin0 - .quad Lset7957 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7958 = Ltmp6340-Lfunc_begin0 - .quad Lset7958 -Lset7959 = Ltmp6355-Lfunc_begin0 - .quad Lset7959 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7960 = Ltmp6355-Lfunc_begin0 - .quad Lset7960 -Lset7961 = Ltmp6368-Lfunc_begin0 - .quad Lset7961 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7962 = Ltmp6368-Lfunc_begin0 - .quad Lset7962 -Lset7963 = Ltmp6376-Lfunc_begin0 - .quad Lset7963 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7964 = Ltmp6378-Lfunc_begin0 - .quad Lset7964 -Lset7965 = Ltmp6387-Lfunc_begin0 - .quad Lset7965 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7966 = Ltmp6387-Lfunc_begin0 - .quad Lset7966 -Lset7967 = Ltmp6388-Lfunc_begin0 - .quad Lset7967 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset7968 = Ltmp6388-Lfunc_begin0 - .quad Lset7968 -Lset7969 = Ltmp6389-Lfunc_begin0 - .quad Lset7969 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset7970 = Ltmp6389-Lfunc_begin0 - .quad Lset7970 -Lset7971 = Lfunc_end43-Lfunc_begin0 - .quad Lset7971 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc905: -Lset7972 = Lfunc_begin43-Lfunc_begin0 - .quad Lset7972 -Lset7973 = Ltmp6332-Lfunc_begin0 - .quad Lset7973 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset7974 = Ltmp6332-Lfunc_begin0 - .quad Lset7974 -Lset7975 = Ltmp6337-Lfunc_begin0 - .quad Lset7975 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7976 = Ltmp6340-Lfunc_begin0 - .quad Lset7976 -Lset7977 = Ltmp6376-Lfunc_begin0 - .quad Lset7977 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7978 = Ltmp6379-Lfunc_begin0 - .quad Lset7978 -Lset7979 = Ltmp6385-Lfunc_begin0 - .quad Lset7979 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset7980 = Ltmp6388-Lfunc_begin0 - .quad Lset7980 -Lset7981 = Lfunc_end43-Lfunc_begin0 - .quad Lset7981 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc906: -Lset7982 = Lfunc_begin43-Lfunc_begin0 - .quad Lset7982 -Lset7983 = Ltmp6331-Lfunc_begin0 - .quad Lset7983 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset7984 = Ltmp6331-Lfunc_begin0 - .quad Lset7984 -Lset7985 = Ltmp6338-Lfunc_begin0 - .quad Lset7985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7986 = Ltmp6340-Lfunc_begin0 - .quad Lset7986 -Lset7987 = Ltmp6376-Lfunc_begin0 - .quad Lset7987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7988 = Ltmp6379-Lfunc_begin0 - .quad Lset7988 -Lset7989 = Ltmp6385-Lfunc_begin0 - .quad Lset7989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset7990 = Ltmp6388-Lfunc_begin0 - .quad Lset7990 -Lset7991 = Lfunc_end43-Lfunc_begin0 - .quad Lset7991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc907: -Lset7992 = Ltmp6330-Lfunc_begin0 - .quad Lset7992 -Lset7993 = Ltmp6333-Lfunc_begin0 - .quad Lset7993 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset7994 = Ltmp6333-Lfunc_begin0 - .quad Lset7994 -Lset7995 = Ltmp6334-Lfunc_begin0 - .quad Lset7995 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc908: -Lset7996 = Ltmp6334-Lfunc_begin0 - .quad Lset7996 -Lset7997 = Ltmp6335-Lfunc_begin0 - .quad Lset7997 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc909: -Lset7998 = Ltmp6335-Lfunc_begin0 - .quad Lset7998 -Lset7999 = Ltmp6335-Lfunc_begin0 - .quad Lset7999 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc910: -Lset8000 = Ltmp6338-Lfunc_begin0 - .quad Lset8000 -Lset8001 = Ltmp6338-Lfunc_begin0 - .quad Lset8001 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc911: -Lset8002 = Ltmp6343-Lfunc_begin0 - .quad Lset8002 -Lset8003 = Ltmp6345-Lfunc_begin0 - .quad Lset8003 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset8004 = Ltmp6349-Lfunc_begin0 - .quad Lset8004 -Lset8005 = Ltmp6354-Lfunc_begin0 - .quad Lset8005 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc912: -Lset8006 = Ltmp6357-Lfunc_begin0 - .quad Lset8006 -Lset8007 = Ltmp6359-Lfunc_begin0 - .quad Lset8007 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset8008 = Ltmp6363-Lfunc_begin0 - .quad Lset8008 -Lset8009 = Ltmp6368-Lfunc_begin0 - .quad Lset8009 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc913: -Lset8010 = Ltmp6370-Lfunc_begin0 - .quad Lset8010 -Lset8011 = Ltmp6371-Lfunc_begin0 - .quad Lset8011 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8012 = Ltmp6371-Lfunc_begin0 - .quad Lset8012 -Lset8013 = Lfunc_end43-Lfunc_begin0 - .quad Lset8013 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc914: -Lset8014 = Ltmp6372-Lfunc_begin0 - .quad Lset8014 -Lset8015 = Ltmp6374-Lfunc_begin0 - .quad Lset8015 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc915: -Lset8016 = Ltmp6380-Lfunc_begin0 - .quad Lset8016 -Lset8017 = Ltmp6381-Lfunc_begin0 - .quad Lset8017 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8018 = Ltmp6381-Lfunc_begin0 - .quad Lset8018 -Lset8019 = Lfunc_end43-Lfunc_begin0 - .quad Lset8019 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc916: -Lset8020 = Ltmp6382-Lfunc_begin0 - .quad Lset8020 -Lset8021 = Ltmp6384-Lfunc_begin0 - .quad Lset8021 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc917: -Lset8022 = Lfunc_begin44-Lfunc_begin0 - .quad Lset8022 -Lset8023 = Ltmp6406-Lfunc_begin0 - .quad Lset8023 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8024 = Ltmp6409-Lfunc_begin0 - .quad Lset8024 -Lset8025 = Ltmp6410-Lfunc_begin0 - .quad Lset8025 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8026 = Ltmp6410-Lfunc_begin0 - .quad Lset8026 -Lset8027 = Ltmp6423-Lfunc_begin0 - .quad Lset8027 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset8028 = Ltmp6423-Lfunc_begin0 - .quad Lset8028 -Lset8029 = Ltmp6425-Lfunc_begin0 - .quad Lset8029 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8030 = Ltmp6425-Lfunc_begin0 - .quad Lset8030 -Lset8031 = Ltmp6446-Lfunc_begin0 - .quad Lset8031 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -Lset8032 = Ltmp6446-Lfunc_begin0 - .quad Lset8032 -Lset8033 = Ltmp6447-Lfunc_begin0 - .quad Lset8033 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8034 = Ltmp6448-Lfunc_begin0 - .quad Lset8034 -Lset8035 = Lfunc_end44-Lfunc_begin0 - .quad Lset8035 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc918: -Lset8036 = Lfunc_begin44-Lfunc_begin0 - .quad Lset8036 -Lset8037 = Ltmp6402-Lfunc_begin0 - .quad Lset8037 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8038 = Ltmp6402-Lfunc_begin0 - .quad Lset8038 -Lset8039 = Ltmp6408-Lfunc_begin0 - .quad Lset8039 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8040 = Ltmp6409-Lfunc_begin0 - .quad Lset8040 -Lset8041 = Ltmp6424-Lfunc_begin0 - .quad Lset8041 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8042 = Ltmp6424-Lfunc_begin0 - .quad Lset8042 -Lset8043 = Ltmp6437-Lfunc_begin0 - .quad Lset8043 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset8044 = Ltmp6437-Lfunc_begin0 - .quad Lset8044 -Lset8045 = Ltmp6445-Lfunc_begin0 - .quad Lset8045 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8046 = Ltmp6447-Lfunc_begin0 - .quad Lset8046 -Lset8047 = Ltmp6456-Lfunc_begin0 - .quad Lset8047 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset8048 = Ltmp6456-Lfunc_begin0 - .quad Lset8048 -Lset8049 = Ltmp6457-Lfunc_begin0 - .quad Lset8049 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8050 = Ltmp6457-Lfunc_begin0 - .quad Lset8050 -Lset8051 = Ltmp6458-Lfunc_begin0 - .quad Lset8051 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## -Lset8052 = Ltmp6458-Lfunc_begin0 - .quad Lset8052 -Lset8053 = Lfunc_end44-Lfunc_begin0 - .quad Lset8053 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc919: -Lset8054 = Lfunc_begin44-Lfunc_begin0 - .quad Lset8054 -Lset8055 = Ltmp6401-Lfunc_begin0 - .quad Lset8055 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8056 = Ltmp6401-Lfunc_begin0 - .quad Lset8056 -Lset8057 = Ltmp6406-Lfunc_begin0 - .quad Lset8057 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8058 = Ltmp6409-Lfunc_begin0 - .quad Lset8058 -Lset8059 = Ltmp6445-Lfunc_begin0 - .quad Lset8059 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8060 = Ltmp6448-Lfunc_begin0 - .quad Lset8060 -Lset8061 = Ltmp6454-Lfunc_begin0 - .quad Lset8061 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8062 = Ltmp6457-Lfunc_begin0 - .quad Lset8062 -Lset8063 = Lfunc_end44-Lfunc_begin0 - .quad Lset8063 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc920: -Lset8064 = Lfunc_begin44-Lfunc_begin0 - .quad Lset8064 -Lset8065 = Ltmp6400-Lfunc_begin0 - .quad Lset8065 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8066 = Ltmp6400-Lfunc_begin0 - .quad Lset8066 -Lset8067 = Ltmp6407-Lfunc_begin0 - .quad Lset8067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8068 = Ltmp6409-Lfunc_begin0 - .quad Lset8068 -Lset8069 = Ltmp6445-Lfunc_begin0 - .quad Lset8069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8070 = Ltmp6448-Lfunc_begin0 - .quad Lset8070 -Lset8071 = Ltmp6454-Lfunc_begin0 - .quad Lset8071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8072 = Ltmp6457-Lfunc_begin0 - .quad Lset8072 -Lset8073 = Lfunc_end44-Lfunc_begin0 - .quad Lset8073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc921: -Lset8074 = Ltmp6399-Lfunc_begin0 - .quad Lset8074 -Lset8075 = Ltmp6402-Lfunc_begin0 - .quad Lset8075 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8076 = Ltmp6402-Lfunc_begin0 - .quad Lset8076 -Lset8077 = Ltmp6403-Lfunc_begin0 - .quad Lset8077 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc922: -Lset8078 = Ltmp6403-Lfunc_begin0 - .quad Lset8078 -Lset8079 = Ltmp6404-Lfunc_begin0 - .quad Lset8079 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc923: -Lset8080 = Ltmp6404-Lfunc_begin0 - .quad Lset8080 -Lset8081 = Ltmp6404-Lfunc_begin0 - .quad Lset8081 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc924: -Lset8082 = Ltmp6407-Lfunc_begin0 - .quad Lset8082 -Lset8083 = Ltmp6407-Lfunc_begin0 - .quad Lset8083 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc925: -Lset8084 = Ltmp6412-Lfunc_begin0 - .quad Lset8084 -Lset8085 = Ltmp6414-Lfunc_begin0 - .quad Lset8085 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset8086 = Ltmp6418-Lfunc_begin0 - .quad Lset8086 -Lset8087 = Ltmp6423-Lfunc_begin0 - .quad Lset8087 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc926: -Lset8088 = Ltmp6426-Lfunc_begin0 - .quad Lset8088 -Lset8089 = Ltmp6428-Lfunc_begin0 - .quad Lset8089 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 -Lset8090 = Ltmp6432-Lfunc_begin0 - .quad Lset8090 -Lset8091 = Ltmp6437-Lfunc_begin0 - .quad Lset8091 - .short 2 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc927: -Lset8092 = Ltmp6439-Lfunc_begin0 - .quad Lset8092 -Lset8093 = Ltmp6440-Lfunc_begin0 - .quad Lset8093 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8094 = Ltmp6440-Lfunc_begin0 - .quad Lset8094 -Lset8095 = Lfunc_end44-Lfunc_begin0 - .quad Lset8095 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc928: -Lset8096 = Ltmp6441-Lfunc_begin0 - .quad Lset8096 -Lset8097 = Ltmp6443-Lfunc_begin0 - .quad Lset8097 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc929: -Lset8098 = Ltmp6449-Lfunc_begin0 - .quad Lset8098 -Lset8099 = Ltmp6450-Lfunc_begin0 - .quad Lset8099 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8100 = Ltmp6450-Lfunc_begin0 - .quad Lset8100 -Lset8101 = Lfunc_end44-Lfunc_begin0 - .quad Lset8101 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc930: -Lset8102 = Ltmp6451-Lfunc_begin0 - .quad Lset8102 -Lset8103 = Ltmp6453-Lfunc_begin0 - .quad Lset8103 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc931: -Lset8104 = Lfunc_begin45-Lfunc_begin0 - .quad Lset8104 -Lset8105 = Ltmp6471-Lfunc_begin0 - .quad Lset8105 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8106 = Ltmp6471-Lfunc_begin0 - .quad Lset8106 -Lset8107 = Ltmp6473-Lfunc_begin0 - .quad Lset8107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8108 = Ltmp6476-Lfunc_begin0 - .quad Lset8108 -Lset8109 = Ltmp6489-Lfunc_begin0 - .quad Lset8109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8110 = Ltmp6490-Lfunc_begin0 - .quad Lset8110 -Lset8111 = Ltmp6496-Lfunc_begin0 - .quad Lset8111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8112 = Ltmp6497-Lfunc_begin0 - .quad Lset8112 -Lset8113 = Lfunc_end45-Lfunc_begin0 - .quad Lset8113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc932: -Lset8114 = Lfunc_begin45-Lfunc_begin0 - .quad Lset8114 -Lset8115 = Ltmp6470-Lfunc_begin0 - .quad Lset8115 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8116 = Ltmp6470-Lfunc_begin0 - .quad Lset8116 -Lset8117 = Ltmp6475-Lfunc_begin0 - .quad Lset8117 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8118 = Ltmp6476-Lfunc_begin0 - .quad Lset8118 -Lset8119 = Lfunc_end45-Lfunc_begin0 - .quad Lset8119 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc933: -Lset8120 = Lfunc_begin45-Lfunc_begin0 - .quad Lset8120 -Lset8121 = Ltmp6469-Lfunc_begin0 - .quad Lset8121 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8122 = Ltmp6469-Lfunc_begin0 - .quad Lset8122 -Lset8123 = Ltmp6474-Lfunc_begin0 - .quad Lset8123 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8124 = Ltmp6476-Lfunc_begin0 - .quad Lset8124 -Lset8125 = Ltmp6489-Lfunc_begin0 - .quad Lset8125 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8126 = Ltmp6490-Lfunc_begin0 - .quad Lset8126 -Lset8127 = Ltmp6496-Lfunc_begin0 - .quad Lset8127 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8128 = Ltmp6497-Lfunc_begin0 - .quad Lset8128 -Lset8129 = Lfunc_end45-Lfunc_begin0 - .quad Lset8129 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc934: -Lset8130 = Ltmp6468-Lfunc_begin0 - .quad Lset8130 -Lset8131 = Ltmp6470-Lfunc_begin0 - .quad Lset8131 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8132 = Ltmp6470-Lfunc_begin0 - .quad Lset8132 -Lset8133 = Ltmp6473-Lfunc_begin0 - .quad Lset8133 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8134 = Ltmp6474-Lfunc_begin0 - .quad Lset8134 -Lset8135 = Ltmp6475-Lfunc_begin0 - .quad Lset8135 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc935: -Lset8136 = Ltmp6474-Lfunc_begin0 - .quad Lset8136 -Lset8137 = Ltmp6474-Lfunc_begin0 - .quad Lset8137 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc936: -Lset8138 = Ltmp6478-Lfunc_begin0 - .quad Lset8138 -Lset8139 = Ltmp6480-Lfunc_begin0 - .quad Lset8139 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 -Lset8140 = Ltmp6484-Lfunc_begin0 - .quad Lset8140 -Lset8141 = Ltmp6489-Lfunc_begin0 - .quad Lset8141 - .short 2 ## Loc expr size - .byte 124 ## DW_OP_breg12 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc937: -Lset8142 = Ltmp6491-Lfunc_begin0 - .quad Lset8142 -Lset8143 = Ltmp6492-Lfunc_begin0 - .quad Lset8143 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8144 = Ltmp6492-Lfunc_begin0 - .quad Lset8144 -Lset8145 = Lfunc_end45-Lfunc_begin0 - .quad Lset8145 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc938: -Lset8146 = Ltmp6493-Lfunc_begin0 - .quad Lset8146 -Lset8147 = Ltmp6495-Lfunc_begin0 - .quad Lset8147 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc939: -Lset8148 = Lfunc_begin46-Lfunc_begin0 - .quad Lset8148 -Lset8149 = Ltmp6509-Lfunc_begin0 - .quad Lset8149 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8150 = Ltmp6511-Lfunc_begin0 - .quad Lset8150 -Lset8151 = Ltmp6515-Lfunc_begin0 - .quad Lset8151 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc940: -Lset8152 = Ltmp6502-Lfunc_begin0 - .quad Lset8152 -Lset8153 = Ltmp6503-Lfunc_begin0 - .quad Lset8153 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -Lset8154 = Ltmp6506-Lfunc_begin0 - .quad Lset8154 -Lset8155 = Ltmp6507-Lfunc_begin0 - .quad Lset8155 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 - .quad 0 - .quad 0 -Ldebug_loc941: -Lset8156 = Ltmp6508-Lfunc_begin0 - .quad Lset8156 -Lset8157 = Ltmp6511-Lfunc_begin0 - .quad Lset8157 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -Lset8158 = Ltmp6514-Lfunc_begin0 - .quad Lset8158 -Lset8159 = Ltmp6515-Lfunc_begin0 - .quad Lset8159 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc942: -Lset8160 = Lfunc_begin47-Lfunc_begin0 - .quad Lset8160 -Lset8161 = Ltmp6540-Lfunc_begin0 - .quad Lset8161 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8162 = Ltmp6548-Lfunc_begin0 - .quad Lset8162 -Lset8163 = Ltmp6549-Lfunc_begin0 - .quad Lset8163 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8164 = Ltmp6550-Lfunc_begin0 - .quad Lset8164 -Lset8165 = Lfunc_end47-Lfunc_begin0 - .quad Lset8165 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc943: -Lset8166 = Lfunc_begin47-Lfunc_begin0 - .quad Lset8166 -Lset8167 = Ltmp6540-Lfunc_begin0 - .quad Lset8167 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8168 = Ltmp6548-Lfunc_begin0 - .quad Lset8168 -Lset8169 = Ltmp6549-Lfunc_begin0 - .quad Lset8169 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8170 = Ltmp6550-Lfunc_begin0 - .quad Lset8170 -Lset8171 = Ltmp6553-Lfunc_begin0 - .quad Lset8171 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc944: -Lset8172 = Lfunc_begin47-Lfunc_begin0 - .quad Lset8172 -Lset8173 = Ltmp6527-Lfunc_begin0 - .quad Lset8173 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8174 = Ltmp6527-Lfunc_begin0 - .quad Lset8174 -Lset8175 = Ltmp6546-Lfunc_begin0 - .quad Lset8175 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8176 = Ltmp6548-Lfunc_begin0 - .quad Lset8176 -Lset8177 = Ltmp6549-Lfunc_begin0 - .quad Lset8177 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8178 = Ltmp6550-Lfunc_begin0 - .quad Lset8178 -Lset8179 = Ltmp6553-Lfunc_begin0 - .quad Lset8179 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc945: -Lset8180 = Ltmp6532-Lfunc_begin0 - .quad Lset8180 -Lset8181 = Ltmp6533-Lfunc_begin0 - .quad Lset8181 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8182 = Ltmp6536-Lfunc_begin0 - .quad Lset8182 -Lset8183 = Ltmp6537-Lfunc_begin0 - .quad Lset8183 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc946: -Lset8184 = Ltmp6538-Lfunc_begin0 - .quad Lset8184 -Lset8185 = Ltmp6547-Lfunc_begin0 - .quad Lset8185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8186 = Ltmp6548-Lfunc_begin0 - .quad Lset8186 -Lset8187 = Ltmp6549-Lfunc_begin0 - .quad Lset8187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc947: -Lset8188 = Lfunc_begin48-Lfunc_begin0 - .quad Lset8188 -Lset8189 = Ltmp6566-Lfunc_begin0 - .quad Lset8189 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8190 = Ltmp6566-Lfunc_begin0 - .quad Lset8190 -Lset8191 = Ltmp6575-Lfunc_begin0 - .quad Lset8191 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8192 = Ltmp6577-Lfunc_begin0 - .quad Lset8192 -Lset8193 = Ltmp6581-Lfunc_begin0 - .quad Lset8193 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8194 = Ltmp6584-Lfunc_begin0 - .quad Lset8194 -Lset8195 = Ltmp6591-Lfunc_begin0 - .quad Lset8195 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8196 = Ltmp6594-Lfunc_begin0 - .quad Lset8196 -Lset8197 = Ltmp6595-Lfunc_begin0 - .quad Lset8197 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8198 = Ltmp6596-Lfunc_begin0 - .quad Lset8198 -Lset8199 = Lfunc_end48-Lfunc_begin0 - .quad Lset8199 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc948: -Lset8200 = Lfunc_begin48-Lfunc_begin0 - .quad Lset8200 -Lset8201 = Ltmp6565-Lfunc_begin0 - .quad Lset8201 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8202 = Ltmp6565-Lfunc_begin0 - .quad Lset8202 -Lset8203 = Ltmp6575-Lfunc_begin0 - .quad Lset8203 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8204 = Ltmp6577-Lfunc_begin0 - .quad Lset8204 -Lset8205 = Ltmp6581-Lfunc_begin0 - .quad Lset8205 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8206 = Ltmp6584-Lfunc_begin0 - .quad Lset8206 -Lset8207 = Ltmp6591-Lfunc_begin0 - .quad Lset8207 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8208 = Ltmp6594-Lfunc_begin0 - .quad Lset8208 -Lset8209 = Ltmp6595-Lfunc_begin0 - .quad Lset8209 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc949: -Lset8210 = Lfunc_begin48-Lfunc_begin0 - .quad Lset8210 -Lset8211 = Ltmp6564-Lfunc_begin0 - .quad Lset8211 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8212 = Ltmp6564-Lfunc_begin0 - .quad Lset8212 -Lset8213 = Ltmp6575-Lfunc_begin0 - .quad Lset8213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8214 = Ltmp6577-Lfunc_begin0 - .quad Lset8214 -Lset8215 = Ltmp6581-Lfunc_begin0 - .quad Lset8215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8216 = Ltmp6584-Lfunc_begin0 - .quad Lset8216 -Lset8217 = Ltmp6591-Lfunc_begin0 - .quad Lset8217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8218 = Ltmp6594-Lfunc_begin0 - .quad Lset8218 -Lset8219 = Ltmp6595-Lfunc_begin0 - .quad Lset8219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc950: -Lset8220 = Lfunc_begin48-Lfunc_begin0 - .quad Lset8220 -Lset8221 = Ltmp6563-Lfunc_begin0 - .quad Lset8221 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8222 = Ltmp6563-Lfunc_begin0 - .quad Lset8222 -Lset8223 = Ltmp6576-Lfunc_begin0 - .quad Lset8223 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8224 = Ltmp6577-Lfunc_begin0 - .quad Lset8224 -Lset8225 = Ltmp6595-Lfunc_begin0 - .quad Lset8225 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc951: -Lset8226 = Ltmp6562-Lfunc_begin0 - .quad Lset8226 -Lset8227 = Ltmp6563-Lfunc_begin0 - .quad Lset8227 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8228 = Ltmp6563-Lfunc_begin0 - .quad Lset8228 -Lset8229 = Ltmp6568-Lfunc_begin0 - .quad Lset8229 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc952: -Lset8230 = Ltmp6562-Lfunc_begin0 - .quad Lset8230 -Lset8231 = Ltmp6563-Lfunc_begin0 - .quad Lset8231 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8232 = Ltmp6563-Lfunc_begin0 - .quad Lset8232 -Lset8233 = Ltmp6568-Lfunc_begin0 - .quad Lset8233 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc953: -Lset8234 = Ltmp6562-Lfunc_begin0 - .quad Lset8234 -Lset8235 = Ltmp6563-Lfunc_begin0 - .quad Lset8235 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8236 = Ltmp6563-Lfunc_begin0 - .quad Lset8236 -Lset8237 = Ltmp6568-Lfunc_begin0 - .quad Lset8237 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc954: -Lset8238 = Ltmp6569-Lfunc_begin0 - .quad Lset8238 -Lset8239 = Ltmp6572-Lfunc_begin0 - .quad Lset8239 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8240 = Ltmp6584-Lfunc_begin0 - .quad Lset8240 -Lset8241 = Ltmp6586-Lfunc_begin0 - .quad Lset8241 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc955: -Lset8242 = Ltmp6570-Lfunc_begin0 - .quad Lset8242 -Lset8243 = Ltmp6573-Lfunc_begin0 - .quad Lset8243 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8244 = Ltmp6584-Lfunc_begin0 - .quad Lset8244 -Lset8245 = Ltmp6586-Lfunc_begin0 - .quad Lset8245 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc956: -Lset8246 = Ltmp6573-Lfunc_begin0 - .quad Lset8246 -Lset8247 = Ltmp6573-Lfunc_begin0 - .quad Lset8247 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -Lset8248 = Ltmp6585-Lfunc_begin0 - .quad Lset8248 -Lset8249 = Ltmp6586-Lfunc_begin0 - .quad Lset8249 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc957: -Lset8250 = Ltmp6579-Lfunc_begin0 - .quad Lset8250 -Lset8251 = Ltmp6582-Lfunc_begin0 - .quad Lset8251 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc958: -Lset8252 = Ltmp6580-Lfunc_begin0 - .quad Lset8252 -Lset8253 = Ltmp6583-Lfunc_begin0 - .quad Lset8253 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc959: -Lset8254 = Ltmp6582-Lfunc_begin0 - .quad Lset8254 -Lset8255 = Ltmp6584-Lfunc_begin0 - .quad Lset8255 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc960: -Lset8256 = Ltmp6589-Lfunc_begin0 - .quad Lset8256 -Lset8257 = Ltmp6592-Lfunc_begin0 - .quad Lset8257 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc961: -Lset8258 = Ltmp6590-Lfunc_begin0 - .quad Lset8258 -Lset8259 = Ltmp6593-Lfunc_begin0 - .quad Lset8259 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc962: -Lset8260 = Ltmp6592-Lfunc_begin0 - .quad Lset8260 -Lset8261 = Ltmp6594-Lfunc_begin0 - .quad Lset8261 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc963: -Lset8262 = Lfunc_begin49-Lfunc_begin0 - .quad Lset8262 -Lset8263 = Ltmp6609-Lfunc_begin0 - .quad Lset8263 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8264 = Ltmp6609-Lfunc_begin0 - .quad Lset8264 -Lset8265 = Ltmp6622-Lfunc_begin0 - .quad Lset8265 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8266 = Ltmp6624-Lfunc_begin0 - .quad Lset8266 -Lset8267 = Ltmp6625-Lfunc_begin0 - .quad Lset8267 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8268 = Ltmp6627-Lfunc_begin0 - .quad Lset8268 -Lset8269 = Ltmp6634-Lfunc_begin0 - .quad Lset8269 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8270 = Ltmp6635-Lfunc_begin0 - .quad Lset8270 -Lset8271 = Ltmp6636-Lfunc_begin0 - .quad Lset8271 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8272 = Ltmp6636-Lfunc_begin0 - .quad Lset8272 -Lset8273 = Ltmp6637-Lfunc_begin0 - .quad Lset8273 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8274 = Ltmp6637-Lfunc_begin0 - .quad Lset8274 -Lset8275 = Ltmp6640-Lfunc_begin0 - .quad Lset8275 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8276 = Ltmp6640-Lfunc_begin0 - .quad Lset8276 -Lset8277 = Ltmp6646-Lfunc_begin0 - .quad Lset8277 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8278 = Ltmp6648-Lfunc_begin0 - .quad Lset8278 -Lset8279 = Ltmp6649-Lfunc_begin0 - .quad Lset8279 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8280 = Ltmp6649-Lfunc_begin0 - .quad Lset8280 -Lset8281 = Ltmp6651-Lfunc_begin0 - .quad Lset8281 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8282 = Ltmp6653-Lfunc_begin0 - .quad Lset8282 -Lset8283 = Ltmp6655-Lfunc_begin0 - .quad Lset8283 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8284 = Ltmp6655-Lfunc_begin0 - .quad Lset8284 -Lset8285 = Ltmp6659-Lfunc_begin0 - .quad Lset8285 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8286 = Ltmp6659-Lfunc_begin0 - .quad Lset8286 -Lset8287 = Ltmp6671-Lfunc_begin0 - .quad Lset8287 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8288 = Ltmp6671-Lfunc_begin0 - .quad Lset8288 -Lset8289 = Ltmp6674-Lfunc_begin0 - .quad Lset8289 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8290 = Ltmp6675-Lfunc_begin0 - .quad Lset8290 -Lset8291 = Ltmp6676-Lfunc_begin0 - .quad Lset8291 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8292 = Ltmp6677-Lfunc_begin0 - .quad Lset8292 -Lset8293 = Ltmp6684-Lfunc_begin0 - .quad Lset8293 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8294 = Ltmp6686-Lfunc_begin0 - .quad Lset8294 -Lset8295 = Ltmp6687-Lfunc_begin0 - .quad Lset8295 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8296 = Ltmp6687-Lfunc_begin0 - .quad Lset8296 -Lset8297 = Ltmp6689-Lfunc_begin0 - .quad Lset8297 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8298 = Ltmp6692-Lfunc_begin0 - .quad Lset8298 -Lset8299 = Ltmp6702-Lfunc_begin0 - .quad Lset8299 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8300 = Ltmp6702-Lfunc_begin0 - .quad Lset8300 -Lset8301 = Ltmp6703-Lfunc_begin0 - .quad Lset8301 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8302 = Ltmp6706-Lfunc_begin0 - .quad Lset8302 -Lset8303 = Ltmp6707-Lfunc_begin0 - .quad Lset8303 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -Lset8304 = Ltmp6707-Lfunc_begin0 - .quad Lset8304 -Lset8305 = Ltmp6708-Lfunc_begin0 - .quad Lset8305 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8306 = Ltmp6708-Lfunc_begin0 - .quad Lset8306 -Lset8307 = Lfunc_end49-Lfunc_begin0 - .quad Lset8307 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc964: -Lset8308 = Lfunc_begin49-Lfunc_begin0 - .quad Lset8308 -Lset8309 = Ltmp6608-Lfunc_begin0 - .quad Lset8309 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8310 = Ltmp6608-Lfunc_begin0 - .quad Lset8310 -Lset8311 = Ltmp6618-Lfunc_begin0 - .quad Lset8311 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8312 = Ltmp6624-Lfunc_begin0 - .quad Lset8312 -Lset8313 = Ltmp6626-Lfunc_begin0 - .quad Lset8313 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8314 = Ltmp6627-Lfunc_begin0 - .quad Lset8314 -Lset8315 = Ltmp6631-Lfunc_begin0 - .quad Lset8315 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8316 = Ltmp6635-Lfunc_begin0 - .quad Lset8316 -Lset8317 = Ltmp6644-Lfunc_begin0 - .quad Lset8317 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -Lset8318 = Ltmp6648-Lfunc_begin0 - .quad Lset8318 -Lset8319 = Ltmp6649-Lfunc_begin0 - .quad Lset8319 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc965: -Lset8320 = Lfunc_begin49-Lfunc_begin0 - .quad Lset8320 -Lset8321 = Ltmp6607-Lfunc_begin0 - .quad Lset8321 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8322 = Ltmp6607-Lfunc_begin0 - .quad Lset8322 -Lset8323 = Ltmp6618-Lfunc_begin0 - .quad Lset8323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8324 = Ltmp6624-Lfunc_begin0 - .quad Lset8324 -Lset8325 = Ltmp6626-Lfunc_begin0 - .quad Lset8325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8326 = Ltmp6627-Lfunc_begin0 - .quad Lset8326 -Lset8327 = Ltmp6634-Lfunc_begin0 - .quad Lset8327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8328 = Ltmp6635-Lfunc_begin0 - .quad Lset8328 -Lset8329 = Ltmp6646-Lfunc_begin0 - .quad Lset8329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8330 = Ltmp6648-Lfunc_begin0 - .quad Lset8330 -Lset8331 = Ltmp6651-Lfunc_begin0 - .quad Lset8331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8332 = Ltmp6653-Lfunc_begin0 - .quad Lset8332 -Lset8333 = Ltmp6671-Lfunc_begin0 - .quad Lset8333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8334 = Ltmp6675-Lfunc_begin0 - .quad Lset8334 -Lset8335 = Ltmp6676-Lfunc_begin0 - .quad Lset8335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8336 = Ltmp6677-Lfunc_begin0 - .quad Lset8336 -Lset8337 = Ltmp6684-Lfunc_begin0 - .quad Lset8337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -Lset8338 = Ltmp6692-Lfunc_begin0 - .quad Lset8338 -Lset8339 = Ltmp6703-Lfunc_begin0 - .quad Lset8339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc966: -Lset8340 = Lfunc_begin49-Lfunc_begin0 - .quad Lset8340 -Lset8341 = Ltmp6606-Lfunc_begin0 - .quad Lset8341 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8342 = Ltmp6606-Lfunc_begin0 - .quad Lset8342 -Lset8343 = Ltmp6623-Lfunc_begin0 - .quad Lset8343 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8344 = Ltmp6624-Lfunc_begin0 - .quad Lset8344 -Lset8345 = Ltmp6626-Lfunc_begin0 - .quad Lset8345 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8346 = Ltmp6627-Lfunc_begin0 - .quad Lset8346 -Lset8347 = Ltmp6647-Lfunc_begin0 - .quad Lset8347 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8348 = Ltmp6648-Lfunc_begin0 - .quad Lset8348 -Lset8349 = Ltmp6658-Lfunc_begin0 - .quad Lset8349 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8350 = Ltmp6659-Lfunc_begin0 - .quad Lset8350 -Lset8351 = Ltmp6660-Lfunc_begin0 - .quad Lset8351 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8352 = Ltmp6671-Lfunc_begin0 - .quad Lset8352 -Lset8353 = Ltmp6674-Lfunc_begin0 - .quad Lset8353 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -Lset8354 = Ltmp6687-Lfunc_begin0 - .quad Lset8354 -Lset8355 = Ltmp6690-Lfunc_begin0 - .quad Lset8355 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc967: -Lset8356 = Ltmp6612-Lfunc_begin0 - .quad Lset8356 -Lset8357 = Ltmp6615-Lfunc_begin0 - .quad Lset8357 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -Lset8358 = Ltmp6635-Lfunc_begin0 - .quad Lset8358 -Lset8359 = Ltmp6639-Lfunc_begin0 - .quad Lset8359 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc968: -Lset8360 = Ltmp6613-Lfunc_begin0 - .quad Lset8360 -Lset8361 = Ltmp6622-Lfunc_begin0 - .quad Lset8361 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8362 = Ltmp6635-Lfunc_begin0 - .quad Lset8362 -Lset8363 = Ltmp6639-Lfunc_begin0 - .quad Lset8363 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc969: -Lset8364 = Ltmp6616-Lfunc_begin0 - .quad Lset8364 -Lset8365 = Ltmp6616-Lfunc_begin0 - .quad Lset8365 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8366 = Ltmp6638-Lfunc_begin0 - .quad Lset8366 -Lset8367 = Ltmp6639-Lfunc_begin0 - .quad Lset8367 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc970: -Lset8368 = Ltmp6629-Lfunc_begin0 - .quad Lset8368 -Lset8369 = Ltmp6631-Lfunc_begin0 - .quad Lset8369 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8370 = Ltmp6649-Lfunc_begin0 - .quad Lset8370 -Lset8371 = Ltmp6653-Lfunc_begin0 - .quad Lset8371 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -Lset8372 = Ltmp6671-Lfunc_begin0 - .quad Lset8372 -Lset8373 = Ltmp6673-Lfunc_begin0 - .quad Lset8373 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc971: -Lset8374 = Ltmp6633-Lfunc_begin0 - .quad Lset8374 -Lset8375 = Ltmp6635-Lfunc_begin0 - .quad Lset8375 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset8376 = Ltmp6673-Lfunc_begin0 - .quad Lset8376 -Lset8377 = Ltmp6674-Lfunc_begin0 - .quad Lset8377 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc972: -Lset8378 = Ltmp6642-Lfunc_begin0 - .quad Lset8378 -Lset8379 = Ltmp6647-Lfunc_begin0 - .quad Lset8379 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -Lset8380 = Ltmp6687-Lfunc_begin0 - .quad Lset8380 -Lset8381 = Ltmp6691-Lfunc_begin0 - .quad Lset8381 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc973: -Lset8382 = Ltmp6645-Lfunc_begin0 - .quad Lset8382 -Lset8383 = Ltmp6647-Lfunc_begin0 - .quad Lset8383 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset8384 = Ltmp6687-Lfunc_begin0 - .quad Lset8384 -Lset8385 = Ltmp6692-Lfunc_begin0 - .quad Lset8385 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc974: -Lset8386 = Ltmp6647-Lfunc_begin0 - .quad Lset8386 -Lset8387 = Ltmp6648-Lfunc_begin0 - .quad Lset8387 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc975: -Lset8388 = Ltmp6650-Lfunc_begin0 - .quad Lset8388 -Lset8389 = Ltmp6653-Lfunc_begin0 - .quad Lset8389 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset8390 = Ltmp6671-Lfunc_begin0 - .quad Lset8390 -Lset8391 = Ltmp6672-Lfunc_begin0 - .quad Lset8391 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc976: -Lset8392 = Ltmp6652-Lfunc_begin0 - .quad Lset8392 -Lset8393 = Ltmp6653-Lfunc_begin0 - .quad Lset8393 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc977: -Lset8394 = Ltmp6656-Lfunc_begin0 - .quad Lset8394 -Lset8395 = Ltmp6657-Lfunc_begin0 - .quad Lset8395 - .short 2 ## Loc expr size - .byte 116 ## DW_OP_breg4 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc978: -Lset8396 = Ltmp6656-Lfunc_begin0 - .quad Lset8396 -Lset8397 = Ltmp6658-Lfunc_begin0 - .quad Lset8397 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc979: -Lset8398 = Ltmp6660-Lfunc_begin0 - .quad Lset8398 -Lset8399 = Ltmp6662-Lfunc_begin0 - .quad Lset8399 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 -Lset8400 = Ltmp6666-Lfunc_begin0 - .quad Lset8400 -Lset8401 = Ltmp6671-Lfunc_begin0 - .quad Lset8401 - .short 2 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 - .quad 0 - .quad 0 -Ldebug_loc980: -Lset8402 = Ltmp6683-Lfunc_begin0 - .quad Lset8402 -Lset8403 = Ltmp6685-Lfunc_begin0 - .quad Lset8403 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset8404 = Ltmp6686-Lfunc_begin0 - .quad Lset8404 -Lset8405 = Ltmp6687-Lfunc_begin0 - .quad Lset8405 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc981: -Lset8406 = Ltmp6685-Lfunc_begin0 - .quad Lset8406 -Lset8407 = Ltmp6686-Lfunc_begin0 - .quad Lset8407 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc982: -Lset8408 = Ltmp6688-Lfunc_begin0 - .quad Lset8408 -Lset8409 = Ltmp6690-Lfunc_begin0 - .quad Lset8409 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc983: -Lset8410 = Ltmp6694-Lfunc_begin0 - .quad Lset8410 -Lset8411 = Ltmp6695-Lfunc_begin0 - .quad Lset8411 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -Lset8412 = Ltmp6695-Lfunc_begin0 - .quad Lset8412 -Lset8413 = Lfunc_end49-Lfunc_begin0 - .quad Lset8413 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc984: -Lset8414 = Ltmp6696-Lfunc_begin0 - .quad Lset8414 -Lset8415 = Ltmp6698-Lfunc_begin0 - .quad Lset8415 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc985: -Lset8416 = Ltmp6701-Lfunc_begin0 - .quad Lset8416 -Lset8417 = Ltmp6705-Lfunc_begin0 - .quad Lset8417 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 -Lset8418 = Ltmp6706-Lfunc_begin0 - .quad Lset8418 -Lset8419 = Ltmp6707-Lfunc_begin0 - .quad Lset8419 - .short 3 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .byte 147 ## DW_OP_piece - .byte 4 ## 4 - .quad 0 - .quad 0 -Ldebug_loc986: -Lset8420 = Ltmp6704-Lfunc_begin0 - .quad Lset8420 -Lset8421 = Ltmp6706-Lfunc_begin0 - .quad Lset8421 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc987: -Lset8422 = Lfunc_begin50-Lfunc_begin0 - .quad Lset8422 -Lset8423 = Ltmp6721-Lfunc_begin0 - .quad Lset8423 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc988: -Lset8424 = Lfunc_begin50-Lfunc_begin0 - .quad Lset8424 -Lset8425 = Ltmp6717-Lfunc_begin0 - .quad Lset8425 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc989: -Lset8426 = Ltmp6717-Lfunc_begin0 - .quad Lset8426 -Lset8427 = Ltmp6734-Lfunc_begin0 - .quad Lset8427 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8428 = Ltmp6735-Lfunc_begin0 - .quad Lset8428 -Lset8429 = Ltmp6736-Lfunc_begin0 - .quad Lset8429 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc990: -Lset8430 = Ltmp6717-Lfunc_begin0 - .quad Lset8430 -Lset8431 = Ltmp6718-Lfunc_begin0 - .quad Lset8431 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -Lset8432 = Ltmp6720-Lfunc_begin0 - .quad Lset8432 -Lset8433 = Ltmp6734-Lfunc_begin0 - .quad Lset8433 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc991: -Lset8434 = Ltmp6721-Lfunc_begin0 - .quad Lset8434 -Lset8435 = Ltmp6721-Lfunc_begin0 - .quad Lset8435 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc992: -Lset8436 = Ltmp6725-Lfunc_begin0 - .quad Lset8436 -Lset8437 = Ltmp6727-Lfunc_begin0 - .quad Lset8437 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc993: -Lset8438 = Ltmp6726-Lfunc_begin0 - .quad Lset8438 -Lset8439 = Ltmp6727-Lfunc_begin0 - .quad Lset8439 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -Lset8440 = Ltmp6730-Lfunc_begin0 - .quad Lset8440 -Lset8441 = Ltmp6731-Lfunc_begin0 - .quad Lset8441 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc994: -Lset8442 = Ltmp6732-Lfunc_begin0 - .quad Lset8442 -Lset8443 = Ltmp6734-Lfunc_begin0 - .quad Lset8443 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 - .section __DWARF,__debug_abbrev,regular,debug -Lsection_abbrev: - .byte 1 ## Abbreviation Code - .byte 17 ## DW_TAG_compile_unit - .byte 1 ## DW_CHILDREN_yes - .byte 37 ## DW_AT_producer - .byte 14 ## DW_FORM_strp - .byte 19 ## DW_AT_language - .byte 5 ## DW_FORM_data2 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 16 ## DW_AT_stmt_list - .byte 6 ## DW_FORM_data4 - .byte 27 ## DW_AT_comp_dir - .byte 14 ## DW_FORM_strp - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 2 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 64 ## DW_AT_frame_base - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 3 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 2 ## DW_AT_location - .byte 10 ## DW_FORM_block1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 4 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 5 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 6 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 85 ## DW_AT_ranges - .byte 6 ## DW_FORM_data4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 7 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 8 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 9 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 85 ## DW_AT_ranges - .byte 6 ## DW_FORM_data4 - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 10 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 11 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 12 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 28 ## DW_AT_const_value - .byte 13 ## DW_FORM_sdata - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 13 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 85 ## DW_AT_ranges - .byte 6 ## DW_FORM_data4 - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 14 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 28 ## DW_AT_const_value - .byte 13 ## DW_FORM_sdata - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 15 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 16 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 28 ## DW_AT_const_value - .byte 13 ## DW_FORM_sdata - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 17 ## Abbreviation Code - .byte 1 ## DW_TAG_array_type - .byte 1 ## DW_CHILDREN_yes - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 18 ## Abbreviation Code - .byte 33 ## DW_TAG_subrange_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 55 ## DW_AT_count - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 19 ## Abbreviation Code - .byte 15 ## DW_TAG_pointer_type - .byte 0 ## DW_CHILDREN_no - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 20 ## Abbreviation Code - .byte 36 ## DW_TAG_base_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 62 ## DW_AT_encoding - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 21 ## Abbreviation Code - .byte 4 ## DW_TAG_enumeration_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 22 ## Abbreviation Code - .byte 40 ## DW_TAG_enumerator - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 28 ## DW_AT_const_value - .byte 13 ## DW_FORM_sdata - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 23 ## Abbreviation Code - .byte 4 ## DW_TAG_enumeration_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 24 ## Abbreviation Code - .byte 22 ## DW_TAG_typedef - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 25 ## Abbreviation Code - .byte 36 ## DW_TAG_base_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 62 ## DW_AT_encoding - .byte 11 ## DW_FORM_data1 - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 26 ## Abbreviation Code - .byte 15 ## DW_TAG_pointer_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 27 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 28 ## Abbreviation Code - .byte 13 ## DW_TAG_member - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 56 ## DW_AT_data_member_location - .byte 10 ## DW_FORM_block1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 29 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 30 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 31 ## Abbreviation Code - .byte 13 ## DW_TAG_member - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 56 ## DW_AT_data_member_location - .byte 10 ## DW_FORM_block1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 32 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 33 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 1 ## DW_CHILDREN_yes - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 34 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 35 ## Abbreviation Code - .byte 22 ## DW_TAG_typedef - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 36 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 5 ## DW_FORM_data2 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 37 ## Abbreviation Code - .byte 38 ## DW_TAG_const_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 38 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 60 ## DW_AT_declaration - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 39 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 0 ## DW_CHILDREN_no - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 40 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 1 ## DW_CHILDREN_yes - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 41 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 42 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 43 ## Abbreviation Code - .byte 53 ## DW_TAG_volatile_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 44 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 45 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 46 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 64 ## DW_AT_frame_base - .byte 10 ## DW_FORM_block1 - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 47 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 48 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 49 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 50 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 51 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 64 ## DW_AT_frame_base - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 52 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 53 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 64 ## DW_AT_frame_base - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 54 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 6 ## DW_FORM_data4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 55 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 1 ## DW_FORM_addr - .byte 64 ## DW_AT_frame_base - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 56 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 57 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 58 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 59 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 60 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 61 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 10 ## DW_FORM_block1 - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 62 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 63 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 12 ## DW_FORM_flag - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 12 ## DW_FORM_flag - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 12 ## DW_FORM_flag - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 64 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 10 ## DW_FORM_block1 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 0 ## EOM(3) - .section __DWARF,__debug_info,regular,debug -Lsection_info: -Lcu_begin0: - .long 33285 ## Length of Unit - .short 2 ## DWARF version number -Lset8444 = Lsection_abbrev-Lsection_abbrev ## Offset Into Abbrev. Section - .long Lset8444 - .byte 8 ## Address Size (in bytes) - .byte 1 ## Abbrev [1] 0xb:0x81fe DW_TAG_compile_unit - .long 0 ## DW_AT_producer - .short 12 ## DW_AT_language - .long 42 ## DW_AT_name -Lset8445 = Lline_table_start0-Lsection_line ## DW_AT_stmt_list - .long Lset8445 - .long 77 ## DW_AT_comp_dir - .byte 1 ## DW_AT_APPLE_optimized - .quad Lfunc_begin0 ## DW_AT_low_pc - .quad Lfunc_end50 ## DW_AT_high_pc - .byte 2 ## Abbrev [2] 0x2f:0x3978 DW_TAG_subprogram - .quad Lfunc_begin17 ## DW_AT_low_pc - .quad Lfunc_end17 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4363 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1138 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 3 ## Abbrev [3] 0x50:0x16 DW_TAG_variable - .long 128 ## DW_AT_name - .long 14759 ## DW_AT_type - .byte 1 ## DW_AT_decl_file - .short 1141 ## DW_AT_decl_line - .byte 9 ## DW_AT_location - .byte 3 - .quad _luaV_execute.dispatch_table - .byte 4 ## Abbrev [4] 0x66:0x10 DW_TAG_formal_parameter -Lset8446 = Ldebug_loc165-Lsection_debug_loc ## DW_AT_location - .long Lset8446 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1138 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x76:0x10 DW_TAG_variable -Lset8447 = Ldebug_loc166-Lsection_debug_loc ## DW_AT_location - .long Lset8447 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1261 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x86:0x10 DW_TAG_variable -Lset8448 = Ldebug_loc167-Lsection_debug_loc ## DW_AT_location - .long Lset8448 - .long 5048 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1266 ## DW_AT_decl_line - .long 18344 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x96:0x10 DW_TAG_variable -Lset8449 = Ldebug_loc168-Lsection_debug_loc ## DW_AT_location - .long Lset8449 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1262 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa6:0x10 DW_TAG_variable -Lset8450 = Ldebug_loc169-Lsection_debug_loc ## DW_AT_location - .long Lset8450 - .long 2933 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1263 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb6:0x10 DW_TAG_variable -Lset8451 = Ldebug_loc173-Lsection_debug_loc ## DW_AT_location - .long Lset8451 - .long 5051 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1265 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc6:0x10 DW_TAG_variable -Lset8452 = Ldebug_loc174-Lsection_debug_loc ## DW_AT_location - .long Lset8452 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1264 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xd6:0x38d0 DW_TAG_lexical_block -Lset8453 = Ldebug_ranges216-Ldebug_range ## DW_AT_ranges - .long Lset8453 - .byte 5 ## Abbrev [5] 0xdb:0x10 DW_TAG_variable -Lset8454 = Ldebug_loc170-Lsection_debug_loc ## DW_AT_location - .long Lset8454 - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1287 ## DW_AT_decl_line - .long 18354 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xeb:0x10 DW_TAG_variable -Lset8455 = Ldebug_loc171-Lsection_debug_loc ## DW_AT_location - .long Lset8455 - .long 5045 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1288 ## DW_AT_decl_line - .long 20211 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xfb:0x10 DW_TAG_variable -Lset8456 = Ldebug_loc172-Lsection_debug_loc ## DW_AT_location - .long Lset8456 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1289 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x10b:0x26 DW_TAG_lexical_block -Lset8457 = Ldebug_ranges47-Ldebug_range ## DW_AT_ranges - .long Lset8457 - .byte 5 ## Abbrev [5] 0x110:0x10 DW_TAG_variable -Lset8458 = Ldebug_loc438-Lsection_debug_loc ## DW_AT_location - .long Lset8458 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1725 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x120:0x10 DW_TAG_variable -Lset8459 = Ldebug_loc439-Lsection_debug_loc ## DW_AT_location - .long Lset8459 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1728 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x131:0x1e DW_TAG_lexical_block - .quad Ltmp886 ## DW_AT_low_pc - .quad Ltmp888 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x142:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1294 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x14f:0x3c DW_TAG_lexical_block - .quad Ltmp893 ## DW_AT_low_pc - .quad Ltmp909 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x160:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1298 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x16c:0x1e DW_TAG_lexical_block - .quad Ltmp903 ## DW_AT_low_pc - .quad Ltmp904 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x17d:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1299 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x18b:0x3c DW_TAG_lexical_block - .quad Ltmp909 ## DW_AT_low_pc - .quad Ltmp925 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x19c:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1303 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1a8:0x1e DW_TAG_lexical_block - .quad Ltmp919 ## DW_AT_low_pc - .quad Ltmp920 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1b9:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1306 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1c7:0x1e DW_TAG_lexical_block - .quad Ltmp933 ## DW_AT_low_pc - .quad Ltmp935 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1d8:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1310 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1e5:0x22 DW_TAG_lexical_block - .quad Ltmp943 ## DW_AT_low_pc - .quad Ltmp966 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1f6:0x10 DW_TAG_variable -Lset8460 = Ldebug_loc175-Lsection_debug_loc ## DW_AT_location - .long Lset8460 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1315 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x207:0x40 DW_TAG_lexical_block - .quad Ltmp966 ## DW_AT_low_pc - .quad Ltmp983 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x218:0x10 DW_TAG_variable -Lset8461 = Ldebug_loc176-Lsection_debug_loc ## DW_AT_location - .long Lset8461 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1322 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x228:0x1e DW_TAG_lexical_block - .quad Ltmp976 ## DW_AT_low_pc - .quad Ltmp977 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x239:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1323 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x247:0x14c DW_TAG_lexical_block -Lset8462 = Ldebug_ranges52-Ldebug_range ## DW_AT_ranges - .long Lset8462 - .byte 5 ## Abbrev [5] 0x24c:0x10 DW_TAG_variable -Lset8463 = Ldebug_loc180-Lsection_debug_loc ## DW_AT_location - .long Lset8463 - .long 5056 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1327 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x25c:0x10 DW_TAG_variable -Lset8464 = Ldebug_loc181-Lsection_debug_loc ## DW_AT_location - .long Lset8464 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1328 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x26c:0x5a DW_TAG_lexical_block -Lset8465 = Ldebug_ranges49-Ldebug_range ## DW_AT_ranges - .long Lset8465 - .byte 5 ## Abbrev [5] 0x271:0x10 DW_TAG_variable -Lset8466 = Ldebug_loc177-Lsection_debug_loc ## DW_AT_location - .long Lset8466 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x281:0x44 DW_TAG_lexical_block -Lset8467 = Ldebug_ranges48-Ldebug_range ## DW_AT_ranges - .long Lset8467 - .byte 5 ## Abbrev [5] 0x286:0x10 DW_TAG_variable -Lset8468 = Ldebug_loc178-Lsection_debug_loc ## DW_AT_location - .long Lset8468 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x296:0x10 DW_TAG_variable -Lset8469 = Ldebug_loc179-Lsection_debug_loc ## DW_AT_location - .long Lset8469 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2a6:0x1e DW_TAG_lexical_block - .quad Ltmp989 ## DW_AT_low_pc - .quad Ltmp991 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2b7:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2c6:0x72 DW_TAG_lexical_block - .quad Ltmp1003 ## DW_AT_low_pc - .quad Ltmp1010 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2d7:0x10 DW_TAG_variable -Lset8470 = Ldebug_loc182-Lsection_debug_loc ## DW_AT_location - .long Lset8470 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2e7:0x50 DW_TAG_lexical_block - .quad Ltmp1005 ## DW_AT_low_pc - .quad Ltmp1010 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2f8:0x10 DW_TAG_variable -Lset8471 = Ldebug_loc183-Lsection_debug_loc ## DW_AT_location - .long Lset8471 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x308:0x10 DW_TAG_variable -Lset8472 = Ldebug_loc184-Lsection_debug_loc ## DW_AT_location - .long Lset8472 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x318:0x1e DW_TAG_lexical_block - .quad Ltmp1008 ## DW_AT_low_pc - .quad Ltmp1010 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x329:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x338:0x5a DW_TAG_lexical_block -Lset8473 = Ldebug_ranges51-Ldebug_range ## DW_AT_ranges - .long Lset8473 - .byte 5 ## Abbrev [5] 0x33d:0x10 DW_TAG_variable -Lset8474 = Ldebug_loc187-Lsection_debug_loc ## DW_AT_location - .long Lset8474 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x34d:0x1e DW_TAG_lexical_block - .quad Ltmp1044 ## DW_AT_low_pc - .quad Ltmp1045 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x35e:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x36b:0x26 DW_TAG_lexical_block -Lset8475 = Ldebug_ranges50-Ldebug_range ## DW_AT_ranges - .long Lset8475 - .byte 5 ## Abbrev [5] 0x370:0x10 DW_TAG_variable -Lset8476 = Ldebug_loc185-Lsection_debug_loc ## DW_AT_location - .long Lset8476 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x380:0x10 DW_TAG_variable -Lset8477 = Ldebug_loc186-Lsection_debug_loc ## DW_AT_location - .long Lset8477 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1329 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x393:0x164 DW_TAG_lexical_block -Lset8478 = Ldebug_ranges55-Ldebug_range ## DW_AT_ranges - .long Lset8478 - .byte 5 ## Abbrev [5] 0x398:0x10 DW_TAG_variable -Lset8479 = Ldebug_loc191-Lsection_debug_loc ## DW_AT_location - .long Lset8479 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1333 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3a8:0x10 DW_TAG_variable -Lset8480 = Ldebug_loc192-Lsection_debug_loc ## DW_AT_location - .long Lset8480 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1334 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3b8:0x72 DW_TAG_lexical_block - .quad Ltmp1055 ## DW_AT_low_pc - .quad Ltmp1062 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x3c9:0x10 DW_TAG_variable -Lset8481 = Ldebug_loc188-Lsection_debug_loc ## DW_AT_location - .long Lset8481 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3d9:0x50 DW_TAG_lexical_block - .quad Ltmp1057 ## DW_AT_low_pc - .quad Ltmp1062 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x3ea:0x10 DW_TAG_variable -Lset8482 = Ldebug_loc189-Lsection_debug_loc ## DW_AT_location - .long Lset8482 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3fa:0x10 DW_TAG_variable -Lset8483 = Ldebug_loc190-Lsection_debug_loc ## DW_AT_location - .long Lset8483 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x40a:0x1e DW_TAG_lexical_block - .quad Ltmp1060 ## DW_AT_low_pc - .quad Ltmp1062 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x41b:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x42a:0x72 DW_TAG_lexical_block - .quad Ltmp1074 ## DW_AT_low_pc - .quad Ltmp1081 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x43b:0x10 DW_TAG_variable -Lset8484 = Ldebug_loc193-Lsection_debug_loc ## DW_AT_location - .long Lset8484 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x44b:0x50 DW_TAG_lexical_block - .quad Ltmp1076 ## DW_AT_low_pc - .quad Ltmp1081 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x45c:0x10 DW_TAG_variable -Lset8485 = Ldebug_loc194-Lsection_debug_loc ## DW_AT_location - .long Lset8485 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x46c:0x10 DW_TAG_variable -Lset8486 = Ldebug_loc195-Lsection_debug_loc ## DW_AT_location - .long Lset8486 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x47c:0x1e DW_TAG_lexical_block - .quad Ltmp1079 ## DW_AT_low_pc - .quad Ltmp1081 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x48d:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x49c:0x5a DW_TAG_lexical_block -Lset8487 = Ldebug_ranges54-Ldebug_range ## DW_AT_ranges - .long Lset8487 - .byte 5 ## Abbrev [5] 0x4a1:0x10 DW_TAG_variable -Lset8488 = Ldebug_loc198-Lsection_debug_loc ## DW_AT_location - .long Lset8488 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4b1:0x1e DW_TAG_lexical_block - .quad Ltmp1115 ## DW_AT_low_pc - .quad Ltmp1116 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x4c2:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4cf:0x26 DW_TAG_lexical_block -Lset8489 = Ldebug_ranges53-Ldebug_range ## DW_AT_ranges - .long Lset8489 - .byte 5 ## Abbrev [5] 0x4d4:0x10 DW_TAG_variable -Lset8490 = Ldebug_loc196-Lsection_debug_loc ## DW_AT_location - .long Lset8490 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4e4:0x10 DW_TAG_variable -Lset8491 = Ldebug_loc197-Lsection_debug_loc ## DW_AT_location - .long Lset8491 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4f7:0x216 DW_TAG_lexical_block -Lset8492 = Ldebug_ranges68-Ldebug_range ## DW_AT_ranges - .long Lset8492 - .byte 5 ## Abbrev [5] 0x4fc:0x10 DW_TAG_variable -Lset8493 = Ldebug_loc215-Lsection_debug_loc ## DW_AT_location - .long Lset8493 - .long 5056 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1339 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x50c:0x10 DW_TAG_variable -Lset8494 = Ldebug_loc216-Lsection_debug_loc ## DW_AT_location - .long Lset8494 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1340 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x51c:0x10 DW_TAG_variable -Lset8495 = Ldebug_loc217-Lsection_debug_loc ## DW_AT_location - .long Lset8495 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1341 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x52c:0xc5 DW_TAG_lexical_block -Lset8496 = Ldebug_ranges60-Ldebug_range ## DW_AT_ranges - .long Lset8496 - .byte 5 ## Abbrev [5] 0x531:0x10 DW_TAG_variable -Lset8497 = Ldebug_loc199-Lsection_debug_loc ## DW_AT_location - .long Lset8497 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x541:0x63 DW_TAG_lexical_block -Lset8498 = Ldebug_ranges57-Ldebug_range ## DW_AT_ranges - .long Lset8498 - .byte 8 ## Abbrev [8] 0x546:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x552:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8499 = Ldebug_ranges56-Ldebug_range ## DW_AT_ranges - .long Lset8499 - .byte 1 ## DW_AT_call_file - .short 1342 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x55e:0x9 DW_TAG_formal_parameter -Lset8500 = Ldebug_loc218-Lsection_debug_loc ## DW_AT_location - .long Lset8500 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x567:0x9 DW_TAG_variable -Lset8501 = Ldebug_loc207-Lsection_debug_loc ## DW_AT_location - .long Lset8501 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x571:0x32 DW_TAG_lexical_block - .quad Ltmp1204 ## DW_AT_low_pc - .quad Ltmp1211 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x582:0x10 DW_TAG_variable -Lset8502 = Ldebug_loc209-Lsection_debug_loc ## DW_AT_location - .long Lset8502 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x592:0x10 DW_TAG_variable -Lset8503 = Ldebug_loc210-Lsection_debug_loc ## DW_AT_location - .long Lset8503 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5a4:0x26 DW_TAG_lexical_block -Lset8504 = Ldebug_ranges58-Ldebug_range ## DW_AT_ranges - .long Lset8504 - .byte 5 ## Abbrev [5] 0x5a9:0x10 DW_TAG_variable -Lset8505 = Ldebug_loc205-Lsection_debug_loc ## DW_AT_location - .long Lset8505 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5b9:0x10 DW_TAG_variable -Lset8506 = Ldebug_loc206-Lsection_debug_loc ## DW_AT_location - .long Lset8506 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5ca:0x26 DW_TAG_lexical_block -Lset8507 = Ldebug_ranges59-Ldebug_range ## DW_AT_ranges - .long Lset8507 - .byte 5 ## Abbrev [5] 0x5cf:0x10 DW_TAG_variable -Lset8508 = Ldebug_loc200-Lsection_debug_loc ## DW_AT_location - .long Lset8508 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5df:0x10 DW_TAG_variable -Lset8509 = Ldebug_loc201-Lsection_debug_loc ## DW_AT_location - .long Lset8509 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5f1:0xdf DW_TAG_lexical_block -Lset8510 = Ldebug_ranges65-Ldebug_range ## DW_AT_ranges - .long Lset8510 - .byte 5 ## Abbrev [5] 0x5f6:0x10 DW_TAG_variable -Lset8511 = Ldebug_loc202-Lsection_debug_loc ## DW_AT_location - .long Lset8511 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x606:0x26 DW_TAG_lexical_block -Lset8512 = Ldebug_ranges61-Ldebug_range ## DW_AT_ranges - .long Lset8512 - .byte 5 ## Abbrev [5] 0x60b:0x10 DW_TAG_variable -Lset8513 = Ldebug_loc203-Lsection_debug_loc ## DW_AT_location - .long Lset8513 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x61b:0x10 DW_TAG_variable -Lset8514 = Ldebug_loc204-Lsection_debug_loc ## DW_AT_location - .long Lset8514 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x62c:0xa3 DW_TAG_lexical_block -Lset8515 = Ldebug_ranges64-Ldebug_range ## DW_AT_ranges - .long Lset8515 - .byte 12 ## Abbrev [12] 0x631:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x63e:0x5e DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset8516 = Ldebug_ranges62-Ldebug_range ## DW_AT_ranges - .long Lset8516 - .byte 1 ## DW_AT_call_file - .short 1342 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x64a:0x9 DW_TAG_formal_parameter -Lset8517 = Ldebug_loc219-Lsection_debug_loc ## DW_AT_location - .long Lset8517 - .long 21558 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x653:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8518 = Ldebug_ranges63-Ldebug_range ## DW_AT_ranges - .long Lset8518 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x65e:0x9 DW_TAG_formal_parameter -Lset8519 = Ldebug_loc220-Lsection_debug_loc ## DW_AT_location - .long Lset8519 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x667:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x66d:0x9 DW_TAG_variable -Lset8520 = Ldebug_loc208-Lsection_debug_loc ## DW_AT_location - .long Lset8520 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x676:0x24 DW_TAG_lexical_block - .quad Ltmp1217 ## DW_AT_low_pc - .quad Ltmp1226 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x687:0x9 DW_TAG_variable -Lset8521 = Ldebug_loc211-Lsection_debug_loc ## DW_AT_location - .long Lset8521 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x690:0x9 DW_TAG_variable -Lset8522 = Ldebug_loc212-Lsection_debug_loc ## DW_AT_location - .long Lset8522 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x69c:0x32 DW_TAG_lexical_block - .quad Ltmp1227 ## DW_AT_low_pc - .quad Ltmp1234 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6ad:0x10 DW_TAG_variable -Lset8523 = Ldebug_loc213-Lsection_debug_loc ## DW_AT_location - .long Lset8523 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6bd:0x10 DW_TAG_variable -Lset8524 = Ldebug_loc214-Lsection_debug_loc ## DW_AT_location - .long Lset8524 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6d0:0x3c DW_TAG_lexical_block -Lset8525 = Ldebug_ranges67-Ldebug_range ## DW_AT_ranges - .long Lset8525 - .byte 5 ## Abbrev [5] 0x6d5:0x10 DW_TAG_variable -Lset8526 = Ldebug_loc223-Lsection_debug_loc ## DW_AT_location - .long Lset8526 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6e5:0x26 DW_TAG_lexical_block -Lset8527 = Ldebug_ranges66-Ldebug_range ## DW_AT_ranges - .long Lset8527 - .byte 5 ## Abbrev [5] 0x6ea:0x10 DW_TAG_variable -Lset8528 = Ldebug_loc221-Lsection_debug_loc ## DW_AT_location - .long Lset8528 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6fa:0x10 DW_TAG_variable -Lset8529 = Ldebug_loc222-Lsection_debug_loc ## DW_AT_location - .long Lset8529 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x70d:0x40 DW_TAG_lexical_block - .quad Ltmp1284 ## DW_AT_low_pc - .quad Ltmp1307 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x71e:0x10 DW_TAG_variable -Lset8530 = Ldebug_loc224-Lsection_debug_loc ## DW_AT_location - .long Lset8530 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1346 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x72e:0x1e DW_TAG_lexical_block - .quad Ltmp1294 ## DW_AT_low_pc - .quad Ltmp1295 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x73f:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1347 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x74d:0x206 DW_TAG_lexical_block -Lset8531 = Ldebug_ranges81-Ldebug_range ## DW_AT_ranges - .long Lset8531 - .byte 5 ## Abbrev [5] 0x752:0x10 DW_TAG_variable -Lset8532 = Ldebug_loc242-Lsection_debug_loc ## DW_AT_location - .long Lset8532 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1352 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x762:0x10 DW_TAG_variable -Lset8533 = Ldebug_loc243-Lsection_debug_loc ## DW_AT_location - .long Lset8533 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1353 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x772:0xc5 DW_TAG_lexical_block -Lset8534 = Ldebug_ranges73-Ldebug_range ## DW_AT_ranges - .long Lset8534 - .byte 5 ## Abbrev [5] 0x777:0x10 DW_TAG_variable -Lset8535 = Ldebug_loc225-Lsection_debug_loc ## DW_AT_location - .long Lset8535 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x787:0x63 DW_TAG_lexical_block -Lset8536 = Ldebug_ranges70-Ldebug_range ## DW_AT_ranges - .long Lset8536 - .byte 8 ## Abbrev [8] 0x78c:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x798:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8537 = Ldebug_ranges69-Ldebug_range ## DW_AT_ranges - .long Lset8537 - .byte 1 ## DW_AT_call_file - .short 1354 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7a4:0x9 DW_TAG_formal_parameter -Lset8538 = Ldebug_loc244-Lsection_debug_loc ## DW_AT_location - .long Lset8538 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7ad:0x9 DW_TAG_variable -Lset8539 = Ldebug_loc234-Lsection_debug_loc ## DW_AT_location - .long Lset8539 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x7b7:0x32 DW_TAG_lexical_block - .quad Ltmp1387 ## DW_AT_low_pc - .quad Ltmp1394 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7c8:0x10 DW_TAG_variable -Lset8540 = Ldebug_loc236-Lsection_debug_loc ## DW_AT_location - .long Lset8540 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7d8:0x10 DW_TAG_variable -Lset8541 = Ldebug_loc237-Lsection_debug_loc ## DW_AT_location - .long Lset8541 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7ea:0x26 DW_TAG_lexical_block -Lset8542 = Ldebug_ranges71-Ldebug_range ## DW_AT_ranges - .long Lset8542 - .byte 5 ## Abbrev [5] 0x7ef:0x10 DW_TAG_variable -Lset8543 = Ldebug_loc232-Lsection_debug_loc ## DW_AT_location - .long Lset8543 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7ff:0x10 DW_TAG_variable -Lset8544 = Ldebug_loc233-Lsection_debug_loc ## DW_AT_location - .long Lset8544 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x810:0x26 DW_TAG_lexical_block -Lset8545 = Ldebug_ranges72-Ldebug_range ## DW_AT_ranges - .long Lset8545 - .byte 5 ## Abbrev [5] 0x815:0x10 DW_TAG_variable -Lset8546 = Ldebug_loc226-Lsection_debug_loc ## DW_AT_location - .long Lset8546 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x825:0x10 DW_TAG_variable -Lset8547 = Ldebug_loc227-Lsection_debug_loc ## DW_AT_location - .long Lset8547 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x837:0xdf DW_TAG_lexical_block -Lset8548 = Ldebug_ranges78-Ldebug_range ## DW_AT_ranges - .long Lset8548 - .byte 5 ## Abbrev [5] 0x83c:0x10 DW_TAG_variable -Lset8549 = Ldebug_loc228-Lsection_debug_loc ## DW_AT_location - .long Lset8549 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x84c:0x26 DW_TAG_lexical_block -Lset8550 = Ldebug_ranges74-Ldebug_range ## DW_AT_ranges - .long Lset8550 - .byte 5 ## Abbrev [5] 0x851:0x10 DW_TAG_variable -Lset8551 = Ldebug_loc229-Lsection_debug_loc ## DW_AT_location - .long Lset8551 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x861:0x10 DW_TAG_variable -Lset8552 = Ldebug_loc230-Lsection_debug_loc ## DW_AT_location - .long Lset8552 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x872:0xa3 DW_TAG_lexical_block -Lset8553 = Ldebug_ranges77-Ldebug_range ## DW_AT_ranges - .long Lset8553 - .byte 12 ## Abbrev [12] 0x877:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x884:0x5e DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset8554 = Ldebug_ranges75-Ldebug_range ## DW_AT_ranges - .long Lset8554 - .byte 1 ## DW_AT_call_file - .short 1354 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x890:0x9 DW_TAG_formal_parameter -Lset8555 = Ldebug_loc245-Lsection_debug_loc ## DW_AT_location - .long Lset8555 - .long 21558 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x899:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8556 = Ldebug_ranges76-Ldebug_range ## DW_AT_ranges - .long Lset8556 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x8a4:0x9 DW_TAG_formal_parameter -Lset8557 = Ldebug_loc246-Lsection_debug_loc ## DW_AT_location - .long Lset8557 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x8ad:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x8b3:0x9 DW_TAG_variable -Lset8558 = Ldebug_loc235-Lsection_debug_loc ## DW_AT_location - .long Lset8558 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x8bc:0x24 DW_TAG_lexical_block - .quad Ltmp1400 ## DW_AT_low_pc - .quad Ltmp1409 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x8cd:0x9 DW_TAG_variable -Lset8559 = Ldebug_loc238-Lsection_debug_loc ## DW_AT_location - .long Lset8559 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x8d6:0x9 DW_TAG_variable -Lset8560 = Ldebug_loc239-Lsection_debug_loc ## DW_AT_location - .long Lset8560 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x8e2:0x32 DW_TAG_lexical_block - .quad Ltmp1410 ## DW_AT_low_pc - .quad Ltmp1417 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x8f3:0x10 DW_TAG_variable -Lset8561 = Ldebug_loc240-Lsection_debug_loc ## DW_AT_location - .long Lset8561 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x903:0x10 DW_TAG_variable -Lset8562 = Ldebug_loc241-Lsection_debug_loc ## DW_AT_location - .long Lset8562 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x916:0x3c DW_TAG_lexical_block -Lset8563 = Ldebug_ranges80-Ldebug_range ## DW_AT_ranges - .long Lset8563 - .byte 5 ## Abbrev [5] 0x91b:0x10 DW_TAG_variable -Lset8564 = Ldebug_loc231-Lsection_debug_loc ## DW_AT_location - .long Lset8564 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x92b:0x26 DW_TAG_lexical_block -Lset8565 = Ldebug_ranges79-Ldebug_range ## DW_AT_ranges - .long Lset8565 - .byte 5 ## Abbrev [5] 0x930:0x10 DW_TAG_variable -Lset8566 = Ldebug_loc247-Lsection_debug_loc ## DW_AT_location - .long Lset8566 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x940:0x10 DW_TAG_variable -Lset8567 = Ldebug_loc248-Lsection_debug_loc ## DW_AT_location - .long Lset8567 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x953:0x200 DW_TAG_lexical_block -Lset8568 = Ldebug_ranges93-Ldebug_range ## DW_AT_ranges - .long Lset8568 - .byte 5 ## Abbrev [5] 0x958:0x10 DW_TAG_variable -Lset8569 = Ldebug_loc252-Lsection_debug_loc ## DW_AT_location - .long Lset8569 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1358 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x968:0x10 DW_TAG_variable -Lset8570 = Ldebug_loc253-Lsection_debug_loc ## DW_AT_location - .long Lset8570 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1359 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x978:0xc5 DW_TAG_lexical_block -Lset8571 = Ldebug_ranges86-Ldebug_range ## DW_AT_ranges - .long Lset8571 - .byte 5 ## Abbrev [5] 0x97d:0x10 DW_TAG_variable -Lset8572 = Ldebug_loc249-Lsection_debug_loc ## DW_AT_location - .long Lset8572 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x98d:0x63 DW_TAG_lexical_block -Lset8573 = Ldebug_ranges83-Ldebug_range ## DW_AT_ranges - .long Lset8573 - .byte 8 ## Abbrev [8] 0x992:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x99e:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8574 = Ldebug_ranges82-Ldebug_range ## DW_AT_ranges - .long Lset8574 - .byte 1 ## DW_AT_call_file - .short 1360 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x9aa:0x9 DW_TAG_formal_parameter -Lset8575 = Ldebug_loc270-Lsection_debug_loc ## DW_AT_location - .long Lset8575 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x9b3:0x9 DW_TAG_variable -Lset8576 = Ldebug_loc262-Lsection_debug_loc ## DW_AT_location - .long Lset8576 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x9bd:0x32 DW_TAG_lexical_block - .quad Ltmp1543 ## DW_AT_low_pc - .quad Ltmp1550 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x9ce:0x10 DW_TAG_variable -Lset8577 = Ldebug_loc264-Lsection_debug_loc ## DW_AT_location - .long Lset8577 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x9de:0x10 DW_TAG_variable -Lset8578 = Ldebug_loc265-Lsection_debug_loc ## DW_AT_location - .long Lset8578 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x9f0:0x26 DW_TAG_lexical_block -Lset8579 = Ldebug_ranges84-Ldebug_range ## DW_AT_ranges - .long Lset8579 - .byte 5 ## Abbrev [5] 0x9f5:0x10 DW_TAG_variable -Lset8580 = Ldebug_loc260-Lsection_debug_loc ## DW_AT_location - .long Lset8580 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa05:0x10 DW_TAG_variable -Lset8581 = Ldebug_loc261-Lsection_debug_loc ## DW_AT_location - .long Lset8581 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xa16:0x26 DW_TAG_lexical_block -Lset8582 = Ldebug_ranges85-Ldebug_range ## DW_AT_ranges - .long Lset8582 - .byte 5 ## Abbrev [5] 0xa1b:0x10 DW_TAG_variable -Lset8583 = Ldebug_loc250-Lsection_debug_loc ## DW_AT_location - .long Lset8583 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa2b:0x10 DW_TAG_variable -Lset8584 = Ldebug_loc251-Lsection_debug_loc ## DW_AT_location - .long Lset8584 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xa3d:0xdf DW_TAG_lexical_block -Lset8585 = Ldebug_ranges91-Ldebug_range ## DW_AT_ranges - .long Lset8585 - .byte 5 ## Abbrev [5] 0xa42:0x10 DW_TAG_variable -Lset8586 = Ldebug_loc257-Lsection_debug_loc ## DW_AT_location - .long Lset8586 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xa52:0x26 DW_TAG_lexical_block -Lset8587 = Ldebug_ranges87-Ldebug_range ## DW_AT_ranges - .long Lset8587 - .byte 5 ## Abbrev [5] 0xa57:0x10 DW_TAG_variable -Lset8588 = Ldebug_loc258-Lsection_debug_loc ## DW_AT_location - .long Lset8588 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa67:0x10 DW_TAG_variable -Lset8589 = Ldebug_loc259-Lsection_debug_loc ## DW_AT_location - .long Lset8589 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xa78:0xa3 DW_TAG_lexical_block -Lset8590 = Ldebug_ranges90-Ldebug_range ## DW_AT_ranges - .long Lset8590 - .byte 12 ## Abbrev [12] 0xa7d:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0xa8a:0x5e DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset8591 = Ldebug_ranges88-Ldebug_range ## DW_AT_ranges - .long Lset8591 - .byte 1 ## DW_AT_call_file - .short 1360 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xa96:0x9 DW_TAG_formal_parameter -Lset8592 = Ldebug_loc271-Lsection_debug_loc ## DW_AT_location - .long Lset8592 - .long 21558 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0xa9f:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8593 = Ldebug_ranges89-Ldebug_range ## DW_AT_ranges - .long Lset8593 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xaaa:0x9 DW_TAG_formal_parameter -Lset8594 = Ldebug_loc272-Lsection_debug_loc ## DW_AT_location - .long Lset8594 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0xab3:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xab9:0x9 DW_TAG_variable -Lset8595 = Ldebug_loc263-Lsection_debug_loc ## DW_AT_location - .long Lset8595 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0xac2:0x24 DW_TAG_lexical_block - .quad Ltmp1557 ## DW_AT_low_pc - .quad Ltmp1566 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0xad3:0x9 DW_TAG_variable -Lset8596 = Ldebug_loc266-Lsection_debug_loc ## DW_AT_location - .long Lset8596 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xadc:0x9 DW_TAG_variable -Lset8597 = Ldebug_loc267-Lsection_debug_loc ## DW_AT_location - .long Lset8597 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xae8:0x32 DW_TAG_lexical_block - .quad Ltmp1566 ## DW_AT_low_pc - .quad Ltmp1573 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xaf9:0x10 DW_TAG_variable -Lset8598 = Ldebug_loc268-Lsection_debug_loc ## DW_AT_location - .long Lset8598 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb09:0x10 DW_TAG_variable -Lset8599 = Ldebug_loc269-Lsection_debug_loc ## DW_AT_location - .long Lset8599 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xb1c:0x36 DW_TAG_lexical_block -Lset8600 = Ldebug_ranges92-Ldebug_range ## DW_AT_ranges - .long Lset8600 - .byte 5 ## Abbrev [5] 0xb21:0x10 DW_TAG_variable -Lset8601 = Ldebug_loc254-Lsection_debug_loc ## DW_AT_location - .long Lset8601 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb31:0x10 DW_TAG_variable -Lset8602 = Ldebug_loc255-Lsection_debug_loc ## DW_AT_location - .long Lset8602 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb41:0x10 DW_TAG_variable -Lset8603 = Ldebug_loc256-Lsection_debug_loc ## DW_AT_location - .long Lset8603 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xb53:0x6a DW_TAG_lexical_block -Lset8604 = Ldebug_ranges94-Ldebug_range ## DW_AT_ranges - .long Lset8604 - .byte 5 ## Abbrev [5] 0xb58:0x10 DW_TAG_variable -Lset8605 = Ldebug_loc273-Lsection_debug_loc ## DW_AT_location - .long Lset8605 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1365 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb68:0x10 DW_TAG_variable -Lset8606 = Ldebug_loc274-Lsection_debug_loc ## DW_AT_location - .long Lset8606 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1366 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xb78:0x44 DW_TAG_lexical_block - .quad Ltmp1629 ## DW_AT_low_pc - .quad Ltmp1651 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xb89:0x10 DW_TAG_variable -Lset8607 = Ldebug_loc276-Lsection_debug_loc ## DW_AT_location - .long Lset8607 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1367 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 15 ## Abbrev [15] 0xb99:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp1631 ## DW_AT_low_pc - .quad Ltmp1635 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1367 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0xbb1:0x9 DW_TAG_variable -Lset8608 = Ldebug_loc275-Lsection_debug_loc ## DW_AT_location - .long Lset8608 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xbbd:0x64 DW_TAG_lexical_block -Lset8609 = Ldebug_ranges95-Ldebug_range ## DW_AT_ranges - .long Lset8609 - .byte 5 ## Abbrev [5] 0xbc2:0x10 DW_TAG_variable -Lset8610 = Ldebug_loc277-Lsection_debug_loc ## DW_AT_location - .long Lset8610 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1371 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xbd2:0x10 DW_TAG_variable -Lset8611 = Ldebug_loc278-Lsection_debug_loc ## DW_AT_location - .long Lset8611 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1372 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xbe2:0x10 DW_TAG_variable -Lset8612 = Ldebug_loc280-Lsection_debug_loc ## DW_AT_location - .long Lset8612 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1373 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xbf2:0x2e DW_TAG_lexical_block - .quad Ltmp1677 ## DW_AT_low_pc - .quad Ltmp1678 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xc03:0x10 DW_TAG_variable -Lset8613 = Ldebug_loc279-Lsection_debug_loc ## DW_AT_location - .long Lset8613 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1376 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xc13:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1376 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xc21:0x9a DW_TAG_lexical_block -Lset8614 = Ldebug_ranges97-Ldebug_range ## DW_AT_ranges - .long Lset8614 - .byte 5 ## Abbrev [5] 0xc26:0x10 DW_TAG_variable -Lset8615 = Ldebug_loc281-Lsection_debug_loc ## DW_AT_location - .long Lset8615 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1383 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc36:0x10 DW_TAG_variable -Lset8616 = Ldebug_loc282-Lsection_debug_loc ## DW_AT_location - .long Lset8616 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1385 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xc46:0x56 DW_TAG_lexical_block -Lset8617 = Ldebug_ranges96-Ldebug_range ## DW_AT_ranges - .long Lset8617 - .byte 5 ## Abbrev [5] 0xc4b:0x10 DW_TAG_variable -Lset8618 = Ldebug_loc283-Lsection_debug_loc ## DW_AT_location - .long Lset8618 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1387 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xc5b:0x1e DW_TAG_lexical_block - .quad Ltmp1740 ## DW_AT_low_pc - .quad Ltmp1741 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xc6c:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1387 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0xc79:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp1732 ## DW_AT_low_pc - .quad Ltmp1736 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1387 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0xc91:0x9 DW_TAG_variable -Lset8619 = Ldebug_loc284-Lsection_debug_loc ## DW_AT_location - .long Lset8619 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xc9c:0x1e DW_TAG_lexical_block - .quad Ltmp1728 ## DW_AT_low_pc - .quad Ltmp1729 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xcad:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1386 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xcbb:0x82 DW_TAG_lexical_block -Lset8620 = Ldebug_ranges98-Ldebug_range ## DW_AT_ranges - .long Lset8620 - .byte 5 ## Abbrev [5] 0xcc0:0x10 DW_TAG_variable -Lset8621 = Ldebug_loc285-Lsection_debug_loc ## DW_AT_location - .long Lset8621 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1392 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xcd0:0x10 DW_TAG_variable -Lset8622 = Ldebug_loc286-Lsection_debug_loc ## DW_AT_location - .long Lset8622 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1393 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xce0:0x10 DW_TAG_variable -Lset8623 = Ldebug_loc287-Lsection_debug_loc ## DW_AT_location - .long Lset8623 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1394 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xcf0:0x10 DW_TAG_variable -Lset8624 = Ldebug_loc288-Lsection_debug_loc ## DW_AT_location - .long Lset8624 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1391 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xd00:0x1e DW_TAG_lexical_block - .quad Ltmp1761 ## DW_AT_low_pc - .quad Ltmp1762 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xd11:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1395 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xd1e:0x1e DW_TAG_lexical_block - .quad Ltmp1767 ## DW_AT_low_pc - .quad Ltmp1769 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xd2f:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1397 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xd3d:0xe6 DW_TAG_lexical_block -Lset8625 = Ldebug_ranges101-Ldebug_range ## DW_AT_ranges - .long Lset8625 - .byte 5 ## Abbrev [5] 0xd42:0x10 DW_TAG_variable -Lset8626 = Ldebug_loc289-Lsection_debug_loc ## DW_AT_location - .long Lset8626 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1403 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xd52:0x10 DW_TAG_variable -Lset8627 = Ldebug_loc291-Lsection_debug_loc ## DW_AT_location - .long Lset8627 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1404 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xd62:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1405 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xd6e:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1405 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0xd7a:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8628 = Ldebug_ranges99-Ldebug_range ## DW_AT_ranges - .long Lset8628 - .byte 1 ## DW_AT_call_file - .short 1410 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xd86:0x9 DW_TAG_formal_parameter -Lset8629 = Ldebug_loc290-Lsection_debug_loc ## DW_AT_location - .long Lset8629 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xd8f:0x9 DW_TAG_variable -Lset8630 = Ldebug_loc293-Lsection_debug_loc ## DW_AT_location - .long Lset8630 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0xd99:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8631 = Ldebug_ranges100-Ldebug_range ## DW_AT_ranges - .long Lset8631 - .byte 1 ## DW_AT_call_file - .short 1410 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xda5:0x9 DW_TAG_formal_parameter -Lset8632 = Ldebug_loc294-Lsection_debug_loc ## DW_AT_location - .long Lset8632 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xdae:0x9 DW_TAG_variable -Lset8633 = Ldebug_loc292-Lsection_debug_loc ## DW_AT_location - .long Lset8633 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xdb8:0x1e DW_TAG_lexical_block - .quad Ltmp1855 ## DW_AT_low_pc - .quad Ltmp1856 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xdc9:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1411 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xdd6:0x4c DW_TAG_lexical_block - .quad Ltmp1840 ## DW_AT_low_pc - .quad Ltmp1843 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xde7:0x10 DW_TAG_variable -Lset8634 = Ldebug_loc295-Lsection_debug_loc ## DW_AT_location - .long Lset8634 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1407 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xdf7:0xc DW_TAG_variable - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1407 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xe03:0x1e DW_TAG_lexical_block - .quad Ltmp1841 ## DW_AT_low_pc - .quad Ltmp1843 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xe14:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1408 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xe23:0xe6 DW_TAG_lexical_block -Lset8635 = Ldebug_ranges104-Ldebug_range ## DW_AT_ranges - .long Lset8635 - .byte 5 ## Abbrev [5] 0xe28:0x10 DW_TAG_variable -Lset8636 = Ldebug_loc296-Lsection_debug_loc ## DW_AT_location - .long Lset8636 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1417 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xe38:0x10 DW_TAG_variable -Lset8637 = Ldebug_loc298-Lsection_debug_loc ## DW_AT_location - .long Lset8637 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1418 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xe48:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1419 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xe54:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1419 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0xe60:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8638 = Ldebug_ranges102-Ldebug_range ## DW_AT_ranges - .long Lset8638 - .byte 1 ## DW_AT_call_file - .short 1424 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xe6c:0x9 DW_TAG_formal_parameter -Lset8639 = Ldebug_loc297-Lsection_debug_loc ## DW_AT_location - .long Lset8639 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xe75:0x9 DW_TAG_variable -Lset8640 = Ldebug_loc300-Lsection_debug_loc ## DW_AT_location - .long Lset8640 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0xe7f:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8641 = Ldebug_ranges103-Ldebug_range ## DW_AT_ranges - .long Lset8641 - .byte 1 ## DW_AT_call_file - .short 1424 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xe8b:0x9 DW_TAG_formal_parameter -Lset8642 = Ldebug_loc301-Lsection_debug_loc ## DW_AT_location - .long Lset8642 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xe94:0x9 DW_TAG_variable -Lset8643 = Ldebug_loc299-Lsection_debug_loc ## DW_AT_location - .long Lset8643 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xe9e:0x1e DW_TAG_lexical_block - .quad Ltmp1931 ## DW_AT_low_pc - .quad Ltmp1932 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xeaf:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1425 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xebc:0x4c DW_TAG_lexical_block - .quad Ltmp1916 ## DW_AT_low_pc - .quad Ltmp1919 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xecd:0x10 DW_TAG_variable -Lset8644 = Ldebug_loc302-Lsection_debug_loc ## DW_AT_location - .long Lset8644 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1421 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xedd:0xc DW_TAG_variable - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1421 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xee9:0x1e DW_TAG_lexical_block - .quad Ltmp1917 ## DW_AT_low_pc - .quad Ltmp1919 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xefa:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1422 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xf09:0xe6 DW_TAG_lexical_block -Lset8645 = Ldebug_ranges107-Ldebug_range ## DW_AT_ranges - .long Lset8645 - .byte 5 ## Abbrev [5] 0xf0e:0x10 DW_TAG_variable -Lset8646 = Ldebug_loc303-Lsection_debug_loc ## DW_AT_location - .long Lset8646 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1431 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xf1e:0x10 DW_TAG_variable -Lset8647 = Ldebug_loc305-Lsection_debug_loc ## DW_AT_location - .long Lset8647 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1432 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xf2e:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1433 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xf3a:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1433 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0xf46:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8648 = Ldebug_ranges105-Ldebug_range ## DW_AT_ranges - .long Lset8648 - .byte 1 ## DW_AT_call_file - .short 1438 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xf52:0x9 DW_TAG_formal_parameter -Lset8649 = Ldebug_loc304-Lsection_debug_loc ## DW_AT_location - .long Lset8649 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xf5b:0x9 DW_TAG_variable -Lset8650 = Ldebug_loc307-Lsection_debug_loc ## DW_AT_location - .long Lset8650 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0xf65:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8651 = Ldebug_ranges106-Ldebug_range ## DW_AT_ranges - .long Lset8651 - .byte 1 ## DW_AT_call_file - .short 1438 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xf71:0x9 DW_TAG_formal_parameter -Lset8652 = Ldebug_loc308-Lsection_debug_loc ## DW_AT_location - .long Lset8652 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0xf7a:0x9 DW_TAG_variable -Lset8653 = Ldebug_loc306-Lsection_debug_loc ## DW_AT_location - .long Lset8653 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xf84:0x1e DW_TAG_lexical_block - .quad Ltmp2007 ## DW_AT_low_pc - .quad Ltmp2008 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xf95:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1439 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0xfa2:0x4c DW_TAG_lexical_block - .quad Ltmp1992 ## DW_AT_low_pc - .quad Ltmp1995 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0xfb3:0x10 DW_TAG_variable -Lset8654 = Ldebug_loc309-Lsection_debug_loc ## DW_AT_location - .long Lset8654 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1435 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xfc3:0xc DW_TAG_variable - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1435 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xfcf:0x1e DW_TAG_lexical_block - .quad Ltmp1993 ## DW_AT_low_pc - .quad Ltmp1995 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0xfe0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1436 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xfef:0x9a DW_TAG_lexical_block -Lset8655 = Ldebug_ranges110-Ldebug_range ## DW_AT_ranges - .long Lset8655 - .byte 5 ## Abbrev [5] 0xff4:0x10 DW_TAG_variable -Lset8656 = Ldebug_loc311-Lsection_debug_loc ## DW_AT_location - .long Lset8656 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1445 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1004:0x10 DW_TAG_variable -Lset8657 = Ldebug_loc312-Lsection_debug_loc ## DW_AT_location - .long Lset8657 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1446 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1014:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1447 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1020:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1447 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x102c:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8658 = Ldebug_ranges108-Ldebug_range ## DW_AT_ranges - .long Lset8658 - .byte 1 ## DW_AT_call_file - .short 1448 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1038:0x9 DW_TAG_formal_parameter -Lset8659 = Ldebug_loc310-Lsection_debug_loc ## DW_AT_location - .long Lset8659 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1041:0x9 DW_TAG_variable -Lset8660 = Ldebug_loc314-Lsection_debug_loc ## DW_AT_location - .long Lset8660 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x104b:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8661 = Ldebug_ranges109-Ldebug_range ## DW_AT_ranges - .long Lset8661 - .byte 1 ## DW_AT_call_file - .short 1448 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1057:0x9 DW_TAG_formal_parameter -Lset8662 = Ldebug_loc313-Lsection_debug_loc ## DW_AT_location - .long Lset8662 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1060:0x9 DW_TAG_variable -Lset8663 = Ldebug_loc315-Lsection_debug_loc ## DW_AT_location - .long Lset8663 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x106a:0x1e DW_TAG_lexical_block - .quad Ltmp2080 ## DW_AT_low_pc - .quad Ltmp2081 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x107b:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1449 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1089:0xf6 DW_TAG_lexical_block -Lset8664 = Ldebug_ranges113-Ldebug_range ## DW_AT_ranges - .long Lset8664 - .byte 5 ## Abbrev [5] 0x108e:0x10 DW_TAG_variable -Lset8665 = Ldebug_loc316-Lsection_debug_loc ## DW_AT_location - .long Lset8665 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1455 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x109e:0x10 DW_TAG_variable -Lset8666 = Ldebug_loc317-Lsection_debug_loc ## DW_AT_location - .long Lset8666 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1456 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x10ae:0x10 DW_TAG_variable -Lset8667 = Ldebug_loc326-Lsection_debug_loc ## DW_AT_location - .long Lset8667 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1457 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x10be:0x10 DW_TAG_variable -Lset8668 = Ldebug_loc327-Lsection_debug_loc ## DW_AT_location - .long Lset8668 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1457 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x10ce:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8669 = Ldebug_ranges111-Ldebug_range ## DW_AT_ranges - .long Lset8669 - .byte 1 ## DW_AT_call_file - .short 1458 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x10da:0x9 DW_TAG_formal_parameter -Lset8670 = Ldebug_loc324-Lsection_debug_loc ## DW_AT_location - .long Lset8670 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x10e3:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x10e9:0x9 DW_TAG_variable -Lset8671 = Ldebug_loc318-Lsection_debug_loc ## DW_AT_location - .long Lset8671 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x10f2:0x24 DW_TAG_lexical_block - .quad Ltmp2123 ## DW_AT_low_pc - .quad Ltmp2129 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x1103:0x9 DW_TAG_variable -Lset8672 = Ldebug_loc320-Lsection_debug_loc ## DW_AT_location - .long Lset8672 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x110c:0x9 DW_TAG_variable -Lset8673 = Ldebug_loc321-Lsection_debug_loc ## DW_AT_location - .long Lset8673 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1117:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8674 = Ldebug_ranges112-Ldebug_range ## DW_AT_ranges - .long Lset8674 - .byte 1 ## DW_AT_call_file - .short 1458 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1123:0x9 DW_TAG_formal_parameter -Lset8675 = Ldebug_loc325-Lsection_debug_loc ## DW_AT_location - .long Lset8675 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x112c:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1132:0x9 DW_TAG_variable -Lset8676 = Ldebug_loc319-Lsection_debug_loc ## DW_AT_location - .long Lset8676 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x113b:0x24 DW_TAG_lexical_block - .quad Ltmp2133 ## DW_AT_low_pc - .quad Ltmp2139 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x114c:0x9 DW_TAG_variable -Lset8677 = Ldebug_loc322-Lsection_debug_loc ## DW_AT_location - .long Lset8677 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1155:0x9 DW_TAG_variable -Lset8678 = Ldebug_loc323-Lsection_debug_loc ## DW_AT_location - .long Lset8678 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1160:0x1e DW_TAG_lexical_block - .quad Ltmp2159 ## DW_AT_low_pc - .quad Ltmp2160 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1171:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1459 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x117f:0xf6 DW_TAG_lexical_block -Lset8679 = Ldebug_ranges116-Ldebug_range ## DW_AT_ranges - .long Lset8679 - .byte 5 ## Abbrev [5] 0x1184:0x10 DW_TAG_variable -Lset8680 = Ldebug_loc328-Lsection_debug_loc ## DW_AT_location - .long Lset8680 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1465 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1194:0x10 DW_TAG_variable -Lset8681 = Ldebug_loc329-Lsection_debug_loc ## DW_AT_location - .long Lset8681 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1466 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x11a4:0x10 DW_TAG_variable -Lset8682 = Ldebug_loc338-Lsection_debug_loc ## DW_AT_location - .long Lset8682 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1467 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x11b4:0x10 DW_TAG_variable -Lset8683 = Ldebug_loc339-Lsection_debug_loc ## DW_AT_location - .long Lset8683 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1467 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x11c4:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8684 = Ldebug_ranges114-Ldebug_range ## DW_AT_ranges - .long Lset8684 - .byte 1 ## DW_AT_call_file - .short 1468 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x11d0:0x9 DW_TAG_formal_parameter -Lset8685 = Ldebug_loc336-Lsection_debug_loc ## DW_AT_location - .long Lset8685 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x11d9:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x11df:0x9 DW_TAG_variable -Lset8686 = Ldebug_loc330-Lsection_debug_loc ## DW_AT_location - .long Lset8686 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x11e8:0x24 DW_TAG_lexical_block - .quad Ltmp2201 ## DW_AT_low_pc - .quad Ltmp2207 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x11f9:0x9 DW_TAG_variable -Lset8687 = Ldebug_loc332-Lsection_debug_loc ## DW_AT_location - .long Lset8687 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1202:0x9 DW_TAG_variable -Lset8688 = Ldebug_loc333-Lsection_debug_loc ## DW_AT_location - .long Lset8688 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x120d:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8689 = Ldebug_ranges115-Ldebug_range ## DW_AT_ranges - .long Lset8689 - .byte 1 ## DW_AT_call_file - .short 1468 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1219:0x9 DW_TAG_formal_parameter -Lset8690 = Ldebug_loc337-Lsection_debug_loc ## DW_AT_location - .long Lset8690 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x1222:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1228:0x9 DW_TAG_variable -Lset8691 = Ldebug_loc331-Lsection_debug_loc ## DW_AT_location - .long Lset8691 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x1231:0x24 DW_TAG_lexical_block - .quad Ltmp2211 ## DW_AT_low_pc - .quad Ltmp2217 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x1242:0x9 DW_TAG_variable -Lset8692 = Ldebug_loc334-Lsection_debug_loc ## DW_AT_location - .long Lset8692 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x124b:0x9 DW_TAG_variable -Lset8693 = Ldebug_loc335-Lsection_debug_loc ## DW_AT_location - .long Lset8693 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1256:0x1e DW_TAG_lexical_block - .quad Ltmp2237 ## DW_AT_low_pc - .quad Ltmp2238 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1267:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1469 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1275:0xf6 DW_TAG_lexical_block -Lset8694 = Ldebug_ranges119-Ldebug_range ## DW_AT_ranges - .long Lset8694 - .byte 5 ## Abbrev [5] 0x127a:0x10 DW_TAG_variable -Lset8695 = Ldebug_loc340-Lsection_debug_loc ## DW_AT_location - .long Lset8695 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1475 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x128a:0x10 DW_TAG_variable -Lset8696 = Ldebug_loc341-Lsection_debug_loc ## DW_AT_location - .long Lset8696 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1476 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x129a:0x10 DW_TAG_variable -Lset8697 = Ldebug_loc350-Lsection_debug_loc ## DW_AT_location - .long Lset8697 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1477 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x12aa:0x10 DW_TAG_variable -Lset8698 = Ldebug_loc351-Lsection_debug_loc ## DW_AT_location - .long Lset8698 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1477 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x12ba:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8699 = Ldebug_ranges117-Ldebug_range ## DW_AT_ranges - .long Lset8699 - .byte 1 ## DW_AT_call_file - .short 1478 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x12c6:0x9 DW_TAG_formal_parameter -Lset8700 = Ldebug_loc348-Lsection_debug_loc ## DW_AT_location - .long Lset8700 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x12cf:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x12d5:0x9 DW_TAG_variable -Lset8701 = Ldebug_loc342-Lsection_debug_loc ## DW_AT_location - .long Lset8701 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x12de:0x24 DW_TAG_lexical_block - .quad Ltmp2279 ## DW_AT_low_pc - .quad Ltmp2285 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x12ef:0x9 DW_TAG_variable -Lset8702 = Ldebug_loc344-Lsection_debug_loc ## DW_AT_location - .long Lset8702 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x12f8:0x9 DW_TAG_variable -Lset8703 = Ldebug_loc345-Lsection_debug_loc ## DW_AT_location - .long Lset8703 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1303:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8704 = Ldebug_ranges118-Ldebug_range ## DW_AT_ranges - .long Lset8704 - .byte 1 ## DW_AT_call_file - .short 1478 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x130f:0x9 DW_TAG_formal_parameter -Lset8705 = Ldebug_loc349-Lsection_debug_loc ## DW_AT_location - .long Lset8705 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x1318:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x131e:0x9 DW_TAG_variable -Lset8706 = Ldebug_loc343-Lsection_debug_loc ## DW_AT_location - .long Lset8706 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x1327:0x24 DW_TAG_lexical_block - .quad Ltmp2289 ## DW_AT_low_pc - .quad Ltmp2295 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x1338:0x9 DW_TAG_variable -Lset8707 = Ldebug_loc346-Lsection_debug_loc ## DW_AT_location - .long Lset8707 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1341:0x9 DW_TAG_variable -Lset8708 = Ldebug_loc347-Lsection_debug_loc ## DW_AT_location - .long Lset8708 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x134c:0x1e DW_TAG_lexical_block - .quad Ltmp2315 ## DW_AT_low_pc - .quad Ltmp2316 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x135d:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1479 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x136b:0x121 DW_TAG_lexical_block -Lset8709 = Ldebug_ranges122-Ldebug_range ## DW_AT_ranges - .long Lset8709 - .byte 5 ## Abbrev [5] 0x1370:0x10 DW_TAG_variable -Lset8710 = Ldebug_loc352-Lsection_debug_loc ## DW_AT_location - .long Lset8710 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1485 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1380:0x10 DW_TAG_variable -Lset8711 = Ldebug_loc353-Lsection_debug_loc ## DW_AT_location - .long Lset8711 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1486 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1390:0x10 DW_TAG_variable -Lset8712 = Ldebug_loc362-Lsection_debug_loc ## DW_AT_location - .long Lset8712 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1487 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x13a0:0x10 DW_TAG_variable -Lset8713 = Ldebug_loc363-Lsection_debug_loc ## DW_AT_location - .long Lset8713 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1487 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x13b0:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8714 = Ldebug_ranges120-Ldebug_range ## DW_AT_ranges - .long Lset8714 - .byte 1 ## DW_AT_call_file - .short 1488 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x13bc:0x9 DW_TAG_formal_parameter -Lset8715 = Ldebug_loc360-Lsection_debug_loc ## DW_AT_location - .long Lset8715 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x13c5:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x13cb:0x9 DW_TAG_variable -Lset8716 = Ldebug_loc354-Lsection_debug_loc ## DW_AT_location - .long Lset8716 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x13d4:0x24 DW_TAG_lexical_block - .quad Ltmp2354 ## DW_AT_low_pc - .quad Ltmp2360 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x13e5:0x9 DW_TAG_variable -Lset8717 = Ldebug_loc356-Lsection_debug_loc ## DW_AT_location - .long Lset8717 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x13ee:0x9 DW_TAG_variable -Lset8718 = Ldebug_loc357-Lsection_debug_loc ## DW_AT_location - .long Lset8718 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x13f9:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8719 = Ldebug_ranges121-Ldebug_range ## DW_AT_ranges - .long Lset8719 - .byte 1 ## DW_AT_call_file - .short 1488 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1405:0x9 DW_TAG_formal_parameter -Lset8720 = Ldebug_loc361-Lsection_debug_loc ## DW_AT_location - .long Lset8720 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x140e:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1414:0x9 DW_TAG_variable -Lset8721 = Ldebug_loc355-Lsection_debug_loc ## DW_AT_location - .long Lset8721 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x141d:0x24 DW_TAG_lexical_block - .quad Ltmp2363 ## DW_AT_low_pc - .quad Ltmp2369 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x142e:0x9 DW_TAG_variable -Lset8722 = Ldebug_loc358-Lsection_debug_loc ## DW_AT_location - .long Lset8722 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1437:0x9 DW_TAG_variable -Lset8723 = Ldebug_loc359-Lsection_debug_loc ## DW_AT_location - .long Lset8723 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1442:0x49 DW_TAG_lexical_block - .quad Ltmp2389 ## DW_AT_low_pc - .quad Ltmp2397 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1453:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1489 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x145f:0x2b DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin - .quad Ltmp2389 ## DW_AT_low_pc - .quad Ltmp2396 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1489 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1477:0x9 DW_TAG_formal_parameter -Lset8724 = Ldebug_loc365-Lsection_debug_loc ## DW_AT_location - .long Lset8724 - .long 24689 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1480:0x9 DW_TAG_formal_parameter -Lset8725 = Ldebug_loc364-Lsection_debug_loc ## DW_AT_location - .long Lset8725 - .long 24701 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x148c:0x10c DW_TAG_lexical_block -Lset8726 = Ldebug_ranges126-Ldebug_range ## DW_AT_ranges - .long Lset8726 - .byte 5 ## Abbrev [5] 0x1491:0x10 DW_TAG_variable -Lset8727 = Ldebug_loc366-Lsection_debug_loc ## DW_AT_location - .long Lset8727 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1495 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14a1:0x10 DW_TAG_variable -Lset8728 = Ldebug_loc367-Lsection_debug_loc ## DW_AT_location - .long Lset8728 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1496 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14b1:0x10 DW_TAG_variable -Lset8729 = Ldebug_loc376-Lsection_debug_loc ## DW_AT_location - .long Lset8729 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1497 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14c1:0x10 DW_TAG_variable -Lset8730 = Ldebug_loc377-Lsection_debug_loc ## DW_AT_location - .long Lset8730 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1497 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x14d1:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8731 = Ldebug_ranges123-Ldebug_range ## DW_AT_ranges - .long Lset8731 - .byte 1 ## DW_AT_call_file - .short 1498 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x14dd:0x9 DW_TAG_formal_parameter -Lset8732 = Ldebug_loc374-Lsection_debug_loc ## DW_AT_location - .long Lset8732 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x14e6:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x14ec:0x9 DW_TAG_variable -Lset8733 = Ldebug_loc368-Lsection_debug_loc ## DW_AT_location - .long Lset8733 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x14f5:0x24 DW_TAG_lexical_block - .quad Ltmp2436 ## DW_AT_low_pc - .quad Ltmp2442 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x1506:0x9 DW_TAG_variable -Lset8734 = Ldebug_loc370-Lsection_debug_loc ## DW_AT_location - .long Lset8734 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x150f:0x9 DW_TAG_variable -Lset8735 = Ldebug_loc371-Lsection_debug_loc ## DW_AT_location - .long Lset8735 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x151a:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8736 = Ldebug_ranges124-Ldebug_range ## DW_AT_ranges - .long Lset8736 - .byte 1 ## DW_AT_call_file - .short 1498 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1526:0x9 DW_TAG_formal_parameter -Lset8737 = Ldebug_loc375-Lsection_debug_loc ## DW_AT_location - .long Lset8737 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x152f:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1535:0x9 DW_TAG_variable -Lset8738 = Ldebug_loc369-Lsection_debug_loc ## DW_AT_location - .long Lset8738 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x153e:0x24 DW_TAG_lexical_block - .quad Ltmp2445 ## DW_AT_low_pc - .quad Ltmp2451 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x154f:0x9 DW_TAG_variable -Lset8739 = Ldebug_loc372-Lsection_debug_loc ## DW_AT_location - .long Lset8739 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1558:0x9 DW_TAG_variable -Lset8740 = Ldebug_loc373-Lsection_debug_loc ## DW_AT_location - .long Lset8740 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1563:0x34 DW_TAG_lexical_block - .quad Ltmp2471 ## DW_AT_low_pc - .quad Ltmp2482 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1574:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1499 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1580:0x16 DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin -Lset8741 = Ldebug_ranges125-Ldebug_range ## DW_AT_ranges - .long Lset8741 - .byte 1 ## DW_AT_call_file - .short 1499 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x158c:0x9 DW_TAG_formal_parameter -Lset8742 = Ldebug_loc378-Lsection_debug_loc ## DW_AT_location - .long Lset8742 - .long 24689 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1598:0x11c DW_TAG_lexical_block -Lset8743 = Ldebug_ranges132-Ldebug_range ## DW_AT_ranges - .long Lset8743 - .byte 5 ## Abbrev [5] 0x159d:0x10 DW_TAG_variable -Lset8744 = Ldebug_loc379-Lsection_debug_loc ## DW_AT_location - .long Lset8744 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1505 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x15ad:0x10 DW_TAG_variable -Lset8745 = Ldebug_loc381-Lsection_debug_loc ## DW_AT_location - .long Lset8745 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1506 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x15bd:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1507 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x15c9:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1507 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x15d5:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8746 = Ldebug_ranges127-Ldebug_range ## DW_AT_ranges - .long Lset8746 - .byte 1 ## DW_AT_call_file - .short 1512 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x15e1:0x9 DW_TAG_formal_parameter -Lset8747 = Ldebug_loc380-Lsection_debug_loc ## DW_AT_location - .long Lset8747 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x15ea:0x9 DW_TAG_variable -Lset8748 = Ldebug_loc383-Lsection_debug_loc ## DW_AT_location - .long Lset8748 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x15f4:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8749 = Ldebug_ranges128-Ldebug_range ## DW_AT_ranges - .long Lset8749 - .byte 1 ## DW_AT_call_file - .short 1512 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1600:0x9 DW_TAG_formal_parameter -Lset8750 = Ldebug_loc384-Lsection_debug_loc ## DW_AT_location - .long Lset8750 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1609:0x9 DW_TAG_variable -Lset8751 = Ldebug_loc382-Lsection_debug_loc ## DW_AT_location - .long Lset8751 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1613:0x40 DW_TAG_lexical_block - .quad Ltmp2554 ## DW_AT_low_pc - .quad Ltmp2562 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1624:0x10 DW_TAG_variable -Lset8752 = Ldebug_loc387-Lsection_debug_loc ## DW_AT_location - .long Lset8752 - .long 4282 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1513 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1634:0x1e DW_TAG_lexical_block - .quad Ltmp2559 ## DW_AT_low_pc - .quad Ltmp2562 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1645:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1515 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1653:0x60 DW_TAG_lexical_block -Lset8753 = Ldebug_ranges131-Ldebug_range ## DW_AT_ranges - .long Lset8753 - .byte 5 ## Abbrev [5] 0x1658:0x10 DW_TAG_variable -Lset8754 = Ldebug_loc386-Lsection_debug_loc ## DW_AT_location - .long Lset8754 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1509 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1668:0x10 DW_TAG_variable -Lset8755 = Ldebug_loc388-Lsection_debug_loc ## DW_AT_location - .long Lset8755 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1509 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1678:0x3a DW_TAG_lexical_block -Lset8756 = Ldebug_ranges130-Ldebug_range ## DW_AT_ranges - .long Lset8756 - .byte 8 ## Abbrev [8] 0x167d:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1510 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1689:0x28 DW_TAG_inlined_subroutine - .long 24714 ## DW_AT_abstract_origin -Lset8757 = Ldebug_ranges129-Ldebug_range ## DW_AT_ranges - .long Lset8757 - .byte 1 ## DW_AT_call_file - .short 1510 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1695:0x9 DW_TAG_formal_parameter -Lset8758 = Ldebug_loc666-Lsection_debug_loc ## DW_AT_location - .long Lset8758 - .long 24730 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x169e:0x9 DW_TAG_formal_parameter -Lset8759 = Ldebug_loc389-Lsection_debug_loc ## DW_AT_location - .long Lset8759 - .long 24742 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x16a7:0x9 DW_TAG_formal_parameter -Lset8760 = Ldebug_loc385-Lsection_debug_loc ## DW_AT_location - .long Lset8760 - .long 24754 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x16b4:0xfa DW_TAG_lexical_block -Lset8761 = Ldebug_ranges138-Ldebug_range ## DW_AT_ranges - .long Lset8761 - .byte 5 ## Abbrev [5] 0x16b9:0x10 DW_TAG_variable -Lset8762 = Ldebug_loc390-Lsection_debug_loc ## DW_AT_location - .long Lset8762 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1521 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x16c9:0x10 DW_TAG_variable -Lset8763 = Ldebug_loc392-Lsection_debug_loc ## DW_AT_location - .long Lset8763 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1522 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x16d9:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1523 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x16e5:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1523 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x16f1:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8764 = Ldebug_ranges133-Ldebug_range ## DW_AT_ranges - .long Lset8764 - .byte 1 ## DW_AT_call_file - .short 1528 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x16fd:0x9 DW_TAG_formal_parameter -Lset8765 = Ldebug_loc391-Lsection_debug_loc ## DW_AT_location - .long Lset8765 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1706:0x9 DW_TAG_variable -Lset8766 = Ldebug_loc394-Lsection_debug_loc ## DW_AT_location - .long Lset8766 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1710:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8767 = Ldebug_ranges134-Ldebug_range ## DW_AT_ranges - .long Lset8767 - .byte 1 ## DW_AT_call_file - .short 1528 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x171c:0x9 DW_TAG_formal_parameter -Lset8768 = Ldebug_loc395-Lsection_debug_loc ## DW_AT_location - .long Lset8768 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1725:0x9 DW_TAG_variable -Lset8769 = Ldebug_loc393-Lsection_debug_loc ## DW_AT_location - .long Lset8769 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x172f:0x1e DW_TAG_lexical_block - .quad Ltmp2646 ## DW_AT_low_pc - .quad Ltmp2649 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1740:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1529 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x174d:0x60 DW_TAG_lexical_block -Lset8770 = Ldebug_ranges137-Ldebug_range ## DW_AT_ranges - .long Lset8770 - .byte 5 ## Abbrev [5] 0x1752:0x10 DW_TAG_variable -Lset8771 = Ldebug_loc396-Lsection_debug_loc ## DW_AT_location - .long Lset8771 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1525 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1762:0x10 DW_TAG_variable -Lset8772 = Ldebug_loc399-Lsection_debug_loc ## DW_AT_location - .long Lset8772 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1525 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1772:0x3a DW_TAG_lexical_block -Lset8773 = Ldebug_ranges136-Ldebug_range ## DW_AT_ranges - .long Lset8773 - .byte 8 ## Abbrev [8] 0x1777:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1526 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1783:0x28 DW_TAG_inlined_subroutine - .long 24781 ## DW_AT_abstract_origin -Lset8774 = Ldebug_ranges135-Ldebug_range ## DW_AT_ranges - .long Lset8774 - .byte 1 ## DW_AT_call_file - .short 1526 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x178f:0x9 DW_TAG_formal_parameter -Lset8775 = Ldebug_loc667-Lsection_debug_loc ## DW_AT_location - .long Lset8775 - .long 24797 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1798:0x9 DW_TAG_formal_parameter -Lset8776 = Ldebug_loc397-Lsection_debug_loc ## DW_AT_location - .long Lset8776 - .long 24809 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x17a1:0x9 DW_TAG_formal_parameter -Lset8777 = Ldebug_loc398-Lsection_debug_loc ## DW_AT_location - .long Lset8777 - .long 24821 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x17ae:0x9a DW_TAG_lexical_block -Lset8778 = Ldebug_ranges141-Ldebug_range ## DW_AT_ranges - .long Lset8778 - .byte 5 ## Abbrev [5] 0x17b3:0x10 DW_TAG_variable -Lset8779 = Ldebug_loc401-Lsection_debug_loc ## DW_AT_location - .long Lset8779 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1535 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x17c3:0x10 DW_TAG_variable -Lset8780 = Ldebug_loc402-Lsection_debug_loc ## DW_AT_location - .long Lset8780 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1536 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x17d3:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1537 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x17df:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1537 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x17eb:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8781 = Ldebug_ranges139-Ldebug_range ## DW_AT_ranges - .long Lset8781 - .byte 1 ## DW_AT_call_file - .short 1538 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x17f7:0x9 DW_TAG_formal_parameter -Lset8782 = Ldebug_loc400-Lsection_debug_loc ## DW_AT_location - .long Lset8782 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1800:0x9 DW_TAG_variable -Lset8783 = Ldebug_loc404-Lsection_debug_loc ## DW_AT_location - .long Lset8783 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x180a:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8784 = Ldebug_ranges140-Ldebug_range ## DW_AT_ranges - .long Lset8784 - .byte 1 ## DW_AT_call_file - .short 1538 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1816:0x9 DW_TAG_formal_parameter -Lset8785 = Ldebug_loc403-Lsection_debug_loc ## DW_AT_location - .long Lset8785 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x181f:0x9 DW_TAG_variable -Lset8786 = Ldebug_loc405-Lsection_debug_loc ## DW_AT_location - .long Lset8786 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1829:0x1e DW_TAG_lexical_block - .quad Ltmp2721 ## DW_AT_low_pc - .quad Ltmp2723 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x183a:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1539 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1848:0x9b DW_TAG_lexical_block -Lset8787 = Ldebug_ranges143-Ldebug_range ## DW_AT_ranges - .long Lset8787 - .byte 5 ## Abbrev [5] 0x184d:0x10 DW_TAG_variable -Lset8788 = Ldebug_loc407-Lsection_debug_loc ## DW_AT_location - .long Lset8788 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1545 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x185d:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1546 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1869:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8789 = Ldebug_ranges142-Ldebug_range ## DW_AT_ranges - .long Lset8789 - .byte 1 ## DW_AT_call_file - .short 1551 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1875:0x9 DW_TAG_formal_parameter -Lset8790 = Ldebug_loc408-Lsection_debug_loc ## DW_AT_location - .long Lset8790 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x187e:0x9 DW_TAG_variable -Lset8791 = Ldebug_loc406-Lsection_debug_loc ## DW_AT_location - .long Lset8791 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1888:0x1e DW_TAG_lexical_block - .quad Ltmp2772 ## DW_AT_low_pc - .quad Ltmp2773 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1899:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1552 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x18a6:0x3c DW_TAG_lexical_block - .quad Ltmp2768 ## DW_AT_low_pc - .quad Ltmp2770 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x18b7:0xc DW_TAG_variable - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1548 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x18c3:0x1e DW_TAG_lexical_block - .quad Ltmp2768 ## DW_AT_low_pc - .quad Ltmp2770 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x18d4:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1549 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x18e3:0x8d DW_TAG_lexical_block -Lset8792 = Ldebug_ranges145-Ldebug_range ## DW_AT_ranges - .long Lset8792 - .byte 5 ## Abbrev [5] 0x18e8:0x10 DW_TAG_variable -Lset8793 = Ldebug_loc409-Lsection_debug_loc ## DW_AT_location - .long Lset8793 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1560 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x18f8:0x10 DW_TAG_variable -Lset8794 = Ldebug_loc414-Lsection_debug_loc ## DW_AT_location - .long Lset8794 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1561 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1908:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8795 = Ldebug_ranges144-Ldebug_range ## DW_AT_ranges - .long Lset8795 - .byte 1 ## DW_AT_call_file - .short 1562 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1914:0x9 DW_TAG_formal_parameter -Lset8796 = Ldebug_loc413-Lsection_debug_loc ## DW_AT_location - .long Lset8796 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x191d:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1923:0x9 DW_TAG_variable -Lset8797 = Ldebug_loc410-Lsection_debug_loc ## DW_AT_location - .long Lset8797 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x192c:0x24 DW_TAG_lexical_block - .quad Ltmp2802 ## DW_AT_low_pc - .quad Ltmp2808 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x193d:0x9 DW_TAG_variable -Lset8798 = Ldebug_loc411-Lsection_debug_loc ## DW_AT_location - .long Lset8798 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1946:0x9 DW_TAG_variable -Lset8799 = Ldebug_loc412-Lsection_debug_loc ## DW_AT_location - .long Lset8799 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1951:0x1e DW_TAG_lexical_block - .quad Ltmp2825 ## DW_AT_low_pc - .quad Ltmp2826 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1962:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1563 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1970:0x4c DW_TAG_lexical_block - .quad Ltmp2831 ## DW_AT_low_pc - .quad Ltmp2851 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1981:0x10 DW_TAG_variable -Lset8800 = Ldebug_loc415-Lsection_debug_loc ## DW_AT_location - .long Lset8800 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1572 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1991:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1571 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x199d:0x1e DW_TAG_lexical_block - .quad Ltmp2845 ## DW_AT_low_pc - .quad Ltmp2846 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x19ae:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1573 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x19bc:0x58 DW_TAG_lexical_block -Lset8801 = Ldebug_ranges146-Ldebug_range ## DW_AT_ranges - .long Lset8801 - .byte 5 ## Abbrev [5] 0x19c1:0x10 DW_TAG_variable -Lset8802 = Ldebug_loc416-Lsection_debug_loc ## DW_AT_location - .long Lset8802 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1581 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x19d1:0x10 DW_TAG_variable -Lset8803 = Ldebug_loc417-Lsection_debug_loc ## DW_AT_location - .long Lset8803 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1582 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x19e1:0x10 DW_TAG_variable -Lset8804 = Ldebug_loc419-Lsection_debug_loc ## DW_AT_location - .long Lset8804 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1583 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x19f1:0x22 DW_TAG_lexical_block - .quad Ltmp2891 ## DW_AT_low_pc - .quad Ltmp2892 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1a02:0x10 DW_TAG_variable -Lset8805 = Ldebug_loc418-Lsection_debug_loc ## DW_AT_location - .long Lset8805 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1588 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1a14:0x1e DW_TAG_lexical_block - .quad Ltmp2920 ## DW_AT_low_pc - .quad Ltmp2927 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1a25:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1594 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1a32:0x44 DW_TAG_lexical_block -Lset8806 = Ldebug_ranges147-Ldebug_range ## DW_AT_ranges - .long Lset8806 - .byte 5 ## Abbrev [5] 0x1a37:0x10 DW_TAG_variable -Lset8807 = Ldebug_loc420-Lsection_debug_loc ## DW_AT_location - .long Lset8807 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1598 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a47:0x10 DW_TAG_variable -Lset8808 = Ldebug_loc421-Lsection_debug_loc ## DW_AT_location - .long Lset8808 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1599 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1a57:0x1e DW_TAG_lexical_block - .quad Ltmp2951 ## DW_AT_low_pc - .quad Ltmp2958 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1a68:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1600 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1a76:0x54 DW_TAG_lexical_block -Lset8809 = Ldebug_ranges148-Ldebug_range ## DW_AT_ranges - .long Lset8809 - .byte 5 ## Abbrev [5] 0x1a7b:0x10 DW_TAG_variable -Lset8810 = Ldebug_loc422-Lsection_debug_loc ## DW_AT_location - .long Lset8810 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1609 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a8b:0x10 DW_TAG_variable -Lset8811 = Ldebug_loc423-Lsection_debug_loc ## DW_AT_location - .long Lset8811 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1610 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a9b:0x10 DW_TAG_variable -Lset8812 = Ldebug_loc424-Lsection_debug_loc ## DW_AT_location - .long Lset8812 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1611 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1aab:0x1e DW_TAG_lexical_block - .quad Ltmp2994 ## DW_AT_low_pc - .quad Ltmp3004 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1abc:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1620 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1aca:0x54 DW_TAG_lexical_block -Lset8813 = Ldebug_ranges149-Ldebug_range ## DW_AT_ranges - .long Lset8813 - .byte 5 ## Abbrev [5] 0x1acf:0x10 DW_TAG_variable -Lset8814 = Ldebug_loc425-Lsection_debug_loc ## DW_AT_location - .long Lset8814 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1624 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1adf:0x10 DW_TAG_variable -Lset8815 = Ldebug_loc426-Lsection_debug_loc ## DW_AT_location - .long Lset8815 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1625 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1aef:0x10 DW_TAG_variable -Lset8816 = Ldebug_loc427-Lsection_debug_loc ## DW_AT_location - .long Lset8816 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1626 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1aff:0x1e DW_TAG_lexical_block - .quad Ltmp3036 ## DW_AT_low_pc - .quad Ltmp3046 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1b10:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1635 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1b1e:0x1e DW_TAG_lexical_block - .quad Ltmp3074 ## DW_AT_low_pc - .quad Ltmp3083 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1b2f:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1642 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1b3c:0x5e DW_TAG_lexical_block - .quad Ltmp3088 ## DW_AT_low_pc - .quad Ltmp3126 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1b4d:0x10 DW_TAG_variable -Lset8817 = Ldebug_loc428-Lsection_debug_loc ## DW_AT_location - .long Lset8817 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1646 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1b5d:0x1e DW_TAG_lexical_block - .quad Ltmp3108 ## DW_AT_low_pc - .quad Ltmp3110 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1b6e:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1650 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1b7b:0x1e DW_TAG_lexical_block - .quad Ltmp3111 ## DW_AT_low_pc - .quad Ltmp3121 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1b8c:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1651 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1b9a:0x36 DW_TAG_lexical_block -Lset8818 = Ldebug_ranges150-Ldebug_range ## DW_AT_ranges - .long Lset8818 - .byte 5 ## Abbrev [5] 0x1b9f:0x10 DW_TAG_variable -Lset8819 = Ldebug_loc429-Lsection_debug_loc ## DW_AT_location - .long Lset8819 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1656 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1baf:0x10 DW_TAG_variable -Lset8820 = Ldebug_loc430-Lsection_debug_loc ## DW_AT_location - .long Lset8820 - .long 3005 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1657 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1bbf:0x10 DW_TAG_variable -Lset8821 = Ldebug_loc431-Lsection_debug_loc ## DW_AT_location - .long Lset8821 - .long 5071 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1666 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1bd0:0xa2 DW_TAG_lexical_block -Lset8822 = Ldebug_ranges151-Ldebug_range ## DW_AT_ranges - .long Lset8822 - .byte 5 ## Abbrev [5] 0x1bd5:0x10 DW_TAG_variable -Lset8823 = Ldebug_loc432-Lsection_debug_loc ## DW_AT_location - .long Lset8823 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1687 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1be5:0x8c DW_TAG_lexical_block - .quad Ltmp3188 ## DW_AT_low_pc - .quad Ltmp3205 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1bf6:0x10 DW_TAG_variable -Lset8824 = Ldebug_loc433-Lsection_debug_loc ## DW_AT_location - .long Lset8824 - .long 3389 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1701 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c06:0x10 DW_TAG_variable -Lset8825 = Ldebug_loc434-Lsection_debug_loc ## DW_AT_location - .long Lset8825 - .long 5085 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1703 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c16:0x10 DW_TAG_variable -Lset8826 = Ldebug_loc435-Lsection_debug_loc ## DW_AT_location - .long Lset8826 - .long 5091 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1702 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c26:0x10 DW_TAG_variable -Lset8827 = Ldebug_loc436-Lsection_debug_loc ## DW_AT_location - .long Lset8827 - .long 5095 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1704 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c36:0x10 DW_TAG_variable -Lset8828 = Ldebug_loc437-Lsection_debug_loc ## DW_AT_location - .long Lset8828 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1706 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1c46:0xc DW_TAG_variable - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1707 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1c52:0x1e DW_TAG_lexical_block - .quad Ltmp3199 ## DW_AT_low_pc - .quad Ltmp3200 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1c63:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1712 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1c72:0x72 DW_TAG_lexical_block -Lset8829 = Ldebug_ranges152-Ldebug_range ## DW_AT_ranges - .long Lset8829 - .byte 5 ## Abbrev [5] 0x1c77:0x10 DW_TAG_variable -Lset8830 = Ldebug_loc440-Lsection_debug_loc ## DW_AT_location - .long Lset8830 - .long 5110 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1773 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c87:0x10 DW_TAG_variable -Lset8831 = Ldebug_loc441-Lsection_debug_loc ## DW_AT_location - .long Lset8831 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1772 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c97:0x10 DW_TAG_variable -Lset8832 = Ldebug_loc445-Lsection_debug_loc ## DW_AT_location - .long Lset8832 - .long 4970 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1771 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1ca7:0x1e DW_TAG_lexical_block - .quad Ltmp3235 ## DW_AT_low_pc - .quad Ltmp3236 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1cb8:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1777 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1cc5:0x1e DW_TAG_lexical_block - .quad Ltmp3236 ## DW_AT_low_pc - .quad Ltmp3237 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1cd6:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1778 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ce4:0x72 DW_TAG_lexical_block -Lset8833 = Ldebug_ranges153-Ldebug_range ## DW_AT_ranges - .long Lset8833 - .byte 5 ## Abbrev [5] 0x1ce9:0x10 DW_TAG_variable -Lset8834 = Ldebug_loc442-Lsection_debug_loc ## DW_AT_location - .long Lset8834 - .long 5110 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1763 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1cf9:0x10 DW_TAG_variable -Lset8835 = Ldebug_loc443-Lsection_debug_loc ## DW_AT_location - .long Lset8835 - .long 4970 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1761 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d09:0x10 DW_TAG_variable -Lset8836 = Ldebug_loc444-Lsection_debug_loc ## DW_AT_location - .long Lset8836 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1762 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1d19:0x1e DW_TAG_lexical_block - .quad Ltmp3252 ## DW_AT_low_pc - .quad Ltmp3253 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1d2a:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1766 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1d37:0x1e DW_TAG_lexical_block - .quad Ltmp3253 ## DW_AT_low_pc - .quad Ltmp3254 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1d48:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1767 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1d56:0x16b DW_TAG_lexical_block -Lset8837 = Ldebug_ranges160-Ldebug_range ## DW_AT_ranges - .long Lset8837 - .byte 5 ## Abbrev [5] 0x1d5b:0x10 DW_TAG_variable -Lset8838 = Ldebug_loc447-Lsection_debug_loc ## DW_AT_location - .long Lset8838 - .long 5116 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1785 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d6b:0x10 DW_TAG_variable -Lset8839 = Ldebug_loc453-Lsection_debug_loc ## DW_AT_location - .long Lset8839 - .long 5123 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1787 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d7b:0x10 DW_TAG_variable -Lset8840 = Ldebug_loc454-Lsection_debug_loc ## DW_AT_location - .long Lset8840 - .long 4975 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1788 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1d8b:0xc DW_TAG_variable - .long 5163 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1784 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1d97:0xc DW_TAG_variable - .long 5168 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1786 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1da3:0xd3 DW_TAG_lexical_block -Lset8841 = Ldebug_ranges157-Ldebug_range ## DW_AT_ranges - .long Lset8841 - .byte 8 ## Abbrev [8] 0x1da8:0xc DW_TAG_variable - .long 5174 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1797 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1db4:0xc DW_TAG_variable - .long 5180 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1797 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1dc0:0xc DW_TAG_variable - .long 5187 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1797 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1dcc:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8842 = Ldebug_ranges154-Ldebug_range ## DW_AT_ranges - .long Lset8842 - .byte 1 ## DW_AT_call_file - .short 1799 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1dd8:0x9 DW_TAG_formal_parameter -Lset8843 = Ldebug_loc446-Lsection_debug_loc ## DW_AT_location - .long Lset8843 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x1de1:0x9 DW_TAG_variable -Lset8844 = Ldebug_loc448-Lsection_debug_loc ## DW_AT_location - .long Lset8844 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1deb:0x16 DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8845 = Ldebug_ranges155-Ldebug_range ## DW_AT_ranges - .long Lset8845 - .byte 1 ## DW_AT_call_file - .short 1802 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x1df7:0x9 DW_TAG_variable -Lset8846 = Ldebug_loc449-Lsection_debug_loc ## DW_AT_location - .long Lset8846 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1e01:0x16 DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8847 = Ldebug_ranges156-Ldebug_range ## DW_AT_ranges - .long Lset8847 - .byte 1 ## DW_AT_call_file - .short 1805 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x1e0d:0x9 DW_TAG_variable -Lset8848 = Ldebug_loc450-Lsection_debug_loc ## DW_AT_location - .long Lset8848 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1e17:0x22 DW_TAG_lexical_block - .quad Ltmp3336 ## DW_AT_low_pc - .quad Ltmp3337 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1e28:0x10 DW_TAG_variable -Lset8849 = Ldebug_loc452-Lsection_debug_loc ## DW_AT_location - .long Lset8849 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1801 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1e39:0x1e DW_TAG_lexical_block - .quad Ltmp3340 ## DW_AT_low_pc - .quad Ltmp3341 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1e4a:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1804 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1e57:0x1e DW_TAG_lexical_block - .quad Ltmp3344 ## DW_AT_low_pc - .quad Ltmp3345 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1e68:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1807 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1e76:0x4a DW_TAG_lexical_block -Lset8850 = Ldebug_ranges159-Ldebug_range ## DW_AT_ranges - .long Lset8850 - .byte 5 ## Abbrev [5] 0x1e7b:0x10 DW_TAG_variable -Lset8851 = Ldebug_loc455-Lsection_debug_loc ## DW_AT_location - .long Lset8851 - .long 5130 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1792 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1e8b:0x22 DW_TAG_lexical_block - .quad Ltmp3329 ## DW_AT_low_pc - .quad Ltmp3330 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1e9c:0x10 DW_TAG_variable -Lset8852 = Ldebug_loc451-Lsection_debug_loc ## DW_AT_location - .long Lset8852 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1793 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ead:0x12 DW_TAG_lexical_block -Lset8853 = Ldebug_ranges158-Ldebug_range ## DW_AT_ranges - .long Lset8853 - .byte 8 ## Abbrev [8] 0x1eb2:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1794 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1ec1:0x80 DW_TAG_lexical_block - .quad Ltmp3355 ## DW_AT_low_pc - .quad Ltmp3374 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1ed2:0x10 DW_TAG_variable -Lset8854 = Ldebug_loc457-Lsection_debug_loc ## DW_AT_location - .long Lset8854 - .long 5136 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1813 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1ee2:0x1e DW_TAG_lexical_block - .quad Ltmp3355 ## DW_AT_low_pc - .quad Ltmp3357 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1ef3:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1814 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1f00:0x1e DW_TAG_lexical_block - .quad Ltmp3357 ## DW_AT_low_pc - .quad Ltmp3358 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1f11:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1815 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1f1e:0x22 DW_TAG_lexical_block - .quad Ltmp3358 ## DW_AT_low_pc - .quad Ltmp3359 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1f2f:0x10 DW_TAG_variable -Lset8855 = Ldebug_loc456-Lsection_debug_loc ## DW_AT_location - .long Lset8855 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1816 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x1f41:0x22 DW_TAG_lexical_block - .quad Ltmp3384 ## DW_AT_low_pc - .quad Ltmp3385 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x1f52:0x10 DW_TAG_variable -Lset8856 = Ldebug_loc458-Lsection_debug_loc ## DW_AT_location - .long Lset8856 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1828 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1f63:0x214 DW_TAG_lexical_block -Lset8857 = Ldebug_ranges171-Ldebug_range ## DW_AT_ranges - .long Lset8857 - .byte 5 ## Abbrev [5] 0x1f68:0x10 DW_TAG_variable -Lset8858 = Ldebug_loc459-Lsection_debug_loc ## DW_AT_location - .long Lset8858 - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1834 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1f78:0x10 DW_TAG_variable -Lset8859 = Ldebug_loc460-Lsection_debug_loc ## DW_AT_location - .long Lset8859 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1835 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1f88:0x10 DW_TAG_variable -Lset8860 = Ldebug_loc461-Lsection_debug_loc ## DW_AT_location - .long Lset8860 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1837 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1f98:0x10 DW_TAG_variable -Lset8861 = Ldebug_loc462-Lsection_debug_loc ## DW_AT_location - .long Lset8861 - .long 5139 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1836 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1fa8:0x1e DW_TAG_lexical_block - .quad Ltmp3417 ## DW_AT_low_pc - .quad Ltmp3423 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x1fb9:0xc DW_TAG_variable - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1850 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1fc6:0x1b0 DW_TAG_lexical_block -Lset8862 = Ldebug_ranges170-Ldebug_range ## DW_AT_ranges - .long Lset8862 - .byte 5 ## Abbrev [5] 0x1fcb:0x10 DW_TAG_variable -Lset8863 = Ldebug_loc463-Lsection_debug_loc ## DW_AT_location - .long Lset8863 - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1856 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1fdb:0x19a DW_TAG_lexical_block -Lset8864 = Ldebug_ranges169-Ldebug_range ## DW_AT_ranges - .long Lset8864 - .byte 5 ## Abbrev [5] 0x1fe0:0x10 DW_TAG_variable -Lset8865 = Ldebug_loc464-Lsection_debug_loc ## DW_AT_location - .long Lset8865 - .long 2157 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1859 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1ff0:0x10 DW_TAG_variable -Lset8866 = Ldebug_loc470-Lsection_debug_loc ## DW_AT_location - .long Lset8866 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1858 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2000:0x26 DW_TAG_lexical_block -Lset8867 = Ldebug_ranges161-Ldebug_range ## DW_AT_ranges - .long Lset8867 - .byte 5 ## Abbrev [5] 0x2005:0x10 DW_TAG_variable -Lset8868 = Ldebug_loc465-Lsection_debug_loc ## DW_AT_location - .long Lset8868 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1863 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2015:0x10 DW_TAG_variable -Lset8869 = Ldebug_loc475-Lsection_debug_loc ## DW_AT_location - .long Lset8869 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1863 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2026:0xa3 DW_TAG_lexical_block -Lset8870 = Ldebug_ranges164-Ldebug_range ## DW_AT_ranges - .long Lset8870 - .byte 12 ## Abbrev [12] 0x202b:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1866 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x2038:0x5e DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset8871 = Ldebug_ranges162-Ldebug_range ## DW_AT_ranges - .long Lset8871 - .byte 1 ## DW_AT_call_file - .short 1867 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2044:0x9 DW_TAG_formal_parameter -Lset8872 = Ldebug_loc471-Lsection_debug_loc ## DW_AT_location - .long Lset8872 - .long 21558 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x204d:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset8873 = Ldebug_ranges163-Ldebug_range ## DW_AT_ranges - .long Lset8873 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2058:0x9 DW_TAG_formal_parameter -Lset8874 = Ldebug_loc472-Lsection_debug_loc ## DW_AT_location - .long Lset8874 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x2061:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2067:0x9 DW_TAG_variable -Lset8875 = Ldebug_loc474-Lsection_debug_loc ## DW_AT_location - .long Lset8875 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x2070:0x24 DW_TAG_lexical_block - .quad Ltmp3457 ## DW_AT_low_pc - .quad Ltmp3463 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x2081:0x9 DW_TAG_variable -Lset8876 = Ldebug_loc478-Lsection_debug_loc ## DW_AT_location - .long Lset8876 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x208a:0x9 DW_TAG_variable -Lset8877 = Ldebug_loc479-Lsection_debug_loc ## DW_AT_location - .long Lset8877 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2096:0x32 DW_TAG_lexical_block - .quad Ltmp3464 ## DW_AT_low_pc - .quad Ltmp3467 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x20a7:0x10 DW_TAG_variable -Lset8878 = Ldebug_loc466-Lsection_debug_loc ## DW_AT_location - .long Lset8878 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1868 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x20b7:0x10 DW_TAG_variable -Lset8879 = Ldebug_loc480-Lsection_debug_loc ## DW_AT_location - .long Lset8879 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1868 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x20c9:0x63 DW_TAG_lexical_block -Lset8880 = Ldebug_ranges166-Ldebug_range ## DW_AT_ranges - .long Lset8880 - .byte 8 ## Abbrev [8] 0x20ce:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1882 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x20da:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset8881 = Ldebug_ranges165-Ldebug_range ## DW_AT_ranges - .long Lset8881 - .byte 1 ## DW_AT_call_file - .short 1883 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x20e6:0x9 DW_TAG_formal_parameter -Lset8882 = Ldebug_loc473-Lsection_debug_loc ## DW_AT_location - .long Lset8882 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x20ef:0x9 DW_TAG_variable -Lset8883 = Ldebug_loc477-Lsection_debug_loc ## DW_AT_location - .long Lset8883 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x20f9:0x32 DW_TAG_lexical_block - .quad Ltmp3472 ## DW_AT_low_pc - .quad Ltmp3475 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x210a:0x10 DW_TAG_variable -Lset8884 = Ldebug_loc469-Lsection_debug_loc ## DW_AT_location - .long Lset8884 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1884 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x211a:0x10 DW_TAG_variable -Lset8885 = Ldebug_loc481-Lsection_debug_loc ## DW_AT_location - .long Lset8885 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1884 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x212c:0x26 DW_TAG_lexical_block -Lset8886 = Ldebug_ranges167-Ldebug_range ## DW_AT_ranges - .long Lset8886 - .byte 5 ## Abbrev [5] 0x2131:0x10 DW_TAG_variable -Lset8887 = Ldebug_loc468-Lsection_debug_loc ## DW_AT_location - .long Lset8887 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1879 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2141:0x10 DW_TAG_variable -Lset8888 = Ldebug_loc476-Lsection_debug_loc ## DW_AT_location - .long Lset8888 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1879 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2152:0x22 DW_TAG_lexical_block -Lset8889 = Ldebug_ranges168-Ldebug_range ## DW_AT_ranges - .long Lset8889 - .byte 5 ## Abbrev [5] 0x2157:0x10 DW_TAG_variable -Lset8890 = Ldebug_loc467-Lsection_debug_loc ## DW_AT_location - .long Lset8890 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1876 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2167:0xc DW_TAG_variable - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1876 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2177:0x113 DW_TAG_lexical_block -Lset8891 = Ldebug_ranges174-Ldebug_range ## DW_AT_ranges - .long Lset8891 - .byte 5 ## Abbrev [5] 0x217c:0x10 DW_TAG_variable -Lset8892 = Ldebug_loc483-Lsection_debug_loc ## DW_AT_location - .long Lset8892 - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1898 ## DW_AT_decl_line - .long 24969 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x218c:0x10 DW_TAG_variable -Lset8893 = Ldebug_loc486-Lsection_debug_loc ## DW_AT_location - .long Lset8893 - .long 4324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1899 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x219c:0x64 DW_TAG_inlined_subroutine - .long 24848 ## DW_AT_abstract_origin -Lset8894 = Ldebug_ranges172-Ldebug_range ## DW_AT_ranges - .long Lset8894 - .byte 1 ## DW_AT_call_file - .short 1899 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x21a8:0x9 DW_TAG_formal_parameter -Lset8895 = Ldebug_loc482-Lsection_debug_loc ## DW_AT_location - .long Lset8895 - .long 24863 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x21b1:0x9 DW_TAG_variable -Lset8896 = Ldebug_loc485-Lsection_debug_loc ## DW_AT_location - .long Lset8896 - .long 24899 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x21ba:0x45 DW_TAG_lexical_block - .quad Ltmp3501 ## DW_AT_low_pc - .quad Ltmp3511 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x21cb:0x9 DW_TAG_variable -Lset8897 = Ldebug_loc488-Lsection_debug_loc ## DW_AT_location - .long Lset8897 - .long 24912 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x21d4:0x9 DW_TAG_variable -Lset8898 = Ldebug_loc490-Lsection_debug_loc ## DW_AT_location - .long Lset8898 - .long 24924 ## DW_AT_abstract_origin - .byte 16 ## Abbrev [16] 0x21dd:0x6 DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 24936 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x21e3:0x1b DW_TAG_lexical_block - .quad Ltmp3503 ## DW_AT_low_pc - .quad Ltmp3508 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x21f4:0x9 DW_TAG_variable -Lset8899 = Ldebug_loc492-Lsection_debug_loc ## DW_AT_location - .long Lset8899 - .long 24949 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x2200:0x5b DW_TAG_inlined_subroutine - .long 24991 ## DW_AT_abstract_origin -Lset8900 = Ldebug_ranges173-Ldebug_range ## DW_AT_ranges - .long Lset8900 - .byte 1 ## DW_AT_call_file - .short 1902 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x220c:0x9 DW_TAG_formal_parameter -Lset8901 = Ldebug_loc493-Lsection_debug_loc ## DW_AT_location - .long Lset8901 - .long 25002 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x2215:0x9 DW_TAG_formal_parameter -Lset8902 = Ldebug_loc484-Lsection_debug_loc ## DW_AT_location - .long Lset8902 - .long 25014 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x221e:0x9 DW_TAG_variable -Lset8903 = Ldebug_loc489-Lsection_debug_loc ## DW_AT_location - .long Lset8903 - .long 25062 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2227:0x9 DW_TAG_variable -Lset8904 = Ldebug_loc491-Lsection_debug_loc ## DW_AT_location - .long Lset8904 - .long 25074 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2230:0x9 DW_TAG_variable -Lset8905 = Ldebug_loc494-Lsection_debug_loc ## DW_AT_location - .long Lset8905 - .long 25086 ## DW_AT_abstract_origin - .byte 16 ## Abbrev [16] 0x2239:0x6 DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 25098 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x223f:0x1b DW_TAG_lexical_block - .quad Ltmp3519 ## DW_AT_low_pc - .quad Ltmp3520 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x2250:0x9 DW_TAG_variable -Lset8906 = Ldebug_loc495-Lsection_debug_loc ## DW_AT_location - .long Lset8906 - .long 25111 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x225b:0x2e DW_TAG_lexical_block - .quad Ltmp3511 ## DW_AT_low_pc - .quad Ltmp3514 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x226c:0x10 DW_TAG_variable -Lset8907 = Ldebug_loc487-Lsection_debug_loc ## DW_AT_location - .long Lset8907 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1905 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x227c:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1905 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x228a:0x45 DW_TAG_lexical_block -Lset8908 = Ldebug_ranges176-Ldebug_range ## DW_AT_ranges - .long Lset8908 - .byte 12 ## Abbrev [12] 0x228f:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1911 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x229c:0x10 DW_TAG_variable -Lset8909 = Ldebug_loc496-Lsection_debug_loc ## DW_AT_location - .long Lset8909 - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1912 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x22ac:0x10 DW_TAG_variable -Lset8910 = Ldebug_loc497-Lsection_debug_loc ## DW_AT_location - .long Lset8910 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1910 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x22bc:0x12 DW_TAG_lexical_block -Lset8911 = Ldebug_ranges175-Ldebug_range ## DW_AT_ranges - .long Lset8911 - .byte 8 ## Abbrev [8] 0x22c1:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1922 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x22cf:0x50 DW_TAG_lexical_block - .quad Ltmp3614 ## DW_AT_low_pc - .quad Ltmp3631 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x22e0:0x10 DW_TAG_variable -Lset8912 = Ldebug_loc498-Lsection_debug_loc ## DW_AT_location - .long Lset8912 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1932 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x22f0:0x10 DW_TAG_variable -Lset8913 = Ldebug_loc499-Lsection_debug_loc ## DW_AT_location - .long Lset8913 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1933 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2300:0x1e DW_TAG_lexical_block - .quad Ltmp3625 ## DW_AT_low_pc - .quad Ltmp3626 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2311:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1934 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x231f:0x50 DW_TAG_lexical_block - .quad Ltmp3631 ## DW_AT_low_pc - .quad Ltmp3648 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2330:0x10 DW_TAG_variable -Lset8914 = Ldebug_loc500-Lsection_debug_loc ## DW_AT_location - .long Lset8914 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1938 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2340:0x10 DW_TAG_variable -Lset8915 = Ldebug_loc501-Lsection_debug_loc ## DW_AT_location - .long Lset8915 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1939 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2350:0x1e DW_TAG_lexical_block - .quad Ltmp3642 ## DW_AT_low_pc - .quad Ltmp3643 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2361:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1940 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x236f:0x50 DW_TAG_lexical_block - .quad Ltmp3648 ## DW_AT_low_pc - .quad Ltmp3665 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2380:0x10 DW_TAG_variable -Lset8916 = Ldebug_loc502-Lsection_debug_loc ## DW_AT_location - .long Lset8916 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1944 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2390:0x10 DW_TAG_variable -Lset8917 = Ldebug_loc503-Lsection_debug_loc ## DW_AT_location - .long Lset8917 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1945 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x23a0:0x1e DW_TAG_lexical_block - .quad Ltmp3659 ## DW_AT_low_pc - .quad Ltmp3660 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x23b1:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1946 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x23bf:0x7b DW_TAG_lexical_block - .quad Ltmp3665 ## DW_AT_low_pc - .quad Ltmp3692 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x23d0:0x10 DW_TAG_variable -Lset8918 = Ldebug_loc504-Lsection_debug_loc ## DW_AT_location - .long Lset8918 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1950 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x23e0:0x10 DW_TAG_variable -Lset8919 = Ldebug_loc505-Lsection_debug_loc ## DW_AT_location - .long Lset8919 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1951 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x23f0:0x49 DW_TAG_lexical_block - .quad Ltmp3676 ## DW_AT_low_pc - .quad Ltmp3687 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2401:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1952 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x240d:0x2b DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin - .quad Ltmp3678 ## DW_AT_low_pc - .quad Ltmp3686 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1952 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2425:0x9 DW_TAG_formal_parameter -Lset8920 = Ldebug_loc506-Lsection_debug_loc ## DW_AT_location - .long Lset8920 - .long 24689 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x242e:0x9 DW_TAG_formal_parameter -Lset8921 = Ldebug_loc507-Lsection_debug_loc ## DW_AT_location - .long Lset8921 - .long 24701 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x243a:0x76 DW_TAG_lexical_block - .quad Ltmp3692 ## DW_AT_low_pc - .quad Ltmp3721 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x244b:0x10 DW_TAG_variable -Lset8922 = Ldebug_loc508-Lsection_debug_loc ## DW_AT_location - .long Lset8922 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1956 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x245b:0x10 DW_TAG_variable -Lset8923 = Ldebug_loc509-Lsection_debug_loc ## DW_AT_location - .long Lset8923 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1957 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x246b:0x10 DW_TAG_variable -Lset8924 = Ldebug_loc510-Lsection_debug_loc ## DW_AT_location - .long Lset8924 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1958 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x247b:0x34 DW_TAG_lexical_block - .quad Ltmp3704 ## DW_AT_low_pc - .quad Ltmp3716 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x248c:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1959 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x2498:0x16 DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin -Lset8925 = Ldebug_ranges177-Ldebug_range ## DW_AT_ranges - .long Lset8925 - .byte 1 ## DW_AT_call_file - .short 1959 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x24a4:0x9 DW_TAG_formal_parameter -Lset8926 = Ldebug_loc511-Lsection_debug_loc ## DW_AT_location - .long Lset8926 - .long 24689 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x24b0:0x4c DW_TAG_lexical_block - .quad Ltmp3721 ## DW_AT_low_pc - .quad Ltmp3738 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x24c1:0x10 DW_TAG_variable -Lset8927 = Ldebug_loc512-Lsection_debug_loc ## DW_AT_location - .long Lset8927 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1980 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x24d1:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1979 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x24dd:0x1e DW_TAG_lexical_block - .quad Ltmp3731 ## DW_AT_low_pc - .quad Ltmp3733 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x24ee:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1981 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x24fc:0x5c DW_TAG_lexical_block - .quad Ltmp3738 ## DW_AT_low_pc - .quad Ltmp3768 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x250d:0x10 DW_TAG_variable -Lset8928 = Ldebug_loc513-Lsection_debug_loc ## DW_AT_location - .long Lset8928 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1985 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x251d:0x10 DW_TAG_variable -Lset8929 = Ldebug_loc514-Lsection_debug_loc ## DW_AT_location - .long Lset8929 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1986 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x252d:0xc DW_TAG_variable - .long 5193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1987 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2539:0x1e DW_TAG_lexical_block - .quad Ltmp3752 ## DW_AT_low_pc - .quad Ltmp3762 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x254a:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1991 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2558:0x5c DW_TAG_lexical_block - .quad Ltmp3768 ## DW_AT_low_pc - .quad Ltmp3798 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2569:0x10 DW_TAG_variable -Lset8930 = Ldebug_loc515-Lsection_debug_loc ## DW_AT_location - .long Lset8930 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1995 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2579:0x10 DW_TAG_variable -Lset8931 = Ldebug_loc516-Lsection_debug_loc ## DW_AT_location - .long Lset8931 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1996 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2589:0xc DW_TAG_variable - .long 5193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1997 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2595:0x1e DW_TAG_lexical_block - .quad Ltmp3782 ## DW_AT_low_pc - .quad Ltmp3792 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x25a6:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2001 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x25b4:0x5c DW_TAG_lexical_block - .quad Ltmp3798 ## DW_AT_low_pc - .quad Ltmp3828 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x25c5:0x10 DW_TAG_variable -Lset8932 = Ldebug_loc517-Lsection_debug_loc ## DW_AT_location - .long Lset8932 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2005 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x25d5:0x10 DW_TAG_variable -Lset8933 = Ldebug_loc518-Lsection_debug_loc ## DW_AT_location - .long Lset8933 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2006 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x25e5:0xc DW_TAG_variable - .long 5200 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2007 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x25f1:0x1e DW_TAG_lexical_block - .quad Ltmp3812 ## DW_AT_low_pc - .quad Ltmp3822 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2602:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2011 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2610:0x5c DW_TAG_lexical_block - .quad Ltmp3828 ## DW_AT_low_pc - .quad Ltmp3858 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2621:0x10 DW_TAG_variable -Lset8934 = Ldebug_loc519-Lsection_debug_loc ## DW_AT_location - .long Lset8934 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2015 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2631:0x10 DW_TAG_variable -Lset8935 = Ldebug_loc520-Lsection_debug_loc ## DW_AT_location - .long Lset8935 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2016 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2641:0xc DW_TAG_variable - .long 5200 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2017 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x264d:0x1e DW_TAG_lexical_block - .quad Ltmp3842 ## DW_AT_low_pc - .quad Ltmp3852 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x265e:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2021 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x266c:0x5c DW_TAG_lexical_block - .quad Ltmp3858 ## DW_AT_low_pc - .quad Ltmp3888 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x267d:0x10 DW_TAG_variable -Lset8936 = Ldebug_loc521-Lsection_debug_loc ## DW_AT_location - .long Lset8936 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2025 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x268d:0x10 DW_TAG_variable -Lset8937 = Ldebug_loc522-Lsection_debug_loc ## DW_AT_location - .long Lset8937 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2026 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x269d:0xc DW_TAG_variable - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2027 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x26a9:0x1e DW_TAG_lexical_block - .quad Ltmp3872 ## DW_AT_low_pc - .quad Ltmp3882 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x26ba:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2031 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x26c8:0x5c DW_TAG_lexical_block - .quad Ltmp3888 ## DW_AT_low_pc - .quad Ltmp3918 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x26d9:0x10 DW_TAG_variable -Lset8938 = Ldebug_loc523-Lsection_debug_loc ## DW_AT_location - .long Lset8938 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2035 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x26e9:0x10 DW_TAG_variable -Lset8939 = Ldebug_loc524-Lsection_debug_loc ## DW_AT_location - .long Lset8939 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2036 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x26f9:0xc DW_TAG_variable - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2037 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2705:0x1e DW_TAG_lexical_block - .quad Ltmp3902 ## DW_AT_low_pc - .quad Ltmp3912 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2716:0xc DW_TAG_variable - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2041 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2724:0x7a DW_TAG_lexical_block - .quad Ltmp3918 ## DW_AT_low_pc - .quad Ltmp3939 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2735:0x10 DW_TAG_variable -Lset8940 = Ldebug_loc525-Lsection_debug_loc ## DW_AT_location - .long Lset8940 - .long 4970 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2046 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2745:0x10 DW_TAG_variable -Lset8941 = Ldebug_loc526-Lsection_debug_loc ## DW_AT_location - .long Lset8941 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2047 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2755:0xc DW_TAG_variable - .long 5110 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2048 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2761:0x1e DW_TAG_lexical_block - .quad Ltmp3932 ## DW_AT_low_pc - .quad Ltmp3933 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2772:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2051 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x277f:0x1e DW_TAG_lexical_block - .quad Ltmp3933 ## DW_AT_low_pc - .quad Ltmp3934 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2790:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2052 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x279e:0x9e DW_TAG_lexical_block - .quad Ltmp3939 ## DW_AT_low_pc - .quad Ltmp3963 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x27af:0x10 DW_TAG_variable -Lset8942 = Ldebug_loc527-Lsection_debug_loc ## DW_AT_location - .long Lset8942 - .long 5130 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2062 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x27bf:0x10 DW_TAG_variable -Lset8943 = Ldebug_loc528-Lsection_debug_loc ## DW_AT_location - .long Lset8943 - .long 5146 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2063 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27cf:0xc DW_TAG_variable - .long 5220 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2058 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27db:0xc DW_TAG_variable - .long 5116 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2059 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27e7:0xc DW_TAG_variable - .long 5168 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2060 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27f3:0xc DW_TAG_variable - .long 5123 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2061 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x27ff:0x1e DW_TAG_lexical_block - .quad Ltmp3951 ## DW_AT_low_pc - .quad Ltmp3952 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2810:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2064 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x281d:0x1e DW_TAG_lexical_block - .quad Ltmp3952 ## DW_AT_low_pc - .quad Ltmp3954 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x282e:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2065 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x283c:0x44 DW_TAG_lexical_block -Lset8944 = Ldebug_ranges178-Ldebug_range ## DW_AT_ranges - .long Lset8944 - .byte 5 ## Abbrev [5] 0x2841:0x10 DW_TAG_variable -Lset8945 = Ldebug_loc530-Lsection_debug_loc ## DW_AT_location - .long Lset8945 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2070 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2851:0x2e DW_TAG_lexical_block - .quad Ltmp3974 ## DW_AT_low_pc - .quad Ltmp3975 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2862:0x10 DW_TAG_variable -Lset8946 = Ldebug_loc529-Lsection_debug_loc ## DW_AT_location - .long Lset8946 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2073 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2872:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2073 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2880:0x44 DW_TAG_lexical_block -Lset8947 = Ldebug_ranges179-Ldebug_range ## DW_AT_ranges - .long Lset8947 - .byte 5 ## Abbrev [5] 0x2885:0x10 DW_TAG_variable -Lset8948 = Ldebug_loc532-Lsection_debug_loc ## DW_AT_location - .long Lset8948 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2078 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2895:0x2e DW_TAG_lexical_block - .quad Ltmp4003 ## DW_AT_low_pc - .quad Ltmp4004 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x28a6:0x10 DW_TAG_variable -Lset8949 = Ldebug_loc531-Lsection_debug_loc ## DW_AT_location - .long Lset8949 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2081 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x28b6:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2081 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x28c4:0x15e DW_TAG_lexical_block -Lset8950 = Ldebug_ranges181-Ldebug_range ## DW_AT_ranges - .long Lset8950 - .byte 5 ## Abbrev [5] 0x28c9:0x10 DW_TAG_variable -Lset8951 = Ldebug_loc536-Lsection_debug_loc ## DW_AT_location - .long Lset8951 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2086 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x28d9:0x10 DW_TAG_variable -Lset8952 = Ldebug_loc537-Lsection_debug_loc ## DW_AT_location - .long Lset8952 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2087 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x28e9:0x72 DW_TAG_lexical_block - .quad Ltmp4021 ## DW_AT_low_pc - .quad Ltmp4027 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x28fa:0x10 DW_TAG_variable -Lset8953 = Ldebug_loc533-Lsection_debug_loc ## DW_AT_location - .long Lset8953 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x290a:0x50 DW_TAG_lexical_block - .quad Ltmp4022 ## DW_AT_low_pc - .quad Ltmp4027 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x291b:0x10 DW_TAG_variable -Lset8954 = Ldebug_loc534-Lsection_debug_loc ## DW_AT_location - .long Lset8954 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x292b:0x10 DW_TAG_variable -Lset8955 = Ldebug_loc535-Lsection_debug_loc ## DW_AT_location - .long Lset8955 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x293b:0x1e DW_TAG_lexical_block - .quad Ltmp4025 ## DW_AT_low_pc - .quad Ltmp4027 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x294c:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x295b:0x72 DW_TAG_lexical_block - .quad Ltmp4044 ## DW_AT_low_pc - .quad Ltmp4050 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x296c:0x10 DW_TAG_variable -Lset8956 = Ldebug_loc541-Lsection_debug_loc ## DW_AT_location - .long Lset8956 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x297c:0x50 DW_TAG_lexical_block - .quad Ltmp4045 ## DW_AT_low_pc - .quad Ltmp4050 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x298d:0x10 DW_TAG_variable -Lset8957 = Ldebug_loc542-Lsection_debug_loc ## DW_AT_location - .long Lset8957 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x299d:0x10 DW_TAG_variable -Lset8958 = Ldebug_loc543-Lsection_debug_loc ## DW_AT_location - .long Lset8958 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x29ad:0x1e DW_TAG_lexical_block - .quad Ltmp4048 ## DW_AT_low_pc - .quad Ltmp4050 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x29be:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x29cd:0x54 DW_TAG_lexical_block -Lset8959 = Ldebug_ranges180-Ldebug_range ## DW_AT_ranges - .long Lset8959 - .byte 5 ## Abbrev [5] 0x29d2:0x10 DW_TAG_variable -Lset8960 = Ldebug_loc538-Lsection_debug_loc ## DW_AT_location - .long Lset8960 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x29e2:0x10 DW_TAG_variable -Lset8961 = Ldebug_loc539-Lsection_debug_loc ## DW_AT_location - .long Lset8961 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x29f2:0x10 DW_TAG_variable -Lset8962 = Ldebug_loc540-Lsection_debug_loc ## DW_AT_location - .long Lset8962 - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2a02:0x1e DW_TAG_lexical_block - .quad Ltmp4070 ## DW_AT_low_pc - .quad Ltmp4071 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2a13:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2088 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2a22:0x7c DW_TAG_lexical_block -Lset8963 = Ldebug_ranges183-Ldebug_range ## DW_AT_ranges - .long Lset8963 - .byte 5 ## Abbrev [5] 0x2a27:0x10 DW_TAG_variable -Lset8964 = Ldebug_loc544-Lsection_debug_loc ## DW_AT_location - .long Lset8964 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2096 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2a37:0x10 DW_TAG_variable -Lset8965 = Ldebug_loc545-Lsection_debug_loc ## DW_AT_location - .long Lset8965 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2099 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2a47:0x56 DW_TAG_lexical_block -Lset8966 = Ldebug_ranges182-Ldebug_range ## DW_AT_ranges - .long Lset8966 - .byte 5 ## Abbrev [5] 0x2a4c:0x10 DW_TAG_variable -Lset8967 = Ldebug_loc546-Lsection_debug_loc ## DW_AT_location - .long Lset8967 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2100 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2a5c:0x1e DW_TAG_lexical_block - .quad Ltmp4119 ## DW_AT_low_pc - .quad Ltmp4120 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2a6d:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2100 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x2a7a:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp4110 ## DW_AT_low_pc - .quad Ltmp4114 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2100 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x2a92:0x9 DW_TAG_variable -Lset8968 = Ldebug_loc547-Lsection_debug_loc ## DW_AT_location - .long Lset8968 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2a9e:0x88 DW_TAG_lexical_block - .quad Ltmp4129 ## DW_AT_low_pc - .quad Ltmp4175 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2aaf:0x10 DW_TAG_variable -Lset8969 = Ldebug_loc548-Lsection_debug_loc ## DW_AT_location - .long Lset8969 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2104 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2abf:0x10 DW_TAG_variable -Lset8970 = Ldebug_loc549-Lsection_debug_loc ## DW_AT_location - .long Lset8970 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2107 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2acf:0x56 DW_TAG_lexical_block -Lset8971 = Ldebug_ranges184-Ldebug_range ## DW_AT_ranges - .long Lset8971 - .byte 5 ## Abbrev [5] 0x2ad4:0x10 DW_TAG_variable -Lset8972 = Ldebug_loc550-Lsection_debug_loc ## DW_AT_location - .long Lset8972 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2108 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2ae4:0x1e DW_TAG_lexical_block - .quad Ltmp4166 ## DW_AT_low_pc - .quad Ltmp4167 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2af5:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2108 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x2b02:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp4157 ## DW_AT_low_pc - .quad Ltmp4161 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2108 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x2b1a:0x9 DW_TAG_variable -Lset8973 = Ldebug_loc551-Lsection_debug_loc ## DW_AT_location - .long Lset8973 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2b26:0xba DW_TAG_lexical_block -Lset8974 = Ldebug_ranges186-Ldebug_range ## DW_AT_ranges - .long Lset8974 - .byte 5 ## Abbrev [5] 0x2b2b:0x10 DW_TAG_variable -Lset8975 = Ldebug_loc552-Lsection_debug_loc ## DW_AT_location - .long Lset8975 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2117 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2b3b:0x86 DW_TAG_lexical_block -Lset8976 = Ldebug_ranges185-Ldebug_range ## DW_AT_ranges - .long Lset8976 - .byte 5 ## Abbrev [5] 0x2b40:0x10 DW_TAG_variable -Lset8977 = Ldebug_loc553-Lsection_debug_loc ## DW_AT_location - .long Lset8977 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2121 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b50:0x10 DW_TAG_variable -Lset8978 = Ldebug_loc554-Lsection_debug_loc ## DW_AT_location - .long Lset8978 - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2125 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b60:0x10 DW_TAG_variable -Lset8979 = Ldebug_loc555-Lsection_debug_loc ## DW_AT_location - .long Lset8979 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2122 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b70:0x10 DW_TAG_variable -Lset8980 = Ldebug_loc556-Lsection_debug_loc ## DW_AT_location - .long Lset8980 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2124 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2b80:0x1e DW_TAG_lexical_block - .quad Ltmp4211 ## DW_AT_low_pc - .quad Ltmp4212 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2b91:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2127 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x2b9e:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp4203 ## DW_AT_low_pc - .quad Ltmp4207 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2125 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x2bb6:0x9 DW_TAG_variable -Lset8981 = Ldebug_loc557-Lsection_debug_loc ## DW_AT_location - .long Lset8981 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2bc1:0x1e DW_TAG_lexical_block - .quad Ltmp4197 ## DW_AT_low_pc - .quad Ltmp4198 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2bd2:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2118 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2be0:0x9e DW_TAG_lexical_block - .quad Ltmp4218 ## DW_AT_low_pc - .quad Ltmp4239 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2bf1:0x10 DW_TAG_variable -Lset8982 = Ldebug_loc558-Lsection_debug_loc ## DW_AT_location - .long Lset8982 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2137 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c01:0x10 DW_TAG_variable -Lset8983 = Ldebug_loc559-Lsection_debug_loc ## DW_AT_location - .long Lset8983 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2138 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c11:0x10 DW_TAG_variable -Lset8984 = Ldebug_loc561-Lsection_debug_loc ## DW_AT_location - .long Lset8984 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2139 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2c21:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2136 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2c2d:0x50 DW_TAG_lexical_block - .quad Ltmp4230 ## DW_AT_low_pc - .quad Ltmp4234 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2c3e:0x10 DW_TAG_variable -Lset8985 = Ldebug_loc560-Lsection_debug_loc ## DW_AT_location - .long Lset8985 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2140 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c4e:0x10 DW_TAG_variable -Lset8986 = Ldebug_loc562-Lsection_debug_loc ## DW_AT_location - .long Lset8986 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2140 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2c5e:0x1e DW_TAG_lexical_block - .quad Ltmp4232 ## DW_AT_low_pc - .quad Ltmp4234 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2c6f:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2140 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2c7e:0x9e DW_TAG_lexical_block - .quad Ltmp4239 ## DW_AT_low_pc - .quad Ltmp4260 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2c8f:0x10 DW_TAG_variable -Lset8987 = Ldebug_loc563-Lsection_debug_loc ## DW_AT_location - .long Lset8987 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2145 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c9f:0x10 DW_TAG_variable -Lset8988 = Ldebug_loc564-Lsection_debug_loc ## DW_AT_location - .long Lset8988 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2146 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2caf:0x10 DW_TAG_variable -Lset8989 = Ldebug_loc566-Lsection_debug_loc ## DW_AT_location - .long Lset8989 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2147 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2cbf:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2144 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2ccb:0x50 DW_TAG_lexical_block - .quad Ltmp4251 ## DW_AT_low_pc - .quad Ltmp4255 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2cdc:0x10 DW_TAG_variable -Lset8990 = Ldebug_loc565-Lsection_debug_loc ## DW_AT_location - .long Lset8990 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2148 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2cec:0x10 DW_TAG_variable -Lset8991 = Ldebug_loc567-Lsection_debug_loc ## DW_AT_location - .long Lset8991 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2148 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2cfc:0x1e DW_TAG_lexical_block - .quad Ltmp4253 ## DW_AT_low_pc - .quad Ltmp4255 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x2d0d:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2148 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2d1c:0x11f DW_TAG_lexical_block -Lset8992 = Ldebug_ranges191-Ldebug_range ## DW_AT_ranges - .long Lset8992 - .byte 5 ## Abbrev [5] 0x2d21:0x10 DW_TAG_variable -Lset8993 = Ldebug_loc568-Lsection_debug_loc ## DW_AT_location - .long Lset8993 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2152 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d31:0x10 DW_TAG_variable -Lset8994 = Ldebug_loc569-Lsection_debug_loc ## DW_AT_location - .long Lset8994 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2153 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d41:0x10 DW_TAG_variable -Lset8995 = Ldebug_loc570-Lsection_debug_loc ## DW_AT_location - .long Lset8995 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2154 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d51:0x10 DW_TAG_variable -Lset8996 = Ldebug_loc572-Lsection_debug_loc ## DW_AT_location - .long Lset8996 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2155 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2d61:0x26 DW_TAG_lexical_block -Lset8997 = Ldebug_ranges187-Ldebug_range ## DW_AT_ranges - .long Lset8997 - .byte 5 ## Abbrev [5] 0x2d66:0x10 DW_TAG_variable -Lset8998 = Ldebug_loc573-Lsection_debug_loc ## DW_AT_location - .long Lset8998 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2156 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d76:0x10 DW_TAG_variable -Lset8999 = Ldebug_loc574-Lsection_debug_loc ## DW_AT_location - .long Lset8999 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2156 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2d87:0x8d DW_TAG_lexical_block -Lset9000 = Ldebug_ranges189-Ldebug_range ## DW_AT_ranges - .long Lset9000 - .byte 8 ## Abbrev [8] 0x2d8c:0xc DW_TAG_variable - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2161 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x2d98:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9001 = Ldebug_ranges188-Ldebug_range ## DW_AT_ranges - .long Lset9001 - .byte 1 ## DW_AT_call_file - .short 2162 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2da4:0x9 DW_TAG_formal_parameter -Lset9002 = Ldebug_loc571-Lsection_debug_loc ## DW_AT_location - .long Lset9002 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x2dad:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2db3:0x9 DW_TAG_variable -Lset9003 = Ldebug_loc575-Lsection_debug_loc ## DW_AT_location - .long Lset9003 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x2dbc:0x24 DW_TAG_lexical_block - .quad Ltmp4309 ## DW_AT_low_pc - .quad Ltmp4315 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x2dcd:0x9 DW_TAG_variable -Lset9004 = Ldebug_loc578-Lsection_debug_loc ## DW_AT_location - .long Lset9004 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2dd6:0x9 DW_TAG_variable -Lset9005 = Ldebug_loc579-Lsection_debug_loc ## DW_AT_location - .long Lset9005 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2de1:0x32 DW_TAG_lexical_block - .quad Ltmp4316 ## DW_AT_low_pc - .quad Ltmp4322 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2df2:0x10 DW_TAG_variable -Lset9006 = Ldebug_loc580-Lsection_debug_loc ## DW_AT_location - .long Lset9006 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2162 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e02:0x10 DW_TAG_variable -Lset9007 = Ldebug_loc581-Lsection_debug_loc ## DW_AT_location - .long Lset9007 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2162 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2e14:0x26 DW_TAG_lexical_block -Lset9008 = Ldebug_ranges190-Ldebug_range ## DW_AT_ranges - .long Lset9008 - .byte 5 ## Abbrev [5] 0x2e19:0x10 DW_TAG_variable -Lset9009 = Ldebug_loc576-Lsection_debug_loc ## DW_AT_location - .long Lset9009 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2158 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e29:0x10 DW_TAG_variable -Lset9010 = Ldebug_loc577-Lsection_debug_loc ## DW_AT_location - .long Lset9010 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2158 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2e3b:0x84 DW_TAG_lexical_block - .quad Ltmp4330 ## DW_AT_low_pc - .quad Ltmp4360 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2e4c:0x10 DW_TAG_variable -Lset9011 = Ldebug_loc582-Lsection_debug_loc ## DW_AT_location - .long Lset9011 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2169 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e5c:0x10 DW_TAG_variable -Lset9012 = Ldebug_loc583-Lsection_debug_loc ## DW_AT_location - .long Lset9012 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2170 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e6c:0x10 DW_TAG_variable -Lset9013 = Ldebug_loc584-Lsection_debug_loc ## DW_AT_location - .long Lset9013 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2171 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e7c:0x10 DW_TAG_variable -Lset9014 = Ldebug_loc586-Lsection_debug_loc ## DW_AT_location - .long Lset9014 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2172 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2e8c:0x32 DW_TAG_lexical_block - .quad Ltmp4344 ## DW_AT_low_pc - .quad Ltmp4353 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2e9d:0x10 DW_TAG_variable -Lset9015 = Ldebug_loc585-Lsection_debug_loc ## DW_AT_location - .long Lset9015 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2173 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ead:0x10 DW_TAG_variable -Lset9016 = Ldebug_loc587-Lsection_debug_loc ## DW_AT_location - .long Lset9016 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2173 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2ebf:0xf5 DW_TAG_lexical_block -Lset9017 = Ldebug_ranges196-Ldebug_range ## DW_AT_ranges - .long Lset9017 - .byte 5 ## Abbrev [5] 0x2ec4:0x10 DW_TAG_variable -Lset9018 = Ldebug_loc588-Lsection_debug_loc ## DW_AT_location - .long Lset9018 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2177 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ed4:0x10 DW_TAG_variable -Lset9019 = Ldebug_loc589-Lsection_debug_loc ## DW_AT_location - .long Lset9019 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2178 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ee4:0x10 DW_TAG_variable -Lset9020 = Ldebug_loc590-Lsection_debug_loc ## DW_AT_location - .long Lset9020 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2179 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ef4:0x10 DW_TAG_variable -Lset9021 = Ldebug_loc592-Lsection_debug_loc ## DW_AT_location - .long Lset9021 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2180 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2f04:0x63 DW_TAG_lexical_block -Lset9022 = Ldebug_ranges193-Ldebug_range ## DW_AT_ranges - .long Lset9022 - .byte 8 ## Abbrev [8] 0x2f09:0xc DW_TAG_variable - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2186 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x2f15:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9023 = Ldebug_ranges192-Ldebug_range ## DW_AT_ranges - .long Lset9023 - .byte 1 ## DW_AT_call_file - .short 2187 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2f21:0x9 DW_TAG_formal_parameter -Lset9024 = Ldebug_loc591-Lsection_debug_loc ## DW_AT_location - .long Lset9024 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x2f2a:0x9 DW_TAG_variable -Lset9025 = Ldebug_loc597-Lsection_debug_loc ## DW_AT_location - .long Lset9025 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2f34:0x32 DW_TAG_lexical_block - .quad Ltmp4411 ## DW_AT_low_pc - .quad Ltmp4415 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2f45:0x10 DW_TAG_variable -Lset9026 = Ldebug_loc598-Lsection_debug_loc ## DW_AT_location - .long Lset9026 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2187 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2f55:0x10 DW_TAG_variable -Lset9027 = Ldebug_loc599-Lsection_debug_loc ## DW_AT_location - .long Lset9027 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2187 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2f67:0x26 DW_TAG_lexical_block -Lset9028 = Ldebug_ranges194-Ldebug_range ## DW_AT_ranges - .long Lset9028 - .byte 5 ## Abbrev [5] 0x2f6c:0x10 DW_TAG_variable -Lset9029 = Ldebug_loc595-Lsection_debug_loc ## DW_AT_location - .long Lset9029 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2183 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2f7c:0x10 DW_TAG_variable -Lset9030 = Ldebug_loc596-Lsection_debug_loc ## DW_AT_location - .long Lset9030 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2183 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2f8d:0x26 DW_TAG_lexical_block -Lset9031 = Ldebug_ranges195-Ldebug_range ## DW_AT_ranges - .long Lset9031 - .byte 5 ## Abbrev [5] 0x2f92:0x10 DW_TAG_variable -Lset9032 = Ldebug_loc593-Lsection_debug_loc ## DW_AT_location - .long Lset9032 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2181 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2fa2:0x10 DW_TAG_variable -Lset9033 = Ldebug_loc594-Lsection_debug_loc ## DW_AT_location - .long Lset9033 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2181 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x2fb4:0x84 DW_TAG_lexical_block - .quad Ltmp4423 ## DW_AT_low_pc - .quad Ltmp4452 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x2fc5:0x10 DW_TAG_variable -Lset9034 = Ldebug_loc600-Lsection_debug_loc ## DW_AT_location - .long Lset9034 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2194 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2fd5:0x10 DW_TAG_variable -Lset9035 = Ldebug_loc601-Lsection_debug_loc ## DW_AT_location - .long Lset9035 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2195 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2fe5:0x10 DW_TAG_variable -Lset9036 = Ldebug_loc602-Lsection_debug_loc ## DW_AT_location - .long Lset9036 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2196 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ff5:0x10 DW_TAG_variable -Lset9037 = Ldebug_loc604-Lsection_debug_loc ## DW_AT_location - .long Lset9037 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2197 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3005:0x32 DW_TAG_lexical_block - .quad Ltmp4437 ## DW_AT_low_pc - .quad Ltmp4445 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x3016:0x10 DW_TAG_variable -Lset9038 = Ldebug_loc603-Lsection_debug_loc ## DW_AT_location - .long Lset9038 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2198 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3026:0x10 DW_TAG_variable -Lset9039 = Ldebug_loc605-Lsection_debug_loc ## DW_AT_location - .long Lset9039 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2198 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3038:0x9a DW_TAG_lexical_block -Lset9040 = Ldebug_ranges198-Ldebug_range ## DW_AT_ranges - .long Lset9040 - .byte 5 ## Abbrev [5] 0x303d:0x10 DW_TAG_variable -Lset9041 = Ldebug_loc609-Lsection_debug_loc ## DW_AT_location - .long Lset9041 - .long 5152 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2202 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x304d:0x40 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9042 = Ldebug_ranges197-Ldebug_range ## DW_AT_ranges - .long Lset9042 - .byte 1 ## DW_AT_call_file - .short 2203 ## DW_AT_call_line - .byte 14 ## Abbrev [14] 0x3059:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x305f:0x9 DW_TAG_variable -Lset9043 = Ldebug_loc606-Lsection_debug_loc ## DW_AT_location - .long Lset9043 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x3068:0x24 DW_TAG_lexical_block - .quad Ltmp4474 ## DW_AT_low_pc - .quad Ltmp4481 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x3079:0x9 DW_TAG_variable -Lset9044 = Ldebug_loc607-Lsection_debug_loc ## DW_AT_location - .long Lset9044 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x3082:0x9 DW_TAG_variable -Lset9045 = Ldebug_loc608-Lsection_debug_loc ## DW_AT_location - .long Lset9045 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x308d:0x44 DW_TAG_lexical_block - .quad Ltmp4488 ## DW_AT_low_pc - .quad Ltmp4491 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x309e:0x10 DW_TAG_variable -Lset9046 = Ldebug_loc610-Lsection_debug_loc ## DW_AT_location - .long Lset9046 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2204 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x30ae:0x22 DW_TAG_lexical_block - .quad Ltmp4489 ## DW_AT_low_pc - .quad Ltmp4491 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x30bf:0x10 DW_TAG_variable -Lset9047 = Ldebug_loc611-Lsection_debug_loc ## DW_AT_location - .long Lset9047 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2205 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x30d2:0x6c DW_TAG_lexical_block -Lset9048 = Ldebug_ranges200-Ldebug_range ## DW_AT_ranges - .long Lset9048 - .byte 8 ## Abbrev [8] 0x30d7:0xc DW_TAG_variable - .long 5226 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2214 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x30e3:0x16 DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9049 = Ldebug_ranges199-Ldebug_range ## DW_AT_ranges - .long Lset9049 - .byte 1 ## DW_AT_call_file - .short 2215 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x30ef:0x9 DW_TAG_variable -Lset9050 = Ldebug_loc612-Lsection_debug_loc ## DW_AT_location - .long Lset9050 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x30f9:0x44 DW_TAG_lexical_block - .quad Ltmp4527 ## DW_AT_low_pc - .quad Ltmp4530 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x310a:0x10 DW_TAG_variable -Lset9051 = Ldebug_loc613-Lsection_debug_loc ## DW_AT_location - .long Lset9051 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2216 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x311a:0x22 DW_TAG_lexical_block - .quad Ltmp4528 ## DW_AT_low_pc - .quad Ltmp4530 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x312b:0x10 DW_TAG_variable -Lset9052 = Ldebug_loc614-Lsection_debug_loc ## DW_AT_location - .long Lset9052 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2217 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x313e:0x34 DW_TAG_lexical_block -Lset9053 = Ldebug_ranges201-Ldebug_range ## DW_AT_ranges - .long Lset9053 - .byte 5 ## Abbrev [5] 0x3143:0x10 DW_TAG_variable -Lset9054 = Ldebug_loc615-Lsection_debug_loc ## DW_AT_location - .long Lset9054 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2230 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3153:0x1e DW_TAG_lexical_block - .quad Ltmp4546 ## DW_AT_low_pc - .quad Ltmp4547 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3164:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2231 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3172:0x34 DW_TAG_lexical_block -Lset9055 = Ldebug_ranges202-Ldebug_range ## DW_AT_ranges - .long Lset9055 - .byte 5 ## Abbrev [5] 0x3177:0x10 DW_TAG_variable -Lset9056 = Ldebug_loc616-Lsection_debug_loc ## DW_AT_location - .long Lset9056 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2240 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3187:0x1e DW_TAG_lexical_block - .quad Ltmp4570 ## DW_AT_low_pc - .quad Ltmp4571 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3198:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2241 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x31a6:0x34 DW_TAG_lexical_block -Lset9057 = Ldebug_ranges203-Ldebug_range ## DW_AT_ranges - .long Lset9057 - .byte 5 ## Abbrev [5] 0x31ab:0x10 DW_TAG_variable -Lset9058 = Ldebug_loc617-Lsection_debug_loc ## DW_AT_location - .long Lset9058 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2249 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x31bb:0x1e DW_TAG_lexical_block - .quad Ltmp4594 ## DW_AT_low_pc - .quad Ltmp4595 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x31cc:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2250 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x31da:0x1e DW_TAG_lexical_block - .quad Ltmp4615 ## DW_AT_low_pc - .quad Ltmp4617 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x31eb:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2255 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x31f8:0x1e DW_TAG_lexical_block - .quad Ltmp4630 ## DW_AT_low_pc - .quad Ltmp4632 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3209:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2259 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x3216:0x3c DW_TAG_lexical_block - .quad Ltmp4637 ## DW_AT_low_pc - .quad Ltmp4653 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3227:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2264 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x3233:0x1e DW_TAG_lexical_block - .quad Ltmp4647 ## DW_AT_low_pc - .quad Ltmp4648 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3244:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2265 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x3252:0x3c DW_TAG_lexical_block - .quad Ltmp4653 ## DW_AT_low_pc - .quad Ltmp4669 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3263:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2270 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x326f:0x1e DW_TAG_lexical_block - .quad Ltmp4663 ## DW_AT_low_pc - .quad Ltmp4664 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3280:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2271 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x328e:0x50 DW_TAG_lexical_block - .quad Ltmp4669 ## DW_AT_low_pc - .quad Ltmp4686 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x329f:0x10 DW_TAG_variable -Lset9059 = Ldebug_loc618-Lsection_debug_loc ## DW_AT_location - .long Lset9059 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2275 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x32af:0x10 DW_TAG_variable -Lset9060 = Ldebug_loc619-Lsection_debug_loc ## DW_AT_location - .long Lset9060 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2276 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x32bf:0x1e DW_TAG_lexical_block - .quad Ltmp4680 ## DW_AT_low_pc - .quad Ltmp4681 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x32d0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2277 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x32de:0x50 DW_TAG_lexical_block - .quad Ltmp4686 ## DW_AT_low_pc - .quad Ltmp4703 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x32ef:0x10 DW_TAG_variable -Lset9061 = Ldebug_loc620-Lsection_debug_loc ## DW_AT_location - .long Lset9061 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2281 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x32ff:0x10 DW_TAG_variable -Lset9062 = Ldebug_loc621-Lsection_debug_loc ## DW_AT_location - .long Lset9062 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2282 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x330f:0x1e DW_TAG_lexical_block - .quad Ltmp4697 ## DW_AT_low_pc - .quad Ltmp4698 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3320:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2283 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x332e:0x50 DW_TAG_lexical_block - .quad Ltmp4703 ## DW_AT_low_pc - .quad Ltmp4720 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x333f:0x10 DW_TAG_variable -Lset9063 = Ldebug_loc622-Lsection_debug_loc ## DW_AT_location - .long Lset9063 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2287 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x334f:0x10 DW_TAG_variable -Lset9064 = Ldebug_loc623-Lsection_debug_loc ## DW_AT_location - .long Lset9064 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2288 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x335f:0x1e DW_TAG_lexical_block - .quad Ltmp4714 ## DW_AT_low_pc - .quad Ltmp4715 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3370:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2289 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x337e:0x50 DW_TAG_lexical_block - .quad Ltmp4720 ## DW_AT_low_pc - .quad Ltmp4737 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x338f:0x10 DW_TAG_variable -Lset9065 = Ldebug_loc624-Lsection_debug_loc ## DW_AT_location - .long Lset9065 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2293 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x339f:0x10 DW_TAG_variable -Lset9066 = Ldebug_loc625-Lsection_debug_loc ## DW_AT_location - .long Lset9066 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2294 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x33af:0x1e DW_TAG_lexical_block - .quad Ltmp4731 ## DW_AT_low_pc - .quad Ltmp4732 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x33c0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2295 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x33ce:0x50 DW_TAG_lexical_block - .quad Ltmp4737 ## DW_AT_low_pc - .quad Ltmp4754 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x33df:0x10 DW_TAG_variable -Lset9067 = Ldebug_loc626-Lsection_debug_loc ## DW_AT_location - .long Lset9067 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2299 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x33ef:0x10 DW_TAG_variable -Lset9068 = Ldebug_loc627-Lsection_debug_loc ## DW_AT_location - .long Lset9068 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2300 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x33ff:0x1e DW_TAG_lexical_block - .quad Ltmp4748 ## DW_AT_low_pc - .quad Ltmp4749 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3410:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2301 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x341e:0x50 DW_TAG_lexical_block - .quad Ltmp4754 ## DW_AT_low_pc - .quad Ltmp4771 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x342f:0x10 DW_TAG_variable -Lset9069 = Ldebug_loc628-Lsection_debug_loc ## DW_AT_location - .long Lset9069 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2305 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x343f:0x10 DW_TAG_variable -Lset9070 = Ldebug_loc629-Lsection_debug_loc ## DW_AT_location - .long Lset9070 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2306 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x344f:0x1e DW_TAG_lexical_block - .quad Ltmp4765 ## DW_AT_low_pc - .quad Ltmp4766 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3460:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2307 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x346e:0x50 DW_TAG_lexical_block - .quad Ltmp4771 ## DW_AT_low_pc - .quad Ltmp4788 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x347f:0x10 DW_TAG_variable -Lset9071 = Ldebug_loc630-Lsection_debug_loc ## DW_AT_location - .long Lset9071 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2311 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x348f:0x10 DW_TAG_variable -Lset9072 = Ldebug_loc631-Lsection_debug_loc ## DW_AT_location - .long Lset9072 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2312 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x349f:0x1e DW_TAG_lexical_block - .quad Ltmp4782 ## DW_AT_low_pc - .quad Ltmp4783 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x34b0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2313 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x34be:0x50 DW_TAG_lexical_block - .quad Ltmp4788 ## DW_AT_low_pc - .quad Ltmp4805 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x34cf:0x10 DW_TAG_variable -Lset9073 = Ldebug_loc632-Lsection_debug_loc ## DW_AT_location - .long Lset9073 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2317 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x34df:0x10 DW_TAG_variable -Lset9074 = Ldebug_loc633-Lsection_debug_loc ## DW_AT_location - .long Lset9074 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2318 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x34ef:0x1e DW_TAG_lexical_block - .quad Ltmp4799 ## DW_AT_low_pc - .quad Ltmp4800 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3500:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2319 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x350e:0x50 DW_TAG_lexical_block - .quad Ltmp4805 ## DW_AT_low_pc - .quad Ltmp4822 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x351f:0x10 DW_TAG_variable -Lset9075 = Ldebug_loc634-Lsection_debug_loc ## DW_AT_location - .long Lset9075 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2323 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x352f:0x10 DW_TAG_variable -Lset9076 = Ldebug_loc635-Lsection_debug_loc ## DW_AT_location - .long Lset9076 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2324 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x353f:0x1e DW_TAG_lexical_block - .quad Ltmp4816 ## DW_AT_low_pc - .quad Ltmp4817 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3550:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2325 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x355e:0x50 DW_TAG_lexical_block - .quad Ltmp4822 ## DW_AT_low_pc - .quad Ltmp4839 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x356f:0x10 DW_TAG_variable -Lset9077 = Ldebug_loc636-Lsection_debug_loc ## DW_AT_location - .long Lset9077 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2329 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x357f:0x10 DW_TAG_variable -Lset9078 = Ldebug_loc637-Lsection_debug_loc ## DW_AT_location - .long Lset9078 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2330 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x358f:0x1e DW_TAG_lexical_block - .quad Ltmp4833 ## DW_AT_low_pc - .quad Ltmp4834 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x35a0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2331 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x35ae:0x50 DW_TAG_lexical_block - .quad Ltmp4839 ## DW_AT_low_pc - .quad Ltmp4856 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x35bf:0x10 DW_TAG_variable -Lset9079 = Ldebug_loc638-Lsection_debug_loc ## DW_AT_location - .long Lset9079 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2335 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x35cf:0x10 DW_TAG_variable -Lset9080 = Ldebug_loc639-Lsection_debug_loc ## DW_AT_location - .long Lset9080 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2336 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x35df:0x1e DW_TAG_lexical_block - .quad Ltmp4850 ## DW_AT_low_pc - .quad Ltmp4851 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x35f0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2337 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x35fe:0x50 DW_TAG_lexical_block - .quad Ltmp4856 ## DW_AT_low_pc - .quad Ltmp4873 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x360f:0x10 DW_TAG_variable -Lset9081 = Ldebug_loc640-Lsection_debug_loc ## DW_AT_location - .long Lset9081 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2341 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x361f:0x10 DW_TAG_variable -Lset9082 = Ldebug_loc641-Lsection_debug_loc ## DW_AT_location - .long Lset9082 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2342 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x362f:0x1e DW_TAG_lexical_block - .quad Ltmp4867 ## DW_AT_low_pc - .quad Ltmp4868 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3640:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2343 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x364e:0x50 DW_TAG_lexical_block - .quad Ltmp4873 ## DW_AT_low_pc - .quad Ltmp4890 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x365f:0x10 DW_TAG_variable -Lset9083 = Ldebug_loc642-Lsection_debug_loc ## DW_AT_location - .long Lset9083 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2347 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x366f:0x10 DW_TAG_variable -Lset9084 = Ldebug_loc643-Lsection_debug_loc ## DW_AT_location - .long Lset9084 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2348 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x367f:0x1e DW_TAG_lexical_block - .quad Ltmp4884 ## DW_AT_low_pc - .quad Ltmp4885 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3690:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2349 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x369e:0x50 DW_TAG_lexical_block - .quad Ltmp4890 ## DW_AT_low_pc - .quad Ltmp4907 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x36af:0x10 DW_TAG_variable -Lset9085 = Ldebug_loc644-Lsection_debug_loc ## DW_AT_location - .long Lset9085 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2353 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x36bf:0x10 DW_TAG_variable -Lset9086 = Ldebug_loc645-Lsection_debug_loc ## DW_AT_location - .long Lset9086 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2354 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x36cf:0x1e DW_TAG_lexical_block - .quad Ltmp4901 ## DW_AT_low_pc - .quad Ltmp4902 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x36e0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2355 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x36ee:0x8d DW_TAG_lexical_block -Lset9087 = Ldebug_ranges205-Ldebug_range ## DW_AT_ranges - .long Lset9087 - .byte 5 ## Abbrev [5] 0x36f3:0x10 DW_TAG_variable -Lset9088 = Ldebug_loc649-Lsection_debug_loc ## DW_AT_location - .long Lset9088 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2359 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3703:0x10 DW_TAG_variable -Lset9089 = Ldebug_loc651-Lsection_debug_loc ## DW_AT_location - .long Lset9089 - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2360 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x3713:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9090 = Ldebug_ranges204-Ldebug_range ## DW_AT_ranges - .long Lset9090 - .byte 1 ## DW_AT_call_file - .short 2361 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x371f:0x9 DW_TAG_formal_parameter -Lset9091 = Ldebug_loc650-Lsection_debug_loc ## DW_AT_location - .long Lset9091 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x3728:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x372e:0x9 DW_TAG_variable -Lset9092 = Ldebug_loc646-Lsection_debug_loc ## DW_AT_location - .long Lset9092 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x3737:0x24 DW_TAG_lexical_block - .quad Ltmp4930 ## DW_AT_low_pc - .quad Ltmp4937 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x3748:0x9 DW_TAG_variable -Lset9093 = Ldebug_loc647-Lsection_debug_loc ## DW_AT_location - .long Lset9093 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x3751:0x9 DW_TAG_variable -Lset9094 = Ldebug_loc648-Lsection_debug_loc ## DW_AT_location - .long Lset9094 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x375c:0x1e DW_TAG_lexical_block - .quad Ltmp4946 ## DW_AT_low_pc - .quad Ltmp4947 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x376d:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2361 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x377b:0x5f DW_TAG_lexical_block -Lset9095 = Ldebug_ranges207-Ldebug_range ## DW_AT_ranges - .long Lset9095 - .byte 5 ## Abbrev [5] 0x3780:0x10 DW_TAG_variable -Lset9096 = Ldebug_loc653-Lsection_debug_loc ## DW_AT_location - .long Lset9096 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2367 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x3790:0xc DW_TAG_variable - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2368 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x379c:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9097 = Ldebug_ranges206-Ldebug_range ## DW_AT_ranges - .long Lset9097 - .byte 1 ## DW_AT_call_file - .short 2369 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x37a8:0x9 DW_TAG_formal_parameter -Lset9098 = Ldebug_loc652-Lsection_debug_loc ## DW_AT_location - .long Lset9098 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x37b1:0x9 DW_TAG_variable -Lset9099 = Ldebug_loc654-Lsection_debug_loc ## DW_AT_location - .long Lset9099 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x37bb:0x1e DW_TAG_lexical_block - .quad Ltmp4986 ## DW_AT_low_pc - .quad Ltmp4987 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x37cc:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2369 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x37da:0x30 DW_TAG_lexical_block -Lset9100 = Ldebug_ranges208-Ldebug_range ## DW_AT_ranges - .long Lset9100 - .byte 8 ## Abbrev [8] 0x37df:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2375 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x37eb:0x1e DW_TAG_lexical_block - .quad Ltmp5004 ## DW_AT_low_pc - .quad Ltmp5005 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x37fc:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2377 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x380a:0x30 DW_TAG_lexical_block -Lset9101 = Ldebug_ranges209-Ldebug_range ## DW_AT_ranges - .long Lset9101 - .byte 8 ## Abbrev [8] 0x380f:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2384 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x381b:0x1e DW_TAG_lexical_block - .quad Ltmp5022 ## DW_AT_low_pc - .quad Ltmp5023 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x382c:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2386 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x383a:0x30 DW_TAG_lexical_block -Lset9102 = Ldebug_ranges210-Ldebug_range ## DW_AT_ranges - .long Lset9102 - .byte 8 ## Abbrev [8] 0x383f:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2393 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x384b:0x1e DW_TAG_lexical_block - .quad Ltmp5040 ## DW_AT_low_pc - .quad Ltmp5041 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x385c:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2395 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x386a:0x74 DW_TAG_lexical_block -Lset9103 = Ldebug_ranges212-Ldebug_range ## DW_AT_ranges - .long Lset9103 - .byte 5 ## Abbrev [5] 0x386f:0x10 DW_TAG_variable -Lset9104 = Ldebug_loc658-Lsection_debug_loc ## DW_AT_location - .long Lset9104 - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2402 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x387f:0x40 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9105 = Ldebug_ranges211-Ldebug_range ## DW_AT_ranges - .long Lset9105 - .byte 1 ## DW_AT_call_file - .short 2403 ## DW_AT_call_line - .byte 14 ## Abbrev [14] 0x388b:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x3891:0x9 DW_TAG_variable -Lset9106 = Ldebug_loc655-Lsection_debug_loc ## DW_AT_location - .long Lset9106 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x389a:0x24 DW_TAG_lexical_block - .quad Ltmp5067 ## DW_AT_low_pc - .quad Ltmp5073 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x38ab:0x9 DW_TAG_variable -Lset9107 = Ldebug_loc656-Lsection_debug_loc ## DW_AT_location - .long Lset9107 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x38b4:0x9 DW_TAG_variable -Lset9108 = Ldebug_loc657-Lsection_debug_loc ## DW_AT_location - .long Lset9108 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x38bf:0x1e DW_TAG_lexical_block - .quad Ltmp5080 ## DW_AT_low_pc - .quad Ltmp5081 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x38d0:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2403 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x38de:0x46 DW_TAG_lexical_block -Lset9109 = Ldebug_ranges214-Ldebug_range ## DW_AT_ranges - .long Lset9109 - .byte 8 ## Abbrev [8] 0x38e3:0xc DW_TAG_variable - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2409 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x38ef:0x16 DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9110 = Ldebug_ranges213-Ldebug_range ## DW_AT_ranges - .long Lset9110 - .byte 1 ## DW_AT_call_file - .short 2410 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x38fb:0x9 DW_TAG_variable -Lset9111 = Ldebug_loc659-Lsection_debug_loc ## DW_AT_location - .long Lset9111 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x3905:0x1e DW_TAG_lexical_block - .quad Ltmp5116 ## DW_AT_low_pc - .quad Ltmp5117 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x3916:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2410 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3924:0x81 DW_TAG_lexical_block -Lset9112 = Ldebug_ranges215-Ldebug_range ## DW_AT_ranges - .long Lset9112 - .byte 5 ## Abbrev [5] 0x3929:0x10 DW_TAG_variable -Lset9113 = Ldebug_loc660-Lsection_debug_loc ## DW_AT_location - .long Lset9113 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2445 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x3939:0xc DW_TAG_variable - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2442 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x3945:0x5f DW_TAG_inlined_subroutine - .long 25137 ## DW_AT_abstract_origin - .quad Ltmp5213 ## DW_AT_low_pc - .quad Ltmp5229 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2446 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x395d:0x9 DW_TAG_formal_parameter -Lset9114 = Ldebug_loc662-Lsection_debug_loc ## DW_AT_location - .long Lset9114 - .long 25152 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x3966:0x9 DW_TAG_formal_parameter -Lset9115 = Ldebug_loc661-Lsection_debug_loc ## DW_AT_location - .long Lset9115 - .long 25164 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x396f:0x9 DW_TAG_variable -Lset9116 = Ldebug_loc663-Lsection_debug_loc ## DW_AT_location - .long Lset9116 - .long 25188 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x3978:0x9 DW_TAG_variable -Lset9117 = Ldebug_loc665-Lsection_debug_loc ## DW_AT_location - .long Lset9117 - .long 25200 ## DW_AT_abstract_origin - .byte 15 ## Abbrev [15] 0x3981:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp5221 ## DW_AT_low_pc - .quad Ltmp5225 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1133 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x3999:0x9 DW_TAG_variable -Lset9118 = Ldebug_loc664-Lsection_debug_loc ## DW_AT_location - .long Lset9118 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x39a7:0xc DW_TAG_array_type - .long 14771 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x39ac:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 116 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 19 ## Abbrev [19] 0x39b3:0x1 DW_TAG_pointer_type - .byte 20 ## Abbrev [20] 0x39b4:0x7 DW_TAG_base_type - .long 143 ## DW_AT_name - .byte 8 ## DW_AT_byte_size - .byte 7 ## DW_AT_encoding - .byte 21 ## Abbrev [21] 0x39bb:0x9b DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 2 ## DW_AT_decl_file - .byte 18 ## DW_AT_decl_line - .byte 22 ## Abbrev [22] 0x39bf:0x6 DW_TAG_enumerator - .long 152 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39c5:0x6 DW_TAG_enumerator - .long 161 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39cb:0x6 DW_TAG_enumerator - .long 173 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39d1:0x6 DW_TAG_enumerator - .long 179 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39d7:0x6 DW_TAG_enumerator - .long 187 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39dd:0x6 DW_TAG_enumerator - .long 194 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39e3:0x6 DW_TAG_enumerator - .long 200 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39e9:0x6 DW_TAG_enumerator - .long 207 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39ef:0x6 DW_TAG_enumerator - .long 214 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39f5:0x6 DW_TAG_enumerator - .long 221 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x39fb:0x6 DW_TAG_enumerator - .long 228 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a01:0x6 DW_TAG_enumerator - .long 235 ## DW_AT_name - .byte 11 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a07:0x6 DW_TAG_enumerator - .long 242 ## DW_AT_name - .byte 12 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a0d:0x6 DW_TAG_enumerator - .long 250 ## DW_AT_name - .byte 13 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a13:0x6 DW_TAG_enumerator - .long 258 ## DW_AT_name - .byte 14 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a19:0x6 DW_TAG_enumerator - .long 265 ## DW_AT_name - .byte 15 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a1f:0x6 DW_TAG_enumerator - .long 273 ## DW_AT_name - .byte 16 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a25:0x6 DW_TAG_enumerator - .long 280 ## DW_AT_name - .byte 17 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a2b:0x6 DW_TAG_enumerator - .long 287 ## DW_AT_name - .byte 18 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a31:0x6 DW_TAG_enumerator - .long 294 ## DW_AT_name - .byte 19 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a37:0x6 DW_TAG_enumerator - .long 302 ## DW_AT_name - .byte 20 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a3d:0x6 DW_TAG_enumerator - .long 308 ## DW_AT_name - .byte 21 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a43:0x6 DW_TAG_enumerator - .long 314 ## DW_AT_name - .byte 22 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a49:0x6 DW_TAG_enumerator - .long 324 ## DW_AT_name - .byte 23 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a4f:0x6 DW_TAG_enumerator - .long 332 ## DW_AT_name - .byte 24 ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 21 ## Abbrev [21] 0x3a56:0x2f1 DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 3 ## DW_AT_decl_file - .byte 221 ## DW_AT_decl_line - .byte 22 ## Abbrev [22] 0x3a5a:0x6 DW_TAG_enumerator - .long 337 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a60:0x6 DW_TAG_enumerator - .long 345 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a66:0x6 DW_TAG_enumerator - .long 354 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a6c:0x6 DW_TAG_enumerator - .long 364 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a72:0x6 DW_TAG_enumerator - .long 376 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a78:0x6 DW_TAG_enumerator - .long 387 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a7e:0x6 DW_TAG_enumerator - .long 399 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a84:0x6 DW_TAG_enumerator - .long 411 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a8a:0x6 DW_TAG_enumerator - .long 423 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a90:0x6 DW_TAG_enumerator - .long 435 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a96:0x6 DW_TAG_enumerator - .long 447 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3a9c:0x6 DW_TAG_enumerator - .long 459 ## DW_AT_name - .byte 11 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3aa2:0x6 DW_TAG_enumerator - .long 471 ## DW_AT_name - .byte 12 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3aa8:0x6 DW_TAG_enumerator - .long 479 ## DW_AT_name - .byte 13 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3aae:0x6 DW_TAG_enumerator - .long 486 ## DW_AT_name - .byte 14 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ab4:0x6 DW_TAG_enumerator - .long 493 ## DW_AT_name - .byte 15 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3aba:0x6 DW_TAG_enumerator - .long 500 ## DW_AT_name - .byte 16 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ac0:0x6 DW_TAG_enumerator - .long 507 ## DW_AT_name - .byte 17 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ac6:0x6 DW_TAG_enumerator - .long 514 ## DW_AT_name - .byte 18 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3acc:0x6 DW_TAG_enumerator - .long 521 ## DW_AT_name - .byte 19 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ad2:0x6 DW_TAG_enumerator - .long 529 ## DW_AT_name - .byte 20 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ad8:0x6 DW_TAG_enumerator - .long 537 ## DW_AT_name - .byte 21 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ade:0x6 DW_TAG_enumerator - .long 544 ## DW_AT_name - .byte 22 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ae4:0x6 DW_TAG_enumerator - .long 552 ## DW_AT_name - .byte 23 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3aea:0x6 DW_TAG_enumerator - .long 559 ## DW_AT_name - .byte 24 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3af0:0x6 DW_TAG_enumerator - .long 566 ## DW_AT_name - .byte 25 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3af6:0x6 DW_TAG_enumerator - .long 573 ## DW_AT_name - .byte 26 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3afc:0x6 DW_TAG_enumerator - .long 581 ## DW_AT_name - .byte 27 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b02:0x6 DW_TAG_enumerator - .long 588 ## DW_AT_name - .byte 28 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b08:0x6 DW_TAG_enumerator - .long 595 ## DW_AT_name - .byte 29 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b0e:0x6 DW_TAG_enumerator - .long 605 ## DW_AT_name - .byte 30 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b14:0x6 DW_TAG_enumerator - .long 612 ## DW_AT_name - .byte 31 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b1a:0x6 DW_TAG_enumerator - .long 618 ## DW_AT_name - .byte 32 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b20:0x6 DW_TAG_enumerator - .long 624 ## DW_AT_name - .byte 33 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b26:0x6 DW_TAG_enumerator - .long 630 ## DW_AT_name - .byte 34 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b2c:0x6 DW_TAG_enumerator - .long 638 ## DW_AT_name - .byte 35 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b32:0x6 DW_TAG_enumerator - .long 649 ## DW_AT_name - .byte 36 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b38:0x6 DW_TAG_enumerator - .long 657 ## DW_AT_name - .byte 37 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b3e:0x6 DW_TAG_enumerator - .long 669 ## DW_AT_name - .byte 38 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b44:0x6 DW_TAG_enumerator - .long 679 ## DW_AT_name - .byte 39 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b4a:0x6 DW_TAG_enumerator - .long 690 ## DW_AT_name - .byte 40 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b50:0x6 DW_TAG_enumerator - .long 701 ## DW_AT_name - .byte 41 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b56:0x6 DW_TAG_enumerator - .long 713 ## DW_AT_name - .byte 42 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b5c:0x6 DW_TAG_enumerator - .long 725 ## DW_AT_name - .byte 43 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b62:0x6 DW_TAG_enumerator - .long 736 ## DW_AT_name - .byte 44 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b68:0x6 DW_TAG_enumerator - .long 747 ## DW_AT_name - .byte 45 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b6e:0x6 DW_TAG_enumerator - .long 757 ## DW_AT_name - .byte 46 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b74:0x6 DW_TAG_enumerator - .long 769 ## DW_AT_name - .byte 47 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b7a:0x6 DW_TAG_enumerator - .long 787 ## DW_AT_name - .byte 48 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b80:0x6 DW_TAG_enumerator - .long 805 ## DW_AT_name - .byte 49 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b86:0x6 DW_TAG_enumerator - .long 820 ## DW_AT_name - .byte 50 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b8c:0x6 DW_TAG_enumerator - .long 835 ## DW_AT_name - .byte 51 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b92:0x6 DW_TAG_enumerator - .long 848 ## DW_AT_name - .byte 52 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b98:0x6 DW_TAG_enumerator - .long 861 ## DW_AT_name - .byte 53 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3b9e:0x6 DW_TAG_enumerator - .long 875 ## DW_AT_name - .byte 54 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ba4:0x6 DW_TAG_enumerator - .long 889 ## DW_AT_name - .byte 55 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3baa:0x6 DW_TAG_enumerator - .long 903 ## DW_AT_name - .byte 56 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bb0:0x6 DW_TAG_enumerator - .long 917 ## DW_AT_name - .byte 57 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bb6:0x6 DW_TAG_enumerator - .long 931 ## DW_AT_name - .byte 58 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bbc:0x6 DW_TAG_enumerator - .long 945 ## DW_AT_name - .byte 59 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bc2:0x6 DW_TAG_enumerator - .long 959 ## DW_AT_name - .byte 60 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bc8:0x6 DW_TAG_enumerator - .long 973 ## DW_AT_name - .byte 61 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bce:0x6 DW_TAG_enumerator - .long 987 ## DW_AT_name - .byte 62 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bd4:0x6 DW_TAG_enumerator - .long 1001 ## DW_AT_name - .byte 63 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bda:0x7 DW_TAG_enumerator - .long 1015 ## DW_AT_name - .asciz "\300" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3be1:0x7 DW_TAG_enumerator - .long 1029 ## DW_AT_name - .asciz "\301" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3be8:0x7 DW_TAG_enumerator - .long 1043 ## DW_AT_name - .asciz "\302" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bef:0x7 DW_TAG_enumerator - .long 1057 ## DW_AT_name - .asciz "\303" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bf6:0x7 DW_TAG_enumerator - .long 1071 ## DW_AT_name - .asciz "\304" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3bfd:0x7 DW_TAG_enumerator - .long 1085 ## DW_AT_name - .asciz "\305" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c04:0x7 DW_TAG_enumerator - .long 1102 ## DW_AT_name - .asciz "\306" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c0b:0x7 DW_TAG_enumerator - .long 1119 ## DW_AT_name - .asciz "\307" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c12:0x7 DW_TAG_enumerator - .long 1133 ## DW_AT_name - .asciz "\310" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c19:0x7 DW_TAG_enumerator - .long 1150 ## DW_AT_name - .asciz "\311" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c20:0x7 DW_TAG_enumerator - .long 1168 ## DW_AT_name - .asciz "\312" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c27:0x7 DW_TAG_enumerator - .long 1183 ## DW_AT_name - .asciz "\313" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c2e:0x7 DW_TAG_enumerator - .long 1197 ## DW_AT_name - .asciz "\314" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c35:0x7 DW_TAG_enumerator - .long 1211 ## DW_AT_name - .asciz "\315" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c3c:0x7 DW_TAG_enumerator - .long 1226 ## DW_AT_name - .asciz "\316" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c43:0x7 DW_TAG_enumerator - .long 1241 ## DW_AT_name - .asciz "\317" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c4a:0x7 DW_TAG_enumerator - .long 1257 ## DW_AT_name - .asciz "\320" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c51:0x7 DW_TAG_enumerator - .long 1277 ## DW_AT_name - .asciz "\321" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c58:0x7 DW_TAG_enumerator - .long 1297 ## DW_AT_name - .asciz "\322" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c5f:0x7 DW_TAG_enumerator - .long 1317 ## DW_AT_name - .asciz "\323" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c66:0x7 DW_TAG_enumerator - .long 1337 ## DW_AT_name - .asciz "\324" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c6d:0x7 DW_TAG_enumerator - .long 1358 ## DW_AT_name - .asciz "\325" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c74:0x7 DW_TAG_enumerator - .long 1379 ## DW_AT_name - .asciz "\326" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c7b:0x7 DW_TAG_enumerator - .long 1398 ## DW_AT_name - .asciz "\327" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c82:0x7 DW_TAG_enumerator - .long 1417 ## DW_AT_name - .asciz "\330" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c89:0x7 DW_TAG_enumerator - .long 1436 ## DW_AT_name - .asciz "\331" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c90:0x7 DW_TAG_enumerator - .long 1455 ## DW_AT_name - .asciz "\332" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c97:0x7 DW_TAG_enumerator - .long 1473 ## DW_AT_name - .asciz "\333" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3c9e:0x7 DW_TAG_enumerator - .long 1491 ## DW_AT_name - .asciz "\334" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ca5:0x7 DW_TAG_enumerator - .long 1510 ## DW_AT_name - .asciz "\335" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cac:0x7 DW_TAG_enumerator - .long 1529 ## DW_AT_name - .asciz "\336" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cb3:0x7 DW_TAG_enumerator - .long 1547 ## DW_AT_name - .asciz "\337" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cba:0x7 DW_TAG_enumerator - .long 1563 ## DW_AT_name - .asciz "\340" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cc1:0x7 DW_TAG_enumerator - .long 1578 ## DW_AT_name - .asciz "\341" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cc8:0x7 DW_TAG_enumerator - .long 1594 ## DW_AT_name - .asciz "\342" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ccf:0x7 DW_TAG_enumerator - .long 1609 ## DW_AT_name - .asciz "\343" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cd6:0x7 DW_TAG_enumerator - .long 1624 ## DW_AT_name - .asciz "\344" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cdd:0x7 DW_TAG_enumerator - .long 1639 ## DW_AT_name - .asciz "\345" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ce4:0x7 DW_TAG_enumerator - .long 1653 ## DW_AT_name - .asciz "\346" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3ceb:0x7 DW_TAG_enumerator - .long 1667 ## DW_AT_name - .asciz "\347" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cf2:0x7 DW_TAG_enumerator - .long 1681 ## DW_AT_name - .asciz "\350" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3cf9:0x7 DW_TAG_enumerator - .long 1695 ## DW_AT_name - .asciz "\351" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d00:0x7 DW_TAG_enumerator - .long 1709 ## DW_AT_name - .asciz "\352" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d07:0x7 DW_TAG_enumerator - .long 1723 ## DW_AT_name - .asciz "\353" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d0e:0x7 DW_TAG_enumerator - .long 1742 ## DW_AT_name - .asciz "\354" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d15:0x7 DW_TAG_enumerator - .long 1761 ## DW_AT_name - .asciz "\355" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d1c:0x7 DW_TAG_enumerator - .long 1776 ## DW_AT_name - .asciz "\356" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d23:0x7 DW_TAG_enumerator - .long 1795 ## DW_AT_name - .asciz "\357" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d2a:0x7 DW_TAG_enumerator - .long 1814 ## DW_AT_name - .asciz "\360" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d31:0x7 DW_TAG_enumerator - .long 1834 ## DW_AT_name - .asciz "\361" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d38:0x7 DW_TAG_enumerator - .long 1850 ## DW_AT_name - .asciz "\362" ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d3f:0x7 DW_TAG_enumerator - .long 1870 ## DW_AT_name - .asciz "\363" ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 23 ## Abbrev [23] 0x3d47:0x48 DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 413 ## DW_AT_decl_line - .byte 22 ## Abbrev [22] 0x3d4c:0x6 DW_TAG_enumerator - .long 1890 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d52:0x6 DW_TAG_enumerator - .long 1900 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d58:0x6 DW_TAG_enumerator - .long 1913 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d5e:0x6 DW_TAG_enumerator - .long 1926 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d64:0x6 DW_TAG_enumerator - .long 1941 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d6a:0x6 DW_TAG_enumerator - .long 1956 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d70:0x6 DW_TAG_enumerator - .long 1971 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d76:0x6 DW_TAG_enumerator - .long 1983 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d7c:0x6 DW_TAG_enumerator - .long 1996 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d82:0x6 DW_TAG_enumerator - .long 2006 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 22 ## Abbrev [22] 0x3d88:0x6 DW_TAG_enumerator - .long 2020 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3d8f:0xb DW_TAG_typedef - .long 15770 ## DW_AT_type - .long 2035 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x3d9a:0x7 DW_TAG_base_type - .long 2046 ## DW_AT_name - .byte 4 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3da1:0x5 DW_TAG_pointer_type - .long 15782 ## DW_AT_type - .byte 25 ## Abbrev [25] 0x3da6:0x7 DW_TAG_base_type - .long 2053 ## DW_AT_name - .byte 6 ## DW_AT_encoding - .byte 1 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3dad:0x5 DW_TAG_pointer_type - .long 15794 ## DW_AT_type - .byte 27 ## Abbrev [27] 0x3db2:0x6b DW_TAG_union_type - .long 2058 ## DW_AT_name - .byte 208 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 220 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3dba:0xe DW_TAG_member - .long 2066 ## DW_AT_name - .long 15901 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 221 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3dc8:0xe DW_TAG_member - .long 2115 ## DW_AT_name - .long 15986 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 222 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3dd6:0xe DW_TAG_member - .long 2157 ## DW_AT_name - .long 16178 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 223 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3de4:0xe DW_TAG_member - .long 3538 ## DW_AT_name - .long 19169 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 224 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3df2:0xe DW_TAG_member - .long 3878 ## DW_AT_name - .long 16298 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 225 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3e00:0xe DW_TAG_member - .long 2304 ## DW_AT_name - .long 19480 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 226 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3e0e:0xe DW_TAG_member - .long 3880 ## DW_AT_name - .long 16711 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 227 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3e1d:0xb DW_TAG_typedef - .long 15912 ## DW_AT_type - .long 2069 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 75 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x3e28:0x33 DW_TAG_structure_type - .long 2069 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 88 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3e30:0xe DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x3e3e:0xe DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x3e4c:0xe DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3e5b:0x5 DW_TAG_pointer_type - .long 15901 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3e60:0xb DW_TAG_typedef - .long 15979 ## DW_AT_type - .long 2086 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 35 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x3e6b:0x7 DW_TAG_base_type - .long 2094 ## DW_AT_name - .byte 8 ## DW_AT_encoding - .byte 1 ## DW_AT_byte_size - .byte 30 ## Abbrev [30] 0x3e72:0x97 DW_TAG_structure_type - .long 2118 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 328 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x3e7b:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 329 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x3e8a:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 329 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x3e99:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 329 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x3ea8:0xf DW_TAG_member - .long 2126 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 330 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x3eb7:0xf DW_TAG_member - .long 2132 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 331 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 11 - .byte 31 ## Abbrev [31] 0x3ec6:0xf DW_TAG_member - .long 2139 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 332 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 31 ## Abbrev [31] 0x3ed5:0xf DW_TAG_member - .long 2157 ## DW_AT_name - .long 16100 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 336 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 32 ## Abbrev [32] 0x3ee4:0x24 DW_TAG_union_type - .byte 8 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 333 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x3ee9:0xf DW_TAG_member - .long 2159 ## DW_AT_name - .long 16144 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 334 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x3ef8:0xf DW_TAG_member - .long 2207 ## DW_AT_name - .long 16173 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 335 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 25 ## Abbrev [25] 0x3f09:0x7 DW_TAG_base_type - .long 2144 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 4 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x3f10:0xb DW_TAG_typedef - .long 16155 ## DW_AT_type - .long 2166 ## DW_AT_name - .byte 9 ## DW_AT_decl_file - .byte 30 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3f1b:0xb DW_TAG_typedef - .long 16166 ## DW_AT_type - .long 2173 ## DW_AT_name - .byte 8 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x3f26:0x7 DW_TAG_base_type - .long 2189 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3f2d:0x5 DW_TAG_pointer_type - .long 15986 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x3f32:0x73 DW_TAG_structure_type - .long 2213 ## DW_AT_name - .byte 40 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 371 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x3f3b:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 372 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x3f4a:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 372 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x3f59:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 372 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x3f68:0xf DW_TAG_member - .long 2219 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 373 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x3f77:0xf DW_TAG_member - .long 2225 ## DW_AT_name - .long 16293 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 374 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x3f86:0xf DW_TAG_member - .long 3496 ## DW_AT_name - .long 16144 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 375 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x3f95:0xf DW_TAG_member - .long 3532 ## DW_AT_name - .long 16567 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 376 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3fa5:0x5 DW_TAG_pointer_type - .long 16298 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x3faa:0xcd DW_TAG_structure_type - .long 2235 ## DW_AT_name - .byte 88 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 581 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x3fb3:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 582 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x3fc2:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 582 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x3fd1:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 582 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x3fe0:0xf DW_TAG_member - .long 2241 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 583 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x3fef:0xf DW_TAG_member - .long 2247 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 584 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 11 - .byte 31 ## Abbrev [31] 0x3ffe:0xf DW_TAG_member - .long 2257 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 585 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 31 ## Abbrev [31] 0x400d:0xf DW_TAG_member - .long 2267 ## DW_AT_name - .long 16503 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 586 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x401c:0xf DW_TAG_member - .long 3427 ## DW_AT_name - .long 18912 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 587 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x402b:0xf DW_TAG_member - .long 3461 ## DW_AT_name - .long 18912 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 588 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 31 ## Abbrev [31] 0x403a:0xf DW_TAG_member - .long 2225 ## DW_AT_name - .long 16293 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 589 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 40 - .byte 31 ## Abbrev [31] 0x4049:0xf DW_TAG_member - .long 3136 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 590 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 48 - .byte 31 ## Abbrev [31] 0x4058:0xf DW_TAG_member - .long 3470 ## DW_AT_name - .long 19072 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 592 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 56 - .byte 31 ## Abbrev [31] 0x4067:0xf DW_TAG_member - .long 3526 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 595 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 80 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4077:0x5 DW_TAG_pointer_type - .long 16508 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x407c:0xb DW_TAG_typedef - .long 16519 ## DW_AT_type - .long 2273 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 118 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x4087:0x25 DW_TAG_structure_type - .long 2280 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 116 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x408f:0xe DW_TAG_member - .long 2291 ## DW_AT_name - .long 16556 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 117 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x409d:0xe DW_TAG_member - .long 3423 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 117 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x40ac:0xb DW_TAG_typedef - .long 16567 ## DW_AT_type - .long 2298 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 110 ## DW_AT_decl_line - .byte 27 ## Abbrev [27] 0x40b7:0x5d DW_TAG_union_type - .long 2298 ## DW_AT_name - .byte 8 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 103 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x40bf:0xe DW_TAG_member - .long 2066 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 104 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x40cd:0xe DW_TAG_member - .long 2304 ## DW_AT_name - .long 14771 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 105 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x40db:0xe DW_TAG_member - .long 2306 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 106 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x40e9:0xe DW_TAG_member - .long 2312 ## DW_AT_name - .long 16667 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 107 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x40f7:0xe DW_TAG_member - .long 3393 ## DW_AT_name - .long 18894 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 108 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x4105:0xe DW_TAG_member - .long 3421 ## DW_AT_name - .long 15759 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 109 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 25 ## Abbrev [25] 0x4114:0x7 DW_TAG_base_type - .long 2308 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 4 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x411b:0xb DW_TAG_typedef - .long 16678 ## DW_AT_type - .long 2314 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 105 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x4126:0x5 DW_TAG_pointer_type - .long 16683 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x412b:0xc DW_TAG_subroutine_type - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x4131:0x5 DW_TAG_formal_parameter - .long 16695 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4137:0x5 DW_TAG_pointer_type - .long 16700 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x413c:0xb DW_TAG_typedef - .long 16711 ## DW_AT_type - .long 2328 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 56 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x4147:0x171 DW_TAG_structure_type - .long 2328 ## DW_AT_name - .byte 208 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 179 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x414f:0xe DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 180 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x415d:0xe DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 180 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x416b:0xe DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 180 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 28 ## Abbrev [28] 0x4179:0xe DW_TAG_member - .long 2338 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 181 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 28 ## Abbrev [28] 0x4187:0xe DW_TAG_member - .long 2345 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 182 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 28 ## Abbrev [28] 0x4195:0xe DW_TAG_member - .long 2355 ## DW_AT_name - .long 17092 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 28 ## Abbrev [28] 0x41a3:0xe DW_TAG_member - .long 2878 ## DW_AT_name - .long 18061 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 184 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 28 ## Abbrev [28] 0x41b1:0xe DW_TAG_member - .long 3067 ## DW_AT_name - .long 18344 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 185 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 40 - .byte 28 ## Abbrev [28] 0x41bf:0xe DW_TAG_member - .long 3073 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 186 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 48 - .byte 28 ## Abbrev [28] 0x41cd:0xe DW_TAG_member - .long 3084 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 187 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 56 - .byte 28 ## Abbrev [28] 0x41db:0xe DW_TAG_member - .long 3090 ## DW_AT_name - .long 18450 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 188 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 64 - .byte 28 ## Abbrev [28] 0x41e9:0xe DW_TAG_member - .long 3136 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 189 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 72 - .byte 28 ## Abbrev [28] 0x41f7:0xe DW_TAG_member - .long 2621 ## DW_AT_name - .long 17872 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 190 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 80 - .byte 28 ## Abbrev [28] 0x4205:0xe DW_TAG_member - .long 3143 ## DW_AT_name - .long 18584 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 191 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 88 - .byte 28 ## Abbrev [28] 0x4213:0xe DW_TAG_member - .long 3164 ## DW_AT_name - .long 18066 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 192 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 96 - .byte 28 ## Abbrev [28] 0x4221:0xf DW_TAG_member - .long 3172 ## DW_AT_name - .long 18595 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 193 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\250\001" - .byte 28 ## Abbrev [28] 0x4230:0xf DW_TAG_member - .long 3316 ## DW_AT_name - .long 17754 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 194 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\260\001" - .byte 28 ## Abbrev [28] 0x423f:0xf DW_TAG_member - .long 3324 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 195 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\270\001" - .byte 28 ## Abbrev [28] 0x424e:0xf DW_TAG_member - .long 3334 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 196 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\274\001" - .byte 28 ## Abbrev [28] 0x425d:0xf DW_TAG_member - .long 3348 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 197 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\300\001" - .byte 28 ## Abbrev [28] 0x426c:0xf DW_TAG_member - .long 3358 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 198 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\304\001" - .byte 28 ## Abbrev [28] 0x427b:0xf DW_TAG_member - .long 3362 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 199 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\306\001" - .byte 28 ## Abbrev [28] 0x428a:0xf DW_TAG_member - .long 3370 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 204 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\310\001" - .byte 28 ## Abbrev [28] 0x4299:0xf DW_TAG_member - .long 3379 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 205 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\311\001" - .byte 28 ## Abbrev [28] 0x42a8:0xf DW_TAG_member - .long 3389 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 210 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\312\001" - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x42b8:0xc DW_TAG_typedef - .long 16503 ## DW_AT_type - .long 2349 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 319 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x42c4:0x5 DW_TAG_pointer_type - .long 17097 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x42c9:0xb DW_TAG_typedef - .long 17108 ## DW_AT_type - .long 2359 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 172 ## DW_AT_decl_line - .byte 36 ## Abbrev [36] 0x42d4:0x250 DW_TAG_structure_type - .long 2359 ## DW_AT_name - .short 2304 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 125 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x42dd:0xe DW_TAG_member - .long 2372 ## DW_AT_name - .long 17700 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 126 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x42eb:0xe DW_TAG_member - .long 2391 ## DW_AT_name - .long 14771 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 127 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x42f9:0xe DW_TAG_member - .long 2394 ## DW_AT_name - .long 17743 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 28 ## Abbrev [28] 0x4307:0xe DW_TAG_member - .long 2430 ## DW_AT_name - .long 17743 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 129 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 28 ## Abbrev [28] 0x4315:0xe DW_TAG_member - .long 2437 ## DW_AT_name - .long 17772 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 130 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 28 ## Abbrev [28] 0x4323:0xe DW_TAG_member - .long 2454 ## DW_AT_name - .long 17772 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 131 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 40 - .byte 28 ## Abbrev [28] 0x4331:0xe DW_TAG_member - .long 2465 ## DW_AT_name - .long 17783 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 132 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 48 - .byte 28 ## Abbrev [28] 0x433f:0xe DW_TAG_member - .long 2492 ## DW_AT_name - .long 16508 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 133 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 64 - .byte 28 ## Abbrev [28] 0x434d:0xe DW_TAG_member - .long 2503 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 134 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 80 - .byte 28 ## Abbrev [28] 0x435b:0xe DW_TAG_member - .long 2508 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 135 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 84 - .byte 28 ## Abbrev [28] 0x4369:0xe DW_TAG_member - .long 2521 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 136 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 85 - .byte 28 ## Abbrev [28] 0x4377:0xe DW_TAG_member - .long 2529 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 137 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 86 - .byte 28 ## Abbrev [28] 0x4385:0xe DW_TAG_member - .long 2536 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 138 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 87 - .byte 28 ## Abbrev [28] 0x4393:0xe DW_TAG_member - .long 2546 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 139 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 88 - .byte 28 ## Abbrev [28] 0x43a1:0xe DW_TAG_member - .long 2552 ## DW_AT_name - .long 17867 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 140 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 96 - .byte 28 ## Abbrev [28] 0x43af:0xe DW_TAG_member - .long 2560 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 141 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 104 - .byte 28 ## Abbrev [28] 0x43bd:0xe DW_TAG_member - .long 2567 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 142 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 112 - .byte 28 ## Abbrev [28] 0x43cb:0xe DW_TAG_member - .long 2572 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 143 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 120 - .byte 28 ## Abbrev [28] 0x43d9:0xf DW_TAG_member - .long 2582 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 144 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\200\001" - .byte 28 ## Abbrev [28] 0x43e8:0xf DW_TAG_member - .long 2587 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 145 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\210\001" - .byte 28 ## Abbrev [28] 0x43f7:0xf DW_TAG_member - .long 2597 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 146 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\220\001" - .byte 28 ## Abbrev [28] 0x4406:0xf DW_TAG_member - .long 2605 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 147 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\230\001" - .byte 28 ## Abbrev [28] 0x4415:0xf DW_TAG_member - .long 2613 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\240\001" - .byte 28 ## Abbrev [28] 0x4424:0xf DW_TAG_member - .long 2621 ## DW_AT_name - .long 17872 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 149 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\250\001" - .byte 28 ## Abbrev [28] 0x4433:0xf DW_TAG_member - .long 2627 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 150 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\260\001" - .byte 28 ## Abbrev [28] 0x4442:0xf DW_TAG_member - .long 2636 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 151 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\264\001" - .byte 28 ## Abbrev [28] 0x4451:0xf DW_TAG_member - .long 2644 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 152 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\270\001" - .byte 28 ## Abbrev [28] 0x4460:0xf DW_TAG_member - .long 2654 ## DW_AT_name - .long 16667 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 153 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\300\001" - .byte 28 ## Abbrev [28] 0x446f:0xf DW_TAG_member - .long 2660 ## DW_AT_name - .long 17872 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 154 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\310\001" - .byte 28 ## Abbrev [28] 0x447e:0xf DW_TAG_member - .long 2671 ## DW_AT_name - .long 17877 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\320\001" - .byte 28 ## Abbrev [28] 0x448d:0xf DW_TAG_member - .long 2679 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 156 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\330\001" - .byte 28 ## Abbrev [28] 0x449c:0xf DW_TAG_member - .long 2689 ## DW_AT_name - .long 17887 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 157 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\340\001" - .byte 28 ## Abbrev [28] 0x44ab:0xf DW_TAG_member - .long 2696 ## DW_AT_name - .long 17899 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 158 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\240\003" - .byte 28 ## Abbrev [28] 0x44ba:0xf DW_TAG_member - .long 2699 ## DW_AT_name - .long 17911 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 159 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\350\003" - .byte 28 ## Abbrev [28] 0x44c9:0xf DW_TAG_member - .long 2708 ## DW_AT_name - .long 17929 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 161 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\270\n" - .byte 28 ## Abbrev [28] 0x44d8:0xf DW_TAG_member - .long 2730 ## DW_AT_name - .long 17951 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 162 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\300\n" - .byte 28 ## Abbrev [28] 0x44e7:0xf DW_TAG_member - .long 2751 ## DW_AT_name - .long 17982 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 163 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\340\021" - .byte 28 ## Abbrev [28] 0x44f6:0xf DW_TAG_member - .long 2781 ## DW_AT_name - .long 17993 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 164 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\350\021" - .byte 28 ## Abbrev [28] 0x4505:0xf DW_TAG_member - .long 2815 ## DW_AT_name - .long 18032 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 165 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\360\021" - .byte 28 ## Abbrev [28] 0x4514:0xf DW_TAG_member - .long 2859 ## DW_AT_name - .long 14771 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 166 ## DW_AT_decl_line - .byte 3 ## DW_AT_data_member_location - .byte 35 - .ascii "\370\021" - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x4524:0xb DW_TAG_typedef - .long 17711 ## DW_AT_type - .long 2381 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 124 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x452f:0x5 DW_TAG_pointer_type - .long 17716 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x4534:0x1b DW_TAG_subroutine_type - .long 14771 ## DW_AT_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x453a:0x5 DW_TAG_formal_parameter - .long 14771 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x453f:0x5 DW_TAG_formal_parameter - .long 14771 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x4544:0x5 DW_TAG_formal_parameter - .long 16144 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x4549:0x5 DW_TAG_formal_parameter - .long 16144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x454f:0xb DW_TAG_typedef - .long 17754 ## DW_AT_type - .long 2405 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 27 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x455a:0xb DW_TAG_typedef - .long 17765 ## DW_AT_type - .long 2411 ## DW_AT_name - .byte 10 ## DW_AT_decl_file - .byte 51 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x4565:0x7 DW_TAG_base_type - .long 2421 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x456c:0xb DW_TAG_typedef - .long 16144 ## DW_AT_type - .long 2447 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 26 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x4577:0xb DW_TAG_typedef - .long 17794 ## DW_AT_type - .long 2470 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 62 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x4582:0x33 DW_TAG_structure_type - .long 2470 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 58 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x458a:0xe DW_TAG_member - .long 2139 ## DW_AT_name - .long 17845 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 59 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x4598:0xe DW_TAG_member - .long 2482 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 60 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x45a6:0xe DW_TAG_member - .long 2487 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 61 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x45b5:0x5 DW_TAG_pointer_type - .long 17850 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45ba:0x5 DW_TAG_pointer_type - .long 17855 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x45bf:0xc DW_TAG_typedef - .long 15986 ## DW_AT_type - .long 2118 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 337 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x45cb:0x5 DW_TAG_pointer_type - .long 15963 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45d0:0x5 DW_TAG_pointer_type - .long 16711 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45d5:0x5 DW_TAG_pointer_type - .long 17882 ## DW_AT_type - .byte 37 ## Abbrev [37] 0x45da:0x5 DW_TAG_const_type - .long 15759 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x45df:0xc DW_TAG_array_type - .long 17850 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x45e4:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 24 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x45eb:0xc DW_TAG_array_type - .long 16293 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x45f0:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 9 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x45f7:0x12 DW_TAG_array_type - .long 17850 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x45fc:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 53 ## DW_AT_count - .byte 18 ## Abbrev [18] 0x4602:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 2 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4609:0x5 DW_TAG_pointer_type - .long 17934 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x460e:0xb DW_TAG_typedef - .long 17945 ## DW_AT_type - .long 2719 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 120 ## DW_AT_decl_line - .byte 38 ## Abbrev [38] 0x4619:0x6 DW_TAG_structure_type - .long 2719 ## DW_AT_name - .byte 1 ## DW_AT_declaration - .byte 17 ## Abbrev [17] 0x461f:0xc DW_TAG_array_type - .long 17963 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x4624:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 116 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x462b:0xc DW_TAG_typedef - .long 17975 ## DW_AT_type - .long 2739 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 618 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x4637:0x5 DW_TAG_pointer_type - .long 17980 ## DW_AT_type - .byte 39 ## Abbrev [39] 0x463c:0x2 DW_TAG_subroutine_type - .byte 1 ## DW_AT_prototyped - .byte 24 ## Abbrev [24] 0x463e:0xb DW_TAG_typedef - .long 17975 ## DW_AT_type - .long 2766 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x4649:0xb DW_TAG_typedef - .long 18004 ## DW_AT_type - .long 2798 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 127 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x4654:0x5 DW_TAG_pointer_type - .long 18009 ## DW_AT_type - .byte 40 ## Abbrev [40] 0x4659:0xd DW_TAG_subroutine_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x465b:0x5 DW_TAG_formal_parameter - .long 18022 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x4660:0x5 DW_TAG_formal_parameter - .long 16144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4666:0x5 DW_TAG_pointer_type - .long 18027 ## DW_AT_type - .byte 37 ## Abbrev [37] 0x466b:0x5 DW_TAG_const_type - .long 15782 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x4670:0xb DW_TAG_typedef - .long 18043 ## DW_AT_type - .long 2837 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 129 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x467b:0x5 DW_TAG_pointer_type - .long 18048 ## DW_AT_type - .byte 40 ## Abbrev [40] 0x4680:0xd DW_TAG_subroutine_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x4682:0x5 DW_TAG_formal_parameter - .long 18022 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x4687:0x5 DW_TAG_formal_parameter - .long 18022 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x468d:0x5 DW_TAG_pointer_type - .long 18066 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x4692:0xb DW_TAG_typedef - .long 18077 ## DW_AT_type - .long 2881 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 94 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x469d:0x106 DW_TAG_structure_type - .long 2881 ## DW_AT_name - .byte 72 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 74 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x46a5:0xe DW_TAG_member - .long 2890 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 75 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x46b3:0xe DW_TAG_member - .long 2345 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 76 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x46c1:0xe DW_TAG_member - .long 2895 ## DW_AT_name - .long 18339 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 28 ## Abbrev [28] 0x46cf:0xe DW_TAG_member - .long 2078 ## DW_AT_name - .long 18339 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 28 ## Abbrev [28] 0x46dd:0xe DW_TAG_member - .long 2157 ## DW_AT_name - .long 18155 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 88 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 41 ## Abbrev [41] 0x46eb:0x71 DW_TAG_union_type - .byte 24 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 78 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x46ef:0xe DW_TAG_member - .long 2904 ## DW_AT_name - .long 18173 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 82 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 42 ## Abbrev [42] 0x46fd:0x21 DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 79 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x4701:0xe DW_TAG_member - .long 2906 ## DW_AT_name - .long 17080 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 80 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x470f:0xe DW_TAG_member - .long 2911 ## DW_AT_name - .long 18344 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 81 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x471e:0xe DW_TAG_member - .long 2931 ## DW_AT_name - .long 18220 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 87 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 42 ## Abbrev [42] 0x472c:0x2f DW_TAG_structure_type - .byte 24 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 83 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x4730:0xe DW_TAG_member - .long 2933 ## DW_AT_name - .long 18365 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x473e:0xe DW_TAG_member - .long 2989 ## DW_AT_name - .long 17754 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 85 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x474c:0xe DW_TAG_member - .long 3001 ## DW_AT_name - .long 18403 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 86 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x475c:0xe DW_TAG_member - .long 2126 ## DW_AT_name - .long 17754 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 56 - .byte 28 ## Abbrev [28] 0x476a:0xe DW_TAG_member - .long 3005 ## DW_AT_name - .long 18436 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 90 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 64 - .byte 28 ## Abbrev [28] 0x4778:0xe DW_TAG_member - .long 3020 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 91 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 66 - .byte 28 ## Abbrev [28] 0x4786:0xe DW_TAG_member - .long 3046 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 68 - .byte 28 ## Abbrev [28] 0x4794:0xe DW_TAG_member - .long 3057 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 93 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 70 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x47a3:0x5 DW_TAG_pointer_type - .long 18077 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x47a8:0x5 DW_TAG_pointer_type - .long 18349 ## DW_AT_type - .byte 37 ## Abbrev [37] 0x47ad:0x5 DW_TAG_const_type - .long 18354 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x47b2:0xb DW_TAG_typedef - .long 16137 ## DW_AT_type - .long 2919 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 174 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x47bd:0xb DW_TAG_typedef - .long 18376 ## DW_AT_type - .long 2935 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 110 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x47c8:0x5 DW_TAG_pointer_type - .long 18381 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x47cd:0x16 DW_TAG_subroutine_type - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x47d3:0x5 DW_TAG_formal_parameter - .long 16695 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x47d8:0x5 DW_TAG_formal_parameter - .long 16660 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x47dd:0x5 DW_TAG_formal_parameter - .long 18403 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x47e3:0xb DW_TAG_typedef - .long 18414 ## DW_AT_type - .long 2949 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x47ee:0xb DW_TAG_typedef - .long 18425 ## DW_AT_type - .long 2962 ## DW_AT_name - .byte 11 ## DW_AT_decl_file - .byte 30 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x47f9:0xb DW_TAG_typedef - .long 17765 ## DW_AT_type - .long 2971 ## DW_AT_name - .byte 8 ## DW_AT_decl_file - .byte 49 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x4804:0x7 DW_TAG_base_type - .long 3014 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 2 ## DW_AT_byte_size - .byte 25 ## Abbrev [25] 0x480b:0x7 DW_TAG_base_type - .long 3031 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 2 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x4812:0x5 DW_TAG_pointer_type - .long 18455 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4817:0xc DW_TAG_typedef - .long 18467 ## DW_AT_type - .long 3100 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 506 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x4823:0x75 DW_TAG_structure_type - .long 3100 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 12 ## DW_AT_decl_file - .byte 36 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x482b:0xe DW_TAG_member - .long 3106 ## DW_AT_name - .long 16503 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 37 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x4839:0xe DW_TAG_member - .long 3108 ## DW_AT_name - .long 17772 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 38 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 28 ## Abbrev [28] 0x4847:0xe DW_TAG_member - .long 2157 ## DW_AT_name - .long 18517 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 45 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 41 ## Abbrev [41] 0x4855:0x42 DW_TAG_union_type - .byte 16 ## DW_AT_byte_size - .byte 12 ## DW_AT_decl_file - .byte 39 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x4859:0xe DW_TAG_member - .long 3117 ## DW_AT_name - .long 18535 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 43 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 42 ## Abbrev [42] 0x4867:0x21 DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 12 ## DW_AT_decl_file - .byte 40 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x486b:0xe DW_TAG_member - .long 2078 ## DW_AT_name - .long 18450 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 41 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 28 ## Abbrev [28] 0x4879:0xe DW_TAG_member - .long 3122 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 42 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x4888:0xe DW_TAG_member - .long 3130 ## DW_AT_name - .long 16508 ## DW_AT_type - .byte 12 ## DW_AT_decl_file - .byte 44 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4898:0x5 DW_TAG_pointer_type - .long 18589 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x489d:0x6 DW_TAG_structure_type - .long 3152 ## DW_AT_name - .byte 1 ## DW_AT_declaration - .byte 43 ## Abbrev [43] 0x48a3:0x5 DW_TAG_volatile_type - .long 18600 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x48a8:0xc DW_TAG_typedef - .long 18612 ## DW_AT_type - .long 3177 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .short 431 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x48b4:0x5 DW_TAG_pointer_type - .long 18617 ## DW_AT_type - .byte 40 ## Abbrev [40] 0x48b9:0xd DW_TAG_subroutine_type - .byte 1 ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x48bb:0x5 DW_TAG_formal_parameter - .long 16695 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x48c0:0x5 DW_TAG_formal_parameter - .long 18630 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x48c6:0x5 DW_TAG_pointer_type - .long 18635 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x48cb:0xc DW_TAG_typedef - .long 18647 ## DW_AT_type - .long 3186 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .short 427 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x48d7:0xeb DW_TAG_structure_type - .long 3186 ## DW_AT_name - .byte 128 ## DW_AT_byte_size - .byte 5 ## DW_AT_decl_file - .short 451 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x48e0:0xf DW_TAG_member - .long 3196 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 452 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x48ef:0xf DW_TAG_member - .long 3202 ## DW_AT_name - .long 18022 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 453 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x48fe:0xf DW_TAG_member - .long 3207 ## DW_AT_name - .long 18022 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 454 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x490d:0xf DW_TAG_member - .long 3216 ## DW_AT_name - .long 18022 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 455 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x491c:0xf DW_TAG_member - .long 3221 ## DW_AT_name - .long 18022 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 456 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 31 ## Abbrev [31] 0x492b:0xf DW_TAG_member - .long 3228 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 457 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 40 - .byte 31 ## Abbrev [31] 0x493a:0xf DW_TAG_member - .long 3240 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 458 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 44 - .byte 31 ## Abbrev [31] 0x4949:0xf DW_TAG_member - .long 3252 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 459 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 48 - .byte 31 ## Abbrev [31] 0x4958:0xf DW_TAG_member - .long 3268 ## DW_AT_name - .long 15979 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 460 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 52 - .byte 31 ## Abbrev [31] 0x4967:0xf DW_TAG_member - .long 3273 ## DW_AT_name - .long 15979 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 461 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 53 - .byte 31 ## Abbrev [31] 0x4976:0xf DW_TAG_member - .long 3281 ## DW_AT_name - .long 15782 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 462 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 54 - .byte 31 ## Abbrev [31] 0x4985:0xf DW_TAG_member - .long 3290 ## DW_AT_name - .long 15782 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 463 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 55 - .byte 31 ## Abbrev [31] 0x4994:0xf DW_TAG_member - .long 3301 ## DW_AT_name - .long 18882 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 464 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 56 - .byte 31 ## Abbrev [31] 0x49a3:0xf DW_TAG_member - .long 3046 ## DW_AT_name - .long 18436 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 465 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 116 - .byte 31 ## Abbrev [31] 0x49b2:0xf DW_TAG_member - .long 3311 ## DW_AT_name - .long 18339 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 467 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 120 - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x49c2:0xc DW_TAG_array_type - .long 15782 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x49c7:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 60 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x49ce:0xb DW_TAG_typedef - .long 18905 ## DW_AT_type - .long 3395 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 93 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x49d9:0x7 DW_TAG_base_type - .long 3407 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x49e0:0x5 DW_TAG_pointer_type - .long 18917 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x49e5:0xc DW_TAG_typedef - .long 18929 ## DW_AT_type - .long 3432 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 564 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x49f1:0x28 DW_TAG_structure_type - .long 3432 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 561 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x49fa:0xf DW_TAG_member - .long 3437 ## DW_AT_name - .long 16508 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 562 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4a09:0xf DW_TAG_member - .long 3443 ## DW_AT_name - .long 18969 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 563 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x4a19:0xc DW_TAG_typedef - .long 18981 ## DW_AT_type - .long 3449 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 551 ## DW_AT_decl_line - .byte 44 ## Abbrev [44] 0x4a25:0x5b DW_TAG_union_type - .long 3449 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4a2e:0xf DW_TAG_member - .long 3454 ## DW_AT_name - .long 19005 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 549 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 45 ## Abbrev [45] 0x4a3d:0x33 DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 546 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4a42:0xf DW_TAG_member - .long 2291 ## DW_AT_name - .long 16556 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 547 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4a51:0xf DW_TAG_member - .long 3423 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 547 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4a60:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 548 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 0 ## End Of Children Mark - .byte 31 ## Abbrev [31] 0x4a70:0xf DW_TAG_member - .long 3457 ## DW_AT_name - .long 16508 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 550 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x4a80:0xc DW_TAG_typedef - .long 19084 ## DW_AT_type - .long 3481 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 579 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4a8c:0x55 DW_TAG_structure_type - .long 3481 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 573 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4a95:0xf DW_TAG_member - .long 3491 ## DW_AT_name - .long 15777 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 574 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4aa4:0xf DW_TAG_member - .long 3496 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 575 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4ab3:0xf DW_TAG_member - .long 2487 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 576 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 31 ## Abbrev [31] 0x4ac2:0xf DW_TAG_member - .long 3500 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 577 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4ad1:0xf DW_TAG_member - .long 3511 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 578 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 17 - .byte 0 ## End Of Children Mark - .byte 44 ## Abbrev [44] 0x4ae1:0x28 DW_TAG_union_type - .long 3541 ## DW_AT_name - .byte 48 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 530 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4aea:0xf DW_TAG_member - .long 2931 ## DW_AT_name - .long 19209 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 531 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4af9:0xf DW_TAG_member - .long 2904 ## DW_AT_name - .long 19348 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 532 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x4b09:0xc DW_TAG_typedef - .long 19221 ## DW_AT_type - .long 3549 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 520 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4b15:0x73 DW_TAG_structure_type - .long 3549 ## DW_AT_name - .byte 48 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 516 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4b1e:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4b2d:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4b3c:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x4b4b:0xf DW_TAG_member - .long 3558 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x4b5a:0xf DW_TAG_member - .long 3136 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4b69:0xf DW_TAG_member - .long 2312 ## DW_AT_name - .long 16667 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 518 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x4b78:0xf DW_TAG_member - .long 3568 ## DW_AT_name - .long 19336 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 519 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x4b88:0xc DW_TAG_array_type - .long 16508 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x4b8d:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 1 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x4b94:0xc DW_TAG_typedef - .long 19360 ## DW_AT_type - .long 3576 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 527 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4ba0:0x73 DW_TAG_structure_type - .long 3576 ## DW_AT_name - .byte 40 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 523 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4ba9:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4bb8:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4bc7:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x4bd6:0xf DW_TAG_member - .long 3558 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x4be5:0xf DW_TAG_member - .long 3136 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4bf4:0xf DW_TAG_member - .long 2304 ## DW_AT_name - .long 19475 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 525 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x4c03:0xf DW_TAG_member - .long 3871 ## DW_AT_name - .long 20171 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 526 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4c13:0x5 DW_TAG_pointer_type - .long 19480 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x4c18:0x172 DW_TAG_structure_type - .long 3585 ## DW_AT_name - .byte 144 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 475 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4c21:0xf DW_TAG_member - .long 2078 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 476 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4c30:0xf DW_TAG_member - .long 2083 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 476 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4c3f:0xf DW_TAG_member - .long 2108 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 476 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 9 - .byte 31 ## Abbrev [31] 0x4c4e:0xf DW_TAG_member - .long 3591 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 477 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 10 - .byte 31 ## Abbrev [31] 0x4c5d:0xf DW_TAG_member - .long 3601 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 478 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 11 - .byte 31 ## Abbrev [31] 0x4c6c:0xf DW_TAG_member - .long 3611 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 479 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 12 - .byte 31 ## Abbrev [31] 0x4c7b:0xf DW_TAG_member - .long 3624 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 480 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4c8a:0xf DW_TAG_member - .long 3637 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 20 - .byte 31 ## Abbrev [31] 0x4c99:0xf DW_TAG_member - .long 3643 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 31 ## Abbrev [31] 0x4ca8:0xf DW_TAG_member - .long 3652 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 483 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 28 - .byte 31 ## Abbrev [31] 0x4cb7:0xf DW_TAG_member - .long 3665 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 484 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 32 - .byte 31 ## Abbrev [31] 0x4cc6:0xf DW_TAG_member - .long 3671 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 485 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 36 - .byte 31 ## Abbrev [31] 0x4cd5:0xf DW_TAG_member - .long 3240 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 486 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 40 - .byte 31 ## Abbrev [31] 0x4ce4:0xf DW_TAG_member - .long 3252 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 487 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 44 - .byte 31 ## Abbrev [31] 0x4cf3:0xf DW_TAG_member - .long 2933 ## DW_AT_name - .long 16503 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 488 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 48 - .byte 31 ## Abbrev [31] 0x4d02:0xf DW_TAG_member - .long 3683 ## DW_AT_name - .long 19850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 489 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 56 - .byte 31 ## Abbrev [31] 0x4d11:0xf DW_TAG_member - .long 2304 ## DW_AT_name - .long 19855 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 490 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 64 - .byte 31 ## Abbrev [31] 0x4d20:0xf DW_TAG_member - .long 3688 ## DW_AT_name - .long 19860 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 491 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 72 - .byte 31 ## Abbrev [31] 0x4d2f:0xf DW_TAG_member - .long 3697 ## DW_AT_name - .long 19865 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 80 - .byte 31 ## Abbrev [31] 0x4d3e:0xf DW_TAG_member - .long 3753 ## DW_AT_name - .long 19967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 88 - .byte 31 ## Abbrev [31] 0x4d4d:0xf DW_TAG_member - .long 3784 ## DW_AT_name - .long 20069 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 96 - .byte 31 ## Abbrev [31] 0x4d5c:0xf DW_TAG_member - .long 3221 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 495 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 104 - .byte 31 ## Abbrev [31] 0x4d6b:0xf DW_TAG_member - .long 3136 ## DW_AT_name - .long 15963 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 496 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 112 - .byte 31 ## Abbrev [31] 0x4d7a:0xf DW_TAG_member - .long 3790 ## DW_AT_name - .long 20074 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 498 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 120 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4d8a:0x5 DW_TAG_pointer_type - .long 18354 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x4d8f:0x5 DW_TAG_pointer_type - .long 19475 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x4d94:0x5 DW_TAG_pointer_type - .long 16660 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x4d99:0x5 DW_TAG_pointer_type - .long 19870 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4d9e:0xc DW_TAG_typedef - .long 19882 ## DW_AT_type - .long 3705 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 449 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4daa:0x55 DW_TAG_structure_type - .long 3705 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 443 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4db3:0xf DW_TAG_member - .long 3712 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 444 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4dc2:0xf DW_TAG_member - .long 3720 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 445 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4dd1:0xf DW_TAG_member - .long 3729 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 446 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4de0:0xf DW_TAG_member - .long 3737 ## DW_AT_name - .long 16660 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 447 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 20 - .byte 31 ## Abbrev [31] 0x4def:0xf DW_TAG_member - .long 3743 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 448 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 24 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4dff:0x5 DW_TAG_pointer_type - .long 19972 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4e04:0xc DW_TAG_typedef - .long 19984 ## DW_AT_type - .long 3762 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 436 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4e10:0x55 DW_TAG_structure_type - .long 3762 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 430 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4e19:0xf DW_TAG_member - .long 3202 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 431 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4e28:0xf DW_TAG_member - .long 3720 ## DW_AT_name - .long 17850 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 432 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4e37:0xf DW_TAG_member - .long 3743 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 433 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 31 ## Abbrev [31] 0x4e46:0xf DW_TAG_member - .long 3772 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 434 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 17 - .byte 31 ## Abbrev [31] 0x4e55:0xf DW_TAG_member - .long 3780 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 435 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 18 - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4e65:0x5 DW_TAG_pointer_type - .long 19360 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4e6a:0xc DW_TAG_typedef - .long 20086 ## DW_AT_type - .long 3799 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 469 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4e76:0x55 DW_TAG_structure_type - .long 3799 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 463 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4e7f:0xf DW_TAG_member - .long 3812 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 464 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 0 - .byte 31 ## Abbrev [31] 0x4e8e:0xf DW_TAG_member - .long 3823 ## DW_AT_name - .long 15968 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 465 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 1 - .byte 31 ## Abbrev [31] 0x4e9d:0xf DW_TAG_member - .long 3833 ## DW_AT_name - .long 18443 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 466 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 2 - .byte 31 ## Abbrev [31] 0x4eac:0xf DW_TAG_member - .long 3849 ## DW_AT_name - .long 14771 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 467 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 8 - .byte 31 ## Abbrev [31] 0x4ebb:0xf DW_TAG_member - .long 3858 ## DW_AT_name - .long 16667 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 468 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 35 - .byte 16 - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x4ecb:0xc DW_TAG_array_type - .long 18450 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x4ed0:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 1 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x4ed7:0xb DW_TAG_typedef - .long 20194 ## DW_AT_type - .long 3883 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 96 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x4ee2:0x7 DW_TAG_base_type - .long 3896 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x4ee9:0x5 DW_TAG_pointer_type - .long 15759 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x4eee:0x5 DW_TAG_pointer_type - .long 18894 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4ef3:0xc DW_TAG_typedef - .long 14934 ## DW_AT_type - .long 3919 ## DW_AT_name - .byte 3 ## DW_AT_decl_file - .short 379 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x4eff:0x5 DW_TAG_pointer_type - .long 20228 ## DW_AT_type - .byte 37 ## Abbrev [37] 0x4f04:0x5 DW_TAG_const_type - .long 16508 ## DW_AT_type - .byte 46 ## Abbrev [46] 0x4f09:0x33 DW_TAG_subprogram - .quad Lfunc_begin0 ## DW_AT_low_pc - .quad Lfunc_end0 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 20569 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f20:0x9 DW_TAG_formal_parameter -Lset9119 = Ldebug_loc0-Lsection_debug_loc ## DW_AT_location - .long Lset9119 - .long 20584 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f29:0x9 DW_TAG_formal_parameter -Lset9120 = Ldebug_loc1-Lsection_debug_loc ## DW_AT_location - .long Lset9120 - .long 20595 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4f32:0x9 DW_TAG_variable -Lset9121 = Ldebug_loc2-Lsection_debug_loc ## DW_AT_location - .long Lset9121 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 46 ## Abbrev [46] 0x4f3c:0x60 DW_TAG_subprogram - .quad Lfunc_begin1 ## DW_AT_low_pc - .quad Lfunc_end1 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 20380 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f53:0x9 DW_TAG_formal_parameter -Lset9122 = Ldebug_loc3-Lsection_debug_loc ## DW_AT_location - .long Lset9122 - .long 20395 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f5c:0x9 DW_TAG_formal_parameter -Lset9123 = Ldebug_loc4-Lsection_debug_loc ## DW_AT_location - .long Lset9123 - .long 20406 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f65:0x9 DW_TAG_formal_parameter -Lset9124 = Ldebug_loc5-Lsection_debug_loc ## DW_AT_location - .long Lset9124 - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4f6e:0x9 DW_TAG_variable -Lset9125 = Ldebug_loc6-Lsection_debug_loc ## DW_AT_location - .long Lset9125 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x4f77:0x24 DW_TAG_lexical_block - .quad Ltmp45 ## DW_AT_low_pc - .quad Ltmp57 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x4f88:0x9 DW_TAG_variable -Lset9126 = Ldebug_loc7-Lsection_debug_loc ## DW_AT_location - .long Lset9126 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4f91:0x9 DW_TAG_variable -Lset9127 = Ldebug_loc8-Lsection_debug_loc ## DW_AT_location - .long Lset9127 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 47 ## Abbrev [47] 0x4f9c:0x54 DW_TAG_subprogram - .long 3941 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 48 ## Abbrev [48] 0x4fab:0xb DW_TAG_formal_parameter - .long 3956 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4fb6:0xb DW_TAG_formal_parameter - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4fc1:0xb DW_TAG_formal_parameter - .long 3960 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x4fcc:0xb DW_TAG_variable - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 100 ## DW_AT_decl_line - .long 16508 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x4fd7:0x18 DW_TAG_lexical_block - .byte 49 ## Abbrev [49] 0x4fd8:0xb DW_TAG_variable - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 103 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x4fe3:0xb DW_TAG_variable - .long 2312 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 104 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 46 ## Abbrev [46] 0x4ff0:0x69 DW_TAG_subprogram - .quad Lfunc_begin2 ## DW_AT_low_pc - .quad Lfunc_end2 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 21543 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5007:0x9 DW_TAG_formal_parameter -Lset9128 = Ldebug_loc9-Lsection_debug_loc ## DW_AT_location - .long Lset9128 - .long 21558 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5010:0x9 DW_TAG_formal_parameter -Lset9129 = Ldebug_loc10-Lsection_debug_loc ## DW_AT_location - .long Lset9129 - .long 21569 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5019:0x3f DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9130 = Ldebug_ranges0-Ldebug_range ## DW_AT_ranges - .long Lset9130 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 14 ## Abbrev [14] 0x5024:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x502a:0x9 DW_TAG_variable -Lset9131 = Ldebug_loc11-Lsection_debug_loc ## DW_AT_location - .long Lset9131 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5033:0x24 DW_TAG_lexical_block - .quad Ltmp79 ## DW_AT_low_pc - .quad Ltmp87 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5044:0x9 DW_TAG_variable -Lset9132 = Ldebug_loc12-Lsection_debug_loc ## DW_AT_location - .long Lset9132 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x504d:0x9 DW_TAG_variable -Lset9133 = Ldebug_loc13-Lsection_debug_loc ## DW_AT_location - .long Lset9133 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 47 ## Abbrev [47] 0x5059:0x31 DW_TAG_subprogram - .long 3926 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 48 ## Abbrev [48] 0x5068:0xb DW_TAG_formal_parameter - .long 3956 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x5073:0xb DW_TAG_formal_parameter - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x507e:0xb DW_TAG_variable - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 78 ## DW_AT_decl_line - .long 16508 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 51 ## Abbrev [51] 0x508a:0xc5 DW_TAG_subprogram - .quad Lfunc_begin3 ## DW_AT_low_pc - .quad Lfunc_end3 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 3981 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 52 ## Abbrev [52] 0x50aa:0xf DW_TAG_formal_parameter -Lset9134 = Ldebug_loc14-Lsection_debug_loc ## DW_AT_location - .long Lset9134 - .long 3956 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x50b9:0xf DW_TAG_formal_parameter -Lset9135 = Ldebug_loc15-Lsection_debug_loc ## DW_AT_location - .long Lset9135 - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x50c8:0xf DW_TAG_formal_parameter -Lset9136 = Ldebug_loc16-Lsection_debug_loc ## DW_AT_location - .long Lset9136 - .long 4970 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x50d7:0xf DW_TAG_formal_parameter -Lset9137 = Ldebug_loc17-Lsection_debug_loc ## DW_AT_location - .long Lset9137 - .long 4975 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 149 ## DW_AT_decl_line - .long 19860 ## DW_AT_type - .byte 13 ## Abbrev [13] 0x50e6:0x39 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9138 = Ldebug_ranges1-Ldebug_range ## DW_AT_ranges - .long Lset9138 - .byte 1 ## DW_AT_call_file - .byte 151 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x50f1:0x9 DW_TAG_variable -Lset9139 = Ldebug_loc18-Lsection_debug_loc ## DW_AT_location - .long Lset9139 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x50fa:0x24 DW_TAG_lexical_block - .quad Ltmp113 ## DW_AT_low_pc - .quad Ltmp127 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x510b:0x9 DW_TAG_variable -Lset9140 = Ldebug_loc19-Lsection_debug_loc ## DW_AT_location - .long Lset9140 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5114:0x9 DW_TAG_variable -Lset9141 = Ldebug_loc20-Lsection_debug_loc ## DW_AT_location - .long Lset9141 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x511f:0x2f DW_TAG_lexical_block -Lset9142 = Ldebug_ranges3-Ldebug_range ## DW_AT_ranges - .long Lset9142 - .byte 49 ## Abbrev [49] 0x5124:0xb DW_TAG_variable - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 152 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 13 ## Abbrev [13] 0x512f:0x1e DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9143 = Ldebug_ranges2-Ldebug_range ## DW_AT_ranges - .long Lset9143 - .byte 1 ## DW_AT_call_file - .byte 153 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x513a:0x9 DW_TAG_formal_parameter -Lset9144 = Ldebug_loc21-Lsection_debug_loc ## DW_AT_location - .long Lset9144 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5143:0x9 DW_TAG_variable -Lset9145 = Ldebug_loc22-Lsection_debug_loc ## DW_AT_location - .long Lset9145 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 53 ## Abbrev [53] 0x514f:0xa7 DW_TAG_subprogram - .quad Lfunc_begin4 ## DW_AT_low_pc - .quad Lfunc_end4 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 3995 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 52 ## Abbrev [52] 0x516b:0xf DW_TAG_formal_parameter -Lset9146 = Ldebug_loc23-Lsection_debug_loc ## DW_AT_location - .long Lset9146 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x517a:0xf DW_TAG_formal_parameter -Lset9147 = Ldebug_loc24-Lsection_debug_loc ## DW_AT_location - .long Lset9147 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5189:0xf DW_TAG_formal_parameter -Lset9148 = Ldebug_loc25-Lsection_debug_loc ## DW_AT_location - .long Lset9148 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5198:0xf DW_TAG_formal_parameter -Lset9149 = Ldebug_loc26-Lsection_debug_loc ## DW_AT_location - .long Lset9149 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x51a7:0xf DW_TAG_formal_parameter -Lset9150 = Ldebug_loc27-Lsection_debug_loc ## DW_AT_location - .long Lset9150 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 174 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 54 ## Abbrev [54] 0x51b6:0xf DW_TAG_variable -Lset9151 = Ldebug_loc29-Lsection_debug_loc ## DW_AT_location - .long Lset9151 - .long 4996 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 175 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 54 ## Abbrev [54] 0x51c5:0xf DW_TAG_variable -Lset9152 = Ldebug_loc30-Lsection_debug_loc ## DW_AT_location - .long Lset9152 - .long 5001 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 176 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x51d4:0x21 DW_TAG_lexical_block - .quad Ltmp191 ## DW_AT_low_pc - .quad Ltmp194 ## DW_AT_high_pc - .byte 54 ## Abbrev [54] 0x51e5:0xf DW_TAG_variable -Lset9153 = Ldebug_loc28-Lsection_debug_loc ## DW_AT_location - .long Lset9153 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 200 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 53 ## Abbrev [53] 0x51f6:0xa1 DW_TAG_subprogram - .quad Lfunc_begin5 ## DW_AT_low_pc - .quad Lfunc_end5 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4010 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 216 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 52 ## Abbrev [52] 0x5212:0xf DW_TAG_formal_parameter -Lset9154 = Ldebug_loc31-Lsection_debug_loc ## DW_AT_location - .long Lset9154 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 216 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5221:0xf DW_TAG_formal_parameter -Lset9155 = Ldebug_loc32-Lsection_debug_loc ## DW_AT_location - .long Lset9155 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 216 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5230:0xf DW_TAG_formal_parameter -Lset9156 = Ldebug_loc33-Lsection_debug_loc ## DW_AT_location - .long Lset9156 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 216 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x523f:0xf DW_TAG_formal_parameter -Lset9157 = Ldebug_loc34-Lsection_debug_loc ## DW_AT_location - .long Lset9157 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 217 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x524e:0xf DW_TAG_formal_parameter -Lset9158 = Ldebug_loc35-Lsection_debug_loc ## DW_AT_location - .long Lset9158 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 217 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 54 ## Abbrev [54] 0x525d:0xf DW_TAG_variable -Lset9159 = Ldebug_loc36-Lsection_debug_loc ## DW_AT_location - .long Lset9159 - .long 4996 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 218 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x526c:0x2a DW_TAG_lexical_block -Lset9160 = Ldebug_ranges5-Ldebug_range ## DW_AT_ranges - .long Lset9160 - .byte 54 ## Abbrev [54] 0x5271:0xf DW_TAG_variable -Lset9161 = Ldebug_loc38-Lsection_debug_loc ## DW_AT_location - .long Lset9161 - .long 5001 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 220 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5280:0x15 DW_TAG_lexical_block -Lset9162 = Ldebug_ranges4-Ldebug_range ## DW_AT_ranges - .long Lset9162 - .byte 54 ## Abbrev [54] 0x5285:0xf DW_TAG_variable -Lset9163 = Ldebug_loc37-Lsection_debug_loc ## DW_AT_location - .long Lset9163 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 222 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x5297:0x190 DW_TAG_subprogram - .quad Lfunc_begin6 ## DW_AT_low_pc - .quad Lfunc_end6 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4025 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x52b4:0x10 DW_TAG_formal_parameter -Lset9164 = Ldebug_loc39-Lsection_debug_loc ## DW_AT_location - .long Lset9164 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x52c4:0x10 DW_TAG_formal_parameter -Lset9165 = Ldebug_loc40-Lsection_debug_loc ## DW_AT_location - .long Lset9165 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x52d4:0x10 DW_TAG_formal_parameter -Lset9166 = Ldebug_loc41-Lsection_debug_loc ## DW_AT_location - .long Lset9166 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x52e4:0x10 DW_TAG_formal_parameter -Lset9167 = Ldebug_loc42-Lsection_debug_loc ## DW_AT_location - .long Lset9167 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 481 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x52f4:0x5e DW_TAG_lexical_block -Lset9168 = Ldebug_ranges7-Ldebug_range ## DW_AT_ranges - .long Lset9168 - .byte 5 ## Abbrev [5] 0x52f9:0x10 DW_TAG_variable -Lset9169 = Ldebug_loc48-Lsection_debug_loc ## DW_AT_location - .long Lset9169 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5309:0x26 DW_TAG_lexical_block -Lset9170 = Ldebug_ranges6-Ldebug_range ## DW_AT_ranges - .long Lset9170 - .byte 5 ## Abbrev [5] 0x530e:0x10 DW_TAG_variable -Lset9171 = Ldebug_loc46-Lsection_debug_loc ## DW_AT_location - .long Lset9171 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x531e:0x10 DW_TAG_variable -Lset9172 = Ldebug_loc47-Lsection_debug_loc ## DW_AT_location - .long Lset9172 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x532f:0x22 DW_TAG_lexical_block - .quad Ltmp271 ## DW_AT_low_pc - .quad Ltmp272 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5340:0x10 DW_TAG_variable -Lset9173 = Ldebug_loc45-Lsection_debug_loc ## DW_AT_location - .long Lset9173 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5352:0x5e DW_TAG_lexical_block -Lset9174 = Ldebug_ranges9-Ldebug_range ## DW_AT_ranges - .long Lset9174 - .byte 5 ## Abbrev [5] 0x5357:0x10 DW_TAG_variable -Lset9175 = Ldebug_loc49-Lsection_debug_loc ## DW_AT_location - .long Lset9175 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5367:0x48 DW_TAG_lexical_block -Lset9176 = Ldebug_ranges8-Ldebug_range ## DW_AT_ranges - .long Lset9176 - .byte 5 ## Abbrev [5] 0x536c:0x10 DW_TAG_variable -Lset9177 = Ldebug_loc50-Lsection_debug_loc ## DW_AT_location - .long Lset9177 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x537c:0x10 DW_TAG_variable -Lset9178 = Ldebug_loc51-Lsection_debug_loc ## DW_AT_location - .long Lset9178 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x538c:0x22 DW_TAG_lexical_block - .quad Ltmp279 ## DW_AT_low_pc - .quad Ltmp281 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x539d:0x10 DW_TAG_variable -Lset9179 = Ldebug_loc44-Lsection_debug_loc ## DW_AT_location - .long Lset9179 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x53b0:0x76 DW_TAG_lexical_block - .quad Ltmp283 ## DW_AT_low_pc - .quad Ltmp290 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x53c1:0x10 DW_TAG_variable -Lset9180 = Ldebug_loc52-Lsection_debug_loc ## DW_AT_location - .long Lset9180 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x53d1:0x54 DW_TAG_lexical_block - .quad Ltmp285 ## DW_AT_low_pc - .quad Ltmp290 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x53e2:0x10 DW_TAG_variable -Lset9181 = Ldebug_loc53-Lsection_debug_loc ## DW_AT_location - .long Lset9181 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x53f2:0x10 DW_TAG_variable -Lset9182 = Ldebug_loc54-Lsection_debug_loc ## DW_AT_location - .long Lset9182 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5402:0x22 DW_TAG_lexical_block - .quad Ltmp288 ## DW_AT_low_pc - .quad Ltmp290 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5413:0x10 DW_TAG_variable -Lset9183 = Ldebug_loc43-Lsection_debug_loc ## DW_AT_location - .long Lset9183 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 482 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 47 ## Abbrev [47] 0x5427:0x26 DW_TAG_subprogram - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 48 ## Abbrev [48] 0x5436:0xb DW_TAG_formal_parameter - .long 3956 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x5441:0xb DW_TAG_formal_parameter - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x544d:0x231 DW_TAG_subprogram - .quad Lfunc_begin7 ## DW_AT_low_pc - .quad Lfunc_end7 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4039 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x546a:0x10 DW_TAG_formal_parameter -Lset9184 = Ldebug_loc55-Lsection_debug_loc ## DW_AT_location - .long Lset9184 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x547a:0x10 DW_TAG_formal_parameter -Lset9185 = Ldebug_loc56-Lsection_debug_loc ## DW_AT_location - .long Lset9185 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x548a:0x10 DW_TAG_formal_parameter -Lset9186 = Ldebug_loc57-Lsection_debug_loc ## DW_AT_location - .long Lset9186 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x549a:0x10 DW_TAG_formal_parameter -Lset9187 = Ldebug_loc58-Lsection_debug_loc ## DW_AT_location - .long Lset9187 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x54aa:0x3c DW_TAG_lexical_block -Lset9188 = Ldebug_ranges11-Ldebug_range ## DW_AT_ranges - .long Lset9188 - .byte 5 ## Abbrev [5] 0x54af:0x10 DW_TAG_variable -Lset9189 = Ldebug_loc61-Lsection_debug_loc ## DW_AT_location - .long Lset9189 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x54bf:0x26 DW_TAG_lexical_block -Lset9190 = Ldebug_ranges10-Ldebug_range ## DW_AT_ranges - .long Lset9190 - .byte 5 ## Abbrev [5] 0x54c4:0x10 DW_TAG_variable -Lset9191 = Ldebug_loc59-Lsection_debug_loc ## DW_AT_location - .long Lset9191 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x54d4:0x10 DW_TAG_variable -Lset9192 = Ldebug_loc60-Lsection_debug_loc ## DW_AT_location - .long Lset9192 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x54e6:0xc5 DW_TAG_lexical_block -Lset9193 = Ldebug_ranges16-Ldebug_range ## DW_AT_ranges - .long Lset9193 - .byte 5 ## Abbrev [5] 0x54eb:0x10 DW_TAG_variable -Lset9194 = Ldebug_loc62-Lsection_debug_loc ## DW_AT_location - .long Lset9194 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x54fb:0x63 DW_TAG_lexical_block -Lset9195 = Ldebug_ranges13-Ldebug_range ## DW_AT_ranges - .long Lset9195 - .byte 8 ## Abbrev [8] 0x5500:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x550c:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9196 = Ldebug_ranges12-Ldebug_range ## DW_AT_ranges - .long Lset9196 - .byte 1 ## DW_AT_call_file - .short 493 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5518:0x9 DW_TAG_formal_parameter -Lset9197 = Ldebug_loc70-Lsection_debug_loc ## DW_AT_location - .long Lset9197 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5521:0x9 DW_TAG_variable -Lset9198 = Ldebug_loc69-Lsection_debug_loc ## DW_AT_location - .long Lset9198 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x552b:0x32 DW_TAG_lexical_block - .quad Ltmp380 ## DW_AT_low_pc - .quad Ltmp385 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x553c:0x10 DW_TAG_variable -Lset9199 = Ldebug_loc72-Lsection_debug_loc ## DW_AT_location - .long Lset9199 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x554c:0x10 DW_TAG_variable -Lset9200 = Ldebug_loc73-Lsection_debug_loc ## DW_AT_location - .long Lset9200 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x555e:0x26 DW_TAG_lexical_block -Lset9201 = Ldebug_ranges14-Ldebug_range ## DW_AT_ranges - .long Lset9201 - .byte 5 ## Abbrev [5] 0x5563:0x10 DW_TAG_variable -Lset9202 = Ldebug_loc67-Lsection_debug_loc ## DW_AT_location - .long Lset9202 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5573:0x10 DW_TAG_variable -Lset9203 = Ldebug_loc68-Lsection_debug_loc ## DW_AT_location - .long Lset9203 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5584:0x26 DW_TAG_lexical_block -Lset9204 = Ldebug_ranges15-Ldebug_range ## DW_AT_ranges - .long Lset9204 - .byte 5 ## Abbrev [5] 0x5589:0x10 DW_TAG_variable -Lset9205 = Ldebug_loc63-Lsection_debug_loc ## DW_AT_location - .long Lset9205 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5599:0x10 DW_TAG_variable -Lset9206 = Ldebug_loc66-Lsection_debug_loc ## DW_AT_location - .long Lset9206 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x55ab:0xd2 DW_TAG_lexical_block -Lset9207 = Ldebug_ranges21-Ldebug_range ## DW_AT_ranges - .long Lset9207 - .byte 5 ## Abbrev [5] 0x55b0:0x10 DW_TAG_variable -Lset9208 = Ldebug_loc64-Lsection_debug_loc ## DW_AT_location - .long Lset9208 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x55c0:0x22 DW_TAG_lexical_block -Lset9209 = Ldebug_ranges17-Ldebug_range ## DW_AT_ranges - .long Lset9209 - .byte 5 ## Abbrev [5] 0x55c5:0x10 DW_TAG_variable -Lset9210 = Ldebug_loc65-Lsection_debug_loc ## DW_AT_location - .long Lset9210 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x55d5:0xc DW_TAG_variable - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x55e2:0x9a DW_TAG_lexical_block -Lset9211 = Ldebug_ranges20-Ldebug_range ## DW_AT_ranges - .long Lset9211 - .byte 12 ## Abbrev [12] 0x55e7:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x55f4:0x55 DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset9212 = Ldebug_ranges18-Ldebug_range ## DW_AT_ranges - .long Lset9212 - .byte 1 ## DW_AT_call_file - .short 493 ## DW_AT_call_line - .byte 13 ## Abbrev [13] 0x5600:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9213 = Ldebug_ranges19-Ldebug_range ## DW_AT_ranges - .long Lset9213 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x560b:0x9 DW_TAG_formal_parameter -Lset9214 = Ldebug_loc74-Lsection_debug_loc ## DW_AT_location - .long Lset9214 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x5614:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x561a:0x9 DW_TAG_variable -Lset9215 = Ldebug_loc71-Lsection_debug_loc ## DW_AT_location - .long Lset9215 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5623:0x24 DW_TAG_lexical_block - .quad Ltmp391 ## DW_AT_low_pc - .quad Ltmp398 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5634:0x9 DW_TAG_variable -Lset9216 = Ldebug_loc75-Lsection_debug_loc ## DW_AT_location - .long Lset9216 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x563d:0x9 DW_TAG_variable -Lset9217 = Ldebug_loc76-Lsection_debug_loc ## DW_AT_location - .long Lset9217 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5649:0x32 DW_TAG_lexical_block - .quad Ltmp398 ## DW_AT_low_pc - .quad Ltmp404 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x565a:0x10 DW_TAG_variable -Lset9218 = Ldebug_loc77-Lsection_debug_loc ## DW_AT_location - .long Lset9218 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x566a:0x10 DW_TAG_variable -Lset9219 = Ldebug_loc78-Lsection_debug_loc ## DW_AT_location - .long Lset9219 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x567e:0x44 DW_TAG_subprogram - .long 4053 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 574 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x568d:0xc DW_TAG_formal_parameter - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 574 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x5699:0xc DW_TAG_formal_parameter - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 574 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x56a5:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x56a6:0xc DW_TAG_variable - .long 4061 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 576 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x56b3:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x56b4:0xc DW_TAG_variable - .long 4064 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 583 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x56c2:0x74 DW_TAG_subprogram - .long 4067 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x56d1:0xc DW_TAG_formal_parameter - .long 4076 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 22326 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x56dd:0xc DW_TAG_formal_parameter - .long 4079 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 22326 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x56e9:0xc DW_TAG_variable - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18022 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x56f5:0xc DW_TAG_variable - .long 4082 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 506 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5701:0xc DW_TAG_variable - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 507 ## DW_AT_decl_line - .long 18022 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x570d:0xc DW_TAG_variable - .long 4085 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 508 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x5719:0x1c DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x571a:0xc DW_TAG_variable - .long 4088 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 510 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x5726:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x5727:0xc DW_TAG_variable - .long 3496 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 514 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x5736:0x5 DW_TAG_pointer_type - .long 22331 ## DW_AT_type - .byte 37 ## Abbrev [37] 0x573b:0x5 DW_TAG_const_type - .long 17855 ## DW_AT_type - .byte 56 ## Abbrev [56] 0x5740:0x28 DW_TAG_subprogram - .long 4093 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 537 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x574f:0xc DW_TAG_formal_parameter - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 537 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x575b:0xc DW_TAG_formal_parameter - .long 2312 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 537 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x5768:0x28 DW_TAG_subprogram - .long 4104 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 556 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x5777:0xc DW_TAG_formal_parameter - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 556 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x5783:0xc DW_TAG_formal_parameter - .long 2312 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 556 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 2 ## Abbrev [2] 0x5790:0x135 DW_TAG_subprogram - .quad Lfunc_begin8 ## DW_AT_low_pc - .quad Lfunc_end8 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4115 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x57b1:0x10 DW_TAG_formal_parameter -Lset9220 = Ldebug_loc79-Lsection_debug_loc ## DW_AT_location - .long Lset9220 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x57c1:0x10 DW_TAG_formal_parameter -Lset9221 = Ldebug_loc80-Lsection_debug_loc ## DW_AT_location - .long Lset9221 - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x57d1:0x10 DW_TAG_formal_parameter -Lset9222 = Ldebug_loc81-Lsection_debug_loc ## DW_AT_location - .long Lset9222 - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x57e1:0x10 DW_TAG_variable -Lset9223 = Ldebug_loc86-Lsection_debug_loc ## DW_AT_location - .long Lset9223 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 621 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x57f1:0x58 DW_TAG_inlined_subroutine - .long 22210 ## DW_AT_abstract_origin -Lset9224 = Ldebug_ranges22-Ldebug_range ## DW_AT_ranges - .long Lset9224 - .byte 1 ## DW_AT_call_file - .short 625 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x57fd:0x9 DW_TAG_formal_parameter -Lset9225 = Ldebug_loc84-Lsection_debug_loc ## DW_AT_location - .long Lset9225 - .long 22225 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5806:0x9 DW_TAG_formal_parameter -Lset9226 = Ldebug_loc85-Lsection_debug_loc ## DW_AT_location - .long Lset9226 - .long 22237 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x580f:0x9 DW_TAG_variable -Lset9227 = Ldebug_loc88-Lsection_debug_loc ## DW_AT_location - .long Lset9227 - .long 22249 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5818:0x9 DW_TAG_variable -Lset9228 = Ldebug_loc89-Lsection_debug_loc ## DW_AT_location - .long Lset9228 - .long 22261 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5821:0x9 DW_TAG_variable -Lset9229 = Ldebug_loc90-Lsection_debug_loc ## DW_AT_location - .long Lset9229 - .long 22273 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x582a:0x1e DW_TAG_lexical_block -Lset9230 = Ldebug_ranges24-Ldebug_range ## DW_AT_ranges - .long Lset9230 - .byte 11 ## Abbrev [11] 0x582f:0x9 DW_TAG_variable -Lset9231 = Ldebug_loc91-Lsection_debug_loc ## DW_AT_location - .long Lset9231 - .long 22298 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x5838:0xf DW_TAG_lexical_block -Lset9232 = Ldebug_ranges23-Ldebug_range ## DW_AT_ranges - .long Lset9232 - .byte 11 ## Abbrev [11] 0x583d:0x9 DW_TAG_variable -Lset9233 = Ldebug_loc87-Lsection_debug_loc ## DW_AT_location - .long Lset9233 - .long 22311 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x5849:0x7b DW_TAG_inlined_subroutine - .long 22142 ## DW_AT_abstract_origin -Lset9234 = Ldebug_ranges25-Ldebug_range ## DW_AT_ranges - .long Lset9234 - .byte 1 ## DW_AT_call_file - .short 623 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5855:0x9 DW_TAG_formal_parameter -Lset9235 = Ldebug_loc93-Lsection_debug_loc ## DW_AT_location - .long Lset9235 - .long 22157 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x585e:0x9 DW_TAG_formal_parameter -Lset9236 = Ldebug_loc96-Lsection_debug_loc ## DW_AT_location - .long Lset9236 - .long 22169 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x5867:0x2e DW_TAG_lexical_block -Lset9237 = Ldebug_ranges27-Ldebug_range ## DW_AT_ranges - .long Lset9237 - .byte 11 ## Abbrev [11] 0x586c:0x9 DW_TAG_variable -Lset9238 = Ldebug_loc82-Lsection_debug_loc ## DW_AT_location - .long Lset9238 - .long 22182 ## DW_AT_abstract_origin - .byte 9 ## Abbrev [9] 0x5875:0x1f DW_TAG_inlined_subroutine - .long 22336 ## DW_AT_abstract_origin -Lset9239 = Ldebug_ranges26-Ldebug_range ## DW_AT_ranges - .long Lset9239 - .byte 1 ## DW_AT_call_file - .short 580 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5881:0x9 DW_TAG_formal_parameter -Lset9240 = Ldebug_loc83-Lsection_debug_loc ## DW_AT_location - .long Lset9240 - .long 22351 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x588a:0x9 DW_TAG_formal_parameter -Lset9241 = Ldebug_loc95-Lsection_debug_loc ## DW_AT_location - .long Lset9241 - .long 22363 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5895:0x2e DW_TAG_lexical_block -Lset9242 = Ldebug_ranges29-Ldebug_range ## DW_AT_ranges - .long Lset9242 - .byte 11 ## Abbrev [11] 0x589a:0x9 DW_TAG_variable -Lset9243 = Ldebug_loc92-Lsection_debug_loc ## DW_AT_location - .long Lset9243 - .long 22196 ## DW_AT_abstract_origin - .byte 9 ## Abbrev [9] 0x58a3:0x1f DW_TAG_inlined_subroutine - .long 22376 ## DW_AT_abstract_origin -Lset9244 = Ldebug_ranges28-Ldebug_range ## DW_AT_ranges - .long Lset9244 - .byte 1 ## DW_AT_call_file - .short 589 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x58af:0x9 DW_TAG_formal_parameter -Lset9245 = Ldebug_loc97-Lsection_debug_loc ## DW_AT_location - .long Lset9245 - .long 22391 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x58b8:0x9 DW_TAG_formal_parameter -Lset9246 = Ldebug_loc94-Lsection_debug_loc ## DW_AT_location - .long Lset9246 - .long 22403 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x58c5:0x44 DW_TAG_subprogram - .long 4129 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 597 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x58d4:0xc DW_TAG_formal_parameter - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 597 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x58e0:0xc DW_TAG_formal_parameter - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 597 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x58ec:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x58ed:0xc DW_TAG_variable - .long 4061 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 599 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x58fa:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x58fb:0xc DW_TAG_variable - .long 4064 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 606 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 2 ## Abbrev [2] 0x5909:0x135 DW_TAG_subprogram - .quad Lfunc_begin9 ## DW_AT_low_pc - .quad Lfunc_end9 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4135 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 640 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x592a:0x10 DW_TAG_formal_parameter -Lset9247 = Ldebug_loc98-Lsection_debug_loc ## DW_AT_location - .long Lset9247 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 640 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x593a:0x10 DW_TAG_formal_parameter -Lset9248 = Ldebug_loc99-Lsection_debug_loc ## DW_AT_location - .long Lset9248 - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 640 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x594a:0x10 DW_TAG_formal_parameter -Lset9249 = Ldebug_loc100-Lsection_debug_loc ## DW_AT_location - .long Lset9249 - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 640 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x595a:0x10 DW_TAG_variable -Lset9250 = Ldebug_loc105-Lsection_debug_loc ## DW_AT_location - .long Lset9250 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 641 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x596a:0x58 DW_TAG_inlined_subroutine - .long 22210 ## DW_AT_abstract_origin -Lset9251 = Ldebug_ranges30-Ldebug_range ## DW_AT_ranges - .long Lset9251 - .byte 1 ## DW_AT_call_file - .short 645 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5976:0x9 DW_TAG_formal_parameter -Lset9252 = Ldebug_loc103-Lsection_debug_loc ## DW_AT_location - .long Lset9252 - .long 22225 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x597f:0x9 DW_TAG_formal_parameter -Lset9253 = Ldebug_loc104-Lsection_debug_loc ## DW_AT_location - .long Lset9253 - .long 22237 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5988:0x9 DW_TAG_variable -Lset9254 = Ldebug_loc110-Lsection_debug_loc ## DW_AT_location - .long Lset9254 - .long 22249 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5991:0x9 DW_TAG_variable -Lset9255 = Ldebug_loc111-Lsection_debug_loc ## DW_AT_location - .long Lset9255 - .long 22261 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x599a:0x9 DW_TAG_variable -Lset9256 = Ldebug_loc112-Lsection_debug_loc ## DW_AT_location - .long Lset9256 - .long 22273 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x59a3:0x1e DW_TAG_lexical_block -Lset9257 = Ldebug_ranges32-Ldebug_range ## DW_AT_ranges - .long Lset9257 - .byte 11 ## Abbrev [11] 0x59a8:0x9 DW_TAG_variable -Lset9258 = Ldebug_loc113-Lsection_debug_loc ## DW_AT_location - .long Lset9258 - .long 22298 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x59b1:0xf DW_TAG_lexical_block -Lset9259 = Ldebug_ranges31-Ldebug_range ## DW_AT_ranges - .long Lset9259 - .byte 11 ## Abbrev [11] 0x59b6:0x9 DW_TAG_variable -Lset9260 = Ldebug_loc109-Lsection_debug_loc ## DW_AT_location - .long Lset9260 - .long 22311 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x59c2:0x7b DW_TAG_inlined_subroutine - .long 22725 ## DW_AT_abstract_origin -Lset9261 = Ldebug_ranges33-Ldebug_range ## DW_AT_ranges - .long Lset9261 - .byte 1 ## DW_AT_call_file - .short 643 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x59ce:0x9 DW_TAG_formal_parameter -Lset9262 = Ldebug_loc107-Lsection_debug_loc ## DW_AT_location - .long Lset9262 - .long 22740 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x59d7:0x9 DW_TAG_formal_parameter -Lset9263 = Ldebug_loc115-Lsection_debug_loc ## DW_AT_location - .long Lset9263 - .long 22752 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x59e0:0x2e DW_TAG_lexical_block -Lset9264 = Ldebug_ranges35-Ldebug_range ## DW_AT_ranges - .long Lset9264 - .byte 11 ## Abbrev [11] 0x59e5:0x9 DW_TAG_variable -Lset9265 = Ldebug_loc101-Lsection_debug_loc ## DW_AT_location - .long Lset9265 - .long 22765 ## DW_AT_abstract_origin - .byte 9 ## Abbrev [9] 0x59ee:0x1f DW_TAG_inlined_subroutine - .long 22376 ## DW_AT_abstract_origin -Lset9266 = Ldebug_ranges34-Ldebug_range ## DW_AT_ranges - .long Lset9266 - .byte 1 ## DW_AT_call_file - .short 603 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x59fa:0x9 DW_TAG_formal_parameter -Lset9267 = Ldebug_loc102-Lsection_debug_loc ## DW_AT_location - .long Lset9267 - .long 22391 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5a03:0x9 DW_TAG_formal_parameter -Lset9268 = Ldebug_loc114-Lsection_debug_loc ## DW_AT_location - .long Lset9268 - .long 22403 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5a0e:0x2e DW_TAG_lexical_block -Lset9269 = Ldebug_ranges37-Ldebug_range ## DW_AT_ranges - .long Lset9269 - .byte 11 ## Abbrev [11] 0x5a13:0x9 DW_TAG_variable -Lset9270 = Ldebug_loc106-Lsection_debug_loc ## DW_AT_location - .long Lset9270 - .long 22779 ## DW_AT_abstract_origin - .byte 9 ## Abbrev [9] 0x5a1c:0x1f DW_TAG_inlined_subroutine - .long 22336 ## DW_AT_abstract_origin -Lset9271 = Ldebug_ranges36-Ldebug_range ## DW_AT_ranges - .long Lset9271 - .byte 1 ## DW_AT_call_file - .short 612 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5a28:0x9 DW_TAG_formal_parameter -Lset9272 = Ldebug_loc116-Lsection_debug_loc ## DW_AT_location - .long Lset9272 - .long 22351 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5a31:0x9 DW_TAG_formal_parameter -Lset9273 = Ldebug_loc108-Lsection_debug_loc ## DW_AT_location - .long Lset9273 - .long 22363 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 2 ## Abbrev [2] 0x5a3e:0x10d DW_TAG_subprogram - .quad Lfunc_begin10 ## DW_AT_low_pc - .quad Lfunc_end10 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 663 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5a5f:0x10 DW_TAG_formal_parameter -Lset9274 = Ldebug_loc117-Lsection_debug_loc ## DW_AT_location - .long Lset9274 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 663 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a6f:0x10 DW_TAG_formal_parameter -Lset9275 = Ldebug_loc118-Lsection_debug_loc ## DW_AT_location - .long Lset9275 - .long 5019 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 663 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a7f:0x10 DW_TAG_formal_parameter -Lset9276 = Ldebug_loc119-Lsection_debug_loc ## DW_AT_location - .long Lset9276 - .long 5022 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 663 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5a8f:0x10 DW_TAG_variable -Lset9277 = Ldebug_loc122-Lsection_debug_loc ## DW_AT_location - .long Lset9277 - .long 5001 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 664 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5a9f:0xab DW_TAG_lexical_block -Lset9278 = Ldebug_ranges40-Ldebug_range ## DW_AT_ranges - .long Lset9278 - .byte 5 ## Abbrev [5] 0x5aa4:0x10 DW_TAG_variable -Lset9279 = Ldebug_loc121-Lsection_debug_loc ## DW_AT_location - .long Lset9279 - .long 5025 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 669 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5ab4:0xc DW_TAG_variable - .long 5028 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 669 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x5ac0:0x40 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9280 = Ldebug_ranges38-Ldebug_range ## DW_AT_ranges - .long Lset9280 - .byte 1 ## DW_AT_call_file - .short 670 ## DW_AT_call_line - .byte 14 ## Abbrev [14] 0x5acc:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5ad2:0x9 DW_TAG_variable -Lset9281 = Ldebug_loc124-Lsection_debug_loc ## DW_AT_location - .long Lset9281 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5adb:0x24 DW_TAG_lexical_block - .quad Ltmp643 ## DW_AT_low_pc - .quad Ltmp649 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5aec:0x9 DW_TAG_variable -Lset9282 = Ldebug_loc127-Lsection_debug_loc ## DW_AT_location - .long Lset9282 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5af5:0x9 DW_TAG_variable -Lset9283 = Ldebug_loc128-Lsection_debug_loc ## DW_AT_location - .long Lset9283 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x5b00:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9284 = Ldebug_ranges39-Ldebug_range ## DW_AT_ranges - .long Lset9284 - .byte 1 ## DW_AT_call_file - .short 670 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5b0c:0x9 DW_TAG_formal_parameter -Lset9285 = Ldebug_loc120-Lsection_debug_loc ## DW_AT_location - .long Lset9285 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x5b15:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5b1b:0x9 DW_TAG_variable -Lset9286 = Ldebug_loc123-Lsection_debug_loc ## DW_AT_location - .long Lset9286 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5b24:0x24 DW_TAG_lexical_block - .quad Ltmp635 ## DW_AT_low_pc - .quad Ltmp642 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5b35:0x9 DW_TAG_variable -Lset9287 = Ldebug_loc125-Lsection_debug_loc ## DW_AT_location - .long Lset9287 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x5b3e:0x9 DW_TAG_variable -Lset9288 = Ldebug_loc126-Lsection_debug_loc ## DW_AT_location - .long Lset9288 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5b4b:0x4a DW_TAG_subprogram - .long 4164 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 721 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x5b56:0xc DW_TAG_formal_parameter - .long 2345 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 721 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x5b62:0xc DW_TAG_formal_parameter - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 721 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x5b6e:0xc DW_TAG_formal_parameter - .long 4174 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 721 ## DW_AT_decl_line - .long 15777 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5b7a:0xc DW_TAG_variable - .long 4179 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 722 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x5b86:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x5b87:0xc DW_TAG_variable - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 724 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x5b95:0x189 DW_TAG_subprogram - .quad Lfunc_begin11 ## DW_AT_low_pc - .quad Lfunc_end11 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4182 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 735 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5bb2:0x10 DW_TAG_formal_parameter -Lset9289 = Ldebug_loc129-Lsection_debug_loc ## DW_AT_location - .long Lset9289 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 735 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5bc2:0x10 DW_TAG_formal_parameter -Lset9290 = Ldebug_loc130-Lsection_debug_loc ## DW_AT_location - .long Lset9290 - .long 5031 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 735 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5bd2:0x14b DW_TAG_lexical_block -Lset9291 = Ldebug_ranges43-Ldebug_range ## DW_AT_ranges - .long Lset9291 - .byte 12 ## Abbrev [12] 0x5bd7:0xd DW_TAG_variable - .byte 2 ## DW_AT_const_value - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 739 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5be4:0x10 DW_TAG_variable -Lset9292 = Ldebug_loc131-Lsection_debug_loc ## DW_AT_location - .long Lset9292 - .long 2345 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 738 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5bf4:0x106 DW_TAG_lexical_block -Lset9293 = Ldebug_ranges42-Ldebug_range ## DW_AT_ranges - .long Lset9293 - .byte 5 ## Abbrev [5] 0x5bf9:0x10 DW_TAG_variable -Lset9294 = Ldebug_loc134-Lsection_debug_loc ## DW_AT_location - .long Lset9294 - .long 4179 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 749 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5c09:0x10 DW_TAG_variable -Lset9295 = Ldebug_loc137-Lsection_debug_loc ## DW_AT_location - .long Lset9295 - .long 2115 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 750 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5c19:0x16 DW_TAG_lexical_block -Lset9296 = Ldebug_ranges41-Ldebug_range ## DW_AT_ranges - .long Lset9296 - .byte 5 ## Abbrev [5] 0x5c1e:0x10 DW_TAG_variable -Lset9297 = Ldebug_loc133-Lsection_debug_loc ## DW_AT_location - .long Lset9297 - .long 2904 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 753 ## DW_AT_decl_line - .long 16144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5c2f:0x5f DW_TAG_lexical_block - .quad Ltmp689 ## DW_AT_low_pc - .quad Ltmp696 ## DW_AT_high_pc - .byte 59 ## Abbrev [59] 0x5c40:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\240\177" - .long 4174 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 759 ## DW_AT_decl_line - .long 33264 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x5c50:0x3d DW_TAG_inlined_subroutine - .long 23371 ## DW_AT_abstract_origin - .quad Ltmp689 ## DW_AT_low_pc - .quad Ltmp693 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 760 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x5c68:0x9 DW_TAG_variable -Lset9298 = Ldebug_loc135-Lsection_debug_loc ## DW_AT_location - .long Lset9298 - .long 23418 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5c71:0x1b DW_TAG_lexical_block - .quad Ltmp690 ## DW_AT_low_pc - .quad Ltmp692 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5c82:0x9 DW_TAG_variable -Lset9299 = Ldebug_loc136-Lsection_debug_loc ## DW_AT_location - .long Lset9299 - .long 23431 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x5c8e:0x3d DW_TAG_inlined_subroutine - .long 23371 ## DW_AT_abstract_origin - .quad Ltmp700 ## DW_AT_low_pc - .quad Ltmp704 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 765 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x5ca6:0x9 DW_TAG_variable -Lset9300 = Ldebug_loc138-Lsection_debug_loc ## DW_AT_location - .long Lset9300 - .long 23418 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5caf:0x1b DW_TAG_lexical_block - .quad Ltmp701 ## DW_AT_low_pc - .quad Ltmp703 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x5cc0:0x9 DW_TAG_variable -Lset9301 = Ldebug_loc139-Lsection_debug_loc ## DW_AT_location - .long Lset9301 - .long 23431 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5ccb:0x2e DW_TAG_lexical_block - .quad Ltmp707 ## DW_AT_low_pc - .quad Ltmp711 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5cdc:0x10 DW_TAG_variable -Lset9302 = Ldebug_loc140-Lsection_debug_loc ## DW_AT_location - .long Lset9302 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 767 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5cec:0xc DW_TAG_variable - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 767 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5cfa:0x22 DW_TAG_lexical_block - .quad Ltmp713 ## DW_AT_low_pc - .quad Ltmp714 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5d0b:0x10 DW_TAG_variable -Lset9303 = Ldebug_loc132-Lsection_debug_loc ## DW_AT_location - .long Lset9303 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 745 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x5d1e:0x112 DW_TAG_subprogram - .quad Lfunc_begin12 ## DW_AT_low_pc - .quad Lfunc_end12 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4194 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 778 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5d3b:0x10 DW_TAG_formal_parameter -Lset9304 = Ldebug_loc141-Lsection_debug_loc ## DW_AT_location - .long Lset9304 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 778 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5d4b:0x10 DW_TAG_formal_parameter -Lset9305 = Ldebug_loc142-Lsection_debug_loc ## DW_AT_location - .long Lset9305 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 778 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5d5b:0x10 DW_TAG_formal_parameter -Lset9306 = Ldebug_loc143-Lsection_debug_loc ## DW_AT_location - .long Lset9306 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 778 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5d6b:0x10 DW_TAG_variable -Lset9307 = Ldebug_loc150-Lsection_debug_loc ## DW_AT_location - .long Lset9307 - .long 5001 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 779 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5d7b:0x44 DW_TAG_lexical_block - .quad Ltmp734 ## DW_AT_low_pc - .quad Ltmp736 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5d8c:0x10 DW_TAG_variable -Lset9308 = Ldebug_loc148-Lsection_debug_loc ## DW_AT_location - .long Lset9308 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 783 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5d9c:0x22 DW_TAG_lexical_block - .quad Ltmp735 ## DW_AT_low_pc - .quad Ltmp736 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5dad:0x10 DW_TAG_variable -Lset9309 = Ldebug_loc147-Lsection_debug_loc ## DW_AT_location - .long Lset9309 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 784 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5dbf:0x2c DW_TAG_lexical_block -Lset9310 = Ldebug_ranges45-Ldebug_range ## DW_AT_ranges - .long Lset9310 - .byte 5 ## Abbrev [5] 0x5dc4:0x10 DW_TAG_variable -Lset9311 = Ldebug_loc149-Lsection_debug_loc ## DW_AT_location - .long Lset9311 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 788 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5dd4:0x16 DW_TAG_lexical_block -Lset9312 = Ldebug_ranges44-Ldebug_range ## DW_AT_ranges - .long Lset9312 - .byte 5 ## Abbrev [5] 0x5dd9:0x10 DW_TAG_variable -Lset9313 = Ldebug_loc146-Lsection_debug_loc ## DW_AT_location - .long Lset9313 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 791 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5deb:0x22 DW_TAG_lexical_block - .quad Ltmp745 ## DW_AT_low_pc - .quad Ltmp746 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5dfc:0x10 DW_TAG_variable -Lset9314 = Ldebug_loc144-Lsection_debug_loc ## DW_AT_location - .long Lset9314 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 799 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5e0d:0x22 DW_TAG_lexical_block - .quad Ltmp746 ## DW_AT_low_pc - .quad Ltmp747 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5e1e:0x10 DW_TAG_variable -Lset9315 = Ldebug_loc145-Lsection_debug_loc ## DW_AT_location - .long Lset9315 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 795 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 46 ## Abbrev [46] 0x5e30:0x4a DW_TAG_subprogram - .quad Lfunc_begin13 ## DW_AT_low_pc - .quad Lfunc_end13 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 24781 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5e47:0x9 DW_TAG_formal_parameter -Lset9316 = Ldebug_loc151-Lsection_debug_loc ## DW_AT_location - .long Lset9316 - .long 24797 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5e50:0x9 DW_TAG_formal_parameter -Lset9317 = Ldebug_loc152-Lsection_debug_loc ## DW_AT_location - .long Lset9317 - .long 24809 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5e59:0x9 DW_TAG_formal_parameter -Lset9318 = Ldebug_loc153-Lsection_debug_loc ## DW_AT_location - .long Lset9318 - .long 24821 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5e62:0x17 DW_TAG_lexical_block - .quad Ltmp763 ## DW_AT_low_pc - .quad Ltmp767 ## DW_AT_high_pc - .byte 60 ## Abbrev [60] 0x5e73:0x5 DW_TAG_variable - .long 24834 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 46 ## Abbrev [46] 0x5e7a:0x48 DW_TAG_subprogram - .quad Lfunc_begin14 ## DW_AT_low_pc - .quad Lfunc_end14 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 24714 ## DW_AT_abstract_origin - .byte 61 ## Abbrev [61] 0x5e91:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 24730 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5e98:0x9 DW_TAG_formal_parameter -Lset9319 = Ldebug_loc154-Lsection_debug_loc ## DW_AT_location - .long Lset9319 - .long 24742 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5ea1:0x9 DW_TAG_formal_parameter -Lset9320 = Ldebug_loc155-Lsection_debug_loc ## DW_AT_location - .long Lset9320 - .long 24754 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x5eaa:0x17 DW_TAG_lexical_block - .quad Ltmp782 ## DW_AT_low_pc - .quad Ltmp786 ## DW_AT_high_pc - .byte 60 ## Abbrev [60] 0x5ebb:0x5 DW_TAG_variable - .long 24767 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 46 ## Abbrev [46] 0x5ec2:0x28 DW_TAG_subprogram - .quad Lfunc_begin15 ## DW_AT_low_pc - .quad Lfunc_end15 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 24673 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5ed9:0x9 DW_TAG_formal_parameter -Lset9321 = Ldebug_loc156-Lsection_debug_loc ## DW_AT_location - .long Lset9321 - .long 24689 ## DW_AT_abstract_origin - .byte 61 ## Abbrev [61] 0x5ee2:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 24701 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x5eea:0x11c DW_TAG_subprogram - .quad Lfunc_begin16 ## DW_AT_low_pc - .quad Lfunc_end16 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4236 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 923 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5f07:0x10 DW_TAG_formal_parameter -Lset9322 = Ldebug_loc157-Lsection_debug_loc ## DW_AT_location - .long Lset9322 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 923 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f17:0x10 DW_TAG_variable -Lset9323 = Ldebug_loc158-Lsection_debug_loc ## DW_AT_location - .long Lset9323 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 924 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f27:0x10 DW_TAG_variable -Lset9324 = Ldebug_loc159-Lsection_debug_loc ## DW_AT_location - .long Lset9324 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 925 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f37:0x10 DW_TAG_variable -Lset9325 = Ldebug_loc160-Lsection_debug_loc ## DW_AT_location - .long Lset9325 - .long 5040 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 926 ## DW_AT_decl_line - .long 18354 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f47:0x10 DW_TAG_variable -Lset9326 = Ldebug_loc161-Lsection_debug_loc ## DW_AT_location - .long Lset9326 - .long 5045 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 927 ## DW_AT_decl_line - .long 20211 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5f57:0x16 DW_TAG_lexical_block -Lset9327 = Ldebug_ranges46-Ldebug_range ## DW_AT_ranges - .long Lset9327 - .byte 5 ## Abbrev [5] 0x5f5c:0x10 DW_TAG_variable -Lset9328 = Ldebug_loc164-Lsection_debug_loc ## DW_AT_location - .long Lset9328 - .long 5015 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 941 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5f6d:0x1e DW_TAG_lexical_block - .quad Ltmp820 ## DW_AT_low_pc - .quad Ltmp822 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x5f7e:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 937 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5f8b:0x7a DW_TAG_lexical_block - .quad Ltmp824 ## DW_AT_low_pc - .quad Ltmp834 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x5f9c:0x10 DW_TAG_variable -Lset9329 = Ldebug_loc162-Lsection_debug_loc ## DW_AT_location - .long Lset9329 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 955 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5fac:0x10 DW_TAG_variable -Lset9330 = Ldebug_loc163-Lsection_debug_loc ## DW_AT_location - .long Lset9330 - .long 5031 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 956 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5fbc:0xc DW_TAG_variable - .long 2345 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 954 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5fc8:0x1e DW_TAG_lexical_block - .quad Ltmp828 ## DW_AT_low_pc - .quad Ltmp829 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x5fd9:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 957 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x5fe6:0x1e DW_TAG_lexical_block - .quad Ltmp832 ## DW_AT_low_pc - .quad Ltmp834 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x5ff7:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 963 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 62 ## Abbrev [62] 0x6006:0x4a DW_TAG_subprogram - .long 4250 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 20223 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 48 ## Abbrev [48] 0x6014:0xb DW_TAG_formal_parameter - .long 4267 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x601f:0xb DW_TAG_formal_parameter - .long 4269 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x602a:0xb DW_TAG_variable - .long 3421 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 85 ## DW_AT_decl_line - .long 18912 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x6035:0x1a DW_TAG_lexical_block - .byte 49 ## Abbrev [49] 0x6036:0xb DW_TAG_variable - .long 2933 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 88 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x6041:0xd DW_TAG_lexical_block - .byte 49 ## Abbrev [49] 0x6042:0xb DW_TAG_variable - .long 4273 ## DW_AT_name - .byte 13 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x6050:0x5 DW_TAG_pointer_type - .long 24661 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x6055:0xc DW_TAG_typedef - .long 16298 ## DW_AT_type - .long 2235 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 597 ## DW_AT_decl_line - .byte 63 ## Abbrev [63] 0x6061:0x29 DW_TAG_subprogram - .long 4224 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 860 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 18894 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x6071:0xc DW_TAG_formal_parameter - .long 4276 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 860 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x607d:0xc DW_TAG_formal_parameter - .long 4278 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 860 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 63 ## Abbrev [63] 0x608a:0x43 DW_TAG_subprogram - .long 4215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 839 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 18894 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x609a:0xc DW_TAG_formal_parameter - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 839 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x60a6:0xc DW_TAG_formal_parameter - .long 4282 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 839 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x60b2:0xc DW_TAG_formal_parameter - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 839 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x60be:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x60bf:0xc DW_TAG_variable - .long 4059 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 846 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 63 ## Abbrev [63] 0x60cd:0x43 DW_TAG_subprogram - .long 4206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 819 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 18894 ## DW_AT_type - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x60dd:0xc DW_TAG_formal_parameter - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 819 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x60e9:0xc DW_TAG_formal_parameter - .long 4282 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 819 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x60f5:0xc DW_TAG_formal_parameter - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 819 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x6101:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x6102:0xc DW_TAG_variable - .long 4284 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 826 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x6110:0x74 DW_TAG_subprogram - .long 4286 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 877 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 24964 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x611f:0xc DW_TAG_formal_parameter - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 877 ## DW_AT_decl_line - .long 24969 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x612b:0xc DW_TAG_formal_parameter - .long 4296 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 877 ## DW_AT_decl_line - .long 24986 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x6137:0xc DW_TAG_formal_parameter - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 877 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6143:0xc DW_TAG_variable - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 878 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x614f:0x34 DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x6150:0xc DW_TAG_variable - .long 4302 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 880 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x615c:0xc DW_TAG_variable - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 881 ## DW_AT_decl_line - .long 19967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6168:0xc DW_TAG_variable - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 882 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x6174:0xe DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x6175:0xc DW_TAG_variable - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 884 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x6184:0x5 DW_TAG_pointer_type - .long 19348 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x6189:0x5 DW_TAG_pointer_type - .long 24974 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x618e:0xc DW_TAG_typedef - .long 19480 ## DW_AT_type - .long 3585 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 499 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x619a:0x5 DW_TAG_pointer_type - .long 18450 ## DW_AT_type - .byte 58 ## Abbrev [58] 0x619f:0x92 DW_TAG_subprogram - .long 4309 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x61aa:0xc DW_TAG_formal_parameter - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x61b6:0xc DW_TAG_formal_parameter - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .long 24969 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x61c2:0xc DW_TAG_formal_parameter - .long 4296 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .long 24986 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x61ce:0xc DW_TAG_formal_parameter - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x61da:0xc DW_TAG_formal_parameter - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 900 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x61e6:0xc DW_TAG_variable - .long 4302 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 901 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x61f2:0xc DW_TAG_variable - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 902 ## DW_AT_decl_line - .long 19967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x61fe:0xc DW_TAG_variable - .long 4324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 904 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x620a:0xc DW_TAG_variable - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 903 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 50 ## Abbrev [50] 0x6216:0x1a DW_TAG_lexical_block - .byte 8 ## Abbrev [8] 0x6217:0xc DW_TAG_variable - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 906 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6223:0xc DW_TAG_variable - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 906 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x6231:0x58 DW_TAG_subprogram - .long 4334 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1116 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .long 16660 ## DW_AT_type - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x6240:0xc DW_TAG_formal_parameter - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1116 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x624c:0xc DW_TAG_formal_parameter - .long 3202 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1116 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x6258:0xc DW_TAG_formal_parameter - .long 4349 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1116 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6264:0xc DW_TAG_variable - .long 4351 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1132 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6270:0xc DW_TAG_variable - .long 4355 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1133 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x627c:0xc DW_TAG_variable - .long 2696 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1118 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6289:0x3e DW_TAG_subprogram - .quad Lfunc_begin18 ## DW_AT_low_pc - .quad Lfunc_end18 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4376 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2455 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x62a6:0x10 DW_TAG_formal_parameter -Lset9331 = Ldebug_loc668-Lsection_debug_loc ## DW_AT_location - .long Lset9331 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2455 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x62b6:0x10 DW_TAG_formal_parameter -Lset9332 = Ldebug_loc669-Lsection_debug_loc ## DW_AT_location - .long Lset9332 - .long 4423 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2455 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x62c7:0x78 DW_TAG_subprogram - .long 4392 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2488 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 57 ## Abbrev [57] 0x62d2:0xc DW_TAG_formal_parameter - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2488 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 57 ## Abbrev [57] 0x62de:0xc DW_TAG_formal_parameter - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2488 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x62ea:0xc DW_TAG_variable - .long 2890 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2489 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x62f6:0xc DW_TAG_variable - .long 4405 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2490 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6302:0xc DW_TAG_variable - .long 4415 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2493 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x630e:0xc DW_TAG_variable - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2492 ## DW_AT_decl_line - .long 24969 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x631a:0xc DW_TAG_variable - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2491 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6326:0xc DW_TAG_variable - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2495 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6332:0xc DW_TAG_variable - .long 4423 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2494 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x633f:0xaf DW_TAG_subprogram - .quad Lfunc_begin19 ## DW_AT_low_pc - .quad Lfunc_end19 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4433 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2551 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x635c:0x10 DW_TAG_formal_parameter -Lset9333 = Ldebug_loc670-Lsection_debug_loc ## DW_AT_location - .long Lset9333 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2551 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x636c:0x10 DW_TAG_formal_parameter -Lset9334 = Ldebug_loc671-Lsection_debug_loc ## DW_AT_location - .long Lset9334 - .long 5229 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2551 ## DW_AT_decl_line - .long 18022 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x637c:0x10 DW_TAG_variable -Lset9335 = Ldebug_loc672-Lsection_debug_loc ## DW_AT_location - .long Lset9335 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2554 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x638c:0x61 DW_TAG_inlined_subroutine - .long 25287 ## DW_AT_abstract_origin - .quad Ltmp5335 ## DW_AT_low_pc - .quad Ltmp5394 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2560 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x63a4:0x9 DW_TAG_formal_parameter -Lset9336 = Ldebug_loc676-Lsection_debug_loc ## DW_AT_location - .long Lset9336 - .long 25298 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x63ad:0x9 DW_TAG_formal_parameter -Lset9337 = Ldebug_loc680-Lsection_debug_loc ## DW_AT_location - .long Lset9337 - .long 25310 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63b6:0x9 DW_TAG_variable -Lset9338 = Ldebug_loc673-Lsection_debug_loc ## DW_AT_location - .long Lset9338 - .long 25322 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63bf:0x9 DW_TAG_variable -Lset9339 = Ldebug_loc674-Lsection_debug_loc ## DW_AT_location - .long Lset9339 - .long 25334 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63c8:0x9 DW_TAG_variable -Lset9340 = Ldebug_loc675-Lsection_debug_loc ## DW_AT_location - .long Lset9340 - .long 25346 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63d1:0x9 DW_TAG_variable -Lset9341 = Ldebug_loc677-Lsection_debug_loc ## DW_AT_location - .long Lset9341 - .long 25358 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63da:0x9 DW_TAG_variable -Lset9342 = Ldebug_loc678-Lsection_debug_loc ## DW_AT_location - .long Lset9342 - .long 25370 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x63e3:0x9 DW_TAG_variable -Lset9343 = Ldebug_loc679-Lsection_debug_loc ## DW_AT_location - .long Lset9343 - .long 25382 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x63ee:0x7c DW_TAG_subprogram - .quad Lfunc_begin20 ## DW_AT_low_pc - .quad Lfunc_end20 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4449 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2566 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x640b:0x10 DW_TAG_formal_parameter -Lset9344 = Ldebug_loc681-Lsection_debug_loc ## DW_AT_location - .long Lset9344 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2566 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 64 ## Abbrev [64] 0x641b:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 5229 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2566 ## DW_AT_decl_line - .long 18022 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6429:0x10 DW_TAG_variable -Lset9345 = Ldebug_loc682-Lsection_debug_loc ## DW_AT_location - .long Lset9345 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2567 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 59 ## Abbrev [59] 0x6439:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 81 - .byte 147 - .byte 4 - .long 4415 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2568 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 59 ## Abbrev [59] 0x6449:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 82 - .byte 147 - .byte 4 - .long 2345 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2569 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 59 ## Abbrev [59] 0x6459:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 88 - .byte 147 - .byte 4 - .long 5231 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2570 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x646a:0xd0 DW_TAG_subprogram - .quad Lfunc_begin21 ## DW_AT_low_pc - .quad Lfunc_end21 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4468 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2580 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6487:0x10 DW_TAG_formal_parameter -Lset9346 = Ldebug_loc683-Lsection_debug_loc ## DW_AT_location - .long Lset9346 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2580 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6497:0x10 DW_TAG_formal_parameter -Lset9347 = Ldebug_loc684-Lsection_debug_loc ## DW_AT_location - .long Lset9347 - .long 5242 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2580 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x64a7:0x10 DW_TAG_formal_parameter -Lset9348 = Ldebug_loc685-Lsection_debug_loc ## DW_AT_location - .long Lset9348 - .long 5048 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2580 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x64b7:0x10 DW_TAG_variable -Lset9349 = Ldebug_loc691-Lsection_debug_loc ## DW_AT_location - .long Lset9349 - .long 5249 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2610 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x64c7:0x72 DW_TAG_lexical_block - .quad Ltmp5421 ## DW_AT_low_pc - .quad Ltmp5435 ## DW_AT_high_pc - .byte 59 ## Abbrev [59] 0x64d8:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\340~" - .long 5238 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 33276 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x64e8:0x10 DW_TAG_variable -Lset9350 = Ldebug_loc686-Lsection_debug_loc ## DW_AT_location - .long Lset9350 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x64f8:0x10 DW_TAG_variable -Lset9351 = Ldebug_loc687-Lsection_debug_loc ## DW_AT_location - .long Lset9351 - .long 4415 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6508:0x10 DW_TAG_variable -Lset9352 = Ldebug_loc688-Lsection_debug_loc ## DW_AT_location - .long Lset9352 - .long 2345 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6518:0x10 DW_TAG_variable -Lset9353 = Ldebug_loc689-Lsection_debug_loc ## DW_AT_location - .long Lset9353 - .long 5231 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6528:0x10 DW_TAG_variable -Lset9354 = Ldebug_loc690-Lsection_debug_loc ## DW_AT_location - .long Lset9354 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2581 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x653a:0x90 DW_TAG_subprogram - .quad Lfunc_begin22 ## DW_AT_low_pc - .quad Lfunc_end22 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4485 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2615 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6557:0x10 DW_TAG_formal_parameter -Lset9355 = Ldebug_loc692-Lsection_debug_loc ## DW_AT_location - .long Lset9355 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2615 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6567:0x10 DW_TAG_formal_parameter -Lset9356 = Ldebug_loc693-Lsection_debug_loc ## DW_AT_location - .long Lset9356 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2615 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6577:0x10 DW_TAG_formal_parameter -Lset9357 = Ldebug_loc694-Lsection_debug_loc ## DW_AT_location - .long Lset9357 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2615 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6587:0x10 DW_TAG_variable -Lset9358 = Ldebug_loc697-Lsection_debug_loc ## DW_AT_location - .long Lset9358 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2616 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6597:0x32 DW_TAG_lexical_block - .quad Ltmp5452 ## DW_AT_low_pc - .quad Ltmp5453 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x65a8:0x10 DW_TAG_variable -Lset9359 = Ldebug_loc695-Lsection_debug_loc ## DW_AT_location - .long Lset9359 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2617 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x65b8:0x10 DW_TAG_variable -Lset9360 = Ldebug_loc696-Lsection_debug_loc ## DW_AT_location - .long Lset9360 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2617 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x65ca:0x90 DW_TAG_subprogram - .quad Lfunc_begin23 ## DW_AT_low_pc - .quad Lfunc_end23 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4506 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2621 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x65e7:0x10 DW_TAG_formal_parameter -Lset9361 = Ldebug_loc698-Lsection_debug_loc ## DW_AT_location - .long Lset9361 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2621 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x65f7:0x10 DW_TAG_formal_parameter -Lset9362 = Ldebug_loc699-Lsection_debug_loc ## DW_AT_location - .long Lset9362 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2621 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6607:0x10 DW_TAG_formal_parameter -Lset9363 = Ldebug_loc700-Lsection_debug_loc ## DW_AT_location - .long Lset9363 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2621 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6617:0x10 DW_TAG_variable -Lset9364 = Ldebug_loc703-Lsection_debug_loc ## DW_AT_location - .long Lset9364 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2622 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6627:0x32 DW_TAG_lexical_block - .quad Ltmp5469 ## DW_AT_low_pc - .quad Ltmp5470 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6638:0x10 DW_TAG_variable -Lset9365 = Ldebug_loc701-Lsection_debug_loc ## DW_AT_location - .long Lset9365 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2623 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6648:0x10 DW_TAG_variable -Lset9366 = Ldebug_loc702-Lsection_debug_loc ## DW_AT_location - .long Lset9366 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2623 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x665a:0xb0 DW_TAG_subprogram - .quad Lfunc_begin24 ## DW_AT_low_pc - .quad Lfunc_end24 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4529 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6677:0x10 DW_TAG_formal_parameter -Lset9367 = Ldebug_loc704-Lsection_debug_loc ## DW_AT_location - .long Lset9367 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6687:0x10 DW_TAG_formal_parameter -Lset9368 = Ldebug_loc705-Lsection_debug_loc ## DW_AT_location - .long Lset9368 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6697:0x10 DW_TAG_formal_parameter -Lset9369 = Ldebug_loc706-Lsection_debug_loc ## DW_AT_location - .long Lset9369 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x66a7:0x10 DW_TAG_formal_parameter -Lset9370 = Ldebug_loc707-Lsection_debug_loc ## DW_AT_location - .long Lset9370 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x66b7:0x10 DW_TAG_formal_parameter -Lset9371 = Ldebug_loc708-Lsection_debug_loc ## DW_AT_location - .long Lset9371 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2627 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x66c7:0x10 DW_TAG_variable -Lset9372 = Ldebug_loc711-Lsection_debug_loc ## DW_AT_location - .long Lset9372 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2628 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x66d7:0x32 DW_TAG_lexical_block - .quad Ltmp5490 ## DW_AT_low_pc - .quad Ltmp5491 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x66e8:0x10 DW_TAG_variable -Lset9373 = Ldebug_loc709-Lsection_debug_loc ## DW_AT_location - .long Lset9373 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2629 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x66f8:0x10 DW_TAG_variable -Lset9374 = Ldebug_loc710-Lsection_debug_loc ## DW_AT_location - .long Lset9374 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2629 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x670a:0x260 DW_TAG_subprogram - .quad Lfunc_begin25 ## DW_AT_low_pc - .quad Lfunc_end25 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4547 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6727:0x10 DW_TAG_formal_parameter -Lset9375 = Ldebug_loc712-Lsection_debug_loc ## DW_AT_location - .long Lset9375 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6737:0x10 DW_TAG_formal_parameter -Lset9376 = Ldebug_loc713-Lsection_debug_loc ## DW_AT_location - .long Lset9376 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6747:0x10 DW_TAG_formal_parameter -Lset9377 = Ldebug_loc714-Lsection_debug_loc ## DW_AT_location - .long Lset9377 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6757:0x10 DW_TAG_formal_parameter -Lset9378 = Ldebug_loc715-Lsection_debug_loc ## DW_AT_location - .long Lset9378 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 64 ## Abbrev [64] 0x6767:0x10 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 88 - .byte 147 - .byte 4 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2634 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6777:0x10 DW_TAG_variable -Lset9379 = Ldebug_loc716-Lsection_debug_loc ## DW_AT_location - .long Lset9379 - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2635 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6787:0x10 DW_TAG_variable -Lset9380 = Ldebug_loc717-Lsection_debug_loc ## DW_AT_location - .long Lset9380 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2637 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6797:0x10 DW_TAG_variable -Lset9381 = Ldebug_loc718-Lsection_debug_loc ## DW_AT_location - .long Lset9381 - .long 5139 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2636 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x67a7:0x1e DW_TAG_lexical_block - .quad Ltmp5522 ## DW_AT_low_pc - .quad Ltmp5529 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x67b8:0xc DW_TAG_variable - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2645 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x67c5:0x1a4 DW_TAG_lexical_block -Lset9382 = Ldebug_ranges227-Ldebug_range ## DW_AT_ranges - .long Lset9382 - .byte 5 ## Abbrev [5] 0x67ca:0x10 DW_TAG_variable -Lset9383 = Ldebug_loc719-Lsection_debug_loc ## DW_AT_location - .long Lset9383 - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2651 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x67da:0x18e DW_TAG_lexical_block -Lset9384 = Ldebug_ranges226-Ldebug_range ## DW_AT_ranges - .long Lset9384 - .byte 5 ## Abbrev [5] 0x67df:0x10 DW_TAG_variable -Lset9385 = Ldebug_loc720-Lsection_debug_loc ## DW_AT_location - .long Lset9385 - .long 2157 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2654 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x67ef:0x10 DW_TAG_variable -Lset9386 = Ldebug_loc726-Lsection_debug_loc ## DW_AT_location - .long Lset9386 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2653 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x67ff:0x26 DW_TAG_lexical_block -Lset9387 = Ldebug_ranges217-Ldebug_range ## DW_AT_ranges - .long Lset9387 - .byte 5 ## Abbrev [5] 0x6804:0x10 DW_TAG_variable -Lset9388 = Ldebug_loc721-Lsection_debug_loc ## DW_AT_location - .long Lset9388 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2657 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6814:0x10 DW_TAG_variable -Lset9389 = Ldebug_loc731-Lsection_debug_loc ## DW_AT_location - .long Lset9389 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2657 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6825:0xa3 DW_TAG_lexical_block -Lset9390 = Ldebug_ranges220-Ldebug_range ## DW_AT_ranges - .long Lset9390 - .byte 12 ## Abbrev [12] 0x682a:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2659 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x6837:0x5e DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset9391 = Ldebug_ranges218-Ldebug_range ## DW_AT_ranges - .long Lset9391 - .byte 1 ## DW_AT_call_file - .short 2660 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6843:0x9 DW_TAG_formal_parameter -Lset9392 = Ldebug_loc727-Lsection_debug_loc ## DW_AT_location - .long Lset9392 - .long 21558 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x684c:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9393 = Ldebug_ranges219-Ldebug_range ## DW_AT_ranges - .long Lset9393 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6857:0x9 DW_TAG_formal_parameter -Lset9394 = Ldebug_loc728-Lsection_debug_loc ## DW_AT_location - .long Lset9394 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x6860:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6866:0x9 DW_TAG_variable -Lset9395 = Ldebug_loc730-Lsection_debug_loc ## DW_AT_location - .long Lset9395 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x686f:0x24 DW_TAG_lexical_block - .quad Ltmp5569 ## DW_AT_low_pc - .quad Ltmp5576 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x6880:0x9 DW_TAG_variable -Lset9396 = Ldebug_loc734-Lsection_debug_loc ## DW_AT_location - .long Lset9396 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6889:0x9 DW_TAG_variable -Lset9397 = Ldebug_loc735-Lsection_debug_loc ## DW_AT_location - .long Lset9397 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x6895:0x32 DW_TAG_lexical_block - .quad Ltmp5577 ## DW_AT_low_pc - .quad Ltmp5583 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x68a6:0x10 DW_TAG_variable -Lset9398 = Ldebug_loc722-Lsection_debug_loc ## DW_AT_location - .long Lset9398 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2660 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x68b6:0x10 DW_TAG_variable -Lset9399 = Ldebug_loc736-Lsection_debug_loc ## DW_AT_location - .long Lset9399 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2660 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x68c8:0x57 DW_TAG_lexical_block -Lset9400 = Ldebug_ranges223-Ldebug_range ## DW_AT_ranges - .long Lset9400 - .byte 8 ## Abbrev [8] 0x68cd:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2673 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x68d9:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9401 = Ldebug_ranges221-Ldebug_range ## DW_AT_ranges - .long Lset9401 - .byte 1 ## DW_AT_call_file - .short 2674 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x68e5:0x9 DW_TAG_formal_parameter -Lset9402 = Ldebug_loc729-Lsection_debug_loc ## DW_AT_location - .long Lset9402 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x68ee:0x9 DW_TAG_variable -Lset9403 = Ldebug_loc733-Lsection_debug_loc ## DW_AT_location - .long Lset9403 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x68f8:0x26 DW_TAG_lexical_block -Lset9404 = Ldebug_ranges222-Ldebug_range ## DW_AT_ranges - .long Lset9404 - .byte 5 ## Abbrev [5] 0x68fd:0x10 DW_TAG_variable -Lset9405 = Ldebug_loc725-Lsection_debug_loc ## DW_AT_location - .long Lset9405 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2674 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x690d:0x10 DW_TAG_variable -Lset9406 = Ldebug_loc737-Lsection_debug_loc ## DW_AT_location - .long Lset9406 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2674 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x691f:0x26 DW_TAG_lexical_block -Lset9407 = Ldebug_ranges224-Ldebug_range ## DW_AT_ranges - .long Lset9407 - .byte 5 ## Abbrev [5] 0x6924:0x10 DW_TAG_variable -Lset9408 = Ldebug_loc724-Lsection_debug_loc ## DW_AT_location - .long Lset9408 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2670 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6934:0x10 DW_TAG_variable -Lset9409 = Ldebug_loc732-Lsection_debug_loc ## DW_AT_location - .long Lset9409 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2670 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6945:0x22 DW_TAG_lexical_block -Lset9410 = Ldebug_ranges225-Ldebug_range ## DW_AT_ranges - .long Lset9410 - .byte 5 ## Abbrev [5] 0x694a:0x10 DW_TAG_variable -Lset9411 = Ldebug_loc723-Lsection_debug_loc ## DW_AT_location - .long Lset9411 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2667 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x695a:0xc DW_TAG_variable - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2667 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x696a:0xc0 DW_TAG_subprogram - .quad Lfunc_begin26 ## DW_AT_low_pc - .quad Lfunc_end26 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4564 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6987:0x10 DW_TAG_formal_parameter -Lset9412 = Ldebug_loc738-Lsection_debug_loc ## DW_AT_location - .long Lset9412 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6997:0x10 DW_TAG_formal_parameter -Lset9413 = Ldebug_loc739-Lsection_debug_loc ## DW_AT_location - .long Lset9413 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x69a7:0x10 DW_TAG_formal_parameter -Lset9414 = Ldebug_loc740-Lsection_debug_loc ## DW_AT_location - .long Lset9414 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x69b7:0x10 DW_TAG_formal_parameter -Lset9415 = Ldebug_loc741-Lsection_debug_loc ## DW_AT_location - .long Lset9415 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 64 ## Abbrev [64] 0x69c7:0x10 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 88 - .byte 147 - .byte 4 - .long 2931 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2686 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x69d7:0x10 DW_TAG_variable -Lset9416 = Ldebug_loc742-Lsection_debug_loc ## DW_AT_location - .long Lset9416 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2688 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x69e7:0x10 DW_TAG_variable -Lset9417 = Ldebug_loc743-Lsection_debug_loc ## DW_AT_location - .long Lset9417 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2687 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x69f7:0x10 DW_TAG_variable -Lset9418 = Ldebug_loc745-Lsection_debug_loc ## DW_AT_location - .long Lset9418 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2687 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6a07:0x22 DW_TAG_lexical_block - .quad Ltmp5620 ## DW_AT_low_pc - .quad Ltmp5621 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6a18:0x10 DW_TAG_variable -Lset9419 = Ldebug_loc744-Lsection_debug_loc ## DW_AT_location - .long Lset9419 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2693 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6a2a:0x1c3 DW_TAG_subprogram - .quad Lfunc_begin27 ## DW_AT_low_pc - .quad Lfunc_end27 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4580 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6a47:0x10 DW_TAG_formal_parameter -Lset9420 = Ldebug_loc746-Lsection_debug_loc ## DW_AT_location - .long Lset9420 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a57:0x10 DW_TAG_formal_parameter -Lset9421 = Ldebug_loc747-Lsection_debug_loc ## DW_AT_location - .long Lset9421 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a67:0x10 DW_TAG_formal_parameter -Lset9422 = Ldebug_loc748-Lsection_debug_loc ## DW_AT_location - .long Lset9422 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a77:0x10 DW_TAG_formal_parameter -Lset9423 = Ldebug_loc749-Lsection_debug_loc ## DW_AT_location - .long Lset9423 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a87:0x10 DW_TAG_formal_parameter -Lset9424 = Ldebug_loc750-Lsection_debug_loc ## DW_AT_location - .long Lset9424 - .long 5257 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2698 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6a97:0x10 DW_TAG_variable -Lset9425 = Ldebug_loc751-Lsection_debug_loc ## DW_AT_location - .long Lset9425 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2699 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6aa7:0x10 DW_TAG_variable -Lset9426 = Ldebug_loc755-Lsection_debug_loc ## DW_AT_location - .long Lset9426 - .long 2304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2700 ## DW_AT_decl_line - .long 24969 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6ab7:0x10 DW_TAG_variable -Lset9427 = Ldebug_loc758-Lsection_debug_loc ## DW_AT_location - .long Lset9427 - .long 4324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2701 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6ac7:0x10 DW_TAG_variable -Lset9428 = Ldebug_loc766-Lsection_debug_loc ## DW_AT_location - .long Lset9428 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2702 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x6ad7:0x6d DW_TAG_inlined_subroutine - .long 24848 ## DW_AT_abstract_origin -Lset9429 = Ldebug_ranges228-Ldebug_range ## DW_AT_ranges - .long Lset9429 - .byte 1 ## DW_AT_call_file - .short 2701 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6ae3:0x9 DW_TAG_formal_parameter -Lset9430 = Ldebug_loc754-Lsection_debug_loc ## DW_AT_location - .long Lset9430 - .long 24863 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6aec:0x9 DW_TAG_formal_parameter -Lset9431 = Ldebug_loc752-Lsection_debug_loc ## DW_AT_location - .long Lset9431 - .long 24887 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6af5:0x9 DW_TAG_variable -Lset9432 = Ldebug_loc757-Lsection_debug_loc ## DW_AT_location - .long Lset9432 - .long 24899 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x6afe:0x45 DW_TAG_lexical_block - .quad Ltmp5648 ## DW_AT_low_pc - .quad Ltmp5657 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x6b0f:0x9 DW_TAG_variable -Lset9433 = Ldebug_loc760-Lsection_debug_loc ## DW_AT_location - .long Lset9433 - .long 24912 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6b18:0x9 DW_TAG_variable -Lset9434 = Ldebug_loc762-Lsection_debug_loc ## DW_AT_location - .long Lset9434 - .long 24924 ## DW_AT_abstract_origin - .byte 16 ## Abbrev [16] 0x6b21:0x6 DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 24936 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x6b27:0x1b DW_TAG_lexical_block - .quad Ltmp5649 ## DW_AT_low_pc - .quad Ltmp5654 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x6b38:0x9 DW_TAG_variable -Lset9435 = Ldebug_loc764-Lsection_debug_loc ## DW_AT_location - .long Lset9435 - .long 24949 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x6b44:0x76 DW_TAG_inlined_subroutine - .long 24991 ## DW_AT_abstract_origin -Lset9436 = Ldebug_ranges229-Ldebug_range ## DW_AT_ranges - .long Lset9436 - .byte 1 ## DW_AT_call_file - .short 2704 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6b50:0x9 DW_TAG_formal_parameter -Lset9437 = Ldebug_loc769-Lsection_debug_loc ## DW_AT_location - .long Lset9437 - .long 25002 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6b59:0x9 DW_TAG_formal_parameter -Lset9438 = Ldebug_loc756-Lsection_debug_loc ## DW_AT_location - .long Lset9438 - .long 25014 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6b62:0x9 DW_TAG_formal_parameter -Lset9439 = Ldebug_loc753-Lsection_debug_loc ## DW_AT_location - .long Lset9439 - .long 25038 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6b6b:0x9 DW_TAG_formal_parameter -Lset9440 = Ldebug_loc767-Lsection_debug_loc ## DW_AT_location - .long Lset9440 - .long 25050 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6b74:0x9 DW_TAG_variable -Lset9441 = Ldebug_loc761-Lsection_debug_loc ## DW_AT_location - .long Lset9441 - .long 25062 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6b7d:0x9 DW_TAG_variable -Lset9442 = Ldebug_loc763-Lsection_debug_loc ## DW_AT_location - .long Lset9442 - .long 25074 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6b86:0x9 DW_TAG_variable -Lset9443 = Ldebug_loc770-Lsection_debug_loc ## DW_AT_location - .long Lset9443 - .long 25086 ## DW_AT_abstract_origin - .byte 16 ## Abbrev [16] 0x6b8f:0x6 DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 25098 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x6b95:0x24 DW_TAG_lexical_block - .quad Ltmp5666 ## DW_AT_low_pc - .quad Ltmp5668 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x6ba6:0x9 DW_TAG_variable -Lset9444 = Ldebug_loc768-Lsection_debug_loc ## DW_AT_location - .long Lset9444 - .long 25123 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6baf:0x9 DW_TAG_variable -Lset9445 = Ldebug_loc771-Lsection_debug_loc ## DW_AT_location - .long Lset9445 - .long 25111 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x6bba:0x32 DW_TAG_lexical_block - .quad Ltmp5658 ## DW_AT_low_pc - .quad Ltmp5659 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6bcb:0x10 DW_TAG_variable -Lset9446 = Ldebug_loc759-Lsection_debug_loc ## DW_AT_location - .long Lset9446 - .long 4328 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2707 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6bdb:0x10 DW_TAG_variable -Lset9447 = Ldebug_loc765-Lsection_debug_loc ## DW_AT_location - .long Lset9447 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2707 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6bed:0xbd DW_TAG_subprogram - .quad Lfunc_begin28 ## DW_AT_low_pc - .quad Lfunc_end28 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4597 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6c0a:0x10 DW_TAG_formal_parameter -Lset9448 = Ldebug_loc772-Lsection_debug_loc ## DW_AT_location - .long Lset9448 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6c1a:0x10 DW_TAG_formal_parameter -Lset9449 = Ldebug_loc773-Lsection_debug_loc ## DW_AT_location - .long Lset9449 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6c2a:0x10 DW_TAG_formal_parameter -Lset9450 = Ldebug_loc774-Lsection_debug_loc ## DW_AT_location - .long Lset9450 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6c3a:0x10 DW_TAG_formal_parameter -Lset9451 = Ldebug_loc775-Lsection_debug_loc ## DW_AT_location - .long Lset9451 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6c4a:0x10 DW_TAG_formal_parameter -Lset9452 = Ldebug_loc776-Lsection_debug_loc ## DW_AT_location - .long Lset9452 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2712 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6c5a:0x10 DW_TAG_variable -Lset9453 = Ldebug_loc777-Lsection_debug_loc ## DW_AT_location - .long Lset9453 - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2713 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6c6a:0x10 DW_TAG_variable -Lset9454 = Ldebug_loc778-Lsection_debug_loc ## DW_AT_location - .long Lset9454 - .long 3421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2716 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6c7a:0x10 DW_TAG_variable -Lset9455 = Ldebug_loc779-Lsection_debug_loc ## DW_AT_location - .long Lset9455 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2714 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x6c8a:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 5144 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2715 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6c97:0x12 DW_TAG_lexical_block -Lset9456 = Ldebug_ranges230-Ldebug_range ## DW_AT_ranges - .long Lset9456 - .byte 8 ## Abbrev [8] 0x6c9c:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2730 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6caa:0x68 DW_TAG_subprogram - .quad Lfunc_begin29 ## DW_AT_low_pc - .quad Lfunc_end29 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4613 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2736 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x6cc7:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 2878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2736 ## DW_AT_decl_line - .long 18061 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6cd5:0x10 DW_TAG_formal_parameter -Lset9457 = Ldebug_loc780-Lsection_debug_loc ## DW_AT_location - .long Lset9457 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2736 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6ce5:0x10 DW_TAG_formal_parameter -Lset9458 = Ldebug_loc781-Lsection_debug_loc ## DW_AT_location - .long Lset9458 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2736 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6cf5:0x10 DW_TAG_variable -Lset9459 = Ldebug_loc782-Lsection_debug_loc ## DW_AT_location - .long Lset9459 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2739 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6d05:0xc DW_TAG_variable - .long 2906 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2737 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6d12:0xee DW_TAG_subprogram - .quad Lfunc_begin30 ## DW_AT_low_pc - .quad Lfunc_end30 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4630 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2743 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6d2f:0x10 DW_TAG_formal_parameter -Lset9460 = Ldebug_loc783-Lsection_debug_loc ## DW_AT_location - .long Lset9460 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2743 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d3f:0x10 DW_TAG_formal_parameter -Lset9461 = Ldebug_loc784-Lsection_debug_loc ## DW_AT_location - .long Lset9461 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2743 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d4f:0x10 DW_TAG_formal_parameter -Lset9462 = Ldebug_loc785-Lsection_debug_loc ## DW_AT_location - .long Lset9462 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2743 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d5f:0x10 DW_TAG_formal_parameter -Lset9463 = Ldebug_loc786-Lsection_debug_loc ## DW_AT_location - .long Lset9463 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2743 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6d6f:0xc DW_TAG_variable - .long 5152 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2744 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x6d7b:0x40 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9464 = Ldebug_ranges231-Ldebug_range ## DW_AT_ranges - .long Lset9464 - .byte 1 ## DW_AT_call_file - .short 2745 ## DW_AT_call_line - .byte 14 ## Abbrev [14] 0x6d87:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6d8d:0x9 DW_TAG_variable -Lset9465 = Ldebug_loc789-Lsection_debug_loc ## DW_AT_location - .long Lset9465 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x6d96:0x24 DW_TAG_lexical_block - .quad Ltmp5776 ## DW_AT_low_pc - .quad Ltmp5783 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x6da7:0x9 DW_TAG_variable -Lset9466 = Ldebug_loc790-Lsection_debug_loc ## DW_AT_location - .long Lset9466 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6db0:0x9 DW_TAG_variable -Lset9467 = Ldebug_loc791-Lsection_debug_loc ## DW_AT_location - .long Lset9467 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x6dbb:0x44 DW_TAG_lexical_block - .quad Ltmp5758 ## DW_AT_low_pc - .quad Ltmp5761 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6dcc:0x10 DW_TAG_variable -Lset9468 = Ldebug_loc787-Lsection_debug_loc ## DW_AT_location - .long Lset9468 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2746 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6ddc:0x22 DW_TAG_lexical_block - .quad Ltmp5759 ## DW_AT_low_pc - .quad Ltmp5761 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6ded:0x10 DW_TAG_variable -Lset9469 = Ldebug_loc788-Lsection_debug_loc ## DW_AT_location - .long Lset9469 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2747 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6e00:0xcd DW_TAG_subprogram - .quad Lfunc_begin31 ## DW_AT_low_pc - .quad Lfunc_end31 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4649 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2755 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6e1d:0x10 DW_TAG_formal_parameter -Lset9470 = Ldebug_loc792-Lsection_debug_loc ## DW_AT_location - .long Lset9470 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2755 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6e2d:0x10 DW_TAG_formal_parameter -Lset9471 = Ldebug_loc793-Lsection_debug_loc ## DW_AT_location - .long Lset9471 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2755 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6e3d:0x10 DW_TAG_formal_parameter -Lset9472 = Ldebug_loc794-Lsection_debug_loc ## DW_AT_location - .long Lset9472 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2755 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6e4d:0x10 DW_TAG_formal_parameter -Lset9473 = Ldebug_loc795-Lsection_debug_loc ## DW_AT_location - .long Lset9473 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2755 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6e5d:0xc DW_TAG_variable - .long 5226 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2756 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x6e69:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9474 = Ldebug_ranges232-Ldebug_range ## DW_AT_ranges - .long Lset9474 - .byte 1 ## DW_AT_call_file - .short 2757 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6e75:0x9 DW_TAG_formal_parameter -Lset9475 = Ldebug_loc798-Lsection_debug_loc ## DW_AT_location - .long Lset9475 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x6e7e:0x9 DW_TAG_variable -Lset9476 = Ldebug_loc799-Lsection_debug_loc ## DW_AT_location - .long Lset9476 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x6e88:0x44 DW_TAG_lexical_block - .quad Ltmp5798 ## DW_AT_low_pc - .quad Ltmp5801 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6e99:0x10 DW_TAG_variable -Lset9477 = Ldebug_loc796-Lsection_debug_loc ## DW_AT_location - .long Lset9477 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2758 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6ea9:0x22 DW_TAG_lexical_block - .quad Ltmp5799 ## DW_AT_low_pc - .quad Ltmp5801 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x6eba:0x10 DW_TAG_variable -Lset9478 = Ldebug_loc797-Lsection_debug_loc ## DW_AT_location - .long Lset9478 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2759 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6ecd:0x8a DW_TAG_subprogram - .quad Lfunc_begin32 ## DW_AT_low_pc - .quad Lfunc_end32 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4668 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2767 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x6eea:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2767 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6ef8:0x10 DW_TAG_formal_parameter -Lset9479 = Ldebug_loc800-Lsection_debug_loc ## DW_AT_location - .long Lset9479 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2767 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f08:0x10 DW_TAG_formal_parameter -Lset9480 = Ldebug_loc801-Lsection_debug_loc ## DW_AT_location - .long Lset9480 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2767 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f18:0x10 DW_TAG_formal_parameter -Lset9481 = Ldebug_loc802-Lsection_debug_loc ## DW_AT_location - .long Lset9481 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2767 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6f28:0x10 DW_TAG_variable -Lset9482 = Ldebug_loc803-Lsection_debug_loc ## DW_AT_location - .long Lset9482 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2771 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6f38:0x1e DW_TAG_lexical_block - .quad Ltmp5823 ## DW_AT_low_pc - .quad Ltmp5826 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x6f49:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2772 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6f57:0x8a DW_TAG_subprogram - .quad Lfunc_begin33 ## DW_AT_low_pc - .quad Lfunc_end33 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4688 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2776 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x6f74:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2776 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f82:0x10 DW_TAG_formal_parameter -Lset9483 = Ldebug_loc804-Lsection_debug_loc ## DW_AT_location - .long Lset9483 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2776 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f92:0x10 DW_TAG_formal_parameter -Lset9484 = Ldebug_loc805-Lsection_debug_loc ## DW_AT_location - .long Lset9484 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2776 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6fa2:0x10 DW_TAG_formal_parameter -Lset9485 = Ldebug_loc806-Lsection_debug_loc ## DW_AT_location - .long Lset9485 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2776 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6fb2:0x10 DW_TAG_variable -Lset9486 = Ldebug_loc807-Lsection_debug_loc ## DW_AT_location - .long Lset9486 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2780 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6fc2:0x1e DW_TAG_lexical_block - .quad Ltmp5838 ## DW_AT_low_pc - .quad Ltmp5841 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x6fd3:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2781 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x6fe1:0x8a DW_TAG_subprogram - .quad Lfunc_begin34 ## DW_AT_low_pc - .quad Lfunc_end34 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4708 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2785 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x6ffe:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2785 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x700c:0x10 DW_TAG_formal_parameter -Lset9487 = Ldebug_loc808-Lsection_debug_loc ## DW_AT_location - .long Lset9487 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2785 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x701c:0x10 DW_TAG_formal_parameter -Lset9488 = Ldebug_loc809-Lsection_debug_loc ## DW_AT_location - .long Lset9488 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2785 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x702c:0x10 DW_TAG_formal_parameter -Lset9489 = Ldebug_loc810-Lsection_debug_loc ## DW_AT_location - .long Lset9489 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2785 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x703c:0x10 DW_TAG_variable -Lset9490 = Ldebug_loc811-Lsection_debug_loc ## DW_AT_location - .long Lset9490 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2788 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x704c:0x1e DW_TAG_lexical_block - .quad Ltmp5853 ## DW_AT_low_pc - .quad Ltmp5856 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x705d:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x706b:0x8a DW_TAG_subprogram - .quad Lfunc_begin35 ## DW_AT_low_pc - .quad Lfunc_end35 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4727 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x7088:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7096:0x10 DW_TAG_formal_parameter -Lset9491 = Ldebug_loc812-Lsection_debug_loc ## DW_AT_location - .long Lset9491 - .long 3538 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .long 24964 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x70a6:0x10 DW_TAG_formal_parameter -Lset9492 = Ldebug_loc813-Lsection_debug_loc ## DW_AT_location - .long Lset9492 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x70b6:0x10 DW_TAG_formal_parameter -Lset9493 = Ldebug_loc814-Lsection_debug_loc ## DW_AT_location - .long Lset9493 - .long 2306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .long 16660 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x70c6:0x10 DW_TAG_variable -Lset9494 = Ldebug_loc815-Lsection_debug_loc ## DW_AT_location - .long Lset9494 - .long 4306 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2794 ## DW_AT_decl_line - .long 18450 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x70d6:0x1e DW_TAG_lexical_block - .quad Ltmp5870 ## DW_AT_low_pc - .quad Ltmp5873 ## DW_AT_high_pc - .byte 8 ## Abbrev [8] 0x70e7:0xc DW_TAG_variable - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2795 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x70f5:0x126 DW_TAG_subprogram - .quad Lfunc_begin36 ## DW_AT_low_pc - .quad Lfunc_end36 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4745 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2799 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7112:0x10 DW_TAG_formal_parameter -Lset9495 = Ldebug_loc816-Lsection_debug_loc ## DW_AT_location - .long Lset9495 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2799 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7122:0x10 DW_TAG_formal_parameter -Lset9496 = Ldebug_loc817-Lsection_debug_loc ## DW_AT_location - .long Lset9496 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2799 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7132:0x10 DW_TAG_formal_parameter -Lset9497 = Ldebug_loc818-Lsection_debug_loc ## DW_AT_location - .long Lset9497 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2799 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7142:0x10 DW_TAG_formal_parameter -Lset9498 = Ldebug_loc819-Lsection_debug_loc ## DW_AT_location - .long Lset9498 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2799 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7152:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2800 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x715e:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2801 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x716a:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9499 = Ldebug_ranges233-Ldebug_range ## DW_AT_ranges - .long Lset9499 - .byte 1 ## DW_AT_call_file - .short 2807 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7176:0x9 DW_TAG_formal_parameter -Lset9500 = Ldebug_loc823-Lsection_debug_loc ## DW_AT_location - .long Lset9500 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x717f:0x9 DW_TAG_variable -Lset9501 = Ldebug_loc824-Lsection_debug_loc ## DW_AT_location - .long Lset9501 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7189:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9502 = Ldebug_ranges234-Ldebug_range ## DW_AT_ranges - .long Lset9502 - .byte 1 ## DW_AT_call_file - .short 2807 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7195:0x9 DW_TAG_formal_parameter -Lset9503 = Ldebug_loc825-Lsection_debug_loc ## DW_AT_location - .long Lset9503 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x719e:0x9 DW_TAG_variable -Lset9504 = Ldebug_loc826-Lsection_debug_loc ## DW_AT_location - .long Lset9504 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x71a8:0x22 DW_TAG_lexical_block - .quad Ltmp5903 ## DW_AT_low_pc - .quad Ltmp5904 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x71b9:0x10 DW_TAG_variable -Lset9505 = Ldebug_loc821-Lsection_debug_loc ## DW_AT_location - .long Lset9505 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2808 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x71ca:0x50 DW_TAG_lexical_block - .quad Ltmp5893 ## DW_AT_low_pc - .quad Ltmp5896 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x71db:0x10 DW_TAG_variable -Lset9506 = Ldebug_loc822-Lsection_debug_loc ## DW_AT_location - .long Lset9506 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2804 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x71eb:0xc DW_TAG_variable - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2803 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x71f7:0x22 DW_TAG_lexical_block - .quad Ltmp5894 ## DW_AT_low_pc - .quad Ltmp5896 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7208:0x10 DW_TAG_variable -Lset9507 = Ldebug_loc820-Lsection_debug_loc ## DW_AT_location - .long Lset9507 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2805 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x721b:0x126 DW_TAG_subprogram - .quad Lfunc_begin37 ## DW_AT_low_pc - .quad Lfunc_end37 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4758 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7238:0x10 DW_TAG_formal_parameter -Lset9508 = Ldebug_loc827-Lsection_debug_loc ## DW_AT_location - .long Lset9508 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7248:0x10 DW_TAG_formal_parameter -Lset9509 = Ldebug_loc828-Lsection_debug_loc ## DW_AT_location - .long Lset9509 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7258:0x10 DW_TAG_formal_parameter -Lset9510 = Ldebug_loc829-Lsection_debug_loc ## DW_AT_location - .long Lset9510 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7268:0x10 DW_TAG_formal_parameter -Lset9511 = Ldebug_loc830-Lsection_debug_loc ## DW_AT_location - .long Lset9511 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7278:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2816 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7284:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2817 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x7290:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9512 = Ldebug_ranges235-Ldebug_range ## DW_AT_ranges - .long Lset9512 - .byte 1 ## DW_AT_call_file - .short 2823 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x729c:0x9 DW_TAG_formal_parameter -Lset9513 = Ldebug_loc834-Lsection_debug_loc ## DW_AT_location - .long Lset9513 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x72a5:0x9 DW_TAG_variable -Lset9514 = Ldebug_loc835-Lsection_debug_loc ## DW_AT_location - .long Lset9514 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x72af:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9515 = Ldebug_ranges236-Ldebug_range ## DW_AT_ranges - .long Lset9515 - .byte 1 ## DW_AT_call_file - .short 2823 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x72bb:0x9 DW_TAG_formal_parameter -Lset9516 = Ldebug_loc836-Lsection_debug_loc ## DW_AT_location - .long Lset9516 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x72c4:0x9 DW_TAG_variable -Lset9517 = Ldebug_loc837-Lsection_debug_loc ## DW_AT_location - .long Lset9517 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x72ce:0x22 DW_TAG_lexical_block - .quad Ltmp5959 ## DW_AT_low_pc - .quad Ltmp5960 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x72df:0x10 DW_TAG_variable -Lset9518 = Ldebug_loc832-Lsection_debug_loc ## DW_AT_location - .long Lset9518 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2824 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x72f0:0x50 DW_TAG_lexical_block - .quad Ltmp5949 ## DW_AT_low_pc - .quad Ltmp5952 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7301:0x10 DW_TAG_variable -Lset9519 = Ldebug_loc833-Lsection_debug_loc ## DW_AT_location - .long Lset9519 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2819 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7311:0xc DW_TAG_variable - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2820 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x731d:0x22 DW_TAG_lexical_block - .quad Ltmp5950 ## DW_AT_low_pc - .quad Ltmp5952 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x732e:0x10 DW_TAG_variable -Lset9520 = Ldebug_loc831-Lsection_debug_loc ## DW_AT_location - .long Lset9520 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7341:0x126 DW_TAG_subprogram - .quad Lfunc_begin38 ## DW_AT_low_pc - .quad Lfunc_end38 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4771 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2831 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x735e:0x10 DW_TAG_formal_parameter -Lset9521 = Ldebug_loc838-Lsection_debug_loc ## DW_AT_location - .long Lset9521 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2831 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x736e:0x10 DW_TAG_formal_parameter -Lset9522 = Ldebug_loc839-Lsection_debug_loc ## DW_AT_location - .long Lset9522 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2831 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x737e:0x10 DW_TAG_formal_parameter -Lset9523 = Ldebug_loc840-Lsection_debug_loc ## DW_AT_location - .long Lset9523 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2831 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x738e:0x10 DW_TAG_formal_parameter -Lset9524 = Ldebug_loc841-Lsection_debug_loc ## DW_AT_location - .long Lset9524 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2831 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x739e:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2832 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x73aa:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2833 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x73b6:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9525 = Ldebug_ranges237-Ldebug_range ## DW_AT_ranges - .long Lset9525 - .byte 1 ## DW_AT_call_file - .short 2839 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x73c2:0x9 DW_TAG_formal_parameter -Lset9526 = Ldebug_loc845-Lsection_debug_loc ## DW_AT_location - .long Lset9526 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x73cb:0x9 DW_TAG_variable -Lset9527 = Ldebug_loc846-Lsection_debug_loc ## DW_AT_location - .long Lset9527 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x73d5:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9528 = Ldebug_ranges238-Ldebug_range ## DW_AT_ranges - .long Lset9528 - .byte 1 ## DW_AT_call_file - .short 2839 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x73e1:0x9 DW_TAG_formal_parameter -Lset9529 = Ldebug_loc847-Lsection_debug_loc ## DW_AT_location - .long Lset9529 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x73ea:0x9 DW_TAG_variable -Lset9530 = Ldebug_loc848-Lsection_debug_loc ## DW_AT_location - .long Lset9530 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x73f4:0x22 DW_TAG_lexical_block - .quad Ltmp6015 ## DW_AT_low_pc - .quad Ltmp6016 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7405:0x10 DW_TAG_variable -Lset9531 = Ldebug_loc843-Lsection_debug_loc ## DW_AT_location - .long Lset9531 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2840 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x7416:0x50 DW_TAG_lexical_block - .quad Ltmp6005 ## DW_AT_low_pc - .quad Ltmp6008 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7427:0x10 DW_TAG_variable -Lset9532 = Ldebug_loc844-Lsection_debug_loc ## DW_AT_location - .long Lset9532 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2836 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7437:0xc DW_TAG_variable - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2835 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7443:0x22 DW_TAG_lexical_block - .quad Ltmp6006 ## DW_AT_low_pc - .quad Ltmp6008 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7454:0x10 DW_TAG_variable -Lset9533 = Ldebug_loc842-Lsection_debug_loc ## DW_AT_location - .long Lset9533 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7467:0xd6 DW_TAG_subprogram - .quad Lfunc_begin39 ## DW_AT_low_pc - .quad Lfunc_end39 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4784 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2847 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7484:0x10 DW_TAG_formal_parameter -Lset9534 = Ldebug_loc849-Lsection_debug_loc ## DW_AT_location - .long Lset9534 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2847 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7494:0x10 DW_TAG_formal_parameter -Lset9535 = Ldebug_loc850-Lsection_debug_loc ## DW_AT_location - .long Lset9535 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2847 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x74a4:0x10 DW_TAG_formal_parameter -Lset9536 = Ldebug_loc851-Lsection_debug_loc ## DW_AT_location - .long Lset9536 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2847 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x74b4:0x10 DW_TAG_formal_parameter -Lset9537 = Ldebug_loc852-Lsection_debug_loc ## DW_AT_location - .long Lset9537 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2847 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x74c4:0xc DW_TAG_variable - .long 5155 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2848 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x74d0:0xc DW_TAG_variable - .long 5158 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2849 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x74dc:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9538 = Ldebug_ranges239-Ldebug_range ## DW_AT_ranges - .long Lset9538 - .byte 1 ## DW_AT_call_file - .short 2850 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x74e8:0x9 DW_TAG_formal_parameter -Lset9539 = Ldebug_loc854-Lsection_debug_loc ## DW_AT_location - .long Lset9539 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x74f1:0x9 DW_TAG_variable -Lset9540 = Ldebug_loc855-Lsection_debug_loc ## DW_AT_location - .long Lset9540 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x74fb:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9541 = Ldebug_ranges240-Ldebug_range ## DW_AT_ranges - .long Lset9541 - .byte 1 ## DW_AT_call_file - .short 2850 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7507:0x9 DW_TAG_formal_parameter -Lset9542 = Ldebug_loc856-Lsection_debug_loc ## DW_AT_location - .long Lset9542 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7510:0x9 DW_TAG_variable -Lset9543 = Ldebug_loc857-Lsection_debug_loc ## DW_AT_location - .long Lset9543 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x751a:0x22 DW_TAG_lexical_block - .quad Ltmp6064 ## DW_AT_low_pc - .quad Ltmp6065 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x752b:0x10 DW_TAG_variable -Lset9544 = Ldebug_loc853-Lsection_debug_loc ## DW_AT_location - .long Lset9544 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2851 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x753d:0x15b DW_TAG_subprogram - .quad Lfunc_begin40 ## DW_AT_low_pc - .quad Lfunc_end40 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4797 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x755a:0x10 DW_TAG_formal_parameter -Lset9545 = Ldebug_loc858-Lsection_debug_loc ## DW_AT_location - .long Lset9545 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x756a:0x10 DW_TAG_formal_parameter -Lset9546 = Ldebug_loc859-Lsection_debug_loc ## DW_AT_location - .long Lset9546 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x757a:0x10 DW_TAG_formal_parameter -Lset9547 = Ldebug_loc860-Lsection_debug_loc ## DW_AT_location - .long Lset9547 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x758a:0x10 DW_TAG_formal_parameter -Lset9548 = Ldebug_loc861-Lsection_debug_loc ## DW_AT_location - .long Lset9548 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x759a:0x10 DW_TAG_variable -Lset9549 = Ldebug_loc864-Lsection_debug_loc ## DW_AT_location - .long Lset9549 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2859 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x75aa:0x10 DW_TAG_variable -Lset9550 = Ldebug_loc865-Lsection_debug_loc ## DW_AT_location - .long Lset9550 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2860 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x75ba:0x4d DW_TAG_lexical_block - .quad Ltmp6114 ## DW_AT_low_pc - .quad Ltmp6122 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x75cb:0x10 DW_TAG_variable -Lset9551 = Ldebug_loc862-Lsection_debug_loc ## DW_AT_location - .long Lset9551 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2862 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x75db:0x2b DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin - .quad Ltmp6114 ## DW_AT_low_pc - .quad Ltmp6121 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2862 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x75f3:0x9 DW_TAG_formal_parameter -Lset9552 = Ldebug_loc867-Lsection_debug_loc ## DW_AT_location - .long Lset9552 - .long 24689 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x75fc:0x9 DW_TAG_formal_parameter -Lset9553 = Ldebug_loc866-Lsection_debug_loc ## DW_AT_location - .long Lset9553 - .long 24701 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7607:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9554 = Ldebug_ranges241-Ldebug_range ## DW_AT_ranges - .long Lset9554 - .byte 1 ## DW_AT_call_file - .short 2861 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7613:0x9 DW_TAG_formal_parameter -Lset9555 = Ldebug_loc863-Lsection_debug_loc ## DW_AT_location - .long Lset9555 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x761c:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7622:0x9 DW_TAG_variable -Lset9556 = Ldebug_loc868-Lsection_debug_loc ## DW_AT_location - .long Lset9556 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x762b:0x24 DW_TAG_lexical_block - .quad Ltmp6152 ## DW_AT_low_pc - .quad Ltmp6159 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x763c:0x9 DW_TAG_variable -Lset9557 = Ldebug_loc870-Lsection_debug_loc ## DW_AT_location - .long Lset9557 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7645:0x9 DW_TAG_variable -Lset9558 = Ldebug_loc871-Lsection_debug_loc ## DW_AT_location - .long Lset9558 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7650:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9559 = Ldebug_ranges242-Ldebug_range ## DW_AT_ranges - .long Lset9559 - .byte 1 ## DW_AT_call_file - .short 2861 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x765c:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 95 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7663:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7669:0x9 DW_TAG_variable -Lset9560 = Ldebug_loc869-Lsection_debug_loc ## DW_AT_location - .long Lset9560 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7672:0x24 DW_TAG_lexical_block - .quad Ltmp6162 ## DW_AT_low_pc - .quad Ltmp6169 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7683:0x9 DW_TAG_variable -Lset9561 = Ldebug_loc872-Lsection_debug_loc ## DW_AT_location - .long Lset9561 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x768c:0x9 DW_TAG_variable -Lset9562 = Ldebug_loc873-Lsection_debug_loc ## DW_AT_location - .long Lset9562 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7698:0x146 DW_TAG_subprogram - .quad Lfunc_begin41 ## DW_AT_low_pc - .quad Lfunc_end41 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4810 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x76b5:0x10 DW_TAG_formal_parameter -Lset9563 = Ldebug_loc874-Lsection_debug_loc ## DW_AT_location - .long Lset9563 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x76c5:0x10 DW_TAG_formal_parameter -Lset9564 = Ldebug_loc875-Lsection_debug_loc ## DW_AT_location - .long Lset9564 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x76d5:0x10 DW_TAG_formal_parameter -Lset9565 = Ldebug_loc876-Lsection_debug_loc ## DW_AT_location - .long Lset9565 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x76e5:0x10 DW_TAG_formal_parameter -Lset9566 = Ldebug_loc877-Lsection_debug_loc ## DW_AT_location - .long Lset9566 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x76f5:0x10 DW_TAG_variable -Lset9567 = Ldebug_loc880-Lsection_debug_loc ## DW_AT_location - .long Lset9567 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2870 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7705:0x10 DW_TAG_variable -Lset9568 = Ldebug_loc881-Lsection_debug_loc ## DW_AT_location - .long Lset9568 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2871 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7715:0x38 DW_TAG_lexical_block - .quad Ltmp6190 ## DW_AT_low_pc - .quad Ltmp6201 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7726:0x10 DW_TAG_variable -Lset9569 = Ldebug_loc878-Lsection_debug_loc ## DW_AT_location - .long Lset9569 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2873 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x7736:0x16 DW_TAG_inlined_subroutine - .long 24673 ## DW_AT_abstract_origin -Lset9570 = Ldebug_ranges243-Ldebug_range ## DW_AT_ranges - .long Lset9570 - .byte 1 ## DW_AT_call_file - .short 2873 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7742:0x9 DW_TAG_formal_parameter -Lset9571 = Ldebug_loc882-Lsection_debug_loc ## DW_AT_location - .long Lset9571 - .long 24689 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x774d:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9572 = Ldebug_ranges244-Ldebug_range ## DW_AT_ranges - .long Lset9572 - .byte 1 ## DW_AT_call_file - .short 2872 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7759:0x9 DW_TAG_formal_parameter -Lset9573 = Ldebug_loc879-Lsection_debug_loc ## DW_AT_location - .long Lset9573 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7762:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7768:0x9 DW_TAG_variable -Lset9574 = Ldebug_loc883-Lsection_debug_loc ## DW_AT_location - .long Lset9574 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7771:0x24 DW_TAG_lexical_block - .quad Ltmp6231 ## DW_AT_low_pc - .quad Ltmp6238 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7782:0x9 DW_TAG_variable -Lset9575 = Ldebug_loc885-Lsection_debug_loc ## DW_AT_location - .long Lset9575 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x778b:0x9 DW_TAG_variable -Lset9576 = Ldebug_loc886-Lsection_debug_loc ## DW_AT_location - .long Lset9576 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7796:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9577 = Ldebug_ranges245-Ldebug_range ## DW_AT_ranges - .long Lset9577 - .byte 1 ## DW_AT_call_file - .short 2872 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x77a2:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 95 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x77a9:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x77af:0x9 DW_TAG_variable -Lset9578 = Ldebug_loc884-Lsection_debug_loc ## DW_AT_location - .long Lset9578 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x77b8:0x24 DW_TAG_lexical_block - .quad Ltmp6241 ## DW_AT_low_pc - .quad Ltmp6248 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x77c9:0x9 DW_TAG_variable -Lset9579 = Ldebug_loc887-Lsection_debug_loc ## DW_AT_location - .long Lset9579 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x77d2:0x9 DW_TAG_variable -Lset9580 = Ldebug_loc888-Lsection_debug_loc ## DW_AT_location - .long Lset9580 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x77de:0x130 DW_TAG_subprogram - .quad Lfunc_begin42 ## DW_AT_low_pc - .quad Lfunc_end42 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4823 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x77fb:0x10 DW_TAG_formal_parameter -Lset9581 = Ldebug_loc889-Lsection_debug_loc ## DW_AT_location - .long Lset9581 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x780b:0x10 DW_TAG_formal_parameter -Lset9582 = Ldebug_loc890-Lsection_debug_loc ## DW_AT_location - .long Lset9582 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x781b:0x10 DW_TAG_formal_parameter -Lset9583 = Ldebug_loc891-Lsection_debug_loc ## DW_AT_location - .long Lset9583 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x782b:0x10 DW_TAG_formal_parameter -Lset9584 = Ldebug_loc892-Lsection_debug_loc ## DW_AT_location - .long Lset9584 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x783b:0x10 DW_TAG_variable -Lset9585 = Ldebug_loc895-Lsection_debug_loc ## DW_AT_location - .long Lset9585 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2881 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x784b:0x10 DW_TAG_variable -Lset9586 = Ldebug_loc896-Lsection_debug_loc ## DW_AT_location - .long Lset9586 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2882 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x785b:0x22 DW_TAG_lexical_block - .quad Ltmp6269 ## DW_AT_low_pc - .quad Ltmp6270 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x786c:0x10 DW_TAG_variable -Lset9587 = Ldebug_loc893-Lsection_debug_loc ## DW_AT_location - .long Lset9587 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2884 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x787d:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9588 = Ldebug_ranges246-Ldebug_range ## DW_AT_ranges - .long Lset9588 - .byte 1 ## DW_AT_call_file - .short 2883 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7889:0x9 DW_TAG_formal_parameter -Lset9589 = Ldebug_loc894-Lsection_debug_loc ## DW_AT_location - .long Lset9589 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7892:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7898:0x9 DW_TAG_variable -Lset9590 = Ldebug_loc897-Lsection_debug_loc ## DW_AT_location - .long Lset9590 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x78a1:0x24 DW_TAG_lexical_block - .quad Ltmp6300 ## DW_AT_low_pc - .quad Ltmp6307 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x78b2:0x9 DW_TAG_variable -Lset9591 = Ldebug_loc899-Lsection_debug_loc ## DW_AT_location - .long Lset9591 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x78bb:0x9 DW_TAG_variable -Lset9592 = Ldebug_loc900-Lsection_debug_loc ## DW_AT_location - .long Lset9592 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x78c6:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9593 = Ldebug_ranges247-Ldebug_range ## DW_AT_ranges - .long Lset9593 - .byte 1 ## DW_AT_call_file - .short 2883 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x78d2:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 95 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x78d9:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x78df:0x9 DW_TAG_variable -Lset9594 = Ldebug_loc898-Lsection_debug_loc ## DW_AT_location - .long Lset9594 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x78e8:0x24 DW_TAG_lexical_block - .quad Ltmp6310 ## DW_AT_low_pc - .quad Ltmp6317 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x78f9:0x9 DW_TAG_variable -Lset9595 = Ldebug_loc901-Lsection_debug_loc ## DW_AT_location - .long Lset9595 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7902:0x9 DW_TAG_variable -Lset9596 = Ldebug_loc902-Lsection_debug_loc ## DW_AT_location - .long Lset9596 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x790e:0x130 DW_TAG_subprogram - .quad Lfunc_begin43 ## DW_AT_low_pc - .quad Lfunc_end43 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4837 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x792b:0x10 DW_TAG_formal_parameter -Lset9597 = Ldebug_loc903-Lsection_debug_loc ## DW_AT_location - .long Lset9597 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x793b:0x10 DW_TAG_formal_parameter -Lset9598 = Ldebug_loc904-Lsection_debug_loc ## DW_AT_location - .long Lset9598 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x794b:0x10 DW_TAG_formal_parameter -Lset9599 = Ldebug_loc905-Lsection_debug_loc ## DW_AT_location - .long Lset9599 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x795b:0x10 DW_TAG_formal_parameter -Lset9600 = Ldebug_loc906-Lsection_debug_loc ## DW_AT_location - .long Lset9600 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x796b:0x10 DW_TAG_variable -Lset9601 = Ldebug_loc909-Lsection_debug_loc ## DW_AT_location - .long Lset9601 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2892 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x797b:0x10 DW_TAG_variable -Lset9602 = Ldebug_loc910-Lsection_debug_loc ## DW_AT_location - .long Lset9602 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2893 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x798b:0x22 DW_TAG_lexical_block - .quad Ltmp6338 ## DW_AT_low_pc - .quad Ltmp6339 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x799c:0x10 DW_TAG_variable -Lset9603 = Ldebug_loc907-Lsection_debug_loc ## DW_AT_location - .long Lset9603 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2895 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x79ad:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9604 = Ldebug_ranges248-Ldebug_range ## DW_AT_ranges - .long Lset9604 - .byte 1 ## DW_AT_call_file - .short 2894 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x79b9:0x9 DW_TAG_formal_parameter -Lset9605 = Ldebug_loc908-Lsection_debug_loc ## DW_AT_location - .long Lset9605 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x79c2:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x79c8:0x9 DW_TAG_variable -Lset9606 = Ldebug_loc911-Lsection_debug_loc ## DW_AT_location - .long Lset9606 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x79d1:0x24 DW_TAG_lexical_block - .quad Ltmp6369 ## DW_AT_low_pc - .quad Ltmp6376 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x79e2:0x9 DW_TAG_variable -Lset9607 = Ldebug_loc913-Lsection_debug_loc ## DW_AT_location - .long Lset9607 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x79eb:0x9 DW_TAG_variable -Lset9608 = Ldebug_loc914-Lsection_debug_loc ## DW_AT_location - .long Lset9608 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x79f6:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9609 = Ldebug_ranges249-Ldebug_range ## DW_AT_ranges - .long Lset9609 - .byte 1 ## DW_AT_call_file - .short 2894 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x7a02:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 95 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7a09:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7a0f:0x9 DW_TAG_variable -Lset9610 = Ldebug_loc912-Lsection_debug_loc ## DW_AT_location - .long Lset9610 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7a18:0x24 DW_TAG_lexical_block - .quad Ltmp6379 ## DW_AT_low_pc - .quad Ltmp6386 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7a29:0x9 DW_TAG_variable -Lset9611 = Ldebug_loc915-Lsection_debug_loc ## DW_AT_location - .long Lset9611 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7a32:0x9 DW_TAG_variable -Lset9612 = Ldebug_loc916-Lsection_debug_loc ## DW_AT_location - .long Lset9612 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7a3e:0x130 DW_TAG_subprogram - .quad Lfunc_begin44 ## DW_AT_low_pc - .quad Lfunc_end44 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4850 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7a5b:0x10 DW_TAG_formal_parameter -Lset9613 = Ldebug_loc917-Lsection_debug_loc ## DW_AT_location - .long Lset9613 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7a6b:0x10 DW_TAG_formal_parameter -Lset9614 = Ldebug_loc918-Lsection_debug_loc ## DW_AT_location - .long Lset9614 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7a7b:0x10 DW_TAG_formal_parameter -Lset9615 = Ldebug_loc919-Lsection_debug_loc ## DW_AT_location - .long Lset9615 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7a8b:0x10 DW_TAG_formal_parameter -Lset9616 = Ldebug_loc920-Lsection_debug_loc ## DW_AT_location - .long Lset9616 - .long 5062 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7a9b:0x10 DW_TAG_variable -Lset9617 = Ldebug_loc923-Lsection_debug_loc ## DW_AT_location - .long Lset9617 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2903 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7aab:0x10 DW_TAG_variable -Lset9618 = Ldebug_loc924-Lsection_debug_loc ## DW_AT_location - .long Lset9618 - .long 5065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2904 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7abb:0x22 DW_TAG_lexical_block - .quad Ltmp6407 ## DW_AT_low_pc - .quad Ltmp6408 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7acc:0x10 DW_TAG_variable -Lset9619 = Ldebug_loc921-Lsection_debug_loc ## DW_AT_location - .long Lset9619 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2906 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7add:0x49 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9620 = Ldebug_ranges250-Ldebug_range ## DW_AT_ranges - .long Lset9620 - .byte 1 ## DW_AT_call_file - .short 2905 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7ae9:0x9 DW_TAG_formal_parameter -Lset9621 = Ldebug_loc922-Lsection_debug_loc ## DW_AT_location - .long Lset9621 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7af2:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7af8:0x9 DW_TAG_variable -Lset9622 = Ldebug_loc925-Lsection_debug_loc ## DW_AT_location - .long Lset9622 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7b01:0x24 DW_TAG_lexical_block - .quad Ltmp6438 ## DW_AT_low_pc - .quad Ltmp6445 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7b12:0x9 DW_TAG_variable -Lset9623 = Ldebug_loc927-Lsection_debug_loc ## DW_AT_location - .long Lset9623 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7b1b:0x9 DW_TAG_variable -Lset9624 = Ldebug_loc928-Lsection_debug_loc ## DW_AT_location - .long Lset9624 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7b26:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9625 = Ldebug_ranges251-Ldebug_range ## DW_AT_ranges - .long Lset9625 - .byte 1 ## DW_AT_call_file - .short 2905 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x7b32:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 95 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7b39:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7b3f:0x9 DW_TAG_variable -Lset9626 = Ldebug_loc926-Lsection_debug_loc ## DW_AT_location - .long Lset9626 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7b48:0x24 DW_TAG_lexical_block - .quad Ltmp6448 ## DW_AT_low_pc - .quad Ltmp6455 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7b59:0x9 DW_TAG_variable -Lset9627 = Ldebug_loc929-Lsection_debug_loc ## DW_AT_location - .long Lset9627 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7b62:0x9 DW_TAG_variable -Lset9628 = Ldebug_loc930-Lsection_debug_loc ## DW_AT_location - .long Lset9628 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7b6e:0xc7 DW_TAG_subprogram - .quad Lfunc_begin45 ## DW_AT_low_pc - .quad Lfunc_end45 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4864 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7b8b:0x10 DW_TAG_formal_parameter -Lset9629 = Ldebug_loc931-Lsection_debug_loc ## DW_AT_location - .long Lset9629 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7b9b:0x10 DW_TAG_formal_parameter -Lset9630 = Ldebug_loc932-Lsection_debug_loc ## DW_AT_location - .long Lset9630 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7bab:0x10 DW_TAG_formal_parameter -Lset9631 = Ldebug_loc933-Lsection_debug_loc ## DW_AT_location - .long Lset9631 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7bbb:0x10 DW_TAG_variable -Lset9632 = Ldebug_loc935-Lsection_debug_loc ## DW_AT_location - .long Lset9632 - .long 5068 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2914 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7bcb:0x22 DW_TAG_lexical_block - .quad Ltmp6474 ## DW_AT_low_pc - .quad Ltmp6475 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7bdc:0x10 DW_TAG_variable -Lset9633 = Ldebug_loc934-Lsection_debug_loc ## DW_AT_location - .long Lset9633 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2915 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x7bed:0x47 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9634 = Ldebug_ranges252-Ldebug_range ## DW_AT_ranges - .long Lset9634 - .byte 1 ## DW_AT_call_file - .short 2915 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x7bf9:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 93 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x7c00:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7c06:0x9 DW_TAG_variable -Lset9635 = Ldebug_loc936-Lsection_debug_loc ## DW_AT_location - .long Lset9635 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x7c0f:0x24 DW_TAG_lexical_block - .quad Ltmp6490 ## DW_AT_low_pc - .quad Ltmp6497 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x7c20:0x9 DW_TAG_variable -Lset9636 = Ldebug_loc937-Lsection_debug_loc ## DW_AT_location - .long Lset9636 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7c29:0x9 DW_TAG_variable -Lset9637 = Ldebug_loc938-Lsection_debug_loc ## DW_AT_location - .long Lset9637 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7c35:0xb0 DW_TAG_subprogram - .quad Lfunc_begin46 ## DW_AT_low_pc - .quad Lfunc_end46 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2927 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x7c52:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2927 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 64 ## Abbrev [64] 0x7c60:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2927 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7c6e:0x10 DW_TAG_formal_parameter -Lset9638 = Ldebug_loc939-Lsection_debug_loc ## DW_AT_location - .long Lset9638 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2927 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 64 ## Abbrev [64] 0x7c7e:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 82 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2927 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7c8c:0x58 DW_TAG_lexical_block -Lset9639 = Ldebug_ranges253-Ldebug_range ## DW_AT_ranges - .long Lset9639 - .byte 5 ## Abbrev [5] 0x7c91:0x10 DW_TAG_variable -Lset9640 = Ldebug_loc941-Lsection_debug_loc ## DW_AT_location - .long Lset9640 - .long 5004 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2928 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x7ca1:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp6501 ## DW_AT_low_pc - .quad Ltmp6506 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2928 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x7cb9:0x9 DW_TAG_variable -Lset9641 = Ldebug_loc940-Lsection_debug_loc ## DW_AT_location - .long Lset9641 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x7cc3:0x20 DW_TAG_lexical_block - .quad Ltmp6509 ## DW_AT_low_pc - .quad Ltmp6510 ## DW_AT_high_pc - .byte 59 ## Abbrev [59] 0x7cd4:0xe DW_TAG_variable - .byte 1 ## DW_AT_location - .byte 82 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2928 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7ce5:0x94 DW_TAG_subprogram - .quad Lfunc_begin47 ## DW_AT_low_pc - .quad Lfunc_end47 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4899 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2938 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x7d02:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2938 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7d10:0x10 DW_TAG_formal_parameter -Lset9642 = Ldebug_loc942-Lsection_debug_loc ## DW_AT_location - .long Lset9642 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2938 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7d20:0x10 DW_TAG_formal_parameter -Lset9643 = Ldebug_loc943-Lsection_debug_loc ## DW_AT_location - .long Lset9643 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2938 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7d30:0x10 DW_TAG_formal_parameter -Lset9644 = Ldebug_loc944-Lsection_debug_loc ## DW_AT_location - .long Lset9644 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2938 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7d40:0x38 DW_TAG_lexical_block -Lset9645 = Ldebug_ranges254-Ldebug_range ## DW_AT_ranges - .long Lset9645 - .byte 5 ## Abbrev [5] 0x7d45:0x10 DW_TAG_variable -Lset9646 = Ldebug_loc946-Lsection_debug_loc ## DW_AT_location - .long Lset9646 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2939 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x7d55:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp6531 ## DW_AT_low_pc - .quad Ltmp6536 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2939 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x7d6d:0x9 DW_TAG_variable -Lset9647 = Ldebug_loc945-Lsection_debug_loc ## DW_AT_location - .long Lset9647 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7d79:0x18a DW_TAG_subprogram - .quad Lfunc_begin48 ## DW_AT_low_pc - .quad Lfunc_end48 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4920 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2948 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7d96:0x10 DW_TAG_formal_parameter -Lset9648 = Ldebug_loc947-Lsection_debug_loc ## DW_AT_location - .long Lset9648 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2948 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7da6:0x10 DW_TAG_formal_parameter -Lset9649 = Ldebug_loc948-Lsection_debug_loc ## DW_AT_location - .long Lset9649 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2948 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7db6:0x10 DW_TAG_formal_parameter -Lset9650 = Ldebug_loc949-Lsection_debug_loc ## DW_AT_location - .long Lset9650 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2948 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7dc6:0x10 DW_TAG_formal_parameter -Lset9651 = Ldebug_loc950-Lsection_debug_loc ## DW_AT_location - .long Lset9651 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2948 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7dd6:0x58 DW_TAG_lexical_block -Lset9652 = Ldebug_ranges255-Ldebug_range ## DW_AT_ranges - .long Lset9652 - .byte 5 ## Abbrev [5] 0x7ddb:0x10 DW_TAG_variable -Lset9653 = Ldebug_loc954-Lsection_debug_loc ## DW_AT_location - .long Lset9653 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7deb:0x10 DW_TAG_variable -Lset9654 = Ldebug_loc955-Lsection_debug_loc ## DW_AT_location - .long Lset9654 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7dfb:0x10 DW_TAG_variable -Lset9655 = Ldebug_loc956-Lsection_debug_loc ## DW_AT_location - .long Lset9655 - .long 3106 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7e0b:0x22 DW_TAG_lexical_block - .quad Ltmp6575 ## DW_AT_low_pc - .quad Ltmp6576 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7e1c:0x10 DW_TAG_variable -Lset9656 = Ldebug_loc953-Lsection_debug_loc ## DW_AT_location - .long Lset9656 - .long 4992 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7e2e:0x5e DW_TAG_lexical_block -Lset9657 = Ldebug_ranges257-Ldebug_range ## DW_AT_ranges - .long Lset9657 - .byte 5 ## Abbrev [5] 0x7e33:0x10 DW_TAG_variable -Lset9658 = Ldebug_loc957-Lsection_debug_loc ## DW_AT_location - .long Lset9658 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7e43:0x48 DW_TAG_lexical_block -Lset9659 = Ldebug_ranges256-Ldebug_range ## DW_AT_ranges - .long Lset9659 - .byte 5 ## Abbrev [5] 0x7e48:0x10 DW_TAG_variable -Lset9660 = Ldebug_loc958-Lsection_debug_loc ## DW_AT_location - .long Lset9660 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7e58:0x10 DW_TAG_variable -Lset9661 = Ldebug_loc959-Lsection_debug_loc ## DW_AT_location - .long Lset9661 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7e68:0x22 DW_TAG_lexical_block - .quad Ltmp6582 ## DW_AT_low_pc - .quad Ltmp6584 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7e79:0x10 DW_TAG_variable -Lset9662 = Ldebug_loc952-Lsection_debug_loc ## DW_AT_location - .long Lset9662 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x7e8c:0x76 DW_TAG_lexical_block - .quad Ltmp6588 ## DW_AT_low_pc - .quad Ltmp6594 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7e9d:0x10 DW_TAG_variable -Lset9663 = Ldebug_loc960-Lsection_debug_loc ## DW_AT_location - .long Lset9663 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7ead:0x54 DW_TAG_lexical_block - .quad Ltmp6589 ## DW_AT_low_pc - .quad Ltmp6594 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7ebe:0x10 DW_TAG_variable -Lset9664 = Ldebug_loc961-Lsection_debug_loc ## DW_AT_location - .long Lset9664 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7ece:0x10 DW_TAG_variable -Lset9665 = Ldebug_loc962-Lsection_debug_loc ## DW_AT_location - .long Lset9665 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7ede:0x22 DW_TAG_lexical_block - .quad Ltmp6592 ## DW_AT_low_pc - .quad Ltmp6594 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7eef:0x10 DW_TAG_variable -Lset9666 = Ldebug_loc951-Lsection_debug_loc ## DW_AT_location - .long Lset9666 - .long 4331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x7f03:0x22b DW_TAG_subprogram - .quad Lfunc_begin49 ## DW_AT_low_pc - .quad Lfunc_end49 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4937 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2959 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7f20:0x10 DW_TAG_formal_parameter -Lset9667 = Ldebug_loc963-Lsection_debug_loc ## DW_AT_location - .long Lset9667 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2959 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7f30:0x10 DW_TAG_formal_parameter -Lset9668 = Ldebug_loc964-Lsection_debug_loc ## DW_AT_location - .long Lset9668 - .long 4267 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2959 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7f40:0x10 DW_TAG_formal_parameter -Lset9669 = Ldebug_loc965-Lsection_debug_loc ## DW_AT_location - .long Lset9669 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2959 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7f50:0x10 DW_TAG_formal_parameter -Lset9670 = Ldebug_loc966-Lsection_debug_loc ## DW_AT_location - .long Lset9670 - .long 4983 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2959 ## DW_AT_decl_line - .long 17080 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7f60:0x36 DW_TAG_lexical_block -Lset9671 = Ldebug_ranges258-Ldebug_range ## DW_AT_ranges - .long Lset9671 - .byte 5 ## Abbrev [5] 0x7f65:0x10 DW_TAG_variable -Lset9672 = Ldebug_loc967-Lsection_debug_loc ## DW_AT_location - .long Lset9672 - .long 3780 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7f75:0x10 DW_TAG_variable -Lset9673 = Ldebug_loc968-Lsection_debug_loc ## DW_AT_location - .long Lset9673 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7f85:0x10 DW_TAG_variable -Lset9674 = Ldebug_loc969-Lsection_debug_loc ## DW_AT_location - .long Lset9674 - .long 4987 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20223 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7f96:0xc5 DW_TAG_lexical_block -Lset9675 = Ldebug_ranges263-Ldebug_range ## DW_AT_ranges - .long Lset9675 - .byte 5 ## Abbrev [5] 0x7f9b:0x10 DW_TAG_variable -Lset9676 = Ldebug_loc970-Lsection_debug_loc ## DW_AT_location - .long Lset9676 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7fab:0x63 DW_TAG_lexical_block -Lset9677 = Ldebug_ranges260-Ldebug_range ## DW_AT_ranges - .long Lset9677 - .byte 8 ## Abbrev [8] 0x7fb0:0xc DW_TAG_variable - .long 5013 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 15759 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x7fbc:0x1f DW_TAG_inlined_subroutine - .long 20569 ## DW_AT_abstract_origin -Lset9678 = Ldebug_ranges259-Ldebug_range ## DW_AT_ranges - .long Lset9678 - .byte 1 ## DW_AT_call_file - .short 2960 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7fc8:0x9 DW_TAG_formal_parameter -Lset9679 = Ldebug_loc978-Lsection_debug_loc ## DW_AT_location - .long Lset9679 - .long 20584 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x7fd1:0x9 DW_TAG_variable -Lset9680 = Ldebug_loc977-Lsection_debug_loc ## DW_AT_location - .long Lset9680 - .long 20606 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x7fdb:0x32 DW_TAG_lexical_block - .quad Ltmp6682 ## DW_AT_low_pc - .quad Ltmp6687 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x7fec:0x10 DW_TAG_variable -Lset9681 = Ldebug_loc980-Lsection_debug_loc ## DW_AT_location - .long Lset9681 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7ffc:0x10 DW_TAG_variable -Lset9682 = Ldebug_loc981-Lsection_debug_loc ## DW_AT_location - .long Lset9682 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x800e:0x26 DW_TAG_lexical_block -Lset9683 = Ldebug_ranges261-Ldebug_range ## DW_AT_ranges - .long Lset9683 - .byte 5 ## Abbrev [5] 0x8013:0x10 DW_TAG_variable -Lset9684 = Ldebug_loc975-Lsection_debug_loc ## DW_AT_location - .long Lset9684 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x8023:0x10 DW_TAG_variable -Lset9685 = Ldebug_loc976-Lsection_debug_loc ## DW_AT_location - .long Lset9685 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x8034:0x26 DW_TAG_lexical_block -Lset9686 = Ldebug_ranges262-Ldebug_range ## DW_AT_ranges - .long Lset9686 - .byte 5 ## Abbrev [5] 0x8039:0x10 DW_TAG_variable -Lset9687 = Ldebug_loc971-Lsection_debug_loc ## DW_AT_location - .long Lset9687 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x8049:0x10 DW_TAG_variable -Lset9688 = Ldebug_loc974-Lsection_debug_loc ## DW_AT_location - .long Lset9688 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20201 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x805b:0xd2 DW_TAG_lexical_block -Lset9689 = Ldebug_ranges268-Ldebug_range ## DW_AT_ranges - .long Lset9689 - .byte 5 ## Abbrev [5] 0x8060:0x10 DW_TAG_variable -Lset9690 = Ldebug_loc972-Lsection_debug_loc ## DW_AT_location - .long Lset9690 - .long 3878 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 24656 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x8070:0x22 DW_TAG_lexical_block -Lset9691 = Ldebug_ranges264-Ldebug_range ## DW_AT_ranges - .long Lset9691 - .byte 5 ## Abbrev [5] 0x8075:0x10 DW_TAG_variable -Lset9692 = Ldebug_loc973-Lsection_debug_loc ## DW_AT_location - .long Lset9692 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x8085:0xc DW_TAG_variable - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x8092:0x9a DW_TAG_lexical_block -Lset9693 = Ldebug_ranges267-Ldebug_range ## DW_AT_ranges - .long Lset9693 - .byte 12 ## Abbrev [12] 0x8097:0xd DW_TAG_variable - .byte 0 ## DW_AT_const_value - .long 3393 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 18894 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x80a4:0x55 DW_TAG_inlined_subroutine - .long 21543 ## DW_AT_abstract_origin -Lset9694 = Ldebug_ranges265-Ldebug_range ## DW_AT_ranges - .long Lset9694 - .byte 1 ## DW_AT_call_file - .short 2960 ## DW_AT_call_line - .byte 13 ## Abbrev [13] 0x80b0:0x48 DW_TAG_inlined_subroutine - .long 20380 ## DW_AT_abstract_origin -Lset9695 = Ldebug_ranges266-Ldebug_range ## DW_AT_ranges - .long Lset9695 - .byte 1 ## DW_AT_call_file - .byte 129 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x80bb:0x9 DW_TAG_formal_parameter -Lset9696 = Ldebug_loc982-Lsection_debug_loc ## DW_AT_location - .long Lset9696 - .long 20395 ## DW_AT_abstract_origin - .byte 14 ## Abbrev [14] 0x80c4:0x6 DW_TAG_formal_parameter - .byte 0 ## DW_AT_const_value - .long 20417 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x80ca:0x9 DW_TAG_variable -Lset9697 = Ldebug_loc979-Lsection_debug_loc ## DW_AT_location - .long Lset9697 - .long 20428 ## DW_AT_abstract_origin - .byte 7 ## Abbrev [7] 0x80d3:0x24 DW_TAG_lexical_block - .quad Ltmp6693 ## DW_AT_low_pc - .quad Ltmp6700 ## DW_AT_high_pc - .byte 11 ## Abbrev [11] 0x80e4:0x9 DW_TAG_variable -Lset9698 = Ldebug_loc983-Lsection_debug_loc ## DW_AT_location - .long Lset9698 - .long 20440 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x80ed:0x9 DW_TAG_variable -Lset9699 = Ldebug_loc984-Lsection_debug_loc ## DW_AT_location - .long Lset9699 - .long 20451 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 7 ## Abbrev [7] 0x80f9:0x32 DW_TAG_lexical_block - .quad Ltmp6700 ## DW_AT_low_pc - .quad Ltmp6707 ## DW_AT_high_pc - .byte 5 ## Abbrev [5] 0x810a:0x10 DW_TAG_variable -Lset9700 = Ldebug_loc985-Lsection_debug_loc ## DW_AT_location - .long Lset9700 - .long 5008 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 16137 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x811a:0x10 DW_TAG_variable -Lset9701 = Ldebug_loc986-Lsection_debug_loc ## DW_AT_location - .long Lset9701 - .long 3491 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 20206 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 55 ## Abbrev [55] 0x812e:0xc2 DW_TAG_subprogram - .quad Lfunc_begin50 ## DW_AT_low_pc - .quad Lfunc_end50 ## DW_AT_high_pc - .byte 1 ## DW_AT_frame_base - .byte 86 - .long 4954 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2967 ## DW_AT_decl_line - .byte 1 ## DW_AT_prototyped - .byte 1 ## DW_AT_external - .byte 1 ## DW_AT_APPLE_optimized - .byte 64 ## Abbrev [64] 0x814b:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 4280 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2967 ## DW_AT_decl_line - .long 16695 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x8159:0x10 DW_TAG_formal_parameter -Lset9702 = Ldebug_loc987-Lsection_debug_loc ## DW_AT_location - .long Lset9702 - .long 4321 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2967 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x8169:0x10 DW_TAG_formal_parameter -Lset9703 = Ldebug_loc988-Lsection_debug_loc ## DW_AT_location - .long Lset9703 - .long 5037 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2967 ## DW_AT_decl_line - .long 16503 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x8179:0x10 DW_TAG_variable -Lset9704 = Ldebug_loc989-Lsection_debug_loc ## DW_AT_location - .long Lset9704 - .long 4269 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 17850 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x8189:0x66 DW_TAG_inlined_subroutine - .long 25137 ## DW_AT_abstract_origin - .quad Ltmp6717 ## DW_AT_low_pc - .quad Ltmp6734 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 2972 ## DW_AT_call_line - .byte 61 ## Abbrev [61] 0x81a1:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 25152 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x81a8:0x9 DW_TAG_formal_parameter -Lset9705 = Ldebug_loc990-Lsection_debug_loc ## DW_AT_location - .long Lset9705 - .long 25164 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x81b1:0x9 DW_TAG_formal_parameter -Lset9706 = Ldebug_loc991-Lsection_debug_loc ## DW_AT_location - .long Lset9706 - .long 25176 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x81ba:0x9 DW_TAG_variable -Lset9707 = Ldebug_loc992-Lsection_debug_loc ## DW_AT_location - .long Lset9707 - .long 25188 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x81c3:0x9 DW_TAG_variable -Lset9708 = Ldebug_loc994-Lsection_debug_loc ## DW_AT_location - .long Lset9708 - .long 25200 ## DW_AT_abstract_origin - .byte 15 ## Abbrev [15] 0x81cc:0x22 DW_TAG_inlined_subroutine - .long 24582 ## DW_AT_abstract_origin - .quad Ltmp6725 ## DW_AT_low_pc - .quad Ltmp6730 ## DW_AT_high_pc - .byte 1 ## DW_AT_call_file - .short 1133 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x81e4:0x9 DW_TAG_variable -Lset9709 = Ldebug_loc993-Lsection_debug_loc ## DW_AT_location - .long Lset9709 - .long 24618 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x81f0:0xc DW_TAG_array_type - .long 15782 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x81f5:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 40 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 17 ## Abbrev [17] 0x81fc:0xc DW_TAG_array_type - .long 15782 ## DW_AT_type - .byte 18 ## Abbrev [18] 0x8201:0x6 DW_TAG_subrange_type - .long 14772 ## DW_AT_type - .byte 100 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .section __DWARF,__debug_ranges,regular,debug -Ldebug_range: -Ldebug_ranges0: -Lset9710 = Ltmp68-Lfunc_begin0 - .quad Lset9710 -Lset9711 = Ltmp77-Lfunc_begin0 - .quad Lset9711 -Lset9712 = Ltmp78-Lfunc_begin0 - .quad Lset9712 -Lset9713 = Ltmp87-Lfunc_begin0 - .quad Lset9713 - .quad 0 - .quad 0 -Ldebug_ranges1: -Lset9714 = Ltmp102-Lfunc_begin0 - .quad Lset9714 -Lset9715 = Ltmp111-Lfunc_begin0 - .quad Lset9715 -Lset9716 = Ltmp112-Lfunc_begin0 - .quad Lset9716 -Lset9717 = Ltmp127-Lfunc_begin0 - .quad Lset9717 - .quad 0 - .quad 0 -Ldebug_ranges2: -Lset9718 = Ltmp127-Lfunc_begin0 - .quad Lset9718 -Lset9719 = Ltmp128-Lfunc_begin0 - .quad Lset9719 -Lset9720 = Ltmp138-Lfunc_begin0 - .quad Lset9720 -Lset9721 = Ltmp154-Lfunc_begin0 - .quad Lset9721 - .quad 0 - .quad 0 -Ldebug_ranges3: -Lset9722 = Ltmp127-Lfunc_begin0 - .quad Lset9722 -Lset9723 = Ltmp137-Lfunc_begin0 - .quad Lset9723 -Lset9724 = Ltmp138-Lfunc_begin0 - .quad Lset9724 -Lset9725 = Ltmp154-Lfunc_begin0 - .quad Lset9725 - .quad 0 - .quad 0 -Ldebug_ranges4: -Lset9726 = Ltmp212-Lfunc_begin0 - .quad Lset9726 -Lset9727 = Ltmp216-Lfunc_begin0 - .quad Lset9727 -Lset9728 = Ltmp217-Lfunc_begin0 - .quad Lset9728 -Lset9729 = Ltmp219-Lfunc_begin0 - .quad Lset9729 -Lset9730 = Ltmp230-Lfunc_begin0 - .quad Lset9730 -Lset9731 = Ltmp238-Lfunc_begin0 - .quad Lset9731 - .quad 0 - .quad 0 -Ldebug_ranges5: -Lset9732 = Ltmp210-Lfunc_begin0 - .quad Lset9732 -Lset9733 = Ltmp227-Lfunc_begin0 - .quad Lset9733 -Lset9734 = Ltmp230-Lfunc_begin0 - .quad Lset9734 -Lset9735 = Ltmp245-Lfunc_begin0 - .quad Lset9735 -Lset9736 = Ltmp246-Lfunc_begin0 - .quad Lset9736 -Lset9737 = Ltmp247-Lfunc_begin0 - .quad Lset9737 - .quad 0 - .quad 0 -Ldebug_ranges6: -Lset9738 = Ltmp262-Lfunc_begin0 - .quad Lset9738 -Lset9739 = Ltmp268-Lfunc_begin0 - .quad Lset9739 -Lset9740 = Ltmp290-Lfunc_begin0 - .quad Lset9740 -Lset9741 = Ltmp292-Lfunc_begin0 - .quad Lset9741 - .quad 0 - .quad 0 -Ldebug_ranges7: -Lset9742 = Ltmp261-Lfunc_begin0 - .quad Lset9742 -Lset9743 = Ltmp272-Lfunc_begin0 - .quad Lset9743 -Lset9744 = Ltmp281-Lfunc_begin0 - .quad Lset9744 -Lset9745 = Ltmp282-Lfunc_begin0 - .quad Lset9745 -Lset9746 = Ltmp290-Lfunc_begin0 - .quad Lset9746 -Lset9747 = Ltmp292-Lfunc_begin0 - .quad Lset9747 -Lset9748 = Ltmp293-Lfunc_begin0 - .quad Lset9748 -Lset9749 = Ltmp294-Lfunc_begin0 - .quad Lset9749 - .quad 0 - .quad 0 -Ldebug_ranges8: -Lset9750 = Ltmp276-Lfunc_begin0 - .quad Lset9750 -Lset9751 = Ltmp281-Lfunc_begin0 - .quad Lset9751 -Lset9752 = Ltmp295-Lfunc_begin0 - .quad Lset9752 -Lset9753 = Ltmp296-Lfunc_begin0 - .quad Lset9753 - .quad 0 - .quad 0 -Ldebug_ranges9: -Lset9754 = Ltmp274-Lfunc_begin0 - .quad Lset9754 -Lset9755 = Ltmp281-Lfunc_begin0 - .quad Lset9755 -Lset9756 = Ltmp294-Lfunc_begin0 - .quad Lset9756 -Lset9757 = Ltmp296-Lfunc_begin0 - .quad Lset9757 - .quad 0 - .quad 0 -Ldebug_ranges10: -Lset9758 = Ltmp311-Lfunc_begin0 - .quad Lset9758 -Lset9759 = Ltmp317-Lfunc_begin0 - .quad Lset9759 -Lset9760 = Ltmp348-Lfunc_begin0 - .quad Lset9760 -Lset9761 = Ltmp349-Lfunc_begin0 - .quad Lset9761 - .quad 0 - .quad 0 -Ldebug_ranges11: -Lset9762 = Ltmp310-Lfunc_begin0 - .quad Lset9762 -Lset9763 = Ltmp326-Lfunc_begin0 - .quad Lset9763 -Lset9764 = Ltmp327-Lfunc_begin0 - .quad Lset9764 -Lset9765 = Ltmp329-Lfunc_begin0 - .quad Lset9765 -Lset9766 = Ltmp348-Lfunc_begin0 - .quad Lset9766 -Lset9767 = Ltmp349-Lfunc_begin0 - .quad Lset9767 - .quad 0 - .quad 0 -Ldebug_ranges12: -Lset9768 = Ltmp332-Lfunc_begin0 - .quad Lset9768 -Lset9769 = Ltmp333-Lfunc_begin0 - .quad Lset9769 -Lset9770 = Ltmp354-Lfunc_begin0 - .quad Lset9770 -Lset9771 = Ltmp359-Lfunc_begin0 - .quad Lset9771 -Lset9772 = Ltmp374-Lfunc_begin0 - .quad Lset9772 -Lset9773 = Ltmp380-Lfunc_begin0 - .quad Lset9773 - .quad 0 - .quad 0 -Ldebug_ranges13: -Lset9774 = Ltmp332-Lfunc_begin0 - .quad Lset9774 -Lset9775 = Ltmp333-Lfunc_begin0 - .quad Lset9775 -Lset9776 = Ltmp354-Lfunc_begin0 - .quad Lset9776 -Lset9777 = Ltmp359-Lfunc_begin0 - .quad Lset9777 -Lset9778 = Ltmp374-Lfunc_begin0 - .quad Lset9778 -Lset9779 = Ltmp385-Lfunc_begin0 - .quad Lset9779 -Lset9780 = Ltmp405-Lfunc_begin0 - .quad Lset9780 -Lset9781 = Ltmp406-Lfunc_begin0 - .quad Lset9781 -Lset9782 = Ltmp407-Lfunc_begin0 - .quad Lset9782 -Lset9783 = Ltmp408-Lfunc_begin0 - .quad Lset9783 - .quad 0 - .quad 0 -Ldebug_ranges14: -Lset9784 = Ltmp350-Lfunc_begin0 - .quad Lset9784 -Lset9785 = Ltmp354-Lfunc_begin0 - .quad Lset9785 -Lset9786 = Ltmp371-Lfunc_begin0 - .quad Lset9786 -Lset9787 = Ltmp373-Lfunc_begin0 - .quad Lset9787 - .quad 0 - .quad 0 -Ldebug_ranges15: -Lset9788 = Ltmp335-Lfunc_begin0 - .quad Lset9788 -Lset9789 = Ltmp338-Lfunc_begin0 - .quad Lset9789 -Lset9790 = Ltmp345-Lfunc_begin0 - .quad Lset9790 -Lset9791 = Ltmp348-Lfunc_begin0 - .quad Lset9791 -Lset9792 = Ltmp373-Lfunc_begin0 - .quad Lset9792 -Lset9793 = Ltmp374-Lfunc_begin0 - .quad Lset9793 - .quad 0 - .quad 0 -Ldebug_ranges16: -Lset9794 = Ltmp330-Lfunc_begin0 - .quad Lset9794 -Lset9795 = Ltmp338-Lfunc_begin0 - .quad Lset9795 -Lset9796 = Ltmp345-Lfunc_begin0 - .quad Lset9796 -Lset9797 = Ltmp348-Lfunc_begin0 - .quad Lset9797 -Lset9798 = Ltmp350-Lfunc_begin0 - .quad Lset9798 -Lset9799 = Ltmp359-Lfunc_begin0 - .quad Lset9799 -Lset9800 = Ltmp371-Lfunc_begin0 - .quad Lset9800 -Lset9801 = Ltmp385-Lfunc_begin0 - .quad Lset9801 -Lset9802 = Ltmp405-Lfunc_begin0 - .quad Lset9802 -Lset9803 = Ltmp408-Lfunc_begin0 - .quad Lset9803 - .quad 0 - .quad 0 -Ldebug_ranges17: -Lset9804 = Ltmp343-Lfunc_begin0 - .quad Lset9804 -Lset9805 = Ltmp345-Lfunc_begin0 - .quad Lset9805 -Lset9806 = Ltmp385-Lfunc_begin0 - .quad Lset9806 -Lset9807 = Ltmp390-Lfunc_begin0 - .quad Lset9807 - .quad 0 - .quad 0 -Ldebug_ranges18: -Lset9808 = Ltmp360-Lfunc_begin0 - .quad Lset9808 -Lset9809 = Ltmp371-Lfunc_begin0 - .quad Lset9809 -Lset9810 = Ltmp390-Lfunc_begin0 - .quad Lset9810 -Lset9811 = Ltmp398-Lfunc_begin0 - .quad Lset9811 - .quad 0 - .quad 0 -Ldebug_ranges19: -Lset9812 = Ltmp360-Lfunc_begin0 - .quad Lset9812 -Lset9813 = Ltmp361-Lfunc_begin0 - .quad Lset9813 -Lset9814 = Ltmp362-Lfunc_begin0 - .quad Lset9814 -Lset9815 = Ltmp371-Lfunc_begin0 - .quad Lset9815 -Lset9816 = Ltmp390-Lfunc_begin0 - .quad Lset9816 -Lset9817 = Ltmp398-Lfunc_begin0 - .quad Lset9817 - .quad 0 - .quad 0 -Ldebug_ranges20: -Lset9818 = Ltmp360-Lfunc_begin0 - .quad Lset9818 -Lset9819 = Ltmp371-Lfunc_begin0 - .quad Lset9819 -Lset9820 = Ltmp390-Lfunc_begin0 - .quad Lset9820 -Lset9821 = Ltmp405-Lfunc_begin0 - .quad Lset9821 - .quad 0 - .quad 0 -Ldebug_ranges21: -Lset9822 = Ltmp339-Lfunc_begin0 - .quad Lset9822 -Lset9823 = Ltmp345-Lfunc_begin0 - .quad Lset9823 -Lset9824 = Ltmp360-Lfunc_begin0 - .quad Lset9824 -Lset9825 = Ltmp371-Lfunc_begin0 - .quad Lset9825 -Lset9826 = Ltmp385-Lfunc_begin0 - .quad Lset9826 -Lset9827 = Ltmp405-Lfunc_begin0 - .quad Lset9827 - .quad 0 - .quad 0 -Ldebug_ranges22: -Lset9828 = Ltmp432-Lfunc_begin0 - .quad Lset9828 -Lset9829 = Ltmp434-Lfunc_begin0 - .quad Lset9829 -Lset9830 = Ltmp437-Lfunc_begin0 - .quad Lset9830 -Lset9831 = Ltmp451-Lfunc_begin0 - .quad Lset9831 -Lset9832 = Ltmp463-Lfunc_begin0 - .quad Lset9832 -Lset9833 = Ltmp464-Lfunc_begin0 - .quad Lset9833 - .quad 0 - .quad 0 -Ldebug_ranges23: -Lset9834 = Ltmp442-Lfunc_begin0 - .quad Lset9834 -Lset9835 = Ltmp447-Lfunc_begin0 - .quad Lset9835 -Lset9836 = Ltmp449-Lfunc_begin0 - .quad Lset9836 -Lset9837 = Ltmp451-Lfunc_begin0 - .quad Lset9837 -Lset9838 = Ltmp463-Lfunc_begin0 - .quad Lset9838 -Lset9839 = Ltmp464-Lfunc_begin0 - .quad Lset9839 - .quad 0 - .quad 0 -Ldebug_ranges24: -Lset9840 = Ltmp442-Lfunc_begin0 - .quad Lset9840 -Lset9841 = Ltmp451-Lfunc_begin0 - .quad Lset9841 -Lset9842 = Ltmp463-Lfunc_begin0 - .quad Lset9842 -Lset9843 = Ltmp464-Lfunc_begin0 - .quad Lset9843 - .quad 0 - .quad 0 -Ldebug_ranges25: -Lset9844 = Ltmp424-Lfunc_begin0 - .quad Lset9844 -Lset9845 = Ltmp428-Lfunc_begin0 - .quad Lset9845 -Lset9846 = Ltmp452-Lfunc_begin0 - .quad Lset9846 -Lset9847 = Ltmp455-Lfunc_begin0 - .quad Lset9847 -Lset9848 = Ltmp456-Lfunc_begin0 - .quad Lset9848 -Lset9849 = Ltmp463-Lfunc_begin0 - .quad Lset9849 -Lset9850 = Ltmp467-Lfunc_begin0 - .quad Lset9850 -Lset9851 = Ltmp472-Lfunc_begin0 - .quad Lset9851 -Lset9852 = Ltmp474-Lfunc_begin0 - .quad Lset9852 -Lset9853 = Ltmp480-Lfunc_begin0 - .quad Lset9853 - .quad 0 - .quad 0 -Ldebug_ranges26: -Lset9854 = Ltmp457-Lfunc_begin0 - .quad Lset9854 -Lset9855 = Ltmp459-Lfunc_begin0 - .quad Lset9855 -Lset9856 = Ltmp467-Lfunc_begin0 - .quad Lset9856 -Lset9857 = Ltmp470-Lfunc_begin0 - .quad Lset9857 - .quad 0 - .quad 0 -Ldebug_ranges27: -Lset9858 = Ltmp425-Lfunc_begin0 - .quad Lset9858 -Lset9859 = Ltmp428-Lfunc_begin0 - .quad Lset9859 -Lset9860 = Ltmp456-Lfunc_begin0 - .quad Lset9860 -Lset9861 = Ltmp459-Lfunc_begin0 - .quad Lset9861 -Lset9862 = Ltmp467-Lfunc_begin0 - .quad Lset9862 -Lset9863 = Ltmp472-Lfunc_begin0 - .quad Lset9863 -Lset9864 = Ltmp477-Lfunc_begin0 - .quad Lset9864 -Lset9865 = Ltmp478-Lfunc_begin0 - .quad Lset9865 - .quad 0 - .quad 0 -Ldebug_ranges28: -Lset9866 = Ltmp461-Lfunc_begin0 - .quad Lset9866 -Lset9867 = Ltmp463-Lfunc_begin0 - .quad Lset9867 -Lset9868 = Ltmp474-Lfunc_begin0 - .quad Lset9868 -Lset9869 = Ltmp476-Lfunc_begin0 - .quad Lset9869 -Lset9870 = Ltmp478-Lfunc_begin0 - .quad Lset9870 -Lset9871 = Ltmp479-Lfunc_begin0 - .quad Lset9871 - .quad 0 - .quad 0 -Ldebug_ranges29: -Lset9872 = Ltmp452-Lfunc_begin0 - .quad Lset9872 -Lset9873 = Ltmp455-Lfunc_begin0 - .quad Lset9873 -Lset9874 = Ltmp459-Lfunc_begin0 - .quad Lset9874 -Lset9875 = Ltmp463-Lfunc_begin0 - .quad Lset9875 -Lset9876 = Ltmp474-Lfunc_begin0 - .quad Lset9876 -Lset9877 = Ltmp476-Lfunc_begin0 - .quad Lset9877 -Lset9878 = Ltmp478-Lfunc_begin0 - .quad Lset9878 -Lset9879 = Ltmp480-Lfunc_begin0 - .quad Lset9879 - .quad 0 - .quad 0 -Ldebug_ranges30: -Lset9880 = Ltmp506-Lfunc_begin0 - .quad Lset9880 -Lset9881 = Ltmp508-Lfunc_begin0 - .quad Lset9881 -Lset9882 = Ltmp517-Lfunc_begin0 - .quad Lset9882 -Lset9883 = Ltmp531-Lfunc_begin0 - .quad Lset9883 -Lset9884 = Ltmp539-Lfunc_begin0 - .quad Lset9884 -Lset9885 = Ltmp540-Lfunc_begin0 - .quad Lset9885 - .quad 0 - .quad 0 -Ldebug_ranges31: -Lset9886 = Ltmp522-Lfunc_begin0 - .quad Lset9886 -Lset9887 = Ltmp527-Lfunc_begin0 - .quad Lset9887 -Lset9888 = Ltmp529-Lfunc_begin0 - .quad Lset9888 -Lset9889 = Ltmp531-Lfunc_begin0 - .quad Lset9889 -Lset9890 = Ltmp539-Lfunc_begin0 - .quad Lset9890 -Lset9891 = Ltmp540-Lfunc_begin0 - .quad Lset9891 - .quad 0 - .quad 0 -Ldebug_ranges32: -Lset9892 = Ltmp522-Lfunc_begin0 - .quad Lset9892 -Lset9893 = Ltmp531-Lfunc_begin0 - .quad Lset9893 -Lset9894 = Ltmp539-Lfunc_begin0 - .quad Lset9894 -Lset9895 = Ltmp540-Lfunc_begin0 - .quad Lset9895 - .quad 0 - .quad 0 -Ldebug_ranges33: -Lset9896 = Ltmp497-Lfunc_begin0 - .quad Lset9896 -Lset9897 = Ltmp501-Lfunc_begin0 - .quad Lset9897 -Lset9898 = Ltmp513-Lfunc_begin0 - .quad Lset9898 -Lset9899 = Ltmp516-Lfunc_begin0 - .quad Lset9899 -Lset9900 = Ltmp532-Lfunc_begin0 - .quad Lset9900 -Lset9901 = Ltmp539-Lfunc_begin0 - .quad Lset9901 -Lset9902 = Ltmp544-Lfunc_begin0 - .quad Lset9902 -Lset9903 = Ltmp547-Lfunc_begin0 - .quad Lset9903 -Lset9904 = Ltmp549-Lfunc_begin0 - .quad Lset9904 -Lset9905 = Ltmp556-Lfunc_begin0 - .quad Lset9905 - .quad 0 - .quad 0 -Ldebug_ranges34: -Lset9906 = Ltmp533-Lfunc_begin0 - .quad Lset9906 -Lset9907 = Ltmp535-Lfunc_begin0 - .quad Lset9907 -Lset9908 = Ltmp544-Lfunc_begin0 - .quad Lset9908 -Lset9909 = Ltmp546-Lfunc_begin0 - .quad Lset9909 -Lset9910 = Ltmp552-Lfunc_begin0 - .quad Lset9910 -Lset9911 = Ltmp553-Lfunc_begin0 - .quad Lset9911 - .quad 0 - .quad 0 -Ldebug_ranges35: -Lset9912 = Ltmp498-Lfunc_begin0 - .quad Lset9912 -Lset9913 = Ltmp501-Lfunc_begin0 - .quad Lset9913 -Lset9914 = Ltmp532-Lfunc_begin0 - .quad Lset9914 -Lset9915 = Ltmp535-Lfunc_begin0 - .quad Lset9915 -Lset9916 = Ltmp544-Lfunc_begin0 - .quad Lset9916 -Lset9917 = Ltmp547-Lfunc_begin0 - .quad Lset9917 -Lset9918 = Ltmp552-Lfunc_begin0 - .quad Lset9918 -Lset9919 = Ltmp554-Lfunc_begin0 - .quad Lset9919 - .quad 0 - .quad 0 -Ldebug_ranges36: -Lset9920 = Ltmp537-Lfunc_begin0 - .quad Lset9920 -Lset9921 = Ltmp539-Lfunc_begin0 - .quad Lset9921 -Lset9922 = Ltmp549-Lfunc_begin0 - .quad Lset9922 -Lset9923 = Ltmp552-Lfunc_begin0 - .quad Lset9923 - .quad 0 - .quad 0 -Ldebug_ranges37: -Lset9924 = Ltmp513-Lfunc_begin0 - .quad Lset9924 -Lset9925 = Ltmp516-Lfunc_begin0 - .quad Lset9925 -Lset9926 = Ltmp535-Lfunc_begin0 - .quad Lset9926 -Lset9927 = Ltmp539-Lfunc_begin0 - .quad Lset9927 -Lset9928 = Ltmp549-Lfunc_begin0 - .quad Lset9928 -Lset9929 = Ltmp552-Lfunc_begin0 - .quad Lset9929 -Lset9930 = Ltmp555-Lfunc_begin0 - .quad Lset9930 -Lset9931 = Ltmp556-Lfunc_begin0 - .quad Lset9931 - .quad 0 - .quad 0 -Ldebug_ranges38: -Lset9932 = Ltmp577-Lfunc_begin0 - .quad Lset9932 -Lset9933 = Ltmp578-Lfunc_begin0 - .quad Lset9933 -Lset9934 = Ltmp624-Lfunc_begin0 - .quad Lset9934 -Lset9935 = Ltmp625-Lfunc_begin0 - .quad Lset9935 -Lset9936 = Ltmp626-Lfunc_begin0 - .quad Lset9936 -Lset9937 = Ltmp633-Lfunc_begin0 - .quad Lset9937 -Lset9938 = Ltmp643-Lfunc_begin0 - .quad Lset9938 -Lset9939 = Ltmp649-Lfunc_begin0 - .quad Lset9939 - .quad 0 - .quad 0 -Ldebug_ranges39: -Lset9940 = Ltmp612-Lfunc_begin0 - .quad Lset9940 -Lset9941 = Ltmp613-Lfunc_begin0 - .quad Lset9941 -Lset9942 = Ltmp614-Lfunc_begin0 - .quad Lset9942 -Lset9943 = Ltmp623-Lfunc_begin0 - .quad Lset9943 -Lset9944 = Ltmp634-Lfunc_begin0 - .quad Lset9944 -Lset9945 = Ltmp642-Lfunc_begin0 - .quad Lset9945 - .quad 0 - .quad 0 -Ldebug_ranges40: -Lset9946 = Ltmp574-Lfunc_begin0 - .quad Lset9946 -Lset9947 = Ltmp579-Lfunc_begin0 - .quad Lset9947 -Lset9948 = Ltmp581-Lfunc_begin0 - .quad Lset9948 -Lset9949 = Ltmp582-Lfunc_begin0 - .quad Lset9949 -Lset9950 = Ltmp612-Lfunc_begin0 - .quad Lset9950 -Lset9951 = Ltmp649-Lfunc_begin0 - .quad Lset9951 - .quad 0 - .quad 0 -Ldebug_ranges41: -Lset9952 = Ltmp682-Lfunc_begin0 - .quad Lset9952 -Lset9953 = Ltmp686-Lfunc_begin0 - .quad Lset9953 -Lset9954 = Ltmp718-Lfunc_begin0 - .quad Lset9954 -Lset9955 = Ltmp719-Lfunc_begin0 - .quad Lset9955 - .quad 0 - .quad 0 -Ldebug_ranges42: -Lset9956 = Ltmp674-Lfunc_begin0 - .quad Lset9956 -Lset9957 = Ltmp676-Lfunc_begin0 - .quad Lset9957 -Lset9958 = Ltmp677-Lfunc_begin0 - .quad Lset9958 -Lset9959 = Ltmp711-Lfunc_begin0 - .quad Lset9959 -Lset9960 = Ltmp718-Lfunc_begin0 - .quad Lset9960 -Lset9961 = Ltmp719-Lfunc_begin0 - .quad Lset9961 - .quad 0 - .quad 0 -Ldebug_ranges43: -Lset9962 = Ltmp661-Lfunc_begin0 - .quad Lset9962 -Lset9963 = Ltmp716-Lfunc_begin0 - .quad Lset9963 -Lset9964 = Ltmp718-Lfunc_begin0 - .quad Lset9964 -Lset9965 = Ltmp719-Lfunc_begin0 - .quad Lset9965 - .quad 0 - .quad 0 -Ldebug_ranges44: -Lset9966 = Ltmp743-Lfunc_begin0 - .quad Lset9966 -Lset9967 = Ltmp745-Lfunc_begin0 - .quad Lset9967 -Lset9968 = Ltmp747-Lfunc_begin0 - .quad Lset9968 -Lset9969 = Ltmp748-Lfunc_begin0 - .quad Lset9969 - .quad 0 - .quad 0 -Ldebug_ranges45: -Lset9970 = Ltmp738-Lfunc_begin0 - .quad Lset9970 -Lset9971 = Ltmp745-Lfunc_begin0 - .quad Lset9971 -Lset9972 = Ltmp747-Lfunc_begin0 - .quad Lset9972 -Lset9973 = Ltmp748-Lfunc_begin0 - .quad Lset9973 - .quad 0 - .quad 0 -Ldebug_ranges46: -Lset9974 = Ltmp809-Lfunc_begin0 - .quad Lset9974 -Lset9975 = Ltmp810-Lfunc_begin0 - .quad Lset9975 -Lset9976 = Ltmp814-Lfunc_begin0 - .quad Lset9976 -Lset9977 = Ltmp817-Lfunc_begin0 - .quad Lset9977 -Lset9978 = Ltmp836-Lfunc_begin0 - .quad Lset9978 -Lset9979 = Ltmp846-Lfunc_begin0 - .quad Lset9979 - .quad 0 - .quad 0 -Ldebug_ranges47: -Lset9980 = Ltmp858-Lfunc_begin0 - .quad Lset9980 -Lset9981 = Ltmp859-Lfunc_begin0 - .quad Lset9981 -Lset9982 = Ltmp3208-Lfunc_begin0 - .quad Lset9982 -Lset9983 = Ltmp3224-Lfunc_begin0 - .quad Lset9983 - .quad 0 - .quad 0 -Ldebug_ranges48: -Lset9984 = Ltmp986-Lfunc_begin0 - .quad Lset9984 -Lset9985 = Ltmp991-Lfunc_begin0 - .quad Lset9985 -Lset9986 = Ltmp5245-Lfunc_begin0 - .quad Lset9986 -Lset9987 = Ltmp5246-Lfunc_begin0 - .quad Lset9987 -Lset9988 = Ltmp5271-Lfunc_begin0 - .quad Lset9988 -Lset9989 = Ltmp5272-Lfunc_begin0 - .quad Lset9989 - .quad 0 - .quad 0 -Ldebug_ranges49: -Lset9990 = Ltmp984-Lfunc_begin0 - .quad Lset9990 -Lset9991 = Ltmp991-Lfunc_begin0 - .quad Lset9991 -Lset9992 = Ltmp5245-Lfunc_begin0 - .quad Lset9992 -Lset9993 = Ltmp5246-Lfunc_begin0 - .quad Lset9993 -Lset9994 = Ltmp5258-Lfunc_begin0 - .quad Lset9994 -Lset9995 = Ltmp5259-Lfunc_begin0 - .quad Lset9995 -Lset9996 = Ltmp5271-Lfunc_begin0 - .quad Lset9996 -Lset9997 = Ltmp5272-Lfunc_begin0 - .quad Lset9997 - .quad 0 - .quad 0 -Ldebug_ranges50: -Lset9998 = Ltmp1011-Lfunc_begin0 - .quad Lset9998 -Lset9999 = Ltmp1014-Lfunc_begin0 - .quad Lset9999 -Lset10000 = Ltmp1031-Lfunc_begin0 - .quad Lset10000 -Lset10001 = Ltmp1039-Lfunc_begin0 - .quad Lset10001 - .quad 0 - .quad 0 -Ldebug_ranges51: -Lset10002 = Ltmp998-Lfunc_begin0 - .quad Lset10002 -Lset10003 = Ltmp1002-Lfunc_begin0 - .quad Lset10003 -Lset10004 = Ltmp1011-Lfunc_begin0 - .quad Lset10004 -Lset10005 = Ltmp1014-Lfunc_begin0 - .quad Lset10005 -Lset10006 = Ltmp1030-Lfunc_begin0 - .quad Lset10006 -Lset10007 = Ltmp1045-Lfunc_begin0 - .quad Lset10007 - .quad 0 - .quad 0 -Ldebug_ranges52: -Lset10008 = Ltmp984-Lfunc_begin0 - .quad Lset10008 -Lset10009 = Ltmp1045-Lfunc_begin0 - .quad Lset10009 -Lset10010 = Ltmp1046-Lfunc_begin0 - .quad Lset10010 -Lset10011 = Ltmp1054-Lfunc_begin0 - .quad Lset10011 -Lset10012 = Ltmp5245-Lfunc_begin0 - .quad Lset10012 -Lset10013 = Ltmp5246-Lfunc_begin0 - .quad Lset10013 -Lset10014 = Ltmp5258-Lfunc_begin0 - .quad Lset10014 -Lset10015 = Ltmp5259-Lfunc_begin0 - .quad Lset10015 -Lset10016 = Ltmp5271-Lfunc_begin0 - .quad Lset10016 -Lset10017 = Ltmp5272-Lfunc_begin0 - .quad Lset10017 - .quad 0 - .quad 0 -Ldebug_ranges53: -Lset10018 = Ltmp1082-Lfunc_begin0 - .quad Lset10018 -Lset10019 = Ltmp1085-Lfunc_begin0 - .quad Lset10019 -Lset10020 = Ltmp1102-Lfunc_begin0 - .quad Lset10020 -Lset10021 = Ltmp1110-Lfunc_begin0 - .quad Lset10021 - .quad 0 - .quad 0 -Ldebug_ranges54: -Lset10022 = Ltmp1069-Lfunc_begin0 - .quad Lset10022 -Lset10023 = Ltmp1073-Lfunc_begin0 - .quad Lset10023 -Lset10024 = Ltmp1082-Lfunc_begin0 - .quad Lset10024 -Lset10025 = Ltmp1085-Lfunc_begin0 - .quad Lset10025 -Lset10026 = Ltmp1101-Lfunc_begin0 - .quad Lset10026 -Lset10027 = Ltmp1116-Lfunc_begin0 - .quad Lset10027 - .quad 0 - .quad 0 -Ldebug_ranges55: -Lset10028 = Ltmp1055-Lfunc_begin0 - .quad Lset10028 -Lset10029 = Ltmp1116-Lfunc_begin0 - .quad Lset10029 -Lset10030 = Ltmp1117-Lfunc_begin0 - .quad Lset10030 -Lset10031 = Ltmp1125-Lfunc_begin0 - .quad Lset10031 - .quad 0 - .quad 0 -Ldebug_ranges56: -Lset10032 = Ltmp1128-Lfunc_begin0 - .quad Lset10032 -Lset10033 = Ltmp1129-Lfunc_begin0 - .quad Lset10033 -Lset10034 = Ltmp1168-Lfunc_begin0 - .quad Lset10034 -Lset10035 = Ltmp1174-Lfunc_begin0 - .quad Lset10035 -Lset10036 = Ltmp1196-Lfunc_begin0 - .quad Lset10036 -Lset10037 = Ltmp1203-Lfunc_begin0 - .quad Lset10037 - .quad 0 - .quad 0 -Ldebug_ranges57: -Lset10038 = Ltmp1128-Lfunc_begin0 - .quad Lset10038 -Lset10039 = Ltmp1129-Lfunc_begin0 - .quad Lset10039 -Lset10040 = Ltmp1168-Lfunc_begin0 - .quad Lset10040 -Lset10041 = Ltmp1174-Lfunc_begin0 - .quad Lset10041 -Lset10042 = Ltmp1196-Lfunc_begin0 - .quad Lset10042 -Lset10043 = Ltmp1211-Lfunc_begin0 - .quad Lset10043 -Lset10044 = Ltmp5262-Lfunc_begin0 - .quad Lset10044 -Lset10045 = Ltmp5263-Lfunc_begin0 - .quad Lset10045 - .quad 0 - .quad 0 -Ldebug_ranges58: -Lset10046 = Ltmp1162-Lfunc_begin0 - .quad Lset10046 -Lset10047 = Ltmp1167-Lfunc_begin0 - .quad Lset10047 -Lset10048 = Ltmp1190-Lfunc_begin0 - .quad Lset10048 -Lset10049 = Ltmp1192-Lfunc_begin0 - .quad Lset10049 - .quad 0 - .quad 0 -Ldebug_ranges59: -Lset10050 = Ltmp1132-Lfunc_begin0 - .quad Lset10050 -Lset10051 = Ltmp1137-Lfunc_begin0 - .quad Lset10051 -Lset10052 = Ltmp1189-Lfunc_begin0 - .quad Lset10052 -Lset10053 = Ltmp1190-Lfunc_begin0 - .quad Lset10053 -Lset10054 = Ltmp1192-Lfunc_begin0 - .quad Lset10054 -Lset10055 = Ltmp1195-Lfunc_begin0 - .quad Lset10055 - .quad 0 - .quad 0 -Ldebug_ranges60: -Lset10056 = Ltmp1126-Lfunc_begin0 - .quad Lset10056 -Lset10057 = Ltmp1137-Lfunc_begin0 - .quad Lset10057 -Lset10058 = Ltmp1162-Lfunc_begin0 - .quad Lset10058 -Lset10059 = Ltmp1174-Lfunc_begin0 - .quad Lset10059 -Lset10060 = Ltmp1189-Lfunc_begin0 - .quad Lset10060 -Lset10061 = Ltmp1195-Lfunc_begin0 - .quad Lset10061 -Lset10062 = Ltmp1196-Lfunc_begin0 - .quad Lset10062 -Lset10063 = Ltmp1211-Lfunc_begin0 - .quad Lset10063 -Lset10064 = Ltmp5262-Lfunc_begin0 - .quad Lset10064 -Lset10065 = Ltmp5263-Lfunc_begin0 - .quad Lset10065 - .quad 0 - .quad 0 -Ldebug_ranges61: -Lset10066 = Ltmp1149-Lfunc_begin0 - .quad Lset10066 -Lset10067 = Ltmp1154-Lfunc_begin0 - .quad Lset10067 -Lset10068 = Ltmp1212-Lfunc_begin0 - .quad Lset10068 -Lset10069 = Ltmp1215-Lfunc_begin0 - .quad Lset10069 - .quad 0 - .quad 0 -Ldebug_ranges62: -Lset10070 = Ltmp1175-Lfunc_begin0 - .quad Lset10070 -Lset10071 = Ltmp1189-Lfunc_begin0 - .quad Lset10071 -Lset10072 = Ltmp1216-Lfunc_begin0 - .quad Lset10072 -Lset10073 = Ltmp1226-Lfunc_begin0 - .quad Lset10073 - .quad 0 - .quad 0 -Ldebug_ranges63: -Lset10074 = Ltmp1175-Lfunc_begin0 - .quad Lset10074 -Lset10075 = Ltmp1189-Lfunc_begin0 - .quad Lset10075 -Lset10076 = Ltmp1216-Lfunc_begin0 - .quad Lset10076 -Lset10077 = Ltmp1226-Lfunc_begin0 - .quad Lset10077 - .quad 0 - .quad 0 -Ldebug_ranges64: -Lset10078 = Ltmp1175-Lfunc_begin0 - .quad Lset10078 -Lset10079 = Ltmp1189-Lfunc_begin0 - .quad Lset10079 -Lset10080 = Ltmp1216-Lfunc_begin0 - .quad Lset10080 -Lset10081 = Ltmp1234-Lfunc_begin0 - .quad Lset10081 -Lset10082 = Ltmp5250-Lfunc_begin0 - .quad Lset10082 -Lset10083 = Ltmp5251-Lfunc_begin0 - .quad Lset10083 - .quad 0 - .quad 0 -Ldebug_ranges65: -Lset10084 = Ltmp1144-Lfunc_begin0 - .quad Lset10084 -Lset10085 = Ltmp1154-Lfunc_begin0 - .quad Lset10085 -Lset10086 = Ltmp1175-Lfunc_begin0 - .quad Lset10086 -Lset10087 = Ltmp1189-Lfunc_begin0 - .quad Lset10087 -Lset10088 = Ltmp1212-Lfunc_begin0 - .quad Lset10088 -Lset10089 = Ltmp1215-Lfunc_begin0 - .quad Lset10089 -Lset10090 = Ltmp1216-Lfunc_begin0 - .quad Lset10090 -Lset10091 = Ltmp1234-Lfunc_begin0 - .quad Lset10091 -Lset10092 = Ltmp5250-Lfunc_begin0 - .quad Lset10092 -Lset10093 = Ltmp5251-Lfunc_begin0 - .quad Lset10093 - .quad 0 - .quad 0 -Ldebug_ranges66: -Lset10094 = Ltmp1155-Lfunc_begin0 - .quad Lset10094 -Lset10095 = Ltmp1157-Lfunc_begin0 - .quad Lset10095 -Lset10096 = Ltmp1245-Lfunc_begin0 - .quad Lset10096 -Lset10097 = Ltmp1253-Lfunc_begin0 - .quad Lset10097 - .quad 0 - .quad 0 -Ldebug_ranges67: -Lset10098 = Ltmp1155-Lfunc_begin0 - .quad Lset10098 -Lset10099 = Ltmp1157-Lfunc_begin0 - .quad Lset10099 -Lset10100 = Ltmp1244-Lfunc_begin0 - .quad Lset10100 -Lset10101 = Ltmp1261-Lfunc_begin0 - .quad Lset10101 -Lset10102 = Ltmp1262-Lfunc_begin0 - .quad Lset10102 -Lset10103 = Ltmp1266-Lfunc_begin0 - .quad Lset10103 -Lset10104 = Ltmp1268-Lfunc_begin0 - .quad Lset10104 -Lset10105 = Ltmp1273-Lfunc_begin0 - .quad Lset10105 - .quad 0 - .quad 0 -Ldebug_ranges68: -Lset10106 = Ltmp1126-Lfunc_begin0 - .quad Lset10106 -Lset10107 = Ltmp1195-Lfunc_begin0 - .quad Lset10107 -Lset10108 = Ltmp1196-Lfunc_begin0 - .quad Lset10108 -Lset10109 = Ltmp1211-Lfunc_begin0 - .quad Lset10109 -Lset10110 = Ltmp1212-Lfunc_begin0 - .quad Lset10110 -Lset10111 = Ltmp1215-Lfunc_begin0 - .quad Lset10111 -Lset10112 = Ltmp1216-Lfunc_begin0 - .quad Lset10112 -Lset10113 = Ltmp1234-Lfunc_begin0 - .quad Lset10113 -Lset10114 = Ltmp1237-Lfunc_begin0 - .quad Lset10114 -Lset10115 = Ltmp1261-Lfunc_begin0 - .quad Lset10115 -Lset10116 = Ltmp1262-Lfunc_begin0 - .quad Lset10116 -Lset10117 = Ltmp1266-Lfunc_begin0 - .quad Lset10117 -Lset10118 = Ltmp1268-Lfunc_begin0 - .quad Lset10118 -Lset10119 = Ltmp1275-Lfunc_begin0 - .quad Lset10119 -Lset10120 = Ltmp1276-Lfunc_begin0 - .quad Lset10120 -Lset10121 = Ltmp1284-Lfunc_begin0 - .quad Lset10121 -Lset10122 = Ltmp5250-Lfunc_begin0 - .quad Lset10122 -Lset10123 = Ltmp5251-Lfunc_begin0 - .quad Lset10123 -Lset10124 = Ltmp5262-Lfunc_begin0 - .quad Lset10124 -Lset10125 = Ltmp5263-Lfunc_begin0 - .quad Lset10125 - .quad 0 - .quad 0 -Ldebug_ranges69: -Lset10126 = Ltmp1310-Lfunc_begin0 - .quad Lset10126 -Lset10127 = Ltmp1311-Lfunc_begin0 - .quad Lset10127 -Lset10128 = Ltmp1351-Lfunc_begin0 - .quad Lset10128 -Lset10129 = Ltmp1357-Lfunc_begin0 - .quad Lset10129 -Lset10130 = Ltmp1379-Lfunc_begin0 - .quad Lset10130 -Lset10131 = Ltmp1386-Lfunc_begin0 - .quad Lset10131 - .quad 0 - .quad 0 -Ldebug_ranges70: -Lset10132 = Ltmp1310-Lfunc_begin0 - .quad Lset10132 -Lset10133 = Ltmp1311-Lfunc_begin0 - .quad Lset10133 -Lset10134 = Ltmp1351-Lfunc_begin0 - .quad Lset10134 -Lset10135 = Ltmp1357-Lfunc_begin0 - .quad Lset10135 -Lset10136 = Ltmp1379-Lfunc_begin0 - .quad Lset10136 -Lset10137 = Ltmp1394-Lfunc_begin0 - .quad Lset10137 - .quad 0 - .quad 0 -Ldebug_ranges71: -Lset10138 = Ltmp1345-Lfunc_begin0 - .quad Lset10138 -Lset10139 = Ltmp1350-Lfunc_begin0 - .quad Lset10139 -Lset10140 = Ltmp1373-Lfunc_begin0 - .quad Lset10140 -Lset10141 = Ltmp1375-Lfunc_begin0 - .quad Lset10141 - .quad 0 - .quad 0 -Ldebug_ranges72: -Lset10142 = Ltmp1314-Lfunc_begin0 - .quad Lset10142 -Lset10143 = Ltmp1319-Lfunc_begin0 - .quad Lset10143 -Lset10144 = Ltmp1372-Lfunc_begin0 - .quad Lset10144 -Lset10145 = Ltmp1373-Lfunc_begin0 - .quad Lset10145 -Lset10146 = Ltmp1375-Lfunc_begin0 - .quad Lset10146 -Lset10147 = Ltmp1378-Lfunc_begin0 - .quad Lset10147 - .quad 0 - .quad 0 -Ldebug_ranges73: -Lset10148 = Ltmp1308-Lfunc_begin0 - .quad Lset10148 -Lset10149 = Ltmp1319-Lfunc_begin0 - .quad Lset10149 -Lset10150 = Ltmp1345-Lfunc_begin0 - .quad Lset10150 -Lset10151 = Ltmp1357-Lfunc_begin0 - .quad Lset10151 -Lset10152 = Ltmp1372-Lfunc_begin0 - .quad Lset10152 -Lset10153 = Ltmp1378-Lfunc_begin0 - .quad Lset10153 -Lset10154 = Ltmp1379-Lfunc_begin0 - .quad Lset10154 -Lset10155 = Ltmp1394-Lfunc_begin0 - .quad Lset10155 - .quad 0 - .quad 0 -Ldebug_ranges74: -Lset10156 = Ltmp1331-Lfunc_begin0 - .quad Lset10156 -Lset10157 = Ltmp1336-Lfunc_begin0 - .quad Lset10157 -Lset10158 = Ltmp1395-Lfunc_begin0 - .quad Lset10158 -Lset10159 = Ltmp1398-Lfunc_begin0 - .quad Lset10159 - .quad 0 - .quad 0 -Ldebug_ranges75: -Lset10160 = Ltmp1358-Lfunc_begin0 - .quad Lset10160 -Lset10161 = Ltmp1372-Lfunc_begin0 - .quad Lset10161 -Lset10162 = Ltmp1399-Lfunc_begin0 - .quad Lset10162 -Lset10163 = Ltmp1409-Lfunc_begin0 - .quad Lset10163 - .quad 0 - .quad 0 -Ldebug_ranges76: -Lset10164 = Ltmp1358-Lfunc_begin0 - .quad Lset10164 -Lset10165 = Ltmp1372-Lfunc_begin0 - .quad Lset10165 -Lset10166 = Ltmp1399-Lfunc_begin0 - .quad Lset10166 -Lset10167 = Ltmp1409-Lfunc_begin0 - .quad Lset10167 - .quad 0 - .quad 0 -Ldebug_ranges77: -Lset10168 = Ltmp1358-Lfunc_begin0 - .quad Lset10168 -Lset10169 = Ltmp1372-Lfunc_begin0 - .quad Lset10169 -Lset10170 = Ltmp1399-Lfunc_begin0 - .quad Lset10170 -Lset10171 = Ltmp1417-Lfunc_begin0 - .quad Lset10171 - .quad 0 - .quad 0 -Ldebug_ranges78: -Lset10172 = Ltmp1326-Lfunc_begin0 - .quad Lset10172 -Lset10173 = Ltmp1336-Lfunc_begin0 - .quad Lset10173 -Lset10174 = Ltmp1358-Lfunc_begin0 - .quad Lset10174 -Lset10175 = Ltmp1372-Lfunc_begin0 - .quad Lset10175 -Lset10176 = Ltmp1395-Lfunc_begin0 - .quad Lset10176 -Lset10177 = Ltmp1398-Lfunc_begin0 - .quad Lset10177 -Lset10178 = Ltmp1399-Lfunc_begin0 - .quad Lset10178 -Lset10179 = Ltmp1417-Lfunc_begin0 - .quad Lset10179 - .quad 0 - .quad 0 -Ldebug_ranges79: -Lset10180 = Ltmp1337-Lfunc_begin0 - .quad Lset10180 -Lset10181 = Ltmp1340-Lfunc_begin0 - .quad Lset10181 -Lset10182 = Ltmp1427-Lfunc_begin0 - .quad Lset10182 -Lset10183 = Ltmp1435-Lfunc_begin0 - .quad Lset10183 - .quad 0 - .quad 0 -Ldebug_ranges80: -Lset10184 = Ltmp1337-Lfunc_begin0 - .quad Lset10184 -Lset10185 = Ltmp1340-Lfunc_begin0 - .quad Lset10185 -Lset10186 = Ltmp1426-Lfunc_begin0 - .quad Lset10186 -Lset10187 = Ltmp1441-Lfunc_begin0 - .quad Lset10187 -Lset10188 = Ltmp1442-Lfunc_begin0 - .quad Lset10188 -Lset10189 = Ltmp1446-Lfunc_begin0 - .quad Lset10189 -Lset10190 = Ltmp1448-Lfunc_begin0 - .quad Lset10190 -Lset10191 = Ltmp1455-Lfunc_begin0 - .quad Lset10191 - .quad 0 - .quad 0 -Ldebug_ranges81: -Lset10192 = Ltmp1308-Lfunc_begin0 - .quad Lset10192 -Lset10193 = Ltmp1378-Lfunc_begin0 - .quad Lset10193 -Lset10194 = Ltmp1379-Lfunc_begin0 - .quad Lset10194 -Lset10195 = Ltmp1394-Lfunc_begin0 - .quad Lset10195 -Lset10196 = Ltmp1395-Lfunc_begin0 - .quad Lset10196 -Lset10197 = Ltmp1398-Lfunc_begin0 - .quad Lset10197 -Lset10198 = Ltmp1399-Lfunc_begin0 - .quad Lset10198 -Lset10199 = Ltmp1417-Lfunc_begin0 - .quad Lset10199 -Lset10200 = Ltmp1420-Lfunc_begin0 - .quad Lset10200 -Lset10201 = Ltmp1441-Lfunc_begin0 - .quad Lset10201 -Lset10202 = Ltmp1442-Lfunc_begin0 - .quad Lset10202 -Lset10203 = Ltmp1446-Lfunc_begin0 - .quad Lset10203 -Lset10204 = Ltmp1448-Lfunc_begin0 - .quad Lset10204 -Lset10205 = Ltmp1457-Lfunc_begin0 - .quad Lset10205 -Lset10206 = Ltmp1458-Lfunc_begin0 - .quad Lset10206 -Lset10207 = Ltmp1466-Lfunc_begin0 - .quad Lset10207 - .quad 0 - .quad 0 -Ldebug_ranges82: -Lset10208 = Ltmp1468-Lfunc_begin0 - .quad Lset10208 -Lset10209 = Ltmp1469-Lfunc_begin0 - .quad Lset10209 -Lset10210 = Ltmp1507-Lfunc_begin0 - .quad Lset10210 -Lset10211 = Ltmp1513-Lfunc_begin0 - .quad Lset10211 -Lset10212 = Ltmp1536-Lfunc_begin0 - .quad Lset10212 -Lset10213 = Ltmp1543-Lfunc_begin0 - .quad Lset10213 - .quad 0 - .quad 0 -Ldebug_ranges83: -Lset10214 = Ltmp1468-Lfunc_begin0 - .quad Lset10214 -Lset10215 = Ltmp1469-Lfunc_begin0 - .quad Lset10215 -Lset10216 = Ltmp1507-Lfunc_begin0 - .quad Lset10216 -Lset10217 = Ltmp1513-Lfunc_begin0 - .quad Lset10217 -Lset10218 = Ltmp1536-Lfunc_begin0 - .quad Lset10218 -Lset10219 = Ltmp1550-Lfunc_begin0 - .quad Lset10219 - .quad 0 - .quad 0 -Ldebug_ranges84: -Lset10220 = Ltmp1501-Lfunc_begin0 - .quad Lset10220 -Lset10221 = Ltmp1506-Lfunc_begin0 - .quad Lset10221 -Lset10222 = Ltmp1532-Lfunc_begin0 - .quad Lset10222 -Lset10223 = Ltmp1535-Lfunc_begin0 - .quad Lset10223 - .quad 0 - .quad 0 -Ldebug_ranges85: -Lset10224 = Ltmp1472-Lfunc_begin0 - .quad Lset10224 -Lset10225 = Ltmp1477-Lfunc_begin0 - .quad Lset10225 -Lset10226 = Ltmp1528-Lfunc_begin0 - .quad Lset10226 -Lset10227 = Ltmp1531-Lfunc_begin0 - .quad Lset10227 - .quad 0 - .quad 0 -Ldebug_ranges86: -Lset10228 = Ltmp1467-Lfunc_begin0 - .quad Lset10228 -Lset10229 = Ltmp1477-Lfunc_begin0 - .quad Lset10229 -Lset10230 = Ltmp1501-Lfunc_begin0 - .quad Lset10230 -Lset10231 = Ltmp1513-Lfunc_begin0 - .quad Lset10231 -Lset10232 = Ltmp1528-Lfunc_begin0 - .quad Lset10232 -Lset10233 = Ltmp1531-Lfunc_begin0 - .quad Lset10233 -Lset10234 = Ltmp1532-Lfunc_begin0 - .quad Lset10234 -Lset10235 = Ltmp1535-Lfunc_begin0 - .quad Lset10235 -Lset10236 = Ltmp1536-Lfunc_begin0 - .quad Lset10236 -Lset10237 = Ltmp1550-Lfunc_begin0 - .quad Lset10237 - .quad 0 - .quad 0 -Ldebug_ranges87: -Lset10238 = Ltmp1492-Lfunc_begin0 - .quad Lset10238 -Lset10239 = Ltmp1497-Lfunc_begin0 - .quad Lset10239 -Lset10240 = Ltmp1551-Lfunc_begin0 - .quad Lset10240 -Lset10241 = Ltmp1554-Lfunc_begin0 - .quad Lset10241 - .quad 0 - .quad 0 -Ldebug_ranges88: -Lset10242 = Ltmp1514-Lfunc_begin0 - .quad Lset10242 -Lset10243 = Ltmp1528-Lfunc_begin0 - .quad Lset10243 -Lset10244 = Ltmp1556-Lfunc_begin0 - .quad Lset10244 -Lset10245 = Ltmp1566-Lfunc_begin0 - .quad Lset10245 - .quad 0 - .quad 0 -Ldebug_ranges89: -Lset10246 = Ltmp1514-Lfunc_begin0 - .quad Lset10246 -Lset10247 = Ltmp1515-Lfunc_begin0 - .quad Lset10247 -Lset10248 = Ltmp1517-Lfunc_begin0 - .quad Lset10248 -Lset10249 = Ltmp1528-Lfunc_begin0 - .quad Lset10249 -Lset10250 = Ltmp1556-Lfunc_begin0 - .quad Lset10250 -Lset10251 = Ltmp1566-Lfunc_begin0 - .quad Lset10251 - .quad 0 - .quad 0 -Ldebug_ranges90: -Lset10252 = Ltmp1514-Lfunc_begin0 - .quad Lset10252 -Lset10253 = Ltmp1528-Lfunc_begin0 - .quad Lset10253 -Lset10254 = Ltmp1556-Lfunc_begin0 - .quad Lset10254 -Lset10255 = Ltmp1573-Lfunc_begin0 - .quad Lset10255 - .quad 0 - .quad 0 -Ldebug_ranges91: -Lset10256 = Ltmp1488-Lfunc_begin0 - .quad Lset10256 -Lset10257 = Ltmp1497-Lfunc_begin0 - .quad Lset10257 -Lset10258 = Ltmp1514-Lfunc_begin0 - .quad Lset10258 -Lset10259 = Ltmp1528-Lfunc_begin0 - .quad Lset10259 -Lset10260 = Ltmp1551-Lfunc_begin0 - .quad Lset10260 -Lset10261 = Ltmp1554-Lfunc_begin0 - .quad Lset10261 -Lset10262 = Ltmp1556-Lfunc_begin0 - .quad Lset10262 -Lset10263 = Ltmp1573-Lfunc_begin0 - .quad Lset10263 - .quad 0 - .quad 0 -Ldebug_ranges92: -Lset10264 = Ltmp1483-Lfunc_begin0 - .quad Lset10264 -Lset10265 = Ltmp1487-Lfunc_begin0 - .quad Lset10265 -Lset10266 = Ltmp1581-Lfunc_begin0 - .quad Lset10266 -Lset10267 = Ltmp1589-Lfunc_begin0 - .quad Lset10267 -Lset10268 = Ltmp1590-Lfunc_begin0 - .quad Lset10268 -Lset10269 = Ltmp1600-Lfunc_begin0 - .quad Lset10269 - .quad 0 - .quad 0 -Ldebug_ranges93: -Lset10270 = Ltmp1467-Lfunc_begin0 - .quad Lset10270 -Lset10271 = Ltmp1531-Lfunc_begin0 - .quad Lset10271 -Lset10272 = Ltmp1532-Lfunc_begin0 - .quad Lset10272 -Lset10273 = Ltmp1535-Lfunc_begin0 - .quad Lset10273 -Lset10274 = Ltmp1536-Lfunc_begin0 - .quad Lset10274 -Lset10275 = Ltmp1550-Lfunc_begin0 - .quad Lset10275 -Lset10276 = Ltmp1551-Lfunc_begin0 - .quad Lset10276 -Lset10277 = Ltmp1554-Lfunc_begin0 - .quad Lset10277 -Lset10278 = Ltmp1556-Lfunc_begin0 - .quad Lset10278 -Lset10279 = Ltmp1573-Lfunc_begin0 - .quad Lset10279 -Lset10280 = Ltmp1577-Lfunc_begin0 - .quad Lset10280 -Lset10281 = Ltmp1589-Lfunc_begin0 - .quad Lset10281 -Lset10282 = Ltmp1590-Lfunc_begin0 - .quad Lset10282 -Lset10283 = Ltmp1603-Lfunc_begin0 - .quad Lset10283 -Lset10284 = Ltmp1604-Lfunc_begin0 - .quad Lset10284 -Lset10285 = Ltmp1612-Lfunc_begin0 - .quad Lset10285 - .quad 0 - .quad 0 -Ldebug_ranges94: -Lset10286 = Ltmp1612-Lfunc_begin0 - .quad Lset10286 -Lset10287 = Ltmp1656-Lfunc_begin0 - .quad Lset10287 -Lset10288 = Ltmp1657-Lfunc_begin0 - .quad Lset10288 -Lset10289 = Ltmp1662-Lfunc_begin0 - .quad Lset10289 -Lset10290 = Ltmp5263-Lfunc_begin0 - .quad Lset10290 -Lset10291 = Ltmp5264-Lfunc_begin0 - .quad Lset10291 - .quad 0 - .quad 0 -Ldebug_ranges95: -Lset10292 = Ltmp1663-Lfunc_begin0 - .quad Lset10292 -Lset10293 = Ltmp1683-Lfunc_begin0 - .quad Lset10293 -Lset10294 = Ltmp1685-Lfunc_begin0 - .quad Lset10294 -Lset10295 = Ltmp1698-Lfunc_begin0 - .quad Lset10295 - .quad 0 - .quad 0 -Ldebug_ranges96: -Lset10296 = Ltmp1717-Lfunc_begin0 - .quad Lset10296 -Lset10297 = Ltmp1722-Lfunc_begin0 - .quad Lset10297 -Lset10298 = Ltmp1731-Lfunc_begin0 - .quad Lset10298 -Lset10299 = Ltmp1741-Lfunc_begin0 - .quad Lset10299 - .quad 0 - .quad 0 -Ldebug_ranges97: -Lset10300 = Ltmp1698-Lfunc_begin0 - .quad Lset10300 -Lset10301 = Ltmp1750-Lfunc_begin0 - .quad Lset10301 -Lset10302 = Ltmp5264-Lfunc_begin0 - .quad Lset10302 -Lset10303 = Ltmp5265-Lfunc_begin0 - .quad Lset10303 - .quad 0 - .quad 0 -Ldebug_ranges98: -Lset10304 = Ltmp1750-Lfunc_begin0 - .quad Lset10304 -Lset10305 = Ltmp1780-Lfunc_begin0 - .quad Lset10305 -Lset10306 = Ltmp1781-Lfunc_begin0 - .quad Lset10306 -Lset10307 = Ltmp1786-Lfunc_begin0 - .quad Lset10307 - .quad 0 - .quad 0 -Ldebug_ranges99: -Lset10308 = Ltmp1794-Lfunc_begin0 - .quad Lset10308 -Lset10309 = Ltmp1796-Lfunc_begin0 - .quad Lset10309 -Lset10310 = Ltmp1798-Lfunc_begin0 - .quad Lset10310 -Lset10311 = Ltmp1799-Lfunc_begin0 - .quad Lset10311 -Lset10312 = Ltmp1803-Lfunc_begin0 - .quad Lset10312 -Lset10313 = Ltmp1808-Lfunc_begin0 - .quad Lset10313 -Lset10314 = Ltmp1817-Lfunc_begin0 - .quad Lset10314 -Lset10315 = Ltmp1823-Lfunc_begin0 - .quad Lset10315 -Lset10316 = Ltmp1833-Lfunc_begin0 - .quad Lset10316 -Lset10317 = Ltmp1834-Lfunc_begin0 - .quad Lset10317 -Lset10318 = Ltmp1851-Lfunc_begin0 - .quad Lset10318 -Lset10319 = Ltmp1852-Lfunc_begin0 - .quad Lset10319 - .quad 0 - .quad 0 -Ldebug_ranges100: -Lset10320 = Ltmp1799-Lfunc_begin0 - .quad Lset10320 -Lset10321 = Ltmp1803-Lfunc_begin0 - .quad Lset10321 -Lset10322 = Ltmp1808-Lfunc_begin0 - .quad Lset10322 -Lset10323 = Ltmp1815-Lfunc_begin0 - .quad Lset10323 -Lset10324 = Ltmp1832-Lfunc_begin0 - .quad Lset10324 -Lset10325 = Ltmp1833-Lfunc_begin0 - .quad Lset10325 -Lset10326 = Ltmp1837-Lfunc_begin0 - .quad Lset10326 -Lset10327 = Ltmp1838-Lfunc_begin0 - .quad Lset10327 -Lset10328 = Ltmp1849-Lfunc_begin0 - .quad Lset10328 -Lset10329 = Ltmp1851-Lfunc_begin0 - .quad Lset10329 - .quad 0 - .quad 0 -Ldebug_ranges101: -Lset10330 = Ltmp1786-Lfunc_begin0 - .quad Lset10330 -Lset10331 = Ltmp1796-Lfunc_begin0 - .quad Lset10331 -Lset10332 = Ltmp1798-Lfunc_begin0 - .quad Lset10332 -Lset10333 = Ltmp1831-Lfunc_begin0 - .quad Lset10333 -Lset10334 = Ltmp1832-Lfunc_begin0 - .quad Lset10334 -Lset10335 = Ltmp1843-Lfunc_begin0 - .quad Lset10335 -Lset10336 = Ltmp1847-Lfunc_begin0 - .quad Lset10336 -Lset10337 = Ltmp1854-Lfunc_begin0 - .quad Lset10337 -Lset10338 = Ltmp1855-Lfunc_begin0 - .quad Lset10338 -Lset10339 = Ltmp1862-Lfunc_begin0 - .quad Lset10339 - .quad 0 - .quad 0 -Ldebug_ranges102: -Lset10340 = Ltmp1870-Lfunc_begin0 - .quad Lset10340 -Lset10341 = Ltmp1872-Lfunc_begin0 - .quad Lset10341 -Lset10342 = Ltmp1874-Lfunc_begin0 - .quad Lset10342 -Lset10343 = Ltmp1875-Lfunc_begin0 - .quad Lset10343 -Lset10344 = Ltmp1879-Lfunc_begin0 - .quad Lset10344 -Lset10345 = Ltmp1884-Lfunc_begin0 - .quad Lset10345 -Lset10346 = Ltmp1893-Lfunc_begin0 - .quad Lset10346 -Lset10347 = Ltmp1899-Lfunc_begin0 - .quad Lset10347 -Lset10348 = Ltmp1909-Lfunc_begin0 - .quad Lset10348 -Lset10349 = Ltmp1910-Lfunc_begin0 - .quad Lset10349 -Lset10350 = Ltmp1927-Lfunc_begin0 - .quad Lset10350 -Lset10351 = Ltmp1928-Lfunc_begin0 - .quad Lset10351 - .quad 0 - .quad 0 -Ldebug_ranges103: -Lset10352 = Ltmp1875-Lfunc_begin0 - .quad Lset10352 -Lset10353 = Ltmp1879-Lfunc_begin0 - .quad Lset10353 -Lset10354 = Ltmp1884-Lfunc_begin0 - .quad Lset10354 -Lset10355 = Ltmp1891-Lfunc_begin0 - .quad Lset10355 -Lset10356 = Ltmp1908-Lfunc_begin0 - .quad Lset10356 -Lset10357 = Ltmp1909-Lfunc_begin0 - .quad Lset10357 -Lset10358 = Ltmp1913-Lfunc_begin0 - .quad Lset10358 -Lset10359 = Ltmp1914-Lfunc_begin0 - .quad Lset10359 -Lset10360 = Ltmp1925-Lfunc_begin0 - .quad Lset10360 -Lset10361 = Ltmp1927-Lfunc_begin0 - .quad Lset10361 - .quad 0 - .quad 0 -Ldebug_ranges104: -Lset10362 = Ltmp1862-Lfunc_begin0 - .quad Lset10362 -Lset10363 = Ltmp1872-Lfunc_begin0 - .quad Lset10363 -Lset10364 = Ltmp1874-Lfunc_begin0 - .quad Lset10364 -Lset10365 = Ltmp1907-Lfunc_begin0 - .quad Lset10365 -Lset10366 = Ltmp1908-Lfunc_begin0 - .quad Lset10366 -Lset10367 = Ltmp1919-Lfunc_begin0 - .quad Lset10367 -Lset10368 = Ltmp1923-Lfunc_begin0 - .quad Lset10368 -Lset10369 = Ltmp1930-Lfunc_begin0 - .quad Lset10369 -Lset10370 = Ltmp1931-Lfunc_begin0 - .quad Lset10370 -Lset10371 = Ltmp1938-Lfunc_begin0 - .quad Lset10371 - .quad 0 - .quad 0 -Ldebug_ranges105: -Lset10372 = Ltmp1946-Lfunc_begin0 - .quad Lset10372 -Lset10373 = Ltmp1948-Lfunc_begin0 - .quad Lset10373 -Lset10374 = Ltmp1950-Lfunc_begin0 - .quad Lset10374 -Lset10375 = Ltmp1951-Lfunc_begin0 - .quad Lset10375 -Lset10376 = Ltmp1955-Lfunc_begin0 - .quad Lset10376 -Lset10377 = Ltmp1960-Lfunc_begin0 - .quad Lset10377 -Lset10378 = Ltmp1969-Lfunc_begin0 - .quad Lset10378 -Lset10379 = Ltmp1975-Lfunc_begin0 - .quad Lset10379 -Lset10380 = Ltmp1985-Lfunc_begin0 - .quad Lset10380 -Lset10381 = Ltmp1986-Lfunc_begin0 - .quad Lset10381 -Lset10382 = Ltmp2003-Lfunc_begin0 - .quad Lset10382 -Lset10383 = Ltmp2004-Lfunc_begin0 - .quad Lset10383 - .quad 0 - .quad 0 -Ldebug_ranges106: -Lset10384 = Ltmp1951-Lfunc_begin0 - .quad Lset10384 -Lset10385 = Ltmp1955-Lfunc_begin0 - .quad Lset10385 -Lset10386 = Ltmp1960-Lfunc_begin0 - .quad Lset10386 -Lset10387 = Ltmp1967-Lfunc_begin0 - .quad Lset10387 -Lset10388 = Ltmp1984-Lfunc_begin0 - .quad Lset10388 -Lset10389 = Ltmp1985-Lfunc_begin0 - .quad Lset10389 -Lset10390 = Ltmp1989-Lfunc_begin0 - .quad Lset10390 -Lset10391 = Ltmp1990-Lfunc_begin0 - .quad Lset10391 -Lset10392 = Ltmp2001-Lfunc_begin0 - .quad Lset10392 -Lset10393 = Ltmp2003-Lfunc_begin0 - .quad Lset10393 - .quad 0 - .quad 0 -Ldebug_ranges107: -Lset10394 = Ltmp1938-Lfunc_begin0 - .quad Lset10394 -Lset10395 = Ltmp1948-Lfunc_begin0 - .quad Lset10395 -Lset10396 = Ltmp1950-Lfunc_begin0 - .quad Lset10396 -Lset10397 = Ltmp1983-Lfunc_begin0 - .quad Lset10397 -Lset10398 = Ltmp1984-Lfunc_begin0 - .quad Lset10398 -Lset10399 = Ltmp1995-Lfunc_begin0 - .quad Lset10399 -Lset10400 = Ltmp1999-Lfunc_begin0 - .quad Lset10400 -Lset10401 = Ltmp2006-Lfunc_begin0 - .quad Lset10401 -Lset10402 = Ltmp2007-Lfunc_begin0 - .quad Lset10402 -Lset10403 = Ltmp2014-Lfunc_begin0 - .quad Lset10403 - .quad 0 - .quad 0 -Ldebug_ranges108: -Lset10404 = Ltmp2014-Lfunc_begin0 - .quad Lset10404 -Lset10405 = Ltmp2018-Lfunc_begin0 - .quad Lset10405 -Lset10406 = Ltmp2032-Lfunc_begin0 - .quad Lset10406 -Lset10407 = Ltmp2037-Lfunc_begin0 - .quad Lset10407 -Lset10408 = Ltmp2042-Lfunc_begin0 - .quad Lset10408 -Lset10409 = Ltmp2050-Lfunc_begin0 - .quad Lset10409 -Lset10410 = Ltmp2067-Lfunc_begin0 - .quad Lset10410 -Lset10411 = Ltmp2068-Lfunc_begin0 - .quad Lset10411 -Lset10412 = Ltmp2072-Lfunc_begin0 - .quad Lset10412 -Lset10413 = Ltmp2073-Lfunc_begin0 - .quad Lset10413 - .quad 0 - .quad 0 -Ldebug_ranges109: -Lset10414 = Ltmp2027-Lfunc_begin0 - .quad Lset10414 -Lset10415 = Ltmp2029-Lfunc_begin0 - .quad Lset10415 -Lset10416 = Ltmp2031-Lfunc_begin0 - .quad Lset10416 -Lset10417 = Ltmp2032-Lfunc_begin0 - .quad Lset10417 -Lset10418 = Ltmp2037-Lfunc_begin0 - .quad Lset10418 -Lset10419 = Ltmp2042-Lfunc_begin0 - .quad Lset10419 -Lset10420 = Ltmp2052-Lfunc_begin0 - .quad Lset10420 -Lset10421 = Ltmp2058-Lfunc_begin0 - .quad Lset10421 -Lset10422 = Ltmp2068-Lfunc_begin0 - .quad Lset10422 -Lset10423 = Ltmp2069-Lfunc_begin0 - .quad Lset10423 -Lset10424 = Ltmp2076-Lfunc_begin0 - .quad Lset10424 -Lset10425 = Ltmp2077-Lfunc_begin0 - .quad Lset10425 - .quad 0 - .quad 0 -Ldebug_ranges110: -Lset10426 = Ltmp2014-Lfunc_begin0 - .quad Lset10426 -Lset10427 = Ltmp2029-Lfunc_begin0 - .quad Lset10427 -Lset10428 = Ltmp2031-Lfunc_begin0 - .quad Lset10428 -Lset10429 = Ltmp2066-Lfunc_begin0 - .quad Lset10429 -Lset10430 = Ltmp2067-Lfunc_begin0 - .quad Lset10430 -Lset10431 = Ltmp2079-Lfunc_begin0 - .quad Lset10431 -Lset10432 = Ltmp2080-Lfunc_begin0 - .quad Lset10432 -Lset10433 = Ltmp2087-Lfunc_begin0 - .quad Lset10433 - .quad 0 - .quad 0 -Ldebug_ranges111: -Lset10434 = Ltmp2090-Lfunc_begin0 - .quad Lset10434 -Lset10435 = Ltmp2099-Lfunc_begin0 - .quad Lset10435 -Lset10436 = Ltmp2119-Lfunc_begin0 - .quad Lset10436 -Lset10437 = Ltmp2129-Lfunc_begin0 - .quad Lset10437 - .quad 0 - .quad 0 -Ldebug_ranges112: -Lset10438 = Ltmp2110-Lfunc_begin0 - .quad Lset10438 -Lset10439 = Ltmp2119-Lfunc_begin0 - .quad Lset10439 -Lset10440 = Ltmp2129-Lfunc_begin0 - .quad Lset10440 -Lset10441 = Ltmp2130-Lfunc_begin0 - .quad Lset10441 -Lset10442 = Ltmp2133-Lfunc_begin0 - .quad Lset10442 -Lset10443 = Ltmp2139-Lfunc_begin0 - .quad Lset10443 - .quad 0 - .quad 0 -Ldebug_ranges113: -Lset10444 = Ltmp2089-Lfunc_begin0 - .quad Lset10444 -Lset10445 = Ltmp2130-Lfunc_begin0 - .quad Lset10445 -Lset10446 = Ltmp2133-Lfunc_begin0 - .quad Lset10446 -Lset10447 = Ltmp2146-Lfunc_begin0 - .quad Lset10447 -Lset10448 = Ltmp2151-Lfunc_begin0 - .quad Lset10448 -Lset10449 = Ltmp2158-Lfunc_begin0 - .quad Lset10449 -Lset10450 = Ltmp2159-Lfunc_begin0 - .quad Lset10450 -Lset10451 = Ltmp2165-Lfunc_begin0 - .quad Lset10451 - .quad 0 - .quad 0 -Ldebug_ranges114: -Lset10452 = Ltmp2168-Lfunc_begin0 - .quad Lset10452 -Lset10453 = Ltmp2177-Lfunc_begin0 - .quad Lset10453 -Lset10454 = Ltmp2197-Lfunc_begin0 - .quad Lset10454 -Lset10455 = Ltmp2207-Lfunc_begin0 - .quad Lset10455 - .quad 0 - .quad 0 -Ldebug_ranges115: -Lset10456 = Ltmp2188-Lfunc_begin0 - .quad Lset10456 -Lset10457 = Ltmp2197-Lfunc_begin0 - .quad Lset10457 -Lset10458 = Ltmp2207-Lfunc_begin0 - .quad Lset10458 -Lset10459 = Ltmp2208-Lfunc_begin0 - .quad Lset10459 -Lset10460 = Ltmp2211-Lfunc_begin0 - .quad Lset10460 -Lset10461 = Ltmp2217-Lfunc_begin0 - .quad Lset10461 - .quad 0 - .quad 0 -Ldebug_ranges116: -Lset10462 = Ltmp2167-Lfunc_begin0 - .quad Lset10462 -Lset10463 = Ltmp2208-Lfunc_begin0 - .quad Lset10463 -Lset10464 = Ltmp2211-Lfunc_begin0 - .quad Lset10464 -Lset10465 = Ltmp2224-Lfunc_begin0 - .quad Lset10465 -Lset10466 = Ltmp2229-Lfunc_begin0 - .quad Lset10466 -Lset10467 = Ltmp2236-Lfunc_begin0 - .quad Lset10467 -Lset10468 = Ltmp2237-Lfunc_begin0 - .quad Lset10468 -Lset10469 = Ltmp2243-Lfunc_begin0 - .quad Lset10469 - .quad 0 - .quad 0 -Ldebug_ranges117: -Lset10470 = Ltmp2246-Lfunc_begin0 - .quad Lset10470 -Lset10471 = Ltmp2255-Lfunc_begin0 - .quad Lset10471 -Lset10472 = Ltmp2275-Lfunc_begin0 - .quad Lset10472 -Lset10473 = Ltmp2285-Lfunc_begin0 - .quad Lset10473 - .quad 0 - .quad 0 -Ldebug_ranges118: -Lset10474 = Ltmp2266-Lfunc_begin0 - .quad Lset10474 -Lset10475 = Ltmp2275-Lfunc_begin0 - .quad Lset10475 -Lset10476 = Ltmp2285-Lfunc_begin0 - .quad Lset10476 -Lset10477 = Ltmp2286-Lfunc_begin0 - .quad Lset10477 -Lset10478 = Ltmp2289-Lfunc_begin0 - .quad Lset10478 -Lset10479 = Ltmp2295-Lfunc_begin0 - .quad Lset10479 - .quad 0 - .quad 0 -Ldebug_ranges119: -Lset10480 = Ltmp2245-Lfunc_begin0 - .quad Lset10480 -Lset10481 = Ltmp2286-Lfunc_begin0 - .quad Lset10481 -Lset10482 = Ltmp2289-Lfunc_begin0 - .quad Lset10482 -Lset10483 = Ltmp2302-Lfunc_begin0 - .quad Lset10483 -Lset10484 = Ltmp2307-Lfunc_begin0 - .quad Lset10484 -Lset10485 = Ltmp2314-Lfunc_begin0 - .quad Lset10485 -Lset10486 = Ltmp2315-Lfunc_begin0 - .quad Lset10486 -Lset10487 = Ltmp2321-Lfunc_begin0 - .quad Lset10487 - .quad 0 - .quad 0 -Ldebug_ranges120: -Lset10488 = Ltmp2323-Lfunc_begin0 - .quad Lset10488 -Lset10489 = Ltmp2332-Lfunc_begin0 - .quad Lset10489 -Lset10490 = Ltmp2351-Lfunc_begin0 - .quad Lset10490 -Lset10491 = Ltmp2360-Lfunc_begin0 - .quad Lset10491 - .quad 0 - .quad 0 -Ldebug_ranges121: -Lset10492 = Ltmp2342-Lfunc_begin0 - .quad Lset10492 -Lset10493 = Ltmp2351-Lfunc_begin0 - .quad Lset10493 -Lset10494 = Ltmp2360-Lfunc_begin0 - .quad Lset10494 -Lset10495 = Ltmp2361-Lfunc_begin0 - .quad Lset10495 -Lset10496 = Ltmp2363-Lfunc_begin0 - .quad Lset10496 -Lset10497 = Ltmp2369-Lfunc_begin0 - .quad Lset10497 - .quad 0 - .quad 0 -Ldebug_ranges122: -Lset10498 = Ltmp2322-Lfunc_begin0 - .quad Lset10498 -Lset10499 = Ltmp2361-Lfunc_begin0 - .quad Lset10499 -Lset10500 = Ltmp2363-Lfunc_begin0 - .quad Lset10500 -Lset10501 = Ltmp2376-Lfunc_begin0 - .quad Lset10501 -Lset10502 = Ltmp2380-Lfunc_begin0 - .quad Lset10502 -Lset10503 = Ltmp2388-Lfunc_begin0 - .quad Lset10503 -Lset10504 = Ltmp2389-Lfunc_begin0 - .quad Lset10504 -Lset10505 = Ltmp2403-Lfunc_begin0 - .quad Lset10505 - .quad 0 - .quad 0 -Ldebug_ranges123: -Lset10506 = Ltmp2405-Lfunc_begin0 - .quad Lset10506 -Lset10507 = Ltmp2414-Lfunc_begin0 - .quad Lset10507 -Lset10508 = Ltmp2433-Lfunc_begin0 - .quad Lset10508 -Lset10509 = Ltmp2442-Lfunc_begin0 - .quad Lset10509 - .quad 0 - .quad 0 -Ldebug_ranges124: -Lset10510 = Ltmp2424-Lfunc_begin0 - .quad Lset10510 -Lset10511 = Ltmp2433-Lfunc_begin0 - .quad Lset10511 -Lset10512 = Ltmp2442-Lfunc_begin0 - .quad Lset10512 -Lset10513 = Ltmp2443-Lfunc_begin0 - .quad Lset10513 -Lset10514 = Ltmp2445-Lfunc_begin0 - .quad Lset10514 -Lset10515 = Ltmp2451-Lfunc_begin0 - .quad Lset10515 - .quad 0 - .quad 0 -Ldebug_ranges125: -Lset10516 = Ltmp2471-Lfunc_begin0 - .quad Lset10516 -Lset10517 = Ltmp2476-Lfunc_begin0 - .quad Lset10517 -Lset10518 = Ltmp2477-Lfunc_begin0 - .quad Lset10518 -Lset10519 = Ltmp2478-Lfunc_begin0 - .quad Lset10519 -Lset10520 = Ltmp2479-Lfunc_begin0 - .quad Lset10520 -Lset10521 = Ltmp2481-Lfunc_begin0 - .quad Lset10521 - .quad 0 - .quad 0 -Ldebug_ranges126: -Lset10522 = Ltmp2404-Lfunc_begin0 - .quad Lset10522 -Lset10523 = Ltmp2443-Lfunc_begin0 - .quad Lset10523 -Lset10524 = Ltmp2445-Lfunc_begin0 - .quad Lset10524 -Lset10525 = Ltmp2458-Lfunc_begin0 - .quad Lset10525 -Lset10526 = Ltmp2462-Lfunc_begin0 - .quad Lset10526 -Lset10527 = Ltmp2470-Lfunc_begin0 - .quad Lset10527 -Lset10528 = Ltmp2471-Lfunc_begin0 - .quad Lset10528 -Lset10529 = Ltmp2488-Lfunc_begin0 - .quad Lset10529 - .quad 0 - .quad 0 -Ldebug_ranges127: -Lset10530 = Ltmp2496-Lfunc_begin0 - .quad Lset10530 -Lset10531 = Ltmp2498-Lfunc_begin0 - .quad Lset10531 -Lset10532 = Ltmp2500-Lfunc_begin0 - .quad Lset10532 -Lset10533 = Ltmp2501-Lfunc_begin0 - .quad Lset10533 -Lset10534 = Ltmp2505-Lfunc_begin0 - .quad Lset10534 -Lset10535 = Ltmp2511-Lfunc_begin0 - .quad Lset10535 -Lset10536 = Ltmp2516-Lfunc_begin0 - .quad Lset10536 -Lset10537 = Ltmp2522-Lfunc_begin0 - .quad Lset10537 -Lset10538 = Ltmp2533-Lfunc_begin0 - .quad Lset10538 -Lset10539 = Ltmp2534-Lfunc_begin0 - .quad Lset10539 -Lset10540 = Ltmp2549-Lfunc_begin0 - .quad Lset10540 -Lset10541 = Ltmp2550-Lfunc_begin0 - .quad Lset10541 - .quad 0 - .quad 0 -Ldebug_ranges128: -Lset10542 = Ltmp2501-Lfunc_begin0 - .quad Lset10542 -Lset10543 = Ltmp2505-Lfunc_begin0 - .quad Lset10543 -Lset10544 = Ltmp2511-Lfunc_begin0 - .quad Lset10544 -Lset10545 = Ltmp2516-Lfunc_begin0 - .quad Lset10545 -Lset10546 = Ltmp2532-Lfunc_begin0 - .quad Lset10546 -Lset10547 = Ltmp2533-Lfunc_begin0 - .quad Lset10547 -Lset10548 = Ltmp2537-Lfunc_begin0 - .quad Lset10548 -Lset10549 = Ltmp2538-Lfunc_begin0 - .quad Lset10549 -Lset10550 = Ltmp2547-Lfunc_begin0 - .quad Lset10550 -Lset10551 = Ltmp2549-Lfunc_begin0 - .quad Lset10551 - .quad 0 - .quad 0 -Ldebug_ranges129: -Lset10552 = Ltmp2541-Lfunc_begin0 - .quad Lset10552 -Lset10553 = Ltmp2545-Lfunc_begin0 - .quad Lset10553 -Lset10554 = Ltmp2563-Lfunc_begin0 - .quad Lset10554 -Lset10555 = Ltmp2567-Lfunc_begin0 - .quad Lset10555 -Lset10556 = Ltmp5259-Lfunc_begin0 - .quad Lset10556 -Lset10557 = Ltmp5260-Lfunc_begin0 - .quad Lset10557 - .quad 0 - .quad 0 -Ldebug_ranges130: -Lset10558 = Ltmp2541-Lfunc_begin0 - .quad Lset10558 -Lset10559 = Ltmp2545-Lfunc_begin0 - .quad Lset10559 -Lset10560 = Ltmp2563-Lfunc_begin0 - .quad Lset10560 -Lset10561 = Ltmp2569-Lfunc_begin0 - .quad Lset10561 -Lset10562 = Ltmp5259-Lfunc_begin0 - .quad Lset10562 -Lset10563 = Ltmp5260-Lfunc_begin0 - .quad Lset10563 - .quad 0 - .quad 0 -Ldebug_ranges131: -Lset10564 = Ltmp2540-Lfunc_begin0 - .quad Lset10564 -Lset10565 = Ltmp2545-Lfunc_begin0 - .quad Lset10565 -Lset10566 = Ltmp2562-Lfunc_begin0 - .quad Lset10566 -Lset10567 = Ltmp2569-Lfunc_begin0 - .quad Lset10567 -Lset10568 = Ltmp5259-Lfunc_begin0 - .quad Lset10568 -Lset10569 = Ltmp5260-Lfunc_begin0 - .quad Lset10569 - .quad 0 - .quad 0 -Ldebug_ranges132: -Lset10570 = Ltmp2488-Lfunc_begin0 - .quad Lset10570 -Lset10571 = Ltmp2498-Lfunc_begin0 - .quad Lset10571 -Lset10572 = Ltmp2500-Lfunc_begin0 - .quad Lset10572 -Lset10573 = Ltmp2530-Lfunc_begin0 - .quad Lset10573 -Lset10574 = Ltmp2532-Lfunc_begin0 - .quad Lset10574 -Lset10575 = Ltmp2553-Lfunc_begin0 - .quad Lset10575 -Lset10576 = Ltmp2554-Lfunc_begin0 - .quad Lset10576 -Lset10577 = Ltmp2569-Lfunc_begin0 - .quad Lset10577 -Lset10578 = Ltmp2570-Lfunc_begin0 - .quad Lset10578 -Lset10579 = Ltmp2575-Lfunc_begin0 - .quad Lset10579 -Lset10580 = Ltmp5259-Lfunc_begin0 - .quad Lset10580 -Lset10581 = Ltmp5260-Lfunc_begin0 - .quad Lset10581 - .quad 0 - .quad 0 -Ldebug_ranges133: -Lset10582 = Ltmp2583-Lfunc_begin0 - .quad Lset10582 -Lset10583 = Ltmp2585-Lfunc_begin0 - .quad Lset10583 -Lset10584 = Ltmp2587-Lfunc_begin0 - .quad Lset10584 -Lset10585 = Ltmp2588-Lfunc_begin0 - .quad Lset10585 -Lset10586 = Ltmp2592-Lfunc_begin0 - .quad Lset10586 -Lset10587 = Ltmp2598-Lfunc_begin0 - .quad Lset10587 -Lset10588 = Ltmp2603-Lfunc_begin0 - .quad Lset10588 -Lset10589 = Ltmp2609-Lfunc_begin0 - .quad Lset10589 -Lset10590 = Ltmp2621-Lfunc_begin0 - .quad Lset10590 -Lset10591 = Ltmp2622-Lfunc_begin0 - .quad Lset10591 -Lset10592 = Ltmp2641-Lfunc_begin0 - .quad Lset10592 -Lset10593 = Ltmp2642-Lfunc_begin0 - .quad Lset10593 - .quad 0 - .quad 0 -Ldebug_ranges134: -Lset10594 = Ltmp2588-Lfunc_begin0 - .quad Lset10594 -Lset10595 = Ltmp2592-Lfunc_begin0 - .quad Lset10595 -Lset10596 = Ltmp2598-Lfunc_begin0 - .quad Lset10596 -Lset10597 = Ltmp2603-Lfunc_begin0 - .quad Lset10597 -Lset10598 = Ltmp2620-Lfunc_begin0 - .quad Lset10598 -Lset10599 = Ltmp2621-Lfunc_begin0 - .quad Lset10599 -Lset10600 = Ltmp2625-Lfunc_begin0 - .quad Lset10600 -Lset10601 = Ltmp2626-Lfunc_begin0 - .quad Lset10601 -Lset10602 = Ltmp2639-Lfunc_begin0 - .quad Lset10602 -Lset10603 = Ltmp2641-Lfunc_begin0 - .quad Lset10603 - .quad 0 - .quad 0 -Ldebug_ranges135: -Lset10604 = Ltmp2631-Lfunc_begin0 - .quad Lset10604 -Lset10605 = Ltmp2634-Lfunc_begin0 - .quad Lset10605 -Lset10606 = Ltmp2635-Lfunc_begin0 - .quad Lset10606 -Lset10607 = Ltmp2637-Lfunc_begin0 - .quad Lset10607 -Lset10608 = Ltmp2649-Lfunc_begin0 - .quad Lset10608 -Lset10609 = Ltmp2651-Lfunc_begin0 - .quad Lset10609 -Lset10610 = Ltmp2652-Lfunc_begin0 - .quad Lset10610 -Lset10611 = Ltmp2654-Lfunc_begin0 - .quad Lset10611 -Lset10612 = Ltmp5260-Lfunc_begin0 - .quad Lset10612 -Lset10613 = Ltmp5261-Lfunc_begin0 - .quad Lset10613 - .quad 0 - .quad 0 -Ldebug_ranges136: -Lset10614 = Ltmp2631-Lfunc_begin0 - .quad Lset10614 -Lset10615 = Ltmp2634-Lfunc_begin0 - .quad Lset10615 -Lset10616 = Ltmp2635-Lfunc_begin0 - .quad Lset10616 -Lset10617 = Ltmp2637-Lfunc_begin0 - .quad Lset10617 -Lset10618 = Ltmp2649-Lfunc_begin0 - .quad Lset10618 -Lset10619 = Ltmp2651-Lfunc_begin0 - .quad Lset10619 -Lset10620 = Ltmp2652-Lfunc_begin0 - .quad Lset10620 -Lset10621 = Ltmp2655-Lfunc_begin0 - .quad Lset10621 -Lset10622 = Ltmp5260-Lfunc_begin0 - .quad Lset10622 -Lset10623 = Ltmp5261-Lfunc_begin0 - .quad Lset10623 - .quad 0 - .quad 0 -Ldebug_ranges137: -Lset10624 = Ltmp2629-Lfunc_begin0 - .quad Lset10624 -Lset10625 = Ltmp2634-Lfunc_begin0 - .quad Lset10625 -Lset10626 = Ltmp2635-Lfunc_begin0 - .quad Lset10626 -Lset10627 = Ltmp2637-Lfunc_begin0 - .quad Lset10627 -Lset10628 = Ltmp2649-Lfunc_begin0 - .quad Lset10628 -Lset10629 = Ltmp2651-Lfunc_begin0 - .quad Lset10629 -Lset10630 = Ltmp2652-Lfunc_begin0 - .quad Lset10630 -Lset10631 = Ltmp2655-Lfunc_begin0 - .quad Lset10631 -Lset10632 = Ltmp5260-Lfunc_begin0 - .quad Lset10632 -Lset10633 = Ltmp5261-Lfunc_begin0 - .quad Lset10633 - .quad 0 - .quad 0 -Ldebug_ranges138: -Lset10634 = Ltmp2575-Lfunc_begin0 - .quad Lset10634 -Lset10635 = Ltmp2585-Lfunc_begin0 - .quad Lset10635 -Lset10636 = Ltmp2587-Lfunc_begin0 - .quad Lset10636 -Lset10637 = Ltmp2617-Lfunc_begin0 - .quad Lset10637 -Lset10638 = Ltmp2620-Lfunc_begin0 - .quad Lset10638 -Lset10639 = Ltmp2634-Lfunc_begin0 - .quad Lset10639 -Lset10640 = Ltmp2635-Lfunc_begin0 - .quad Lset10640 -Lset10641 = Ltmp2645-Lfunc_begin0 - .quad Lset10641 -Lset10642 = Ltmp2646-Lfunc_begin0 - .quad Lset10642 -Lset10643 = Ltmp2651-Lfunc_begin0 - .quad Lset10643 -Lset10644 = Ltmp2652-Lfunc_begin0 - .quad Lset10644 -Lset10645 = Ltmp2660-Lfunc_begin0 - .quad Lset10645 -Lset10646 = Ltmp5260-Lfunc_begin0 - .quad Lset10646 -Lset10647 = Ltmp5261-Lfunc_begin0 - .quad Lset10647 - .quad 0 - .quad 0 -Ldebug_ranges139: -Lset10648 = Ltmp2660-Lfunc_begin0 - .quad Lset10648 -Lset10649 = Ltmp2663-Lfunc_begin0 - .quad Lset10649 -Lset10650 = Ltmp2676-Lfunc_begin0 - .quad Lset10650 -Lset10651 = Ltmp2681-Lfunc_begin0 - .quad Lset10651 -Lset10652 = Ltmp2687-Lfunc_begin0 - .quad Lset10652 -Lset10653 = Ltmp2693-Lfunc_begin0 - .quad Lset10653 -Lset10654 = Ltmp2707-Lfunc_begin0 - .quad Lset10654 -Lset10655 = Ltmp2708-Lfunc_begin0 - .quad Lset10655 -Lset10656 = Ltmp2712-Lfunc_begin0 - .quad Lset10656 -Lset10657 = Ltmp2713-Lfunc_begin0 - .quad Lset10657 - .quad 0 - .quad 0 -Ldebug_ranges140: -Lset10658 = Ltmp2671-Lfunc_begin0 - .quad Lset10658 -Lset10659 = Ltmp2673-Lfunc_begin0 - .quad Lset10659 -Lset10660 = Ltmp2675-Lfunc_begin0 - .quad Lset10660 -Lset10661 = Ltmp2676-Lfunc_begin0 - .quad Lset10661 -Lset10662 = Ltmp2681-Lfunc_begin0 - .quad Lset10662 -Lset10663 = Ltmp2687-Lfunc_begin0 - .quad Lset10663 -Lset10664 = Ltmp2693-Lfunc_begin0 - .quad Lset10664 -Lset10665 = Ltmp2699-Lfunc_begin0 - .quad Lset10665 -Lset10666 = Ltmp2708-Lfunc_begin0 - .quad Lset10666 -Lset10667 = Ltmp2709-Lfunc_begin0 - .quad Lset10667 -Lset10668 = Ltmp2715-Lfunc_begin0 - .quad Lset10668 -Lset10669 = Ltmp2716-Lfunc_begin0 - .quad Lset10669 - .quad 0 - .quad 0 -Ldebug_ranges141: -Lset10670 = Ltmp2660-Lfunc_begin0 - .quad Lset10670 -Lset10671 = Ltmp2673-Lfunc_begin0 - .quad Lset10671 -Lset10672 = Ltmp2675-Lfunc_begin0 - .quad Lset10672 -Lset10673 = Ltmp2705-Lfunc_begin0 - .quad Lset10673 -Lset10674 = Ltmp2707-Lfunc_begin0 - .quad Lset10674 -Lset10675 = Ltmp2720-Lfunc_begin0 - .quad Lset10675 -Lset10676 = Ltmp2721-Lfunc_begin0 - .quad Lset10676 -Lset10677 = Ltmp2730-Lfunc_begin0 - .quad Lset10677 - .quad 0 - .quad 0 -Ldebug_ranges142: -Lset10678 = Ltmp2738-Lfunc_begin0 - .quad Lset10678 -Lset10679 = Ltmp2749-Lfunc_begin0 - .quad Lset10679 -Lset10680 = Ltmp2750-Lfunc_begin0 - .quad Lset10680 -Lset10681 = Ltmp2751-Lfunc_begin0 - .quad Lset10681 -Lset10682 = Ltmp2760-Lfunc_begin0 - .quad Lset10682 -Lset10683 = Ltmp2762-Lfunc_begin0 - .quad Lset10683 -Lset10684 = Ltmp2765-Lfunc_begin0 - .quad Lset10684 -Lset10685 = Ltmp2766-Lfunc_begin0 - .quad Lset10685 - .quad 0 - .quad 0 -Ldebug_ranges143: -Lset10686 = Ltmp2730-Lfunc_begin0 - .quad Lset10686 -Lset10687 = Ltmp2749-Lfunc_begin0 - .quad Lset10687 -Lset10688 = Ltmp2750-Lfunc_begin0 - .quad Lset10688 -Lset10689 = Ltmp2759-Lfunc_begin0 - .quad Lset10689 -Lset10690 = Ltmp2760-Lfunc_begin0 - .quad Lset10690 -Lset10691 = Ltmp2778-Lfunc_begin0 - .quad Lset10691 - .quad 0 - .quad 0 -Ldebug_ranges144: -Lset10692 = Ltmp2780-Lfunc_begin0 - .quad Lset10692 -Lset10693 = Ltmp2788-Lfunc_begin0 - .quad Lset10693 -Lset10694 = Ltmp2798-Lfunc_begin0 - .quad Lset10694 -Lset10695 = Ltmp2799-Lfunc_begin0 - .quad Lset10695 -Lset10696 = Ltmp2802-Lfunc_begin0 - .quad Lset10696 -Lset10697 = Ltmp2808-Lfunc_begin0 - .quad Lset10697 - .quad 0 - .quad 0 -Ldebug_ranges145: -Lset10698 = Ltmp2779-Lfunc_begin0 - .quad Lset10698 -Lset10699 = Ltmp2799-Lfunc_begin0 - .quad Lset10699 -Lset10700 = Ltmp2802-Lfunc_begin0 - .quad Lset10700 -Lset10701 = Ltmp2816-Lfunc_begin0 - .quad Lset10701 -Lset10702 = Ltmp2819-Lfunc_begin0 - .quad Lset10702 -Lset10703 = Ltmp2831-Lfunc_begin0 - .quad Lset10703 - .quad 0 - .quad 0 -Ldebug_ranges146: -Lset10704 = Ltmp2871-Lfunc_begin0 - .quad Lset10704 -Lset10705 = Ltmp2903-Lfunc_begin0 - .quad Lset10705 -Lset10706 = Ltmp2906-Lfunc_begin0 - .quad Lset10706 -Lset10707 = Ltmp2913-Lfunc_begin0 - .quad Lset10707 - .quad 0 - .quad 0 -Ldebug_ranges147: -Lset10708 = Ltmp2936-Lfunc_begin0 - .quad Lset10708 -Lset10709 = Ltmp2958-Lfunc_begin0 - .quad Lset10709 -Lset10710 = Ltmp2959-Lfunc_begin0 - .quad Lset10710 -Lset10711 = Ltmp2962-Lfunc_begin0 - .quad Lset10711 -Lset10712 = Ltmp2963-Lfunc_begin0 - .quad Lset10712 -Lset10713 = Ltmp2970-Lfunc_begin0 - .quad Lset10713 - .quad 0 - .quad 0 -Ldebug_ranges148: -Lset10714 = Ltmp2970-Lfunc_begin0 - .quad Lset10714 -Lset10715 = Ltmp3008-Lfunc_begin0 - .quad Lset10715 -Lset10716 = Ltmp3009-Lfunc_begin0 - .quad Lset10716 -Lset10717 = Ltmp3012-Lfunc_begin0 - .quad Lset10717 - .quad 0 - .quad 0 -Ldebug_ranges149: -Lset10718 = Ltmp3012-Lfunc_begin0 - .quad Lset10718 -Lset10719 = Ltmp3050-Lfunc_begin0 - .quad Lset10719 -Lset10720 = Ltmp3051-Lfunc_begin0 - .quad Lset10720 -Lset10721 = Ltmp3054-Lfunc_begin0 - .quad Lset10721 - .quad 0 - .quad 0 -Ldebug_ranges150: -Lset10722 = Ltmp3126-Lfunc_begin0 - .quad Lset10722 -Lset10723 = Ltmp3144-Lfunc_begin0 - .quad Lset10723 -Lset10724 = Ltmp3145-Lfunc_begin0 - .quad Lset10724 -Lset10725 = Ltmp3161-Lfunc_begin0 - .quad Lset10725 - .quad 0 - .quad 0 -Ldebug_ranges151: -Lset10726 = Ltmp3161-Lfunc_begin0 - .quad Lset10726 -Lset10727 = Ltmp3186-Lfunc_begin0 - .quad Lset10727 -Lset10728 = Ltmp3187-Lfunc_begin0 - .quad Lset10728 -Lset10729 = Ltmp3205-Lfunc_begin0 - .quad Lset10729 - .quad 0 - .quad 0 -Ldebug_ranges152: -Lset10730 = Ltmp3233-Lfunc_begin0 - .quad Lset10730 -Lset10731 = Ltmp3237-Lfunc_begin0 - .quad Lset10731 -Lset10732 = Ltmp3244-Lfunc_begin0 - .quad Lset10732 -Lset10733 = Ltmp3250-Lfunc_begin0 - .quad Lset10733 - .quad 0 - .quad 0 -Ldebug_ranges153: -Lset10734 = Ltmp3239-Lfunc_begin0 - .quad Lset10734 -Lset10735 = Ltmp3244-Lfunc_begin0 - .quad Lset10735 -Lset10736 = Ltmp3250-Lfunc_begin0 - .quad Lset10736 -Lset10737 = Ltmp3254-Lfunc_begin0 - .quad Lset10737 - .quad 0 - .quad 0 -Ldebug_ranges154: -Lset10738 = Ltmp3265-Lfunc_begin0 - .quad Lset10738 -Lset10739 = Ltmp3267-Lfunc_begin0 - .quad Lset10739 -Lset10740 = Ltmp3271-Lfunc_begin0 - .quad Lset10740 -Lset10741 = Ltmp3277-Lfunc_begin0 - .quad Lset10741 -Lset10742 = Ltmp3288-Lfunc_begin0 - .quad Lset10742 -Lset10743 = Ltmp3289-Lfunc_begin0 - .quad Lset10743 -Lset10744 = Ltmp3291-Lfunc_begin0 - .quad Lset10744 -Lset10745 = Ltmp3295-Lfunc_begin0 - .quad Lset10745 -Lset10746 = Ltmp3309-Lfunc_begin0 - .quad Lset10746 -Lset10747 = Ltmp3311-Lfunc_begin0 - .quad Lset10747 -Lset10748 = Ltmp3333-Lfunc_begin0 - .quad Lset10748 -Lset10749 = Ltmp3334-Lfunc_begin0 - .quad Lset10749 - .quad 0 - .quad 0 -Ldebug_ranges155: -Lset10750 = Ltmp3267-Lfunc_begin0 - .quad Lset10750 -Lset10751 = Ltmp3269-Lfunc_begin0 - .quad Lset10751 -Lset10752 = Ltmp3277-Lfunc_begin0 - .quad Lset10752 -Lset10753 = Ltmp3283-Lfunc_begin0 - .quad Lset10753 -Lset10754 = Ltmp3295-Lfunc_begin0 - .quad Lset10754 -Lset10755 = Ltmp3296-Lfunc_begin0 - .quad Lset10755 -Lset10756 = Ltmp3298-Lfunc_begin0 - .quad Lset10756 -Lset10757 = Ltmp3302-Lfunc_begin0 - .quad Lset10757 -Lset10758 = Ltmp3311-Lfunc_begin0 - .quad Lset10758 -Lset10759 = Ltmp3313-Lfunc_begin0 - .quad Lset10759 -Lset10760 = Ltmp3337-Lfunc_begin0 - .quad Lset10760 -Lset10761 = Ltmp3338-Lfunc_begin0 - .quad Lset10761 - .quad 0 - .quad 0 -Ldebug_ranges156: -Lset10762 = Ltmp3269-Lfunc_begin0 - .quad Lset10762 -Lset10763 = Ltmp3271-Lfunc_begin0 - .quad Lset10763 -Lset10764 = Ltmp3283-Lfunc_begin0 - .quad Lset10764 -Lset10765 = Ltmp3288-Lfunc_begin0 - .quad Lset10765 -Lset10766 = Ltmp3302-Lfunc_begin0 - .quad Lset10766 -Lset10767 = Ltmp3303-Lfunc_begin0 - .quad Lset10767 -Lset10768 = Ltmp3305-Lfunc_begin0 - .quad Lset10768 -Lset10769 = Ltmp3309-Lfunc_begin0 - .quad Lset10769 -Lset10770 = Ltmp3313-Lfunc_begin0 - .quad Lset10770 -Lset10771 = Ltmp3315-Lfunc_begin0 - .quad Lset10771 -Lset10772 = Ltmp3341-Lfunc_begin0 - .quad Lset10772 -Lset10773 = Ltmp3342-Lfunc_begin0 - .quad Lset10773 - .quad 0 - .quad 0 -Ldebug_ranges157: -Lset10774 = Ltmp3265-Lfunc_begin0 - .quad Lset10774 -Lset10775 = Ltmp3289-Lfunc_begin0 - .quad Lset10775 -Lset10776 = Ltmp3291-Lfunc_begin0 - .quad Lset10776 -Lset10777 = Ltmp3296-Lfunc_begin0 - .quad Lset10777 -Lset10778 = Ltmp3298-Lfunc_begin0 - .quad Lset10778 -Lset10779 = Ltmp3303-Lfunc_begin0 - .quad Lset10779 -Lset10780 = Ltmp3305-Lfunc_begin0 - .quad Lset10780 -Lset10781 = Ltmp3315-Lfunc_begin0 - .quad Lset10781 -Lset10782 = Ltmp3332-Lfunc_begin0 - .quad Lset10782 -Lset10783 = Ltmp3345-Lfunc_begin0 - .quad Lset10783 -Lset10784 = Ltmp5268-Lfunc_begin0 - .quad Lset10784 -Lset10785 = Ltmp5271-Lfunc_begin0 - .quad Lset10785 - .quad 0 - .quad 0 -Ldebug_ranges158: -Lset10786 = Ltmp3330-Lfunc_begin0 - .quad Lset10786 -Lset10787 = Ltmp3332-Lfunc_begin0 - .quad Lset10787 -Lset10788 = Ltmp3345-Lfunc_begin0 - .quad Lset10788 -Lset10789 = Ltmp3346-Lfunc_begin0 - .quad Lset10789 - .quad 0 - .quad 0 -Ldebug_ranges159: -Lset10790 = Ltmp3327-Lfunc_begin0 - .quad Lset10790 -Lset10791 = Ltmp3332-Lfunc_begin0 - .quad Lset10791 -Lset10792 = Ltmp3345-Lfunc_begin0 - .quad Lset10792 -Lset10793 = Ltmp3346-Lfunc_begin0 - .quad Lset10793 - .quad 0 - .quad 0 -Ldebug_ranges160: -Lset10794 = Ltmp3259-Lfunc_begin0 - .quad Lset10794 -Lset10795 = Ltmp3289-Lfunc_begin0 - .quad Lset10795 -Lset10796 = Ltmp3291-Lfunc_begin0 - .quad Lset10796 -Lset10797 = Ltmp3296-Lfunc_begin0 - .quad Lset10797 -Lset10798 = Ltmp3298-Lfunc_begin0 - .quad Lset10798 -Lset10799 = Ltmp3303-Lfunc_begin0 - .quad Lset10799 -Lset10800 = Ltmp3305-Lfunc_begin0 - .quad Lset10800 -Lset10801 = Ltmp3323-Lfunc_begin0 - .quad Lset10801 -Lset10802 = Ltmp3325-Lfunc_begin0 - .quad Lset10802 -Lset10803 = Ltmp3355-Lfunc_begin0 - .quad Lset10803 -Lset10804 = Ltmp5268-Lfunc_begin0 - .quad Lset10804 -Lset10805 = Ltmp5271-Lfunc_begin0 - .quad Lset10805 - .quad 0 - .quad 0 -Ldebug_ranges161: -Lset10806 = Ltmp3433-Lfunc_begin0 - .quad Lset10806 -Lset10807 = Ltmp3435-Lfunc_begin0 - .quad Lset10807 -Lset10808 = Ltmp3448-Lfunc_begin0 - .quad Lset10808 -Lset10809 = Ltmp3450-Lfunc_begin0 - .quad Lset10809 - .quad 0 - .quad 0 -Ldebug_ranges162: -Lset10810 = Ltmp3435-Lfunc_begin0 - .quad Lset10810 -Lset10811 = Ltmp3444-Lfunc_begin0 - .quad Lset10811 -Lset10812 = Ltmp3456-Lfunc_begin0 - .quad Lset10812 -Lset10813 = Ltmp3463-Lfunc_begin0 - .quad Lset10813 - .quad 0 - .quad 0 -Ldebug_ranges163: -Lset10814 = Ltmp3435-Lfunc_begin0 - .quad Lset10814 -Lset10815 = Ltmp3442-Lfunc_begin0 - .quad Lset10815 -Lset10816 = Ltmp3456-Lfunc_begin0 - .quad Lset10816 -Lset10817 = Ltmp3463-Lfunc_begin0 - .quad Lset10817 - .quad 0 - .quad 0 -Ldebug_ranges164: -Lset10818 = Ltmp3435-Lfunc_begin0 - .quad Lset10818 -Lset10819 = Ltmp3444-Lfunc_begin0 - .quad Lset10819 -Lset10820 = Ltmp3456-Lfunc_begin0 - .quad Lset10820 -Lset10821 = Ltmp3467-Lfunc_begin0 - .quad Lset10821 -Lset10822 = Ltmp5237-Lfunc_begin0 - .quad Lset10822 -Lset10823 = Ltmp5238-Lfunc_begin0 - .quad Lset10823 -Lset10824 = Ltmp5239-Lfunc_begin0 - .quad Lset10824 -Lset10825 = Ltmp5240-Lfunc_begin0 - .quad Lset10825 - .quad 0 - .quad 0 -Ldebug_ranges165: -Lset10826 = Ltmp3444-Lfunc_begin0 - .quad Lset10826 -Lset10827 = Ltmp3445-Lfunc_begin0 - .quad Lset10827 -Lset10828 = Ltmp3453-Lfunc_begin0 - .quad Lset10828 -Lset10829 = Ltmp3456-Lfunc_begin0 - .quad Lset10829 -Lset10830 = Ltmp3469-Lfunc_begin0 - .quad Lset10830 -Lset10831 = Ltmp3472-Lfunc_begin0 - .quad Lset10831 - .quad 0 - .quad 0 -Ldebug_ranges166: -Lset10832 = Ltmp3444-Lfunc_begin0 - .quad Lset10832 -Lset10833 = Ltmp3445-Lfunc_begin0 - .quad Lset10833 -Lset10834 = Ltmp3453-Lfunc_begin0 - .quad Lset10834 -Lset10835 = Ltmp3456-Lfunc_begin0 - .quad Lset10835 -Lset10836 = Ltmp3469-Lfunc_begin0 - .quad Lset10836 -Lset10837 = Ltmp3475-Lfunc_begin0 - .quad Lset10837 -Lset10838 = Ltmp5249-Lfunc_begin0 - .quad Lset10838 -Lset10839 = Ltmp5250-Lfunc_begin0 - .quad Lset10839 - .quad 0 - .quad 0 -Ldebug_ranges167: -Lset10840 = Ltmp3450-Lfunc_begin0 - .quad Lset10840 -Lset10841 = Ltmp3453-Lfunc_begin0 - .quad Lset10841 -Lset10842 = Ltmp3468-Lfunc_begin0 - .quad Lset10842 -Lset10843 = Ltmp3469-Lfunc_begin0 - .quad Lset10843 - .quad 0 - .quad 0 -Ldebug_ranges168: -Lset10844 = Ltmp3447-Lfunc_begin0 - .quad Lset10844 -Lset10845 = Ltmp3448-Lfunc_begin0 - .quad Lset10845 -Lset10846 = Ltmp3467-Lfunc_begin0 - .quad Lset10846 -Lset10847 = Ltmp3468-Lfunc_begin0 - .quad Lset10847 - .quad 0 - .quad 0 -Ldebug_ranges169: -Lset10848 = Ltmp3428-Lfunc_begin0 - .quad Lset10848 -Lset10849 = Ltmp3475-Lfunc_begin0 - .quad Lset10849 -Lset10850 = Ltmp5237-Lfunc_begin0 - .quad Lset10850 -Lset10851 = Ltmp5238-Lfunc_begin0 - .quad Lset10851 -Lset10852 = Ltmp5239-Lfunc_begin0 - .quad Lset10852 -Lset10853 = Ltmp5240-Lfunc_begin0 - .quad Lset10853 -Lset10854 = Ltmp5249-Lfunc_begin0 - .quad Lset10854 -Lset10855 = Ltmp5250-Lfunc_begin0 - .quad Lset10855 - .quad 0 - .quad 0 -Ldebug_ranges170: -Lset10856 = Ltmp3425-Lfunc_begin0 - .quad Lset10856 -Lset10857 = Ltmp3476-Lfunc_begin0 - .quad Lset10857 -Lset10858 = Ltmp5237-Lfunc_begin0 - .quad Lset10858 -Lset10859 = Ltmp5238-Lfunc_begin0 - .quad Lset10859 -Lset10860 = Ltmp5239-Lfunc_begin0 - .quad Lset10860 -Lset10861 = Ltmp5240-Lfunc_begin0 - .quad Lset10861 -Lset10862 = Ltmp5249-Lfunc_begin0 - .quad Lset10862 -Lset10863 = Ltmp5250-Lfunc_begin0 - .quad Lset10863 - .quad 0 - .quad 0 -Ldebug_ranges171: -Lset10864 = Ltmp3391-Lfunc_begin0 - .quad Lset10864 -Lset10865 = Ltmp3483-Lfunc_begin0 - .quad Lset10865 -Lset10866 = Ltmp3484-Lfunc_begin0 - .quad Lset10866 -Lset10867 = Ltmp3486-Lfunc_begin0 - .quad Lset10867 -Lset10868 = Ltmp5237-Lfunc_begin0 - .quad Lset10868 -Lset10869 = Ltmp5238-Lfunc_begin0 - .quad Lset10869 -Lset10870 = Ltmp5239-Lfunc_begin0 - .quad Lset10870 -Lset10871 = Ltmp5240-Lfunc_begin0 - .quad Lset10871 -Lset10872 = Ltmp5249-Lfunc_begin0 - .quad Lset10872 -Lset10873 = Ltmp5250-Lfunc_begin0 - .quad Lset10873 - .quad 0 - .quad 0 -Ldebug_ranges172: -Lset10874 = Ltmp3496-Lfunc_begin0 - .quad Lset10874 -Lset10875 = Ltmp3498-Lfunc_begin0 - .quad Lset10875 -Lset10876 = Ltmp3501-Lfunc_begin0 - .quad Lset10876 -Lset10877 = Ltmp3511-Lfunc_begin0 - .quad Lset10877 - .quad 0 - .quad 0 -Ldebug_ranges173: -Lset10878 = Ltmp3498-Lfunc_begin0 - .quad Lset10878 -Lset10879 = Ltmp3501-Lfunc_begin0 - .quad Lset10879 -Lset10880 = Ltmp3516-Lfunc_begin0 - .quad Lset10880 -Lset10881 = Ltmp3534-Lfunc_begin0 - .quad Lset10881 - .quad 0 - .quad 0 -Ldebug_ranges174: -Lset10882 = Ltmp3486-Lfunc_begin0 - .quad Lset10882 -Lset10883 = Ltmp3550-Lfunc_begin0 - .quad Lset10883 -Lset10884 = Ltmp3551-Lfunc_begin0 - .quad Lset10884 -Lset10885 = Ltmp3552-Lfunc_begin0 - .quad Lset10885 - .quad 0 - .quad 0 -Ldebug_ranges175: -Lset10886 = Ltmp3579-Lfunc_begin0 - .quad Lset10886 -Lset10887 = Ltmp3580-Lfunc_begin0 - .quad Lset10887 -Lset10888 = Ltmp3581-Lfunc_begin0 - .quad Lset10888 -Lset10889 = Ltmp3582-Lfunc_begin0 - .quad Lset10889 - .quad 0 - .quad 0 -Ldebug_ranges176: -Lset10890 = Ltmp3552-Lfunc_begin0 - .quad Lset10890 -Lset10891 = Ltmp3585-Lfunc_begin0 - .quad Lset10891 -Lset10892 = Ltmp3586-Lfunc_begin0 - .quad Lset10892 -Lset10893 = Ltmp3600-Lfunc_begin0 - .quad Lset10893 - .quad 0 - .quad 0 -Ldebug_ranges177: -Lset10894 = Ltmp3705-Lfunc_begin0 - .quad Lset10894 -Lset10895 = Ltmp3710-Lfunc_begin0 - .quad Lset10895 -Lset10896 = Ltmp3711-Lfunc_begin0 - .quad Lset10896 -Lset10897 = Ltmp3712-Lfunc_begin0 - .quad Lset10897 -Lset10898 = Ltmp3713-Lfunc_begin0 - .quad Lset10898 -Lset10899 = Ltmp3715-Lfunc_begin0 - .quad Lset10899 - .quad 0 - .quad 0 -Ldebug_ranges178: -Lset10900 = Ltmp3963-Lfunc_begin0 - .quad Lset10900 -Lset10901 = Ltmp3987-Lfunc_begin0 - .quad Lset10901 -Lset10902 = Ltmp3988-Lfunc_begin0 - .quad Lset10902 -Lset10903 = Ltmp3992-Lfunc_begin0 - .quad Lset10903 - .quad 0 - .quad 0 -Ldebug_ranges179: -Lset10904 = Ltmp3992-Lfunc_begin0 - .quad Lset10904 -Lset10905 = Ltmp4015-Lfunc_begin0 - .quad Lset10905 -Lset10906 = Ltmp4016-Lfunc_begin0 - .quad Lset10906 -Lset10907 = Ltmp4020-Lfunc_begin0 - .quad Lset10907 - .quad 0 - .quad 0 -Ldebug_ranges180: -Lset10908 = Ltmp4034-Lfunc_begin0 - .quad Lset10908 -Lset10909 = Ltmp4043-Lfunc_begin0 - .quad Lset10909 -Lset10910 = Ltmp4063-Lfunc_begin0 - .quad Lset10910 -Lset10911 = Ltmp4071-Lfunc_begin0 - .quad Lset10911 - .quad 0 - .quad 0 -Ldebug_ranges181: -Lset10912 = Ltmp4021-Lfunc_begin0 - .quad Lset10912 -Lset10913 = Ltmp4071-Lfunc_begin0 - .quad Lset10913 -Lset10914 = Ltmp4072-Lfunc_begin0 - .quad Lset10914 -Lset10915 = Ltmp4081-Lfunc_begin0 - .quad Lset10915 - .quad 0 - .quad 0 -Ldebug_ranges182: -Lset10916 = Ltmp4096-Lfunc_begin0 - .quad Lset10916 -Lset10917 = Ltmp4100-Lfunc_begin0 - .quad Lset10917 -Lset10918 = Ltmp4109-Lfunc_begin0 - .quad Lset10918 -Lset10919 = Ltmp4120-Lfunc_begin0 - .quad Lset10919 - .quad 0 - .quad 0 -Ldebug_ranges183: -Lset10920 = Ltmp4082-Lfunc_begin0 - .quad Lset10920 -Lset10921 = Ltmp4128-Lfunc_begin0 - .quad Lset10921 -Lset10922 = Ltmp5261-Lfunc_begin0 - .quad Lset10922 -Lset10923 = Ltmp5262-Lfunc_begin0 - .quad Lset10923 - .quad 0 - .quad 0 -Ldebug_ranges184: -Lset10924 = Ltmp4143-Lfunc_begin0 - .quad Lset10924 -Lset10925 = Ltmp4147-Lfunc_begin0 - .quad Lset10925 -Lset10926 = Ltmp4156-Lfunc_begin0 - .quad Lset10926 -Lset10927 = Ltmp4167-Lfunc_begin0 - .quad Lset10927 - .quad 0 - .quad 0 -Ldebug_ranges185: -Lset10928 = Ltmp4176-Lfunc_begin0 - .quad Lset10928 -Lset10929 = Ltmp4184-Lfunc_begin0 - .quad Lset10929 -Lset10930 = Ltmp4198-Lfunc_begin0 - .quad Lset10930 -Lset10931 = Ltmp4212-Lfunc_begin0 - .quad Lset10931 - .quad 0 - .quad 0 -Ldebug_ranges186: -Lset10932 = Ltmp4176-Lfunc_begin0 - .quad Lset10932 -Lset10933 = Ltmp4214-Lfunc_begin0 - .quad Lset10933 -Lset10934 = Ltmp4215-Lfunc_begin0 - .quad Lset10934 -Lset10935 = Ltmp4218-Lfunc_begin0 - .quad Lset10935 - .quad 0 - .quad 0 -Ldebug_ranges187: -Lset10936 = Ltmp4279-Lfunc_begin0 - .quad Lset10936 -Lset10937 = Ltmp4283-Lfunc_begin0 - .quad Lset10937 -Lset10938 = Ltmp4299-Lfunc_begin0 - .quad Lset10938 -Lset10939 = Ltmp4301-Lfunc_begin0 - .quad Lset10939 - .quad 0 - .quad 0 -Ldebug_ranges188: -Lset10940 = Ltmp4283-Lfunc_begin0 - .quad Lset10940 -Lset10941 = Ltmp4284-Lfunc_begin0 - .quad Lset10941 -Lset10942 = Ltmp4287-Lfunc_begin0 - .quad Lset10942 -Lset10943 = Ltmp4294-Lfunc_begin0 - .quad Lset10943 -Lset10944 = Ltmp4308-Lfunc_begin0 - .quad Lset10944 -Lset10945 = Ltmp4315-Lfunc_begin0 - .quad Lset10945 - .quad 0 - .quad 0 -Ldebug_ranges189: -Lset10946 = Ltmp4283-Lfunc_begin0 - .quad Lset10946 -Lset10947 = Ltmp4294-Lfunc_begin0 - .quad Lset10947 -Lset10948 = Ltmp4308-Lfunc_begin0 - .quad Lset10948 -Lset10949 = Ltmp4322-Lfunc_begin0 - .quad Lset10949 -Lset10950 = Ltmp5238-Lfunc_begin0 - .quad Lset10950 -Lset10951 = Ltmp5239-Lfunc_begin0 - .quad Lset10951 - .quad 0 - .quad 0 -Ldebug_ranges190: -Lset10952 = Ltmp4295-Lfunc_begin0 - .quad Lset10952 -Lset10953 = Ltmp4299-Lfunc_begin0 - .quad Lset10953 -Lset10954 = Ltmp4303-Lfunc_begin0 - .quad Lset10954 -Lset10955 = Ltmp4306-Lfunc_begin0 - .quad Lset10955 - .quad 0 - .quad 0 -Ldebug_ranges191: -Lset10956 = Ltmp4260-Lfunc_begin0 - .quad Lset10956 -Lset10957 = Ltmp4264-Lfunc_begin0 - .quad Lset10957 -Lset10958 = Ltmp4266-Lfunc_begin0 - .quad Lset10958 -Lset10959 = Ltmp4325-Lfunc_begin0 - .quad Lset10959 -Lset10960 = Ltmp4327-Lfunc_begin0 - .quad Lset10960 -Lset10961 = Ltmp4330-Lfunc_begin0 - .quad Lset10961 -Lset10962 = Ltmp5238-Lfunc_begin0 - .quad Lset10962 -Lset10963 = Ltmp5239-Lfunc_begin0 - .quad Lset10963 - .quad 0 - .quad 0 -Ldebug_ranges192: -Lset10964 = Ltmp4375-Lfunc_begin0 - .quad Lset10964 -Lset10965 = Ltmp4376-Lfunc_begin0 - .quad Lset10965 -Lset10966 = Ltmp4389-Lfunc_begin0 - .quad Lset10966 -Lset10967 = Ltmp4394-Lfunc_begin0 - .quad Lset10967 -Lset10968 = Ltmp4404-Lfunc_begin0 - .quad Lset10968 -Lset10969 = Ltmp4410-Lfunc_begin0 - .quad Lset10969 - .quad 0 - .quad 0 -Ldebug_ranges193: -Lset10970 = Ltmp4375-Lfunc_begin0 - .quad Lset10970 -Lset10971 = Ltmp4376-Lfunc_begin0 - .quad Lset10971 -Lset10972 = Ltmp4389-Lfunc_begin0 - .quad Lset10972 -Lset10973 = Ltmp4394-Lfunc_begin0 - .quad Lset10973 -Lset10974 = Ltmp4404-Lfunc_begin0 - .quad Lset10974 -Lset10975 = Ltmp4415-Lfunc_begin0 - .quad Lset10975 -Lset10976 = Ltmp5256-Lfunc_begin0 - .quad Lset10976 -Lset10977 = Ltmp5257-Lfunc_begin0 - .quad Lset10977 - .quad 0 - .quad 0 -Ldebug_ranges194: -Lset10978 = Ltmp4383-Lfunc_begin0 - .quad Lset10978 -Lset10979 = Ltmp4387-Lfunc_begin0 - .quad Lset10979 -Lset10980 = Ltmp4398-Lfunc_begin0 - .quad Lset10980 -Lset10981 = Ltmp4402-Lfunc_begin0 - .quad Lset10981 - .quad 0 - .quad 0 -Ldebug_ranges195: -Lset10982 = Ltmp4379-Lfunc_begin0 - .quad Lset10982 -Lset10983 = Ltmp4383-Lfunc_begin0 - .quad Lset10983 -Lset10984 = Ltmp4394-Lfunc_begin0 - .quad Lset10984 -Lset10985 = Ltmp4396-Lfunc_begin0 - .quad Lset10985 - .quad 0 - .quad 0 -Ldebug_ranges196: -Lset10986 = Ltmp4361-Lfunc_begin0 - .quad Lset10986 -Lset10987 = Ltmp4364-Lfunc_begin0 - .quad Lset10987 -Lset10988 = Ltmp4366-Lfunc_begin0 - .quad Lset10988 -Lset10989 = Ltmp4418-Lfunc_begin0 - .quad Lset10989 -Lset10990 = Ltmp4420-Lfunc_begin0 - .quad Lset10990 -Lset10991 = Ltmp4423-Lfunc_begin0 - .quad Lset10991 -Lset10992 = Ltmp5256-Lfunc_begin0 - .quad Lset10992 -Lset10993 = Ltmp5257-Lfunc_begin0 - .quad Lset10993 - .quad 0 - .quad 0 -Ldebug_ranges197: -Lset10994 = Ltmp4455-Lfunc_begin0 - .quad Lset10994 -Lset10995 = Ltmp4457-Lfunc_begin0 - .quad Lset10995 -Lset10996 = Ltmp4458-Lfunc_begin0 - .quad Lset10996 -Lset10997 = Ltmp4464-Lfunc_begin0 - .quad Lset10997 -Lset10998 = Ltmp4472-Lfunc_begin0 - .quad Lset10998 -Lset10999 = Ltmp4481-Lfunc_begin0 - .quad Lset10999 - .quad 0 - .quad 0 -Ldebug_ranges198: -Lset11000 = Ltmp4455-Lfunc_begin0 - .quad Lset11000 -Lset11001 = Ltmp4457-Lfunc_begin0 - .quad Lset11001 -Lset11002 = Ltmp4458-Lfunc_begin0 - .quad Lset11002 -Lset11003 = Ltmp4481-Lfunc_begin0 - .quad Lset11003 -Lset11004 = Ltmp4484-Lfunc_begin0 - .quad Lset11004 -Lset11005 = Ltmp4496-Lfunc_begin0 - .quad Lset11005 -Lset11006 = Ltmp5241-Lfunc_begin0 - .quad Lset11006 -Lset11007 = Ltmp5242-Lfunc_begin0 - .quad Lset11007 - .quad 0 - .quad 0 -Ldebug_ranges199: -Lset11008 = Ltmp4496-Lfunc_begin0 - .quad Lset11008 -Lset11009 = Ltmp4498-Lfunc_begin0 - .quad Lset11009 -Lset11010 = Ltmp4506-Lfunc_begin0 - .quad Lset11010 -Lset11011 = Ltmp4514-Lfunc_begin0 - .quad Lset11011 -Lset11012 = Ltmp4516-Lfunc_begin0 - .quad Lset11012 -Lset11013 = Ltmp4525-Lfunc_begin0 - .quad Lset11013 - .quad 0 - .quad 0 -Ldebug_ranges200: -Lset11014 = Ltmp4496-Lfunc_begin0 - .quad Lset11014 -Lset11015 = Ltmp4514-Lfunc_begin0 - .quad Lset11015 -Lset11016 = Ltmp4516-Lfunc_begin0 - .quad Lset11016 -Lset11017 = Ltmp4535-Lfunc_begin0 - .quad Lset11017 -Lset11018 = Ltmp5265-Lfunc_begin0 - .quad Lset11018 -Lset11019 = Ltmp5266-Lfunc_begin0 - .quad Lset11019 - .quad 0 - .quad 0 -Ldebug_ranges201: -Lset11020 = Ltmp4535-Lfunc_begin0 - .quad Lset11020 -Lset11021 = Ltmp4559-Lfunc_begin0 - .quad Lset11021 -Lset11022 = Ltmp5251-Lfunc_begin0 - .quad Lset11022 -Lset11023 = Ltmp5252-Lfunc_begin0 - .quad Lset11023 - .quad 0 - .quad 0 -Ldebug_ranges202: -Lset11024 = Ltmp4559-Lfunc_begin0 - .quad Lset11024 -Lset11025 = Ltmp4583-Lfunc_begin0 - .quad Lset11025 -Lset11026 = Ltmp5252-Lfunc_begin0 - .quad Lset11026 -Lset11027 = Ltmp5253-Lfunc_begin0 - .quad Lset11027 - .quad 0 - .quad 0 -Ldebug_ranges203: -Lset11028 = Ltmp4583-Lfunc_begin0 - .quad Lset11028 -Lset11029 = Ltmp4607-Lfunc_begin0 - .quad Lset11029 -Lset11030 = Ltmp5253-Lfunc_begin0 - .quad Lset11030 -Lset11031 = Ltmp5254-Lfunc_begin0 - .quad Lset11031 - .quad 0 - .quad 0 -Ldebug_ranges204: -Lset11032 = Ltmp4909-Lfunc_begin0 - .quad Lset11032 -Lset11033 = Ltmp4919-Lfunc_begin0 - .quad Lset11033 -Lset11034 = Ltmp4929-Lfunc_begin0 - .quad Lset11034 -Lset11035 = Ltmp4937-Lfunc_begin0 - .quad Lset11035 - .quad 0 - .quad 0 -Ldebug_ranges205: -Lset11036 = Ltmp4909-Lfunc_begin0 - .quad Lset11036 -Lset11037 = Ltmp4937-Lfunc_begin0 - .quad Lset11037 -Lset11038 = Ltmp4942-Lfunc_begin0 - .quad Lset11038 -Lset11039 = Ltmp4952-Lfunc_begin0 - .quad Lset11039 -Lset11040 = Ltmp5242-Lfunc_begin0 - .quad Lset11040 -Lset11041 = Ltmp5243-Lfunc_begin0 - .quad Lset11041 - .quad 0 - .quad 0 -Ldebug_ranges206: -Lset11042 = Ltmp4952-Lfunc_begin0 - .quad Lset11042 -Lset11043 = Ltmp4954-Lfunc_begin0 - .quad Lset11043 -Lset11044 = Ltmp4962-Lfunc_begin0 - .quad Lset11044 -Lset11045 = Ltmp4969-Lfunc_begin0 - .quad Lset11045 -Lset11046 = Ltmp4971-Lfunc_begin0 - .quad Lset11046 -Lset11047 = Ltmp4979-Lfunc_begin0 - .quad Lset11047 -Lset11048 = Ltmp4982-Lfunc_begin0 - .quad Lset11048 -Lset11049 = Ltmp4983-Lfunc_begin0 - .quad Lset11049 - .quad 0 - .quad 0 -Ldebug_ranges207: -Lset11050 = Ltmp4952-Lfunc_begin0 - .quad Lset11050 -Lset11051 = Ltmp4969-Lfunc_begin0 - .quad Lset11051 -Lset11052 = Ltmp4971-Lfunc_begin0 - .quad Lset11052 -Lset11053 = Ltmp4992-Lfunc_begin0 - .quad Lset11053 -Lset11054 = Ltmp5266-Lfunc_begin0 - .quad Lset11054 -Lset11055 = Ltmp5267-Lfunc_begin0 - .quad Lset11055 - .quad 0 - .quad 0 -Ldebug_ranges208: -Lset11056 = Ltmp4992-Lfunc_begin0 - .quad Lset11056 -Lset11057 = Ltmp5010-Lfunc_begin0 - .quad Lset11057 -Lset11058 = Ltmp5247-Lfunc_begin0 - .quad Lset11058 -Lset11059 = Ltmp5248-Lfunc_begin0 - .quad Lset11059 - .quad 0 - .quad 0 -Ldebug_ranges209: -Lset11060 = Ltmp5010-Lfunc_begin0 - .quad Lset11060 -Lset11061 = Ltmp5028-Lfunc_begin0 - .quad Lset11061 -Lset11062 = Ltmp5248-Lfunc_begin0 - .quad Lset11062 -Lset11063 = Ltmp5249-Lfunc_begin0 - .quad Lset11063 - .quad 0 - .quad 0 -Ldebug_ranges210: -Lset11064 = Ltmp5028-Lfunc_begin0 - .quad Lset11064 -Lset11065 = Ltmp5046-Lfunc_begin0 - .quad Lset11065 -Lset11066 = Ltmp5246-Lfunc_begin0 - .quad Lset11066 -Lset11067 = Ltmp5247-Lfunc_begin0 - .quad Lset11067 - .quad 0 - .quad 0 -Ldebug_ranges211: -Lset11068 = Ltmp5049-Lfunc_begin0 - .quad Lset11068 -Lset11069 = Ltmp5057-Lfunc_begin0 - .quad Lset11069 -Lset11070 = Ltmp5065-Lfunc_begin0 - .quad Lset11070 -Lset11071 = Ltmp5066-Lfunc_begin0 - .quad Lset11071 -Lset11072 = Ltmp5067-Lfunc_begin0 - .quad Lset11072 -Lset11073 = Ltmp5073-Lfunc_begin0 - .quad Lset11073 - .quad 0 - .quad 0 -Ldebug_ranges212: -Lset11074 = Ltmp5048-Lfunc_begin0 - .quad Lset11074 -Lset11075 = Ltmp5066-Lfunc_begin0 - .quad Lset11075 -Lset11076 = Ltmp5067-Lfunc_begin0 - .quad Lset11076 -Lset11077 = Ltmp5073-Lfunc_begin0 - .quad Lset11077 -Lset11078 = Ltmp5077-Lfunc_begin0 - .quad Lset11078 -Lset11079 = Ltmp5086-Lfunc_begin0 - .quad Lset11079 -Lset11080 = Ltmp5240-Lfunc_begin0 - .quad Lset11080 -Lset11081 = Ltmp5241-Lfunc_begin0 - .quad Lset11081 - .quad 0 - .quad 0 -Ldebug_ranges213: -Lset11082 = Ltmp5086-Lfunc_begin0 - .quad Lset11082 -Lset11083 = Ltmp5088-Lfunc_begin0 - .quad Lset11083 -Lset11084 = Ltmp5096-Lfunc_begin0 - .quad Lset11084 -Lset11085 = Ltmp5114-Lfunc_begin0 - .quad Lset11085 - .quad 0 - .quad 0 -Ldebug_ranges214: -Lset11086 = Ltmp5086-Lfunc_begin0 - .quad Lset11086 -Lset11087 = Ltmp5122-Lfunc_begin0 - .quad Lset11087 -Lset11088 = Ltmp5267-Lfunc_begin0 - .quad Lset11088 -Lset11089 = Ltmp5268-Lfunc_begin0 - .quad Lset11089 - .quad 0 - .quad 0 -Ldebug_ranges215: -Lset11090 = Ltmp5210-Lfunc_begin0 - .quad Lset11090 -Lset11091 = Ltmp5229-Lfunc_begin0 - .quad Lset11091 -Lset11092 = Ltmp5243-Lfunc_begin0 - .quad Lset11092 -Lset11093 = Ltmp5245-Lfunc_begin0 - .quad Lset11093 -Lset11094 = Ltmp5257-Lfunc_begin0 - .quad Lset11094 -Lset11095 = Ltmp5258-Lfunc_begin0 - .quad Lset11095 - .quad 0 - .quad 0 -Ldebug_ranges216: -Lset11096 = Ltmp857-Lfunc_begin0 - .quad Lset11096 -Lset11097 = Ltmp859-Lfunc_begin0 - .quad Lset11097 -Lset11098 = Ltmp863-Lfunc_begin0 - .quad Lset11098 -Lset11099 = Ltmp5236-Lfunc_begin0 - .quad Lset11099 -Lset11100 = Ltmp5237-Lfunc_begin0 - .quad Lset11100 -Lset11101 = Ltmp5272-Lfunc_begin0 - .quad Lset11101 - .quad 0 - .quad 0 -Ldebug_ranges217: -Lset11102 = Ltmp5541-Lfunc_begin0 - .quad Lset11102 -Lset11103 = Ltmp5543-Lfunc_begin0 - .quad Lset11103 -Lset11104 = Ltmp5558-Lfunc_begin0 - .quad Lset11104 -Lset11105 = Ltmp5560-Lfunc_begin0 - .quad Lset11105 - .quad 0 - .quad 0 -Ldebug_ranges218: -Lset11106 = Ltmp5543-Lfunc_begin0 - .quad Lset11106 -Lset11107 = Ltmp5553-Lfunc_begin0 - .quad Lset11107 -Lset11108 = Ltmp5568-Lfunc_begin0 - .quad Lset11108 -Lset11109 = Ltmp5576-Lfunc_begin0 - .quad Lset11109 - .quad 0 - .quad 0 -Ldebug_ranges219: -Lset11110 = Ltmp5543-Lfunc_begin0 - .quad Lset11110 -Lset11111 = Ltmp5552-Lfunc_begin0 - .quad Lset11111 -Lset11112 = Ltmp5568-Lfunc_begin0 - .quad Lset11112 -Lset11113 = Ltmp5576-Lfunc_begin0 - .quad Lset11113 - .quad 0 - .quad 0 -Ldebug_ranges220: -Lset11114 = Ltmp5543-Lfunc_begin0 - .quad Lset11114 -Lset11115 = Ltmp5553-Lfunc_begin0 - .quad Lset11115 -Lset11116 = Ltmp5568-Lfunc_begin0 - .quad Lset11116 -Lset11117 = Ltmp5583-Lfunc_begin0 - .quad Lset11117 -Lset11118 = Ltmp5601-Lfunc_begin0 - .quad Lset11118 -Lset11119 = Ltmp5602-Lfunc_begin0 - .quad Lset11119 - .quad 0 - .quad 0 -Ldebug_ranges221: -Lset11120 = Ltmp5553-Lfunc_begin0 - .quad Lset11120 -Lset11121 = Ltmp5554-Lfunc_begin0 - .quad Lset11121 -Lset11122 = Ltmp5564-Lfunc_begin0 - .quad Lset11122 -Lset11123 = Ltmp5568-Lfunc_begin0 - .quad Lset11123 -Lset11124 = Ltmp5586-Lfunc_begin0 - .quad Lset11124 -Lset11125 = Ltmp5592-Lfunc_begin0 - .quad Lset11125 - .quad 0 - .quad 0 -Ldebug_ranges222: -Lset11126 = Ltmp5593-Lfunc_begin0 - .quad Lset11126 -Lset11127 = Ltmp5596-Lfunc_begin0 - .quad Lset11127 -Lset11128 = Ltmp5597-Lfunc_begin0 - .quad Lset11128 -Lset11129 = Ltmp5599-Lfunc_begin0 - .quad Lset11129 - .quad 0 - .quad 0 -Ldebug_ranges223: -Lset11130 = Ltmp5553-Lfunc_begin0 - .quad Lset11130 -Lset11131 = Ltmp5554-Lfunc_begin0 - .quad Lset11131 -Lset11132 = Ltmp5564-Lfunc_begin0 - .quad Lset11132 -Lset11133 = Ltmp5568-Lfunc_begin0 - .quad Lset11133 -Lset11134 = Ltmp5586-Lfunc_begin0 - .quad Lset11134 -Lset11135 = Ltmp5596-Lfunc_begin0 - .quad Lset11135 -Lset11136 = Ltmp5597-Lfunc_begin0 - .quad Lset11136 -Lset11137 = Ltmp5599-Lfunc_begin0 - .quad Lset11137 -Lset11138 = Ltmp5602-Lfunc_begin0 - .quad Lset11138 -Lset11139 = Ltmp5603-Lfunc_begin0 - .quad Lset11139 - .quad 0 - .quad 0 -Ldebug_ranges224: -Lset11140 = Ltmp5561-Lfunc_begin0 - .quad Lset11140 -Lset11141 = Ltmp5564-Lfunc_begin0 - .quad Lset11141 -Lset11142 = Ltmp5584-Lfunc_begin0 - .quad Lset11142 -Lset11143 = Ltmp5585-Lfunc_begin0 - .quad Lset11143 -Lset11144 = Ltmp5596-Lfunc_begin0 - .quad Lset11144 -Lset11145 = Ltmp5597-Lfunc_begin0 - .quad Lset11145 - .quad 0 - .quad 0 -Ldebug_ranges225: -Lset11146 = Ltmp5557-Lfunc_begin0 - .quad Lset11146 -Lset11147 = Ltmp5558-Lfunc_begin0 - .quad Lset11147 -Lset11148 = Ltmp5583-Lfunc_begin0 - .quad Lset11148 -Lset11149 = Ltmp5584-Lfunc_begin0 - .quad Lset11149 -Lset11150 = Ltmp5585-Lfunc_begin0 - .quad Lset11150 -Lset11151 = Ltmp5586-Lfunc_begin0 - .quad Lset11151 - .quad 0 - .quad 0 -Ldebug_ranges226: -Lset11152 = Ltmp5535-Lfunc_begin0 - .quad Lset11152 -Lset11153 = Ltmp5599-Lfunc_begin0 - .quad Lset11153 -Lset11154 = Ltmp5601-Lfunc_begin0 - .quad Lset11154 -Lset11155 = Ltmp5603-Lfunc_begin0 - .quad Lset11155 - .quad 0 - .quad 0 -Ldebug_ranges227: -Lset11156 = Ltmp5531-Lfunc_begin0 - .quad Lset11156 -Lset11157 = Ltmp5600-Lfunc_begin0 - .quad Lset11157 -Lset11158 = Ltmp5601-Lfunc_begin0 - .quad Lset11158 -Lset11159 = Ltmp5603-Lfunc_begin0 - .quad Lset11159 - .quad 0 - .quad 0 -Ldebug_ranges228: -Lset11160 = Ltmp5643-Lfunc_begin0 - .quad Lset11160 -Lset11161 = Ltmp5645-Lfunc_begin0 - .quad Lset11161 -Lset11162 = Ltmp5648-Lfunc_begin0 - .quad Lset11162 -Lset11163 = Ltmp5657-Lfunc_begin0 - .quad Lset11163 - .quad 0 - .quad 0 -Ldebug_ranges229: -Lset11164 = Ltmp5645-Lfunc_begin0 - .quad Lset11164 -Lset11165 = Ltmp5648-Lfunc_begin0 - .quad Lset11165 -Lset11166 = Ltmp5663-Lfunc_begin0 - .quad Lset11166 -Lset11167 = Ltmp5677-Lfunc_begin0 - .quad Lset11167 -Lset11168 = Ltmp5679-Lfunc_begin0 - .quad Lset11168 -Lset11169 = Ltmp5682-Lfunc_begin0 - .quad Lset11169 - .quad 0 - .quad 0 -Ldebug_ranges230: -Lset11170 = Ltmp5718-Lfunc_begin0 - .quad Lset11170 -Lset11171 = Ltmp5719-Lfunc_begin0 - .quad Lset11171 -Lset11172 = Ltmp5720-Lfunc_begin0 - .quad Lset11172 -Lset11173 = Ltmp5721-Lfunc_begin0 - .quad Lset11173 - .quad 0 - .quad 0 -Ldebug_ranges231: -Lset11174 = Ltmp5757-Lfunc_begin0 - .quad Lset11174 -Lset11175 = Ltmp5758-Lfunc_begin0 - .quad Lset11175 -Lset11176 = Ltmp5765-Lfunc_begin0 - .quad Lset11176 -Lset11177 = Ltmp5766-Lfunc_begin0 - .quad Lset11177 -Lset11178 = Ltmp5767-Lfunc_begin0 - .quad Lset11178 -Lset11179 = Ltmp5783-Lfunc_begin0 - .quad Lset11179 - .quad 0 - .quad 0 -Ldebug_ranges232: -Lset11180 = Ltmp5795-Lfunc_begin0 - .quad Lset11180 -Lset11181 = Ltmp5796-Lfunc_begin0 - .quad Lset11181 -Lset11182 = Ltmp5804-Lfunc_begin0 - .quad Lset11182 -Lset11183 = Ltmp5819-Lfunc_begin0 - .quad Lset11183 - .quad 0 - .quad 0 -Ldebug_ranges233: -Lset11184 = Ltmp5890-Lfunc_begin0 - .quad Lset11184 -Lset11185 = Ltmp5891-Lfunc_begin0 - .quad Lset11185 -Lset11186 = Ltmp5898-Lfunc_begin0 - .quad Lset11186 -Lset11187 = Ltmp5900-Lfunc_begin0 - .quad Lset11187 -Lset11188 = Ltmp5908-Lfunc_begin0 - .quad Lset11188 -Lset11189 = Ltmp5914-Lfunc_begin0 - .quad Lset11189 -Lset11190 = Ltmp5920-Lfunc_begin0 - .quad Lset11190 -Lset11191 = Ltmp5925-Lfunc_begin0 - .quad Lset11191 -Lset11192 = Ltmp5931-Lfunc_begin0 - .quad Lset11192 -Lset11193 = Ltmp5932-Lfunc_begin0 - .quad Lset11193 - .quad 0 - .quad 0 -Ldebug_ranges234: -Lset11194 = Ltmp5900-Lfunc_begin0 - .quad Lset11194 -Lset11195 = Ltmp5901-Lfunc_begin0 - .quad Lset11195 -Lset11196 = Ltmp5905-Lfunc_begin0 - .quad Lset11196 -Lset11197 = Ltmp5908-Lfunc_begin0 - .quad Lset11197 -Lset11198 = Ltmp5914-Lfunc_begin0 - .quad Lset11198 -Lset11199 = Ltmp5920-Lfunc_begin0 - .quad Lset11199 -Lset11200 = Ltmp5925-Lfunc_begin0 - .quad Lset11200 -Lset11201 = Ltmp5930-Lfunc_begin0 - .quad Lset11201 -Lset11202 = Ltmp5932-Lfunc_begin0 - .quad Lset11202 -Lset11203 = Ltmp5933-Lfunc_begin0 - .quad Lset11203 - .quad 0 - .quad 0 -Ldebug_ranges235: -Lset11204 = Ltmp5946-Lfunc_begin0 - .quad Lset11204 -Lset11205 = Ltmp5947-Lfunc_begin0 - .quad Lset11205 -Lset11206 = Ltmp5954-Lfunc_begin0 - .quad Lset11206 -Lset11207 = Ltmp5956-Lfunc_begin0 - .quad Lset11207 -Lset11208 = Ltmp5964-Lfunc_begin0 - .quad Lset11208 -Lset11209 = Ltmp5970-Lfunc_begin0 - .quad Lset11209 -Lset11210 = Ltmp5976-Lfunc_begin0 - .quad Lset11210 -Lset11211 = Ltmp5981-Lfunc_begin0 - .quad Lset11211 -Lset11212 = Ltmp5987-Lfunc_begin0 - .quad Lset11212 -Lset11213 = Ltmp5988-Lfunc_begin0 - .quad Lset11213 - .quad 0 - .quad 0 -Ldebug_ranges236: -Lset11214 = Ltmp5956-Lfunc_begin0 - .quad Lset11214 -Lset11215 = Ltmp5957-Lfunc_begin0 - .quad Lset11215 -Lset11216 = Ltmp5961-Lfunc_begin0 - .quad Lset11216 -Lset11217 = Ltmp5964-Lfunc_begin0 - .quad Lset11217 -Lset11218 = Ltmp5970-Lfunc_begin0 - .quad Lset11218 -Lset11219 = Ltmp5976-Lfunc_begin0 - .quad Lset11219 -Lset11220 = Ltmp5981-Lfunc_begin0 - .quad Lset11220 -Lset11221 = Ltmp5986-Lfunc_begin0 - .quad Lset11221 -Lset11222 = Ltmp5988-Lfunc_begin0 - .quad Lset11222 -Lset11223 = Ltmp5989-Lfunc_begin0 - .quad Lset11223 - .quad 0 - .quad 0 -Ldebug_ranges237: -Lset11224 = Ltmp6002-Lfunc_begin0 - .quad Lset11224 -Lset11225 = Ltmp6003-Lfunc_begin0 - .quad Lset11225 -Lset11226 = Ltmp6010-Lfunc_begin0 - .quad Lset11226 -Lset11227 = Ltmp6012-Lfunc_begin0 - .quad Lset11227 -Lset11228 = Ltmp6020-Lfunc_begin0 - .quad Lset11228 -Lset11229 = Ltmp6026-Lfunc_begin0 - .quad Lset11229 -Lset11230 = Ltmp6032-Lfunc_begin0 - .quad Lset11230 -Lset11231 = Ltmp6037-Lfunc_begin0 - .quad Lset11231 -Lset11232 = Ltmp6043-Lfunc_begin0 - .quad Lset11232 -Lset11233 = Ltmp6044-Lfunc_begin0 - .quad Lset11233 - .quad 0 - .quad 0 -Ldebug_ranges238: -Lset11234 = Ltmp6012-Lfunc_begin0 - .quad Lset11234 -Lset11235 = Ltmp6013-Lfunc_begin0 - .quad Lset11235 -Lset11236 = Ltmp6017-Lfunc_begin0 - .quad Lset11236 -Lset11237 = Ltmp6020-Lfunc_begin0 - .quad Lset11237 -Lset11238 = Ltmp6026-Lfunc_begin0 - .quad Lset11238 -Lset11239 = Ltmp6032-Lfunc_begin0 - .quad Lset11239 -Lset11240 = Ltmp6037-Lfunc_begin0 - .quad Lset11240 -Lset11241 = Ltmp6042-Lfunc_begin0 - .quad Lset11241 -Lset11242 = Ltmp6044-Lfunc_begin0 - .quad Lset11242 -Lset11243 = Ltmp6045-Lfunc_begin0 - .quad Lset11243 - .quad 0 - .quad 0 -Ldebug_ranges239: -Lset11244 = Ltmp6058-Lfunc_begin0 - .quad Lset11244 -Lset11245 = Ltmp6059-Lfunc_begin0 - .quad Lset11245 -Lset11246 = Ltmp6066-Lfunc_begin0 - .quad Lset11246 -Lset11247 = Ltmp6069-Lfunc_begin0 - .quad Lset11247 -Lset11248 = Ltmp6072-Lfunc_begin0 - .quad Lset11248 -Lset11249 = Ltmp6078-Lfunc_begin0 - .quad Lset11249 -Lset11250 = Ltmp6084-Lfunc_begin0 - .quad Lset11250 -Lset11251 = Ltmp6089-Lfunc_begin0 - .quad Lset11251 -Lset11252 = Ltmp6095-Lfunc_begin0 - .quad Lset11252 -Lset11253 = Ltmp6096-Lfunc_begin0 - .quad Lset11253 - .quad 0 - .quad 0 -Ldebug_ranges240: -Lset11254 = Ltmp6061-Lfunc_begin0 - .quad Lset11254 -Lset11255 = Ltmp6062-Lfunc_begin0 - .quad Lset11255 -Lset11256 = Ltmp6069-Lfunc_begin0 - .quad Lset11256 -Lset11257 = Ltmp6072-Lfunc_begin0 - .quad Lset11257 -Lset11258 = Ltmp6078-Lfunc_begin0 - .quad Lset11258 -Lset11259 = Ltmp6084-Lfunc_begin0 - .quad Lset11259 -Lset11260 = Ltmp6089-Lfunc_begin0 - .quad Lset11260 -Lset11261 = Ltmp6094-Lfunc_begin0 - .quad Lset11261 -Lset11262 = Ltmp6096-Lfunc_begin0 - .quad Lset11262 -Lset11263 = Ltmp6097-Lfunc_begin0 - .quad Lset11263 - .quad 0 - .quad 0 -Ldebug_ranges241: -Lset11264 = Ltmp6126-Lfunc_begin0 - .quad Lset11264 -Lset11265 = Ltmp6127-Lfunc_begin0 - .quad Lset11265 -Lset11266 = Ltmp6128-Lfunc_begin0 - .quad Lset11266 -Lset11267 = Ltmp6137-Lfunc_begin0 - .quad Lset11267 -Lset11268 = Ltmp6151-Lfunc_begin0 - .quad Lset11268 -Lset11269 = Ltmp6159-Lfunc_begin0 - .quad Lset11269 - .quad 0 - .quad 0 -Ldebug_ranges242: -Lset11270 = Ltmp6140-Lfunc_begin0 - .quad Lset11270 -Lset11271 = Ltmp6141-Lfunc_begin0 - .quad Lset11271 -Lset11272 = Ltmp6142-Lfunc_begin0 - .quad Lset11272 -Lset11273 = Ltmp6151-Lfunc_begin0 - .quad Lset11273 -Lset11274 = Ltmp6161-Lfunc_begin0 - .quad Lset11274 -Lset11275 = Ltmp6169-Lfunc_begin0 - .quad Lset11275 - .quad 0 - .quad 0 -Ldebug_ranges243: -Lset11276 = Ltmp6190-Lfunc_begin0 - .quad Lset11276 -Lset11277 = Ltmp6195-Lfunc_begin0 - .quad Lset11277 -Lset11278 = Ltmp6196-Lfunc_begin0 - .quad Lset11278 -Lset11279 = Ltmp6197-Lfunc_begin0 - .quad Lset11279 -Lset11280 = Ltmp6198-Lfunc_begin0 - .quad Lset11280 -Lset11281 = Ltmp6200-Lfunc_begin0 - .quad Lset11281 - .quad 0 - .quad 0 -Ldebug_ranges244: -Lset11282 = Ltmp6205-Lfunc_begin0 - .quad Lset11282 -Lset11283 = Ltmp6206-Lfunc_begin0 - .quad Lset11283 -Lset11284 = Ltmp6207-Lfunc_begin0 - .quad Lset11284 -Lset11285 = Ltmp6216-Lfunc_begin0 - .quad Lset11285 -Lset11286 = Ltmp6230-Lfunc_begin0 - .quad Lset11286 -Lset11287 = Ltmp6238-Lfunc_begin0 - .quad Lset11287 - .quad 0 - .quad 0 -Ldebug_ranges245: -Lset11288 = Ltmp6219-Lfunc_begin0 - .quad Lset11288 -Lset11289 = Ltmp6220-Lfunc_begin0 - .quad Lset11289 -Lset11290 = Ltmp6221-Lfunc_begin0 - .quad Lset11290 -Lset11291 = Ltmp6230-Lfunc_begin0 - .quad Lset11291 -Lset11292 = Ltmp6240-Lfunc_begin0 - .quad Lset11292 -Lset11293 = Ltmp6248-Lfunc_begin0 - .quad Lset11293 - .quad 0 - .quad 0 -Ldebug_ranges246: -Lset11294 = Ltmp6274-Lfunc_begin0 - .quad Lset11294 -Lset11295 = Ltmp6275-Lfunc_begin0 - .quad Lset11295 -Lset11296 = Ltmp6276-Lfunc_begin0 - .quad Lset11296 -Lset11297 = Ltmp6285-Lfunc_begin0 - .quad Lset11297 -Lset11298 = Ltmp6299-Lfunc_begin0 - .quad Lset11298 -Lset11299 = Ltmp6307-Lfunc_begin0 - .quad Lset11299 - .quad 0 - .quad 0 -Ldebug_ranges247: -Lset11300 = Ltmp6288-Lfunc_begin0 - .quad Lset11300 -Lset11301 = Ltmp6289-Lfunc_begin0 - .quad Lset11301 -Lset11302 = Ltmp6290-Lfunc_begin0 - .quad Lset11302 -Lset11303 = Ltmp6299-Lfunc_begin0 - .quad Lset11303 -Lset11304 = Ltmp6309-Lfunc_begin0 - .quad Lset11304 -Lset11305 = Ltmp6317-Lfunc_begin0 - .quad Lset11305 - .quad 0 - .quad 0 -Ldebug_ranges248: -Lset11306 = Ltmp6343-Lfunc_begin0 - .quad Lset11306 -Lset11307 = Ltmp6344-Lfunc_begin0 - .quad Lset11307 -Lset11308 = Ltmp6345-Lfunc_begin0 - .quad Lset11308 -Lset11309 = Ltmp6354-Lfunc_begin0 - .quad Lset11309 -Lset11310 = Ltmp6368-Lfunc_begin0 - .quad Lset11310 -Lset11311 = Ltmp6376-Lfunc_begin0 - .quad Lset11311 - .quad 0 - .quad 0 -Ldebug_ranges249: -Lset11312 = Ltmp6357-Lfunc_begin0 - .quad Lset11312 -Lset11313 = Ltmp6358-Lfunc_begin0 - .quad Lset11313 -Lset11314 = Ltmp6359-Lfunc_begin0 - .quad Lset11314 -Lset11315 = Ltmp6368-Lfunc_begin0 - .quad Lset11315 -Lset11316 = Ltmp6378-Lfunc_begin0 - .quad Lset11316 -Lset11317 = Ltmp6386-Lfunc_begin0 - .quad Lset11317 - .quad 0 - .quad 0 -Ldebug_ranges250: -Lset11318 = Ltmp6412-Lfunc_begin0 - .quad Lset11318 -Lset11319 = Ltmp6413-Lfunc_begin0 - .quad Lset11319 -Lset11320 = Ltmp6414-Lfunc_begin0 - .quad Lset11320 -Lset11321 = Ltmp6423-Lfunc_begin0 - .quad Lset11321 -Lset11322 = Ltmp6437-Lfunc_begin0 - .quad Lset11322 -Lset11323 = Ltmp6445-Lfunc_begin0 - .quad Lset11323 - .quad 0 - .quad 0 -Ldebug_ranges251: -Lset11324 = Ltmp6426-Lfunc_begin0 - .quad Lset11324 -Lset11325 = Ltmp6427-Lfunc_begin0 - .quad Lset11325 -Lset11326 = Ltmp6428-Lfunc_begin0 - .quad Lset11326 -Lset11327 = Ltmp6437-Lfunc_begin0 - .quad Lset11327 -Lset11328 = Ltmp6447-Lfunc_begin0 - .quad Lset11328 -Lset11329 = Ltmp6455-Lfunc_begin0 - .quad Lset11329 - .quad 0 - .quad 0 -Ldebug_ranges252: -Lset11330 = Ltmp6478-Lfunc_begin0 - .quad Lset11330 -Lset11331 = Ltmp6479-Lfunc_begin0 - .quad Lset11331 -Lset11332 = Ltmp6480-Lfunc_begin0 - .quad Lset11332 -Lset11333 = Ltmp6497-Lfunc_begin0 - .quad Lset11333 - .quad 0 - .quad 0 -Ldebug_ranges253: -Lset11334 = Ltmp6500-Lfunc_begin0 - .quad Lset11334 -Lset11335 = Ltmp6510-Lfunc_begin0 - .quad Lset11335 -Lset11336 = Ltmp6514-Lfunc_begin0 - .quad Lset11336 -Lset11337 = Ltmp6515-Lfunc_begin0 - .quad Lset11337 - .quad 0 - .quad 0 -Ldebug_ranges254: -Lset11338 = Ltmp6529-Lfunc_begin0 - .quad Lset11338 -Lset11339 = Ltmp6545-Lfunc_begin0 - .quad Lset11339 -Lset11340 = Ltmp6548-Lfunc_begin0 - .quad Lset11340 -Lset11341 = Ltmp6550-Lfunc_begin0 - .quad Lset11341 - .quad 0 - .quad 0 -Ldebug_ranges255: -Lset11342 = Ltmp6568-Lfunc_begin0 - .quad Lset11342 -Lset11343 = Ltmp6576-Lfunc_begin0 - .quad Lset11343 -Lset11344 = Ltmp6584-Lfunc_begin0 - .quad Lset11344 -Lset11345 = Ltmp6587-Lfunc_begin0 - .quad Lset11345 -Lset11346 = Ltmp6595-Lfunc_begin0 - .quad Lset11346 -Lset11347 = Ltmp6596-Lfunc_begin0 - .quad Lset11347 - .quad 0 - .quad 0 -Ldebug_ranges256: -Lset11348 = Ltmp6579-Lfunc_begin0 - .quad Lset11348 -Lset11349 = Ltmp6584-Lfunc_begin0 - .quad Lset11349 -Lset11350 = Ltmp6596-Lfunc_begin0 - .quad Lset11350 -Lset11351 = Ltmp6597-Lfunc_begin0 - .quad Lset11351 - .quad 0 - .quad 0 -Ldebug_ranges257: -Lset11352 = Ltmp6578-Lfunc_begin0 - .quad Lset11352 -Lset11353 = Ltmp6584-Lfunc_begin0 - .quad Lset11353 -Lset11354 = Ltmp6596-Lfunc_begin0 - .quad Lset11354 -Lset11355 = Ltmp6597-Lfunc_begin0 - .quad Lset11355 - .quad 0 - .quad 0 -Ldebug_ranges258: -Lset11356 = Ltmp6611-Lfunc_begin0 - .quad Lset11356 -Lset11357 = Ltmp6623-Lfunc_begin0 - .quad Lset11357 -Lset11358 = Ltmp6624-Lfunc_begin0 - .quad Lset11358 -Lset11359 = Ltmp6627-Lfunc_begin0 - .quad Lset11359 -Lset11360 = Ltmp6635-Lfunc_begin0 - .quad Lset11360 -Lset11361 = Ltmp6639-Lfunc_begin0 - .quad Lset11361 - .quad 0 - .quad 0 -Ldebug_ranges259: -Lset11362 = Ltmp6629-Lfunc_begin0 - .quad Lset11362 -Lset11363 = Ltmp6630-Lfunc_begin0 - .quad Lset11363 -Lset11364 = Ltmp6653-Lfunc_begin0 - .quad Lset11364 -Lset11365 = Ltmp6659-Lfunc_begin0 - .quad Lset11365 -Lset11366 = Ltmp6675-Lfunc_begin0 - .quad Lset11366 -Lset11367 = Ltmp6682-Lfunc_begin0 - .quad Lset11367 - .quad 0 - .quad 0 -Ldebug_ranges260: -Lset11368 = Ltmp6629-Lfunc_begin0 - .quad Lset11368 -Lset11369 = Ltmp6630-Lfunc_begin0 - .quad Lset11369 -Lset11370 = Ltmp6653-Lfunc_begin0 - .quad Lset11370 -Lset11371 = Ltmp6659-Lfunc_begin0 - .quad Lset11371 -Lset11372 = Ltmp6675-Lfunc_begin0 - .quad Lset11372 -Lset11373 = Ltmp6687-Lfunc_begin0 - .quad Lset11373 -Lset11374 = Ltmp6708-Lfunc_begin0 - .quad Lset11374 -Lset11375 = Ltmp6709-Lfunc_begin0 - .quad Lset11375 - .quad 0 - .quad 0 -Ldebug_ranges261: -Lset11376 = Ltmp6649-Lfunc_begin0 - .quad Lset11376 -Lset11377 = Ltmp6653-Lfunc_begin0 - .quad Lset11377 -Lset11378 = Ltmp6671-Lfunc_begin0 - .quad Lset11378 -Lset11379 = Ltmp6673-Lfunc_begin0 - .quad Lset11379 - .quad 0 - .quad 0 -Ldebug_ranges262: -Lset11380 = Ltmp6632-Lfunc_begin0 - .quad Lset11380 -Lset11381 = Ltmp6635-Lfunc_begin0 - .quad Lset11381 -Lset11382 = Ltmp6647-Lfunc_begin0 - .quad Lset11382 -Lset11383 = Ltmp6648-Lfunc_begin0 - .quad Lset11383 -Lset11384 = Ltmp6673-Lfunc_begin0 - .quad Lset11384 -Lset11385 = Ltmp6675-Lfunc_begin0 - .quad Lset11385 - .quad 0 - .quad 0 -Ldebug_ranges263: -Lset11386 = Ltmp6628-Lfunc_begin0 - .quad Lset11386 -Lset11387 = Ltmp6635-Lfunc_begin0 - .quad Lset11387 -Lset11388 = Ltmp6647-Lfunc_begin0 - .quad Lset11388 -Lset11389 = Ltmp6648-Lfunc_begin0 - .quad Lset11389 -Lset11390 = Ltmp6649-Lfunc_begin0 - .quad Lset11390 -Lset11391 = Ltmp6659-Lfunc_begin0 - .quad Lset11391 -Lset11392 = Ltmp6671-Lfunc_begin0 - .quad Lset11392 -Lset11393 = Ltmp6687-Lfunc_begin0 - .quad Lset11393 -Lset11394 = Ltmp6708-Lfunc_begin0 - .quad Lset11394 -Lset11395 = Ltmp6709-Lfunc_begin0 - .quad Lset11395 - .quad 0 - .quad 0 -Ldebug_ranges264: -Lset11396 = Ltmp6644-Lfunc_begin0 - .quad Lset11396 -Lset11397 = Ltmp6647-Lfunc_begin0 - .quad Lset11397 -Lset11398 = Ltmp6687-Lfunc_begin0 - .quad Lset11398 -Lset11399 = Ltmp6692-Lfunc_begin0 - .quad Lset11399 - .quad 0 - .quad 0 -Ldebug_ranges265: -Lset11400 = Ltmp6660-Lfunc_begin0 - .quad Lset11400 -Lset11401 = Ltmp6671-Lfunc_begin0 - .quad Lset11401 -Lset11402 = Ltmp6692-Lfunc_begin0 - .quad Lset11402 -Lset11403 = Ltmp6700-Lfunc_begin0 - .quad Lset11403 - .quad 0 - .quad 0 -Ldebug_ranges266: -Lset11404 = Ltmp6660-Lfunc_begin0 - .quad Lset11404 -Lset11405 = Ltmp6661-Lfunc_begin0 - .quad Lset11405 -Lset11406 = Ltmp6662-Lfunc_begin0 - .quad Lset11406 -Lset11407 = Ltmp6671-Lfunc_begin0 - .quad Lset11407 -Lset11408 = Ltmp6692-Lfunc_begin0 - .quad Lset11408 -Lset11409 = Ltmp6700-Lfunc_begin0 - .quad Lset11409 - .quad 0 - .quad 0 -Ldebug_ranges267: -Lset11410 = Ltmp6660-Lfunc_begin0 - .quad Lset11410 -Lset11411 = Ltmp6671-Lfunc_begin0 - .quad Lset11411 -Lset11412 = Ltmp6692-Lfunc_begin0 - .quad Lset11412 -Lset11413 = Ltmp6708-Lfunc_begin0 - .quad Lset11413 - .quad 0 - .quad 0 -Ldebug_ranges268: -Lset11414 = Ltmp6641-Lfunc_begin0 - .quad Lset11414 -Lset11415 = Ltmp6647-Lfunc_begin0 - .quad Lset11415 -Lset11416 = Ltmp6660-Lfunc_begin0 - .quad Lset11416 -Lset11417 = Ltmp6671-Lfunc_begin0 - .quad Lset11417 -Lset11418 = Ltmp6687-Lfunc_begin0 - .quad Lset11418 -Lset11419 = Ltmp6708-Lfunc_begin0 - .quad Lset11419 - .quad 0 - .quad 0 - .section __DWARF,__apple_names,regular,debug -Lnames_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 31 ## Header Bucket Count - .long 63 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long 0 ## Bucket 0 - .long 4 ## Bucket 1 - .long 8 ## Bucket 2 - .long 9 ## Bucket 3 - .long 14 ## Bucket 4 - .long 17 ## Bucket 5 - .long 19 ## Bucket 6 - .long -1 ## Bucket 7 - .long 23 ## Bucket 8 - .long 26 ## Bucket 9 - .long 29 ## Bucket 10 - .long 32 ## Bucket 11 - .long 34 ## Bucket 12 - .long 36 ## Bucket 13 - .long 38 ## Bucket 14 - .long -1 ## Bucket 15 - .long -1 ## Bucket 16 - .long 40 ## Bucket 17 - .long 44 ## Bucket 18 - .long 46 ## Bucket 19 - .long 47 ## Bucket 20 - .long -1 ## Bucket 21 - .long 48 ## Bucket 22 - .long 51 ## Bucket 23 - .long 53 ## Bucket 24 - .long 56 ## Bucket 25 - .long -1 ## Bucket 26 - .long 58 ## Bucket 27 - .long 59 ## Bucket 28 - .long 60 ## Bucket 29 - .long 62 ## Bucket 30 - .long 1123366189 ## Hash in Bucket 0 - .long -2058629218 ## Hash in Bucket 0 - .long -1870603833 ## Hash in Bucket 0 - .long -1810817977 ## Hash in Bucket 0 - .long 596732982 ## Hash in Bucket 1 - .long 977459637 ## Hash in Bucket 1 - .long 1259565837 ## Hash in Bucket 1 - .long 1259567821 ## Hash in Bucket 1 - .long -1384015617 ## Hash in Bucket 2 - .long 1259584532 ## Hash in Bucket 3 - .long -676342098 ## Hash in Bucket 3 - .long -439368767 ## Hash in Bucket 3 - .long -362846972 ## Hash in Bucket 3 - .long -89297950 ## Hash in Bucket 3 - .long 760348102 ## Hash in Bucket 4 - .long -436481240 ## Hash in Bucket 4 - .long -3545811 ## Hash in Bucket 4 - .long 142659060 ## Hash in Bucket 5 - .long 396254498 ## Hash in Bucket 5 - .long 75873095 ## Hash in Bucket 6 - .long 1992526184 ## Hash in Bucket 6 - .long -1936086243 ## Hash in Bucket 6 - .long -117011668 ## Hash in Bucket 6 - .long 1022817449 ## Hash in Bucket 8 - .long -1085560755 ## Hash in Bucket 8 - .long -1003758606 ## Hash in Bucket 8 - .long 592082556 ## Hash in Bucket 9 - .long 1046836188 ## Hash in Bucket 9 - .long -42639472 ## Hash in Bucket 9 - .long 372548741 ## Hash in Bucket 10 - .long 1046826207 ## Hash in Bucket 10 - .long -1384001411 ## Hash in Bucket 10 - .long 672730391 ## Hash in Bucket 11 - .long -1810817966 ## Hash in Bucket 11 - .long 1246631966 ## Hash in Bucket 12 - .long -1158580290 ## Hash in Bucket 12 - .long 227424693 ## Hash in Bucket 13 - .long 372548744 ## Hash in Bucket 13 - .long 876542498 ## Hash in Bucket 14 - .long -275735721 ## Hash in Bucket 14 - .long 226885638 ## Hash in Bucket 17 - .long 279782178 ## Hash in Bucket 17 - .long -2068325629 ## Hash in Bucket 17 - .long -1383990523 ## Hash in Bucket 17 - .long 1061796239 ## Hash in Bucket 18 - .long 1259584113 ## Hash in Bucket 18 - .long 767268619 ## Hash in Bucket 19 - .long 1259578008 ## Hash in Bucket 20 - .long -854968791 ## Hash in Bucket 22 - .long -555016201 ## Hash in Bucket 22 - .long -287317220 ## Hash in Bucket 22 - .long 1259564371 ## Hash in Bucket 23 - .long -1936073175 ## Hash in Bucket 23 - .long 1259584119 ## Hash in Bucket 24 - .long -1305100538 ## Hash in Bucket 24 - .long -712206659 ## Hash in Bucket 24 - .long -1276525636 ## Hash in Bucket 25 - .long -957682545 ## Hash in Bucket 25 - .long 1178909660 ## Hash in Bucket 27 - .long -1810817980 ## Hash in Bucket 28 - .long -1365628529 ## Hash in Bucket 29 - .long -1295469484 ## Hash in Bucket 29 - .long 876837355 ## Hash in Bucket 30 - .long LNames31-Lnames_begin ## Offset in Bucket 0 - .long LNames60-Lnames_begin ## Offset in Bucket 0 - .long LNames0-Lnames_begin ## Offset in Bucket 0 - .long LNames1-Lnames_begin ## Offset in Bucket 0 - .long LNames35-Lnames_begin ## Offset in Bucket 1 - .long LNames7-Lnames_begin ## Offset in Bucket 1 - .long LNames2-Lnames_begin ## Offset in Bucket 1 - .long LNames33-Lnames_begin ## Offset in Bucket 1 - .long LNames43-Lnames_begin ## Offset in Bucket 2 - .long LNames13-Lnames_begin ## Offset in Bucket 3 - .long LNames18-Lnames_begin ## Offset in Bucket 3 - .long LNames42-Lnames_begin ## Offset in Bucket 3 - .long LNames45-Lnames_begin ## Offset in Bucket 3 - .long LNames23-Lnames_begin ## Offset in Bucket 3 - .long LNames47-Lnames_begin ## Offset in Bucket 4 - .long LNames28-Lnames_begin ## Offset in Bucket 4 - .long LNames53-Lnames_begin ## Offset in Bucket 4 - .long LNames5-Lnames_begin ## Offset in Bucket 5 - .long LNames22-Lnames_begin ## Offset in Bucket 5 - .long LNames27-Lnames_begin ## Offset in Bucket 6 - .long LNames49-Lnames_begin ## Offset in Bucket 6 - .long LNames39-Lnames_begin ## Offset in Bucket 6 - .long LNames30-Lnames_begin ## Offset in Bucket 6 - .long LNames51-Lnames_begin ## Offset in Bucket 8 - .long LNames32-Lnames_begin ## Offset in Bucket 8 - .long LNames57-Lnames_begin ## Offset in Bucket 8 - .long LNames38-Lnames_begin ## Offset in Bucket 9 - .long LNames37-Lnames_begin ## Offset in Bucket 9 - .long LNames55-Lnames_begin ## Offset in Bucket 9 - .long LNames15-Lnames_begin ## Offset in Bucket 10 - .long LNames41-Lnames_begin ## Offset in Bucket 10 - .long LNames44-Lnames_begin ## Offset in Bucket 10 - .long LNames8-Lnames_begin ## Offset in Bucket 11 - .long LNames4-Lnames_begin ## Offset in Bucket 11 - .long LNames61-Lnames_begin ## Offset in Bucket 12 - .long LNames21-Lnames_begin ## Offset in Bucket 12 - .long LNames6-Lnames_begin ## Offset in Bucket 13 - .long LNames16-Lnames_begin ## Offset in Bucket 13 - .long LNames25-Lnames_begin ## Offset in Bucket 14 - .long LNames36-Lnames_begin ## Offset in Bucket 14 - .long LNames48-Lnames_begin ## Offset in Bucket 17 - .long LNames14-Lnames_begin ## Offset in Bucket 17 - .long LNames24-Lnames_begin ## Offset in Bucket 17 - .long LNames46-Lnames_begin ## Offset in Bucket 17 - .long LNames19-Lnames_begin ## Offset in Bucket 18 - .long LNames56-Lnames_begin ## Offset in Bucket 18 - .long LNames29-Lnames_begin ## Offset in Bucket 19 - .long LNames9-Lnames_begin ## Offset in Bucket 20 - .long LNames17-Lnames_begin ## Offset in Bucket 22 - .long LNames20-Lnames_begin ## Offset in Bucket 22 - .long LNames40-Lnames_begin ## Offset in Bucket 22 - .long LNames34-Lnames_begin ## Offset in Bucket 23 - .long LNames50-Lnames_begin ## Offset in Bucket 23 - .long LNames58-Lnames_begin ## Offset in Bucket 24 - .long LNames26-Lnames_begin ## Offset in Bucket 24 - .long LNames12-Lnames_begin ## Offset in Bucket 24 - .long LNames11-Lnames_begin ## Offset in Bucket 25 - .long LNames3-Lnames_begin ## Offset in Bucket 25 - .long LNames59-Lnames_begin ## Offset in Bucket 27 - .long LNames62-Lnames_begin ## Offset in Bucket 28 - .long LNames54-Lnames_begin ## Offset in Bucket 29 - .long LNames10-Lnames_begin ## Offset in Bucket 29 - .long LNames52-Lnames_begin ## Offset in Bucket 30 -LNames31: - .long 4597 ## raviV_op_vararg - .long 1 ## Num DIEs - .long 27629 - .long 0 -LNames60: - .long 4115 ## luaV_lessthan - .long 1 ## Num DIEs - .long 22416 - .long 0 -LNames0: - .long 3926 ## luaV_tonumber_ - .long 40 ## Num DIEs - .long 1362 - .long 1944 - .long 2462 - .long 3450 - .long 3481 - .long 3680 - .long 3711 - .long 3910 - .long 3941 - .long 4140 - .long 4171 - .long 5589 - .long 5620 - .long 5873 - .long 5904 - .long 6123 - .long 6154 - .long 6249 - .long 7628 - .long 7659 - .long 7681 - .long 8410 - .long 12053 - .long 12515 - .long 14236 - .long 14575 - .long 20233 - .long 20783 - .long 21772 - .long 26841 - .long 28265 - .long 29034 - .long 29065 - .long 29328 - .long 29359 - .long 29622 - .long 29653 - .long 29916 - .long 29947 - .long 32700 - .long 0 -LNames1: - .long 4630 ## raviV_op_setupvali - .long 1 ## Num DIEs - .long 27922 - .long 0 -LNames35: - .long 4194 ## luaV_objlen - .long 1 ## Num DIEs - .long 23838 - .long 0 -LNames7: - .long 4164 ## copy2buff - .long 2 ## Num DIEs - .long 23632 - .long 23694 - .long 0 -LNames2: - .long 4837 ## raviV_op_bor - .long 1 ## Num DIEs - .long 30990 - .long 0 -LNames33: - .long 4784 ## raviV_op_div - .long 1 ## Num DIEs - .long 29799 - .long 0 -LNames43: - .long 4823 ## raviV_op_band - .long 1 ## Num DIEs - .long 30686 - .long 0 -LNames13: - .long 4758 ## raviV_op_sub - .long 1 ## Num DIEs - .long 29211 - .long 0 -LNames18: - .long 4899 ## raviV_settable_sskey - .long 1 ## Num DIEs - .long 31973 - .long 0 -LNames42: - .long 4433 ## ravi_dump_stack - .long 1 ## Num DIEs - .long 25407 - .long 0 -LNames45: - .long 4025 ## luaV_gettable - .long 1 ## Num DIEs - .long 21143 - .long 0 -LNames23: - .long 3981 ## luaV_forlimit - .long 1 ## Num DIEs - .long 20618 - .long 0 -LNames47: - .long 4224 ## luaV_shiftl - .long 7 ## Num DIEs - .long 5215 - .long 5504 - .long 9229 - .long 9368 - .long 24258 - .long 30171 - .long 30518 - .long 0 -LNames28: - .long 4376 ## ravi_dump_value - .long 1 ## Num DIEs - .long 25225 - .long 0 -LNames53: - .long 3941 ## luaV_tointeger - .long 39 ## Num DIEs - .long 1619 - .long 2201 - .long 2719 - .long 4302 - .long 4375 - .long 4548 - .long 4621 - .long 4794 - .long 4867 - .long 5040 - .long 5113 - .long 5329 - .long 5402 - .long 6408 - .long 8269 - .long 11672 - .long 12365 - .long 14099 - .long 14463 - .long 20284 - .long 20505 - .long 20710 - .long 22016 - .long 23232 - .long 23296 - .long 26700 - .long 28027 - .long 30215 - .long 30288 - .long 30541 - .long 30614 - .long 30845 - .long 30918 - .long 31149 - .long 31222 - .long 31453 - .long 31526 - .long 31725 - .long 32944 - .long 0 -LNames5: - .long 4182 ## luaV_concat - .long 1 ## Num DIEs - .long 23445 - .long 0 -LNames22: - .long 4564 ## raviV_op_concat - .long 1 ## Num DIEs - .long 26986 - .long 0 -LNames27: - .long 4580 ## raviV_op_closure - .long 1 ## Num DIEs - .long 27178 - .long 0 -LNames49: - .long 4937 ## raviV_settable_i - .long 1 ## Num DIEs - .long 32515 - .long 0 -LNames39: - .long 3995 ## luaV_finishget - .long 1 ## Num DIEs - .long 20815 - .long 0 -LNames30: - .long 3965 ## luaV_tointeger_ - .long 8 ## Num DIEs - .long 1598 - .long 2180 - .long 2698 - .long 8248 - .long 20464 - .long 22004 - .long 26679 - .long 32932 - .long 0 -LNames51: - .long 4506 ## raviV_op_newarrayfloat - .long 1 ## Num DIEs - .long 26058 - .long 0 -LNames32: - .long 4613 ## raviV_op_loadnil - .long 1 ## Num DIEs - .long 27818 - .long 0 -LNames57: - .long 4547 ## raviV_op_setlist - .long 1 ## Num DIEs - .long 26378 - .long 0 -LNames38: - .long 4236 ## luaV_finishOp - .long 1 ## Num DIEs - .long 24298 - .long 0 -LNames37: - .long 4215 ## luaV_mod - .long 2 ## Num DIEs - .long 5769 - .long 24186 - .long 0 -LNames55: - .long 4039 ## luaV_settable - .long 1 ## Num DIEs - .long 21581 - .long 0 -LNames15: - .long 4688 ## raviV_op_setupvalaf - .long 1 ## Num DIEs - .long 28503 - .long 0 -LNames41: - .long 4206 ## luaV_div - .long 2 ## Num DIEs - .long 6019 - .long 24112 - .long 0 -LNames44: - .long 4864 ## raviV_op_bnot - .long 1 ## Num DIEs - .long 31598 - .long 0 -LNames8: - .long 4392 ## ravi_dump_ci - .long 1 ## Num DIEs - .long 25484 - .long 0 -LNames4: - .long 4708 ## raviV_op_setupvalt - .long 1 ## Num DIEs - .long 28641 - .long 0 -LNames61: - .long 4727 ## raviV_op_setupval - .long 1 ## Num DIEs - .long 28779 - .long 0 -LNames21: - .long 4485 ## raviV_op_newarrayint - .long 1 ## Num DIEs - .long 25914 - .long 0 -LNames6: - .long 4053 ## LTnum - .long 1 ## Num DIEs - .long 22601 - .long 0 -LNames16: - .long 4668 ## raviV_op_setupvalai - .long 1 ## Num DIEs - .long 28365 - .long 0 -LNames25: - .long 4309 ## pushclosure - .long 2 ## Num DIEs - .long 8704 - .long 27460 - .long 0 -LNames36: - .long 4250 ## luaH_getshortstr - .long 9 ## Num DIEs - .long 2969 - .long 3193 - .long 10874 - .long 11010 - .long 11166 - .long 14721 - .long 31905 - .long 32085 - .long 33228 - .long 0 -LNames48: - .long 4129 ## LEnum - .long 1 ## Num DIEs - .long 22978 - .long 0 -LNames14: - .long 4878 ## raviV_gettable_sskey - .long 1 ## Num DIEs - .long 31797 - .long 0 -LNames24: - .long 4334 ## check_usertype - .long 2 ## Num DIEs - .long 14661 - .long 33161 - .long 0 -LNames46: - .long 4850 ## raviV_op_bxor - .long 1 ## Num DIEs - .long 31294 - .long 0 -LNames19: - .long 4954 ## raviV_op_totype - .long 1 ## Num DIEs - .long 33070 - .long 0 -LNames56: - .long 4797 ## raviV_op_shl - .long 1 ## Num DIEs - .long 30013 - .long 0 -LNames29: - .long 4135 ## luaV_lessequal - .long 1 ## Num DIEs - .long 22793 - .long 0 -LNames9: - .long 4771 ## raviV_op_mul - .long 1 ## Num DIEs - .long 29505 - .long 0 -LNames17: - .long 4067 ## l_strcmp - .long 2 ## Num DIEs - .long 22513 - .long 22890 - .long 0 -LNames20: - .long 4104 ## LEintfloat - .long 2 ## Num DIEs - .long 22691 - .long 23022 - .long 0 -LNames40: - .long 128 ## dispatch_table - .long 1 ## Num DIEs - .long 80 - .long 0 -LNames34: - .long 4745 ## raviV_op_add - .long 1 ## Num DIEs - .long 28917 - .long 0 -LNames50: - .long 4010 ## luaV_finishset - .long 1 ## Num DIEs - .long 20982 - .long 0 -LNames58: - .long 4810 ## raviV_op_shr - .long 1 ## Num DIEs - .long 30360 - .long 0 -LNames26: - .long 4093 ## LTintfloat - .long 2 ## Num DIEs - .long 22645 - .long 23068 - .long 0 -LNames12: - .long 4286 ## getcached - .long 2 ## Num DIEs - .long 8604 - .long 27351 - .long 0 -LNames11: - .long 4529 ## raviV_op_newtable - .long 1 ## Num DIEs - .long 26202 - .long 0 -LNames3: - .long 4363 ## luaV_execute - .long 1 ## Num DIEs - .long 47 - .long 0 -LNames59: - .long 4920 ## raviV_gettable_i - .long 1 ## Num DIEs - .long 32121 - .long 0 -LNames62: - .long 4649 ## raviV_op_setupvalf - .long 1 ## Num DIEs - .long 28160 - .long 0 -LNames54: - .long 4150 ## luaV_equalobj - .long 1 ## Num DIEs - .long 23102 - .long 0 -LNames10: - .long 4449 ## ravi_dump_stacktop - .long 1 ## Num DIEs - .long 25582 - .long 0 -LNames52: - .long 4468 ## ravi_debug_trace - .long 1 ## Num DIEs - .long 25706 - .long 0 - .section __DWARF,__apple_objc,regular,debug -Lobjc_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 1 ## Header Bucket Count - .long 0 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - .section __DWARF,__apple_namespac,regular,debug -Lnamespac_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 1 ## Header Bucket Count - .long 0 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - .section __DWARF,__apple_types,regular,debug -Ltypes_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 29 ## Header Bucket Count - .long 59 ## Header Hash Count - .long 20 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 3 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .short 3 ## DW_ATOM_die_tag - .short 5 ## DW_FORM_data2 - .short 4 ## DW_ATOM_type_flags - .short 11 ## DW_FORM_data1 - .long 0 ## Bucket 0 - .long 2 ## Bucket 1 - .long 3 ## Bucket 2 - .long 5 ## Bucket 3 - .long -1 ## Bucket 4 - .long 8 ## Bucket 5 - .long 9 ## Bucket 6 - .long -1 ## Bucket 7 - .long 14 ## Bucket 8 - .long 15 ## Bucket 9 - .long 16 ## Bucket 10 - .long 19 ## Bucket 11 - .long 21 ## Bucket 12 - .long 24 ## Bucket 13 - .long 31 ## Bucket 14 - .long 32 ## Bucket 15 - .long 35 ## Bucket 16 - .long 36 ## Bucket 17 - .long 37 ## Bucket 18 - .long 39 ## Bucket 19 - .long 40 ## Bucket 20 - .long 42 ## Bucket 21 - .long 43 ## Bucket 22 - .long 44 ## Bucket 23 - .long 49 ## Bucket 24 - .long 50 ## Bucket 25 - .long 53 ## Bucket 26 - .long 54 ## Bucket 27 - .long 57 ## Bucket 28 - .long 239077421 ## Hash in Bucket 0 - .long 479703094 ## Hash in Bucket 0 - .long 784013319 ## Hash in Bucket 1 - .long 267068368 ## Hash in Bucket 2 - .long 2071398372 ## Hash in Bucket 2 - .long 878862258 ## Hash in Bucket 3 - .long 1007206166 ## Hash in Bucket 3 - .long -251319668 ## Hash in Bucket 3 - .long 236871396 ## Hash in Bucket 5 - .long 524080263 ## Hash in Bucket 6 - .long 2080946626 ## Hash in Bucket 6 - .long -1304652851 ## Hash in Bucket 6 - .long -421265146 ## Hash in Bucket 6 - .long -282664779 ## Hash in Bucket 6 - .long 466678419 ## Hash in Bucket 8 - .long 2062531832 ## Hash in Bucket 9 - .long 2089400971 ## Hash in Bucket 10 - .long -2011261482 ## Hash in Bucket 10 - .long -1267332080 ## Hash in Bucket 10 - .long 118329175 ## Hash in Bucket 11 - .long 239748898 ## Hash in Bucket 11 - .long 193495088 ## Hash in Bucket 12 - .long -2109888073 ## Hash in Bucket 12 - .long -1920572709 ## Hash in Bucket 12 - .long 206000324 ## Hash in Bucket 13 - .long 505753517 ## Hash in Bucket 13 - .long 1311072323 ## Hash in Bucket 13 - .long -1792297095 ## Hash in Bucket 13 - .long -926730354 ## Hash in Bucket 13 - .long -749835052 ## Hash in Bucket 13 - .long -104093792 ## Hash in Bucket 13 - .long -69895251 ## Hash in Bucket 14 - .long -1929616327 ## Hash in Bucket 15 - .long -1880351968 ## Hash in Bucket 15 - .long -1658752209 ## Hash in Bucket 15 - .long 2089577442 ## Hash in Bucket 16 - .long 274395349 ## Hash in Bucket 17 - .long 1056685111 ## Hash in Bucket 18 - .long -5219592 ## Hash in Bucket 18 - .long 759453730 ## Hash in Bucket 19 - .long -1185500247 ## Hash in Bucket 20 - .long -769941354 ## Hash in Bucket 20 - .long -113419488 ## Hash in Bucket 21 - .long -935859777 ## Hash in Bucket 22 - .long 233247545 ## Hash in Bucket 23 - .long 265767855 ## Hash in Bucket 23 - .long 987553234 ## Hash in Bucket 23 - .long 1891274695 ## Hash in Bucket 23 - .long 2138597773 ## Hash in Bucket 23 - .long 238658772 ## Hash in Bucket 24 - .long 2054339493 ## Hash in Bucket 25 - .long 2090147939 ## Hash in Bucket 25 - .long -1053329204 ## Hash in Bucket 25 - .long 1090845495 ## Hash in Bucket 26 - .long 1639088524 ## Hash in Bucket 27 - .long -80380739 ## Hash in Bucket 27 - .long -79299793 ## Hash in Bucket 27 - .long 237365869 ## Hash in Bucket 28 - .long 502458001 ## Hash in Bucket 28 - .long Ltypes4-Ltypes_begin ## Offset in Bucket 0 - .long Ltypes22-Ltypes_begin ## Offset in Bucket 0 - .long Ltypes41-Ltypes_begin ## Offset in Bucket 1 - .long Ltypes47-Ltypes_begin ## Offset in Bucket 2 - .long Ltypes0-Ltypes_begin ## Offset in Bucket 2 - .long Ltypes49-Ltypes_begin ## Offset in Bucket 3 - .long Ltypes52-Ltypes_begin ## Offset in Bucket 3 - .long Ltypes19-Ltypes_begin ## Offset in Bucket 3 - .long Ltypes28-Ltypes_begin ## Offset in Bucket 5 - .long Ltypes40-Ltypes_begin ## Offset in Bucket 6 - .long Ltypes17-Ltypes_begin ## Offset in Bucket 6 - .long Ltypes29-Ltypes_begin ## Offset in Bucket 6 - .long Ltypes1-Ltypes_begin ## Offset in Bucket 6 - .long Ltypes34-Ltypes_begin ## Offset in Bucket 6 - .long Ltypes33-Ltypes_begin ## Offset in Bucket 8 - .long Ltypes54-Ltypes_begin ## Offset in Bucket 9 - .long Ltypes2-Ltypes_begin ## Offset in Bucket 10 - .long Ltypes36-Ltypes_begin ## Offset in Bucket 10 - .long Ltypes50-Ltypes_begin ## Offset in Bucket 10 - .long Ltypes10-Ltypes_begin ## Offset in Bucket 11 - .long Ltypes57-Ltypes_begin ## Offset in Bucket 11 - .long Ltypes31-Ltypes_begin ## Offset in Bucket 12 - .long Ltypes53-Ltypes_begin ## Offset in Bucket 12 - .long Ltypes25-Ltypes_begin ## Offset in Bucket 12 - .long Ltypes58-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes5-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes27-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes12-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes8-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes51-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes56-Ltypes_begin ## Offset in Bucket 13 - .long Ltypes45-Ltypes_begin ## Offset in Bucket 14 - .long Ltypes24-Ltypes_begin ## Offset in Bucket 15 - .long Ltypes16-Ltypes_begin ## Offset in Bucket 15 - .long Ltypes6-Ltypes_begin ## Offset in Bucket 15 - .long Ltypes38-Ltypes_begin ## Offset in Bucket 16 - .long Ltypes21-Ltypes_begin ## Offset in Bucket 17 - .long Ltypes23-Ltypes_begin ## Offset in Bucket 18 - .long Ltypes11-Ltypes_begin ## Offset in Bucket 18 - .long Ltypes26-Ltypes_begin ## Offset in Bucket 19 - .long Ltypes42-Ltypes_begin ## Offset in Bucket 20 - .long Ltypes35-Ltypes_begin ## Offset in Bucket 20 - .long Ltypes37-Ltypes_begin ## Offset in Bucket 21 - .long Ltypes55-Ltypes_begin ## Offset in Bucket 22 - .long Ltypes14-Ltypes_begin ## Offset in Bucket 23 - .long Ltypes7-Ltypes_begin ## Offset in Bucket 23 - .long Ltypes32-Ltypes_begin ## Offset in Bucket 23 - .long Ltypes43-Ltypes_begin ## Offset in Bucket 23 - .long Ltypes9-Ltypes_begin ## Offset in Bucket 23 - .long Ltypes20-Ltypes_begin ## Offset in Bucket 24 - .long Ltypes18-Ltypes_begin ## Offset in Bucket 25 - .long Ltypes39-Ltypes_begin ## Offset in Bucket 25 - .long Ltypes3-Ltypes_begin ## Offset in Bucket 25 - .long Ltypes13-Ltypes_begin ## Offset in Bucket 26 - .long Ltypes44-Ltypes_begin ## Offset in Bucket 27 - .long Ltypes15-Ltypes_begin ## Offset in Bucket 27 - .long Ltypes46-Ltypes_begin ## Offset in Bucket 27 - .long Ltypes30-Ltypes_begin ## Offset in Bucket 28 - .long Ltypes48-Ltypes_begin ## Offset in Bucket 28 -Ltypes4: - .long 3100 ## UpVal - .long 2 ## Num DIEs - .long 18455 - .short 22 - .byte 0 - .long 18467 - .short 19 - .byte 0 - .long 0 -Ltypes22: - .long 2949 ## lua_KContext - .long 1 ## Num DIEs - .long 18403 - .short 22 - .byte 0 - .long 0 -Ltypes41: - .long 2411 ## ptrdiff_t - .long 1 ## Num DIEs - .long 17754 - .short 22 - .byte 0 - .long 0 -Ltypes47: - .long 2118 ## TString - .long 2 ## Num DIEs - .long 15986 - .short 19 - .byte 0 - .long 17855 - .short 22 - .byte 0 - .long 0 -Ltypes0: - .long 2470 ## stringtable - .long 2 ## Num DIEs - .long 17783 - .short 22 - .byte 0 - .long 17794 - .short 19 - .byte 0 - .long 0 -Ltypes49: - .long 3031 ## unsigned short - .long 1 ## Num DIEs - .long 18443 - .short 36 - .byte 0 - .long 0 -Ltypes52: - .long 3481 ## RaviArray - .long 2 ## Num DIEs - .long 19072 - .short 22 - .byte 0 - .long 19084 - .short 19 - .byte 0 - .long 0 -Ltypes19: - .long 2739 ## ASMFunction - .long 1 ## Num DIEs - .long 17963 - .short 22 - .byte 0 - .long 0 -Ltypes28: - .long 2349 ## StkId - .long 1 ## Num DIEs - .long 17080 - .short 22 - .byte 0 - .long 0 -Ltypes40: - .long 2328 ## lua_State - .long 2 ## Num DIEs - .long 16700 - .short 22 - .byte 0 - .long 16711 - .short 19 - .byte 0 - .long 0 -Ltypes17: - .long 2837 ## ravi_Writestringerror - .long 1 ## Num DIEs - .long 18032 - .short 22 - .byte 0 - .long 0 -Ltypes29: - .long 2144 ## unsigned int - .long 1 ## Num DIEs - .long 16137 - .short 36 - .byte 0 - .long 0 -Ltypes1: - .long 2069 ## GCObject - .long 2 ## Num DIEs - .long 15901 - .short 22 - .byte 0 - .long 15912 - .short 19 - .byte 0 - .long 0 -Ltypes34: - .long 2173 ## __darwin_size_t - .long 1 ## Num DIEs - .long 16155 - .short 22 - .byte 0 - .long 0 -Ltypes33: - .long 2166 ## size_t - .long 1 ## Num DIEs - .long 16144 - .short 22 - .byte 0 - .long 0 -Ltypes54: - .long 2798 ## ravi_Writestring - .long 1 ## Num DIEs - .long 17993 - .short 22 - .byte 0 - .long 0 -Ltypes2: - .long 3432 ## Node - .long 2 ## Num DIEs - .long 18917 - .short 22 - .byte 0 - .long 18929 - .short 19 - .byte 0 - .long 0 -Ltypes36: - .long 2359 ## global_State - .long 2 ## Num DIEs - .long 17097 - .short 22 - .byte 0 - .long 17108 - .short 19 - .byte 0 - .long 0 -Ltypes50: - .long 3407 ## long long int - .long 1 ## Num DIEs - .long 18905 - .short 36 - .byte 0 - .long 0 -Ltypes10: - .long 2280 ## lua_TValue - .long 1 ## Num DIEs - .long 16519 - .short 19 - .byte 0 - .long 0 -Ltypes57: - .long 2298 ## Value - .long 2 ## Num DIEs - .long 16556 - .short 22 - .byte 0 - .long 16567 - .short 23 - .byte 0 - .long 0 -Ltypes31: - .long 2308 ## int - .long 1 ## Num DIEs - .long 16660 - .short 36 - .byte 0 - .long 0 -Ltypes53: - .long 2719 ## ravi_State - .long 1 ## Num DIEs - .long 17934 - .short 22 - .byte 0 - .long 0 -Ltypes25: - .long 2971 ## __darwin_intptr_t - .long 1 ## Num DIEs - .long 18425 - .short 22 - .byte 0 - .long 0 -Ltypes58: - .long 2447 ## lu_mem - .long 1 ## Num DIEs - .long 17772 - .short 22 - .byte 0 - .long 0 -Ltypes5: - .long 3186 ## lua_Debug - .long 2 ## Num DIEs - .long 18635 - .short 22 - .byte 0 - .long 18647 - .short 19 - .byte 0 - .long 0 -Ltypes27: - .long 3883 ## lua_Unsigned - .long 1 ## Num DIEs - .long 20183 - .short 22 - .byte 0 - .long 0 -Ltypes12: - .long 2086 ## lu_byte - .long 1 ## Num DIEs - .long 15968 - .short 22 - .byte 0 - .long 0 -Ltypes8: - .long 3576 ## LClosure - .long 2 ## Num DIEs - .long 19348 - .short 22 - .byte 0 - .long 19360 - .short 19 - .byte 0 - .long 0 -Ltypes51: - .long 3395 ## lua_Integer - .long 1 ## Num DIEs - .long 18894 - .short 22 - .byte 0 - .long 0 -Ltypes56: - .long 2094 ## unsigned char - .long 1 ## Num DIEs - .long 15979 - .short 36 - .byte 0 - .long 0 -Ltypes45: - .long 3896 ## long long unsigned int - .long 1 ## Num DIEs - .long 20194 - .short 36 - .byte 0 - .long 0 -Ltypes24: - .long 2962 ## intptr_t - .long 1 ## Num DIEs - .long 18414 - .short 22 - .byte 0 - .long 0 -Ltypes16: - .long 2421 ## long int - .long 1 ## Num DIEs - .long 17765 - .short 36 - .byte 0 - .long 0 -Ltypes6: - .long 2314 ## lua_CFunction - .long 1 ## Num DIEs - .long 16667 - .short 22 - .byte 0 - .long 0 -Ltypes38: - .long 3449 ## TKey - .long 2 ## Num DIEs - .long 18969 - .short 22 - .byte 0 - .long 18981 - .short 23 - .byte 0 - .long 0 -Ltypes21: - .long 3014 ## short - .long 1 ## Num DIEs - .long 18436 - .short 36 - .byte 0 - .long 0 -Ltypes23: - .long 3177 ## lua_Hook - .long 1 ## Num DIEs - .long 18600 - .short 22 - .byte 0 - .long 0 -Ltypes11: - .long 2058 ## GCUnion - .long 1 ## Num DIEs - .long 15794 - .short 23 - .byte 0 - .long 0 -Ltypes26: - .long 3541 ## Closure - .long 1 ## Num DIEs - .long 19169 - .short 23 - .byte 0 - .long 0 -Ltypes42: - .long 2766 ## ravi_Writeline - .long 1 ## Num DIEs - .long 17982 - .short 22 - .byte 0 - .long 0 -Ltypes35: - .long 2273 ## TValue - .long 1 ## Num DIEs - .long 16508 - .short 22 - .byte 0 - .long 0 -Ltypes37: - .long 2046 ## double - .long 1 ## Num DIEs - .long 15770 - .short 36 - .byte 0 - .long 0 -Ltypes55: - .long 3919 ## OpCode - .long 1 ## Num DIEs - .long 20211 - .short 22 - .byte 0 - .long 0 -Ltypes14: - .long 3585 ## Proto - .long 2 ## Num DIEs - .long 19480 - .short 19 - .byte 0 - .long 24974 - .short 22 - .byte 0 - .long 0 -Ltypes7: - .long 2405 ## l_mem - .long 1 ## Num DIEs - .long 17743 - .short 22 - .byte 0 - .long 0 -Ltypes32: - .long 3799 ## RaviJITProto - .long 2 ## Num DIEs - .long 20074 - .short 22 - .byte 0 - .long 20086 - .short 19 - .byte 0 - .long 0 -Ltypes43: - .long 2919 ## Instruction - .long 1 ## Num DIEs - .long 18354 - .short 22 - .byte 0 - .long 0 -Ltypes9: - .long 2881 ## CallInfo - .long 2 ## Num DIEs - .long 18066 - .short 22 - .byte 0 - .long 18077 - .short 19 - .byte 0 - .long 0 -Ltypes20: - .long 2213 ## Udata - .long 1 ## Num DIEs - .long 16178 - .short 19 - .byte 0 - .long 0 -Ltypes18: - .long 3549 ## CClosure - .long 2 ## Num DIEs - .long 19209 - .short 22 - .byte 0 - .long 19221 - .short 19 - .byte 0 - .long 0 -Ltypes39: - .long 2053 ## char - .long 1 ## Num DIEs - .long 15782 - .short 36 - .byte 0 - .long 0 -Ltypes3: - .long 3705 ## LocVar - .long 2 ## Num DIEs - .long 19870 - .short 22 - .byte 0 - .long 19882 - .short 19 - .byte 0 - .long 0 -Ltypes13: - .long 2935 ## lua_KFunction - .long 1 ## Num DIEs - .long 18365 - .short 22 - .byte 0 - .long 0 -Ltypes44: - .long 3762 ## Upvaldesc - .long 2 ## Num DIEs - .long 19972 - .short 22 - .byte 0 - .long 19984 - .short 19 - .byte 0 - .long 0 -Ltypes15: - .long 2189 ## long unsigned int - .long 1 ## Num DIEs - .long 16166 - .short 36 - .byte 0 - .long 0 -Ltypes46: - .long 2035 ## lua_Number - .long 1 ## Num DIEs - .long 15759 - .short 22 - .byte 0 - .long 0 -Ltypes30: - .long 2235 ## Table - .long 2 ## Num DIEs - .long 16298 - .short 19 - .byte 0 - .long 24661 - .short 22 - .byte 0 - .long 0 -Ltypes48: - .long 2381 ## lua_Alloc - .long 1 ## Num DIEs - .long 17700 - .short 22 - .byte 0 - .long 0 - .section __DWARF,__apple_exttypes,regular,debug -Lexttypes_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 1 ## Header Bucket Count - .long 0 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 7 ## DW_ATOM_ext_types - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - -.subsections_via_symbols - .section __DWARF,__debug_line,regular,debug -Lsection_line: -Lline_table_start0: diff --git a/vmbuilder/compiler-output/clang_lvm_compgoto_luajitbcdecode.s b/vmbuilder/compiler-output/clang_lvm_compgoto_luajitbcdecode.s deleted file mode 100644 index 9c701a1..0000000 --- a/vmbuilder/compiler-output/clang_lvm_compgoto_luajitbcdecode.s +++ /dev/null @@ -1,180631 +0,0 @@ - .section __TEXT,__text,regular,pure_instructions - .build_version macos, 10, 14 sdk_version 10, 14 - .file 1 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/src/lvm.c" - .file 2 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/ltm.h" - .file 3 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/lopcodes.h" - .file 4 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/lobject.h" - .file 5 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/lua.h" - .file 6 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/llimits.h" - .file 7 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/lstate.h" - .file 8 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/i386/_types.h" - .file 9 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/sys/_types/_size_t.h" - .file 10 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/_types/_uint16_t.h" - .file 11 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Library/Developer/CommandLineTools/usr/lib/clang/10.0.1/include/stddef.h" - .file 12 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/sys/_types/_intptr_t.h" - .file 13 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/lfunc.h" - .globl _luaV_tonumber_ ## -- Begin function luaV_tonumber_ - .p2align 4, 0x90 -_luaV_tonumber_: ## @luaV_tonumber_ -Lfunc_begin0: - .loc 1 77 0 ## /Users/dylan/github/ravi/src/lvm.c:77:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - subq $24, %rsp - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rdi - ##DEBUG_VALUE: luaV_tonumber_:n <- $rsi - movq %rsi, %r14 - movq %rdi, %rbx -Ltmp0: - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - .loc 1 79 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:79:7 - movzwl 8(%rdi), %eax - cmpl $19, %eax -Ltmp1: - .loc 1 79 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:79:7 - jne LBB0_2 -Ltmp2: -## %bb.1: - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 80 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:80:10 - cvtsi2sdq (%rbx), %xmm0 -Ltmp3: -LBB0_14: - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 0 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:10 - movsd %xmm0, (%r14) - movl $1, %r15d - jmp LBB0_15 -Ltmp4: -LBB0_2: - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - andl $15, %eax - xorl %r15d, %r15d - cmpl $4, %eax - .loc 1 83 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:83:25 - jne LBB0_15 -Ltmp5: -## %bb.3: - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 84 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:26 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $4, %al - jne LBB0_16 -Ltmp6: -## %bb.4: - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - addq $24, %rdi - leaq -40(%rbp), %rsi -Ltmp7: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 84 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:13 - callq _luaO_str2num -Ltmp8: - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movzwl 8(%rbx), %ecx - andl $15, %ecx - cmpl $4, %ecx - jne LBB0_17 -Ltmp9: -## %bb.5: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - movq (%rbx), %rcx - movb 8(%rcx), %bl -Ltmp10: - movl %ebx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB0_16 -Ltmp11: -## %bb.6: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - cmpb $4, %bl - jne LBB0_8 -Ltmp12: -## %bb.7: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - movzbl 11(%rcx), %ecx - .loc 1 84 57 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx - .loc 1 84 43 ## /Users/dylan/github/ravi/src/lvm.c:84:43 - cmpq %rcx, %rax -Ltmp13: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - je LBB0_10 -Ltmp14: -LBB0_15: - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 90 1 ## /Users/dylan/github/ravi/src/lvm.c:90:1 - movl %r15d, %eax - addq $24, %rsp - popq %rbx - popq %r14 -Ltmp15: - popq %r15 - popq %rbp - retq -LBB0_8: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp -Ltmp16: - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 84 46 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - movq 16(%rcx), %rcx - .loc 1 84 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:84:57 - incq %rcx - .loc 1 84 43 ## /Users/dylan/github/ravi/src/lvm.c:84:43 - cmpq %rcx, %rax -Ltmp17: - .loc 1 83 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:83:12 - jne LBB0_15 -Ltmp18: -LBB0_10: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - movzwl -32(%rbp), %eax - movl %eax, %ecx - andl $15, %ecx - cmpl $3, %ecx - jne LBB0_18 -Ltmp19: -## %bb.11: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB0_12 -Ltmp20: -## %bb.19: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - cvtsi2sdq -40(%rbp), %xmm0 - jmp LBB0_14 -Ltmp21: -LBB0_12: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - cmpl $3, %eax - jne LBB0_20 -Ltmp22: -## %bb.13: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - movsd -40(%rbp), %xmm0 ## xmm0 = mem[0],zero - jmp LBB0_14 -Ltmp23: -LBB0_16: - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 0 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:10 - leaq L___func__.luaV_tonumber_(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.3(%rip), %rcx - movl $84, %edx - callq ___assert_rtn -Ltmp24: -LBB0_17: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:obj <- $rbx - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 84 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:84:46 - leaq L___func__.luaV_tonumber_(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.2(%rip), %rcx - movl $84, %edx - callq ___assert_rtn -Ltmp25: -LBB0_18: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - .loc 1 85 10 ## /Users/dylan/github/ravi/src/lvm.c:85:10 - leaq L___func__.luaV_tonumber_(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.4(%rip), %rcx - movl $85, %edx - callq ___assert_rtn -Ltmp26: -LBB0_20: - ##DEBUG_VALUE: luaV_tonumber_:v <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tonumber_:n <- $r14 - leaq L___func__.luaV_tonumber_(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.6(%rip), %rcx - movl $85, %edx - callq ___assert_rtn -Ltmp27: -Lfunc_end0: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function luaV_flttointeger -LCPI1_0: - .quad 4607182418800017408 ## double 1 -LCPI1_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI1_2: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_flttointeger - .p2align 4, 0x90 -_luaV_flttointeger: ## @luaV_flttointeger -Lfunc_begin1: - .loc 1 99 0 ## /Users/dylan/github/ravi/src/lvm.c:99:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx -Ltmp28: - .loc 1 100 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:100:8 - movzwl 8(%rdi), %ecx - xorl %eax, %eax - cmpl $3, %ecx -Ltmp29: - .loc 1 100 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:100:7 - jne LBB1_8 -## %bb.1: - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi -Ltmp30: - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdi), %xmm1 ## xmm1 = mem[0],zero -Ltmp31: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - roundsd $9, %xmm1, %xmm0 -Ltmp32: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB1_2 - jnp LBB1_5 -Ltmp33: -LBB1_2: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - .loc 1 106 16 ## /Users/dylan/github/ravi/src/lvm.c:106:16 - testl %edx, %edx -Ltmp34: - .loc 1 106 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:106:11 - je LBB1_8 -Ltmp35: -## %bb.3: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - .loc 1 107 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:107:21 - cmpl $1, %edx -Ltmp36: - .loc 1 107 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:107:16 - jle LBB1_5 -Ltmp37: -## %bb.4: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - addsd LCPI1_0(%rip), %xmm0 -Ltmp38: -LBB1_5: - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI1_1(%rip), %xmm0 - jb LBB1_8 -Ltmp39: -## %bb.6: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI1_2(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp40: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB1_8 -Ltmp41: -## %bb.7: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - cvttsd2si %xmm0, %rax - movq %rax, (%rsi) - movl $1, %eax -Ltmp42: -LBB1_8: - ##DEBUG_VALUE: luaV_flttointeger:mode <- $edx - ##DEBUG_VALUE: luaV_flttointeger:p <- $rsi - ##DEBUG_VALUE: luaV_flttointeger:obj <- $rdi - .loc 1 112 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:112:1 - popq %rbp - retq -Ltmp43: -Lfunc_end1: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function luaV_tointeger -LCPI2_0: - .quad 4607182418800017408 ## double 1 -LCPI2_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI2_2: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_tointeger - .p2align 4, 0x90 -_luaV_tointeger: ## @luaV_tointeger -Lfunc_begin2: - .loc 1 119 0 ## /Users/dylan/github/ravi/src/lvm.c:119:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rdi - ##DEBUG_VALUE: luaV_tointeger:p <- $rsi - ##DEBUG_VALUE: luaV_tointeger:mode <- $edx - movl %edx, %r15d - movq %rsi, %r14 - movq %rdi, %rbx -Ltmp44: - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - .loc 1 121 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:121:7 - movzwl 8(%rdi), %ecx - movl %ecx, %eax - andl $15, %eax - cmpl $4, %eax - .loc 1 121 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:121:20 - jne LBB2_8 -Ltmp45: -## %bb.1: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 121 36 ## /Users/dylan/github/ravi/src/lvm.c:121:36 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $4, %al - jne LBB2_20 -Ltmp46: -## %bb.2: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - addq $24, %rdi - leaq -48(%rbp), %r12 -Ltmp47: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 121 23 ## /Users/dylan/github/ravi/src/lvm.c:121:23 - movq %r12, %rsi - callq _luaO_str2num -Ltmp48: - .loc 1 121 56 ## /Users/dylan/github/ravi/src/lvm.c:121:56 - movzwl 8(%rbx), %ecx - andl $15, %ecx - cmpl $4, %ecx - jne LBB2_21 -Ltmp49: -## %bb.3: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - movq (%rbx), %rsi - movb 8(%rsi), %cl - movl %ecx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB2_20 -Ltmp50: -## %bb.4: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - cmpb $4, %cl - jne LBB2_6 -Ltmp51: -## %bb.5: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - movzbl 11(%rsi), %ecx - jmp LBB2_7 -Ltmp52: -LBB2_6: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - movq 16(%rsi), %rcx -Ltmp53: -LBB2_7: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 121 67 ## /Users/dylan/github/ravi/src/lvm.c:121:67 - incq %rcx - .loc 1 121 53 ## /Users/dylan/github/ravi/src/lvm.c:121:53 - cmpq %rcx, %rax -Ltmp54: - .loc 1 121 7 ## /Users/dylan/github/ravi/src/lvm.c:121:7 - cmoveq %r12, %rbx -Ltmp55: - .loc 1 123 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:123:7 - movzwl 8(%rbx), %ecx -Ltmp56: -LBB2_8: - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - xorl %eax, %eax - .loc 1 123 7 ## /Users/dylan/github/ravi/src/lvm.c:123:7 - movzwl %cx, %ecx - cmpl $3, %ecx - je LBB2_11 -Ltmp57: -## %bb.9: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - cmpl $19, %ecx - jne LBB2_19 -Ltmp58: -## %bb.10: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 124 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:124:10 - movq (%rbx), %rax - jmp LBB2_18 -Ltmp59: -LBB2_11: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rbx), %xmm1 ## xmm1 = mem[0],zero -Ltmp60: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - roundsd $9, %xmm1, %xmm0 -Ltmp61: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB2_12 - jnp LBB2_15 -Ltmp62: -LBB2_12: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 106 16 ## /Users/dylan/github/ravi/src/lvm.c:106:16 - testl %r15d, %r15d -Ltmp63: - .loc 1 106 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:106:11 - je LBB2_19 -Ltmp64: -## %bb.13: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 107 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:107:21 - cmpl $1, %r15d -Ltmp65: - .loc 1 107 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:107:16 - jle LBB2_15 -Ltmp66: -## %bb.14: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - addsd LCPI2_0(%rip), %xmm0 -Ltmp67: -LBB2_15: - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI2_1(%rip), %xmm0 - jb LBB2_19 -Ltmp68: -## %bb.16: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI2_2(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp69: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB2_19 -Ltmp70: -## %bb.17: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - cvttsd2si %xmm0, %rax -Ltmp71: -LBB2_18: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 0 12 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movq %rax, (%r14) - movl $1, %eax -Ltmp72: -LBB2_19: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 129 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:129:1 - addq $16, %rsp - popq %rbx -Ltmp73: - popq %r12 - popq %r14 -Ltmp74: - popq %r15 -Ltmp75: - popq %rbp - retq -LBB2_20: -Ltmp76: - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq L___func__.luaV_tointeger(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.3(%rip), %rcx - movl $121, %edx - callq ___assert_rtn -Ltmp77: -LBB2_21: - ##DEBUG_VALUE: luaV_tointeger:v <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_tointeger:obj <- $rbx - ##DEBUG_VALUE: luaV_tointeger:p <- $r14 - ##DEBUG_VALUE: luaV_tointeger:mode <- $r15d - .loc 1 121 56 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:121:56 - leaq L___func__.luaV_tointeger(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.2(%rip), %rcx - movl $121, %edx - callq ___assert_rtn -Ltmp78: -Lfunc_end2: - .cfi_endproc - ## -- End function - .globl _luaV_tointeger_ ## -- Begin function luaV_tointeger_ - .p2align 4, 0x90 -_luaV_tointeger_: ## @luaV_tointeger_ -Lfunc_begin3: - .loc 1 135 0 ## /Users/dylan/github/ravi/src/lvm.c:135:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: luaV_tointeger_:obj <- $rdi - ##DEBUG_VALUE: luaV_tointeger_:obj <- $rdi - ##DEBUG_VALUE: luaV_tointeger_:p <- $rsi - ##DEBUG_VALUE: luaV_tointeger_:p <- $rsi -Ltmp79: - .loc 1 136 10 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - ##DEBUG_VALUE: luaV_tointeger_:p <- $rsi - ##DEBUG_VALUE: luaV_tointeger_:obj <- $rdi - popq %rbp - jmp _luaV_tointeger ## TAILCALL -Ltmp80: -Lfunc_end3: - .cfi_endproc - ## -- End function - .globl _luaV_forlimit ## -- Begin function luaV_forlimit - .p2align 4, 0x90 -_luaV_forlimit: ## @luaV_forlimit -Lfunc_begin4: - .loc 1 156 0 ## /Users/dylan/github/ravi/src/lvm.c:156:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_forlimit:obj <- $rdi - ##DEBUG_VALUE: luaV_forlimit:p <- $rsi - ##DEBUG_VALUE: luaV_forlimit:step <- $rdx - ##DEBUG_VALUE: luaV_forlimit:stopnow <- $rcx - movq %rsi, %r13 - movq %rdi, %rbx -Ltmp81: - ##DEBUG_VALUE: luaV_forlimit:stopnow <- $r14 - ##DEBUG_VALUE: luaV_forlimit:step <- $r15 - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - .loc 1 157 12 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:157:12 - movl $0, (%rcx) -Ltmp82: - .loc 1 158 7 ## /Users/dylan/github/ravi/src/lvm.c:158:7 - movzwl 8(%rdi), %eax - cmpl $19, %eax -Ltmp83: - .loc 1 158 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:158:7 - jne LBB4_2 -Ltmp84: -## %bb.1: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - ##DEBUG_VALUE: luaV_forlimit:step <- $r15 - ##DEBUG_VALUE: luaV_forlimit:stopnow <- $r14 - .loc 1 159 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:159:10 - movq (%rbx), %rax - .loc 1 159 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:159:8 - movq %rax, (%r13) - movl $1, %r12d - jmp LBB4_12 -Ltmp85: -LBB4_2: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - ##DEBUG_VALUE: luaV_forlimit:step <- $r15 - ##DEBUG_VALUE: luaV_forlimit:stopnow <- $r14 - .loc 1 0 8 ## /Users/dylan/github/ravi/src/lvm.c:0:8 - movq %rcx, %r14 -Ltmp86: - movq %rdx, %r15 -Ltmp87: - .loc 1 160 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:160:37 - shrq $63, %rdx - incl %edx - .loc 1 160 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:160:13 - movq %rbx, %rdi - movq %r13, %rsi - ## kill: def $edx killed $edx killed $rdx - callq _luaV_tointeger -Ltmp88: - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl $1, %r12d - .loc 1 160 13 ## /Users/dylan/github/ravi/src/lvm.c:160:13 - testl %eax, %eax -Ltmp89: - .loc 1 160 12 ## /Users/dylan/github/ravi/src/lvm.c:160:12 - jne LBB4_12 -Ltmp90: -## %bb.3: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 163 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movzwl 8(%rbx), %eax - cmpl $3, %eax -Ltmp91: - .loc 1 163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:163:9 - jne LBB4_5 -Ltmp92: -## %bb.4: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - ##DEBUG_VALUE: n <- [DW_OP_deref] $rbx - .loc 1 163 10 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movq (%rbx), %rax - movq %rax, -48(%rbp) - movq %rax, %xmm0 -Ltmp93: - ##DEBUG_VALUE: n <- $xmm0 - .loc 1 0 10 ## /Users/dylan/github/ravi/src/lvm.c:0:10 - movabsq $9223372036854775807, %rax ## imm = 0x7FFFFFFFFFFFFFFF - xorps %xmm1, %xmm1 -Ltmp94: - .loc 1 165 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ucomisd %xmm1, %xmm0 -Ltmp95: - .loc 1 165 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - jbe LBB4_9 -Ltmp96: -LBB4_8: - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 166 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:166:10 - movq %rax, (%r13) -Ltmp97: - .loc 1 160 42 ## /Users/dylan/github/ravi/src/lvm.c:160:42 - testq %r15, %r15 - jns LBB4_12 - jmp LBB4_10 -Ltmp98: -LBB4_5: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 0 42 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:42 - leaq -48(%rbp), %rsi -Ltmp99: - ##DEBUG_VALUE: n <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 163 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp100: - testl %eax, %eax -Ltmp101: - .loc 1 163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:163:9 - je LBB4_11 -Ltmp102: -## %bb.6: - ##DEBUG_VALUE: n <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 165 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - movq -48(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp103: - ##DEBUG_VALUE: n <- $xmm0 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movabsq $9223372036854775807, %rax ## imm = 0x7FFFFFFFFFFFFFFF - xorps %xmm1, %xmm1 - .loc 1 165 9 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ucomisd %xmm1, %xmm0 -Ltmp104: - .loc 1 165 9 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ja LBB4_8 -Ltmp105: -LBB4_9: - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 170 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:170:10 - incq %rax - movq %rax, (%r13) -Ltmp106: - .loc 1 171 16 ## /Users/dylan/github/ravi/src/lvm.c:171:16 - testq %r15, %r15 -Ltmp107: - .loc 1 171 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:171:11 - js LBB4_12 -Ltmp108: -LBB4_10: - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movl $1, (%r14) -Ltmp109: -LBB4_12: - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 175 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:175:1 - movl %r12d, %eax - addq $8, %rsp - popq %rbx -Ltmp110: - popq %r12 - popq %r13 -Ltmp111: - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp112: -LBB4_11: - ##DEBUG_VALUE: n <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: luaV_forlimit:p <- $r13 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - xorl %r12d, %r12d - jmp LBB4_12 -Lfunc_end4: - .cfi_endproc - ## -- End function - .globl _luaV_finishget ## -- Begin function luaV_finishget - .p2align 4, 0x90 -_luaV_finishget: ## @luaV_finishget -Lfunc_begin5: - .loc 1 184 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:184:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishget:L <- $rdi - ##DEBUG_VALUE: luaV_finishget:t <- $rsi - ##DEBUG_VALUE: luaV_finishget:key <- $rdx - ##DEBUG_VALUE: luaV_finishget:val <- $rcx - ##DEBUG_VALUE: luaV_finishget:slot <- $r8 -Ltmp113: - ##DEBUG_VALUE: io1 <- $rcx - movq %r8, %rax - movq %rcx, -48(%rbp) ## 8-byte Spill -Ltmp114: - ##DEBUG_VALUE: io1 <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %rdx, %r15 -Ltmp115: - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - movq %rsi, %r13 - movq %rdi, %r12 -Ltmp116: - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - xorl %r14d, %r14d -Ltmp117: - ##DEBUG_VALUE: luaV_finishget:loop <- 0 - .p2align 4, 0x90 -LBB5_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishget:slot <- $r8 - ##DEBUG_VALUE: luaV_finishget:t <- $rsi - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - .loc 1 188 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:188:14 - testq %rax, %rax -Ltmp118: - .loc 1 188 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:188:9 - je LBB5_2 -Ltmp119: -## %bb.5: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 196 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:196:7 - cmpw $0, 8(%rax) - jne LBB5_28 -Ltmp120: -## %bb.6: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 197 12 ## /Users/dylan/github/ravi/src/lvm.c:197:12 - movzwl 8(%r13), %eax -Ltmp121: - andl $15, %eax - cmpl $5, %eax - jne LBB5_29 -Ltmp122: -## %bb.7: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r13), %rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB5_30 -Ltmp123: -## %bb.8: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 40(%rax), %rdi - testq %rdi, %rdi - je LBB5_25 -Ltmp124: -## %bb.9: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $1, 10(%rdi) - jne LBB5_25 -Ltmp125: -## %bb.10: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 24(%r12), %rax - movq 224(%rax), %rdx - xorl %esi, %esi - callq _luaT_gettm -Ltmp126: - .loc 1 198 14 ## /Users/dylan/github/ravi/src/lvm.c:198:14 - testq %rax, %rax -Ltmp127: - .loc 1 198 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:198:11 - je LBB5_25 -Ltmp128: -## %bb.11: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rax, %rbx -Ltmp129: - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - .loc 1 204 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:204:9 - movzwl 8(%rax), %eax -Ltmp130: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - .loc 1 204 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:204:9 - andb $15, %al - cmpb $5, %al - jne LBB5_13 - jmp LBB5_18 -Ltmp131: - .p2align 4, 0x90 -LBB5_2: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 189 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:189:7 - movzwl 8(%r13), %eax -Ltmp132: - andl $15, %eax - cmpl $5, %eax - je LBB5_27 -Ltmp133: -## %bb.3: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 190 12 ## /Users/dylan/github/ravi/src/lvm.c:190:12 - xorl %edx, %edx - movq %r12, %rdi - movq %r13, %rsi - callq _luaT_gettmbyobj -Ltmp134: - movq %rax, %rbx -Ltmp135: - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - .loc 1 191 11 ## /Users/dylan/github/ravi/src/lvm.c:191:11 - movzwl 8(%rax), %eax - testw %ax, %ax -Ltmp136: - .loc 1 191 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:191:11 - je LBB5_4 -Ltmp137: -## %bb.12: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - .loc 1 204 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:204:9 - andb $15, %al - cmpb $5, %al - je LBB5_18 -Ltmp138: -LBB5_13: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpb $6, %al - je LBB5_17 -Ltmp139: -## %bb.14: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 209 9 ## /Users/dylan/github/ravi/src/lvm.c:209:9 - xorl %eax, %eax -Ltmp140: - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - .loc 1 187 41 ## /Users/dylan/github/ravi/src/lvm.c:187:41 - incl %r14d -Ltmp141: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - .loc 1 0 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:41 - movq %rbx, %r13 -Ltmp142: - ##DEBUG_VALUE: luaV_finishget:tm <- $r13 - .loc 1 187 23 ## /Users/dylan/github/ravi/src/lvm.c:187:23 - cmpl $2000, %r14d ## imm = 0x7D0 -Ltmp143: - .loc 1 187 3 ## /Users/dylan/github/ravi/src/lvm.c:187:3 - jb LBB5_1 - jmp LBB5_16 -Ltmp144: - .p2align 4, 0x90 -LBB5_18: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 209 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:209:9 - movq (%rbx), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB5_31 -Ltmp145: -## %bb.19: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r15, %rsi - callq _luaH_get -Ltmp146: - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - cmpw $0, 8(%rax) -Ltmp147: - .loc 1 209 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:209:9 - jne LBB5_20 -Ltmp148: -## %bb.15: ## in Loop: Header=BB5_1 Depth=1 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - .loc 1 187 41 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:187:41 - incl %r14d -Ltmp149: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - .loc 1 0 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:41 - movq %rbx, %r13 -Ltmp150: - ##DEBUG_VALUE: luaV_finishget:tm <- $r13 - .loc 1 187 23 ## /Users/dylan/github/ravi/src/lvm.c:187:23 - cmpl $2000, %r14d ## imm = 0x7D0 -Ltmp151: - .loc 1 187 3 ## /Users/dylan/github/ravi/src/lvm.c:187:3 - jb LBB5_1 -Ltmp152: -LBB5_16: - ##DEBUG_VALUE: luaV_finishget:tm <- $r13 - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 215 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:215:3 - leaq L_.str.15(%rip), %rsi - xorl %eax, %eax -Ltmp153: - movq %r12, %rdi - callq _luaG_runerror -Ltmp154: -LBB5_25: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 199 9 ## /Users/dylan/github/ravi/src/lvm.c:199:9 - movq -48(%rbp), %rax ## 8-byte Reload - movw $0, 8(%rax) -Ltmp155: -LBB5_26: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 216 1 ## /Users/dylan/github/ravi/src/lvm.c:216:1 - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp156: - popq %r13 - popq %r14 -Ltmp157: - popq %r15 -Ltmp158: - popq %rbp - retq -LBB5_17: -Ltmp159: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 205 7 ## /Users/dylan/github/ravi/src/lvm.c:205:7 - movl $1, %r9d - movq %r12, %rdi - movq %rbx, %rsi - movq %r13, %rdx - movq %r15, %rcx - movq -48(%rbp), %r8 ## 8-byte Reload - addq $8, %rsp - popq %rbx -Ltmp160: - popq %r12 -Ltmp161: - popq %r13 - popq %r14 -Ltmp162: - popq %r15 -Ltmp163: - popq %rbp - jmp _luaT_callTM ## TAILCALL -Ltmp164: -LBB5_20: - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 210 7 ## /Users/dylan/github/ravi/src/lvm.c:210:7 - movq (%rax), %rcx - movq -48(%rbp), %rdx ## 8-byte Reload - movq %rcx, (%rdx) - movzwl 8(%rax), %eax -Ltmp165: - movw %ax, 8(%rdx) - testw %ax, %ax - jns LBB5_26 -Ltmp166: -## %bb.21: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - jne LBB5_24 -Ltmp167: -## %bb.22: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testq %r12, %r12 - je LBB5_26 -Ltmp168: -## %bb.23: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movb 9(%rcx), %al - xorb $3, %al - movq 24(%r12), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - jne LBB5_26 -Ltmp169: -LBB5_24: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $210, %edx - callq ___assert_rtn -Ltmp170: -LBB5_28: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:slot <- $rax - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 196 7 ## /Users/dylan/github/ravi/src/lvm.c:196:7 - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.10(%rip), %rcx - movl $196, %edx - callq ___assert_rtn -Ltmp171: -LBB5_29: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 197 12 ## /Users/dylan/github/ravi/src/lvm.c:197:12 - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.11(%rip), %rcx - movl $197, %edx - callq ___assert_rtn -Ltmp172: -LBB5_30: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $197, %edx - callq ___assert_rtn -Ltmp173: -LBB5_31: - ##DEBUG_VALUE: luaV_finishget:t <- $rbx - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 209 9 ## /Users/dylan/github/ravi/src/lvm.c:209:9 - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $209, %edx - callq ___assert_rtn -Ltmp174: -LBB5_27: - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 189 7 ## /Users/dylan/github/ravi/src/lvm.c:189:7 - leaq L___func__.luaV_finishget(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.8(%rip), %rcx - movl $189, %edx - callq ___assert_rtn -Ltmp175: -LBB5_4: - ##DEBUG_VALUE: luaV_finishget:tm <- $rbx - ##DEBUG_VALUE: luaV_finishget:loop <- $r14d - ##DEBUG_VALUE: luaV_finishget:t <- $r13 - ##DEBUG_VALUE: luaV_finishget:L <- $r12 - ##DEBUG_VALUE: luaV_finishget:key <- $r15 - ##DEBUG_VALUE: luaV_finishget:val <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 192 9 ## /Users/dylan/github/ravi/src/lvm.c:192:9 - leaq L_.str.9(%rip), %rdx - movq %r12, %rdi - movq %r13, %rsi - callq _luaG_typeerror -Ltmp176: -Lfunc_end5: - .cfi_endproc - ## -- End function - .globl _luaV_finishset ## -- Begin function luaV_finishset - .p2align 4, 0x90 -_luaV_finishset: ## @luaV_finishset -Lfunc_begin6: - .loc 1 227 0 ## /Users/dylan/github/ravi/src/lvm.c:227:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishset:L <- $rdi - ##DEBUG_VALUE: luaV_finishset:t <- $rsi - ##DEBUG_VALUE: luaV_finishset:key <- $rdx - ##DEBUG_VALUE: luaV_finishset:val <- $rcx - ##DEBUG_VALUE: luaV_finishset:slot <- $r8 -Ltmp177: - ##DEBUG_VALUE: io2 <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - movq %r8, %r15 - movq %rcx, -56(%rbp) ## 8-byte Spill -Ltmp178: - ##DEBUG_VALUE: io2 <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq %rdx, -64(%rbp) ## 8-byte Spill -Ltmp179: - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - movq %rsi, %r13 - movq %rdi, -48(%rbp) ## 8-byte Spill -Ltmp180: - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - xorl %r12d, %r12d -Ltmp181: - ##DEBUG_VALUE: luaV_finishset:loop <- 0 - .p2align 4, 0x90 -LBB6_1: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:slot <- $r8 - ##DEBUG_VALUE: luaV_finishset:t <- $rsi - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - .loc 1 231 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:231:14 - testq %r15, %r15 -Ltmp182: - .loc 1 231 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:231:9 - je LBB6_19 -Ltmp183: -## %bb.2: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 232 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:232:18 - movzwl 8(%r13), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB6_41 -Ltmp184: -## %bb.3: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq (%r13), %r14 - movzbl 8(%r14), %eax - andb $15, %al - cmpb $5, %al - jne LBB6_42 -Ltmp185: -## %bb.4: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 233 7 ## /Users/dylan/github/ravi/src/lvm.c:233:7 - cmpw $0, 8(%r15) - jne LBB6_43 -Ltmp186: -## %bb.5: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 234 12 ## /Users/dylan/github/ravi/src/lvm.c:234:12 - movq 40(%r14), %rdi - testq %rdi, %rdi - je LBB6_9 -Ltmp187: -## %bb.6: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - testb $2, 10(%rdi) - jne LBB6_9 -Ltmp188: -## %bb.7: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %rax ## 8-byte Reload - movq 24(%rax), %rax - movq 232(%rax), %rdx - movl $1, %esi - callq _luaT_gettm -Ltmp189: - .loc 1 235 14 ## /Users/dylan/github/ravi/src/lvm.c:235:14 - testq %rax, %rax -Ltmp190: - .loc 1 235 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:235:11 - je LBB6_9 -Ltmp191: -## %bb.8: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rax, %rbx -Ltmp192: - ##DEBUG_VALUE: tm <- $rbx - movq %rax, %r14 - addq $8, %r14 -Ltmp193: - .loc 1 251 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:251:9 - movzwl 8(%rax), %eax -Ltmp194: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - .loc 1 251 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:251:9 - andb $15, %al - cmpb $5, %al - je LBB6_27 -Ltmp195: -LBB6_22: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - cmpb $6, %al - je LBB6_26 -Ltmp196: -## %bb.23: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - xorl %r15d, %r15d -Ltmp197: - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - .loc 1 229 41 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:229:41 - incl %r12d -Ltmp198: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - .loc 1 0 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:41 - movq %rbx, %r13 -Ltmp199: - ##DEBUG_VALUE: tm <- $r13 - .loc 1 229 23 ## /Users/dylan/github/ravi/src/lvm.c:229:23 - cmpl $2000, %r12d ## imm = 0x7D0 -Ltmp200: - .loc 1 229 3 ## /Users/dylan/github/ravi/src/lvm.c:229:3 - jb LBB6_1 - jmp LBB6_25 -Ltmp201: - .p2align 4, 0x90 -LBB6_19: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 247 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:247:11 - movl $1, %edx - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _luaT_gettmbyobj -Ltmp202: - movq %rax, %rbx -Ltmp203: - ##DEBUG_VALUE: tm <- $rbx - movzwl 8(%rax), %eax - testw %ax, %ax -Ltmp204: - .loc 1 247 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:247:11 - je LBB6_45 -Ltmp205: -## %bb.20: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rbx, %r14 - addq $8, %r14 -Ltmp206: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - .loc 1 251 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:251:9 - andb $15, %al - cmpb $5, %al - jne LBB6_22 -Ltmp207: -LBB6_27: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 256 9 ## /Users/dylan/github/ravi/src/lvm.c:256:9 - movq (%rbx), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB6_46 -Ltmp208: -## %bb.28: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq -64(%rbp), %rsi ## 8-byte Reload - callq _luaH_get -Ltmp209: - movq %rax, %r15 -Ltmp210: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - cmpw $0, 8(%rax) -Ltmp211: - .loc 1 256 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:256:9 - jne LBB6_29 -Ltmp212: -## %bb.24: ## in Loop: Header=BB6_1 Depth=1 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - .loc 1 229 41 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:229:41 - incl %r12d -Ltmp213: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - .loc 1 0 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:41 - movq %rbx, %r13 -Ltmp214: - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - .loc 1 229 23 ## /Users/dylan/github/ravi/src/lvm.c:229:23 - cmpl $2000, %r12d ## imm = 0x7D0 -Ltmp215: - .loc 1 229 3 ## /Users/dylan/github/ravi/src/lvm.c:229:3 - jb LBB6_1 -Ltmp216: -LBB6_25: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 262 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:262:3 - leaq L_.str.17(%rip), %rsi - xorl %eax, %eax - movq -48(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp217: -LBB6_9: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 236 18 ## /Users/dylan/github/ravi/src/lvm.c:236:18 - cmpq _luaO_nilobject_@GOTPCREL(%rip), %r15 -Ltmp218: - .loc 1 236 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:236:13 - jne LBB6_11 -Ltmp219: -## %bb.10: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 237 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:237:18 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r14, %rsi - movq -64(%rbp), %rdx ## 8-byte Reload - callq _luaH_newkey -Ltmp220: - movq %rax, %r15 -Ltmp221: - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 -LBB6_11: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - .loc 1 0 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq -56(%rbp), %rsi ## 8-byte Reload -Ltmp222: - ##DEBUG_VALUE: io1 <- $r15 - .loc 1 239 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:239:9 - movq (%rsi), %rax - movq %rax, (%r15) - movzwl 8(%rsi), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB6_15 -Ltmp223: -## %bb.12: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB6_44 -Ltmp224: -## %bb.13: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - cmpq $0, -48(%rbp) ## 8-byte Folded Reload - je LBB6_15 -Ltmp225: -## %bb.14: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movb 9(%rax), %al - xorb $3, %al - movq -48(%rbp), %rcx ## 8-byte Reload - movq 24(%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB6_44 -Ltmp226: -LBB6_15: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 240 9 ## /Users/dylan/github/ravi/src/lvm.c:240:9 - movb $0, 10(%r14) - .loc 1 241 9 ## /Users/dylan/github/ravi/src/lvm.c:241:9 - cmpw $0, 8(%rsi) - jns LBB6_40 -Ltmp227: -## %bb.16: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - testb $4, 9(%r14) - je LBB6_40 -Ltmp228: -## %bb.17: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq (%rsi), %rax - testb $3, 9(%rax) - je LBB6_40 -Ltmp229: -## %bb.18: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r14, %rsi - jmp LBB6_39 -Ltmp230: -LBB6_26: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 252 7 ## /Users/dylan/github/ravi/src/lvm.c:252:7 - xorl %r9d, %r9d - movq -48(%rbp), %rdi ## 8-byte Reload - movq %rbx, %rsi - movq %r13, %rdx - movq -64(%rbp), %rcx ## 8-byte Reload - movq -56(%rbp), %r8 ## 8-byte Reload - addq $24, %rsp - popq %rbx -Ltmp231: - popq %r12 -Ltmp232: - popq %r13 - popq %r14 - popq %r15 -Ltmp233: - popq %rbp - jmp _luaT_callTM ## TAILCALL -Ltmp234: -LBB6_29: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq -56(%rbp), %rdi ## 8-byte Reload -Ltmp235: - .loc 1 257 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:257:7 - movq (%rdi), %rax - movq %rax, (%r15) - movzwl 8(%rdi), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB6_33 -Ltmp236: -## %bb.30: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB6_47 -Ltmp237: -## %bb.31: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - cmpq $0, -48(%rbp) ## 8-byte Folded Reload - je LBB6_33 -Ltmp238: -## %bb.32: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movb 9(%rax), %al - xorb $3, %al - movq -48(%rbp), %rcx ## 8-byte Reload - movq 24(%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB6_47 -Ltmp239: -LBB6_33: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 257 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:257:7 - cmpw $0, 8(%rdi) - jns LBB6_40 -Ltmp240: -## %bb.34: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movzwl (%r14), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB6_48 -Ltmp241: -## %bb.35: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq (%rbx), %rsi - movb 8(%rsi), %al - andb $15, %al - cmpb $5, %al - jne LBB6_49 -Ltmp242: -## %bb.36: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - testb $4, 9(%rsi) - je LBB6_40 -Ltmp243: -## %bb.37: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq (%rdi), %rax - testb $3, 9(%rax) - je LBB6_40 -Ltmp244: -## %bb.38: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %rdi ## 8-byte Reload -Ltmp245: -LBB6_39: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 0 7 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp246: - popq %r13 - popq %r14 - popq %r15 -Ltmp247: - popq %rbp - jmp _luaC_barrierback_ ## TAILCALL -Ltmp248: -LBB6_40: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 263 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:263:1 - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp249: - popq %r13 - popq %r14 - popq %r15 -Ltmp250: - popq %rbp - retq -LBB6_41: -Ltmp251: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 232 18 ## /Users/dylan/github/ravi/src/lvm.c:232:18 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.11(%rip), %rcx - movl $232, %edx - callq ___assert_rtn -Ltmp252: -LBB6_42: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $232, %edx - callq ___assert_rtn -Ltmp253: -LBB6_43: - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 233 7 ## /Users/dylan/github/ravi/src/lvm.c:233:7 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.10(%rip), %rcx - movl $233, %edx - callq ___assert_rtn -Ltmp254: -LBB6_46: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 256 9 ## /Users/dylan/github/ravi/src/lvm.c:256:9 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $256, %edx ## imm = 0x100 - callq ___assert_rtn -Ltmp255: -LBB6_45: - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 248 9 ## /Users/dylan/github/ravi/src/lvm.c:248:9 - leaq L_.str.9(%rip), %rdx - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r13, %rsi - callq _luaG_typeerror -Ltmp256: -LBB6_44: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $r13 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 239 9 ## /Users/dylan/github/ravi/src/lvm.c:239:9 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $239, %edx - callq ___assert_rtn -Ltmp257: -LBB6_47: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 257 7 ## /Users/dylan/github/ravi/src/lvm.c:257:7 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $257, %edx ## imm = 0x101 - callq ___assert_rtn -Ltmp258: -LBB6_48: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 257 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:257:7 - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.11(%rip), %rcx - movl $257, %edx ## imm = 0x101 - callq ___assert_rtn -Ltmp259: -LBB6_49: - ##DEBUG_VALUE: luaV_finishset:t <- $rbx - ##DEBUG_VALUE: tm <- $rbx - ##DEBUG_VALUE: luaV_finishset:loop <- $r12d - ##DEBUG_VALUE: luaV_finishset:slot <- $r15 - ##DEBUG_VALUE: luaV_finishset:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:key <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_finishset:val <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_finishset(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $257, %edx ## imm = 0x101 - callq ___assert_rtn -Ltmp260: -Lfunc_end6: - .cfi_endproc - ## -- End function - .globl _luaV_gettable ## -- Begin function luaV_gettable - .p2align 4, 0x90 -_luaV_gettable: ## @luaV_gettable -Lfunc_begin7: - .loc 1 493 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:493:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_gettable:L <- $rdi - ##DEBUG_VALUE: luaV_gettable:t <- $rsi - ##DEBUG_VALUE: luaV_gettable:key <- $rdx - ##DEBUG_VALUE: luaV_gettable:val <- $rcx -Ltmp261: - ##DEBUG_VALUE: io <- $rcx - ##DEBUG_VALUE: io <- $rcx - ##DEBUG_VALUE: io1 <- $rcx - movq %rcx, %r15 -Ltmp262: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - movq %rdx, %r12 - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp263: - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - .loc 1 494 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movzwl 8(%rsi), %eax -Ltmp264: - .loc 1 494 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB7_1 -Ltmp265: -## %bb.8: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp266: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jne LBB7_13 -Ltmp267: -## %bb.9: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB7_29 -Ltmp268: -## %bb.10: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movq (%r12), %rsi -Ltmp269: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp270: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jae LBB7_12 -Ltmp271: -## %bb.11: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp272: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpw $0, 8(%rax) -Ltmp273: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jne LBB7_16 - jmp LBB7_21 -Ltmp274: -LBB7_13: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB7_29 -Ltmp275: -## %bb.14: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movq %r12, %rsi - callq _luaH_get -Ltmp276: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpw $0, 8(%rax) -Ltmp277: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - je LBB7_21 -Ltmp278: -LBB7_16: - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%rax), %rcx - movq %rcx, (%r15) - movzwl 8(%rax), %eax -Ltmp279: - movw %ax, 8(%r15) - testw %ax, %ax - jns LBB7_7 -Ltmp280: -## %bb.17: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - jne LBB7_20 -Ltmp281: -## %bb.18: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - testq %r14, %r14 - je LBB7_7 -Ltmp282: -## %bb.19: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movb 9(%rcx), %al - xorb $3, %al - movq 24(%r14), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB7_20 -Ltmp283: -LBB7_7: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 495 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:495:1 - popq %rbx -Ltmp284: - popq %r12 -Ltmp285: - popq %r14 -Ltmp286: - popq %r15 -Ltmp287: - popq %rbp - retq -LBB7_1: -Ltmp288: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB7_2 -Ltmp289: -## %bb.23: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp290: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jne LBB7_30 -Ltmp291: -## %bb.24: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movq (%rbx), %rax -Ltmp292: - ##DEBUG_VALUE: h <- $rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB7_29 -Ltmp293: -## %bb.25: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%r12), %rcx -Ltmp294: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpl %ecx, 64(%rax) -Ltmp295: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jbe LBB7_27 -Ltmp296: -## %bb.26: - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movl %ecx, %ecx -Ltmp297: - movq 56(%rax), %rax -Ltmp298: - ##DEBUG_VALUE: data <- $rax - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%rax,%rcx,8), %rax -Ltmp299: - movq %rax, (%r15) - movw $3, 8(%r15) - jmp LBB7_7 -Ltmp300: -LBB7_2: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB7_28 -Ltmp301: -## %bb.3: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp302: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jne LBB7_30 -Ltmp303: -## %bb.4: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movq (%rbx), %rax -Ltmp304: - ##DEBUG_VALUE: h <- $rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB7_29 -Ltmp305: -## %bb.5: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%r12), %rcx -Ltmp306: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpl %ecx, 64(%rax) -Ltmp307: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jbe LBB7_27 -Ltmp308: -## %bb.6: - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - movl %ecx, %ecx -Ltmp309: - movq 56(%rax), %rax -Ltmp310: - ##DEBUG_VALUE: data <- $rax - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq (%rax,%rcx,8), %rax -Ltmp311: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB7_7 -Ltmp312: -LBB7_12: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - callq _luaH_getint -Ltmp313: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - cmpw $0, 8(%rax) -Ltmp314: - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - jne LBB7_16 -Ltmp315: -LBB7_21: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx - movq %rax, %r8 - jmp LBB7_22 -Ltmp316: -LBB7_28: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx -Ltmp317: -LBB7_22: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - popq %rbx -Ltmp318: - popq %r12 -Ltmp319: - popq %r14 -Ltmp320: - popq %r15 -Ltmp321: - popq %rbp - jmp _luaV_finishget ## TAILCALL -Ltmp322: -LBB7_29: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - leaq L___func__.luaV_gettable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $494, %edx ## imm = 0x1EE - callq ___assert_rtn -Ltmp323: -LBB7_20: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - leaq L___func__.luaV_gettable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $494, %edx ## imm = 0x1EE - callq ___assert_rtn -Ltmp324: -LBB7_30: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - leaq L_.str.9(%rip), %rdx - movq %r14, %rdi - movq %r12, %rsi - callq _luaG_typeerror -Ltmp325: -LBB7_27: - ##DEBUG_VALUE: luaV_gettable:L <- $r14 - ##DEBUG_VALUE: luaV_gettable:t <- $rbx - ##DEBUG_VALUE: luaV_gettable:key <- $r12 - ##DEBUG_VALUE: luaV_gettable:val <- $r15 - .loc 1 494 3 ## /Users/dylan/github/ravi/src/lvm.c:494:3 - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp326: -Lfunc_end7: - .cfi_endproc - ## -- End function - .globl _luaV_settable ## -- Begin function luaV_settable - .p2align 4, 0x90 -_luaV_settable: ## @luaV_settable -Lfunc_begin8: - .loc 1 504 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:504:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_settable:L <- $rdi - ##DEBUG_VALUE: luaV_settable:t <- $rsi - ##DEBUG_VALUE: luaV_settable:key <- $rdx - ##DEBUG_VALUE: luaV_settable:val <- $rcx -Ltmp327: - ##DEBUG_VALUE: luaV_tointeger_:obj <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - movq %rcx, %r15 -Ltmp328: - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: luaV_tointeger_:obj <- $r15 - movq %rdx, %r12 - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp329: - ##DEBUG_VALUE: luaV_settable:val <- $r15 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - .loc 1 505 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%rsi), %eax -Ltmp330: - .loc 1 505 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB8_1 -Ltmp331: -## %bb.8: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp332: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jne LBB8_13 -Ltmp333: -## %bb.9: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB8_53 -Ltmp334: -## %bb.10: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq (%r12), %rsi -Ltmp335: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp336: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jae LBB8_12 -Ltmp337: -## %bb.11: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp338: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpw $0, 8(%rax) -Ltmp339: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jne LBB8_16 -Ltmp340: -LBB8_26: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx - movq %rax, %r8 -Ltmp341: -LBB8_27: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - addq $16, %rsp - popq %rbx -Ltmp342: - popq %r12 -Ltmp343: - popq %r14 -Ltmp344: - popq %r15 -Ltmp345: - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp346: -LBB8_13: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB8_53 -Ltmp347: -## %bb.14: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq %r12, %rsi - callq _luaH_get -Ltmp348: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpw $0, 8(%rax) -Ltmp349: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - je LBB8_26 -Ltmp350: -LBB8_16: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r15), %rcx - movq %rcx, (%rax) - movzwl 8(%r15), %edx - movw %dx, 8(%rax) - testw %dx, %dx - jns LBB8_20 -Ltmp351: -## %bb.17: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - andl $127, %edx - movzbl 8(%rcx), %eax -Ltmp352: - cmpl %eax, %edx - jne LBB8_54 -Ltmp353: -## %bb.18: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - testq %r14, %r14 - je LBB8_20 -Ltmp354: -## %bb.19: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movb 9(%rcx), %al - xorb $3, %al - movq 24(%r14), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB8_54 -Ltmp355: -LBB8_20: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpw $0, 8(%r15) - jns LBB8_52 -Ltmp356: -## %bb.21: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movzwl 8(%rbx), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB8_55 -Ltmp357: -## %bb.22: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq (%rbx), %rsi - movb 8(%rsi), %al - andb $15, %al - cmpb $5, %al - jne LBB8_53 -Ltmp358: -## %bb.23: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - testb $4, 9(%rsi) - je LBB8_52 -Ltmp359: -## %bb.24: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq (%r15), %rax - testb $3, 9(%rax) - je LBB8_52 -Ltmp360: -## %bb.25: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq %r14, %rdi - addq $16, %rsp - popq %rbx -Ltmp361: - popq %r12 -Ltmp362: - popq %r14 -Ltmp363: - popq %r15 -Ltmp364: - popq %rbp - jmp _luaC_barrierback_ ## TAILCALL -Ltmp365: -LBB8_1: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB8_2 -Ltmp366: -## %bb.28: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%rbx), %rbx -Ltmp367: - ##DEBUG_VALUE: h <- $rbx - movb 8(%rbx), %al - andb $15, %al - cmpb $5, %al - jne LBB8_53 -Ltmp368: -## %bb.29: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp369: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jne LBB8_56 -Ltmp370: -## %bb.30: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r15), %eax -Ltmp371: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl $19, %eax - je LBB8_36 -Ltmp372: -## %bb.31: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB8_39 -Ltmp373: -## %bb.32: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r12), %rax - movl %eax, %edx -Ltmp374: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl %eax, 64(%rbx) -Ltmp375: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - ja LBB8_33 -Ltmp376: -## %bb.34: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movsd (%r15), %xmm0 ## xmm0 = mem[0],zero - jmp LBB8_35 -Ltmp377: -LBB8_2: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB8_50 -Ltmp378: -## %bb.3: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%rbx), %rbx -Ltmp379: - ##DEBUG_VALUE: h <- $rbx - movb 8(%rbx), %al - andb $15, %al - cmpb $5, %al - jne LBB8_53 -Ltmp380: -## %bb.4: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r12), %eax - cmpl $19, %eax -Ltmp381: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jne LBB8_56 -Ltmp382: -## %bb.5: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp383: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jne LBB8_45 -Ltmp384: -## %bb.6: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r12), %rax - movl %eax, %edx -Ltmp385: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl %eax, 64(%rbx) -Ltmp386: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jbe LBB8_7 -Ltmp387: -LBB8_33: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq 56(%rbx), %rax -Ltmp388: - ##DEBUG_VALUE: data <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r15), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB8_52 -Ltmp389: -LBB8_12: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - callq _luaH_getint -Ltmp390: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpw $0, 8(%rax) - jne LBB8_16 - jmp LBB8_26 -Ltmp391: -LBB8_50: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx - jmp LBB8_27 -Ltmp392: -LBB8_36: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r12), %rax - movl %eax, %edx -Ltmp393: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl %eax, 64(%rbx) -Ltmp394: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jbe LBB8_38 -Ltmp395: -## %bb.37: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq 56(%rbx), %rax -Ltmp396: - ##DEBUG_VALUE: data <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cvtsi2sdq (%r15), %xmm0 - movsd %xmm0, (%rax,%rdx,8) - jmp LBB8_52 -Ltmp397: -LBB8_39: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq $0, -40(%rbp) - leaq -40(%rbp), %rsi -Ltmp398: - ##DEBUG_VALUE: d <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp399: - testl %eax, %eax -Ltmp400: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - je LBB8_43 -Ltmp401: -## %bb.40: - ##DEBUG_VALUE: d <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r12), %eax - cmpl $19, %eax - jne LBB8_57 -Ltmp402: -## %bb.41: - ##DEBUG_VALUE: d <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq (%r12), %rax - movl %eax, %edx -Ltmp403: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl %eax, 64(%rbx) -Ltmp404: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - ja LBB8_42 -Ltmp405: -## %bb.51: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movsd -40(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp406: - ##DEBUG_VALUE: d <- $xmm0 - movq %r14, %rdi - movq %rbx, %rsi - callq _raviH_set_float -Ltmp407: - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - jmp LBB8_52 -Ltmp408: -LBB8_45: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - ##DEBUG_VALUE: i <- 0 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq $0, -40(%rbp) - leaq -40(%rbp), %rsi -Ltmp409: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 40, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp410: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - testl %eax, %eax -Ltmp411: - .loc 1 505 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - je LBB8_49 -Ltmp412: -## %bb.46: - ##DEBUG_VALUE: i <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movzwl 8(%r12), %eax - cmpl $19, %eax - jne LBB8_57 -Ltmp413: -## %bb.47: - ##DEBUG_VALUE: i <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - movq (%r12), %rax - movl %eax, %edx -Ltmp414: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cmpl %eax, 64(%rbx) -Ltmp415: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - jbe LBB8_48 -Ltmp416: -LBB8_42: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq 56(%rbx), %rax -Ltmp417: - ##DEBUG_VALUE: data <- $rax - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq -40(%rbp), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB8_52 -Ltmp418: -LBB8_38: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - cvtsi2sdq (%r15), %xmm0 -Ltmp419: -LBB8_35: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq %r14, %rdi - movq %rbx, %rsi - addq $16, %rsp - popq %rbx -Ltmp420: - popq %r12 -Ltmp421: - popq %r14 -Ltmp422: - popq %r15 -Ltmp423: - popq %rbp - jmp _raviH_set_float ## TAILCALL -Ltmp424: -LBB8_7: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq (%r15), %rcx - movq %r14, %rdi - movq %rbx, %rsi - addq $16, %rsp - popq %rbx -Ltmp425: - popq %r12 -Ltmp426: - popq %r14 -Ltmp427: - popq %r15 -Ltmp428: - popq %rbp - jmp _raviH_set_int ## TAILCALL -Ltmp429: -LBB8_48: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - movq -40(%rbp), %rcx -Ltmp430: - ##DEBUG_VALUE: i <- $rcx - movq %r14, %rdi - movq %rbx, %rsi - callq _raviH_set_int -Ltmp431: -LBB8_52: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 506 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:506:1 - addq $16, %rsp - popq %rbx - popq %r12 -Ltmp432: - popq %r14 -Ltmp433: - popq %r15 -Ltmp434: - popq %rbp - retq -LBB8_53: -Ltmp435: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L___func__.luaV_settable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $505, %edx ## imm = 0x1F9 - callq ___assert_rtn -Ltmp436: -LBB8_54: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L___func__.luaV_settable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $505, %edx ## imm = 0x1F9 - callq ___assert_rtn -Ltmp437: -LBB8_55: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:t <- $rbx - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L___func__.luaV_settable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.11(%rip), %rcx - movl $505, %edx ## imm = 0x1F9 - callq ___assert_rtn -Ltmp438: -LBB8_56: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L_.str.9(%rip), %rdx - movq %r14, %rdi - movq %r12, %rsi - callq _luaG_typeerror -Ltmp439: -LBB8_57: - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L___func__.luaV_settable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.18(%rip), %rcx - movl $505, %edx ## imm = 0x1F9 - callq ___assert_rtn -Ltmp440: -LBB8_43: - ##DEBUG_VALUE: d <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L_.str.22(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp441: -LBB8_49: - ##DEBUG_VALUE: i <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: luaV_settable:L <- $r14 - ##DEBUG_VALUE: luaV_settable:key <- $r12 - ##DEBUG_VALUE: luaV_settable:val <- $r15 - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - leaq L_.str.23(%rip), %rsi -Ltmp442: - .loc 1 505 3 ## /Users/dylan/github/ravi/src/lvm.c:505:3 - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp443: -Lfunc_end8: - .cfi_endproc - ## -- End function - .globl _luaV_lessthan ## -- Begin function luaV_lessthan - .p2align 4, 0x90 -_luaV_lessthan: ## @luaV_lessthan -Lfunc_begin9: - .loc 1 634 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:634:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_lessthan:L <- $rdi - ##DEBUG_VALUE: luaV_lessthan:l <- $rsi - ##DEBUG_VALUE: luaV_lessthan:r <- $rdx - movq %rdx, %r15 - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp444: - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - .loc 1 636 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:636:7 - movb 8(%rsi), %al - .loc 1 636 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:636:21 - andb $15, %al - cmpb $4, %al - je LBB9_4 -Ltmp445: -## %bb.1: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - cmpb $3, %al - jne LBB9_19 -Ltmp446: -## %bb.2: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 636 24 ## /Users/dylan/github/ravi/src/lvm.c:636:24 - movzwl 8(%r15), %eax - andl $15, %eax - cmpl $3, %eax -Ltmp447: - .loc 1 636 7 ## /Users/dylan/github/ravi/src/lvm.c:636:7 - jne LBB9_19 -Ltmp448: -## %bb.3: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 637 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:637:12 - movq %rbx, %rdi - movq %r15, %rsi - popq %rbx -Ltmp449: - popq %r12 - popq %r14 -Ltmp450: - popq %r15 -Ltmp451: - popq %rbp - jmp _LTnum ## TAILCALL -Ltmp452: -LBB9_4: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 638 29 ## /Users/dylan/github/ravi/src/lvm.c:638:29 - movzwl 8(%r15), %eax - andl $15, %eax - cmpl $4, %eax -Ltmp453: - .loc 1 638 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:638:12 - jne LBB9_19 -Ltmp454: -## %bb.5: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 639 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:639:21 - movq (%rbx), %r14 -Ltmp455: - ##DEBUG_VALUE: l_strcmp:ls <- $r14 - movb 8(%r14), %dl - movl %edx, %eax - andb $15, %al - cmpb $4, %al - jne LBB9_21 -Ltmp456: -## %bb.6: - ##DEBUG_VALUE: l_strcmp:ls <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 639 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:639:33 - movq (%r15), %rax -Ltmp457: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movb 8(%rax), %bl -Ltmp458: - movl %ebx, %ecx - andb $15, %cl - cmpb $4, %cl - jne LBB9_22 -Ltmp459: -## %bb.7: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r14 - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 518 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:518:15 - cmpb $4, %dl - jne LBB9_9 -Ltmp460: -## %bb.8: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r14 - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - movzbl 11(%r14), %r15d -Ltmp461: - .loc 1 0 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:15 - addq $24, %r14 -Ltmp462: - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - .loc 1 519 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:519:19 - leaq 24(%rax), %r12 -Ltmp463: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 520 15 ## /Users/dylan/github/ravi/src/lvm.c:520:15 - cmpb $4, %bl - je LBB9_11 -Ltmp464: -LBB9_12: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movq 16(%rax), %rbx - jmp LBB9_13 -Ltmp465: -LBB9_19: - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 640 19 ## /Users/dylan/github/ravi/src/lvm.c:640:19 - movl $20, %ecx - movq %r14, %rdi - movq %rbx, %rsi - movq %r15, %rdx - callq _luaT_callorderTM -Ltmp466: - ##DEBUG_VALUE: luaV_lessthan:res <- $eax - .loc 1 640 53 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:640:53 - testl %eax, %eax -Ltmp467: - .loc 1 640 12 ## /Users/dylan/github/ravi/src/lvm.c:640:12 - js LBB9_23 -Ltmp468: -LBB9_20: - .loc 1 643 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:643:1 - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB9_9: -Ltmp469: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r14 - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 518 15 ## /Users/dylan/github/ravi/src/lvm.c:518:15 - movq 16(%r14), %r15 -Ltmp470: - .loc 1 0 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:15 - addq $24, %r14 -Ltmp471: - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - .loc 1 519 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:519:19 - leaq 24(%rax), %r12 -Ltmp472: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 520 15 ## /Users/dylan/github/ravi/src/lvm.c:520:15 - cmpb $4, %bl - jne LBB9_12 -Ltmp473: -LBB9_11: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movzbl 11(%rax), %ebx - jmp LBB9_13 -Ltmp474: - .p2align 4, 0x90 -LBB9_24: ## in Loop: Header=BB9_13 Depth=1 - ##DEBUG_VALUE: len <- $rax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - .loc 1 532 10 ## /Users/dylan/github/ravi/src/lvm.c:532:10 - leaq 1(%rax), %rcx -Ltmp475: - ##DEBUG_VALUE: len <- $rcx - .loc 1 533 9 ## /Users/dylan/github/ravi/src/lvm.c:533:9 - leaq 1(%r14,%rax), %r14 -Ltmp476: - ##DEBUG_VALUE: l_strcmp:l <- $r14 - .loc 1 533 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:533:20 - subq %rcx, %r15 -Ltmp477: - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - .loc 1 533 30 ## /Users/dylan/github/ravi/src/lvm.c:533:30 - leaq 1(%r12,%rax), %r12 -Ltmp478: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 533 41 ## /Users/dylan/github/ravi/src/lvm.c:533:41 - subq %rcx, %rbx -Ltmp479: -LBB9_13: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - .loc 1 522 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:522:16 - movq %r14, %rdi - movq %r12, %rsi - callq _strcoll -Ltmp480: - ##DEBUG_VALUE: temp <- $eax - .loc 1 523 14 ## /Users/dylan/github/ravi/src/lvm.c:523:14 - testl %eax, %eax -Ltmp481: - .loc 1 523 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:523:9 - jne LBB9_18 -Ltmp482: -## %bb.14: ## in Loop: Header=BB9_13 Depth=1 - ##DEBUG_VALUE: temp <- $eax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - .loc 1 526 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:526:20 - movq %r14, %rdi - callq _strlen -Ltmp483: - ##DEBUG_VALUE: len <- $rax - .loc 1 527 15 ## /Users/dylan/github/ravi/src/lvm.c:527:15 - cmpq %rbx, %rax -Ltmp484: - .loc 1 527 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:527:11 - je LBB9_15 -Ltmp485: -## %bb.16: ## in Loop: Header=BB9_13 Depth=1 - ##DEBUG_VALUE: len <- $rax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - cmpq %r15, %rax -Ltmp486: - .loc 1 529 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:529:16 - jne LBB9_24 -Ltmp487: -## %bb.17: - ##DEBUG_VALUE: len <- $rax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r14 - ##DEBUG_VALUE: l_strcmp:ll <- $r15 - .loc 1 0 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movl $-1, %eax -Ltmp488: -LBB9_18: - .loc 1 639 45 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:639:45 - shrl $31, %eax - jmp LBB9_20 -LBB9_15: - .loc 1 0 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:45 - xorl %eax, %eax - .loc 1 639 45 ## /Users/dylan/github/ravi/src/lvm.c:639:45 - shrl $31, %eax - jmp LBB9_20 -LBB9_23: -Ltmp489: - ##DEBUG_VALUE: luaV_lessthan:res <- $eax - ##DEBUG_VALUE: luaV_lessthan:L <- $r14 - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 641 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:641:5 - movq %r14, %rdi - movq %rbx, %rsi - movq %r15, %rdx - callq _luaG_ordererror -Ltmp490: -LBB9_21: - ##DEBUG_VALUE: luaV_lessthan:l <- $rbx - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 639 21 ## /Users/dylan/github/ravi/src/lvm.c:639:21 - leaq L___func__.luaV_lessthan(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.25(%rip), %rcx - movl $639, %edx ## imm = 0x27F - callq ___assert_rtn -Ltmp491: -LBB9_22: - ##DEBUG_VALUE: luaV_lessthan:r <- $r15 - .loc 1 639 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:639:33 - leaq L___func__.luaV_lessthan(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.27(%rip), %rcx - movl $639, %edx ## imm = 0x27F - callq ___assert_rtn -Ltmp492: -Lfunc_end9: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function LTnum -LCPI10_0: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 -LCPI10_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .p2align 4, 0x90 -_LTnum: ## @LTnum -Lfunc_begin10: - .loc 1 586 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:586:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: LTnum:l <- $rdi - ##DEBUG_VALUE: LTnum:l <- $rdi - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:r <- $rsi -Ltmp493: - .loc 1 587 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:587:3 - movzwl 8(%rdi), %ecx - movl %ecx, %eax - andl $15, %eax - cmpl $3, %eax - jne LBB10_26 -Ltmp494: -## %bb.1: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - movzwl 8(%rsi), %eax - movl %eax, %edx - andl $15, %edx - cmpl $3, %edx - jne LBB10_26 -Ltmp495: -## %bb.2: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 588 7 ## /Users/dylan/github/ravi/src/lvm.c:588:7 - movzwl %cx, %ecx - cmpl $19, %ecx - jne LBB10_3 -Ltmp496: -## %bb.5: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 589 22 ## /Users/dylan/github/ravi/src/lvm.c:589:22 - movq (%rdi), %rcx -Ltmp497: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTintfloat:i <- $rcx - .loc 1 590 9 ## /Users/dylan/github/ravi/src/lvm.c:590:9 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB10_6 -Ltmp498: -## %bb.27: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 591 17 ## /Users/dylan/github/ravi/src/lvm.c:591:17 - cmpq (%rsi), %rcx - setl %al -Ltmp499: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp500: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp501: -LBB10_3: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 588 7 ## /Users/dylan/github/ravi/src/lvm.c:588:7 - cmpl $3, %ecx - jne LBB10_4 -Ltmp502: -## %bb.13: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 596 21 ## /Users/dylan/github/ravi/src/lvm.c:596:21 - movsd (%rdi), %xmm0 ## xmm0 = mem[0],zero -Ltmp503: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - .loc 1 597 9 ## /Users/dylan/github/ravi/src/lvm.c:597:9 - movzwl %ax, %eax - cmpl $3, %eax -Ltmp504: - .loc 1 597 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:597:9 - jne LBB10_15 -Ltmp505: -## %bb.14: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 598 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:598:14 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - seta %al - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp506: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp507: -LBB10_6: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 590 9 ## /Users/dylan/github/ravi/src/lvm.c:590:9 - cmpl $3, %eax - jne LBB10_28 -Ltmp508: -## %bb.7: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 593 29 ## /Users/dylan/github/ravi/src/lvm.c:593:29 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - movabsq $9007199254740992, %rax ## imm = 0x20000000000000 -Ltmp509: - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - .loc 1 551 8 ## /Users/dylan/github/ravi/src/lvm.c:551:8 - addq %rcx, %rax - movabsq $18014398509481985, %rdx ## imm = 0x40000000000001 - cmpq %rdx, %rax - jae LBB10_8 -Ltmp510: -## %bb.12: - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 560 10 ## /Users/dylan/github/ravi/src/lvm.c:560:10 - cvtsi2sdq %rcx, %xmm1 - ucomisd %xmm1, %xmm0 - seta %al -Ltmp511: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp512: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp513: -LBB10_15: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 599 14 ## /Users/dylan/github/ravi/src/lvm.c:599:14 - ucomisd %xmm0, %xmm0 -Ltmp514: - .loc 1 599 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:599:14 - jp LBB10_16 -Ltmp515: -## %bb.17: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 602 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:602:26 - cmpl $19, %eax - jne LBB10_29 -Ltmp516: -## %bb.18: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - movq (%rsi), %rcx - movabsq $9007199254740992, %rax ## imm = 0x20000000000000 -Ltmp517: - ##DEBUG_VALUE: LEintfloat:i <- $rcx - .loc 1 570 8 ## /Users/dylan/github/ravi/src/lvm.c:570:8 - addq %rcx, %rax - movabsq $18014398509481985, %rdx ## imm = 0x40000000000001 - cmpq %rdx, %rax - jae LBB10_19 -Ltmp518: -## %bb.23: - ##DEBUG_VALUE: LEintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 579 10 ## /Users/dylan/github/ravi/src/lvm.c:579:10 - cvtsi2sdq %rcx, %xmm1 - ucomisd %xmm1, %xmm0 - setae %al -Ltmp519: - .loc 1 602 14 ## /Users/dylan/github/ravi/src/lvm.c:602:14 - xorb $1, %al -Ltmp520: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp521: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp522: -LBB10_8: - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movb $1, %al -Ltmp523: - .loc 1 552 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:552:11 - ucomisd LCPI10_0(%rip), %xmm0 -Ltmp524: - .loc 1 552 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:552:9 - jae LBB10_25 -Ltmp525: -## %bb.9: - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 554 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:554:16 - ucomisd LCPI10_1(%rip), %xmm0 -Ltmp526: - .loc 1 554 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:554:14 - jbe LBB10_10 -Ltmp527: -## %bb.11: - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 555 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:555:19 - cvttsd2si %xmm0, %rax - .loc 1 555 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:555:17 - cmpq %rax, %rcx - setl %al -Ltmp528: -LBB10_25: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp529: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp530: -LBB10_16: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - xorl %eax, %eax -Ltmp531: - movzbl %al, %eax -Ltmp532: - .loc 1 604 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp533: -LBB10_19: - ##DEBUG_VALUE: LEintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 1 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movb $1, %al -Ltmp534: - .loc 1 571 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:571:11 - ucomisd LCPI10_0(%rip), %xmm0 -Ltmp535: - .loc 1 571 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:571:9 - jae LBB10_24 -Ltmp536: -## %bb.20: - ##DEBUG_VALUE: LEintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 573 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:573:16 - ucomisd LCPI10_1(%rip), %xmm0 -Ltmp537: - .loc 1 573 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:573:14 - jae LBB10_22 -Ltmp538: -## %bb.21: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - xorl %eax, %eax - .loc 1 602 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:602:14 - xorb $1, %al -Ltmp539: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp540: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp541: -LBB10_10: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - xorl %eax, %eax -Ltmp542: - movzbl %al, %eax -Ltmp543: - .loc 1 604 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp544: -LBB10_22: - ##DEBUG_VALUE: LEintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 574 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:574:20 - cvttsd2si %xmm0, %rax - .loc 1 574 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:574:17 - cmpq %rax, %rcx - setle %al -Ltmp545: -LBB10_24: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 602 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:602:14 - xorb $1, %al -Ltmp546: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp547: - .loc 1 604 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:604:1 - popq %rbp - retq -Ltmp548: -LBB10_26: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 587 3 ## /Users/dylan/github/ravi/src/lvm.c:587:3 - leaq L___func__.LTnum(%rip), %rdi -Ltmp549: - leaq L_.str(%rip), %rsi -Ltmp550: - leaq L_.str.187(%rip), %rcx - movl $587, %edx ## imm = 0x24B - callq ___assert_rtn -Ltmp551: -LBB10_4: - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 596 21 ## /Users/dylan/github/ravi/src/lvm.c:596:21 - leaq L___func__.LTnum(%rip), %rdi -Ltmp552: - leaq L_.str(%rip), %rsi -Ltmp553: - leaq L_.str.191(%rip), %rcx - movl $596, %edx ## imm = 0x254 - callq ___assert_rtn -Ltmp554: -LBB10_28: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 593 29 ## /Users/dylan/github/ravi/src/lvm.c:593:29 - leaq L___func__.LTnum(%rip), %rdi -Ltmp555: - leaq L_.str(%rip), %rsi -Ltmp556: - leaq L_.str.190(%rip), %rcx -Ltmp557: - movl $593, %edx ## imm = 0x251 - callq ___assert_rtn -Ltmp558: -LBB10_29: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTnum:r <- $rsi - ##DEBUG_VALUE: LTnum:l <- $rdi - .loc 1 602 26 ## /Users/dylan/github/ravi/src/lvm.c:602:26 - leaq L___func__.LTnum(%rip), %rdi -Ltmp559: - leaq L_.str(%rip), %rsi -Ltmp560: - leaq L_.str.189(%rip), %rcx - movl $602, %edx ## imm = 0x25A - callq ___assert_rtn -Ltmp561: -Lfunc_end10: - .cfi_endproc - ## -- End function - .globl _luaV_lessequal ## -- Begin function luaV_lessequal - .p2align 4, 0x90 -_luaV_lessequal: ## @luaV_lessequal -Lfunc_begin11: - .loc 1 654 0 ## /Users/dylan/github/ravi/src/lvm.c:654:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_lessequal:L <- $rdi - ##DEBUG_VALUE: luaV_lessequal:l <- $rsi - ##DEBUG_VALUE: luaV_lessequal:r <- $rdx - movq %rdx, %r14 - movq %rsi, %rbx - movq %rdi, %r15 -Ltmp562: - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - .loc 1 656 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:656:7 - movb 8(%rsi), %al - .loc 1 656 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:656:21 - andb $15, %al - cmpb $4, %al - je LBB11_4 -Ltmp563: -## %bb.1: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - cmpb $3, %al - jne LBB11_19 -Ltmp564: -## %bb.2: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 656 24 ## /Users/dylan/github/ravi/src/lvm.c:656:24 - movzwl 8(%r14), %eax - andl $15, %eax - cmpl $3, %eax -Ltmp565: - .loc 1 656 7 ## /Users/dylan/github/ravi/src/lvm.c:656:7 - jne LBB11_19 -Ltmp566: -## %bb.3: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 657 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:657:12 - movq %rbx, %rdi - movq %r14, %rsi - popq %rbx -Ltmp567: - popq %r12 - popq %r14 -Ltmp568: - popq %r15 -Ltmp569: - popq %rbp - jmp _LEnum ## TAILCALL -Ltmp570: -LBB11_4: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 658 29 ## /Users/dylan/github/ravi/src/lvm.c:658:29 - movzwl 8(%r14), %eax - andl $15, %eax - cmpl $4, %eax -Ltmp571: - .loc 1 658 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:658:12 - jne LBB11_19 -Ltmp572: -## %bb.5: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 659 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:659:21 - movq (%rbx), %r15 -Ltmp573: - ##DEBUG_VALUE: l_strcmp:ls <- $r15 - movb 8(%r15), %dl - movl %edx, %eax - andb $15, %al - cmpb $4, %al - jne LBB11_23 -Ltmp574: -## %bb.6: - ##DEBUG_VALUE: l_strcmp:ls <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 659 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:659:33 - movq (%r14), %rax -Ltmp575: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movb 8(%rax), %bl -Ltmp576: - movl %ebx, %ecx - andb $15, %cl - cmpb $4, %cl - jne LBB11_24 -Ltmp577: -## %bb.7: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r15 - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 518 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:518:15 - cmpb $4, %dl - jne LBB11_9 -Ltmp578: -## %bb.8: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r15 - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - movzbl 11(%r15), %r14d -Ltmp579: - .loc 1 0 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:15 - addq $24, %r15 -Ltmp580: - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - .loc 1 519 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:519:19 - leaq 24(%rax), %r12 -Ltmp581: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 520 15 ## /Users/dylan/github/ravi/src/lvm.c:520:15 - cmpb $4, %bl - je LBB11_11 -Ltmp582: -LBB11_12: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movq 16(%rax), %rbx - jmp LBB11_13 -Ltmp583: -LBB11_19: - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 660 19 ## /Users/dylan/github/ravi/src/lvm.c:660:19 - movl $21, %ecx - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaT_callorderTM -Ltmp584: - movl %eax, %ecx -Ltmp585: - ##DEBUG_VALUE: luaV_lessequal:res <- $ecx - .loc 1 660 53 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:660:53 - testl %eax, %eax -Ltmp586: - .loc 1 660 12 ## /Users/dylan/github/ravi/src/lvm.c:660:12 - jns LBB11_22 -Ltmp587: -## %bb.20: - ##DEBUG_VALUE: luaV_lessequal:res <- $ecx - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 663 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:663:8 - movq 32(%r15), %rax - .loc 1 663 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:663:23 - orw $128, 66(%rax) - .loc 1 664 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:664:11 - movl $20, %ecx -Ltmp588: - movq %r15, %rdi - movq %r14, %rsi - movq %rbx, %rdx - callq _luaT_callorderTM -Ltmp589: - ##DEBUG_VALUE: luaV_lessequal:res <- $eax - .loc 1 665 8 ## /Users/dylan/github/ravi/src/lvm.c:665:8 - movq 32(%r15), %rcx - .loc 1 665 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:665:23 - xorw $128, 66(%rcx) -Ltmp590: - .loc 1 666 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:666:13 - testl %eax, %eax -Ltmp591: - .loc 1 666 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:666:9 - js LBB11_25 -Ltmp592: -## %bb.21: - ##DEBUG_VALUE: luaV_lessequal:res <- $eax - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 668 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:668:12 - sete %al -Ltmp593: - movzbl %al, %ecx - jmp LBB11_22 -Ltmp594: -LBB11_9: - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:ls <- $r15 - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 518 15 ## /Users/dylan/github/ravi/src/lvm.c:518:15 - movq 16(%r15), %r14 -Ltmp595: - .loc 1 0 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:15 - addq $24, %r15 -Ltmp596: - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - .loc 1 519 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:519:19 - leaq 24(%rax), %r12 -Ltmp597: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 520 15 ## /Users/dylan/github/ravi/src/lvm.c:520:15 - cmpb $4, %bl - jne LBB11_12 -Ltmp598: -LBB11_11: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - movzbl 11(%rax), %ebx - jmp LBB11_13 -Ltmp599: - .p2align 4, 0x90 -LBB11_26: ## in Loop: Header=BB11_13 Depth=1 - ##DEBUG_VALUE: len <- $rcx - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - .loc 1 532 10 ## /Users/dylan/github/ravi/src/lvm.c:532:10 - leaq 1(%rcx), %rax -Ltmp600: - ##DEBUG_VALUE: len <- $rax - .loc 1 533 9 ## /Users/dylan/github/ravi/src/lvm.c:533:9 - leaq 1(%r15,%rcx), %r15 -Ltmp601: - ##DEBUG_VALUE: l_strcmp:l <- $r15 - .loc 1 533 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:533:20 - subq %rax, %r14 -Ltmp602: - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - .loc 1 533 30 ## /Users/dylan/github/ravi/src/lvm.c:533:30 - leaq 1(%r12,%rcx), %r12 -Ltmp603: - ##DEBUG_VALUE: l_strcmp:r <- $r12 - .loc 1 533 41 ## /Users/dylan/github/ravi/src/lvm.c:533:41 - subq %rax, %rbx -Ltmp604: -LBB11_13: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:rs <- $rax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - .loc 1 522 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:522:16 - movq %r15, %rdi - movq %r12, %rsi - callq _strcoll -Ltmp605: - ##DEBUG_VALUE: temp <- $eax - .loc 1 523 14 ## /Users/dylan/github/ravi/src/lvm.c:523:14 - testl %eax, %eax -Ltmp606: - .loc 1 523 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:523:9 - jne LBB11_18 -Ltmp607: -## %bb.14: ## in Loop: Header=BB11_13 Depth=1 - ##DEBUG_VALUE: temp <- $eax - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - .loc 1 526 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:526:20 - movq %r15, %rdi - callq _strlen -Ltmp608: - movq %rax, %rcx -Ltmp609: - ##DEBUG_VALUE: len <- $rcx - .loc 1 527 15 ## /Users/dylan/github/ravi/src/lvm.c:527:15 - cmpq %rbx, %rax -Ltmp610: - .loc 1 527 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:527:11 - je LBB11_15 -Ltmp611: -## %bb.16: ## in Loop: Header=BB11_13 Depth=1 - ##DEBUG_VALUE: len <- $rcx - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - cmpq %r14, %rcx -Ltmp612: - .loc 1 529 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:529:16 - jne LBB11_26 -Ltmp613: -## %bb.17: - ##DEBUG_VALUE: len <- $rcx - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - .loc 1 0 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movl $-1, %eax - jmp LBB11_18 -Ltmp614: -LBB11_15: - ##DEBUG_VALUE: len <- $rcx - ##DEBUG_VALUE: l_strcmp:lr <- $rbx - ##DEBUG_VALUE: l_strcmp:r <- $r12 - ##DEBUG_VALUE: l_strcmp:l <- $r15 - ##DEBUG_VALUE: l_strcmp:ll <- $r14 - xorl %eax, %eax - cmpq %r14, %rcx - setne %al -Ltmp615: -LBB11_18: - .loc 1 659 45 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:659:45 - xorl %ecx, %ecx - testl %eax, %eax - setle %cl -Ltmp616: -LBB11_22: - .loc 1 670 1 ## /Users/dylan/github/ravi/src/lvm.c:670:1 - movl %ecx, %eax - popq %rbx - popq %r12 - popq %r14 - popq %r15 - popq %rbp - retq -LBB11_25: -Ltmp617: - ##DEBUG_VALUE: luaV_lessequal:res <- $eax - ##DEBUG_VALUE: luaV_lessequal:L <- $r15 - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 667 7 ## /Users/dylan/github/ravi/src/lvm.c:667:7 - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _luaG_ordererror -Ltmp618: -LBB11_23: - ##DEBUG_VALUE: luaV_lessequal:l <- $rbx - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 659 21 ## /Users/dylan/github/ravi/src/lvm.c:659:21 - leaq L___func__.luaV_lessequal(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.25(%rip), %rcx - movl $659, %edx ## imm = 0x293 - callq ___assert_rtn -Ltmp619: -LBB11_24: - ##DEBUG_VALUE: luaV_lessequal:r <- $r14 - .loc 1 659 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:659:33 - leaq L___func__.luaV_lessequal(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.27(%rip), %rcx - movl $659, %edx ## imm = 0x293 - callq ___assert_rtn -Ltmp620: -Lfunc_end11: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function LEnum -LCPI12_0: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 -LCPI12_1: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .p2align 4, 0x90 -_LEnum: ## @LEnum -Lfunc_begin12: - .loc 1 610 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:610:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: LEnum:l <- $rdi - ##DEBUG_VALUE: LEnum:l <- $rdi - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:r <- $rsi -Ltmp621: - .loc 1 611 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:611:3 - movzwl 8(%rdi), %ecx - movl %ecx, %eax - andl $15, %eax - cmpl $3, %eax - jne LBB12_26 -Ltmp622: -## %bb.1: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - movzwl 8(%rsi), %eax - movl %eax, %edx - andl $15, %edx - cmpl $3, %edx - jne LBB12_26 -Ltmp623: -## %bb.2: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 612 7 ## /Users/dylan/github/ravi/src/lvm.c:612:7 - movzwl %cx, %ecx - cmpl $19, %ecx - jne LBB12_3 -Ltmp624: -## %bb.5: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 613 22 ## /Users/dylan/github/ravi/src/lvm.c:613:22 - movq (%rdi), %rcx -Ltmp625: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEintfloat:i <- $rcx - .loc 1 614 9 ## /Users/dylan/github/ravi/src/lvm.c:614:9 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB12_6 -Ltmp626: -## %bb.27: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 615 17 ## /Users/dylan/github/ravi/src/lvm.c:615:17 - cmpq (%rsi), %rcx - setle %al -Ltmp627: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp628: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp629: -LBB12_3: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 612 7 ## /Users/dylan/github/ravi/src/lvm.c:612:7 - cmpl $3, %ecx - jne LBB12_4 -Ltmp630: -## %bb.13: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 620 21 ## /Users/dylan/github/ravi/src/lvm.c:620:21 - movsd (%rdi), %xmm0 ## xmm0 = mem[0],zero -Ltmp631: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LTintfloat:f <- $xmm0 - .loc 1 621 9 ## /Users/dylan/github/ravi/src/lvm.c:621:9 - movzwl %ax, %eax - cmpl $3, %eax -Ltmp632: - .loc 1 621 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:621:9 - jne LBB12_15 -Ltmp633: -## %bb.14: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 622 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:622:14 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero - ucomisd %xmm0, %xmm1 - setae %al - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp634: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp635: -LBB12_6: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 614 9 ## /Users/dylan/github/ravi/src/lvm.c:614:9 - cmpl $3, %eax - jne LBB12_28 -Ltmp636: -## %bb.7: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 617 29 ## /Users/dylan/github/ravi/src/lvm.c:617:29 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - movabsq $9007199254740992, %rax ## imm = 0x20000000000000 -Ltmp637: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - .loc 1 570 8 ## /Users/dylan/github/ravi/src/lvm.c:570:8 - addq %rcx, %rax - movabsq $18014398509481985, %rdx ## imm = 0x40000000000001 - cmpq %rdx, %rax - jae LBB12_8 -Ltmp638: -## %bb.12: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 579 10 ## /Users/dylan/github/ravi/src/lvm.c:579:10 - cvtsi2sdq %rcx, %xmm1 - ucomisd %xmm1, %xmm0 - setae %al -Ltmp639: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp640: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp641: -LBB12_15: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 623 14 ## /Users/dylan/github/ravi/src/lvm.c:623:14 - ucomisd %xmm0, %xmm0 -Ltmp642: - .loc 1 623 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:623:14 - jp LBB12_16 -Ltmp643: -## %bb.17: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 626 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:626:26 - cmpl $19, %eax - jne LBB12_29 -Ltmp644: -## %bb.18: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - movq (%rsi), %rcx - movabsq $9007199254740992, %rax ## imm = 0x20000000000000 -Ltmp645: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - .loc 1 551 8 ## /Users/dylan/github/ravi/src/lvm.c:551:8 - addq %rcx, %rax - movabsq $18014398509481985, %rdx ## imm = 0x40000000000001 - cmpq %rdx, %rax - jae LBB12_19 -Ltmp646: -## %bb.23: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 560 10 ## /Users/dylan/github/ravi/src/lvm.c:560:10 - cvtsi2sdq %rcx, %xmm1 - ucomisd %xmm1, %xmm0 - seta %al -Ltmp647: - .loc 1 626 14 ## /Users/dylan/github/ravi/src/lvm.c:626:14 - xorb $1, %al -Ltmp648: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp649: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp650: -LBB12_8: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movb $1, %al -Ltmp651: - .loc 1 571 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:571:11 - ucomisd LCPI12_0(%rip), %xmm0 -Ltmp652: - .loc 1 571 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:571:9 - jae LBB12_25 -Ltmp653: -## %bb.9: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 573 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:573:16 - ucomisd LCPI12_1(%rip), %xmm0 -Ltmp654: - .loc 1 573 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:573:14 - jae LBB12_11 -Ltmp655: -## %bb.10: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - xorl %eax, %eax -Ltmp656: -LBB12_25: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - movzbl %al, %eax -Ltmp657: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp658: -LBB12_16: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - xorl %eax, %eax -Ltmp659: - movzbl %al, %eax -Ltmp660: - .loc 1 628 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp661: -LBB12_19: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 0 1 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movb $1, %al -Ltmp662: - .loc 1 552 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:552:11 - ucomisd LCPI12_0(%rip), %xmm0 -Ltmp663: - .loc 1 552 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:552:9 - jae LBB12_24 -Ltmp664: -## %bb.20: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 554 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:554:16 - ucomisd LCPI12_1(%rip), %xmm0 -Ltmp665: - .loc 1 554 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:554:14 - jbe LBB12_21 -Ltmp666: -## %bb.22: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 555 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:555:19 - cvttsd2si %xmm0, %rax - .loc 1 555 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:555:17 - cmpq %rax, %rcx - setl %al -Ltmp667: - .loc 1 626 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:626:14 - xorb $1, %al -Ltmp668: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp669: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp670: -LBB12_11: - ##DEBUG_VALUE: LEintfloat:f <- $xmm0 - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 574 20 ## /Users/dylan/github/ravi/src/lvm.c:574:20 - cvttsd2si %xmm0, %rax - .loc 1 574 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:574:17 - cmpq %rax, %rcx - setle %al -Ltmp671: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp672: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp673: -LBB12_21: - ##DEBUG_VALUE: LTintfloat:i <- $rcx - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - xorl %eax, %eax -Ltmp674: -LBB12_24: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 626 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:626:14 - xorb $1, %al -Ltmp675: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp676: - .loc 1 628 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:628:1 - popq %rbp - retq -Ltmp677: -LBB12_26: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 611 3 ## /Users/dylan/github/ravi/src/lvm.c:611:3 - leaq L___func__.LEnum(%rip), %rdi -Ltmp678: - leaq L_.str(%rip), %rsi -Ltmp679: - leaq L_.str.187(%rip), %rcx - movl $611, %edx ## imm = 0x263 - callq ___assert_rtn -Ltmp680: -LBB12_4: - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 620 21 ## /Users/dylan/github/ravi/src/lvm.c:620:21 - leaq L___func__.LEnum(%rip), %rdi -Ltmp681: - leaq L_.str(%rip), %rsi -Ltmp682: - leaq L_.str.191(%rip), %rcx - movl $620, %edx ## imm = 0x26C - callq ___assert_rtn -Ltmp683: -LBB12_28: - ##DEBUG_VALUE: li <- $rcx - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 617 29 ## /Users/dylan/github/ravi/src/lvm.c:617:29 - leaq L___func__.LEnum(%rip), %rdi -Ltmp684: - leaq L_.str(%rip), %rsi -Ltmp685: - leaq L_.str.190(%rip), %rcx -Ltmp686: - movl $617, %edx ## imm = 0x269 - callq ___assert_rtn -Ltmp687: -LBB12_29: - ##DEBUG_VALUE: lf <- $xmm0 - ##DEBUG_VALUE: LEnum:r <- $rsi - ##DEBUG_VALUE: LEnum:l <- $rdi - .loc 1 626 26 ## /Users/dylan/github/ravi/src/lvm.c:626:26 - leaq L___func__.LEnum(%rip), %rdi -Ltmp688: - leaq L_.str(%rip), %rsi -Ltmp689: - leaq L_.str.189(%rip), %rcx - movl $626, %edx ## imm = 0x272 - callq ___assert_rtn -Ltmp690: -Lfunc_end12: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function luaV_equalobj -LCPI13_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI13_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_equalobj - .p2align 4, 0x90 -_luaV_equalobj: ## @luaV_equalobj -Lfunc_begin13: - .loc 1 677 0 ## /Users/dylan/github/ravi/src/lvm.c:677:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_equalobj:L <- $rdi - ##DEBUG_VALUE: luaV_equalobj:t1 <- $rsi - ##DEBUG_VALUE: luaV_equalobj:t2 <- $rdx - movq %rdx, %r14 - movq %rsi, %r15 - movq %rdi, %r12 -Ltmp691: - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - .loc 1 679 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:679:7 - movzwl 8(%rsi), %edx - movl %edx, %esi - andl $127, %esi - .loc 1 679 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:679:20 - movzwl 8(%r14), %ecx - movzwl %cx, %eax - movl %eax, %edi - andl $127, %edi - .loc 1 679 17 ## /Users/dylan/github/ravi/src/lvm.c:679:17 - cmpl %edi, %esi -Ltmp692: - .loc 1 679 7 ## /Users/dylan/github/ravi/src/lvm.c:679:7 - jne LBB13_8 -Ltmp693: -## %bb.1: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 688 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:688:3 - movl %edx, %ebx - andb $127, %bl - cmpb $70, %bl - ja LBB13_50 -Ltmp694: -## %bb.2: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movl $1, %r13d - movl %edx, %edi - andl $127, %edi - leaq LJTI13_0(%rip), %rbx - movslq (%rbx,%rdi,4), %rdi - addq %rbx, %rdi - jmpq *%rdi -Ltmp695: -LBB13_3: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 708 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:708:11 - andl $15, %edx - cmpl $5, %edx - jne LBB13_89 -Ltmp696: -## %bb.4: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r15), %rax - movb 8(%rax), %dl - andb $15, %dl - cmpb $5, %dl - jne LBB13_90 -Ltmp697: -## %bb.5: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 708 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:708:25 - andl $15, %ecx - cmpl $5, %ecx - jne LBB13_91 -Ltmp698: -## %bb.6: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rcx - movb 8(%rcx), %dl - andb $15, %dl - cmpb $5, %dl - jne LBB13_92 -Ltmp699: -## %bb.7: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 708 22 ## /Users/dylan/github/ravi/src/lvm.c:708:22 - xorl %r13d, %r13d - cmpq %rcx, %rax - jmp LBB13_79 -Ltmp700: -LBB13_8: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 680 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:680:9 - movl %edx, %ecx - andl $15, %ecx - xorl %r13d, %r13d - .loc 1 680 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:680:45 - cmpl $3, %ecx - .loc 1 680 32 ## /Users/dylan/github/ravi/src/lvm.c:680:32 - jne LBB13_80 -Ltmp701: -## %bb.9: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 32 ## /Users/dylan/github/ravi/src/lvm.c:0:32 - movl %eax, %esi - andl $15, %esi - .loc 1 680 32 ## /Users/dylan/github/ravi/src/lvm.c:680:32 - cmpl %esi, %ecx - jne LBB13_80 -Ltmp702: -## %bb.10: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 684 36 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:684:36 - cmpl $3, %edx - je LBB13_15 -Ltmp703: -## %bb.11: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movzwl %dx, %ecx - cmpl $19, %ecx - jne LBB13_80 -Ltmp704: -## %bb.12: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 684 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:684:15 - movq (%r15), %rcx -Ltmp705: - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: i1 <- $rcx - .loc 1 684 60 ## /Users/dylan/github/ravi/src/lvm.c:684:60 - cmpl $3, %eax - je LBB13_19 -Ltmp706: -LBB13_13: - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - cmpl $19, %eax - jne LBB13_80 -Ltmp707: -## %bb.14: - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 684 39 ## /Users/dylan/github/ravi/src/lvm.c:684:39 - movq (%r14), %rax -Ltmp708: - ##DEBUG_VALUE: i2 <- $rax - .loc 1 0 39 ## /Users/dylan/github/ravi/src/lvm.c:0:39 - jmp LBB13_28 -Ltmp709: -LBB13_15: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r15), %xmm1 ## xmm1 = mem[0],zero -Ltmp710: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - roundsd $9, %xmm1, %xmm0 -Ltmp711: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB13_80 - jp LBB13_80 -Ltmp712: -## %bb.16: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI13_0(%rip), %xmm0 - jb LBB13_80 -Ltmp713: -## %bb.17: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI13_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp714: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB13_80 -Ltmp715: -## %bb.18: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - cvttsd2si %xmm0, %rcx -Ltmp716: - ##DEBUG_VALUE: i1 <- $rcx - .loc 1 684 60 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:684:60 - cmpl $3, %eax - jne LBB13_13 -Ltmp717: -LBB13_19: - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%r14), %xmm1 ## xmm1 = mem[0],zero -Ltmp718: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp719: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB13_80 - jp LBB13_80 -Ltmp720: -## %bb.20: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI13_0(%rip), %xmm0 - jb LBB13_80 -Ltmp721: -## %bb.21: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI13_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp722: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB13_80 -Ltmp723: -## %bb.22: - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: i1 <- $rcx - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - cvttsd2si %xmm0, %rax - jmp LBB13_28 -Ltmp724: -LBB13_23: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 696 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:696:30 - andl $15, %edx - cmpl $4, %edx - jne LBB13_93 -Ltmp725: -## %bb.24: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r15), %rcx - movb 8(%rcx), %bl - movl %ebx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB13_94 -Ltmp726: -## %bb.25: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - cmpb $4, %bl - jne LBB13_95 -Ltmp727: -## %bb.26: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - andl $15, %eax - cmpl $4, %eax - jne LBB13_96 -Ltmp728: -## %bb.27: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rax - movb 8(%rax), %dl - andb $15, %dl - cmpb $4, %dl - jne LBB13_97 -Ltmp729: -LBB13_28: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - ##DEBUG_VALUE: i2 <- $rax - .loc 1 0 30 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:30 - xorl %r13d, %r13d - cmpq %rax, %rcx - jmp LBB13_79 -Ltmp730: -LBB13_29: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 695 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:695:25 - cmpl $70, %esi - je LBB13_78 -Ltmp731: -## %bb.30: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.38(%rip), %rcx - movl $695, %edx ## imm = 0x2B7 - callq ___assert_rtn -Ltmp732: -LBB13_31: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 712 11 ## /Users/dylan/github/ravi/src/lvm.c:712:11 - andl $15, %edx - cmpl $5, %edx - jne LBB13_98 -Ltmp733: -## %bb.32: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r15), %rdx - movb 8(%rdx), %bl - andb $15, %bl - cmpb $5, %bl - jne LBB13_99 -Ltmp734: -## %bb.33: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 712 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:712:25 - andl $15, %eax - cmpl $5, %eax - jne LBB13_100 -Ltmp735: -## %bb.34: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rax - movb 8(%rax), %bl - andb $15, %bl - cmpb $5, %bl - jne LBB13_101 -Ltmp736: -## %bb.35: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 712 22 ## /Users/dylan/github/ravi/src/lvm.c:712:22 - cmpq %rax, %rdx -Ltmp737: - .loc 1 712 11 ## /Users/dylan/github/ravi/src/lvm.c:712:11 - je LBB13_80 -Ltmp738: -## %bb.36: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorl %r13d, %r13d -Ltmp739: - .loc 1 713 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:713:18 - testq %r12, %r12 -Ltmp740: - .loc 1 713 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:713:16 - je LBB13_80 -Ltmp741: -## %bb.37: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 714 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:714:12 - movq 40(%rdx), %rdi - testq %rdi, %rdi - je LBB13_41 -Ltmp742: -## %bb.38: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - testb $32, 10(%rdi) - jne LBB13_41 -Ltmp743: -## %bb.39: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq 24(%r12), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm -Ltmp744: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - .loc 1 715 14 ## /Users/dylan/github/ravi/src/lvm.c:715:14 - testq %rax, %rax -Ltmp745: - .loc 1 715 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:715:11 - jne LBB13_73 -Ltmp746: -## %bb.40: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 716 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:716:14 - movzwl 8(%r14), %ecx -Ltmp747: -LBB13_41: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - andl $15, %ecx - cmpl $5, %ecx - jne LBB13_119 -Ltmp748: -## %bb.42: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB13_120 -Ltmp749: -## %bb.43: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq 40(%rax), %rdi - testq %rdi, %rdi - jne LBB13_71 - jmp LBB13_80 -Ltmp750: -LBB13_44: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 694 27 ## /Users/dylan/github/ravi/src/lvm.c:694:27 - cmpl $22, %edx - jne LBB13_102 -Ltmp751: -## %bb.45: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 694 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:694:41 - cmpl $22, %eax - je LBB13_78 -Ltmp752: -## %bb.46: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.37(%rip), %rcx - movl $694, %edx ## imm = 0x2B6 - callq ___assert_rtn -Ltmp753: -LBB13_47: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 691 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:691:30 - cmpl $3, %edx - jne LBB13_103 -Ltmp754: -## %bb.48: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - cmpl $3, %eax - jne LBB13_104 -Ltmp755: -## %bb.49: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero - cmpeqsd (%r15), %xmm0 - movq %xmm0, %r13 - andl $1, %r13d - jmp LBB13_80 -Ltmp756: -LBB13_50: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 720 14 ## /Users/dylan/github/ravi/src/lvm.c:720:14 - testw %dx, %dx - jns LBB13_105 -Ltmp757: -## %bb.51: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 720 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:720:29 - testw %cx, %cx - js LBB13_78 -Ltmp758: -## %bb.52: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.54(%rip), %rcx - movl $720, %edx ## imm = 0x2D0 - callq ___assert_rtn -Ltmp759: -LBB13_53: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 693 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:693:37 - cmpl $2, %edx - jne LBB13_106 -Ltmp760: -## %bb.54: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 693 51 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:693:51 - cmpl $2, %eax - je LBB13_78 -Ltmp761: -## %bb.55: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.35(%rip), %rcx - movl $693, %edx ## imm = 0x2B5 - callq ___assert_rtn -Ltmp762: -LBB13_56: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 692 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:692:31 - cmpl $1, %edx - jne LBB13_107 -Ltmp763: -## %bb.57: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 692 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:692:45 - cmpl $1, %eax - jne LBB13_108 -Ltmp764: -## %bb.58: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 692 31 ## /Users/dylan/github/ravi/src/lvm.c:692:31 - movl (%r15), %eax - .loc 1 692 42 ## /Users/dylan/github/ravi/src/lvm.c:692:42 - xorl %r13d, %r13d - cmpl (%r14), %eax - jmp LBB13_79 -Ltmp765: -LBB13_59: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 699 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:699:11 - cmpl $32775, %edx ## imm = 0x8007 - jne LBB13_109 -Ltmp766: -## %bb.60: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r15), %rcx - cmpb $7, 8(%rcx) - jne LBB13_110 -Ltmp767: -## %bb.61: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 699 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:699:25 - cmpl $32775, %eax ## imm = 0x8007 - jne LBB13_111 -Ltmp768: -## %bb.62: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rax - cmpb $7, 8(%rax) - jne LBB13_112 -Ltmp769: -## %bb.63: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 699 22 ## /Users/dylan/github/ravi/src/lvm.c:699:22 - cmpq %rax, %rcx -Ltmp770: - .loc 1 699 11 ## /Users/dylan/github/ravi/src/lvm.c:699:11 - je LBB13_80 -Ltmp771: -## %bb.64: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorl %r13d, %r13d -Ltmp772: - .loc 1 700 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:700:18 - testq %r12, %r12 -Ltmp773: - .loc 1 700 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:700:16 - je LBB13_80 -Ltmp774: -## %bb.65: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 701 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:701:12 - movq 16(%rcx), %rdi - testq %rdi, %rdi - je LBB13_69 -Ltmp775: -## %bb.66: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - testb $32, 10(%rdi) - jne LBB13_69 -Ltmp776: -## %bb.67: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq 24(%r12), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm -Ltmp777: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - .loc 1 702 14 ## /Users/dylan/github/ravi/src/lvm.c:702:14 - testq %rax, %rax -Ltmp778: - .loc 1 702 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:702:11 - jne LBB13_73 -Ltmp779: -## %bb.68: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 703 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:703:14 - movzwl 8(%r14), %eax -Ltmp780: - .loc 1 702 11 ## /Users/dylan/github/ravi/src/lvm.c:702:11 - cmpl $32775, %eax ## imm = 0x8007 -Ltmp781: - .loc 1 703 14 ## /Users/dylan/github/ravi/src/lvm.c:703:14 - jne LBB13_122 -Ltmp782: -LBB13_69: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rax - cmpb $7, 8(%rax) - jne LBB13_121 -Ltmp783: -## %bb.70: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq 16(%rax), %rdi - testq %rdi, %rdi - je LBB13_80 -Ltmp784: -LBB13_71: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - testb $32, 10(%rdi) - jne LBB13_80 -Ltmp785: -## %bb.72: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq 24(%r12), %rax - movq 264(%rax), %rdx - movl $5, %esi - callq _luaT_gettm -Ltmp786: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - .loc 1 722 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:722:10 - testq %rax, %rax -Ltmp787: - .loc 1 722 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:722:7 - je LBB13_88 -Ltmp788: -LBB13_73: - ##DEBUG_VALUE: luaV_equalobj:tm <- $rax - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 724 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:724:33 - movq 16(%r12), %r8 - .loc 1 724 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:724:3 - movl $1, %r9d - movq %r12, %rdi - movq %rax, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_callTM -Ltmp789: - .loc 1 725 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:725:11 - movq 16(%r12), %rax - movzwl 8(%rax), %ecx - testw %cx, %cx - je LBB13_88 -Ltmp790: -## %bb.74: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movzwl %cx, %ecx - cmpl $1, %ecx - jne LBB13_87 -Ltmp791: -## %bb.75: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - xorl %r13d, %r13d - cmpl $0, (%rax) - setne %r13b - jmp LBB13_80 -Ltmp792: -LBB13_76: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 690 31 ## /Users/dylan/github/ravi/src/lvm.c:690:31 - cmpl $19, %edx - jne LBB13_113 -Ltmp793: -## %bb.77: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 690 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:690:45 - cmpl $19, %eax - jne LBB13_114 -Ltmp794: -LBB13_78: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 45 ## /Users/dylan/github/ravi/src/lvm.c:0:45 - movq (%r15), %rax - xorl %r13d, %r13d - cmpq (%r14), %rax -Ltmp795: -LBB13_79: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - sete %r13b -Ltmp796: -LBB13_80: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 726 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:726:1 - movl %r13d, %eax - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp797: - popq %r13 - popq %r14 -Ltmp798: - popq %r15 -Ltmp799: - popq %rbp - retq -LBB13_81: -Ltmp800: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 697 44 ## /Users/dylan/github/ravi/src/lvm.c:697:44 - andl $15, %edx - cmpl $4, %edx - jne LBB13_115 -Ltmp801: -## %bb.82: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r15), %rdi - movb 8(%rdi), %cl - andb $15, %cl - cmpb $4, %cl - jne LBB13_116 -Ltmp802: -## %bb.83: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 697 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:697:57 - andl $15, %eax - cmpl $4, %eax - jne LBB13_117 -Ltmp803: -## %bb.84: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movq (%r14), %rsi - movb 8(%rsi), %al - andb $15, %al - cmpb $4, %al - jne LBB13_118 -Ltmp804: -## %bb.85: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 697 30 ## /Users/dylan/github/ravi/src/lvm.c:697:30 - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp805: - popq %r13 - popq %r14 -Ltmp806: - popq %r15 -Ltmp807: - popq %rbp - jmp _luaS_eqlngstr ## TAILCALL -Ltmp808: -LBB13_88: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 0 30 ## /Users/dylan/github/ravi/src/lvm.c:0:30 - xorl %r13d, %r13d - jmp LBB13_80 -Ltmp809: -LBB13_87: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - movl $1, %r13d - jmp LBB13_80 -Ltmp810: -LBB13_89: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 708 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:708:11 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.49(%rip), %rcx - movl $708, %edx ## imm = 0x2C4 - callq ___assert_rtn -Ltmp811: -LBB13_90: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.50(%rip), %rcx - movl $708, %edx ## imm = 0x2C4 - callq ___assert_rtn -Ltmp812: -LBB13_91: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 708 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:708:25 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.51(%rip), %rcx - movl $708, %edx ## imm = 0x2C4 - callq ___assert_rtn -Ltmp813: -LBB13_92: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.52(%rip), %rcx - movl $708, %edx ## imm = 0x2C4 - callq ___assert_rtn -Ltmp814: -LBB13_93: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 696 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:696:30 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.40(%rip), %rcx - movl $696, %edx ## imm = 0x2B8 - callq ___assert_rtn -Ltmp815: -LBB13_94: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.41(%rip), %rcx - movl $696, %edx ## imm = 0x2B8 - callq ___assert_rtn -Ltmp816: -LBB13_95: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.42(%rip), %rcx - movl $696, %edx ## imm = 0x2B8 - callq ___assert_rtn -Ltmp817: -LBB13_96: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.43(%rip), %rcx - movl $696, %edx ## imm = 0x2B8 - callq ___assert_rtn -Ltmp818: -LBB13_97: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.44(%rip), %rcx - movl $696, %edx ## imm = 0x2B8 - callq ___assert_rtn -Ltmp819: -LBB13_98: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 712 11 ## /Users/dylan/github/ravi/src/lvm.c:712:11 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.49(%rip), %rcx - movl $712, %edx ## imm = 0x2C8 - callq ___assert_rtn -Ltmp820: -LBB13_99: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.50(%rip), %rcx - movl $712, %edx ## imm = 0x2C8 - callq ___assert_rtn -Ltmp821: -LBB13_100: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 712 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:712:25 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.51(%rip), %rcx - movl $712, %edx ## imm = 0x2C8 - callq ___assert_rtn -Ltmp822: -LBB13_101: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.52(%rip), %rcx - movl $712, %edx ## imm = 0x2C8 - callq ___assert_rtn -Ltmp823: -LBB13_102: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 694 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:694:27 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.36(%rip), %rcx - movl $694, %edx ## imm = 0x2B6 - callq ___assert_rtn -Ltmp824: -LBB13_103: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 691 30 ## /Users/dylan/github/ravi/src/lvm.c:691:30 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.30(%rip), %rcx - movl $691, %edx ## imm = 0x2B3 - callq ___assert_rtn -Ltmp825: -LBB13_104: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.31(%rip), %rcx - movl $691, %edx ## imm = 0x2B3 - callq ___assert_rtn -Ltmp826: -LBB13_105: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 720 14 ## /Users/dylan/github/ravi/src/lvm.c:720:14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.53(%rip), %rcx - movl $720, %edx ## imm = 0x2D0 - callq ___assert_rtn -Ltmp827: -LBB13_106: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 693 37 ## /Users/dylan/github/ravi/src/lvm.c:693:37 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.34(%rip), %rcx - movl $693, %edx ## imm = 0x2B5 - callq ___assert_rtn -Ltmp828: -LBB13_107: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 692 31 ## /Users/dylan/github/ravi/src/lvm.c:692:31 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.32(%rip), %rcx - movl $692, %edx ## imm = 0x2B4 - callq ___assert_rtn -Ltmp829: -LBB13_108: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 692 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:692:45 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.33(%rip), %rcx - movl $692, %edx ## imm = 0x2B4 - callq ___assert_rtn -Ltmp830: -LBB13_109: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 699 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:699:11 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.45(%rip), %rcx - movl $699, %edx ## imm = 0x2BB - callq ___assert_rtn -Ltmp831: -LBB13_110: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.46(%rip), %rcx - movl $699, %edx ## imm = 0x2BB - callq ___assert_rtn -Ltmp832: -LBB13_111: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 699 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:699:25 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.47(%rip), %rcx - movl $699, %edx ## imm = 0x2BB - callq ___assert_rtn -Ltmp833: -LBB13_112: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.48(%rip), %rcx - movl $699, %edx ## imm = 0x2BB - callq ___assert_rtn -Ltmp834: -LBB13_113: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 690 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:690:31 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.28(%rip), %rcx - movl $690, %edx ## imm = 0x2B2 - callq ___assert_rtn -Ltmp835: -LBB13_114: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 690 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:690:45 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.29(%rip), %rcx - movl $690, %edx ## imm = 0x2B2 - callq ___assert_rtn -Ltmp836: -LBB13_115: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 697 44 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:697:44 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.40(%rip), %rcx - movl $697, %edx ## imm = 0x2B9 - callq ___assert_rtn -Ltmp837: -LBB13_116: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.41(%rip), %rcx - movl $697, %edx ## imm = 0x2B9 - callq ___assert_rtn -Ltmp838: -LBB13_117: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 697 57 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:697:57 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.43(%rip), %rcx - movl $697, %edx ## imm = 0x2B9 - callq ___assert_rtn -Ltmp839: -LBB13_118: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.44(%rip), %rcx - movl $697, %edx ## imm = 0x2B9 - callq ___assert_rtn -Ltmp840: -LBB13_119: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 716 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:716:14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.51(%rip), %rcx - movl $716, %edx ## imm = 0x2CC - callq ___assert_rtn -Ltmp841: -LBB13_120: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.52(%rip), %rcx - movl $716, %edx ## imm = 0x2CC - callq ___assert_rtn -Ltmp842: -LBB13_121: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - .loc 1 703 14 ## /Users/dylan/github/ravi/src/lvm.c:703:14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.48(%rip), %rcx - movl $703, %edx ## imm = 0x2BF - callq ___assert_rtn -Ltmp843: -LBB13_122: - ##DEBUG_VALUE: luaV_equalobj:L <- $r12 - ##DEBUG_VALUE: luaV_equalobj:t1 <- $r15 - ##DEBUG_VALUE: luaV_equalobj:t2 <- $r14 - leaq L___func__.luaV_equalobj(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.47(%rip), %rcx - movl $703, %edx ## imm = 0x2BF - callq ___assert_rtn -Ltmp844: -Lfunc_end13: - .cfi_endproc - .p2align 2, 0x90 - .data_region jt32 -.set L13_0_set_80, LBB13_80-LJTI13_0 -.set L13_0_set_56, LBB13_56-LJTI13_0 -.set L13_0_set_53, LBB13_53-LJTI13_0 -.set L13_0_set_47, LBB13_47-LJTI13_0 -.set L13_0_set_23, LBB13_23-LJTI13_0 -.set L13_0_set_31, LBB13_31-LJTI13_0 -.set L13_0_set_50, LBB13_50-LJTI13_0 -.set L13_0_set_59, LBB13_59-LJTI13_0 -.set L13_0_set_76, LBB13_76-LJTI13_0 -.set L13_0_set_81, LBB13_81-LJTI13_0 -.set L13_0_set_3, LBB13_3-LJTI13_0 -.set L13_0_set_44, LBB13_44-LJTI13_0 -.set L13_0_set_29, LBB13_29-LJTI13_0 -LJTI13_0: - .long L13_0_set_80 - .long L13_0_set_56 - .long L13_0_set_53 - .long L13_0_set_47 - .long L13_0_set_23 - .long L13_0_set_31 - .long L13_0_set_50 - .long L13_0_set_59 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_76 - .long L13_0_set_81 - .long L13_0_set_3 - .long L13_0_set_44 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_3 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_50 - .long L13_0_set_29 - .end_data_region - ## -- End function - .globl _luaV_concat ## -- Begin function luaV_concat - .p2align 4, 0x90 -_luaV_concat: ## @luaV_concat -Lfunc_begin14: - .loc 1 750 0 ## /Users/dylan/github/ravi/src/lvm.c:750:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $104, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_concat:L <- $rdi - ##DEBUG_VALUE: luaV_concat:total <- $esi - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - movq %rax, -48(%rbp) - ##DEBUG_VALUE: luaV_concat:total <- $esi - ##DEBUG_VALUE: luaV_concat:L <- $rdi -Ltmp845: - .loc 1 751 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:751:3 - cmpl $2, %esi - jl LBB14_74 -Ltmp846: -## %bb.1: - ##DEBUG_VALUE: luaV_concat:total <- $esi - ##DEBUG_VALUE: luaV_concat:L <- $rdi - .loc 1 753 20 ## /Users/dylan/github/ravi/src/lvm.c:753:20 - movq 16(%rdi), %rdx - movq %rdi, -120(%rbp) ## 8-byte Spill -Ltmp847: - .p2align 4, 0x90 -LBB14_2: ## =>This Loop Header: Depth=1 - ## Child Loop BB14_22 Depth 2 - ## Child Loop BB14_41 Depth 2 - ## Child Loop BB14_33 Depth 2 - ##DEBUG_VALUE: luaV_concat:total <- $esi - ##DEBUG_VALUE: luaV_concat:L <- $rdi - ##DEBUG_VALUE: luaV_concat:total <- $esi - ##DEBUG_VALUE: copy2buff:top <- $rdx - ##DEBUG_VALUE: copy2buff:top <- $rdx - .loc 1 0 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:20 - movl %esi, -100(%rbp) ## 4-byte Spill -Ltmp848: - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- 2 - ##DEBUG_VALUE: top <- $rdx - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 755 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:755:11 - leaq -32(%rdx), %rbx -Ltmp849: - ##DEBUG_VALUE: io1 <- $rbx - movzwl -24(%rdx), %eax - andl $15, %eax - .loc 1 755 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:755:29 - addl $-3, %eax - movzwl %ax, %eax - ##DEBUG_VALUE: top <- $rdx - ##DEBUG_VALUE: copy2buff:top <- $rdx - ##DEBUG_VALUE: copy2buff:top <- $rdx - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - leaq -16(%rdx), %r13 -Ltmp850: - ##DEBUG_VALUE: io2 <- $r13 - .loc 1 755 29 ## /Users/dylan/github/ravi/src/lvm.c:755:29 - cmpl $1, %eax - movq %rdi, %r15 - ja LBB14_16 -Ltmp851: -## %bb.3: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: top <- $rdx - ##DEBUG_VALUE: luaV_concat:L <- $rdi - .loc 1 0 29 ## /Users/dylan/github/ravi/src/lvm.c:0:29 - movq %rdx, -112(%rbp) ## 8-byte Spill -Ltmp852: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 755 52 ## /Users/dylan/github/ravi/src/lvm.c:755:52 - movzwl -8(%rdx), %eax - movl %eax, %ecx - andb $15, %cl - cmpb $4, %cl - je LBB14_6 -Ltmp853: -## %bb.4: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:L <- $rdi - cmpb $3, %cl - movq -112(%rbp), %r12 ## 8-byte Reload - jne LBB14_16 -Ltmp854: -## %bb.5: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:L <- $rdi - movq %r15, %rdi -Ltmp855: - movq %r13, %rsi - callq _luaO_tostring -Ltmp856: - .loc 1 0 52 ## /Users/dylan/github/ravi/src/lvm.c:0:52 - movq %r15, %rdi -Ltmp857: - .loc 1 757 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:757:14 - movzwl -8(%r12), %eax -LBB14_6: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movzwl %ax, %ecx - cmpl $32772, %ecx ## imm = 0x8004 - jne LBB14_9 -## %bb.7: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq (%r13), %rcx - movb 8(%rcx), %dl - andb $15, %dl - cmpb $4, %dl - jne LBB14_72 -## %bb.8: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $0, 11(%rcx) -Ltmp858: - .loc 1 757 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:757:14 - je LBB14_52 -LBB14_9: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] -Ltmp859: - .loc 1 759 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:759:14 - movq -112(%rbp), %rcx ## 8-byte Reload - movzwl -24(%rcx), %ecx - cmpl $32772, %ecx ## imm = 0x8004 - jne LBB14_12 -## %bb.10: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq (%rbx), %rcx - movb 8(%rcx), %dl - andb $15, %dl - cmpb $4, %dl - jne LBB14_73 -## %bb.11: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $0, 11(%rcx) -Ltmp860: - .loc 1 759 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:759:14 - je LBB14_54 -LBB14_12: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] -Ltmp861: - .loc 1 764 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:764:19 - andl $15, %eax - cmpl $4, %eax - jne LBB14_69 -## %bb.13: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq (%r13), %rax - movb 8(%rax), %cl - movl %ecx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB14_70 -## %bb.14: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $4, %cl - jne LBB14_20 -## %bb.15: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movzbl 11(%rax), %r13d - jmp LBB14_21 -Ltmp862: - .p2align 4, 0x90 -LBB14_16: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:L <- $rdi - .loc 1 756 7 ## /Users/dylan/github/ravi/src/lvm.c:756:7 - movl $22, %r8d - movq %r15, %rdi -Ltmp863: - movq %rbx, %rsi - movq %r13, %rdx - movq %rbx, %rcx - callq _luaT_trybinTM -Ltmp864: -LBB14_17: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq %r15, %rdi - movl $2, %r8d -LBB14_18: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movl -100(%rbp), %esi ## 4-byte Reload -LBB14_19: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] -Ltmp865: - ##DEBUG_VALUE: n <- $r8d - .loc 1 785 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:785:12 - movslq %r8d, %rax - .loc 1 784 15 ## /Users/dylan/github/ravi/src/lvm.c:784:15 - movq %rax, %rcx - shlq $4, %rcx - decl %eax - .loc 1 784 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:784:11 - subl %eax, %esi -Ltmp866: - ##DEBUG_VALUE: luaV_concat:total <- $esi - .loc 1 785 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:785:12 - movq 16(%rdi), %rdx - addq $-16, %rcx - subq %rcx, %rdx - movq %rdx, 16(%rdi) -Ltmp867: - .loc 1 786 18 ## /Users/dylan/github/ravi/src/lvm.c:786:18 - cmpl $1, %esi -Ltmp868: - .loc 1 786 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:786:3 - jg LBB14_2 - jmp LBB14_60 -Ltmp869: -LBB14_20: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 764 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:764:19 - movq 16(%rax), %r13 -LBB14_21: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] -Ltmp870: - ##DEBUG_VALUE: n <- 1 - ##DEBUG_VALUE: tl <- $r13 - .loc 1 767 32 ## /Users/dylan/github/ravi/src/lvm.c:767:32 - movslq -100(%rbp), %r12 ## 4-byte Folded Reload - movl $1, %r14d -Ltmp871: - .p2align 4, 0x90 -LBB14_22: ## Parent Loop BB14_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - movzwl 8(%rbx), %eax - movl %eax, %ecx - andb $15, %cl - cmpb $4, %cl - je LBB14_25 -Ltmp872: -## %bb.23: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $3, %cl - jne LBB14_31 -Ltmp873: -## %bb.24: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq %r15, %rdi - movq %rbx, %rsi - callq _luaO_tostring -Ltmp874: - .loc 1 0 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:32 - movq %r15, %rdi -Ltmp875: - .loc 1 768 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:768:20 - movzwl 8(%rbx), %eax -Ltmp876: -LBB14_25: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - andl $15, %eax - cmpl $4, %eax - jne LBB14_65 -Ltmp877: -## %bb.26: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movzbl 8(%rax), %ecx - movl %ecx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB14_66 -Ltmp878: -## %bb.27: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $4, %cl - jne LBB14_29 -Ltmp879: -## %bb.28: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movzbl 11(%rax), %eax -Ltmp880: - ##DEBUG_VALUE: l <- $r13 - .loc 1 769 42 ## /Users/dylan/github/ravi/src/lvm.c:769:42 - movabsq $9223372036854775807, %rcx ## imm = 0x7FFFFFFFFFFFFFFF - subq %r13, %rcx - .loc 1 769 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:769:15 - cmpq %rcx, %rax -Ltmp881: - .loc 1 769 13 ## /Users/dylan/github/ravi/src/lvm.c:769:13 - jb LBB14_30 - jmp LBB14_67 -Ltmp882: - .p2align 4, 0x90 -LBB14_29: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 768 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:768:20 - movq 16(%rax), %rax -Ltmp883: - ##DEBUG_VALUE: l <- $r13 - .loc 1 769 42 ## /Users/dylan/github/ravi/src/lvm.c:769:42 - movabsq $9223372036854775807, %rcx ## imm = 0x7FFFFFFFFFFFFFFF - subq %r13, %rcx - .loc 1 769 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:769:15 - cmpq %rcx, %rax -Ltmp884: - .loc 1 769 13 ## /Users/dylan/github/ravi/src/lvm.c:769:13 - jae LBB14_67 -Ltmp885: -LBB14_30: ## in Loop: Header=BB14_22 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: l <- $r13 - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 771 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:771:12 - addq %rax, %r13 -Ltmp886: - ##DEBUG_VALUE: n <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - ##DEBUG_VALUE: tl <- $r13 - .loc 1 767 59 ## /Users/dylan/github/ravi/src/lvm.c:767:59 - incq %r14 - .loc 1 767 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:767:21 - addq $-16, %rbx - cmpq %r12, %r14 - .loc 1 767 29 ## /Users/dylan/github/ravi/src/lvm.c:767:29 - jl LBB14_22 -Ltmp887: -LBB14_31: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: tl <- $r13 - .loc 1 773 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:773:14 - cmpq $40, %r13 -Ltmp888: - .loc 1 773 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:773:11 - movq %r14, -144(%rbp) ## 8-byte Spill - ja LBB14_40 -Ltmp889: -## %bb.32: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:n <- undef - ##DEBUG_VALUE: copy2buff:tl <- 0 - .loc 1 738 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:738:3 - movl %r14d, %r15d - movq %r15, %rax - shlq $4, %rax - movq -112(%rbp), %rbx ## 8-byte Reload - subq %rax, %rbx - addq $8, %rbx - movq %r15, -128(%rbp) ## 8-byte Spill -Ltmp890: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - xorl %r14d, %r14d -Ltmp891: - .p2align 4, 0x90 -LBB14_33: ## Parent Loop BB14_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: copy2buff:tl <- $r14 - .loc 1 739 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:739:16 - movzwl (%rbx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB14_63 -Ltmp892: -## %bb.34: ## in Loop: Header=BB14_33 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r14 - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq -8(%rbx), %rsi - movzbl 8(%rsi), %eax - movl %eax, %ecx - andb $15, %cl - cmpb $4, %cl - jne LBB14_64 -Ltmp893: -## %bb.35: ## in Loop: Header=BB14_33 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r14 - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $4, %al - jne LBB14_37 -Ltmp894: -## %bb.36: ## in Loop: Header=BB14_33 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r14 - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movzbl 11(%rsi), %r12d - jmp LBB14_38 -Ltmp895: - .p2align 4, 0x90 -LBB14_37: ## in Loop: Header=BB14_33 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r14 - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq 16(%rsi), %r12 -Ltmp896: -LBB14_38: ## in Loop: Header=BB14_33 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r14 - ##DEBUG_VALUE: copy2buff:n <- $r15 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: l <- $r14 - .loc 1 740 5 ## /Users/dylan/github/ravi/src/lvm.c:740:5 - leaq -96(%rbp,%r14), %rdi - addq $24, %rsi - movq %r12, %rdx - callq _memcpy -Ltmp897: - .loc 1 741 8 ## /Users/dylan/github/ravi/src/lvm.c:741:8 - addq %r12, %r14 -Ltmp898: - ##DEBUG_VALUE: copy2buff:n <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: copy2buff:tl <- $r14 - .loc 1 742 16 ## /Users/dylan/github/ravi/src/lvm.c:742:16 - addq $16, %rbx - decq %r15 -Ltmp899: - .loc 1 742 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:742:3 - jg LBB14_33 -Ltmp900: -## %bb.39: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq -120(%rbp), %rbx ## 8-byte Reload - .loc 1 776 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:776:14 - movq %rbx, %rdi - leaq -96(%rbp), %rsi - movq %r13, %rdx - callq _luaS_newlstr -Ltmp901: - .loc 1 0 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movq %rbx, %rdi -Ltmp902: - ##DEBUG_VALUE: ts <- $rax - movl -100(%rbp), %esi ## 4-byte Reload - jmp LBB14_48 -Ltmp903: -LBB14_40: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 779 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:779:14 - movq %r13, %rsi - callq _luaS_createlngstrobj -Ltmp904: - ##DEBUG_VALUE: ts <- $rax - .loc 1 0 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movq %rax, -136(%rbp) ## 8-byte Spill -Ltmp905: - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - .loc 1 780 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:780:27 - movq %rax, %r12 - addq $24, %r12 -Ltmp906: - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: copy2buff:tl <- 0 - ##DEBUG_VALUE: copy2buff:n <- undef - .loc 1 738 3 ## /Users/dylan/github/ravi/src/lvm.c:738:3 - movl %r14d, %ebx - movq %rbx, %rax - shlq $4, %rax - movq -112(%rbp), %r15 ## 8-byte Reload - subq %rax, %r15 - addq $8, %r15 - movq %rbx, -128(%rbp) ## 8-byte Spill -Ltmp907: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - xorl %r13d, %r13d -Ltmp908: - .p2align 4, 0x90 -LBB14_41: ## Parent Loop BB14_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:tl <- $r13 - .loc 1 739 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:739:16 - movzwl (%r15), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB14_63 -Ltmp909: -## %bb.42: ## in Loop: Header=BB14_41 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq -8(%r15), %rsi - movzbl 8(%rsi), %eax - movl %eax, %ecx - andb $15, %cl - cmpb $4, %cl - jne LBB14_64 -Ltmp910: -## %bb.43: ## in Loop: Header=BB14_41 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - cmpb $4, %al - jne LBB14_45 -Ltmp911: -## %bb.44: ## in Loop: Header=BB14_41 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movzbl 11(%rsi), %r14d -Ltmp912: - .loc 1 0 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - jmp LBB14_46 -Ltmp913: - .p2align 4, 0x90 -LBB14_45: ## in Loop: Header=BB14_41 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 739 16 ## /Users/dylan/github/ravi/src/lvm.c:739:16 - movq 16(%rsi), %r14 -Ltmp914: -LBB14_46: ## in Loop: Header=BB14_41 Depth=2 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:n <- $rbx - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: l <- $r13 - .loc 1 740 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:740:5 - leaq (%r12,%r13), %rdi - addq $24, %rsi - movq %r14, %rdx - callq _memcpy -Ltmp915: - .loc 1 741 8 ## /Users/dylan/github/ravi/src/lvm.c:741:8 - addq %r14, %r13 -Ltmp916: - ##DEBUG_VALUE: copy2buff:n <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: copy2buff:tl <- $r13 - .loc 1 742 16 ## /Users/dylan/github/ravi/src/lvm.c:742:16 - addq $16, %r15 - decq %rbx -Ltmp917: - .loc 1 742 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:742:3 - jg LBB14_41 -Ltmp918: -## %bb.47: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: copy2buff:tl <- $r13 - ##DEBUG_VALUE: copy2buff:buff <- $r12 - ##DEBUG_VALUE: ts <- [DW_OP_constu 136, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq -120(%rbp), %rdi ## 8-byte Reload - movl -100(%rbp), %esi ## 4-byte Reload - movq -136(%rbp), %rax ## 8-byte Reload -Ltmp919: -LBB14_48: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ts <- $rax - ##DEBUG_VALUE: x_ <- $rax - .loc 1 782 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:782:7 - movb 8(%rax), %cl - andb $14, %cl - cmpb $10, %cl - movq -112(%rbp), %rdx ## 8-byte Reload - movq -144(%rbp), %r8 ## 8-byte Reload - jae LBB14_71 -Ltmp920: -## %bb.49: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: ts <- $rax - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq -128(%rbp), %rbx ## 8-byte Reload - .loc 1 782 7 ## /Users/dylan/github/ravi/src/lvm.c:782:7 - negq %rbx - shlq $4, %rbx - movq %rax, (%rdx,%rbx) - movzbl 8(%rax), %r9d - leal 32768(%r9), %ecx - movw %cx, 8(%rdx,%rbx) - movl %r9d, %ecx - andl $127, %ecx - cmpl %r9d, %ecx - jne LBB14_68 -Ltmp921: -## %bb.50: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: ts <- $rax - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 0 7 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - testq %rdi, %rdi - .loc 1 782 7 ## /Users/dylan/github/ravi/src/lvm.c:782:7 - je LBB14_19 -Ltmp922: -## %bb.51: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: ts <- $rax - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movb 9(%rax), %al -Ltmp923: - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - jne LBB14_19 - jmp LBB14_68 -Ltmp924: -LBB14_52: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 758 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:758:7 - movq -112(%rbp), %rax ## 8-byte Reload - movzwl -24(%rax), %eax - andl $15, %eax - movl $2, %r8d - cmpl $3, %eax - jne LBB14_18 -## %bb.53: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq %r15, %rdi - movq %rbx, %rsi - callq _luaO_tostring -Ltmp925: - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - jmp LBB14_17 -LBB14_54: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movq -112(%rbp), %rdx ## 8-byte Reload -Ltmp926: - .loc 1 760 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:760:7 - movq -16(%rdx), %rcx - movq %rcx, -32(%rdx) - movw %ax, -24(%rdx) - movl $2, %r8d - testw %ax, %ax - jns LBB14_18 -## %bb.57: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - movl -100(%rbp), %esi ## 4-byte Reload - jne LBB14_59 -## %bb.58: ## in Loop: Header=BB14_2 Depth=1 - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - movb 9(%rcx), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - jne LBB14_19 -LBB14_59: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $760, %edx ## imm = 0x2F8 - callq ___assert_rtn -Ltmp927: -LBB14_60: - ##DEBUG_VALUE: n <- $r8d - ##DEBUG_VALUE: luaV_concat:total <- $esi - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - cmpq -48(%rbp), %rax - jne LBB14_62 -Ltmp928: -## %bb.61: - ##DEBUG_VALUE: luaV_concat:total <- $esi - .loc 1 787 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:787:1 - addq $104, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp929: -LBB14_62: - ##DEBUG_VALUE: n <- $r8d - ##DEBUG_VALUE: luaV_concat:total <- $esi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - callq ___stack_chk_fail -Ltmp930: -LBB14_63: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 739 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:739:16 - leaq L___func__.copy2buff(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.192(%rip), %rcx - movl $739, %edx ## imm = 0x2E3 - callq ___assert_rtn -Ltmp931: -LBB14_64: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - leaq L___func__.copy2buff(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.193(%rip), %rcx - movl $739, %edx ## imm = 0x2E3 - callq ___assert_rtn -Ltmp932: -LBB14_65: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 768 20 ## /Users/dylan/github/ravi/src/lvm.c:768:20 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.61(%rip), %rcx - movl $768, %edx ## imm = 0x300 - callq ___assert_rtn -Ltmp933: -LBB14_66: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.62(%rip), %rcx - movl $768, %edx ## imm = 0x300 - callq ___assert_rtn -Ltmp934: -LBB14_67: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: l <- $r13 - ##DEBUG_VALUE: n <- $r14 - ##DEBUG_VALUE: tl <- $r13 - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 770 11 ## /Users/dylan/github/ravi/src/lvm.c:770:11 - leaq L_.str.63(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp935: -LBB14_68: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 782 7 ## /Users/dylan/github/ravi/src/lvm.c:782:7 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $782, %edx ## imm = 0x30E - callq ___assert_rtn -Ltmp936: -LBB14_69: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 764 19 ## /Users/dylan/github/ravi/src/lvm.c:764:19 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.57(%rip), %rcx - movl $764, %edx ## imm = 0x2FC - callq ___assert_rtn -Ltmp937: -LBB14_70: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.58(%rip), %rcx - movl $764, %edx ## imm = 0x2FC - callq ___assert_rtn -Ltmp938: -LBB14_71: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: ts <- $rax - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 782 7 ## /Users/dylan/github/ravi/src/lvm.c:782:7 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $782, %edx ## imm = 0x30E - callq ___assert_rtn -Ltmp939: -LBB14_72: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 757 14 ## /Users/dylan/github/ravi/src/lvm.c:757:14 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.58(%rip), %rcx - movl $757, %edx ## imm = 0x2F5 - callq ___assert_rtn -Ltmp940: -LBB14_73: - ##DEBUG_VALUE: top <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_concat:total <- [DW_OP_constu 100, DW_OP_minus] [$rbp+0] - .loc 1 759 14 ## /Users/dylan/github/ravi/src/lvm.c:759:14 - leaq L___func__.luaV_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.60(%rip), %rcx - movl $759, %edx ## imm = 0x2F7 - callq ___assert_rtn -Ltmp941: -LBB14_74: - ##DEBUG_VALUE: luaV_concat:total <- $esi - ##DEBUG_VALUE: luaV_concat:L <- $rdi - .loc 1 751 3 ## /Users/dylan/github/ravi/src/lvm.c:751:3 - leaq L___func__.luaV_concat(%rip), %rdi -Ltmp942: - leaq L_.str(%rip), %rsi -Ltmp943: - leaq L_.str.56(%rip), %rcx - movl $751, %edx ## imm = 0x2EF - callq ___assert_rtn -Ltmp944: -Lfunc_end14: - .cfi_endproc - ## -- End function - .globl _luaV_objlen ## -- Begin function luaV_objlen - .p2align 4, 0x90 -_luaV_objlen: ## @luaV_objlen -Lfunc_begin15: - .loc 1 793 0 ## /Users/dylan/github/ravi/src/lvm.c:793:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_objlen:L <- $rdi - ##DEBUG_VALUE: luaV_objlen:ra <- $rsi - ##DEBUG_VALUE: luaV_objlen:rb <- $rdx -Ltmp945: - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp946: - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r15 -Ltmp947: - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - .loc 1 795 11 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:795:11 - movzwl 8(%rdx), %eax - .loc 1 795 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:795:3 - movl %eax, %ecx - andb $127, %cl - addb $-4, %cl - cmpb $33, %cl - ja LBB15_19 -Ltmp948: -## %bb.1: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movzbl %cl, %ecx - leaq LJTI15_0(%rip), %rdx - movslq (%rdx,%rcx,4), %rcx - addq %rdx, %rcx - jmpq *%rcx -Ltmp949: -LBB15_2: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 798 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:798:18 - andl $15, %eax - cmpl $5, %eax - jne LBB15_21 -Ltmp950: -## %bb.3: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB15_22 -Ltmp951: -## %bb.4: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: h <- $rdi - .loc 1 799 7 ## /Users/dylan/github/ravi/src/lvm.c:799:7 - callq _raviH_getn -Ltmp952: - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - jmp LBB15_5 -Ltmp953: -LBB15_19: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 818 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:818:12 - movl $4, %edx - movq %r15, %rdi - movq %rbx, %rsi - callq _luaT_gettmbyobj -Ltmp954: - ##DEBUG_VALUE: luaV_objlen:tm <- $rax - .loc 1 819 11 ## /Users/dylan/github/ravi/src/lvm.c:819:11 - cmpw $0, 8(%rax) -Ltmp955: - .loc 1 819 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:819:11 - je LBB15_29 -Ltmp956: -LBB15_20: - ##DEBUG_VALUE: luaV_objlen:tm <- $rax - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 824 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:824:3 - movl $1, %r9d - ##DEBUG_VALUE: luaV_objlen:tm <- $rax - movq %r15, %rdi - movq %rax, %rsi - movq %rbx, %rdx - movq %rbx, %rcx - movq %r14, %r8 - popq %rbx -Ltmp957: - popq %r12 - popq %r14 -Ltmp958: - popq %r15 -Ltmp959: - popq %rbp - jmp _luaT_callTM ## TAILCALL -Ltmp960: -LBB15_16: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - .loc 1 814 7 ## /Users/dylan/github/ravi/src/lvm.c:814:7 - andl $15, %eax - cmpl $4, %eax - jne LBB15_27 -Ltmp961: -## %bb.17: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - movq (%rbx), %rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $4, %cl - jne LBB15_28 -Ltmp962: -## %bb.18: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - movq 16(%rax), %rax - jmp LBB15_6 -Ltmp963: -LBB15_13: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - .loc 1 810 7 ## /Users/dylan/github/ravi/src/lvm.c:810:7 - andl $15, %eax - cmpl $4, %eax - jne LBB15_25 -Ltmp964: -## %bb.14: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - movq (%rbx), %rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $4, %cl - jne LBB15_26 -Ltmp965: -## %bb.15: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - movzbl 11(%rax), %eax - jmp LBB15_6 -Ltmp966: -LBB15_7: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 803 18 ## /Users/dylan/github/ravi/src/lvm.c:803:18 - andl $15, %eax - cmpl $5, %eax - jne LBB15_23 -Ltmp967: -## %bb.8: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - movq (%rbx), %r12 -Ltmp968: - ##DEBUG_VALUE: h <- $r12 - movb 8(%r12), %al - andb $15, %al - cmpb $5, %al - jne LBB15_24 -Ltmp969: -## %bb.9: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 804 12 ## /Users/dylan/github/ravi/src/lvm.c:804:12 - movq 40(%r12), %rdi - testq %rdi, %rdi - je LBB15_12 -Ltmp970: -## %bb.10: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - testb $16, 10(%rdi) - jne LBB15_12 -Ltmp971: -## %bb.11: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - movq 24(%r15), %rax - movq 256(%rax), %rdx - movl $4, %esi - callq _luaT_gettm -Ltmp972: - ##DEBUG_VALUE: luaV_objlen:tm <- $rax - .loc 1 805 11 ## /Users/dylan/github/ravi/src/lvm.c:805:11 - testq %rax, %rax -Ltmp973: - .loc 1 805 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:805:11 - jne LBB15_20 -Ltmp974: -LBB15_12: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 806 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:806:7 - movq %r12, %rdi - callq _luaH_getn -Ltmp975: -LBB15_5: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - cltq -Ltmp976: -LBB15_6: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - movq %rax, (%r14) - movw $19, 8(%r14) - .loc 1 825 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:825:1 - popq %rbx -Ltmp977: - popq %r12 - popq %r14 -Ltmp978: - popq %r15 -Ltmp979: - popq %rbp - retq -LBB15_21: -Ltmp980: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 798 18 ## /Users/dylan/github/ravi/src/lvm.c:798:18 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.66(%rip), %rcx - movl $798, %edx ## imm = 0x31E - callq ___assert_rtn -Ltmp981: -LBB15_22: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx - movl $798, %edx ## imm = 0x31E - callq ___assert_rtn -Ltmp982: -LBB15_29: - ##DEBUG_VALUE: luaV_objlen:tm <- $rax - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 820 9 ## /Users/dylan/github/ravi/src/lvm.c:820:9 - leaq L_.str.70(%rip), %rdx - movq %r15, %rdi - movq %rbx, %rsi - callq _luaG_typeerror -Ltmp983: -LBB15_27: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - .loc 1 814 7 ## /Users/dylan/github/ravi/src/lvm.c:814:7 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.68(%rip), %rcx - movl $814, %edx ## imm = 0x32E - callq ___assert_rtn -Ltmp984: -LBB15_28: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.69(%rip), %rcx - movl $814, %edx ## imm = 0x32E - callq ___assert_rtn -Ltmp985: -LBB15_25: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - .loc 1 810 7 ## /Users/dylan/github/ravi/src/lvm.c:810:7 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.68(%rip), %rcx - movl $810, %edx ## imm = 0x32A - callq ___assert_rtn -Ltmp986: -LBB15_26: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - ##DEBUG_VALUE: io <- $r14 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.69(%rip), %rcx - movl $810, %edx ## imm = 0x32A - callq ___assert_rtn -Ltmp987: -LBB15_23: - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - .loc 1 803 18 ## /Users/dylan/github/ravi/src/lvm.c:803:18 - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.66(%rip), %rcx - movl $803, %edx ## imm = 0x323 - callq ___assert_rtn -Ltmp988: -LBB15_24: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_objlen:L <- $r15 - ##DEBUG_VALUE: luaV_objlen:ra <- $r14 - ##DEBUG_VALUE: luaV_objlen:rb <- $rbx - leaq L___func__.luaV_objlen(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx - movl $803, %edx ## imm = 0x323 - callq ___assert_rtn -Ltmp989: -Lfunc_end15: - .cfi_endproc - .p2align 2, 0x90 - .data_region jt32 -.set L15_0_set_13, LBB15_13-LJTI15_0 -.set L15_0_set_7, LBB15_7-LJTI15_0 -.set L15_0_set_19, LBB15_19-LJTI15_0 -.set L15_0_set_16, LBB15_16-LJTI15_0 -.set L15_0_set_2, LBB15_2-LJTI15_0 -LJTI15_0: - .long L15_0_set_13 - .long L15_0_set_7 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_16 - .long L15_0_set_2 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_19 - .long L15_0_set_2 - .end_data_region - ## -- End function - .globl _luaV_div ## -- Begin function luaV_div - .p2align 4, 0x90 -_luaV_div: ## @luaV_div -Lfunc_begin16: - .loc 1 834 0 ## /Users/dylan/github/ravi/src/lvm.c:834:0 - .cfi_startproc -## %bb.0: - ##DEBUG_VALUE: luaV_div:L <- $rdi - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:n <- $rdx - movq %rdx, %rcx -Ltmp990: - ##DEBUG_VALUE: luaV_div:n <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 835 20 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:835:20 - leaq 1(%rdx), %rax - .loc 1 835 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:835:25 - cmpq $1, %rax -Ltmp991: - .loc 1 835 7 ## /Users/dylan/github/ravi/src/lvm.c:835:7 - ja LBB16_3 -Ltmp992: -## %bb.1: - ##DEBUG_VALUE: luaV_div:n <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 836 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:836:11 - testq %rcx, %rcx -Ltmp993: - .loc 1 836 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:836:9 - je LBB16_6 -Ltmp994: -## %bb.2: - ##DEBUG_VALUE: luaV_div:n <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 838 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:838:12 - negq %rsi -Ltmp995: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq %rsi, %rax - retq -Ltmp996: -LBB16_3: - ##DEBUG_VALUE: luaV_div:n <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 842 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:842:26 - movq %rsi, %rax - cqto - idivq %rcx -Ltmp997: - ##DEBUG_VALUE: q <- $rax - .loc 1 842 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:842:17 - xorq %rsi, %rcx -Ltmp998: - .loc 1 842 21 ## /Users/dylan/github/ravi/src/lvm.c:842:21 - js LBB16_4 -Ltmp999: -## %bb.5: - ##DEBUG_VALUE: q <- $rax - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 0 21 ## /Users/dylan/github/ravi/src/lvm.c:0:21 - retq -Ltmp1000: -LBB16_4: - ##DEBUG_VALUE: q <- $rax - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - .loc 1 842 9 ## /Users/dylan/github/ravi/src/lvm.c:842:9 - cmpq $1, %rdx - adcq $-1, %rax -Ltmp1001: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - retq -Ltmp1002: -LBB16_6: - ##DEBUG_VALUE: luaV_div:n <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rsi - ##DEBUG_VALUE: luaV_div:L <- $rdi - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp1003: - .loc 1 837 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:837:7 - leaq L_.str.71(%rip), %rsi -Ltmp1004: - xorl %eax, %eax - callq _luaG_runerror -Ltmp1005: -Lfunc_end16: - .cfi_endproc - ## -- End function - .globl _luaV_mod ## -- Begin function luaV_mod - .p2align 4, 0x90 -_luaV_mod: ## @luaV_mod -Lfunc_begin17: - .loc 1 854 0 ## /Users/dylan/github/ravi/src/lvm.c:854:0 - .cfi_startproc -## %bb.0: - ##DEBUG_VALUE: luaV_mod:L <- $rdi - ##DEBUG_VALUE: luaV_mod:m <- $rsi - ##DEBUG_VALUE: luaV_mod:n <- $rdx - movq %rdx, %r8 -Ltmp1006: - ##DEBUG_VALUE: luaV_mod:n <- $r8 - ##DEBUG_VALUE: luaV_mod:L <- $rdi - .loc 1 855 20 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:855:20 - leaq 1(%rdx), %rax - .loc 1 855 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:855:25 - cmpq $1, %rax -Ltmp1007: - .loc 1 855 7 ## /Users/dylan/github/ravi/src/lvm.c:855:7 - ja LBB17_4 -Ltmp1008: -## %bb.1: - ##DEBUG_VALUE: luaV_mod:n <- $r8 - ##DEBUG_VALUE: luaV_mod:m <- $rsi - ##DEBUG_VALUE: luaV_mod:L <- $rdi - .loc 1 856 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:856:11 - testq %r8, %r8 -Ltmp1009: - .loc 1 856 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:856:9 - je LBB17_3 -Ltmp1010: -## %bb.2: - ##DEBUG_VALUE: luaV_mod:n <- $r8 - ##DEBUG_VALUE: luaV_mod:m <- $rsi - ##DEBUG_VALUE: luaV_mod:L <- $rdi - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %ecx, %ecx - .loc 1 866 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:866:1 - movq %rcx, %rax - retq -Ltmp1011: -LBB17_4: - ##DEBUG_VALUE: luaV_mod:n <- $r8 - ##DEBUG_VALUE: luaV_mod:m <- $rsi - ##DEBUG_VALUE: luaV_mod:L <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movq %rsi, %rcx -Ltmp1012: - ##DEBUG_VALUE: luaV_mod:m <- $rcx - .loc 1 861 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:861:23 - movq %rsi, %rax - cqto - idivq %r8 -Ltmp1013: - ##DEBUG_VALUE: r <- $rdx - .loc 1 862 22 ## /Users/dylan/github/ravi/src/lvm.c:862:22 - xorq %r8, %rcx -Ltmp1014: - .loc 1 862 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - testq %rdx, %rdx - .loc 1 862 16 ## /Users/dylan/github/ravi/src/lvm.c:862:16 - cmoveq %rdx, %r8 -Ltmp1015: - sarq $63, %rcx - andq %r8, %rcx - addq %rdx, %rcx -Ltmp1016: - .loc 1 866 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:866:1 - movq %rcx, %rax - retq -Ltmp1017: -LBB17_3: - ##DEBUG_VALUE: luaV_mod:n <- $r8 - ##DEBUG_VALUE: luaV_mod:m <- $rsi - ##DEBUG_VALUE: luaV_mod:L <- $rdi - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp1018: - .loc 1 857 7 ## /Users/dylan/github/ravi/src/lvm.c:857:7 - leaq L_.str.72(%rip), %rsi -Ltmp1019: - xorl %eax, %eax - callq _luaG_runerror -Ltmp1020: -Lfunc_end17: - .cfi_endproc - ## -- End function - .globl _luaV_shiftl ## -- Begin function luaV_shiftl - .p2align 4, 0x90 -_luaV_shiftl: ## @luaV_shiftl -Lfunc_begin18: - .loc 1 875 0 ## /Users/dylan/github/ravi/src/lvm.c:875:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - ##DEBUG_VALUE: luaV_shiftl:y <- $rsi - ##DEBUG_VALUE: luaV_shiftl:y <- $rsi -Ltmp1021: - .loc 1 876 9 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rsi, %rsi -Ltmp1022: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - js LBB18_1 -Ltmp1023: -## %bb.2: - ##DEBUG_VALUE: luaV_shiftl:y <- $rsi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 882 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - movl %esi, %ecx - shlq %cl, %rdi -Ltmp1024: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %eax, %eax - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $63, %rsi -Ltmp1025: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovleq %rdi, %rax - popq %rbp - retq -Ltmp1026: -LBB18_1: - ##DEBUG_VALUE: luaV_shiftl:y <- $rsi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %esi, %ecx - negl %ecx - ## kill: def $cl killed $cl killed $ecx - shrq %cl, %rdi -Ltmp1027: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %eax, %eax - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $-63, %rsi -Ltmp1028: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovgeq %rdi, %rax -Ltmp1029: - .loc 1 884 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:884:1 - popq %rbp - retq -Ltmp1030: -Lfunc_end18: - .cfi_endproc - ## -- End function - .globl _luaV_finishOp ## -- Begin function luaV_finishOp - .p2align 4, 0x90 -_luaV_finishOp: ## @luaV_finishOp -Lfunc_begin19: - .loc 1 938 0 ## /Users/dylan/github/ravi/src/lvm.c:938:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp1031: - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_finishOp:L <- $rdi - .loc 1 939 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:939:21 - movq 32(%rdi), %r14 -Ltmp1032: - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 941 32 ## /Users/dylan/github/ravi/src/lvm.c:941:32 - movq 40(%r14), %rcx - .loc 1 941 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:941:22 - movl -4(%rcx), %ebx - .loc 1 943 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:943:3 - movl %ebx, %edx - addb $-6, %dl - cmpb $109, %dl - ja LBB19_35 -Ltmp1033: -## %bb.1: - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - ##DEBUG_VALUE: luaV_finishOp:L <- $rdi - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq %rdi, %r15 -Ltmp1034: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - movq 32(%r14), %rax -Ltmp1035: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - movzbl %dl, %edx - leaq LJTI19_0(%rip), %rsi - movslq (%rsi,%rdx,4), %rdx - addq %rsi, %rdx - jmpq *%rdx -Ltmp1036: -LBB19_2: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 952 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:952:7 - shrq $4, %rbx - andl $2032, %ebx ## imm = 0x7F0 - movq 16(%r15), %rdx - leaq -16(%rdx), %rcx -Ltmp1037: - ##DEBUG_VALUE: io2 <- $rcx - movq %rcx, 16(%r15) - movq -16(%rdx), %rcx -Ltmp1038: - movq %rcx, (%rax,%rbx) - movzwl -8(%rdx), %edx - movw %dx, 8(%rax,%rbx) - testw %dx, %dx - jns LBB19_30 -Ltmp1039: -## %bb.3: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - andl $127, %edx - movzbl 8(%rcx), %eax -Ltmp1040: - cmpl %eax, %edx - jne LBB19_5 -Ltmp1041: -## %bb.4: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - movb 9(%rcx), %al - xorb $3, %al - movq 24(%r15), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - jne LBB19_30 -Ltmp1042: -LBB19_5: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $952, %edx ## imm = 0x3B8 - callq ___assert_rtn -Ltmp1043: -LBB19_6: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 956 18 ## /Users/dylan/github/ravi/src/lvm.c:956:18 - movq 16(%r15), %rcx - movzwl -8(%rcx), %eax -Ltmp1044: - testw %ax, %ax - je LBB19_7 -Ltmp1045: -## %bb.8: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - movzwl %ax, %eax - cmpl $1, %eax - jne LBB19_10 -Ltmp1046: -## %bb.9: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - cmpl $0, -16(%rcx) - sete %al - jmp LBB19_11 -Ltmp1047: -LBB19_18: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - ##DEBUG_VALUE: io2 <- [DW_OP_constu 16, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: top <- [DW_OP_constu 16, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 969 22 ## /Users/dylan/github/ravi/src/lvm.c:969:22 - movq 16(%r15), %rcx -Ltmp1048: - ##DEBUG_VALUE: io1 <- [DW_OP_constu 48, DW_OP_minus, DW_OP_stack_value] $rcx - .loc 1 972 7 ## /Users/dylan/github/ravi/src/lvm.c:972:7 - movq -16(%rcx), %rdx - movq %rdx, -48(%rcx) - movzwl -8(%rcx), %esi - movw %si, -40(%rcx) - testw %si, %si - jns LBB19_21 -Ltmp1049: -## %bb.19: - ##DEBUG_VALUE: io1 <- [DW_OP_constu 48, DW_OP_minus, DW_OP_stack_value] $rcx - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - andl $127, %esi - movzbl 8(%rdx), %edi - cmpl %edi, %esi - jne LBB19_33 -Ltmp1050: -## %bb.20: - ##DEBUG_VALUE: io1 <- [DW_OP_constu 48, DW_OP_minus, DW_OP_stack_value] $rcx - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - movb 9(%rdx), %dil - xorb $3, %dil - movq 24(%r15), %rsi - movb 84(%rsi), %dl - xorb $3, %dl - testb %dil, %dl - je LBB19_33 -Ltmp1051: -LBB19_21: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq %rbx, %rdx - shrq $20, %rdx - andl $-16, %edx - addq %rdx, %rax -Ltmp1052: - negq %rax - leaq -32(%rcx,%rax), %rsi - shrq $4, %rsi -Ltmp1053: - ##DEBUG_VALUE: total <- $esi - .loc 1 973 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:973:17 - cmpl $2, %esi -Ltmp1054: - .loc 1 973 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:973:11 - jl LBB19_23 -Ltmp1055: -## %bb.22: - ##DEBUG_VALUE: total <- $esi - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - addq $-32, %rcx -Ltmp1056: - .loc 1 974 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:974:16 - movq %rcx, 16(%r15) - .loc 1 975 9 ## /Users/dylan/github/ravi/src/lvm.c:975:9 - movq %r15, %rdi - ## kill: def $esi killed $esi killed $rsi -Ltmp1057: - callq _luaV_concat -Ltmp1058: -LBB19_23: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 978 7 ## /Users/dylan/github/ravi/src/lvm.c:978:7 - movq 32(%r14), %rdx - shrq $4, %rbx - andl $2032, %ebx ## imm = 0x7F0 - movq 16(%r15), %rcx -Ltmp1059: - ##DEBUG_VALUE: io2 <- [DW_OP_constu 16, DW_OP_minus, DW_OP_stack_value] $rcx - movq -16(%rcx), %rax - movq %rax, (%rdx,%rbx) - movzwl -8(%rcx), %ecx -Ltmp1060: - movw %cx, 8(%rdx,%rbx) - testw %cx, %cx - jns LBB19_26 -Ltmp1061: -## %bb.24: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB19_34 -Ltmp1062: -## %bb.25: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - movb 9(%rax), %al - xorb $3, %al - movq 24(%r15), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - jne LBB19_26 -Ltmp1063: -LBB19_34: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $978, %edx ## imm = 0x3D2 - callq ___assert_rtn -Ltmp1064: -LBB19_27: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 983 7 ## /Users/dylan/github/ravi/src/lvm.c:983:7 - cmpb $42, (%rcx) - je LBB19_26 -Ltmp1065: -## %bb.28: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.76(%rip), %rcx - movl $983, %edx ## imm = 0x3D7 - callq ___assert_rtn -Ltmp1066: -LBB19_29: - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 988 30 ## /Users/dylan/github/ravi/src/lvm.c:988:30 - testl $16711680, %ebx ## imm = 0xFF0000 -Ltmp1067: - .loc 1 988 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:988:11 - je LBB19_30 -Ltmp1068: -LBB19_26: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq 8(%r14), %rax - movq %rax, 16(%r15) - jmp LBB19_30 -Ltmp1069: -LBB19_7: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - movb $1, %al - jmp LBB19_11 -Ltmp1070: -LBB19_10: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - xorl %eax, %eax -Ltmp1071: -LBB19_11: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 957 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:957:13 - addq $-16, %rcx - movq %rcx, 16(%r15) -Ltmp1072: - .loc 1 958 15 ## /Users/dylan/github/ravi/src/lvm.c:958:15 - movzwl 66(%r14), %ecx - .loc 1 958 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:958:26 - testb %cl, %cl -Ltmp1073: - .loc 1 958 11 ## /Users/dylan/github/ravi/src/lvm.c:958:11 - js LBB19_13 -Ltmp1074: -## %bb.12: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorb $1, %al - .loc 1 963 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:963:7 - movq 40(%r14), %rcx - cmpb $30, (%rcx) - jne LBB19_32 -Ltmp1075: -LBB19_16: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl %al, %eax -Ltmp1076: - ##DEBUG_VALUE: res <- $eax - .loc 1 964 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:964:18 - shrl $8, %ebx - andl $127, %ebx - .loc 1 964 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:964:15 - cmpl %eax, %ebx -Ltmp1077: - .loc 1 964 11 ## /Users/dylan/github/ravi/src/lvm.c:964:11 - je LBB19_30 -Ltmp1078: -## %bb.17: - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 965 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:965:24 - addq $4, %rcx - movq %rcx, 40(%r14) -Ltmp1079: -LBB19_30: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 997 1 ## /Users/dylan/github/ravi/src/lvm.c:997:1 - addq $8, %rsp - popq %rbx - popq %r14 -Ltmp1080: - popq %r15 -Ltmp1081: - popq %rbp - retq -LBB19_13: -Ltmp1082: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - ##DEBUG_VALUE: luaV_finishOp:inst <- $ebx - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movzbl %bl, %edx -Ltmp1083: - ##DEBUG_VALUE: luaV_finishOp:op <- $edx - .loc 1 959 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:959:9 - cmpl $33, %edx - jne LBB19_31 -Ltmp1084: -## %bb.14: - ##DEBUG_VALUE: luaV_finishOp:op <- $edx - ##DEBUG_VALUE: luaV_finishOp:inst <- $ebx - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 960 24 ## /Users/dylan/github/ravi/src/lvm.c:960:24 - xorl $128, %ecx - movw %cx, 66(%r14) -Ltmp1085: - .loc 1 963 7 ## /Users/dylan/github/ravi/src/lvm.c:963:7 - movq 40(%r14), %rcx - cmpb $30, (%rcx) - je LBB19_16 -Ltmp1086: -LBB19_32: - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.75(%rip), %rcx - movl $963, %edx ## imm = 0x3C3 - callq ___assert_rtn -Ltmp1087: -LBB19_35: - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 995 14 ## /Users/dylan/github/ravi/src/lvm.c:995:14 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $995, %edx ## imm = 0x3E3 - callq ___assert_rtn -Ltmp1088: -LBB19_31: - ##DEBUG_VALUE: luaV_finishOp:op <- $edx - ##DEBUG_VALUE: luaV_finishOp:inst <- $ebx - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 959 9 ## /Users/dylan/github/ravi/src/lvm.c:959:9 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.74(%rip), %rcx - movl $959, %edx ## imm = 0x3BF -Ltmp1089: - callq ___assert_rtn -Ltmp1090: -LBB19_33: - ##DEBUG_VALUE: io1 <- [DW_OP_constu 48, DW_OP_minus, DW_OP_stack_value] $rcx - ##DEBUG_VALUE: luaV_finishOp:base <- $rax - ##DEBUG_VALUE: luaV_finishOp:L <- $r15 - ##DEBUG_VALUE: luaV_finishOp:ci <- $r14 - .loc 1 972 7 ## /Users/dylan/github/ravi/src/lvm.c:972:7 - leaq L___func__.luaV_finishOp(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx -Ltmp1091: - movl $972, %edx ## imm = 0x3CC - callq ___assert_rtn -Ltmp1092: -Lfunc_end19: - .cfi_endproc - .p2align 2, 0x90 - .data_region jt32 -.set L19_0_set_2, LBB19_2-LJTI19_0 -.set L19_0_set_30, LBB19_30-LJTI19_0 -.set L19_0_set_35, LBB19_35-LJTI19_0 -.set L19_0_set_18, LBB19_18-LJTI19_0 -.set L19_0_set_6, LBB19_6-LJTI19_0 -.set L19_0_set_29, LBB19_29-LJTI19_0 -.set L19_0_set_27, LBB19_27-LJTI19_0 -LJTI19_0: - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_30 - .long L19_0_set_35 - .long L19_0_set_30 - .long L19_0_set_35 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_35 - .long L19_0_set_2 - .long L19_0_set_18 - .long L19_0_set_35 - .long L19_0_set_6 - .long L19_0_set_6 - .long L19_0_set_6 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_29 - .long L19_0_set_30 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_27 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_35 - .long L19_0_set_2 - .long L19_0_set_30 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_30 - .long L19_0_set_2 - .long L19_0_set_2 - .long L19_0_set_30 - .long L19_0_set_2 - .end_data_region - ## -- End function - .globl _raviV_check_usertype ## -- Begin function raviV_check_usertype - .p2align 4, 0x90 -_raviV_check_usertype: ## @raviV_check_usertype -Lfunc_begin20: - .loc 1 1133 0 ## /Users/dylan/github/ravi/src/lvm.c:1133:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx -Ltmp1093: - ##DEBUG_VALUE: luaH_getshortstr:key <- $rsi - ##DEBUG_VALUE: luaH_getshortstr:key <- $rsi - .loc 1 1135 11 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:1135:11 - movzwl 8(%rdx), %r8d - .loc 1 1135 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1135:3 - movl %r8d, %ecx - andb $15, %cl - xorl %eax, %eax - cmpb $7, %cl - je LBB20_5 -Ltmp1094: -## %bb.1: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - cmpb $5, %cl - jne LBB20_23 -Ltmp1095: -## %bb.2: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1135 11 ## /Users/dylan/github/ravi/src/lvm.c:1135:11 - andl $15, %r8d -Ltmp1096: - .loc 1 1137 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1137:10 - cmpl $5, %r8d - jne LBB20_24 -Ltmp1097: -## %bb.3: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - movq (%rdx), %rcx - movb 8(%rcx), %dl -Ltmp1098: - andb $15, %dl - cmpb $5, %dl - jne LBB20_25 -Ltmp1099: -## %bb.4: - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1137 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1137:21 - addq $40, %rcx -Ltmp1100: - ##DEBUG_VALUE: raviV_check_usertype:mt <- [DW_OP_deref] $rcx - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rcx), %r8 -Ltmp1101: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - .loc 1 1145 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1145:10 - testq %r8, %r8 -Ltmp1102: - .loc 1 1145 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1145:7 - jne LBB20_9 - jmp LBB20_23 -Ltmp1103: -LBB20_5: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1140 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1140:10 - movzwl %r8w, %ecx - cmpl $32775, %ecx ## imm = 0x8007 - jne LBB20_26 -Ltmp1104: -## %bb.6: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - movq (%rdx), %rcx - cmpb $7, 8(%rcx) - jne LBB20_27 -Ltmp1105: -## %bb.7: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1140 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1140:21 - addq $16, %rcx -Ltmp1106: - ##DEBUG_VALUE: raviV_check_usertype:mt <- [DW_OP_deref] $rcx - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rcx), %r8 -Ltmp1107: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - .loc 1 1145 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1145:10 - testq %r8, %r8 -Ltmp1108: - .loc 1 1145 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1145:7 - je LBB20_23 -Ltmp1109: -LBB20_9: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1148 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1148:16 - movq 24(%rdi), %rcx - movzwl 72(%rcx), %edx - andl $15, %edx - cmpl $5, %edx - jne LBB20_28 -Ltmp1110: -## %bb.10: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - movq 64(%rcx), %rdx -Ltmp1111: - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - movb 8(%rdx), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB20_29 -Ltmp1112: -## %bb.11: - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .file 14 "/Users/dylan/github/ravi/vmbuilder/compiler-output" "/Users/dylan/github/ravi/include/ltable.h" - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, 8(%rsi) - jne LBB20_30 -Ltmp1113: -## %bb.12: - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 14 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rsi), %edi -Ltmp1114: - andl 80(%rdx), %edi - shlq $5, %rdi - addq 24(%rdx), %rdi -Ltmp1115: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq _luaO_nilobject_@GOTPCREL(%rip), %r9 -Ltmp1116: - .p2align 4, 0x90 -LBB20_13: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%rdi), %ecx - cmpl $32772, %ecx ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB20_18 -Ltmp1117: -## %bb.14: ## in Loop: Header=BB20_13 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%rdi), %r10 - movzbl 8(%r10), %ecx - movl %ecx, %edx -Ltmp1118: - andb $15, %dl - cmpb $4, %dl - jne LBB20_31 -Ltmp1119: -## %bb.15: ## in Loop: Header=BB20_13 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - cmpb $4, %cl - jne LBB20_32 -Ltmp1120: -## %bb.16: ## in Loop: Header=BB20_13 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - cmpq %rsi, %r10 -Ltmp1121: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB20_17 -Ltmp1122: -LBB20_18: ## in Loop: Header=BB20_13 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%rdi), %rcx - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdx - shlq $5, %rdx - addq %rdx, %rdi -Ltmp1123: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rcx, %rcx - jne LBB20_13 -Ltmp1124: -## %bb.19: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - .loc 1 1150 12 ## /Users/dylan/github/ravi/src/lvm.c:1150:12 - movzwl 8(%r9), %ecx - .loc 1 1150 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1150:29 - cmpl $32773, %ecx ## imm = 0x8005 - je LBB20_20 - jmp LBB20_23 -Ltmp1125: -LBB20_17: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 0 29 ## /Users/dylan/github/ravi/src/lvm.c:0:29 - movq %rdi, %r9 -Ltmp1126: - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - .loc 1 1150 12 ## /Users/dylan/github/ravi/src/lvm.c:1150:12 - movzwl 8(%r9), %ecx - .loc 1 1150 29 ## /Users/dylan/github/ravi/src/lvm.c:1150:29 - cmpl $32773, %ecx ## imm = 0x8005 - jne LBB20_23 -Ltmp1127: -LBB20_20: - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 1150 55 ## /Users/dylan/github/ravi/src/lvm.c:1150:55 - movq (%r9), %rcx - movb 8(%rcx), %dl - andb $15, %dl - cmpb $5, %dl - jne LBB20_33 -Ltmp1128: -## %bb.21: - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 1150 71 ## /Users/dylan/github/ravi/src/lvm.c:1150:71 - cmpq %rcx, %r8 - .loc 1 1150 78 ## /Users/dylan/github/ravi/src/lvm.c:1150:78 - je LBB20_22 -Ltmp1129: -LBB20_23: - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 1151 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1151:1 - popq %rbp - retq -Ltmp1130: -LBB20_22: - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movl $1, %eax - .loc 1 1151 1 ## /Users/dylan/github/ravi/src/lvm.c:1151:1 - popq %rbp - retq -Ltmp1131: -LBB20_31: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 14 89 29 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp1132: - leaq L_.str.194(%rip), %rsi -Ltmp1133: - leaq L_.str.196(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp1134: -LBB20_32: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rdi - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp1135: - leaq L_.str.194(%rip), %rsi -Ltmp1136: - leaq L_.str.197(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp1137: -LBB20_28: - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1148 16 ## /Users/dylan/github/ravi/src/lvm.c:1148:16 - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1138: - leaq L_.str(%rip), %rsi -Ltmp1139: - leaq L_.str.81(%rip), %rcx - movl $1148, %edx ## imm = 0x47C - callq ___assert_rtn -Ltmp1140: -LBB20_29: - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1141: - leaq L_.str(%rip), %rsi -Ltmp1142: - leaq L_.str.82(%rip), %rcx - movl $1148, %edx ## imm = 0x47C -Ltmp1143: - callq ___assert_rtn -Ltmp1144: -LBB20_30: - ##DEBUG_VALUE: raviV_check_usertype:reg <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp1145: - leaq L_.str.194(%rip), %rsi -Ltmp1146: - leaq L_.str.136(%rip), %rcx - movl $86, %edx -Ltmp1147: - callq ___assert_rtn -Ltmp1148: -LBB20_24: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1137 10 ## /Users/dylan/github/ravi/src/lvm.c:1137:10 - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1149: - leaq L_.str(%rip), %rsi -Ltmp1150: - leaq L_.str.77(%rip), %rcx - movl $1137, %edx ## imm = 0x471 -Ltmp1151: - callq ___assert_rtn -Ltmp1152: -LBB20_25: - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1153: - leaq L_.str(%rip), %rsi -Ltmp1154: - leaq L_.str.78(%rip), %rcx - movl $1137, %edx ## imm = 0x471 - callq ___assert_rtn -Ltmp1155: -LBB20_26: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - .loc 1 1140 10 ## /Users/dylan/github/ravi/src/lvm.c:1140:10 - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1156: - leaq L_.str(%rip), %rsi -Ltmp1157: - leaq L_.str.79(%rip), %rcx - movl $1140, %edx ## imm = 0x474 -Ltmp1158: - callq ___assert_rtn -Ltmp1159: -LBB20_27: - ##DEBUG_VALUE: raviV_check_usertype:o <- $rdx - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - ##DEBUG_VALUE: raviV_check_usertype:L <- $rdi - leaq L___func__.raviV_check_usertype(%rip), %rdi -Ltmp1160: - leaq L_.str(%rip), %rsi -Ltmp1161: - leaq L_.str.80(%rip), %rcx - movl $1140, %edx ## imm = 0x474 -Ltmp1162: - callq ___assert_rtn -Ltmp1163: -LBB20_33: - ##DEBUG_VALUE: raviV_check_usertype:metatab <- $r9 - ##DEBUG_VALUE: raviV_check_usertype:mt <- $r8 - ##DEBUG_VALUE: raviV_check_usertype:name <- $rsi - .loc 1 1150 55 ## /Users/dylan/github/ravi/src/lvm.c:1150:55 - leaq L___func__.raviV_check_usertype(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp1164: - leaq L_.str.84(%rip), %rcx - movl $1150, %edx ## imm = 0x47E - callq ___assert_rtn -Ltmp1165: -Lfunc_end20: - .cfi_endproc - ## -- End function - .section __TEXT,__literal8,8byte_literals - .p2align 3 ## -- Begin function luaV_execute -LCPI21_0: - .quad -4332462841530417152 ## double -9.2233720368547758E+18 -LCPI21_1: - .quad 4890909195324358656 ## double 9.2233720368547758E+18 - .section __TEXT,__literal16,16byte_literals - .p2align 4 -LCPI21_2: - .quad -9223372036854775808 ## double -0 - .quad -9223372036854775808 ## double -0 - .section __TEXT,__text,regular,pure_instructions - .globl _luaV_execute - .p2align 4, 0x90 -_luaV_execute: ## @luaV_execute -Lfunc_begin21: - .loc 1 1153 0 ## /Users/dylan/github/ravi/src/lvm.c:1153:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp1166: - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $264, %rsp ## imm = 0x108 - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: luaV_execute:L <- $rdi -Ltmp1167: - ##DEBUG_VALUE: luaV_div:L <- $rdi - ##DEBUG_VALUE: luaV_mod:L <- $rdi - .loc 1 1276 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:1276:21 - movq 32(%rdi), %rbx -Ltmp1168: - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1282 18 ## /Users/dylan/github/ravi/src/lvm.c:1282:18 - orw $8, 66(%rbx) - .loc 1 1285 8 ## /Users/dylan/github/ravi/src/lvm.c:1285:8 - movq (%rbx), %rax - movzwl 8(%rax), %ecx - cmpl $32774, %ecx ## imm = 0x8006 - jne LBB21_1898 -Ltmp1169: -## %bb.1: - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - ##DEBUG_VALUE: luaV_mod:L <- $rdi - ##DEBUG_VALUE: luaV_div:L <- $rdi - ##DEBUG_VALUE: luaV_execute:L <- $rdi - .loc 1 0 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:8 - movq %rdi, %r13 -Ltmp1170: - ##DEBUG_VALUE: luaV_mod:L <- $r13 - ##DEBUG_VALUE: luaV_div:L <- $r13 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - leaq 24(%rdi), %rcx - movq %rcx, -96(%rbp) ## 8-byte Spill - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %rdi, -88(%rbp) ## 8-byte Spill -Ltmp1171: - .p2align 4, 0x90 -LBB21_2: ## =>This Loop Header: Depth=1 - ## Child Loop BB21_8 Depth 2 - ## Child Loop BB21_16 Depth 2 - ## Child Loop BB21_23 Depth 2 - ## Child Loop BB21_31 Depth 2 - ## Child Loop BB21_36 Depth 2 - ## Child Loop BB21_38 Depth 3 - ## Child Loop BB21_42 Depth 3 - ## Child Loop BB21_46 Depth 2 - ## Child Loop BB21_76 Depth 2 - ## Child Loop BB21_106 Depth 2 - ## Child Loop BB21_156 Depth 2 - ## Child Loop BB21_53 Depth 2 - ## Child Loop BB21_213 Depth 2 - ## Child Loop BB21_324 Depth 2 - ## Child Loop BB21_369 Depth 2 - ## Child Loop BB21_388 Depth 2 - ## Child Loop BB21_404 Depth 2 - ## Child Loop BB21_420 Depth 2 - ## Child Loop BB21_554 Depth 2 - ## Child Loop BB21_595 Depth 2 - ## Child Loop BB21_436 Depth 2 - ## Child Loop BB21_574 Depth 2 - ## Child Loop BB21_453 Depth 2 - ## Child Loop BB21_473 Depth 2 - ## Child Loop BB21_493 Depth 2 - ## Child Loop BB21_515 Depth 2 - ## Child Loop BB21_537 Depth 2 - ## Child Loop BB21_609 Depth 2 - ## Child Loop BB21_621 Depth 2 - ## Child Loop BB21_631 Depth 2 - ## Child Loop BB21_640 Depth 2 - ## Child Loop BB21_645 Depth 2 - ## Child Loop BB21_657 Depth 2 - ## Child Loop BB21_663 Depth 2 - ## Child Loop BB21_674 Depth 2 - ## Child Loop BB21_691 Depth 2 - ## Child Loop BB21_708 Depth 2 - ## Child Loop BB21_722 Depth 2 - ## Child Loop BB21_741 Depth 2 - ## Child Loop BB21_753 Depth 2 - ## Child Loop BB21_793 Depth 2 - ## Child Loop BB21_808 Depth 2 - ## Child Loop BB21_848 Depth 2 - ## Child Loop BB21_858 Depth 2 - ## Child Loop BB21_870 Depth 3 - ## Child Loop BB21_905 Depth 2 - ## Child Loop BB21_908 Depth 3 - ## Child Loop BB21_926 Depth 2 - ## Child Loop BB21_930 Depth 3 - ## Child Loop BB21_935 Depth 3 - ## Child Loop BB21_943 Depth 3 - ## Child Loop BB21_947 Depth 3 - ## Child Loop BB21_1090 Depth 2 - ## Child Loop BB21_1101 Depth 2 - ## Child Loop BB21_1362 Depth 2 - ## Child Loop BB21_1365 Depth 2 - ## Child Loop BB21_1368 Depth 2 - ## Child Loop BB21_1375 Depth 2 - ## Child Loop BB21_1382 Depth 2 - ## Child Loop BB21_1389 Depth 2 - ## Child Loop BB21_1396 Depth 2 - ## Child Loop BB21_1403 Depth 2 - ## Child Loop BB21_1410 Depth 2 - ## Child Loop BB21_1417 Depth 2 - ## Child Loop BB21_1424 Depth 2 - ## Child Loop BB21_1431 Depth 2 - ## Child Loop BB21_1438 Depth 2 - ## Child Loop BB21_1445 Depth 2 - ## Child Loop BB21_1452 Depth 2 - ## Child Loop BB21_1459 Depth 2 - ## Child Loop BB21_1511 Depth 2 - ## Child Loop BB21_1518 Depth 2 - ## Child Loop BB21_1527 Depth 2 - ## Child Loop BB21_1531 Depth 2 - ## Child Loop BB21_1523 Depth 2 - ## Child Loop BB21_1535 Depth 2 - ## Child Loop BB21_1540 Depth 2 - ## Child Loop BB21_1545 Depth 2 - ## Child Loop BB21_1468 Depth 2 - ## Child Loop BB21_1476 Depth 2 - ## Child Loop BB21_1482 Depth 2 - ## Child Loop BB21_1491 Depth 2 - ## Child Loop BB21_1500 Depth 2 - ## Child Loop BB21_1220 Depth 2 - ## Child Loop BB21_1229 Depth 2 - ## Child Loop BB21_1238 Depth 2 - ## Child Loop BB21_1274 Depth 2 - ## Child Loop BB21_1261 Depth 2 - ## Child Loop BB21_1296 Depth 2 - ## Child Loop BB21_1069 Depth 2 - ## Child Loop BB21_1143 Depth 2 - ## Child Loop BB21_1150 Depth 3 - ## Child Loop BB21_1080 Depth 2 - ## Child Loop BB21_339 Depth 2 - ## Child Loop BB21_351 Depth 3 - ## Child Loop BB21_1311 Depth 2 - ## Child Loop BB21_1321 Depth 2 - ## Child Loop BB21_1329 Depth 2 - ## Child Loop BB21_1340 Depth 2 - ## Child Loop BB21_1351 Depth 2 - ## Child Loop BB21_951 Depth 2 - ## Child Loop BB21_958 Depth 2 - ## Child Loop BB21_965 Depth 2 - ## Child Loop BB21_972 Depth 2 - ## Child Loop BB21_982 Depth 2 - ## Child Loop BB21_992 Depth 2 - ## Child Loop BB21_997 Depth 2 - ## Child Loop BB21_1009 Depth 2 - ## Child Loop BB21_1021 Depth 2 - ## Child Loop BB21_1033 Depth 2 - ## Child Loop BB21_1045 Depth 2 - ## Child Loop BB21_1057 Depth 2 - ## Child Loop BB21_1192 Depth 2 - ## Child Loop BB21_1205 Depth 3 - ## Child Loop BB21_294 Depth 2 - ## Child Loop BB21_302 Depth 3 - ## Child Loop BB21_1168 Depth 2 - ## Child Loop BB21_1176 Depth 3 - ## Child Loop BB21_1125 Depth 2 - ## Child Loop BB21_263 Depth 2 - ## Child Loop BB21_766 Depth 2 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1285 8 ## /Users/dylan/github/ravi/src/lvm.c:1285:8 - movq (%rax), %rcx -Ltmp1172: - ##DEBUG_VALUE: luaV_execute:cl <- $rcx - cmpb $6, 8(%rcx) - jne LBB21_1897 -Ltmp1173: -## %bb.3: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:cl <- $rcx - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1286 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1286:11 - movq 24(%rcx), %rax - .loc 1 1286 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1286:14 - movq 48(%rax), %r9 -Ltmp1174: - ##DEBUG_VALUE: luaV_execute:k <- $r9 - .loc 1 1289 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1289:16 - leaq 40(%rbx), %rax - movq %rax, -64(%rbp) ## 8-byte Spill - movq 40(%rbx), %r10 -Ltmp1175: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - movl (%r10), %r12d - addq $4, %r10 -Ltmp1176: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1299 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - testb $12, 200(%r13) - movq %r9, -48(%rbp) ## 8-byte Spill -Ltmp1177: - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - jne LBB21_6 -Ltmp1178: -## %bb.4: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:cl <- $rcx - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - xorl %eax, %eax -Ltmp1179: -LBB21_5: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - leaq 32(%rbx), %rdx -Ltmp1180: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - movq %rdx, -56(%rbp) ## 8-byte Spill - movzbl %al, %r11d -Ltmp1181: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - movq %rbx, -128(%rbp) ## 8-byte Spill -Ltmp1182: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - movq 32(%rbx), %r8 -Ltmp1183: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - movzbl %r12b, %eax -Ltmp1184: - ##DEBUG_VALUE: op <- $eax - movq %r12, %r15 - shrq $4, %r15 - andl $2032, %r15d ## imm = 0x7F0 - addq %r8, %r15 -Ltmp1185: - ##DEBUG_VALUE: ra <- $r15 - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq %rcx, -136(%rbp) ## 8-byte Spill - leaq 32(%rcx), %rcx -Ltmp1186: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: getcached:encup <- [DW_OP_constu 120, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %rcx, -120(%rbp) ## 8-byte Spill - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1187: -LBB21_6: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:cl <- $rcx - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1188: - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - movq %r13, %rdi - movq %rcx, %r15 -Ltmp1189: - ##DEBUG_VALUE: luaV_execute:cl <- $r15 - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq %r13, %r14 -Ltmp1190: - ##DEBUG_VALUE: luaV_execute:L <- $r14 - movq %r10, %r13 - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - callq _luaG_traceexec -Ltmp1191: - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq %r13, %r10 - movq %r14, %r13 -Ltmp1192: - ##DEBUG_VALUE: luaV_execute:L <- $r13 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r15, %rcx -Ltmp1193: - .loc 1 1299 5 ## /Users/dylan/github/ravi/src/lvm.c:1299:5 - movb 200(%r13), %al - andb $12, %al - jmp LBB21_5 -Ltmp1194: -LBB21_7: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1303 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1195: - .loc 1 1303 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1196: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1197: - .loc 1 1303 9 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1198: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1199: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_14 -Ltmp1200: - .p2align 4, 0x90 -Ltmp1201: ## Block address taken -LBB21_8: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1302 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1302:9 - movzbl %r12b, %eax -Ltmp1202: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1563 -Ltmp1203: -## %bb.9: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - shrl $24, %r12d -Ltmp1204: - shlq $4, %r12 - movq (%r8,%r12), %rax - movq %rax, (%r15) - movzwl 8(%r8,%r12), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_13 -Ltmp1205: -## %bb.10: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1564 -Ltmp1206: -## %bb.11: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1302 9 ## /Users/dylan/github/ravi/src/lvm.c:1302:9 - je LBB21_13 -Ltmp1207: -## %bb.12: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1564 -Ltmp1208: -LBB21_13: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1303 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp1209: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1303 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - testl %r11d, %r11d -Ltmp1210: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1211: - .loc 1 1303 9 ## /Users/dylan/github/ravi/src/lvm.c:1303:9 - jne LBB21_7 -Ltmp1212: -LBB21_14: ## in Loop: Header=BB21_8 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1213: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1214: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1215: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1216: -LBB21_15: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1308 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1217: - .loc 1 1308 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1218: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1219: - .loc 1 1308 9 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1220: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1221: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_21 -Ltmp1222: - .p2align 4, 0x90 -Ltmp1223: ## Block address taken -LBB21_16: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1306 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1306:26 - shrl $16, %r12d -Ltmp1224: - .loc 1 1306 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1306:24 - shlq $4, %r12 -Ltmp1225: - .loc 1 1307 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - movq (%r9,%r12), %rax -Ltmp1226: - movq %rax, (%r15) - movzwl 8(%r9,%r12), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_20 -Ltmp1227: -## %bb.17: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1565 -Ltmp1228: -## %bb.18: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1307 9 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - je LBB21_20 -Ltmp1229: -## %bb.19: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1565 -Ltmp1230: -LBB21_20: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1308 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp1231: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1308 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - testl %r11d, %r11d -Ltmp1232: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1233: - .loc 1 1308 9 ## /Users/dylan/github/ravi/src/lvm.c:1308:9 - jne LBB21_15 -Ltmp1234: -LBB21_21: ## in Loop: Header=BB21_16 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1235: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1236: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1237: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1238: -LBB21_22: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1315 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1239: - .loc 1 1315 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1240: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1241: - .loc 1 1315 9 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1242: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1243: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_29 -Ltmp1244: - .p2align 4, 0x90 -Ltmp1245: ## Block address taken -LBB21_23: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1312 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - movl (%r10), %ecx - cmpb $46, %cl - jne LBB21_1709 -Ltmp1246: -## %bb.24: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1313 16 ## /Users/dylan/github/ravi/src/lvm.c:1313:16 - shrq $4, %rcx - .loc 1 1313 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1313:18 - andl $-16, %ecx -Ltmp1247: - .loc 1 1314 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1314:9 - movq (%r9,%rcx), %rax -Ltmp1248: - movq %rax, (%r15) - movzwl 8(%r9,%rcx), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_28 -Ltmp1249: -## %bb.25: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1639 -Ltmp1250: -## %bb.26: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1314 9 ## /Users/dylan/github/ravi/src/lvm.c:1314:9 - je LBB21_28 -Ltmp1251: -## %bb.27: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1639 -Ltmp1252: -LBB21_28: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1315 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - movl 4(%r10), %r12d -Ltmp1253: - addq $8, %r10 -Ltmp1254: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1315 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - testl %r11d, %r11d -Ltmp1255: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1256: - .loc 1 1315 9 ## /Users/dylan/github/ravi/src/lvm.c:1315:9 - jne LBB21_22 -Ltmp1257: -LBB21_29: ## in Loop: Header=BB21_23 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1258: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1259: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1260: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1261: -LBB21_30: ## in Loop: Header=BB21_31 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1320 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1262: - .loc 1 1320 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1263: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1264: - .loc 1 1320 9 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1265: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1266: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_34 -Ltmp1267: - .p2align 4, 0x90 -Ltmp1268: ## Block address taken -LBB21_31: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1318 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1318:9 - movl %r12d, %eax -Ltmp1269: - shrl $24, %eax - movl %eax, (%r15) - movw $1, 8(%r15) -Ltmp1270: - .loc 1 1319 13 ## /Users/dylan/github/ravi/src/lvm.c:1319:13 - testl $16711680, %r12d ## imm = 0xFF0000 -Ltmp1271: - .loc 1 1319 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1319:13 - je LBB21_33 -Ltmp1272: -## %bb.32: ## in Loop: Header=BB21_31 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - addq $4, %r10 -Ltmp1273: -LBB21_33: ## in Loop: Header=BB21_31 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1320 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - movl (%r10), %r12d -Ltmp1274: - addq $4, %r10 -Ltmp1275: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1320 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - testl %r11d, %r11d -Ltmp1276: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1277: - .loc 1 1320 9 ## /Users/dylan/github/ravi/src/lvm.c:1320:9 - jne LBB21_30 -Ltmp1278: -LBB21_34: ## in Loop: Header=BB21_31 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1279: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1280: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1281: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1282: -LBB21_35: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1327 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1283: - .loc 1 1327 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1284: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1285: - .loc 1 1327 9 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1286: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1287: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_44 -Ltmp1288: - .p2align 4, 0x90 -Ltmp1289: ## Block address taken -LBB21_36: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_38 Depth 3 - ## Child Loop BB21_42 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1323 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1323:17 - movl %r12d, %eax -Ltmp1290: - shrl $24, %eax -Ltmp1291: - ##DEBUG_VALUE: b <- $eax - .loc 1 1324 9 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - leal 1(%rax), %ecx - andl $7, %ecx - je LBB21_40 -Ltmp1292: -## %bb.37: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %edx, %edx -Ltmp1293: - .p2align 4, 0x90 -LBB21_38: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_36 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: b <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 1325 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1325:11 - movw $0, 8(%r15) -Ltmp1294: - ##DEBUG_VALUE: b <- undef - addq $16, %r15 -Ltmp1295: - .loc 1 1326 9 ## /Users/dylan/github/ravi/src/lvm.c:1326:9 - incl %edx - cmpl %edx, %ecx - jne LBB21_38 -Ltmp1296: -## %bb.39: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1324 9 ## /Users/dylan/github/ravi/src/lvm.c:1324:9 - subl %edx, %eax -Ltmp1297: -LBB21_40: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - cmpl $117440512, %r12d ## imm = 0x7000000 - jb LBB21_43 -Ltmp1298: -## %bb.41: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1325 11 ## /Users/dylan/github/ravi/src/lvm.c:1325:11 - notl %eax - addq $120, %r15 -Ltmp1299: - .p2align 4, 0x90 -LBB21_42: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_36 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: ra <- undef - ##DEBUG_VALUE: b <- undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 16, DW_OP_stack_value] undef - movw $0, -112(%r15) -Ltmp1300: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 32, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 16, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - movw $0, -96(%r15) -Ltmp1301: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 48, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 2, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 32, DW_OP_stack_value] undef - movw $0, -80(%r15) -Ltmp1302: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 64, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 3, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 48, DW_OP_stack_value] undef - movw $0, -64(%r15) -Ltmp1303: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 80, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 4, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 64, DW_OP_stack_value] undef - movw $0, -48(%r15) -Ltmp1304: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 96, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 5, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 80, DW_OP_stack_value] undef - movw $0, -32(%r15) -Ltmp1305: - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 112, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 6, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 96, DW_OP_stack_value] undef - movw $0, -16(%r15) -Ltmp1306: - ##DEBUG_VALUE: b <- [DW_OP_constu 8, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 128, DW_OP_stack_value] undef - ##DEBUG_VALUE: b <- [DW_OP_constu 7, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: ra <- [DW_OP_plus_uconst 112, DW_OP_stack_value] undef - movw $0, (%r15) - .loc 1 1326 9 ## /Users/dylan/github/ravi/src/lvm.c:1326:9 - subq $-128, %r15 - addl $8, %eax - jne LBB21_42 -Ltmp1307: -LBB21_43: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1327 9 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - movl (%r10), %r12d -Ltmp1308: - addq $4, %r10 -Ltmp1309: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1327 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - testl %r11d, %r11d -Ltmp1310: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1311: - .loc 1 1327 9 ## /Users/dylan/github/ravi/src/lvm.c:1327:9 - jne LBB21_35 -Ltmp1312: -LBB21_44: ## in Loop: Header=BB21_36 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1313: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1314: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1315: -LBB21_45: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1332 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1316: - .loc 1 1332 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1317: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1318: - .loc 1 1332 9 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1319: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1320: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_51 -Ltmp1321: - .p2align 4, 0x90 -Ltmp1322: ## Block address taken -LBB21_46: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1330 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1330:17 - shrl $24, %r12d -Ltmp1323: - ##DEBUG_VALUE: b <- $r12d - .loc 1 1331 9 ## /Users/dylan/github/ravi/src/lvm.c:1331:9 - movq -120(%rbp), %rax ## 8-byte Reload -Ltmp1324: - movq (%rax,%r12,8), %rax - movq (%rax), %rcx -Ltmp1325: - ##DEBUG_VALUE: io2 <- $rcx - movq (%rcx), %rax - movq %rax, (%r15) - movzwl 8(%rcx), %ecx -Ltmp1326: - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_50 -Ltmp1327: -## %bb.47: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1722 -Ltmp1328: -## %bb.48: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1331 9 ## /Users/dylan/github/ravi/src/lvm.c:1331:9 - je LBB21_50 -Ltmp1329: -## %bb.49: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1722 -Ltmp1330: -LBB21_50: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1332 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - movl (%r10), %r12d -Ltmp1331: - addq $4, %r10 -Ltmp1332: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1332 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - testl %r11d, %r11d -Ltmp1333: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1334: - .loc 1 1332 9 ## /Users/dylan/github/ravi/src/lvm.c:1332:9 - jne LBB21_45 -Ltmp1335: -LBB21_51: ## in Loop: Header=BB21_46 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1336: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1337: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1338: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1339: -LBB21_52: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1338 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1340: - .loc 1 1338 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp1341: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1342: - .loc 1 1338 9 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1343: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1344: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_61 -Ltmp1345: - .p2align 4, 0x90 -Ltmp1346: ## Block address taken -LBB21_53: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1335 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1335:32 - shrl $24, %r12d -Ltmp1347: - .loc 1 1335 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1335:21 - movq -120(%rbp), %rax ## 8-byte Reload -Ltmp1348: - movq (%rax,%r12,8), %rsi -Ltmp1349: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 1336 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - movq (%rsi), %rdx -Ltmp1350: - ##DEBUG_VALUE: io1 <- $rdx - movq (%r15), %rax - movq %rax, (%rdx) - movzwl 8(%r15), %ecx - movw %cx, 8(%rdx) - testw %cx, %cx - jns LBB21_57 -Ltmp1351: -## %bb.54: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $rdx - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp1352: - cmpl %edx, %ecx - jne LBB21_1723 -Ltmp1353: -## %bb.55: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1336 9 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - je LBB21_57 -Ltmp1354: -## %bb.56: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1723 -Ltmp1355: -LBB21_57: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1337 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1337:9 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB21_60 -Ltmp1356: -## %bb.58: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_60 -Ltmp1357: -## %bb.59: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %rdi - movq %r10, %rbx -Ltmp1358: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r15d -Ltmp1359: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r8, %r12 -Ltmp1360: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 1337 9 ## /Users/dylan/github/ravi/src/lvm.c:1337:9 - callq _luaC_upvalbarrier_ -Ltmp1361: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1362: - .p2align 4, 0x90 -LBB21_60: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1338 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp1363: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1338 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - testl %r11d, %r11d -Ltmp1364: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1365: - .loc 1 1338 9 ## /Users/dylan/github/ravi/src/lvm.c:1338:9 - jne LBB21_52 -Ltmp1366: -LBB21_61: ## in Loop: Header=BB21_53 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1367: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1368: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp1369: -LBB21_62: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_68 -Ltmp1370: -## %bb.63: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1371: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jne LBB21_1725 -Ltmp1372: -## %bb.64: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movq (%rdx), %rax -Ltmp1373: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1815 -Ltmp1374: -## %bb.65: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rbx), %rcx -Ltmp1375: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpl %ecx, 64(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1376: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jbe LBB21_1726 -Ltmp1377: -## %bb.66: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movl %ecx, %ecx -Ltmp1378: - movq 56(%rax), %rax -Ltmp1379: - ##DEBUG_VALUE: data <- $rax - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rax,%rcx,8), %rax -Ltmp1380: - movq %rax, (%r15) - movw $3, 8(%r15) - jmp LBB21_86 -Ltmp1381: -LBB21_67: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1344 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp1382: - .loc 1 1344 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp1383: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1384: - .loc 1 1344 9 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1385: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1386: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_91 -Ltmp1387: -LBB21_68: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_75 -Ltmp1388: -## %bb.69: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1389: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jne LBB21_1725 -Ltmp1390: -## %bb.70: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movq (%rdx), %rax -Ltmp1391: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1815 -Ltmp1392: -## %bb.71: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rbx), %rcx -Ltmp1393: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpl %ecx, 64(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1394: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jbe LBB21_1726 -Ltmp1395: -## %bb.72: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movl %ecx, %ecx -Ltmp1396: - movq 56(%rax), %rax -Ltmp1397: - ##DEBUG_VALUE: data <- $rax - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rax,%rcx,8), %rax -Ltmp1398: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB21_86 -Ltmp1399: -LBB21_73: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %r12 -Ltmp1400: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movl %r11d, %r14d -Ltmp1401: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - movq %rdx, %r13 -Ltmp1402: - ##DEBUG_VALUE: upval <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - callq _luaH_getint -Ltmp1403: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %rdx - movl %r14d, %r11d - movq %r12, %r10 -Ltmp1404: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpw $0, 8(%rax) -Ltmp1405: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jne LBB21_84 - jmp LBB21_74 -Ltmp1406: -LBB21_75: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1407: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - xorl %r8d, %r8d - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp1408: - movq %r13, %rdi - movq %rdx, %rsi - movq %rbx, %rdx -Ltmp1409: - movq %r15, %rcx - movq %r10, %rbx -Ltmp1410: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp1411: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1412: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1413: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1414: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_90 -Ltmp1415: - .p2align 4, 0x90 -Ltmp1416: ## Block address taken -LBB21_76: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp1417: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - .loc 1 1342 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1342:22 - movzbl %r12b, %eax -Ltmp1418: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $12, %al - cmpb $12, %al - jne LBB21_1814 -Ltmp1419: -## %bb.77: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movl %r12d, %eax - shrl $24, %eax - movq -120(%rbp), %rcx ## 8-byte Reload - movq (%rcx,%rax,8), %rax - movq (%rax), %rdx -Ltmp1420: - ##DEBUG_VALUE: upval <- $rdx - .loc 1 1342 22 ## /Users/dylan/github/ravi/src/lvm.c:1342:22 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %ebx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rbx - addq -80(%rbp), %rbx ## 8-byte Folded Reload - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rbx -Ltmp1421: - ##DEBUG_VALUE: rc <- $rbx - .loc 1 1343 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movzwl 8(%rdx), %eax -Ltmp1422: - .loc 1 1343 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_62 -Ltmp1423: -## %bb.78: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1424: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jne LBB21_82 -Ltmp1425: -## %bb.79: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rdx), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1815 -Ltmp1426: -## %bb.80: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - movq (%rbx), %rsi -Ltmp1427: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp1428: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jae LBB21_73 -Ltmp1429: -## %bb.81: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1430: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpw $0, 8(%rax) -Ltmp1431: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - jne LBB21_84 -Ltmp1432: -LBB21_74: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp1433: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq %r13, %rdi - movq %rdx, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - movq %r10, %rbx -Ltmp1434: - callq _luaV_finishget -Ltmp1435: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp1436: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1437: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1438: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_90 -Ltmp1439: - .p2align 4, 0x90 -LBB21_82: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rdx), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1815 -Ltmp1440: -## %bb.83: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1441: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - movq %r10, %r12 -Ltmp1442: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movq %rdx, %r13 -Ltmp1443: - ##DEBUG_VALUE: upval <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq %rbx, %rsi - callq _luaH_get -Ltmp1444: - ##DEBUG_VALUE: aux <- $rax - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r10 - movl %r14d, %r11d - movq %r13, %rdx -Ltmp1445: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - cmpw $0, 8(%rax) -Ltmp1446: - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - je LBB21_74 -Ltmp1447: -LBB21_84: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - movq (%rax), %rcx - movq %rcx, (%r15) - movzwl 8(%rax), %eax -Ltmp1448: - movw %ax, 8(%r15) - testw %ax, %ax - js LBB21_87 -Ltmp1449: -## %bb.85: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1450: -LBB21_86: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -80(%rbp), %r8 ## 8-byte Reload - movq -88(%rbp), %r13 ## 8-byte Reload - jmp LBB21_90 -Ltmp1451: - .p2align 4, 0x90 -LBB21_87: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - movq -88(%rbp), %r13 ## 8-byte Reload - jne LBB21_1724 -Ltmp1452: -## %bb.88: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - je LBB21_90 -Ltmp1453: -## %bb.89: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1724 -Ltmp1454: -LBB21_90: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1344 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp1455: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp1456: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1344 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - testl %r11d, %r11d -Ltmp1457: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1458: - .loc 1 1344 9 ## /Users/dylan/github/ravi/src/lvm.c:1344:9 - jne LBB21_67 -Ltmp1459: -LBB21_91: ## in Loop: Header=BB21_76 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1460: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1461: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1462: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp1463: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp1464: -LBB21_92: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_98 -Ltmp1465: -## %bb.93: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1466: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jne LBB21_1725 -Ltmp1467: -## %bb.94: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r8), %rax -Ltmp1468: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1566 -Ltmp1469: -## %bb.95: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%rbx), %rcx -Ltmp1470: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpl %ecx, 64(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1471: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jbe LBB21_1726 -Ltmp1472: -## %bb.96: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %ecx, %ecx -Ltmp1473: - movq 56(%rax), %rax -Ltmp1474: - ##DEBUG_VALUE: data <- $rax - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%rax,%rcx,8), %rax -Ltmp1475: - movq %rax, (%r15) - movw $3, 8(%r15) - jmp LBB21_117 -Ltmp1476: -LBB21_97: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1350 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp1477: - .loc 1 1350 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp1478: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1479: - .loc 1 1350 9 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1480: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1481: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_122 -Ltmp1482: -LBB21_98: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_105 -Ltmp1483: -## %bb.99: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1484: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jne LBB21_1725 -Ltmp1485: -## %bb.100: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r8), %rax -Ltmp1486: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1566 -Ltmp1487: -## %bb.101: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%rbx), %rcx -Ltmp1488: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpl %ecx, 64(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1489: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jbe LBB21_1726 -Ltmp1490: -## %bb.102: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %ecx, %ecx -Ltmp1491: - movq 56(%rax), %rax -Ltmp1492: - ##DEBUG_VALUE: data <- $rax - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%rax,%rcx,8), %rax -Ltmp1493: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB21_117 -Ltmp1494: -LBB21_103: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %r12 -Ltmp1495: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movl %r11d, %r14d -Ltmp1496: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - movq %r8, %r13 -Ltmp1497: - ##DEBUG_VALUE: rb <- $r13 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - callq _luaH_getint -Ltmp1498: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %r8 - movl %r14d, %r11d - movq %r12, %r10 -Ltmp1499: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpw $0, 8(%rax) -Ltmp1500: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jne LBB21_115 - jmp LBB21_104 -Ltmp1501: -LBB21_105: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) - movq %r8, %rsi -Ltmp1502: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - xorl %r8d, %r8d -Ltmp1503: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -88(%rbp), %r13 ## 8-byte Reload - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq %r13, %rdi - movq %rbx, %rdx - movq %r15, %rcx - movq %r10, %rbx -Ltmp1504: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp1505: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1506: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1507: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1508: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_121 -Ltmp1509: - .p2align 4, 0x90 -Ltmp1510: ## Block address taken -LBB21_106: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1347 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1347:20 - movzbl %r12b, %eax -Ltmp1511: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1727 -Ltmp1512: -## %bb.107: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1348 22 ## /Users/dylan/github/ravi/src/lvm.c:1348:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1728 -Ltmp1513: -## %bb.108: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movl %r12d, %eax - shrl $24, %eax - shlq $4, %rax - movq %r8, %rdx - leaq (%r8,%rax), %r8 -Ltmp1514: - ##DEBUG_VALUE: rb <- $r8 - .loc 1 1348 22 ## /Users/dylan/github/ravi/src/lvm.c:1348:22 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %ebx - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rbx - addq %rdx, %rbx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rbx -Ltmp1515: - ##DEBUG_VALUE: rc <- $rbx - .loc 1 0 22 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movq %rdx, -80(%rbp) ## 8-byte Spill -Ltmp1516: - .loc 1 1349 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movzwl 8(%rdx,%rax), %eax -Ltmp1517: - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_92 -Ltmp1518: -## %bb.109: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1519: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jne LBB21_113 -Ltmp1520: -## %bb.110: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%r8), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1566 -Ltmp1521: -## %bb.111: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp1522: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp1523: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jae LBB21_103 -Ltmp1524: -## %bb.112: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1525: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpw $0, 8(%rax) -Ltmp1526: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - jne LBB21_115 -Ltmp1527: -LBB21_104: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp1528: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq %r13, %rdi - movq %r8, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - movq %r10, %rbx -Ltmp1529: - callq _luaV_finishget -Ltmp1530: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp1531: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1532: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1533: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_121 -Ltmp1534: - .p2align 4, 0x90 -LBB21_113: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%r8), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1566 -Ltmp1535: -## %bb.114: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1536: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - movq %r10, %r12 -Ltmp1537: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movq %r8, %r13 -Ltmp1538: - ##DEBUG_VALUE: rb <- $r13 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq %rbx, %rsi - callq _luaH_get -Ltmp1539: - ##DEBUG_VALUE: aux <- $rax - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r10 - movl %r14d, %r11d - movq %r13, %r8 -Ltmp1540: - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - cmpw $0, 8(%rax) -Ltmp1541: - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - je LBB21_104 -Ltmp1542: -LBB21_115: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: aux <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - movq (%rax), %rcx - movq %rcx, (%r15) - movzwl 8(%rax), %eax -Ltmp1543: - movw %ax, 8(%r15) - testw %ax, %ax - js LBB21_118 -Ltmp1544: -## %bb.116: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1545: -LBB21_117: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -80(%rbp), %r8 ## 8-byte Reload - movq -88(%rbp), %r13 ## 8-byte Reload - jmp LBB21_121 -Ltmp1546: - .p2align 4, 0x90 -LBB21_118: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - movq -88(%rbp), %r13 ## 8-byte Reload - jne LBB21_1567 -Ltmp1547: -## %bb.119: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - je LBB21_121 -Ltmp1548: -## %bb.120: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1567 -Ltmp1549: -LBB21_121: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1350 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp1550: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp1551: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1350 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - testl %r11d, %r11d -Ltmp1552: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1553: - .loc 1 1350 9 ## /Users/dylan/github/ravi/src/lvm.c:1350:9 - jne LBB21_97 -Ltmp1554: -LBB21_122: ## in Loop: Header=BB21_106 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1555: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp1556: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1557: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp1558: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp1559: -LBB21_123: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_131 -Ltmp1560: -## %bb.124: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r8), %r15 -Ltmp1561: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1818 -Ltmp1562: -## %bb.125: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1563: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jne LBB21_1569 -Ltmp1564: -## %bb.126: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%r14), %eax -Ltmp1565: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl $19, %eax - je LBB21_139 -Ltmp1566: -## %bb.127: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_141 -Ltmp1567: -## %bb.128: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1568: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl %eax, 64(%r15) -Ltmp1569: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - ja LBB21_136 -Ltmp1570: -## %bb.129: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero - jmp LBB21_150 -Ltmp1571: -LBB21_130: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1357 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp1572: - .loc 1 1357 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp1573: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1574: - .loc 1 1357 9 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1575: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1576: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_179 -Ltmp1577: -LBB21_131: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_138 -Ltmp1578: -## %bb.132: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r8), %r15 -Ltmp1579: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1818 -Ltmp1580: -## %bb.133: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1581: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jne LBB21_1569 -Ltmp1582: -## %bb.134: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%r14), %eax - cmpl $19, %eax -Ltmp1583: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jne LBB21_145 -Ltmp1584: -## %bb.135: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1585: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl %eax, 64(%r15) -Ltmp1586: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jbe LBB21_152 -Ltmp1587: -LBB21_136: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq 56(%r15), %rax -Ltmp1588: - ##DEBUG_VALUE: data <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r14), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_177 -Ltmp1589: -LBB21_137: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %r12 -Ltmp1590: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movq %r13, %r15 -Ltmp1591: - movl %r11d, %r13d -Ltmp1592: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r14, -112(%rbp) ## 8-byte Spill -Ltmp1593: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - movq %r8, %r14 -Ltmp1594: - ##DEBUG_VALUE: upval <- $r14 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - callq _luaH_getint -Ltmp1595: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r14, %r8 - movq -112(%rbp), %r14 ## 8-byte Reload -Ltmp1596: - movl %r13d, %r11d - movq %r15, %r13 -Ltmp1597: - movq %r12, %r10 -Ltmp1598: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpw $0, 8(%rax) - jne LBB21_166 - jmp LBB21_163 -Ltmp1599: -LBB21_138: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) - movq %r8, %rsi -Ltmp1600: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - xorl %r8d, %r8d -Ltmp1601: - movq %r13, %rdi - movq %rbx, %rdx - movq %r14, %rcx - movq %r10, %rbx -Ltmp1602: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishset -Ltmp1603: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1604: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1605: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1606: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1607: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_178 -Ltmp1608: -LBB21_139: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1609: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl %eax, 64(%r15) -Ltmp1610: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jbe LBB21_149 -Ltmp1611: -## %bb.140: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%r15), %rax -Ltmp1612: - ##DEBUG_VALUE: data <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cvtsi2sdq (%r14), %xmm0 - movsd %xmm0, (%rax,%rdx,8) - jmp LBB21_177 -Ltmp1613: -LBB21_141: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1614: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1615: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq $0, -208(%rbp) - leaq -208(%rbp), %rsi -Ltmp1616: - ##DEBUG_VALUE: d <- [DW_OP_constu 208, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq %r14, %rdi - callq _luaV_tonumber_ -Ltmp1617: - testl %eax, %eax -Ltmp1618: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - je LBB21_1561 -Ltmp1619: -## %bb.142: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 208, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1620: - jne LBB21_1640 -Ltmp1621: -## %bb.143: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 208, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1622: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1623: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jbe LBB21_151 -Ltmp1624: -## %bb.144: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 208, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1625: - ##DEBUG_VALUE: data <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -208(%rbp), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_155 -Ltmp1626: -LBB21_145: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1627: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1628: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: i <- 0 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq $0, -200(%rbp) - leaq -200(%rbp), %rsi -Ltmp1629: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 200, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 200, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r14, %rdi - callq _luaV_tointeger -Ltmp1630: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - testl %eax, %eax -Ltmp1631: - .loc 1 1356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - je LBB21_1562 -Ltmp1632: -## %bb.146: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 200, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1633: - jne LBB21_1640 -Ltmp1634: -## %bb.147: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 200, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1635: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1636: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jbe LBB21_153 -Ltmp1637: -## %bb.148: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 200, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1638: - ##DEBUG_VALUE: data <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -200(%rbp), %rcx -Ltmp1639: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq %rcx, (%rax,%rdx,8) - jmp LBB21_155 -Ltmp1640: -LBB21_149: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cvtsi2sdq (%r14), %xmm0 -Ltmp1641: -LBB21_150: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1642: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1643: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - callq _raviH_set_float -Ltmp1644: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_176 -Ltmp1645: -LBB21_151: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 208, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movsd -208(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp1646: - ##DEBUG_VALUE: d <- $xmm0 - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1647: - callq _raviH_set_float -Ltmp1648: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_154 -Ltmp1649: -LBB21_152: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r14), %rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1650: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1651: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - callq _raviH_set_int -Ltmp1652: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_176 -Ltmp1653: -LBB21_153: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 200, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -200(%rbp), %rcx -Ltmp1654: - ##DEBUG_VALUE: i <- $rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1655: - callq _raviH_set_int -Ltmp1656: -LBB21_154: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r8 -Ltmp1657: -LBB21_155: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 - movl -68(%rbp), %r11d ## 4-byte Reload - jmp LBB21_178 -Ltmp1658: - .p2align 4, 0x90 -Ltmp1659: ## Block address taken -LBB21_156: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1354 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1354:22 - movzbl %r12b, %eax -Ltmp1660: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1568 -Ltmp1661: -## %bb.157: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ebx - shrl $24, %ebx - movl %ebx, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rbx - addq %r8, %rbx - testl %r12d, %r12d - cmovsq %rcx, %rbx -Ltmp1662: - ##DEBUG_VALUE: rb <- $rbx - .loc 1 1355 22 ## /Users/dylan/github/ravi/src/lvm.c:1355:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1710 -Ltmp1663: -## %bb.158: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movq %r8, %rdx - movl %r12d, %eax - shrl $8, %eax - andl $127, %eax - movq -120(%rbp), %rcx ## 8-byte Reload - movq (%rcx,%rax,8), %rax - movq (%rax), %r8 -Ltmp1664: - ##DEBUG_VALUE: upval <- $r8 - .loc 1 1355 22 ## /Users/dylan/github/ravi/src/lvm.c:1355:22 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %r14d - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %r14 - movq %rdx, -80(%rbp) ## 8-byte Spill - addq %rdx, %r14 - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %r14 -Ltmp1665: - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: luaV_tointeger_:obj <- $r14 - .loc 1 1356 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%r8), %eax -Ltmp1666: - .loc 1 1356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_123 -Ltmp1667: -## %bb.159: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1668: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jne LBB21_164 -Ltmp1669: -## %bb.160: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r8), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1818 -Ltmp1670: -## %bb.161: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp1671: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp1672: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jae LBB21_137 -Ltmp1673: -## %bb.162: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1674: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpw $0, 8(%rax) -Ltmp1675: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - jne LBB21_166 -Ltmp1676: -LBB21_163: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) -Ltmp1677: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq %r13, %rdi - movq %r8, %rsi - movq %rbx, %rdx - movq %r14, %rcx - movq %rax, %r8 - movq %r10, %rbx -Ltmp1678: - callq _luaV_finishset -Ltmp1679: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp1680: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1681: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1682: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_178 -Ltmp1683: - .p2align 4, 0x90 -LBB21_164: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r8), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1818 -Ltmp1684: -## %bb.165: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: upval <- $r8 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r14, %r15 -Ltmp1685: - ##DEBUG_VALUE: rc <- $r15 - movl %r11d, %r13d -Ltmp1686: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r10, %r12 -Ltmp1687: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movq %r8, %r14 -Ltmp1688: - ##DEBUG_VALUE: upval <- $r14 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq %rbx, %rsi - callq _luaH_get -Ltmp1689: - ##DEBUG_VALUE: slot <- $rax - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r10 - movl %r13d, %r11d - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp1690: - movq %r14, %r8 - movq %r15, %r14 -Ltmp1691: - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpw $0, 8(%rax) -Ltmp1692: - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - je LBB21_163 -Ltmp1693: -LBB21_166: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - movq (%r14), %rcx - movq %rcx, (%rax) - movzwl 8(%r14), %edx - movw %dx, 8(%rax) - testw %dx, %dx - jns LBB21_170 -Ltmp1694: -## %bb.167: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %edx - movzbl 8(%rcx), %eax -Ltmp1695: - cmpl %eax, %edx - jne LBB21_1816 -Ltmp1696: -## %bb.168: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - je LBB21_170 -Ltmp1697: -## %bb.169: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1816 -Ltmp1698: -LBB21_170: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - cmpw $0, 8(%r14) - movq -48(%rbp), %r9 ## 8-byte Reload - jns LBB21_177 -Ltmp1699: -## %bb.171: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzwl 8(%r8), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB21_1817 -Ltmp1700: -## %bb.172: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r8), %rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1818 -Ltmp1701: -## %bb.173: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $4, 9(%rsi) - je LBB21_177 -Ltmp1702: -## %bb.174: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r14), %rax - testb $3, 9(%rax) - je LBB21_177 -Ltmp1703: -## %bb.175: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r10, %rbx -Ltmp1704: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - callq _luaC_barrierback_ -Ltmp1705: -LBB21_176: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r14d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload - .p2align 4, 0x90 -LBB21_177: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -80(%rbp), %r8 ## 8-byte Reload -LBB21_178: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] -Ltmp1706: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1357 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp1707: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp1708: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1357 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - testl %r11d, %r11d -Ltmp1709: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1710: - .loc 1 1357 9 ## /Users/dylan/github/ravi/src/lvm.c:1357:9 - jne LBB21_130 -Ltmp1711: -LBB21_179: ## in Loop: Header=BB21_156 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1712: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1713: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp1714: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp1715: -LBB21_180: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_188 -Ltmp1716: -## %bb.181: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r15), %r15 -Ltmp1717: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1643 -Ltmp1718: -## %bb.182: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1719: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jne LBB21_1569 -Ltmp1720: -## %bb.183: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%r14), %eax -Ltmp1721: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl $19, %eax - je LBB21_196 -Ltmp1722: -## %bb.184: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_198 -Ltmp1723: -## %bb.185: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1724: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl %eax, 64(%r15) -Ltmp1725: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - ja LBB21_193 -Ltmp1726: -## %bb.186: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero - jmp LBB21_207 -Ltmp1727: -LBB21_187: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1363 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp1728: - .loc 1 1363 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp1729: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1730: - .loc 1 1363 9 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1731: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1732: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_236 -Ltmp1733: -LBB21_188: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_195 -Ltmp1734: -## %bb.189: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r15), %r15 -Ltmp1735: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1643 -Ltmp1736: -## %bb.190: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1737: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jne LBB21_1569 -Ltmp1738: -## %bb.191: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%r14), %eax - cmpl $19, %eax -Ltmp1739: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jne LBB21_202 -Ltmp1740: -## %bb.192: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1741: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl %eax, 64(%r15) -Ltmp1742: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jbe LBB21_209 -Ltmp1743: -LBB21_193: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq 56(%r15), %rax -Ltmp1744: - ##DEBUG_VALUE: data <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r14), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_234 -Ltmp1745: -LBB21_194: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %r12 -Ltmp1746: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - movq %r14, -112(%rbp) ## 8-byte Spill -Ltmp1747: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - movq %r13, %r14 - movl %r11d, %r13d -Ltmp1748: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - callq _luaH_getint -Ltmp1749: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r13d, %r11d - movq %r14, %r13 -Ltmp1750: - movq -112(%rbp), %r14 ## 8-byte Reload - movq %r12, %r10 -Ltmp1751: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpw $0, 8(%rax) - jne LBB21_223 - jmp LBB21_220 -Ltmp1752: -LBB21_195: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1753: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - xorl %r8d, %r8d - movq %r13, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - movq %r10, %rbx -Ltmp1754: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishset -Ltmp1755: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1756: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1757: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1758: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1759: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_235 -Ltmp1760: -LBB21_196: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1761: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl %eax, 64(%r15) -Ltmp1762: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jbe LBB21_206 -Ltmp1763: -## %bb.197: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%r15), %rax -Ltmp1764: - ##DEBUG_VALUE: data <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cvtsi2sdq (%r14), %xmm0 - movsd %xmm0, (%rax,%rdx,8) - jmp LBB21_234 -Ltmp1765: -LBB21_198: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1766: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1767: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq $0, -192(%rbp) - leaq -192(%rbp), %rsi -Ltmp1768: - ##DEBUG_VALUE: d <- [DW_OP_constu 192, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq %r14, %rdi - callq _luaV_tonumber_ -Ltmp1769: - testl %eax, %eax -Ltmp1770: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - je LBB21_1561 -Ltmp1771: -## %bb.199: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 192, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1772: - jne LBB21_1570 -Ltmp1773: -## %bb.200: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 192, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1774: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1775: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jbe LBB21_208 -Ltmp1776: -## %bb.201: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 192, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1777: - ##DEBUG_VALUE: data <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -192(%rbp), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_212 -Ltmp1778: -LBB21_202: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1779: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1780: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: i <- 0 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq $0, -184(%rbp) - leaq -184(%rbp), %rsi -Ltmp1781: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 184, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 184, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r14, %rdi - callq _luaV_tointeger -Ltmp1782: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - testl %eax, %eax -Ltmp1783: - .loc 1 1362 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - je LBB21_1562 -Ltmp1784: -## %bb.203: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 184, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1785: - jne LBB21_1570 -Ltmp1786: -## %bb.204: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 184, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1787: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1788: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jbe LBB21_210 -Ltmp1789: -## %bb.205: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 184, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1790: - ##DEBUG_VALUE: data <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -184(%rbp), %rcx -Ltmp1791: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq %rcx, (%rax,%rdx,8) - jmp LBB21_212 -Ltmp1792: -LBB21_206: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cvtsi2sdq (%r14), %xmm0 -Ltmp1793: -LBB21_207: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1794: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1795: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - callq _raviH_set_float -Ltmp1796: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_233 -Ltmp1797: -LBB21_208: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 192, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movsd -192(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp1798: - ##DEBUG_VALUE: d <- $xmm0 - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1799: - callq _raviH_set_float -Ltmp1800: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_211 -Ltmp1801: -LBB21_209: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r14), %rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1802: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1803: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - callq _raviH_set_int -Ltmp1804: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_233 -Ltmp1805: -LBB21_210: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 184, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -184(%rbp), %rcx -Ltmp1806: - ##DEBUG_VALUE: i <- $rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1807: - callq _raviH_set_int -Ltmp1808: -LBB21_211: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r8 -Ltmp1809: -LBB21_212: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 - movl -68(%rbp), %r11d ## 4-byte Reload - jmp LBB21_235 -Ltmp1810: - .p2align 4, 0x90 -Ltmp1811: ## Block address taken -LBB21_213: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1360 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1360:22 - movzbl %r12b, %eax -Ltmp1812: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1729 -Ltmp1813: -## %bb.214: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ebx - shrl $24, %ebx - movl %ebx, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rbx - addq %r8, %rbx - testl %r12d, %r12d - cmovsq %rcx, %rbx -Ltmp1814: - ##DEBUG_VALUE: rb <- $rbx - .loc 1 1361 22 ## /Users/dylan/github/ravi/src/lvm.c:1361:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1730 -Ltmp1815: -## %bb.215: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %r14d - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %r14 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp1816: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - addq %r8, %r14 - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %r14 -Ltmp1817: - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: luaV_tointeger_:obj <- $r14 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%r15), %eax -Ltmp1818: - .loc 1 1362 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_180 -Ltmp1819: -## %bb.216: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp1820: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jne LBB21_221 -Ltmp1821: -## %bb.217: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r15), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1643 -Ltmp1822: -## %bb.218: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp1823: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp1824: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jae LBB21_194 -Ltmp1825: -## %bb.219: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp1826: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpw $0, 8(%rax) -Ltmp1827: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - jne LBB21_223 -Ltmp1828: -LBB21_220: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) -Ltmp1829: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq %r13, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - movq %rax, %r8 - movq %r10, %rbx -Ltmp1830: - callq _luaV_finishset -Ltmp1831: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp1832: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1833: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1834: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_235 -Ltmp1835: - .p2align 4, 0x90 -LBB21_221: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r14, -112(%rbp) ## 8-byte Spill -Ltmp1836: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r15), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1643 -Ltmp1837: -## %bb.222: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %r14 - movl %r11d, %r13d -Ltmp1838: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r10, %r12 -Ltmp1839: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq %rbx, %rsi - callq _luaH_get -Ltmp1840: - ##DEBUG_VALUE: slot <- $rax - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r10 - movl %r13d, %r11d - movq %r14, %r13 -Ltmp1841: - movq -112(%rbp), %r14 ## 8-byte Reload -Ltmp1842: - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: io1 <- $rax - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpw $0, 8(%rax) -Ltmp1843: - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - je LBB21_220 -Ltmp1844: -LBB21_223: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - movq (%r14), %rcx - movq %rcx, (%rax) - movzwl 8(%r14), %edx - movw %dx, 8(%rax) - testw %dx, %dx - jns LBB21_227 -Ltmp1845: -## %bb.224: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: slot <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %edx - movzbl 8(%rcx), %eax -Ltmp1846: - cmpl %eax, %edx - jne LBB21_1641 -Ltmp1847: -## %bb.225: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - je LBB21_227 -Ltmp1848: -## %bb.226: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1641 -Ltmp1849: -LBB21_227: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - cmpw $0, 8(%r14) - movq -48(%rbp), %r9 ## 8-byte Reload - jns LBB21_234 -Ltmp1850: -## %bb.228: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzwl 8(%r15), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB21_1642 -Ltmp1851: -## %bb.229: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r15), %rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1643 -Ltmp1852: -## %bb.230: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $4, 9(%rsi) - je LBB21_234 -Ltmp1853: -## %bb.231: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r14), %rax - testb $3, 9(%rax) - je LBB21_234 -Ltmp1854: -## %bb.232: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r10, %rbx -Ltmp1855: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - callq _luaC_barrierback_ -Ltmp1856: -LBB21_233: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r14d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload - .p2align 4, 0x90 -LBB21_234: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -80(%rbp), %r8 ## 8-byte Reload -LBB21_235: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] -Ltmp1857: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1363 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp1858: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp1859: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1363 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - testl %r11d, %r11d -Ltmp1860: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp1861: - .loc 1 1363 9 ## /Users/dylan/github/ravi/src/lvm.c:1363:9 - jne LBB21_187 -Ltmp1862: -LBB21_236: ## in Loop: Header=BB21_213 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp1863: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp1864: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp1865: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp1866: -LBB21_237: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1369 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp1867: - .loc 1 1369 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp1868: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1869: - .loc 1 1369 9 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1870: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1871: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_290 -Ltmp1872: -LBB21_238: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_244 -Ltmp1873: -## %bb.239: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq (%r15), %r15 -Ltmp1874: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1731 -Ltmp1875: -## %bb.240: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%r14), %eax - cmpl $19, %eax -Ltmp1876: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jne LBB21_252 -Ltmp1877: -## %bb.241: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - jne LBB21_1732 -Ltmp1878: -## %bb.242: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1879: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl %eax, 64(%r15) -Ltmp1880: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jbe LBB21_259 -Ltmp1881: -LBB21_243: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq 56(%r15), %rax -Ltmp1882: - ##DEBUG_VALUE: data <- $rax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq (%r14), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_279 -Ltmp1883: -LBB21_244: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1884: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - xorl %r8d, %r8d - movq %r13, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - movq %r10, %rbx -Ltmp1885: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishset -Ltmp1886: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1887: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1888: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1889: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1890: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_289 -Ltmp1891: -LBB21_245: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - jne LBB21_1732 -Ltmp1892: -## %bb.246: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1893: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl %eax, 64(%r15) -Ltmp1894: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jbe LBB21_256 -Ltmp1895: -## %bb.247: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%r15), %rax -Ltmp1896: - ##DEBUG_VALUE: data <- $rax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cvtsi2sdq (%r14), %xmm0 - movsd %xmm0, (%rax,%rdx,8) - jmp LBB21_279 -Ltmp1897: -LBB21_248: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1898: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1899: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq $0, -176(%rbp) - leaq -176(%rbp), %rsi -Ltmp1900: - ##DEBUG_VALUE: d <- [DW_OP_constu 176, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %r14, %rdi - callq _luaV_tonumber_ -Ltmp1901: - testl %eax, %eax -Ltmp1902: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - je LBB21_1561 -Ltmp1903: -## %bb.249: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 176, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1904: - jne LBB21_1732 -Ltmp1905: -## %bb.250: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: d <- [DW_OP_constu 176, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1906: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1907: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jbe LBB21_258 -Ltmp1908: -## %bb.251: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 176, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1909: - ##DEBUG_VALUE: data <- $rax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -176(%rbp), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_262 -Ltmp1910: -LBB21_252: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp1911: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp1912: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: i <- 0 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq $0, -168(%rbp) - leaq -168(%rbp), %rsi -Ltmp1913: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 168, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 168, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r14, %rdi - callq _luaV_tointeger -Ltmp1914: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - testl %eax, %eax -Ltmp1915: - .loc 1 1368 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - je LBB21_1562 -Ltmp1916: -## %bb.253: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 168, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1917: - jne LBB21_1732 -Ltmp1918: -## %bb.254: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: i <- [DW_OP_constu 168, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - movl %eax, %edx -Ltmp1919: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl %eax, 64(%r15) - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp1920: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jbe LBB21_260 -Ltmp1921: -## %bb.255: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 168, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r15), %rax -Ltmp1922: - ##DEBUG_VALUE: data <- $rax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -168(%rbp), %rcx -Ltmp1923: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %rcx, (%rax,%rdx,8) - jmp LBB21_262 -Ltmp1924: -LBB21_256: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cvtsi2sdq (%r14), %xmm0 -Ltmp1925: -LBB21_257: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1926: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1927: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - callq _raviH_set_float -Ltmp1928: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_278 -Ltmp1929: -LBB21_258: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 176, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movsd -176(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp1930: - ##DEBUG_VALUE: d <- $xmm0 - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1931: - callq _raviH_set_float -Ltmp1932: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_261 -Ltmp1933: -LBB21_259: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq (%r14), %rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp1934: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1935: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - callq _raviH_set_int -Ltmp1936: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_278 -Ltmp1937: -LBB21_260: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 168, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -168(%rbp), %rcx -Ltmp1938: - ##DEBUG_VALUE: i <- $rcx - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rbx -Ltmp1939: - callq _raviH_set_int -Ltmp1940: -LBB21_261: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r8 -Ltmp1941: -LBB21_262: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 - movl -68(%rbp), %r11d ## 4-byte Reload - jmp LBB21_289 -Ltmp1942: - .p2align 4, 0x90 -Ltmp1943: ## Block address taken -LBB21_263: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1366 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1366:22 - movzbl %r12b, %eax -Ltmp1944: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1819 -Ltmp1945: -## %bb.264: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ebx - shrl $24, %ebx - movl %ebx, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rbx - addq %r8, %rbx - testl %r12d, %r12d - cmovsq %rcx, %rbx -Ltmp1946: - ##DEBUG_VALUE: rb <- $rbx - .loc 1 1367 22 ## /Users/dylan/github/ravi/src/lvm.c:1367:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1820 -Ltmp1947: -## %bb.265: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %r14d - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %r14 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp1948: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - addq %r8, %r14 - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %r14 -Ltmp1949: - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: luaV_tointeger_:obj <- $r14 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%r15), %eax -Ltmp1950: - .loc 1 1368 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_280 -Ltmp1951: -## %bb.266: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - jne LBB21_1732 -Ltmp1952: -## %bb.267: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %r12 -Ltmp1953: - movzbl 8(%r12), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1731 -Ltmp1954: -## %bb.268: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp1955: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: idx <- $rsi - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - leaq -1(%rsi), %r8 - movl 12(%r12), %eax - cmpq %rax, %r8 -Ltmp1956: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jae LBB21_287 -Ltmp1957: -## %bb.269: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - shlq $4, %r8 - addq 16(%r12), %r8 -Ltmp1958: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpw $0, 8(%r8) -Ltmp1959: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - je LBB21_288 -Ltmp1960: -LBB21_270: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq (%r14), %rax - movq %rax, (%r8) - movzwl 8(%r14), %ecx - movw %cx, 8(%r8) - testw %cx, %cx - jns LBB21_274 -Ltmp1961: -## %bb.271: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1571 -Ltmp1962: -## %bb.272: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - je LBB21_274 -Ltmp1963: -## %bb.273: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1571 -Ltmp1964: -LBB21_274: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpw $0, 8(%r14) - movq -48(%rbp), %r9 ## 8-byte Reload - jns LBB21_279 -Ltmp1965: -## %bb.275: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $4, 9(%r12) - je LBB21_279 -Ltmp1966: -## %bb.276: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r14), %rax - testb $3, 9(%rax) - je LBB21_279 -Ltmp1967: -## %bb.277: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r12, %rsi - movq %r10, %rbx -Ltmp1968: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r14d -Ltmp1969: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - callq _luaC_barrierback_ -Ltmp1970: -LBB21_278: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r14d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload - .p2align 4, 0x90 -LBB21_279: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_289 -LBB21_280: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] -Ltmp1971: - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_238 -Ltmp1972: -## %bb.281: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq (%r15), %r15 -Ltmp1973: - ##DEBUG_VALUE: h <- $r15 - movzbl 8(%r15), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1731 -Ltmp1974: -## %bb.282: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%r14), %eax -Ltmp1975: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl $19, %eax - je LBB21_245 -Ltmp1976: -## %bb.283: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_248 -Ltmp1977: -## %bb.284: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - jne LBB21_1732 -Ltmp1978: -## %bb.285: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rax - movl %eax, %edx -Ltmp1979: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpl %eax, 64(%r15) -Ltmp1980: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - ja LBB21_243 -Ltmp1981: -## %bb.286: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r15 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movsd (%r14), %xmm0 ## xmm0 = mem[0],zero - jmp LBB21_257 -Ltmp1982: -LBB21_287: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %r12, %rdi - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp1983: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r13d -Ltmp1984: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - callq _luaH_getint -Ltmp1985: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r13d, %r11d - movq -112(%rbp), %r10 ## 8-byte Reload - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp1986: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %rax, %r8 -Ltmp1987: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - cmpw $0, 8(%r8) -Ltmp1988: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - jne LBB21_270 -Ltmp1989: - .p2align 4, 0x90 -LBB21_288: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp1990: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq %r13, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - movq %r10, %rbx -Ltmp1991: - callq _luaV_finishset -Ltmp1992: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp1993: - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp1994: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp1995: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp1996: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp1997: -LBB21_289: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1369 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp1998: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp1999: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1369 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - testl %r11d, %r11d -Ltmp2000: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2001: - .loc 1 1369 9 ## /Users/dylan/github/ravi/src/lvm.c:1369:9 - jne LBB21_237 -Ltmp2002: -LBB21_290: ## in Loop: Header=BB21_263 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2003: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2004: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2005: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2006: -LBB21_291: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - andl $15, %eax - cmpl $5, %eax -Ltmp2007: - .loc 1 1375 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - je LBB21_1821 -Ltmp2008: -## %bb.292: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2009: - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - xorl %r8d, %r8d -Ltmp2010: - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp2011: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishset -Ltmp2012: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp2013: - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2014: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d - jmp LBB21_319 -Ltmp2015: -LBB21_293: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1376 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2016: - .loc 1 1376 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2017: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2018: - .loc 1 1376 9 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2019: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2020: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_322 -Ltmp2021: - .p2align 4, 0x90 -Ltmp2022: ## Block address taken -LBB21_294: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_302 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1373 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1373:22 - movzbl %r12b, %eax -Ltmp2023: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movb (%rcx,%rax), %al - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1822 -Ltmp2024: -## %bb.295: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $24, %edx - movl %edx, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rdx - addq %r8, %rdx - testl %r12d, %r12d - cmovsq %rcx, %rdx -Ltmp2025: - ##DEBUG_VALUE: rb <- $rdx - .loc 1 1374 22 ## /Users/dylan/github/ravi/src/lvm.c:1374:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1823 -Ltmp2026: -## %bb.296: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %ecx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rcx -Ltmp2027: - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movzwl 8(%r15), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp2028: - .loc 1 1375 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - jne LBB21_291 -Ltmp2029: -## %bb.297: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq (%r15), %rsi - movb 8(%rsi), %al - andb $15, %al - cmpb $5, %al - jne LBB21_1735 -Ltmp2030: -## %bb.298: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rdx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1824 -Ltmp2031: -## %bb.299: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rdx), %rdi - movb 8(%rdi), %al - movl %eax, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1825 -Ltmp2032: -## %bb.300: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %al - jne LBB21_1828 -Ltmp2033: -## %bb.301: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 3 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:3 - movq %r8, %r12 -Ltmp2034: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - .loc 14 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdi), %r8d - andl 80(%rsi), %r8d - shlq $5, %r8 - addq 24(%rsi), %r8 -Ltmp2035: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .p2align 4, 0x90 -LBB21_302: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_294 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%r8), %esi - cmpl $32772, %esi ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB21_306 -Ltmp2036: -## %bb.303: ## in Loop: Header=BB21_302 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%r8), %rsi - movzbl 8(%rsi), %eax - movl %eax, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1557 -Ltmp2037: -## %bb.304: ## in Loop: Header=BB21_302 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpb $4, %al - jne LBB21_1558 -Ltmp2038: -## %bb.305: ## in Loop: Header=BB21_302 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpq %rdi, %rsi -Ltmp2039: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB21_308 -Ltmp2040: -LBB21_306: ## in Loop: Header=BB21_302 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%r8), %rax - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rax, %rsi - shlq $5, %rsi - addq %rsi, %r8 -Ltmp2041: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rax, %rax - jne LBB21_302 -Ltmp2042: -## %bb.307: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 16 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:16 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp2043: -LBB21_308: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - .loc 1 1375 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - cmpw $0, 8(%r8) -Ltmp2044: - .loc 1 1375 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - je LBB21_320 -Ltmp2045: -## %bb.309: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq (%rcx), %rax - movq %rax, (%r8) - movzwl 8(%rcx), %edx -Ltmp2046: - movw %dx, 8(%r8) - testw %dx, %dx - jns LBB21_313 -Ltmp2047: -## %bb.310: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %edx - movzbl 8(%rax), %esi - cmpl %esi, %edx - jne LBB21_1733 -Ltmp2048: -## %bb.311: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - je LBB21_313 -Ltmp2049: -## %bb.312: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rdx ## 8-byte Reload - movq (%rdx), %rdx - movb 84(%rdx), %dl - xorb $3, %dl - testb %al, %dl - je LBB21_1733 -Ltmp2050: -LBB21_313: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - cmpw $0, 8(%rcx) - movq %r12, %r8 -Ltmp2051: - jns LBB21_321 -Ltmp2052: -## %bb.314: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%r15), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB21_1734 -Ltmp2053: -## %bb.315: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rsi - movb 8(%rsi), %al - andb $15, %al - cmpb $5, %al - jne LBB21_1735 -Ltmp2054: -## %bb.316: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - testb $4, 9(%rsi) - je LBB21_321 -Ltmp2055: -## %bb.317: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rax - testb $3, 9(%rax) - je LBB21_321 -Ltmp2056: -## %bb.318: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %rdi - movq %r10, %rbx -Ltmp2057: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r15d -Ltmp2058: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - callq _luaC_barrierback_ -Ltmp2059: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 -Ltmp2060: -LBB21_319: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_321 -Ltmp2061: - .p2align 4, 0x90 -LBB21_320: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2062: - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp2063: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishset -Ltmp2064: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2065: - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2066: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2067: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_321: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1376 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2068: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2069: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1376 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - testl %r11d, %r11d -Ltmp2070: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2071: - .loc 1 1376 9 ## /Users/dylan/github/ravi/src/lvm.c:1376:9 - jne LBB21_293 -Ltmp2072: -LBB21_322: ## in Loop: Header=BB21_294 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2073: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2074: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2075: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2076: -LBB21_323: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1388 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2077: - .loc 1 1388 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp2078: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2079: - .loc 1 1388 9 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2080: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2081: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_334 -Ltmp2082: - .p2align 4, 0x90 -Ltmp2083: ## Block address taken -LBB21_324: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, %r14 -Ltmp2084: - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp2085: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - .loc 1 1382 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1382:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp2086: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %rdi - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp2087: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 1382 9 ## /Users/dylan/github/ravi/src/lvm.c:1382:9 - movq %r10, (%rax) - .loc 1 1383 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1383:13 - callq _luaH_new -Ltmp2088: - movq %rax, %rbx -Ltmp2089: - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: t <- $rbx - .loc 1 1384 9 ## /Users/dylan/github/ravi/src/lvm.c:1384:9 - movzbl 8(%rax), %eax - andb $14, %al - cmpb $10, %al - jae LBB21_1826 -Ltmp2090: -## %bb.325: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r14, -80(%rbp) ## 8-byte Spill -Ltmp2091: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - .loc 1 1384 9 ## /Users/dylan/github/ravi/src/lvm.c:1384:9 - movq %rbx, (%r15) - movw $-32763, 8(%r15) ## imm = 0x8005 - cmpb $5, 8(%rbx) - jne LBB21_1644 -Ltmp2092: -## %bb.326: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1384 9 ## /Users/dylan/github/ravi/src/lvm.c:1384:9 - je LBB21_328 -Ltmp2093: -## %bb.327: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movzbl 9(%rbx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1644 -Ltmp2094: -LBB21_328: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r12d, %edi - shrl $24, %edi -Ltmp2095: - ##DEBUG_VALUE: b <- $edi - shrl $16, %r12d -Ltmp2096: - movzbl %r12b, %r14d -Ltmp2097: - ##DEBUG_VALUE: c <- $r14d - .loc 1 1385 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1385:20 - movl %r14d, %eax - orl %edi, %eax - je LBB21_330 -Ltmp2098: -## %bb.329: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $r14d - ##DEBUG_VALUE: b <- $edi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1386 29 ## /Users/dylan/github/ravi/src/lvm.c:1386:29 - callq _luaO_fb2int -Ltmp2099: - movl %eax, %r12d - .loc 1 1386 45 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1386:45 - movl %r14d, %edi - callq _luaO_fb2int -Ltmp2100: - .loc 1 1386 11 ## /Users/dylan/github/ravi/src/lvm.c:1386:11 - movq %r13, %rdi - movq %rbx, %rsi - movl %r12d, %edx - movl %eax, %ecx - callq _luaH_resize -Ltmp2101: -LBB21_330: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $r14d - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1387 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq -96(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax - cmpq $0, 24(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2102: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %rbx -Ltmp2103: - movq -80(%rbp), %r8 ## 8-byte Reload - movl -68(%rbp), %esi ## 4-byte Reload -Ltmp2104: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - jle LBB21_332 -Ltmp2105: -## %bb.331: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - addq $16, %r15 -Ltmp2106: - movq %r15, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step -Ltmp2107: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -128(%rbp), %rcx ## 8-byte Reload -Ltmp2108: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq -112(%rbp), %rax ## 8-byte Reload - movq %rax, 40(%rcx) -Ltmp2109: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq 8(%rcx), %rax - movq %rax, 16(%rbx) -Ltmp2110: - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq 32(%rcx), %r8 -Ltmp2111: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%rbx), %esi - andl $12, %esi -Ltmp2112: - ##DEBUG_VALUE: luaV_execute:mask <- $esi -LBB21_332: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - movq -8(%rbx), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - movq -112(%rbp), %r10 ## 8-byte Reload - jne LBB21_1827 -Ltmp2113: -## %bb.333: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movl %ecx, (%rax) -Ltmp2114: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1388 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp2115: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1388 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - testl %esi, %esi -Ltmp2116: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2117: - .loc 1 1388 9 ## /Users/dylan/github/ravi/src/lvm.c:1388:9 - jne LBB21_323 -Ltmp2118: -LBB21_334: ## in Loop: Header=BB21_324 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2119: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2120: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp2121: -LBB21_335: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - andl $15, %eax - cmpl $5, %eax -Ltmp2122: - .loc 1 1395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - je LBB21_1736 -Ltmp2123: -## %bb.336: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2124: - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - xorl %r8d, %r8d -Ltmp2125: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2126: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp2127: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp2128: - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2129: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2130: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_363 -Ltmp2131: -LBB21_337: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1396 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2132: - .loc 1 1396 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2133: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2134: - .loc 1 1396 9 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2135: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2136: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_364 -Ltmp2137: -LBB21_338: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) - movq %r14, %r13 -Ltmp2138: - .loc 1 1395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq %r14, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2139: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp2140: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2141: - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2142: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r14), %r11d - andl $12, %r11d -Ltmp2143: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 - jmp LBB21_363 -Ltmp2144: - .p2align 4, 0x90 -Ltmp2145: ## Block address taken -LBB21_339: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_351 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1391 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1391:20 - movzbl %r12b, %eax -Ltmp2146: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1737 -Ltmp2147: -## %bb.340: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1393 22 ## /Users/dylan/github/ravi/src/lvm.c:1393:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1738 -Ltmp2148: -## %bb.341: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movl %r12d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r8,%rax), %rsi -Ltmp2149: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1393 22 ## /Users/dylan/github/ravi/src/lvm.c:1393:22 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %edx - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rdx -Ltmp2150: - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: io2 <- $rsi - .loc 1 1394 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1394:9 - movq (%rsi), %rcx - movq %rcx, 16(%r15) - movzwl 8(%r8,%rax), %edi - movw %di, 24(%r15) - testw %di, %di - jns LBB21_345 -Ltmp2151: -## %bb.342: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %edi - movzbl 8(%rcx), %ebx - cmpl %ebx, %edi - jne LBB21_1739 -Ltmp2152: -## %bb.343: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1394 9 ## /Users/dylan/github/ravi/src/lvm.c:1394:9 - je LBB21_345 -Ltmp2153: -## %bb.344: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rcx), %cl - xorb $3, %cl - movq -96(%rbp), %rdi ## 8-byte Reload - movq (%rdi), %rdi - movb 84(%rdi), %bl - xorb $3, %bl - testb %cl, %bl - je LBB21_1739 -Ltmp2154: -LBB21_345: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq 8(%r8,%rax), %rax -Ltmp2155: - .loc 1 1395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movzwl (%rax), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp2156: - .loc 1 1395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - jne LBB21_335 -Ltmp2157: -## %bb.346: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r9, %r12 -Ltmp2158: - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq (%rsi), %r9 - movb 8(%r9), %al - andb $15, %al - cmpb $5, %al - jne LBB21_1740 -Ltmp2159: -## %bb.347: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rdx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1741 -Ltmp2160: -## %bb.348: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rdx), %rdi - movb 8(%rdi), %cl - movl %ecx, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1742 -Ltmp2161: -## %bb.349: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %cl - jne LBB21_1828 -Ltmp2162: -## %bb.350: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 3 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:3 - movq %r13, %r14 - movq %r8, %r13 -Ltmp2163: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - .loc 14 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdi), %r8d - andl 80(%r9), %r8d - shlq $5, %r8 - addq 24(%r9), %r8 -Ltmp2164: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq %r12, %r9 -Ltmp2165: - .p2align 4, 0x90 -LBB21_351: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_339 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%r8), %ecx - cmpl $32772, %ecx ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB21_355 -Ltmp2166: -## %bb.352: ## in Loop: Header=BB21_351 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%r8), %rcx - movzbl 8(%rcx), %eax - movl %eax, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1557 -Ltmp2167: -## %bb.353: ## in Loop: Header=BB21_351 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpb $4, %al - jne LBB21_1558 -Ltmp2168: -## %bb.354: ## in Loop: Header=BB21_351 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpq %rdi, %rcx -Ltmp2169: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB21_357 -Ltmp2170: -LBB21_355: ## in Loop: Header=BB21_351 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%r8), %rax - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rax, %rcx - shlq $5, %rcx - addq %rcx, %r8 -Ltmp2171: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rax, %rax - jne LBB21_351 -Ltmp2172: -## %bb.356: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 16 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:16 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp2173: -LBB21_357: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - .loc 1 1395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - cmpw $0, 8(%r8) -Ltmp2174: - .loc 1 1395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - je LBB21_338 -Ltmp2175: -## %bb.358: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - movq (%r8), %rax - movq %rax, (%r15) - movzwl 8(%r8), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - js LBB21_360 -Ltmp2176: -## %bb.359: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %r8 -Ltmp2177: - movq %r14, %r13 -Ltmp2178: - leaq _luaV_execute.dispatch_table(%rip), %r14 - jmp LBB21_363 -Ltmp2179: - .p2align 4, 0x90 -LBB21_360: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp2180: - cmpl %edx, %ecx - movq %r13, %r8 -Ltmp2181: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r14, %r13 -Ltmp2182: - leaq _luaV_execute.dispatch_table(%rip), %r14 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - jne LBB21_1572 -Ltmp2183: -## %bb.361: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - je LBB21_363 -Ltmp2184: -## %bb.362: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1572 -Ltmp2185: -LBB21_363: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1396 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2186: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2187: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1396 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - testl %r11d, %r11d -Ltmp2188: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2189: - .loc 1 1396 9 ## /Users/dylan/github/ravi/src/lvm.c:1396:9 - jne LBB21_337 -Ltmp2190: -LBB21_364: ## in Loop: Header=BB21_339 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2191: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2192: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2193: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2194: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2195: -LBB21_365: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1405 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1405:11 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2196: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp2197: - movl -68(%rbp), %edx ## 4-byte Reload - .loc 1 1405 11 ## /Users/dylan/github/ravi/src/lvm.c:1405:11 - jne LBB21_1743 -Ltmp2198: -## %bb.366: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 1405 11 ## /Users/dylan/github/ravi/src/lvm.c:1405:11 - je LBB21_385 -Ltmp2199: -## %bb.367: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - jne LBB21_385 - jmp LBB21_1743 -Ltmp2200: -LBB21_368: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $edx - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1408 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2201: - .loc 1 1408 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2202: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2203: - .loc 1 1408 9 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2204: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2205: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_386 -Ltmp2206: - .p2align 4, 0x90 -Ltmp2207: ## Block address taken -LBB21_369: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1400 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1400:20 - movzbl %r12b, %eax -Ltmp2208: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1829 -Ltmp2209: -## %bb.370: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1401 22 ## /Users/dylan/github/ravi/src/lvm.c:1401:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1830 -Ltmp2210: -## %bb.371: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %ebx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rbx - addq %r8, %rbx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rbx -Ltmp2211: - ##DEBUG_VALUE: rc <- $rbx - .loc 1 1402 24 ## /Users/dylan/github/ravi/src/lvm.c:1402:24 - movzwl 8(%rbx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1831 -Ltmp2212: -## %bb.372: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp2213: - ##DEBUG_VALUE: key <- $rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $4, %al - jne LBB21_1832 -Ltmp2214: -## %bb.373: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:24 - shrl $24, %r12d -Ltmp2215: - shlq $4, %r12 - leaq (%r8,%r12), %r14 -Ltmp2216: - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: io2 <- $r14 - .loc 1 1403 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1403:9 - movq (%r14), %rax - movq %rax, 16(%r15) - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp2217: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - movzwl 8(%r8,%r12), %ecx - movw %cx, 24(%r15) - testw %cx, %cx - jns LBB21_377 -Ltmp2218: -## %bb.374: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1833 -Ltmp2219: -## %bb.375: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1403 9 ## /Users/dylan/github/ravi/src/lvm.c:1403:9 - je LBB21_377 -Ltmp2220: -## %bb.376: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1833 -Ltmp2221: -LBB21_377: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -80(%rbp), %rax ## 8-byte Reload - leaq 8(%rax,%r12), %rax -Ltmp2222: - .loc 1 1404 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - movzwl (%rax), %eax - andl $15, %eax - cmpl $5, %eax -Ltmp2223: - .loc 1 1404 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - jne LBB21_382 -Ltmp2224: -## %bb.378: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp2225: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - .loc 1 1404 13 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - movq (%r14), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1834 -Ltmp2226: -## %bb.379: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r10, %r12 -Ltmp2227: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - .loc 1 1404 13 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - callq _luaH_getstr -Ltmp2228: - movq %rax, %r8 -Ltmp2229: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - cmpw $0, 8(%rax) -Ltmp2230: - .loc 1 1404 13 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - je LBB21_383 -Ltmp2231: -## %bb.380: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1405 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1405:11 - movq (%r8), %rax - movq %rax, (%r15) - movzwl 8(%r8), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - movq %r12, %rsi - js LBB21_365 -Ltmp2232: -## %bb.381: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2233: - movq -48(%rbp), %r9 ## 8-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp2234: - movl -68(%rbp), %edx ## 4-byte Reload - jmp LBB21_385 -Ltmp2235: - .p2align 4, 0x90 -LBB21_382: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorl %r8d, %r8d - jmp LBB21_384 -Ltmp2236: -LBB21_383: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r12, %r10 -Ltmp2237: -LBB21_384: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - .loc 1 1407 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1407:14 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2238: - .loc 1 1407 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1407:14 - movq %r13, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %r10, %rbx -Ltmp2239: - callq _luaV_finishget -Ltmp2240: - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movq %rbx, %rsi -Ltmp2241: - .loc 1 1407 14 ## /Users/dylan/github/ravi/src/lvm.c:1407:14 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2242: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %edx - andl $12, %edx -Ltmp2243: - ##DEBUG_VALUE: luaV_execute:mask <- $edx - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp2244: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2245: -LBB21_385: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $edx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1408 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - movq %rsi, %rbx - addq $4, %rbx -Ltmp2246: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%rsi), %r12d -Ltmp2247: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1408 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - testl %edx, %edx -Ltmp2248: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2249: - .loc 1 1408 9 ## /Users/dylan/github/ravi/src/lvm.c:1408:9 - jne LBB21_368 -Ltmp2250: -LBB21_386: ## in Loop: Header=BB21_369 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2251: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2252: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2253: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2254: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2255: -LBB21_387: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1422 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2256: - .loc 1 1422 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2257: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2258: - .loc 1 1422 9 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2259: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2260: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_402 -Ltmp2261: - .p2align 4, 0x90 -Ltmp2262: ## Block address taken -LBB21_388: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1411 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1411:22 - movzbl %r12b, %eax -Ltmp2263: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1744 -Ltmp2264: -## %bb.389: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2265: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1412 22 ## /Users/dylan/github/ravi/src/lvm.c:1412:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1745 -Ltmp2266: -## %bb.390: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2267: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1414 13 ## /Users/dylan/github/ravi/src/lvm.c:1414:13 - movzwl 8(%rsi), %eax - .loc 1 1414 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1414:29 - cmpl $3, %eax - je LBB21_394 -Ltmp2268: -## %bb.391: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_397 -Ltmp2269: -## %bb.392: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1414 32 ## /Users/dylan/github/ravi/src/lvm.c:1414:32 - movzwl 8(%rdx), %eax -Ltmp2270: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rsi), %rcx -Ltmp2271: - ##DEBUG_VALUE: ib <- $rcx - .loc 1 1414 32 ## /Users/dylan/github/ravi/src/lvm.c:1414:32 - cmpl $19, %eax -Ltmp2272: - .loc 1 1414 13 ## /Users/dylan/github/ravi/src/lvm.c:1414:13 - jne LBB21_398 -Ltmp2273: -## %bb.393: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1416 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1416:11 - addq (%rdx), %rcx -Ltmp2274: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_401 -Ltmp2275: - .p2align 4, 0x90 -LBB21_394: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1418 18 ## /Users/dylan/github/ravi/src/lvm.c:1418:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2276: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1418 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1418:40 - movzwl 8(%rdx), %eax -Ltmp2277: - .loc 1 1418 18 ## /Users/dylan/github/ravi/src/lvm.c:1418:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - je LBB21_399 -Ltmp2278: -LBB21_395: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax - jne LBB21_397 -Ltmp2279: -## %bb.396: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1418 40 ## /Users/dylan/github/ravi/src/lvm.c:1418:40 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2280: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 40 ## /Users/dylan/github/ravi/src/lvm.c:0:40 - jmp LBB21_400 -Ltmp2281: - .p2align 4, 0x90 -LBB21_397: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1421 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1421:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2282: - .loc 1 1421 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1421:16 - movl $6, %r8d -Ltmp2283: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2284: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2285: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2286: - .loc 1 1421 16 ## /Users/dylan/github/ravi/src/lvm.c:1421:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2287: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2288: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_401 -Ltmp2289: -LBB21_398: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1418 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1418:18 - xorps %xmm0, %xmm0 - cvtsi2sdq %rcx, %xmm0 -Ltmp2290: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1418 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1418:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - jne LBB21_395 -Ltmp2291: -LBB21_399: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1418 40 ## /Users/dylan/github/ravi/src/lvm.c:1418:40 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2292: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_400: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1419 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1419:11 - addsd %xmm1, %xmm0 -Ltmp2293: - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp2294: -LBB21_401: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1422 9 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2295: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2296: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1422 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - testl %r11d, %r11d -Ltmp2297: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2298: - .loc 1 1422 9 ## /Users/dylan/github/ravi/src/lvm.c:1422:9 - jne LBB21_387 -Ltmp2299: -LBB21_402: ## in Loop: Header=BB21_388 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2300: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2301: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2302: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2303: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2304: -LBB21_403: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1436 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2305: - .loc 1 1436 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2306: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2307: - .loc 1 1436 9 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2308: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2309: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_418 -Ltmp2310: - .p2align 4, 0x90 -Ltmp2311: ## Block address taken -LBB21_404: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1425 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1425:22 - movzbl %r12b, %eax -Ltmp2312: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1573 -Ltmp2313: -## %bb.405: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2314: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1426 22 ## /Users/dylan/github/ravi/src/lvm.c:1426:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1574 -Ltmp2315: -## %bb.406: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2316: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1428 13 ## /Users/dylan/github/ravi/src/lvm.c:1428:13 - movzwl 8(%rsi), %eax - .loc 1 1428 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1428:29 - cmpl $3, %eax - je LBB21_410 -Ltmp2317: -## %bb.407: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_413 -Ltmp2318: -## %bb.408: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1428 32 ## /Users/dylan/github/ravi/src/lvm.c:1428:32 - movzwl 8(%rdx), %eax -Ltmp2319: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rsi), %rcx -Ltmp2320: - ##DEBUG_VALUE: ib <- $rcx - .loc 1 1428 32 ## /Users/dylan/github/ravi/src/lvm.c:1428:32 - cmpl $19, %eax -Ltmp2321: - .loc 1 1428 13 ## /Users/dylan/github/ravi/src/lvm.c:1428:13 - jne LBB21_414 -Ltmp2322: -## %bb.409: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1430 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1430:11 - subq (%rdx), %rcx -Ltmp2323: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_417 -Ltmp2324: - .p2align 4, 0x90 -LBB21_410: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1432 18 ## /Users/dylan/github/ravi/src/lvm.c:1432:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2325: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1432 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1432:40 - movzwl 8(%rdx), %eax -Ltmp2326: - .loc 1 1432 18 ## /Users/dylan/github/ravi/src/lvm.c:1432:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - je LBB21_415 -Ltmp2327: -LBB21_411: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax - jne LBB21_413 -Ltmp2328: -## %bb.412: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1432 40 ## /Users/dylan/github/ravi/src/lvm.c:1432:40 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2329: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 40 ## /Users/dylan/github/ravi/src/lvm.c:0:40 - jmp LBB21_416 -Ltmp2330: - .p2align 4, 0x90 -LBB21_413: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1435 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1435:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2331: - .loc 1 1435 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1435:16 - movl $7, %r8d -Ltmp2332: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2333: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2334: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2335: - .loc 1 1435 16 ## /Users/dylan/github/ravi/src/lvm.c:1435:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2336: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2337: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_417 -Ltmp2338: -LBB21_414: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1432 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1432:18 - xorps %xmm0, %xmm0 - cvtsi2sdq %rcx, %xmm0 -Ltmp2339: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1432 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1432:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - jne LBB21_411 -Ltmp2340: -LBB21_415: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1432 40 ## /Users/dylan/github/ravi/src/lvm.c:1432:40 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2341: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_416: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1433 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1433:11 - subsd %xmm1, %xmm0 -Ltmp2342: - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp2343: -LBB21_417: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1436 9 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2344: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2345: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1436 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - testl %r11d, %r11d -Ltmp2346: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2347: - .loc 1 1436 9 ## /Users/dylan/github/ravi/src/lvm.c:1436:9 - jne LBB21_403 -Ltmp2348: -LBB21_418: ## in Loop: Header=BB21_404 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2349: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2350: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2351: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2352: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2353: -LBB21_419: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1450 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2354: - .loc 1 1450 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2355: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2356: - .loc 1 1450 9 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2357: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2358: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_434 -Ltmp2359: - .p2align 4, 0x90 -Ltmp2360: ## Block address taken -LBB21_420: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1439 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1439:22 - movzbl %r12b, %eax -Ltmp2361: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1575 -Ltmp2362: -## %bb.421: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2363: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1440 22 ## /Users/dylan/github/ravi/src/lvm.c:1440:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1711 -Ltmp2364: -## %bb.422: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2365: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1442 13 ## /Users/dylan/github/ravi/src/lvm.c:1442:13 - movzwl 8(%rsi), %eax - .loc 1 1442 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1442:29 - cmpl $3, %eax - je LBB21_426 -Ltmp2366: -## %bb.423: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_429 -Ltmp2367: -## %bb.424: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1442 32 ## /Users/dylan/github/ravi/src/lvm.c:1442:32 - movzwl 8(%rdx), %eax -Ltmp2368: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rsi), %rcx -Ltmp2369: - ##DEBUG_VALUE: ib <- $rcx - .loc 1 1442 32 ## /Users/dylan/github/ravi/src/lvm.c:1442:32 - cmpl $19, %eax -Ltmp2370: - .loc 1 1442 13 ## /Users/dylan/github/ravi/src/lvm.c:1442:13 - jne LBB21_430 -Ltmp2371: -## %bb.425: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1444 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1444:11 - imulq (%rdx), %rcx -Ltmp2372: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_433 -Ltmp2373: - .p2align 4, 0x90 -LBB21_426: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1446 18 ## /Users/dylan/github/ravi/src/lvm.c:1446:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2374: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1446 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1446:40 - movzwl 8(%rdx), %eax -Ltmp2375: - .loc 1 1446 18 ## /Users/dylan/github/ravi/src/lvm.c:1446:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - je LBB21_431 -Ltmp2376: -LBB21_427: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax - jne LBB21_429 -Ltmp2377: -## %bb.428: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1446 40 ## /Users/dylan/github/ravi/src/lvm.c:1446:40 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2378: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 40 ## /Users/dylan/github/ravi/src/lvm.c:0:40 - jmp LBB21_432 -Ltmp2379: - .p2align 4, 0x90 -LBB21_429: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1449 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1449:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2380: - .loc 1 1449 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1449:16 - movl $8, %r8d -Ltmp2381: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2382: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2383: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2384: - .loc 1 1449 16 ## /Users/dylan/github/ravi/src/lvm.c:1449:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2385: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2386: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_433 -Ltmp2387: -LBB21_430: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1446 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1446:18 - xorps %xmm0, %xmm0 - cvtsi2sdq %rcx, %xmm0 -Ltmp2388: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1446 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1446:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - jne LBB21_427 -Ltmp2389: -LBB21_431: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1446 40 ## /Users/dylan/github/ravi/src/lvm.c:1446:40 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2390: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_432: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1447 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1447:11 - mulsd %xmm1, %xmm0 -Ltmp2391: - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp2392: -LBB21_433: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1450 9 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2393: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2394: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1450 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - testl %r11d, %r11d -Ltmp2395: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2396: - .loc 1 1450 9 ## /Users/dylan/github/ravi/src/lvm.c:1450:9 - jne LBB21_419 -Ltmp2397: -LBB21_434: ## in Loop: Header=BB21_420 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2398: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2399: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2400: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2401: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2402: -LBB21_435: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1460 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2403: - .loc 1 1460 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2404: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2405: - .loc 1 1460 9 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2406: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2407: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_448 -Ltmp2408: - .p2align 4, 0x90 -Ltmp2409: ## Block address taken -LBB21_436: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1453 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1453:22 - movzbl %r12b, %eax -Ltmp2410: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1835 -Ltmp2411: -## %bb.437: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2412: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1454 22 ## /Users/dylan/github/ravi/src/lvm.c:1454:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1836 -Ltmp2413: -## %bb.438: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2414: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1456 13 ## /Users/dylan/github/ravi/src/lvm.c:1456:13 - movzwl 8(%rsi), %eax - .loc 1 1456 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1456:32 - cmpl $19, %eax - je LBB21_444 -Ltmp2415: -## %bb.439: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_443 -Ltmp2416: -## %bb.440: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1456 13 ## /Users/dylan/github/ravi/src/lvm.c:1456:13 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2417: - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1456 35 ## /Users/dylan/github/ravi/src/lvm.c:1456:35 - movzwl 8(%rdx), %eax -Ltmp2418: - .loc 1 1456 13 ## /Users/dylan/github/ravi/src/lvm.c:1456:13 - cmpl $19, %eax - je LBB21_445 -Ltmp2419: -LBB21_441: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_443 -Ltmp2420: -## %bb.442: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1456 35 ## /Users/dylan/github/ravi/src/lvm.c:1456:35 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2421: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 35 ## /Users/dylan/github/ravi/src/lvm.c:0:35 - jmp LBB21_446 -Ltmp2422: - .p2align 4, 0x90 -LBB21_443: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1459 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1459:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2423: - .loc 1 1459 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1459:16 - movl $11, %r8d -Ltmp2424: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2425: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2426: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2427: - .loc 1 1459 16 ## /Users/dylan/github/ravi/src/lvm.c:1459:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2428: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2429: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_447 -Ltmp2430: - .p2align 4, 0x90 -LBB21_444: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1456 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1456:13 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rsi), %xmm0 -Ltmp2431: - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1456 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1456:35 - movzwl 8(%rdx), %eax -Ltmp2432: - .loc 1 1456 13 ## /Users/dylan/github/ravi/src/lvm.c:1456:13 - cmpl $19, %eax - jne LBB21_441 -Ltmp2433: -LBB21_445: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1456 35 ## /Users/dylan/github/ravi/src/lvm.c:1456:35 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2434: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_446: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1457 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1457:11 - divsd %xmm1, %xmm0 -Ltmp2435: - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp2436: -LBB21_447: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1460 9 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2437: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2438: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1460 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - testl %r11d, %r11d -Ltmp2439: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2440: - .loc 1 1460 9 ## /Users/dylan/github/ravi/src/lvm.c:1460:9 - jne LBB21_435 -Ltmp2441: -LBB21_448: ## in Loop: Header=BB21_436 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2442: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2443: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2444: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2445: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2446: -LBB21_449: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_466 -Ltmp2447: -## %bb.450: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2448: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_466 -Ltmp2449: -## %bb.451: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rcx - jmp LBB21_460 -Ltmp2450: -LBB21_452: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1470 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2451: - .loc 1 1470 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2452: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2453: - .loc 1 1470 9 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2454: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2455: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_468 -Ltmp2456: - .p2align 4, 0x90 -Ltmp2457: ## Block address taken -LBB21_453: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1463 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1463:22 - movzbl %r12b, %eax -Ltmp2458: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1576 -Ltmp2459: -## %bb.454: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2460: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1464 22 ## /Users/dylan/github/ravi/src/lvm.c:1464:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1577 -Ltmp2461: -## %bb.455: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2462: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1466 13 ## /Users/dylan/github/ravi/src/lvm.c:1466:13 - movzwl 8(%rsi), %eax - .loc 1 1466 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1466:34 - cmpl $3, %eax - je LBB21_461 -Ltmp2463: -## %bb.456: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_466 -Ltmp2464: -## %bb.457: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1466 13 ## /Users/dylan/github/ravi/src/lvm.c:1466:13 - movq (%rsi), %rax -Ltmp2465: - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: ib <- $rax - .loc 1 1466 37 ## /Users/dylan/github/ravi/src/lvm.c:1466:37 - movzwl 8(%rdx), %ecx -Ltmp2466: - .loc 1 1466 13 ## /Users/dylan/github/ravi/src/lvm.c:1466:13 - cmpl $3, %ecx - je LBB21_465 -Ltmp2467: -LBB21_458: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %cx, %ecx - cmpl $19, %ecx - jne LBB21_466 -Ltmp2468: -## %bb.459: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1466 37 ## /Users/dylan/github/ravi/src/lvm.c:1466:37 - movq (%rdx), %rcx -Ltmp2469: - ##DEBUG_VALUE: ic <- $rcx -LBB21_460: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ic <- $rcx - .loc 1 1467 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1467:11 - andq %rax, %rcx -Ltmp2470: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_467 -Ltmp2471: - .p2align 4, 0x90 -LBB21_461: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2472: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2473: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_466 - jp LBB21_466 -Ltmp2474: -## %bb.462: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_466 -Ltmp2475: -## %bb.463: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2476: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_466 -Ltmp2477: -## %bb.464: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax -Ltmp2478: - ##DEBUG_VALUE: ib <- $rax - .loc 1 1466 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1466:37 - movzwl 8(%rdx), %ecx -Ltmp2479: - .loc 1 1466 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1466:13 - cmpl $3, %ecx - jne LBB21_458 -Ltmp2480: -LBB21_465: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2481: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2482: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_466 - jnp LBB21_449 -Ltmp2483: - .p2align 4, 0x90 -LBB21_466: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1469 16 ## /Users/dylan/github/ravi/src/lvm.c:1469:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2484: - .loc 1 1469 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1469:16 - movl $13, %r8d -Ltmp2485: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2486: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2487: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2488: - .loc 1 1469 16 ## /Users/dylan/github/ravi/src/lvm.c:1469:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2489: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2490: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2491: -LBB21_467: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1470 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2492: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2493: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1470 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - testl %r11d, %r11d -Ltmp2494: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2495: - .loc 1 1470 9 ## /Users/dylan/github/ravi/src/lvm.c:1470:9 - jne LBB21_452 -Ltmp2496: -LBB21_468: ## in Loop: Header=BB21_453 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2497: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2498: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2499: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2500: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2501: -LBB21_469: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_486 -Ltmp2502: -## %bb.470: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2503: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_486 -Ltmp2504: -## %bb.471: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rcx - jmp LBB21_480 -Ltmp2505: -LBB21_472: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1480 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2506: - .loc 1 1480 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2507: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2508: - .loc 1 1480 9 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2509: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2510: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_488 -Ltmp2511: - .p2align 4, 0x90 -Ltmp2512: ## Block address taken -LBB21_473: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1473 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1473:22 - movzbl %r12b, %eax -Ltmp2513: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1645 -Ltmp2514: -## %bb.474: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2515: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1474 22 ## /Users/dylan/github/ravi/src/lvm.c:1474:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1646 -Ltmp2516: -## %bb.475: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2517: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1476 13 ## /Users/dylan/github/ravi/src/lvm.c:1476:13 - movzwl 8(%rsi), %eax - .loc 1 1476 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1476:34 - cmpl $3, %eax - je LBB21_481 -Ltmp2518: -## %bb.476: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_486 -Ltmp2519: -## %bb.477: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1476 13 ## /Users/dylan/github/ravi/src/lvm.c:1476:13 - movq (%rsi), %rax -Ltmp2520: - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: ib <- $rax - .loc 1 1476 37 ## /Users/dylan/github/ravi/src/lvm.c:1476:37 - movzwl 8(%rdx), %ecx -Ltmp2521: - .loc 1 1476 13 ## /Users/dylan/github/ravi/src/lvm.c:1476:13 - cmpl $3, %ecx - je LBB21_485 -Ltmp2522: -LBB21_478: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %cx, %ecx - cmpl $19, %ecx - jne LBB21_486 -Ltmp2523: -## %bb.479: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1476 37 ## /Users/dylan/github/ravi/src/lvm.c:1476:37 - movq (%rdx), %rcx -Ltmp2524: - ##DEBUG_VALUE: ic <- $rcx -LBB21_480: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ic <- $rcx - .loc 1 1477 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1477:11 - orq %rax, %rcx -Ltmp2525: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_487 -Ltmp2526: - .p2align 4, 0x90 -LBB21_481: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2527: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2528: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_486 - jp LBB21_486 -Ltmp2529: -## %bb.482: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_486 -Ltmp2530: -## %bb.483: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2531: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_486 -Ltmp2532: -## %bb.484: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax -Ltmp2533: - ##DEBUG_VALUE: ib <- $rax - .loc 1 1476 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1476:37 - movzwl 8(%rdx), %ecx -Ltmp2534: - .loc 1 1476 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1476:13 - cmpl $3, %ecx - jne LBB21_478 -Ltmp2535: -LBB21_485: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2536: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2537: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_486 - jnp LBB21_469 -Ltmp2538: - .p2align 4, 0x90 -LBB21_486: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1479 16 ## /Users/dylan/github/ravi/src/lvm.c:1479:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2539: - .loc 1 1479 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1479:16 - movl $14, %r8d -Ltmp2540: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2541: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2542: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2543: - .loc 1 1479 16 ## /Users/dylan/github/ravi/src/lvm.c:1479:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2544: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2545: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2546: -LBB21_487: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1480 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2547: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2548: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1480 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - testl %r11d, %r11d -Ltmp2549: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2550: - .loc 1 1480 9 ## /Users/dylan/github/ravi/src/lvm.c:1480:9 - jne LBB21_472 -Ltmp2551: -LBB21_488: ## in Loop: Header=BB21_473 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2552: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2553: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2554: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2555: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2556: -LBB21_489: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_506 -Ltmp2557: -## %bb.490: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2558: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_506 -Ltmp2559: -## %bb.491: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rcx - jmp LBB21_500 -Ltmp2560: -LBB21_492: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1490 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2561: - .loc 1 1490 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2562: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2563: - .loc 1 1490 9 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2564: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2565: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_508 -Ltmp2566: - .p2align 4, 0x90 -Ltmp2567: ## Block address taken -LBB21_493: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1483 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1483:22 - movzbl %r12b, %eax -Ltmp2568: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1837 -Ltmp2569: -## %bb.494: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2570: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1484 22 ## /Users/dylan/github/ravi/src/lvm.c:1484:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1838 -Ltmp2571: -## %bb.495: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2572: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1486 13 ## /Users/dylan/github/ravi/src/lvm.c:1486:13 - movzwl 8(%rsi), %eax - .loc 1 1486 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1486:34 - cmpl $3, %eax - je LBB21_501 -Ltmp2573: -## %bb.496: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_506 -Ltmp2574: -## %bb.497: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1486 13 ## /Users/dylan/github/ravi/src/lvm.c:1486:13 - movq (%rsi), %rax -Ltmp2575: - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: ib <- $rax - .loc 1 1486 37 ## /Users/dylan/github/ravi/src/lvm.c:1486:37 - movzwl 8(%rdx), %ecx -Ltmp2576: - .loc 1 1486 13 ## /Users/dylan/github/ravi/src/lvm.c:1486:13 - cmpl $3, %ecx - je LBB21_505 -Ltmp2577: -LBB21_498: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %cx, %ecx - cmpl $19, %ecx - jne LBB21_506 -Ltmp2578: -## %bb.499: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1486 37 ## /Users/dylan/github/ravi/src/lvm.c:1486:37 - movq (%rdx), %rcx -Ltmp2579: - ##DEBUG_VALUE: ic <- $rcx -LBB21_500: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ic <- $rcx - .loc 1 1487 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1487:11 - xorq %rax, %rcx -Ltmp2580: - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_507 -Ltmp2581: - .p2align 4, 0x90 -LBB21_501: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2582: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2583: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_506 - jp LBB21_506 -Ltmp2584: -## %bb.502: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_506 -Ltmp2585: -## %bb.503: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2586: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_506 -Ltmp2587: -## %bb.504: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax -Ltmp2588: - ##DEBUG_VALUE: ib <- $rax - .loc 1 1486 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1486:37 - movzwl 8(%rdx), %ecx -Ltmp2589: - .loc 1 1486 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1486:13 - cmpl $3, %ecx - jne LBB21_498 -Ltmp2590: -LBB21_505: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rax - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2591: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2592: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_506 - jnp LBB21_489 -Ltmp2593: - .p2align 4, 0x90 -LBB21_506: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1489 16 ## /Users/dylan/github/ravi/src/lvm.c:1489:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2594: - .loc 1 1489 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1489:16 - movl $15, %r8d -Ltmp2595: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2596: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2597: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2598: - .loc 1 1489 16 ## /Users/dylan/github/ravi/src/lvm.c:1489:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2599: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2600: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2601: -LBB21_507: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1490 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2602: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2603: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1490 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - testl %r11d, %r11d -Ltmp2604: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2605: - .loc 1 1490 9 ## /Users/dylan/github/ravi/src/lvm.c:1490:9 - jne LBB21_492 -Ltmp2606: -LBB21_508: ## in Loop: Header=BB21_493 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2607: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2608: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2609: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2610: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2611: -LBB21_509: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_528 -Ltmp2612: -## %bb.510: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2613: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_528 -Ltmp2614: -## %bb.511: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax -Ltmp2615: - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - .loc 1 876 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp2616: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jns LBB21_522 -Ltmp2617: -LBB21_512: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx - negl %ecx - ## kill: def $cl killed $cl killed $ecx - shrq %cl, %rdi -Ltmp2618: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $-63, %rax -Ltmp2619: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovgeq %rdi, %rcx -Ltmp2620: -LBB21_513: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1497 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1497:11 - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_529 -Ltmp2621: -LBB21_514: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1500 9 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2622: - .loc 1 1500 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2623: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2624: - .loc 1 1500 9 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2625: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2626: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_530 -Ltmp2627: - .p2align 4, 0x90 -Ltmp2628: ## Block address taken -LBB21_515: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1493 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1493:22 - movzbl %r12b, %eax -Ltmp2629: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1839 -Ltmp2630: -## %bb.516: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2631: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1494 22 ## /Users/dylan/github/ravi/src/lvm.c:1494:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1840 -Ltmp2632: -## %bb.517: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2633: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1496 13 ## /Users/dylan/github/ravi/src/lvm.c:1496:13 - movzwl 8(%rsi), %eax - .loc 1 1496 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1496:34 - cmpl $3, %eax - je LBB21_523 -Ltmp2634: -## %bb.518: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_528 -Ltmp2635: -## %bb.519: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1496 13 ## /Users/dylan/github/ravi/src/lvm.c:1496:13 - movq (%rsi), %rdi -Ltmp2636: - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 1496 37 ## /Users/dylan/github/ravi/src/lvm.c:1496:37 - movzwl 8(%rdx), %eax -Ltmp2637: - .loc 1 1496 13 ## /Users/dylan/github/ravi/src/lvm.c:1496:13 - cmpl $3, %eax - je LBB21_527 -Ltmp2638: -LBB21_520: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_528 -Ltmp2639: -## %bb.521: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1496 37 ## /Users/dylan/github/ravi/src/lvm.c:1496:37 - movq (%rdx), %rax -Ltmp2640: - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - .loc 1 876 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp2641: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - js LBB21_512 -Ltmp2642: -LBB21_522: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 882 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - movl %eax, %ecx - shlq %cl, %rdi -Ltmp2643: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $63, %rax -Ltmp2644: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovleq %rdi, %rcx - jmp LBB21_513 -Ltmp2645: - .p2align 4, 0x90 -LBB21_523: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2646: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2647: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_528 - jp LBB21_528 -Ltmp2648: -## %bb.524: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_528 -Ltmp2649: -## %bb.525: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2650: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_528 -Ltmp2651: -## %bb.526: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rdi -Ltmp2652: - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 1496 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1496:37 - movzwl 8(%rdx), %eax -Ltmp2653: - .loc 1 1496 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1496:13 - cmpl $3, %eax - jne LBB21_520 -Ltmp2654: -LBB21_527: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2655: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2656: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_528 - jnp LBB21_509 -Ltmp2657: - .p2align 4, 0x90 -LBB21_528: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1499 16 ## /Users/dylan/github/ravi/src/lvm.c:1499:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2658: - .loc 1 1499 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1499:16 - movl $16, %r8d -Ltmp2659: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2660: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2661: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2662: - .loc 1 1499 16 ## /Users/dylan/github/ravi/src/lvm.c:1499:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2663: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2664: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2665: -LBB21_529: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1500 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2666: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2667: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1500 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - testl %r11d, %r11d -Ltmp2668: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2669: - .loc 1 1500 9 ## /Users/dylan/github/ravi/src/lvm.c:1500:9 - jne LBB21_514 -Ltmp2670: -LBB21_530: ## in Loop: Header=BB21_515 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2671: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2672: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2673: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2674: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2675: -LBB21_531: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_550 -Ltmp2676: -## %bb.532: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2677: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_550 -Ltmp2678: -## %bb.533: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax -Ltmp2679: - ##DEBUG_VALUE: ic <- $rax - .loc 1 876 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp2680: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jg LBB21_544 -Ltmp2681: -LBB21_534: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1507 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1507:11 - movl %eax, %ecx - negl %ecx - ## kill: def $cl killed $cl killed $ecx -Ltmp2682: - .loc 1 882 17 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - shlq %cl, %rdi -Ltmp2683: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $-63, %rax -Ltmp2684: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovgeq %rdi, %rcx -Ltmp2685: -LBB21_535: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1507 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1507:11 - movq %rcx, (%r15) - movw $19, 8(%r15) - jmp LBB21_551 -Ltmp2686: -LBB21_536: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1510 9 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2687: - .loc 1 1510 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2688: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2689: - .loc 1 1510 9 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2690: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2691: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_552 -Ltmp2692: - .p2align 4, 0x90 -Ltmp2693: ## Block address taken -LBB21_537: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1503 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1503:22 - movzbl %r12b, %eax -Ltmp2694: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1746 -Ltmp2695: -## %bb.538: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2696: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1504 22 ## /Users/dylan/github/ravi/src/lvm.c:1504:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1747 -Ltmp2697: -## %bb.539: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2698: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1506 13 ## /Users/dylan/github/ravi/src/lvm.c:1506:13 - movzwl 8(%rsi), %eax - .loc 1 1506 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1506:34 - cmpl $3, %eax - je LBB21_545 -Ltmp2699: -## %bb.540: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_550 -Ltmp2700: -## %bb.541: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1506 13 ## /Users/dylan/github/ravi/src/lvm.c:1506:13 - movq (%rsi), %rdi -Ltmp2701: - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 1506 37 ## /Users/dylan/github/ravi/src/lvm.c:1506:37 - movzwl 8(%rdx), %eax -Ltmp2702: - .loc 1 1506 13 ## /Users/dylan/github/ravi/src/lvm.c:1506:13 - cmpl $3, %eax - je LBB21_549 -Ltmp2703: -LBB21_542: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_550 -Ltmp2704: -## %bb.543: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1506 37 ## /Users/dylan/github/ravi/src/lvm.c:1506:37 - movq (%rdx), %rax -Ltmp2705: - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ic <- $rax - .loc 1 876 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp2706: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jle LBB21_534 -Ltmp2707: -LBB21_544: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx - shrq %cl, %rdi -Ltmp2708: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $63, %rax -Ltmp2709: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovleq %rdi, %rcx - jmp LBB21_535 -Ltmp2710: - .p2align 4, 0x90 -LBB21_545: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2711: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2712: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_550 - jp LBB21_550 -Ltmp2713: -## %bb.546: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_550 -Ltmp2714: -## %bb.547: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2715: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_550 -Ltmp2716: -## %bb.548: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rdi -Ltmp2717: - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: luaV_shiftl:x <- $rdi - .loc 1 1506 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1506:37 - movzwl 8(%rdx), %eax -Ltmp2718: - .loc 1 1506 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1506:13 - cmpl $3, %eax - jne LBB21_542 -Ltmp2719: -LBB21_549: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ib <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2720: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2721: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_550 - jnp LBB21_531 -Ltmp2722: - .p2align 4, 0x90 -LBB21_550: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1509 16 ## /Users/dylan/github/ravi/src/lvm.c:1509:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2723: - .loc 1 1509 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1509:16 - movl $17, %r8d -Ltmp2724: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2725: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2726: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2727: - .loc 1 1509 16 ## /Users/dylan/github/ravi/src/lvm.c:1509:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2728: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2729: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2730: -LBB21_551: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1510 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2731: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2732: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1510 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - testl %r11d, %r11d -Ltmp2733: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2734: - .loc 1 1510 9 ## /Users/dylan/github/ravi/src/lvm.c:1510:9 - jne LBB21_536 -Ltmp2735: -LBB21_552: ## in Loop: Header=BB21_537 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2736: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2737: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2738: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2739: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2740: -LBB21_553: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1526 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2741: - .loc 1 1526 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2742: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2743: - .loc 1 1526 9 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2744: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2745: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_572 -Ltmp2746: - .p2align 4, 0x90 -Ltmp2747: ## Block address taken -LBB21_554: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1513 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1513:22 - movzbl %r12b, %eax -Ltmp2748: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1647 -Ltmp2749: -## %bb.555: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2750: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1514 22 ## /Users/dylan/github/ravi/src/lvm.c:1514:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1648 -Ltmp2751: -## %bb.556: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2752: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1516 13 ## /Users/dylan/github/ravi/src/lvm.c:1516:13 - movzwl 8(%rsi), %eax - .loc 1 1516 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1516:29 - cmpl $3, %eax - je LBB21_562 -Ltmp2753: -## %bb.557: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_565 -Ltmp2754: -## %bb.558: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1516 32 ## /Users/dylan/github/ravi/src/lvm.c:1516:32 - movzwl 8(%rdx), %eax -Ltmp2755: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rsi), %rcx -Ltmp2756: - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: luaV_mod:m <- $rcx - .loc 1 1516 32 ## /Users/dylan/github/ravi/src/lvm.c:1516:32 - cmpl $19, %eax -Ltmp2757: - .loc 1 1516 13 ## /Users/dylan/github/ravi/src/lvm.c:1516:13 - jne LBB21_566 -Ltmp2758: -## %bb.559: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_mod:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1517 57 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1517:57 - movq (%rdx), %rsi -Ltmp2759: - ##DEBUG_VALUE: luaV_mod:n <- $rsi - ##DEBUG_VALUE: ic <- $rsi - .loc 1 855 20 ## /Users/dylan/github/ravi/src/lvm.c:855:20 - leaq 1(%rsi), %rax - .loc 1 855 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:855:25 - cmpq $1, %rax -Ltmp2760: - .loc 1 855 7 ## /Users/dylan/github/ravi/src/lvm.c:855:7 - ja LBB21_569 -Ltmp2761: -## %bb.560: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_mod:n <- $rsi - ##DEBUG_VALUE: luaV_mod:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 856 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:856:11 - testq %rsi, %rsi -Ltmp2762: - .loc 1 856 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:856:9 - je LBB21_1649 -Ltmp2763: -## %bb.561: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_mod:n <- $rsi - ##DEBUG_VALUE: luaV_mod:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %ecx, %ecx -Ltmp2764: - jmp LBB21_570 -Ltmp2765: - .p2align 4, 0x90 -LBB21_562: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1520 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1520:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2766: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1520 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1520:40 - movzwl 8(%rdx), %eax -Ltmp2767: - .loc 1 1520 18 ## /Users/dylan/github/ravi/src/lvm.c:1520:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - je LBB21_567 -Ltmp2768: -LBB21_563: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax - jne LBB21_565 -Ltmp2769: -## %bb.564: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 18 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %r13, %r14 - movq %r8, %r13 -Ltmp2770: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp2771: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp2772: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1520 40 ## /Users/dylan/github/ravi/src/lvm.c:1520:40 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2773: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 40 ## /Users/dylan/github/ravi/src/lvm.c:0:40 - jmp LBB21_568 -Ltmp2774: - .p2align 4, 0x90 -LBB21_565: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1525 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1525:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2775: - .loc 1 1525 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1525:16 - movl $9, %r8d -Ltmp2776: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2777: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2778: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2779: - .loc 1 1525 16 ## /Users/dylan/github/ravi/src/lvm.c:1525:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2780: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2781: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_571 -Ltmp2782: -LBB21_566: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1520 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1520:18 - xorps %xmm0, %xmm0 - cvtsi2sdq %rcx, %xmm0 -Ltmp2783: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1520 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1520:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - jne LBB21_563 -Ltmp2784: -LBB21_567: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 18 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %r13, %r14 - movq %r8, %r13 -Ltmp2785: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp2786: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp2787: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1520 40 ## /Users/dylan/github/ravi/src/lvm.c:1520:40 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2788: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_568: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1522 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1522:11 - movaps %xmm1, -112(%rbp) ## 16-byte Spill -Ltmp2789: - ##DEBUG_VALUE: nc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - callq _fmod -Ltmp2790: - ##DEBUG_VALUE: m <- $xmm0 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movapd -112(%rbp), %xmm3 ## 16-byte Reload -Ltmp2791: - ##DEBUG_VALUE: nc <- $xmm3 - .loc 1 1522 11 ## /Users/dylan/github/ravi/src/lvm.c:1522:11 - movapd %xmm3, %xmm1 - mulsd %xmm0, %xmm1 - addsd %xmm0, %xmm3 -Ltmp2792: - ##DEBUG_VALUE: m <- $xmm3 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorpd %xmm2, %xmm2 -Ltmp2793: - .loc 1 1522 11 ## /Users/dylan/github/ravi/src/lvm.c:1522:11 - cmpltsd %xmm2, %xmm1 - andpd %xmm1, %xmm3 -Ltmp2794: - andnpd %xmm0, %xmm1 - orpd %xmm3, %xmm1 -Ltmp2795: - ##DEBUG_VALUE: m <- $xmm1 - .loc 1 1523 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1523:11 - movsd %xmm1, (%r15) - movw $3, 8(%r15) - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r12d, %r11d - movq %r13, %r8 - movq %r14, %r13 -Ltmp2796: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - leaq _luaV_execute.dispatch_table(%rip), %r14 - jmp LBB21_571 -Ltmp2797: -LBB21_569: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_mod:n <- $rsi - ##DEBUG_VALUE: luaV_mod:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 861 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:861:23 - movq %rcx, %rax - cqto -Ltmp2798: - idivq %rsi -Ltmp2799: - ##DEBUG_VALUE: r <- $rdx - .loc 1 862 22 ## /Users/dylan/github/ravi/src/lvm.c:862:22 - xorq %rsi, %rcx -Ltmp2800: - .loc 1 862 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:862:11 - testq %rdx, %rdx - .loc 1 862 16 ## /Users/dylan/github/ravi/src/lvm.c:862:16 - cmoveq %rdx, %rsi -Ltmp2801: - sarq $63, %rcx - andq %rsi, %rcx - addq %rdx, %rcx -Ltmp2802: -LBB21_570: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1518 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1518:11 - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp2803: - .p2align 4, 0x90 -LBB21_571: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1526 9 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2804: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2805: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1526 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - testl %r11d, %r11d -Ltmp2806: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2807: - .loc 1 1526 9 ## /Users/dylan/github/ravi/src/lvm.c:1526:9 - jne LBB21_553 -Ltmp2808: -LBB21_572: ## in Loop: Header=BB21_554 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2809: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2810: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2811: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2812: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2813: -LBB21_573: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1540 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2814: - .loc 1 1540 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2815: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2816: - .loc 1 1540 9 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2817: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2818: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_593 -Ltmp2819: - .p2align 4, 0x90 -Ltmp2820: ## Block address taken -LBB21_574: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1529 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1529:22 - movzbl %r12b, %eax -Ltmp2821: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1748 -Ltmp2822: -## %bb.575: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2823: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1530 22 ## /Users/dylan/github/ravi/src/lvm.c:1530:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1749 -Ltmp2824: -## %bb.576: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2825: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1532 13 ## /Users/dylan/github/ravi/src/lvm.c:1532:13 - movzwl 8(%rsi), %eax - .loc 1 1532 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1532:29 - cmpl $3, %eax - je LBB21_582 -Ltmp2826: -## %bb.577: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_585 -Ltmp2827: -## %bb.578: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1532 32 ## /Users/dylan/github/ravi/src/lvm.c:1532:32 - movzwl 8(%rdx), %eax -Ltmp2828: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movq (%rsi), %rcx -Ltmp2829: - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: luaV_div:m <- $rcx - .loc 1 1532 32 ## /Users/dylan/github/ravi/src/lvm.c:1532:32 - cmpl $19, %eax -Ltmp2830: - .loc 1 1532 13 ## /Users/dylan/github/ravi/src/lvm.c:1532:13 - jne LBB21_586 -Ltmp2831: -## %bb.579: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1533 57 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1533:57 - movq (%rdx), %rsi -Ltmp2832: - ##DEBUG_VALUE: luaV_div:n <- $rsi - ##DEBUG_VALUE: ic <- $rsi - .loc 1 835 20 ## /Users/dylan/github/ravi/src/lvm.c:835:20 - leaq 1(%rsi), %rax - .loc 1 835 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:835:25 - cmpq $1, %rax -Ltmp2833: - .loc 1 835 7 ## /Users/dylan/github/ravi/src/lvm.c:835:7 - ja LBB21_589 -Ltmp2834: -## %bb.580: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_div:n <- $rsi - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 836 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:836:11 - testq %rsi, %rsi -Ltmp2835: - .loc 1 836 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:836:9 - je LBB21_1578 -Ltmp2836: -## %bb.581: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_div:n <- $rsi - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 838 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:838:12 - negq %rcx -Ltmp2837: - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movq %rcx, %rax - jmp LBB21_591 -Ltmp2838: - .p2align 4, 0x90 -LBB21_582: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1536 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1536:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2839: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1536 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1536:40 - movzwl 8(%rdx), %eax -Ltmp2840: - .loc 1 1536 18 ## /Users/dylan/github/ravi/src/lvm.c:1536:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - je LBB21_587 -Ltmp2841: -LBB21_583: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax - jne LBB21_585 -Ltmp2842: -## %bb.584: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1536 40 ## /Users/dylan/github/ravi/src/lvm.c:1536:40 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2843: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 40 ## /Users/dylan/github/ravi/src/lvm.c:0:40 - jmp LBB21_588 -Ltmp2844: - .p2align 4, 0x90 -LBB21_585: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1539 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1539:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2845: - .loc 1 1539 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1539:16 - movl $12, %r8d -Ltmp2846: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2847: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2848: - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %r10 -Ltmp2849: - .loc 1 1539 16 ## /Users/dylan/github/ravi/src/lvm.c:1539:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2850: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2851: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_592 -Ltmp2852: -LBB21_586: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1536 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1536:18 - xorps %xmm0, %xmm0 - cvtsi2sdq %rcx, %xmm0 -Ltmp2853: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1536 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1536:18 - movzwl %ax, %eax - cmpl $19, %eax - ##DEBUG_VALUE: nb <- $xmm0 - jne LBB21_583 -Ltmp2854: -LBB21_587: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1536 40 ## /Users/dylan/github/ravi/src/lvm.c:1536:40 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2855: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_588: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1537 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1537:11 - divsd %xmm1, %xmm0 -Ltmp2856: - roundsd $9, %xmm0, %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) - jmp LBB21_592 -Ltmp2857: -LBB21_589: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_div:n <- $rsi - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 842 26 ## /Users/dylan/github/ravi/src/lvm.c:842:26 - movq %rcx, %rax - cqto -Ltmp2858: - idivq %rsi -Ltmp2859: - ##DEBUG_VALUE: q <- $rax - .loc 1 842 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:842:17 - xorq %rcx, %rsi -Ltmp2860: - .loc 1 842 21 ## /Users/dylan/github/ravi/src/lvm.c:842:21 - jns LBB21_591 -Ltmp2861: -## %bb.590: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: q <- $rax - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 842 9 ## /Users/dylan/github/ravi/src/lvm.c:842:9 - cmpq $1, %rdx - adcq $-1, %rax -Ltmp2862: -LBB21_591: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1534 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1534:11 - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp2863: - .p2align 4, 0x90 -LBB21_592: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1540 9 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2864: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2865: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1540 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - testl %r11d, %r11d -Ltmp2866: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2867: - .loc 1 1540 9 ## /Users/dylan/github/ravi/src/lvm.c:1540:9 - jne LBB21_573 -Ltmp2868: -LBB21_593: ## in Loop: Header=BB21_574 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2869: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2870: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2871: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2872: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2873: -LBB21_594: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r13 - ##DEBUG_VALUE: luaV_execute:mask <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1550 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp2874: - movq %r13, (%rax) - movq -88(%rbp), %rbx ## 8-byte Reload -Ltmp2875: - .loc 1 1550 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - movq %rbx, %rdi - callq _luaG_traceexec -Ltmp2876: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2877: - .loc 1 1550 9 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r14 -Ltmp2878: - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movzbl 200(%rbx), %r11d - andl $12, %r11d -Ltmp2879: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_607 -Ltmp2880: - .p2align 4, 0x90 -Ltmp2881: ## Block address taken -LBB21_595: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1543 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1543:22 - movzbl %r12b, %eax -Ltmp2882: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1841 -Ltmp2883: -## %bb.596: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp2884: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1544 22 ## /Users/dylan/github/ravi/src/lvm.c:1544:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1842 -Ltmp2885: -## %bb.597: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp2886: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1546 13 ## /Users/dylan/github/ravi/src/lvm.c:1546:13 - movzwl 8(%rsi), %eax - .loc 1 1546 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1546:32 - cmpl $19, %eax - je LBB21_603 -Ltmp2887: -## %bb.598: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_602 -Ltmp2888: -## %bb.599: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1546 13 ## /Users/dylan/github/ravi/src/lvm.c:1546:13 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2889: - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1546 35 ## /Users/dylan/github/ravi/src/lvm.c:1546:35 - movzwl 8(%rdx), %eax -Ltmp2890: - .loc 1 1546 13 ## /Users/dylan/github/ravi/src/lvm.c:1546:13 - cmpl $19, %eax - je LBB21_604 -Ltmp2891: -LBB21_600: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_602 -Ltmp2892: -## %bb.601: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl %r11d, %r12d -Ltmp2893: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r8, %r14 -Ltmp2894: - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movq %r10, %rbx -Ltmp2895: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1546 35 ## /Users/dylan/github/ravi/src/lvm.c:1546:35 - movsd (%rdx), %xmm1 ## xmm1 = mem[0],zero -Ltmp2896: - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 0 35 ## /Users/dylan/github/ravi/src/lvm.c:0:35 - jmp LBB21_605 -Ltmp2897: - .p2align 4, 0x90 -LBB21_602: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1549 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1549:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2898: - .loc 1 1549 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1549:16 - movl $10, %r8d -Ltmp2899: - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp2900: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2901: - .loc 1 1549 16 ## /Users/dylan/github/ravi/src/lvm.c:1549:16 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r14 -Ltmp2902: - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movzbl 200(%r13), %eax - andl $12, %eax -Ltmp2903: - ##DEBUG_VALUE: luaV_execute:mask <- $eax - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - jmp LBB21_606 -Ltmp2904: - .p2align 4, 0x90 -LBB21_603: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1546 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1546:13 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rsi), %xmm0 -Ltmp2905: - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1546 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1546:35 - movzwl 8(%rdx), %eax -Ltmp2906: - .loc 1 1546 13 ## /Users/dylan/github/ravi/src/lvm.c:1546:13 - cmpl $19, %eax - jne LBB21_600 -Ltmp2907: -LBB21_604: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl %r11d, %r12d -Ltmp2908: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r8, %r14 -Ltmp2909: - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movq %r10, %rbx -Ltmp2910: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1546 35 ## /Users/dylan/github/ravi/src/lvm.c:1546:35 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rdx), %xmm1 -Ltmp2911: - ##DEBUG_VALUE: nc <- $xmm1 -LBB21_605: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - ##DEBUG_VALUE: nb <- $xmm0 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nc <- $xmm1 - .loc 1 1547 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1547:11 - callq _pow -Ltmp2912: - movsd %xmm0, (%r15) - movw $3, 8(%r15) - movl %r12d, %eax -Ltmp2913: -LBB21_606: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r14 - .loc 1 1550 9 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - movq %rbx, %r13 - addq $4, %r13 -Ltmp2914: - ##DEBUG_VALUE: luaV_execute:pc <- $r13 - movl (%rbx), %r12d -Ltmp2915: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1550 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - testl %eax, %eax -Ltmp2916: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2917: - .loc 1 1550 9 ## /Users/dylan/github/ravi/src/lvm.c:1550:9 - jne LBB21_594 -Ltmp2918: -LBB21_607: ## in Loop: Header=BB21_595 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r13 - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r14 - movzbl %r12b, %eax -Ltmp2919: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2920: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - movq %r14, %r8 -Ltmp2921: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - addq %r14, %r15 -Ltmp2922: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r13 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r13 - movl %eax, %ecx - movq %r13, %r10 -Ltmp2923: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq -88(%rbp), %r13 ## 8-byte Reload - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - leaq _luaV_execute.dispatch_table(%rip), %r14 - jmpq *(%r14,%rcx,8) -Ltmp2924: -LBB21_608: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1565 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2925: - .loc 1 1565 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp2926: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2927: - .loc 1 1565 9 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2928: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2929: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_616 -Ltmp2930: - .p2align 4, 0x90 -Ltmp2931: ## Block address taken -LBB21_609: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1553 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1553:22 - movzbl %r12b, %eax -Ltmp2932: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1712 -Ltmp2933: -## %bb.610: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp2934: - shlq $4, %r12 - leaq (%r8,%r12), %rsi -Ltmp2935: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1555 13 ## /Users/dylan/github/ravi/src/lvm.c:1555:13 - movzwl 8(%r8,%r12), %eax -Ltmp2936: - .loc 1 1555 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1555:13 - cmpl $3, %eax - je LBB21_613 -Ltmp2937: -## %bb.611: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_614 -Ltmp2938: -## %bb.612: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - xorl %eax, %eax -Ltmp2939: - .loc 1 1557 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1557:11 - subq (%rsi), %rax - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB21_615 -Ltmp2940: - .p2align 4, 0x90 -LBB21_613: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1559 18 ## /Users/dylan/github/ravi/src/lvm.c:1559:18 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero -Ltmp2941: - ##DEBUG_VALUE: nb <- $xmm0 - .loc 1 1560 11 ## /Users/dylan/github/ravi/src/lvm.c:1560:11 - xorpd LCPI21_2(%rip), %xmm0 -Ltmp2942: - movlpd %xmm0, (%r15) - movw $3, 8(%r15) - jmp LBB21_615 -Ltmp2943: - .p2align 4, 0x90 -LBB21_614: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1563 11 ## /Users/dylan/github/ravi/src/lvm.c:1563:11 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2944: - .loc 1 1563 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1563:11 - movl $18, %r8d -Ltmp2945: - movq %r13, %rdi - movq %rsi, %rdx - movq %r15, %rcx - movq %r10, %rbx -Ltmp2946: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2947: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2948: - .loc 1 1563 11 ## /Users/dylan/github/ravi/src/lvm.c:1563:11 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2949: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2950: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_615: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1565 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp2951: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1565 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - testl %r11d, %r11d -Ltmp2952: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2953: - .loc 1 1565 9 ## /Users/dylan/github/ravi/src/lvm.c:1565:9 - jne LBB21_608 -Ltmp2954: -LBB21_616: ## in Loop: Header=BB21_609 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2955: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2956: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2957: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp2958: -LBB21_617: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 110 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd LCPI21_0(%rip), %xmm0 - jb LBB21_627 -Ltmp2959: -## %bb.618: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: n <- $xmm1 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movsd LCPI21_1(%rip), %xmm1 ## xmm1 = mem[0],zero -Ltmp2960: - .loc 1 110 12 ## /Users/dylan/github/ravi/src/lvm.c:110:12 - ucomisd %xmm0, %xmm1 - jbe LBB21_627 -Ltmp2961: -## %bb.619: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: f <- $xmm0 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cvttsd2si %xmm0, %rax - jmp LBB21_625 -Ltmp2962: -LBB21_620: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1576 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp2963: - .loc 1 1576 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp2964: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2965: - .loc 1 1576 9 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2966: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2967: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_629 -Ltmp2968: - .p2align 4, 0x90 -Ltmp2969: ## Block address taken -LBB21_621: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1568 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1568:22 - movzbl %r12b, %eax -Ltmp2970: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1650 -Ltmp2971: -## %bb.622: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp2972: - shlq $4, %r12 - leaq (%r8,%r12), %rsi -Ltmp2973: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1570 13 ## /Users/dylan/github/ravi/src/lvm.c:1570:13 - movzwl 8(%r8,%r12), %eax -Ltmp2974: - .loc 1 1570 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1570:13 - cmpl $3, %eax - je LBB21_626 -Ltmp2975: -## %bb.623: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_627 -Ltmp2976: -## %bb.624: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1570 13 ## /Users/dylan/github/ravi/src/lvm.c:1570:13 - movq (%rsi), %rax -Ltmp2977: - ##DEBUG_VALUE: ib <- $rax -LBB21_625: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ib <- $rax - .loc 1 1571 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1571:11 - notq %rax -Ltmp2978: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB21_628 -Ltmp2979: - .p2align 4, 0x90 -LBB21_626: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 103 20 ## /Users/dylan/github/ravi/src/lvm.c:103:20 - movsd (%rsi), %xmm1 ## xmm1 = mem[0],zero -Ltmp2980: - ##DEBUG_VALUE: n <- $xmm1 - .loc 1 104 20 ## /Users/dylan/github/ravi/src/lvm.c:104:20 - xorps %xmm0, %xmm0 - roundsd $9, %xmm1, %xmm0 -Ltmp2981: - ##DEBUG_VALUE: f <- $xmm0 - .loc 1 105 9 ## /Users/dylan/github/ravi/src/lvm.c:105:9 - ucomisd %xmm0, %xmm1 - jne LBB21_627 - jnp LBB21_617 -Ltmp2982: -LBB21_627: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1574 11 ## /Users/dylan/github/ravi/src/lvm.c:1574:11 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp2983: - .loc 1 1574 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1574:11 - movl $19, %r8d -Ltmp2984: - movq %r13, %rdi - movq %rsi, %rdx - movq %r15, %rcx - movq %r10, %rbx -Ltmp2985: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaT_trybinTM -Ltmp2986: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp2987: - .loc 1 1574 11 ## /Users/dylan/github/ravi/src/lvm.c:1574:11 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp2988: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp2989: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_628: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1576 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp2990: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp2991: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1576 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - testl %r11d, %r11d -Ltmp2992: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp2993: - .loc 1 1576 9 ## /Users/dylan/github/ravi/src/lvm.c:1576:9 - jne LBB21_620 -Ltmp2994: -LBB21_629: ## in Loop: Header=BB21_621 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp2995: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp2996: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp2997: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp2998: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp2999: -LBB21_630: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1582 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp3000: - movq %r10, (%rax) -Ltmp3001: - .loc 1 1582 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3002: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3003: - .loc 1 1582 9 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3004: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3005: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_638 -Ltmp3006: - .p2align 4, 0x90 -Ltmp3007: ## Block address taken -LBB21_631: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1579 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1579:22 - movzbl %r12b, %eax -Ltmp3008: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1651 -Ltmp3009: -## %bb.632: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp3010: - .loc 1 1580 19 ## /Users/dylan/github/ravi/src/lvm.c:1580:19 - shlq $4, %r12 - movzwl 8(%r8,%r12), %eax - testw %ax, %ax - je LBB21_635 -Ltmp3011: -## %bb.633: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $1, %eax - jne LBB21_636 -Ltmp3012: -## %bb.634: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $0, (%r8,%r12) - sete %al - jmp LBB21_637 -Ltmp3013: - .p2align 4, 0x90 -LBB21_635: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - movb $1, %al - jmp LBB21_637 -Ltmp3014: - .p2align 4, 0x90 -LBB21_636: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorl %eax, %eax -Ltmp3015: -LBB21_637: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1580 19 ## /Users/dylan/github/ravi/src/lvm.c:1580:19 - movzbl %al, %eax -Ltmp3016: - ##DEBUG_VALUE: res <- $eax - .loc 1 1581 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1581:9 - movl %eax, (%r15) - movw $1, 8(%r15) -Ltmp3017: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1582 9 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3018: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1582 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - testl %r11d, %r11d -Ltmp3019: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3020: - .loc 1 1582 9 ## /Users/dylan/github/ravi/src/lvm.c:1582:9 - jne LBB21_630 -Ltmp3021: -LBB21_638: ## in Loop: Header=BB21_631 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3022: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3023: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3024: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3025: -LBB21_639: ## in Loop: Header=BB21_640 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1586 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3026: - .loc 1 1586 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3027: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp3028: - .loc 1 1586 9 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_643 -Ltmp3029: - .p2align 4, 0x90 -Ltmp3030: ## Block address taken -LBB21_640: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1585 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp3031: - movq %r10, (%rax) -Ltmp3032: - .loc 1 1585 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - movzbl %r12b, %eax - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1843 -Ltmp3033: -## %bb.641: ## in Loop: Header=BB21_640 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %rbx -Ltmp3034: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1585 9 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - shrl $24, %r12d -Ltmp3035: - shlq $4, %r12 - addq %r12, %r8 -Ltmp3036: - movq %r13, %rdi - movq %r15, %rsi - movq %r8, %rdx - callq _luaV_objlen -Ltmp3037: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1586 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - movl (%rbx), %r12d - addq $4, %rbx -Ltmp3038: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1586 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - testb $12, 200(%r13) - movq %rbx, %r10 -Ltmp3039: - .loc 1 1586 9 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - jne LBB21_639 -Ltmp3040: -## %bb.642: ## in Loop: Header=BB21_640 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax -Ltmp3041: -LBB21_643: ## in Loop: Header=BB21_640 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3042: - movzbl %al, %r11d -Ltmp3043: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3044: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1586 9 ## /Users/dylan/github/ravi/src/lvm.c:1586:9 - movzbl %r12b, %eax -Ltmp3045: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3046: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3047: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3048: -LBB21_644: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1599 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3049: - .loc 1 1599 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - movq %r13, %rdi - movq %r10, %rbx -Ltmp3050: - callq _luaG_traceexec -Ltmp3051: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3052: - .loc 1 1599 9 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3053: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_655 -Ltmp3054: - .p2align 4, 0x90 -Ltmp3055: ## Block address taken -LBB21_645: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1589 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1589:17 - movl %r12d, %r15d -Ltmp3056: - shrl $24, %r15d - .loc 1 1590 17 ## /Users/dylan/github/ravi/src/lvm.c:1590:17 - movl %r12d, %eax -Ltmp3057: - shrl $16, %eax - movzbl %al, %eax - movl $1, %esi -Ltmp3058: - .loc 1 1593 9 ## /Users/dylan/github/ravi/src/lvm.c:1593:9 - subl %r15d, %esi - addl %eax, %esi -Ltmp3059: - .loc 1 1592 27 ## /Users/dylan/github/ravi/src/lvm.c:1592:27 - shlq $4, %rax - leaq 16(%r8,%rax), %rax - .loc 1 1592 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1592:16 - movq %rax, 16(%r13) -Ltmp3060: - .loc 1 1593 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1593:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r13, %rbx - movq %r10, %r13 - movq %r10, (%rax) -Ltmp3061: - .loc 1 1593 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1593:9 - movq %rbx, %rdi - callq _luaV_concat -Ltmp3062: - .loc 1 1593 9 ## /Users/dylan/github/ravi/src/lvm.c:1593:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax -Ltmp3063: - ##DEBUG_VALUE: luaV_execute:base <- $rax - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r9 - .loc 1 1593 9 ## /Users/dylan/github/ravi/src/lvm.c:1593:9 - movzbl 200(%rbx), %r8d -Ltmp3064: - .loc 1 1594 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1594:14 - shrl $8, %r12d -Ltmp3065: - andl $127, %r12d - movq %r12, %rcx - shlq $4, %rcx - .loc 1 1595 19 ## /Users/dylan/github/ravi/src/lvm.c:1595:19 - movq %r15, %rdx - shlq $4, %rdx -Ltmp3066: - .loc 1 1596 9 ## /Users/dylan/github/ravi/src/lvm.c:1596:9 - movq (%rax,%rdx), %rsi - movq %rsi, (%rax,%rcx) - movzwl 8(%rax,%rdx), %edi - movq %rax, %rbx - movw %di, 8(%rax,%rcx) -Ltmp3067: - ##DEBUG_VALUE: luaV_execute:base <- $rbx - testw %di, %di - js LBB21_647 -Ltmp3068: -## %bb.646: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - movq -96(%rbp), %rax ## 8-byte Reload - movq (%rax), %rsi - movq -128(%rbp), %r14 ## 8-byte Reload - cmpq $0, 24(%rsi) -Ltmp3069: - .loc 1 1597 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - jg LBB21_650 -Ltmp3070: -LBB21_651: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %rax ## 8-byte Reload - movq %r13, %r10 - movq %r9, %r13 - movq %rax, %r9 - jmp LBB21_652 -Ltmp3071: - .p2align 4, 0x90 -LBB21_647: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1596 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1596:9 - andl $127, %edi - movzbl 8(%rsi), %eax - cmpl %eax, %edi - movq -128(%rbp), %r14 ## 8-byte Reload - jne LBB21_1844 -Ltmp3072: -## %bb.648: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rsi), %edi - xorb $3, %dil - movq -96(%rbp), %rax ## 8-byte Reload - movq (%rax), %rsi - movzbl 84(%rsi), %eax - xorb $3, %al - testb %dil, %al - je LBB21_1844 -Ltmp3073: -## %bb.649: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - cmpq $0, 24(%rsi) -Ltmp3074: - .loc 1 1597 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - jle LBB21_651 -Ltmp3075: -LBB21_650: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - addq %rbx, %rcx -Ltmp3076: - ##DEBUG_VALUE: io1 <- $rcx - ##DEBUG_VALUE: ra <- $rcx - addq %rbx, %rdx -Ltmp3077: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: rb <- $rdx - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - addq $16, %rcx -Ltmp3078: - cmpl %r15d, %r12d - cmovbq %rdx, %rcx - movq %r9, %rbx -Ltmp3079: - movq %rcx, 16(%r9) - movq %r9, %rdi - callq _luaC_step -Ltmp3080: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %r10 - movq %rbx, %r13 -Ltmp3081: - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - movq %r10, 40(%r14) -Ltmp3082: - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - movq 8(%r14), %rax - movq %rax, 16(%rbx) -Ltmp3083: - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - movq 32(%r14), %rbx -Ltmp3084: - ##DEBUG_VALUE: luaV_execute:base <- $rbx - movzbl 200(%r13), %r8d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3085: -LBB21_652: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - movq -8(%r13), %rcx - movl (%rcx), %edx - movl %edx, %eax - decl %eax - movl %eax, (%rcx) - jne LBB21_1845 -Ltmp3086: -## %bb.653: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movl %edx, (%rcx) -Ltmp3087: - .loc 1 1598 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1598:22 - movq 8(%r14), %rax - .loc 1 1598 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1598:16 - movq %rax, 16(%r13) -Ltmp3088: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1599 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3089: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1599 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - testb $12, %r8b -Ltmp3090: - .loc 1 1599 9 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - jne LBB21_644 -Ltmp3091: -## %bb.654: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax - movq %rbx, %r8 -Ltmp3092: -LBB21_655: ## in Loop: Header=BB21_645 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3093: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %al, %r11d -Ltmp3094: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 1599 9 ## /Users/dylan/github/ravi/src/lvm.c:1599:9 - movzbl %r12b, %eax -Ltmp3095: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3096: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3097: -LBB21_656: ## in Loop: Header=BB21_657 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1603 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp3098: - .loc 1 1603 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp3099: - .loc 1 1603 9 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3100: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_661 -Ltmp3101: - .p2align 4, 0x90 -Ltmp3102: ## Block address taken -LBB21_657: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1602 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - movl %r12d, %eax -Ltmp3103: - shrl $8, %eax -Ltmp3104: - .loc 1 1602 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - andl $127, %eax -Ltmp3105: - .loc 1 1602 9 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - je LBB21_659 -Ltmp3106: -## %bb.658: ## in Loop: Header=BB21_657 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1602 9 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movl %eax, %eax - shlq $4, %rax - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp3107: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r8, %rbx -Ltmp3108: - ##DEBUG_VALUE: luaV_execute:base <- $rbx - .loc 1 1602 9 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - callq _luaF_close -Ltmp3109: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r8 - movq %r15, %r10 -Ltmp3110: -LBB21_659: ## in Loop: Header=BB21_657 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1602 9 ## /Users/dylan/github/ravi/src/lvm.c:1602:9 - shrl $16, %r12d -Ltmp3111: - .loc 1 1603 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - leaq -131068(%r10,%r12,4), %rbx -Ltmp3112: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl -131072(%r10,%r12,4), %r12d -Ltmp3113: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1603 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - testb $12, 200(%r13) -Ltmp3114: - .loc 1 1603 9 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - jne LBB21_656 -Ltmp3115: -## %bb.660: ## in Loop: Header=BB21_657 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax -Ltmp3116: -LBB21_661: ## in Loop: Header=BB21_657 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3117: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %al, %r11d -Ltmp3118: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 1603 9 ## /Users/dylan/github/ravi/src/lvm.c:1603:9 - movzbl %r12b, %eax -Ltmp3119: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3120: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp3121: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp3122: -LBB21_662: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1616 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp3123: - .loc 1 1616 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp3124: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3125: - .loc 1 1616 9 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3126: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_672 -Ltmp3127: - .p2align 4, 0x90 -Ltmp3128: ## Block address taken -LBB21_663: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1606 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1606:22 - movzbl %r12b, %eax -Ltmp3129: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1846 -Ltmp3130: -## %bb.664: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1607 22 ## /Users/dylan/github/ravi/src/lvm.c:1607:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1750 -Ltmp3131: -## %bb.665: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1606 22 ## /Users/dylan/github/ravi/src/lvm.c:1606:22 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %esi - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rax, %rsi -Ltmp3132: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1607 22 ## /Users/dylan/github/ravi/src/lvm.c:1607:22 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp3133: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1609 9 ## /Users/dylan/github/ravi/src/lvm.c:1609:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3134: - .loc 1 1609 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1609:9 - movq %r13, %rdi - movq %r10, %r15 -Ltmp3135: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - callq _luaV_equalobj -Ltmp3136: - ##DEBUG_VALUE: res <- $eax - .loc 1 1609 9 ## /Users/dylan/github/ravi/src/lvm.c:1609:9 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %r8 -Ltmp3137: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1612 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1612:20 - shrl $8, %r12d -Ltmp3138: - andl $127, %r12d - .loc 1 1612 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1612:17 - cmpl %r12d, %eax -Ltmp3139: - .loc 1 1612 13 ## /Users/dylan/github/ravi/src/lvm.c:1612:13 - jne LBB21_669 -Ltmp3140: -## %bb.666: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1615 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - movl (%r15), %ebx -Ltmp3141: - ##DEBUG_VALUE: i <- $ebx - .loc 1 1615 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - movl %ebx, %eax -Ltmp3142: - shrl $8, %eax - andl $127, %eax -Ltmp3143: - ##DEBUG_VALUE: a <- $eax - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r15, %rcx - .loc 1 1615 11 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - je LBB21_668 -Ltmp3144: -## %bb.667: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1615 11 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - shlq $4, %rax -Ltmp3145: - leaq -16(%r8,%rax), %rsi - movq %r13, %rdi - movq %rcx, %r15 -Ltmp3146: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp3147: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 1615 11 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - callq _luaF_close -Ltmp3148: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %rcx -Ltmp3149: -LBB21_668: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1615 11 ## /Users/dylan/github/ravi/src/lvm.c:1615:11 - shrl $16, %ebx -Ltmp3150: - addl $-32767, %ebx ## imm = 0x8001 - movslq %ebx, %rax - jmp LBB21_670 -Ltmp3151: - .p2align 4, 0x90 -LBB21_669: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movl $1, %eax -Ltmp3152: - movq %r15, %rcx -Ltmp3153: -LBB21_670: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1616 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - leaq 4(%rcx,%rax,4), %rbx -Ltmp3154: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%rcx,%rax,4), %r12d -Ltmp3155: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1616 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - testb $12, 200(%r13) - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3156: - .loc 1 1616 9 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - jne LBB21_662 -Ltmp3157: -## %bb.671: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax -Ltmp3158: -LBB21_672: ## in Loop: Header=BB21_663 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %al, %r11d -Ltmp3159: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 1616 9 ## /Users/dylan/github/ravi/src/lvm.c:1616:9 - movzbl %r12b, %eax -Ltmp3160: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3161: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp3162: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp3163: -LBB21_673: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1633 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3164: - .loc 1 1633 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3165: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3166: - .loc 1 1633 9 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3167: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3168: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_689 -Ltmp3169: - .p2align 4, 0x90 -Ltmp3170: ## Block address taken -LBB21_674: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1619 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1619:22 - movzbl %r12b, %eax -Ltmp3171: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1751 -Ltmp3172: -## %bb.675: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp3173: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1620 22 ## /Users/dylan/github/ravi/src/lvm.c:1620:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1752 -Ltmp3174: -## %bb.676: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp3175: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1622 13 ## /Users/dylan/github/ravi/src/lvm.c:1622:13 - movzwl 8(%rsi), %eax - cmpl $19, %eax - .loc 1 1622 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1622:29 - jne LBB21_679 -Ltmp3176: -## %bb.677: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1622 32 ## /Users/dylan/github/ravi/src/lvm.c:1622:32 - movzwl 8(%rdx), %eax - cmpl $19, %eax -Ltmp3177: - .loc 1 1622 13 ## /Users/dylan/github/ravi/src/lvm.c:1622:13 - jne LBB21_681 -Ltmp3178: -## %bb.678: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r10, %r15 -Ltmp3179: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 1623 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1623:18 - movq (%rsi), %rcx - .loc 1 1623 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1623:29 - xorl %eax, %eax - cmpq (%rdx), %rcx - setl %al -Ltmp3180: - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1629 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1629:20 - shrl $8, %r12d -Ltmp3181: - andl $127, %r12d - .loc 1 1629 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1629:17 - cmpl %r12d, %eax -Ltmp3182: - .loc 1 1629 13 ## /Users/dylan/github/ravi/src/lvm.c:1629:13 - jne LBB21_683 - jmp LBB21_685 -Ltmp3183: - .p2align 4, 0x90 -LBB21_679: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1624 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1624:18 - andl $15, %eax - cmpl $3, %eax - .loc 1 1624 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1624:33 - jne LBB21_684 -Ltmp3184: -## %bb.680: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1624 36 ## /Users/dylan/github/ravi/src/lvm.c:1624:36 - movzwl 8(%rdx), %eax -Ltmp3185: -LBB21_681: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $15, %eax - cmpl $3, %eax -Ltmp3186: - .loc 1 1624 18 ## /Users/dylan/github/ravi/src/lvm.c:1624:18 - jne LBB21_684 -Ltmp3187: -## %bb.682: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 18 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %r10, %r15 -Ltmp3188: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 1625 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1625:17 - movq %rsi, %rdi - movq %rdx, %rsi -Ltmp3189: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - movl %r11d, %ebx -Ltmp3190: - ##DEBUG_VALUE: luaV_execute:mask <- $ebx - movq %r13, %r14 - movq %r8, %r13 -Ltmp3191: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - .loc 1 1625 17 ## /Users/dylan/github/ravi/src/lvm.c:1625:17 - callq _LTnum -Ltmp3192: - .loc 1 0 17 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - movq %r13, %r8 - movq %r14, %r13 -Ltmp3193: - leaq _luaV_execute.dispatch_table(%rip), %r14 - movl %ebx, %r11d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3194: - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1629 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1629:20 - shrl $8, %r12d -Ltmp3195: - andl $127, %r12d - .loc 1 1629 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1629:17 - cmpl %r12d, %eax -Ltmp3196: - .loc 1 1629 13 ## /Users/dylan/github/ravi/src/lvm.c:1629:13 - je LBB21_685 -Ltmp3197: -LBB21_683: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r15, %r10 -Ltmp3198: - .loc 1 1630 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1630:13 - addq $4, %r10 -Ltmp3199: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - jmp LBB21_688 -Ltmp3200: - .p2align 4, 0x90 -LBB21_684: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1626 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1626:14 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, %r15 -Ltmp3201: - movq %r10, (%rax) -Ltmp3202: - .loc 1 1626 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1626:14 - movq %r13, %rdi - callq _luaV_lessthan -Ltmp3203: - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3204: - ##DEBUG_VALUE: res <- $eax - .loc 1 1626 14 ## /Users/dylan/github/ravi/src/lvm.c:1626:14 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %r8 -Ltmp3205: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3206: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1629 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1629:20 - shrl $8, %r12d -Ltmp3207: - andl $127, %r12d - .loc 1 1629 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1629:17 - cmpl %r12d, %eax -Ltmp3208: - .loc 1 1629 13 ## /Users/dylan/github/ravi/src/lvm.c:1629:13 - jne LBB21_683 -Ltmp3209: -LBB21_685: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r15, %r10 -Ltmp3210: - .loc 1 1632 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1632:11 - movl (%r15), %ebx -Ltmp3211: - ##DEBUG_VALUE: i <- $ebx - .loc 1 1632 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1632:11 - movl %ebx, %eax -Ltmp3212: - shrl $8, %eax - andl $127, %eax -Ltmp3213: - ##DEBUG_VALUE: a <- $eax - je LBB21_687 -Ltmp3214: -## %bb.686: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1632 11 ## /Users/dylan/github/ravi/src/lvm.c:1632:11 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - shlq $4, %rax -Ltmp3215: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r8, %r12 -Ltmp3216: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - callq _luaF_close -Ltmp3217: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3218: -LBB21_687: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1632 11 ## /Users/dylan/github/ravi/src/lvm.c:1632:11 - shrl $16, %ebx -Ltmp3219: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp3220: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3221: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_688: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1633 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp3222: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1633 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - testl %r11d, %r11d -Ltmp3223: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3224: - .loc 1 1633 9 ## /Users/dylan/github/ravi/src/lvm.c:1633:9 - jne LBB21_673 -Ltmp3225: -LBB21_689: ## in Loop: Header=BB21_674 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3226: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3227: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3228: -LBB21_690: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1650 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3229: - .loc 1 1650 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3230: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3231: - .loc 1 1650 9 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3232: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3233: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_706 -Ltmp3234: - .p2align 4, 0x90 -Ltmp3235: ## Block address taken -LBB21_691: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1636 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1636:22 - movzbl %r12b, %eax -Ltmp3236: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1579 -Ltmp3237: -## %bb.692: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %esi - shrl $24, %esi - movl %esi, %ecx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rsi - addq %r8, %rsi - testl %r12d, %r12d - cmovsq %rcx, %rsi -Ltmp3238: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 1637 22 ## /Users/dylan/github/ravi/src/lvm.c:1637:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1580 -Ltmp3239: -## %bb.693: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $16, %eax - movzbl %al, %edx - ## kill: def $eax killed $eax def $rax - andl $127, %eax - shlq $4, %rax - addq %r9, %rax - shlq $4, %rdx - addq %r8, %rdx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rax, %rdx -Ltmp3240: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 1639 13 ## /Users/dylan/github/ravi/src/lvm.c:1639:13 - movzwl 8(%rsi), %eax - cmpl $19, %eax - .loc 1 1639 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1639:29 - jne LBB21_696 -Ltmp3241: -## %bb.694: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1639 32 ## /Users/dylan/github/ravi/src/lvm.c:1639:32 - movzwl 8(%rdx), %eax - cmpl $19, %eax -Ltmp3242: - .loc 1 1639 13 ## /Users/dylan/github/ravi/src/lvm.c:1639:13 - jne LBB21_698 -Ltmp3243: -## %bb.695: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r10, %r15 -Ltmp3244: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 1640 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1640:18 - movq (%rsi), %rcx - .loc 1 1640 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1640:29 - xorl %eax, %eax - cmpq (%rdx), %rcx - setle %al -Ltmp3245: - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1646 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1646:20 - shrl $8, %r12d -Ltmp3246: - andl $127, %r12d - .loc 1 1646 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1646:17 - cmpl %r12d, %eax -Ltmp3247: - .loc 1 1646 13 ## /Users/dylan/github/ravi/src/lvm.c:1646:13 - jne LBB21_700 - jmp LBB21_702 -Ltmp3248: - .p2align 4, 0x90 -LBB21_696: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1641 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1641:18 - andl $15, %eax - cmpl $3, %eax - .loc 1 1641 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1641:33 - jne LBB21_701 -Ltmp3249: -## %bb.697: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1641 36 ## /Users/dylan/github/ravi/src/lvm.c:1641:36 - movzwl 8(%rdx), %eax -Ltmp3250: -LBB21_698: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $15, %eax - cmpl $3, %eax -Ltmp3251: - .loc 1 1641 18 ## /Users/dylan/github/ravi/src/lvm.c:1641:18 - jne LBB21_701 -Ltmp3252: -## %bb.699: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 18 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %r10, %r15 -Ltmp3253: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 1642 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1642:17 - movq %rsi, %rdi - movq %rdx, %rsi -Ltmp3254: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - movl %r11d, %ebx -Ltmp3255: - ##DEBUG_VALUE: luaV_execute:mask <- $ebx - movq %r13, %r14 - movq %r8, %r13 -Ltmp3256: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - .loc 1 1642 17 ## /Users/dylan/github/ravi/src/lvm.c:1642:17 - callq _LEnum -Ltmp3257: - .loc 1 0 17 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - movq %r13, %r8 - movq %r14, %r13 -Ltmp3258: - leaq _luaV_execute.dispatch_table(%rip), %r14 - movl %ebx, %r11d - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3259: - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1646 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1646:20 - shrl $8, %r12d -Ltmp3260: - andl $127, %r12d - .loc 1 1646 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1646:17 - cmpl %r12d, %eax -Ltmp3261: - .loc 1 1646 13 ## /Users/dylan/github/ravi/src/lvm.c:1646:13 - je LBB21_702 -Ltmp3262: -LBB21_700: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r15, %r10 -Ltmp3263: - .loc 1 1647 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1647:13 - addq $4, %r10 -Ltmp3264: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - jmp LBB21_705 -Ltmp3265: - .p2align 4, 0x90 -LBB21_701: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1643 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1643:14 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, %r15 -Ltmp3266: - movq %r10, (%rax) -Ltmp3267: - .loc 1 1643 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1643:14 - movq %r13, %rdi - callq _luaV_lessequal -Ltmp3268: - .loc 1 0 14 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3269: - ##DEBUG_VALUE: res <- $eax - .loc 1 1643 14 ## /Users/dylan/github/ravi/src/lvm.c:1643:14 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %r8 -Ltmp3270: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3271: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: res <- $eax - .loc 1 1646 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1646:20 - shrl $8, %r12d -Ltmp3272: - andl $127, %r12d - .loc 1 1646 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1646:17 - cmpl %r12d, %eax -Ltmp3273: - .loc 1 1646 13 ## /Users/dylan/github/ravi/src/lvm.c:1646:13 - jne LBB21_700 -Ltmp3274: -LBB21_702: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: res <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r15, %r10 -Ltmp3275: - .loc 1 1649 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1649:11 - movl (%r15), %ebx -Ltmp3276: - ##DEBUG_VALUE: i <- $ebx - .loc 1 1649 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1649:11 - movl %ebx, %eax -Ltmp3277: - shrl $8, %eax - andl $127, %eax -Ltmp3278: - ##DEBUG_VALUE: a <- $eax - je LBB21_704 -Ltmp3279: -## %bb.703: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1649 11 ## /Users/dylan/github/ravi/src/lvm.c:1649:11 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - shlq $4, %rax -Ltmp3280: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r8, %r12 -Ltmp3281: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - callq _luaF_close -Ltmp3282: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3283: -LBB21_704: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1649 11 ## /Users/dylan/github/ravi/src/lvm.c:1649:11 - shrl $16, %ebx -Ltmp3284: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp3285: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3286: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_705: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1650 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp3287: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1650 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - testl %r11d, %r11d -Ltmp3288: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3289: - .loc 1 1650 9 ## /Users/dylan/github/ravi/src/lvm.c:1650:9 - jne LBB21_690 -Ltmp3290: -LBB21_706: ## in Loop: Header=BB21_691 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3291: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3292: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3293: -LBB21_707: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1657 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3294: - .loc 1 1657 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3295: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3296: - .loc 1 1657 9 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3297: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3298: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_720 -Ltmp3299: - .p2align 4, 0x90 -Ltmp3300: ## Block address taken -LBB21_708: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%r15), %eax -Ltmp3301: - .loc 1 1653 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1653:13 - testl $16711680, %r12d ## imm = 0xFF0000 -Ltmp3302: - .loc 1 1653 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1653:13 - je LBB21_712 -Ltmp3303: -## %bb.709: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - testw %ax, %ax - .loc 1 1653 27 ## /Users/dylan/github/ravi/src/lvm.c:1653:27 - je LBB21_715 -Ltmp3304: -## %bb.710: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $1, %eax - jne LBB21_716 -Ltmp3305: -## %bb.711: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $0, (%r15) - jne LBB21_716 - jmp LBB21_715 -Ltmp3306: - .p2align 4, 0x90 -LBB21_712: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - testw %ax, %ax - .loc 1 1653 44 ## /Users/dylan/github/ravi/src/lvm.c:1653:44 - je LBB21_716 -Ltmp3307: -## %bb.713: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $1, %eax - jne LBB21_715 -Ltmp3308: -## %bb.714: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $0, (%r15) -Ltmp3309: - .loc 1 1653 13 ## /Users/dylan/github/ravi/src/lvm.c:1653:13 - je LBB21_716 -Ltmp3310: - .p2align 4, 0x90 -LBB21_715: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1654 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1654:13 - addq $4, %r10 -Ltmp3311: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - jmp LBB21_719 -Ltmp3312: - .p2align 4, 0x90 -LBB21_716: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1656 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1656:11 - movl (%r10), %ebx -Ltmp3313: - ##DEBUG_VALUE: i <- $ebx - .loc 1 1656 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1656:11 - movl %ebx, %eax - shrl $8, %eax - andl $127, %eax -Ltmp3314: - ##DEBUG_VALUE: a <- $eax - je LBB21_718 -Ltmp3315: -## %bb.717: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1656 11 ## /Users/dylan/github/ravi/src/lvm.c:1656:11 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - shlq $4, %rax -Ltmp3316: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp3317: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp3318: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 1656 11 ## /Users/dylan/github/ravi/src/lvm.c:1656:11 - callq _luaF_close -Ltmp3319: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3320: -LBB21_718: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1656 11 ## /Users/dylan/github/ravi/src/lvm.c:1656:11 - shrl $16, %ebx -Ltmp3321: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp3322: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3323: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_719: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1657 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp3324: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1657 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - testl %r11d, %r11d -Ltmp3325: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3326: - .loc 1 1657 9 ## /Users/dylan/github/ravi/src/lvm.c:1657:9 - jne LBB21_707 -Ltmp3327: -LBB21_720: ## in Loop: Header=BB21_708 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3328: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3329: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3330: -LBB21_721: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1667 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3331: - .loc 1 1667 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3332: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3333: - .loc 1 1667 9 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3334: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3335: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_739 -Ltmp3336: - .p2align 4, 0x90 -Ltmp3337: ## Block address taken -LBB21_722: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1660 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1660:22 - movzbl %r12b, %eax -Ltmp3338: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1652 -Ltmp3339: -## %bb.723: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r8,%rax), %rcx -Ltmp3340: - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzwl 8(%r8,%rax), %edx - .loc 1 1661 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1661:13 - testl $16711680, %r12d ## imm = 0xFF0000 -Ltmp3341: - .loc 1 1661 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1661:13 - je LBB21_727 -Ltmp3342: -## %bb.724: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - testw %dx, %dx - .loc 1 1661 27 ## /Users/dylan/github/ravi/src/lvm.c:1661:27 - je LBB21_730 -Ltmp3343: -## %bb.725: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %dx, %edx - cmpl $1, %edx - jne LBB21_731 -Ltmp3344: -## %bb.726: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $0, (%rcx) - jne LBB21_731 - jmp LBB21_730 -Ltmp3345: - .p2align 4, 0x90 -LBB21_727: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - testw %dx, %dx - .loc 1 1661 44 ## /Users/dylan/github/ravi/src/lvm.c:1661:44 - je LBB21_731 -Ltmp3346: -## %bb.728: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %dx, %edx - cmpl $1, %edx - jne LBB21_730 -Ltmp3347: -## %bb.729: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $0, (%rcx) -Ltmp3348: - .loc 1 1661 13 ## /Users/dylan/github/ravi/src/lvm.c:1661:13 - je LBB21_731 -Ltmp3349: - .p2align 4, 0x90 -LBB21_730: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1662 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1662:13 - addq $4, %r10 -Ltmp3350: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - jmp LBB21_738 -Ltmp3351: - .p2align 4, 0x90 -LBB21_731: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 8(%r8,%rax), %rdx -Ltmp3352: - .loc 1 1664 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1664:11 - movq (%rcx), %rax - movq %rax, (%r15) - movzwl (%rdx), %ecx -Ltmp3353: - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_735 -Ltmp3354: -## %bb.732: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1653 -Ltmp3355: -## %bb.733: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 1664 11 ## /Users/dylan/github/ravi/src/lvm.c:1664:11 - je LBB21_735 -Ltmp3356: -## %bb.734: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1653 -Ltmp3357: -LBB21_735: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1665 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1665:11 - movl (%r10), %ebx -Ltmp3358: - ##DEBUG_VALUE: i <- $ebx - .loc 1 1665 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1665:11 - movl %ebx, %eax - shrl $8, %eax - andl $127, %eax -Ltmp3359: - ##DEBUG_VALUE: a <- $eax - je LBB21_737 -Ltmp3360: -## %bb.736: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1665 11 ## /Users/dylan/github/ravi/src/lvm.c:1665:11 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - shlq $4, %rax -Ltmp3361: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp3362: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp3363: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 1665 11 ## /Users/dylan/github/ravi/src/lvm.c:1665:11 - callq _luaF_close -Ltmp3364: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 -Ltmp3365: -LBB21_737: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1665 11 ## /Users/dylan/github/ravi/src/lvm.c:1665:11 - shrl $16, %ebx -Ltmp3366: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp3367: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3368: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3369: -LBB21_738: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1667 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp3370: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1667 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - testl %r11d, %r11d -Ltmp3371: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3372: - .loc 1 1667 9 ## /Users/dylan/github/ravi/src/lvm.c:1667:9 - jne LBB21_721 -Ltmp3373: -LBB21_739: ## in Loop: Header=BB21_722 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3374: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3375: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3376: -LBB21_740: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1698 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3377: - .loc 1 1698 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3378: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3379: - .loc 1 1698 9 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3380: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_750 -Ltmp3381: - .p2align 4, 0x90 -Ltmp3382: ## Block address taken -LBB21_741: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1670 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1670:17 - movl %r12d, %eax -Ltmp3383: - shrl $24, %eax - .loc 1 1671 24 ## /Users/dylan/github/ravi/src/lvm.c:1671:24 - shrl $16, %r12d -Ltmp3384: - movzbl %r12b, %r12d - .loc 1 1671 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1671:36 - leal -1(%r12), %edx -Ltmp3385: - ##DEBUG_VALUE: nresults <- $edx - .loc 1 1672 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1672:15 - testl %eax, %eax -Ltmp3386: - .loc 1 1672 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1672:13 - je LBB21_743 -Ltmp3387: -## %bb.742: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nresults <- $edx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1673 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1673:22 - movl %eax, %eax - shlq $4, %rax - addq %r15, %rax - .loc 1 1673 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1673:18 - movq %rax, 16(%r13) -Ltmp3388: -LBB21_743: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nresults <- $edx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: c_or_compiled <- 0 - .loc 1 1681 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1681:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, %rbx - movq %r10, (%rax) -Ltmp3389: - .loc 1 1681 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1681:9 - movl $1, %ecx - movq %r13, %rdi - movq %r15, %rsi - callq _luaD_precall -Ltmp3390: - ##DEBUG_VALUE: c_or_compiled <- $eax - .loc 1 1682 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1682:13 - testl %eax, %eax -Ltmp3391: - .loc 1 1682 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1682:13 - je LBB21_751 -Ltmp3392: -## %bb.744: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq -56(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %r8 -Ltmp3393: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %ecx -Ltmp3394: - .loc 1 1687 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1687:46 - testl %r12d, %r12d - movq -128(%rbp), %rdx ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - .loc 1 1687 34 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1687:34 - je LBB21_748 -Ltmp3395: -## %bb.745: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpl $1, %eax - jne LBB21_748 -Ltmp3396: -## %bb.746: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1688 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1688:13 - cmpq 32(%r13), %rdx - jne LBB21_1847 -Ltmp3397: -## %bb.747: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1689 26 ## /Users/dylan/github/ravi/src/lvm.c:1689:26 - movq 8(%rdx), %rax -Ltmp3398: - .loc 1 1689 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1689:20 - movq %rax, 16(%r13) -Ltmp3399: -LBB21_748: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1698 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3400: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1698 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - testb $12, %cl -Ltmp3401: - .loc 1 1698 9 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - jne LBB21_740 -Ltmp3402: -## %bb.749: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax -Ltmp3403: -LBB21_750: ## in Loop: Header=BB21_741 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %al, %r11d -Ltmp3404: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 1698 9 ## /Users/dylan/github/ravi/src/lvm.c:1698:9 - movzbl %r12b, %eax -Ltmp3405: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3406: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3407: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3408: -LBB21_751: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1694 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1694:19 - movq 32(%r13), %rbx -Ltmp3409: - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1695 11 ## /Users/dylan/github/ravi/src/lvm.c:1695:11 - cmpb $0, 70(%rbx) - je LBB21_783 - jmp LBB21_1902 -Ltmp3410: -LBB21_752: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1736 9 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3411: - .loc 1 1736 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3412: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3413: - .loc 1 1736 9 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - movzbl 200(%r13), %eax - andb $12, %al - jmp LBB21_759 -Ltmp3414: - .p2align 4, 0x90 -Ltmp3415: ## Block address taken -LBB21_753: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1701 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1701:17 - movl %r12d, %eax -Ltmp3416: - shrl $24, %eax - .loc 1 1702 13 ## /Users/dylan/github/ravi/src/lvm.c:1702:13 - je LBB21_755 -Ltmp3417: -## %bb.754: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1702 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1702:32 - movl %eax, %eax - shlq $4, %rax - addq %r15, %rax - .loc 1 1702 28 ## /Users/dylan/github/ravi/src/lvm.c:1702:28 - movq %rax, 16(%r13) -Ltmp3418: -LBB21_755: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1703 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1703:9 - testl $16711680, %r12d ## imm = 0xFF0000 - jne LBB21_1848 -Ltmp3419: -## %bb.756: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -64(%rbp), %r12 ## 8-byte Reload -Ltmp3420: - .loc 1 1704 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1704:9 - movq %r10, (%r12) -Ltmp3421: - .loc 1 1709 13 ## /Users/dylan/github/ravi/src/lvm.c:1709:13 - movl $-1, %edx - movl $1, %ecx - movq %r13, %rdi - movq %r15, %rsi - movq %r10, %rbx -Ltmp3422: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaD_precall -Ltmp3423: - testl %eax, %eax -Ltmp3424: - .loc 1 1709 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1709:13 - je LBB21_760 -Ltmp3425: -## %bb.757: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1711 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1711:11 - movq %rbx, (%r12) -Ltmp3426: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 1736 9 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - movl (%rbx), %r12d - addq $4, %rbx -Ltmp3427: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1736 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - testb $12, 200(%r13) - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 -Ltmp3428: - .loc 1 1736 9 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - jne LBB21_752 -Ltmp3429: -## %bb.758: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %eax, %eax -Ltmp3430: -LBB21_759: ## in Loop: Header=BB21_753 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movzbl %al, %r11d -Ltmp3431: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3432: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1736 9 ## /Users/dylan/github/ravi/src/lvm.c:1736:9 - movzbl %r12b, %eax -Ltmp3433: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3434: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3435: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3436: -LBB21_760: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1715 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1715:30 - movq 32(%r13), %r8 -Ltmp3437: - ##DEBUG_VALUE: nci <- $r8 - .loc 1 1717 30 ## /Users/dylan/github/ravi/src/lvm.c:1717:30 - movq (%r8), %rbx -Ltmp3438: - ##DEBUG_VALUE: nfunc <- $rbx - .loc 1 1720 39 ## /Users/dylan/github/ravi/src/lvm.c:1720:39 - movzwl 8(%rbx), %eax - cmpl $32774, %eax ## imm = 0x8006 - movq -136(%rbp), %rcx ## 8-byte Reload - jne LBB21_1903 -Ltmp3439: -## %bb.761: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: nci <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%rbx), %rax - cmpb $6, 8(%rax) - jne LBB21_1904 -Ltmp3440: -## %bb.762: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: nci <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:39 - movq 16(%r8), %r14 -Ltmp3441: - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - movq (%r14), %r15 -Ltmp3442: - ##DEBUG_VALUE: ofunc <- $r15 - .loc 1 1720 39 ## /Users/dylan/github/ravi/src/lvm.c:1720:39 - movq 24(%rax), %rax - .loc 1 1720 56 ## /Users/dylan/github/ravi/src/lvm.c:1720:56 - movzbl 10(%rax), %r12d - .loc 1 1720 37 ## /Users/dylan/github/ravi/src/lvm.c:1720:37 - shlq $4, %r12 -Ltmp3443: - .loc 1 1723 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1723:19 - movq 24(%rcx), %rax -Ltmp3444: - .loc 1 1720 37 ## /Users/dylan/github/ravi/src/lvm.c:1720:37 - addq 32(%r8), %r12 -Ltmp3445: - ##DEBUG_VALUE: lim <- $r12 - .loc 1 1723 28 ## /Users/dylan/github/ravi/src/lvm.c:1723:28 - cmpl $0, 32(%rax) -Ltmp3446: - .loc 1 1723 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1723:15 - jle LBB21_764 -Ltmp3447: -## %bb.763: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: nci <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1723 56 ## /Users/dylan/github/ravi/src/lvm.c:1723:56 - movq 32(%r14), %rsi - .loc 1 1723 33 ## /Users/dylan/github/ravi/src/lvm.c:1723:33 - movq %r13, %rdi - movq %r8, -48(%rbp) ## 8-byte Spill -Ltmp3448: - ##DEBUG_VALUE: nci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - callq _luaF_close -Ltmp3449: - .loc 1 0 33 ## /Users/dylan/github/ravi/src/lvm.c:0:33 - movq -48(%rbp), %r8 ## 8-byte Reload -Ltmp3450: -LBB21_764: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- 0 - movq %r14, %rdi -Ltmp3451: - .loc 1 1725 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1725:37 - cmpq %r12, %rbx -Ltmp3452: - .loc 1 1725 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1725:11 - jae LBB21_770 -Ltmp3453: -## %bb.765: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorl %eax, %eax -Ltmp3454: - .p2align 4, 0x90 -LBB21_766: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- undef - .loc 1 1726 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1726:13 - movq (%rbx,%rax), %rcx - movq %rcx, (%r15,%rax) - movzwl 8(%rbx,%rax), %edx - movw %dx, 8(%r15,%rax) - testw %dx, %dx - jns LBB21_769 -Ltmp3455: -## %bb.767: ## in Loop: Header=BB21_766 Depth=2 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %edx - movzbl 8(%rcx), %esi - cmpl %esi, %edx - jne LBB21_1901 -Ltmp3456: -## %bb.768: ## in Loop: Header=BB21_766 Depth=2 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %ecx - xorb $3, %cl - movq -96(%rbp), %rdx ## 8-byte Reload - movq (%rdx), %rdx - movzbl 84(%rdx), %edx - xorb $3, %dl - testb %cl, %dl - je LBB21_1901 -Ltmp3457: -LBB21_769: ## in Loop: Header=BB21_766 Depth=2 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - leaq (%rbx,%rax), %rcx -Ltmp3458: - ##DEBUG_VALUE: aux <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 1725 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1725:37 - addq $16, %rax - addq $16, %rcx - cmpq %r12, %rcx -Ltmp3459: - .loc 1 1725 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1725:11 - jb LBB21_766 -Ltmp3460: -LBB21_770: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1727 45 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1727:45 - movq 32(%r8), %rax - .loc 1 1727 50 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1727:50 - subq %rbx, %rax - .loc 1 1727 33 ## /Users/dylan/github/ravi/src/lvm.c:1727:33 - addq %r15, %rax - movq %rdi, %rcx - .loc 1 1727 25 ## /Users/dylan/github/ravi/src/lvm.c:1727:25 - movq %rax, 32(%rdi) - .loc 1 1728 43 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1728:43 - movq 16(%r13), %rax - .loc 1 1728 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1728:47 - subq %rbx, %rax - .loc 1 1728 37 ## /Users/dylan/github/ravi/src/lvm.c:1728:37 - addq %r15, %rax - .loc 1 1728 29 ## /Users/dylan/github/ravi/src/lvm.c:1728:29 - movq %rax, 16(%r13) - .loc 1 1728 20 ## /Users/dylan/github/ravi/src/lvm.c:1728:20 - movq %rax, 8(%rdi) - .loc 1 1729 39 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1729:39 - movq 40(%r8), %rax - .loc 1 1729 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1729:28 - movq %rax, 40(%rdi) - .loc 1 1730 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1730:27 - orb $32, 66(%rdi) - .loc 1 1731 26 ## /Users/dylan/github/ravi/src/lvm.c:1731:26 - movb $0, 70(%rdi) - .loc 1 1732 22 ## /Users/dylan/github/ravi/src/lvm.c:1732:22 - movq %rdi, 32(%r13) - .loc 1 1733 11 ## /Users/dylan/github/ravi/src/lvm.c:1733:11 - movzwl 8(%r15), %eax - cmpl $32774, %eax ## imm = 0x8006 - jne LBB21_1905 -Ltmp3461: -## %bb.771: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r15), %rax - cmpb $6, 8(%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3462: - jne LBB21_1906 -Ltmp3463: -## %bb.772: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 24(%rax), %rax - movzbl 12(%rax), %eax - shlq $4, %rax - movq %rdi, %rbx -Ltmp3464: - addq 32(%rdi), %rax - cmpq %rax, 16(%r13) - je LBB21_783 - jmp LBB21_1907 -Ltmp3465: - .p2align 4, 0x90 -Ltmp3466: ## Block address taken -LBB21_773: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1739 17 ## /Users/dylan/github/ravi/src/lvm.c:1739:17 - shrl $24, %r12d -Ltmp3467: - ##DEBUG_VALUE: b <- $r12d - .loc 1 1740 17 ## /Users/dylan/github/ravi/src/lvm.c:1740:17 - movq -136(%rbp), %rax ## 8-byte Reload -Ltmp3468: - movq 24(%rax), %rax - .loc 1 1740 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1740:26 - cmpl $0, 32(%rax) -Ltmp3469: - .loc 1 1740 13 ## /Users/dylan/github/ravi/src/lvm.c:1740:13 - jle LBB21_775 -Ltmp3470: -## %bb.774: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1740 31 ## /Users/dylan/github/ravi/src/lvm.c:1740:31 - movq %r13, %rdi - movq %r8, %rsi - movq %r10, %rbx -Ltmp3471: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaF_close -Ltmp3472: - .loc 1 0 31 ## /Users/dylan/github/ravi/src/lvm.c:0:31 - movq %rbx, %r10 -Ltmp3473: -LBB21_775: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1741 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1741:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) - .loc 1 1742 23 ## /Users/dylan/github/ravi/src/lvm.c:1742:23 - testl %r12d, %r12d - .loc 1 1742 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1742:21 - je LBB21_777 -Ltmp3474: -## %bb.776: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1742 32 ## /Users/dylan/github/ravi/src/lvm.c:1742:32 - decl %r12d -Ltmp3475: - .loc 1 0 32 ## /Users/dylan/github/ravi/src/lvm.c:0:32 - jmp LBB21_778 -Ltmp3476: - .p2align 4, 0x90 -LBB21_777: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1742 38 ## /Users/dylan/github/ravi/src/lvm.c:1742:38 - movq 16(%r13), %r12 -Ltmp3477: - subq %r15, %r12 - shrq $4, %r12 -Ltmp3478: -LBB21_778: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nres <- $r12d - .loc 1 1743 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1743:13 - movq %r13, %rdi - movq -128(%rbp), %rbx ## 8-byte Reload - movq %rbx, %rsi - movq %r15, %rdx - movl %r12d, %ecx - callq _luaD_poscall -Ltmp3479: - ##DEBUG_VALUE: b <- $eax - .loc 1 1744 28 ## /Users/dylan/github/ravi/src/lvm.c:1744:28 - testb $8, 66(%rbx) -Ltmp3480: - .loc 1 1744 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1744:13 - jne LBB21_1552 -Ltmp3481: -## %bb.779: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $eax - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1763 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1763:19 - movq 32(%r13), %rbx -Ltmp3482: - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1764 15 ## /Users/dylan/github/ravi/src/lvm.c:1764:15 - testl %eax, %eax -Ltmp3483: - .loc 1 1764 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1764:15 - je LBB21_781 -Ltmp3484: -## %bb.780: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: b <- $eax - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1764 31 ## /Users/dylan/github/ravi/src/lvm.c:1764:31 - movq 8(%rbx), %rax -Ltmp3485: - .loc 1 1764 25 ## /Users/dylan/github/ravi/src/lvm.c:1764:25 - movq %rax, 16(%r13) -Ltmp3486: -LBB21_781: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1765 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1765:11 - testb $2, 66(%rbx) - je LBB21_1899 -Ltmp3487: -## %bb.782: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1766 11 ## /Users/dylan/github/ravi/src/lvm.c:1766:11 - movq 40(%rbx), %rax - cmpb $36, -4(%rax) - jne LBB21_1900 -Ltmp3488: -LBB21_783: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1285 8 ## /Users/dylan/github/ravi/src/lvm.c:1285:8 - movq (%rbx), %rax - movzwl 8(%rax), %ecx - cmpl $32774, %ecx ## imm = 0x8006 - je LBB21_2 - jmp LBB21_1898 -Ltmp3489: -LBB21_784: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1785 29 ## /Users/dylan/github/ravi/src/lvm.c:1785:29 - movzwl %cx, %ecx - cmpl $3, %ecx - jne LBB21_1849 -Ltmp3490: -## %bb.785: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1786 28 ## /Users/dylan/github/ravi/src/lvm.c:1786:28 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_1850 -Ltmp3491: -## %bb.786: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1787 30 ## /Users/dylan/github/ravi/src/lvm.c:1787:30 - movzwl 24(%r15), %eax - cmpl $3, %eax - jne LBB21_1753 -Ltmp3492: -## %bb.787: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 30 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:30 - movsd 32(%r15), %xmm2 ## xmm2 = mem[0],zero -Ltmp3493: - ##DEBUG_VALUE: step <- $xmm2 - movsd (%r15), %xmm0 ## xmm0 = mem[0],zero - addsd %xmm2, %xmm0 -Ltmp3494: - ##DEBUG_VALUE: idx <- $xmm0 - .loc 1 1787 30 ## /Users/dylan/github/ravi/src/lvm.c:1787:30 - movsd 16(%r15), %xmm1 ## xmm1 = mem[0],zero -Ltmp3495: - ##DEBUG_VALUE: limit <- $xmm1 - .loc 1 0 30 ## /Users/dylan/github/ravi/src/lvm.c:0:30 - xorpd %xmm3, %xmm3 -Ltmp3496: - .loc 1 1788 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1788:15 - ucomisd %xmm3, %xmm2 -Ltmp3497: - .loc 1 1788 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1788:15 - jbe LBB21_791 -Ltmp3498: -## %bb.788: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $xmm1 - ##DEBUG_VALUE: idx <- $xmm0 - ##DEBUG_VALUE: step <- $xmm2 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1788 37 ## /Users/dylan/github/ravi/src/lvm.c:1788:37 - ucomisd %xmm0, %xmm1 - .loc 1 1788 15 ## /Users/dylan/github/ravi/src/lvm.c:1788:15 - jae LBB21_792 - jmp LBB21_799 -Ltmp3499: -LBB21_789: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1795 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3500: - .loc 1 1795 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3501: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3502: - .loc 1 1795 9 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3503: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3504: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_800 -Ltmp3505: -LBB21_790: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $rcx - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: step <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1778 65 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1778:65 - cmpq %rax, %rcx -Ltmp3506: - .loc 1 1778 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1778:15 - jle LBB21_798 - jmp LBB21_799 -Ltmp3507: -LBB21_791: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $xmm1 - ##DEBUG_VALUE: idx <- $xmm0 - ##DEBUG_VALUE: step <- $xmm2 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1789 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1789:37 - ucomisd %xmm1, %xmm0 -Ltmp3508: - .loc 1 1788 15 ## /Users/dylan/github/ravi/src/lvm.c:1788:15 - jb LBB21_799 -Ltmp3509: -LBB21_792: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $xmm1 - ##DEBUG_VALUE: idx <- $xmm0 - ##DEBUG_VALUE: step <- $xmm2 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1790 19 ## /Users/dylan/github/ravi/src/lvm.c:1790:19 - shrl $16, %r12d -Ltmp3510: - .loc 1 1790 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1790:16 - leaq -131072(%r10,%r12,4), %r10 -Ltmp3511: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1791 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1791:13 - movsd %xmm0, (%r15) -Ltmp3512: - .loc 1 1792 13 ## /Users/dylan/github/ravi/src/lvm.c:1792:13 - movsd %xmm0, 48(%r15) - movw $3, 56(%r15) - jmp LBB21_799 -Ltmp3513: - .p2align 4, 0x90 -Ltmp3514: ## Block address taken -LBB21_793: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1774 13 ## /Users/dylan/github/ravi/src/lvm.c:1774:13 - movzwl 8(%r15), %eax -Ltmp3515: - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzwl 40(%r15), %ecx -Ltmp3516: - .loc 1 1774 13 ## /Users/dylan/github/ravi/src/lvm.c:1774:13 - cmpl $19, %eax -Ltmp3517: - .loc 1 1774 13 ## /Users/dylan/github/ravi/src/lvm.c:1774:13 - jne LBB21_784 -Ltmp3518: -## %bb.794: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1775 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1775:30 - movzwl %cx, %eax - cmpl $19, %eax - jne LBB21_1754 -Ltmp3519: -## %bb.795: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1777 31 ## /Users/dylan/github/ravi/src/lvm.c:1777:31 - movzwl 24(%r15), %eax - cmpl $19, %eax - jne LBB21_1755 -Ltmp3520: -## %bb.796: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 31 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:31 - movq 32(%r15), %rdx -Ltmp3521: - ##DEBUG_VALUE: step <- $rdx - movq (%r15), %rax - addq %rdx, %rax -Ltmp3522: - ##DEBUG_VALUE: idx <- $rax - .loc 1 1777 31 ## /Users/dylan/github/ravi/src/lvm.c:1777:31 - movq 16(%r15), %rcx -Ltmp3523: - ##DEBUG_VALUE: limit <- $rcx - .loc 1 1778 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1778:15 - testq %rdx, %rdx -Ltmp3524: - .loc 1 1778 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1778:15 - jle LBB21_790 -Ltmp3525: -## %bb.797: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $rcx - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: step <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1778 46 ## /Users/dylan/github/ravi/src/lvm.c:1778:46 - cmpq %rcx, %rax - .loc 1 1778 15 ## /Users/dylan/github/ravi/src/lvm.c:1778:15 - jg LBB21_799 -Ltmp3526: -LBB21_798: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: limit <- $rcx - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: step <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1779 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1779:19 - shrl $16, %r12d -Ltmp3527: - .loc 1 1779 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1779:16 - leaq -131072(%r10,%r12,4), %r10 -Ltmp3528: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1780 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1780:13 - movq %rax, (%r15) -Ltmp3529: - .loc 1 1781 13 ## /Users/dylan/github/ravi/src/lvm.c:1781:13 - movq %rax, 48(%r15) - movw $19, 56(%r15) -Ltmp3530: -LBB21_799: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1795 9 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3531: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1795 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - testl %r11d, %r11d -Ltmp3532: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3533: - .loc 1 1795 9 ## /Users/dylan/github/ravi/src/lvm.c:1795:9 - jne LBB21_789 -Ltmp3534: -LBB21_800: ## in Loop: Header=BB21_793 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3535: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3536: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3537: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3538: -LBB21_801: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1824 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp3539: - .loc 1 1824 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp3540: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3541: - .loc 1 1824 9 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3542: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3543: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_833 -Ltmp3544: -LBB21_802: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movq %r8, -80(%rbp) ## 8-byte Spill - movl %r11d, -68(%rbp) ## 4-byte Spill - movq %r10, %r13 - leaq -288(%rbp), %rsi -Ltmp3545: - ##DEBUG_VALUE: nlimit <- [DW_OP_constu 288, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1813 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1813:16 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp3546: - testl %eax, %eax -Ltmp3547: - .loc 1 1813 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1813:15 - je LBB21_1581 -Ltmp3548: -## %bb.803: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: nlimit <- [DW_OP_constu 288, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1815 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1815:11 - movq -288(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r13, %r10 - movq -88(%rbp), %r13 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_827 -Ltmp3549: -LBB21_804: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pstep <- $rdi - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, -80(%rbp) ## 8-byte Spill - movl %r11d, -68(%rbp) ## 4-byte Spill - movq %r10, %r13 - leaq -280(%rbp), %rsi -Ltmp3550: - ##DEBUG_VALUE: nstep <- [DW_OP_constu 280, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1816 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1816:16 - callq _luaV_tonumber_ -Ltmp3551: - testl %eax, %eax -Ltmp3552: - .loc 1 1816 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1816:15 - je LBB21_1582 -Ltmp3553: -## %bb.805: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: nstep <- [DW_OP_constu 280, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1818 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1818:11 - movq -280(%rbp), %rbx -Ltmp3554: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r13, %r10 - movq -88(%rbp), %r13 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_829 -Ltmp3555: -LBB21_806: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movq %r8, -80(%rbp) ## 8-byte Spill - movl %r11d, -68(%rbp) ## 4-byte Spill - movq %r10, %r13 - leaq -296(%rbp), %rsi -Ltmp3556: - ##DEBUG_VALUE: ninit <- [DW_OP_constu 296, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1819 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1819:16 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp3557: - testl %eax, %eax -Ltmp3558: - .loc 1 1819 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1819:15 - je LBB21_1583 -Ltmp3559: -## %bb.807: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ninit <- [DW_OP_constu 296, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1821 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1821:11 - movq -296(%rbp), %xmm0 ## xmm0 = mem[0],zero - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r13, %r10 - movq -88(%rbp), %r13 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_831 -Ltmp3560: - .p2align 4, 0x90 -Ltmp3561: ## Block address taken -LBB21_808: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1799 29 ## /Users/dylan/github/ravi/src/lvm.c:1799:29 - leaq 16(%r15), %rbx -Ltmp3562: - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: luaV_forlimit:obj <- $rbx - ##DEBUG_VALUE: io <- $rbx - ##DEBUG_VALUE: io <- $rbx - .loc 1 1803 13 ## /Users/dylan/github/ravi/src/lvm.c:1803:13 - movzwl 8(%r15), %eax -Ltmp3563: - cmpl $19, %eax - .loc 1 1803 31 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1803:31 - jne LBB21_825 -Ltmp3564: -## %bb.809: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1803 34 ## /Users/dylan/github/ravi/src/lvm.c:1803:34 - movzwl 40(%r15), %eax - cmpl $19, %eax - .loc 1 1803 53 ## /Users/dylan/github/ravi/src/lvm.c:1803:53 - jne LBB21_825 -Ltmp3565: -## %bb.810: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 53 ## /Users/dylan/github/ravi/src/lvm.c:0:53 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp3566: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - .loc 1 158 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:158:7 - movzwl 24(%r15), %eax - cmpl $19, %eax -Ltmp3567: - .loc 1 158 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:158:7 - jne LBB21_812 -Ltmp3568: -## %bb.811: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 159 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:159:10 - movq (%rbx), %rax - .loc 1 159 8 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:159:8 - movq %rax, -144(%rbp) -Ltmp3569: - .loc 1 1806 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1806:46 - movzwl 8(%r15), %eax - cmpl $19, %eax - je LBB21_814 - jmp LBB21_1584 -Ltmp3570: -LBB21_812: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:46 - movq 32(%r15), %r14 -Ltmp3571: - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - .loc 1 160 37 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:160:37 - movq %r14, %rdx - shrq $63, %rdx - incl %edx - leaq -144(%rbp), %rsi -Ltmp3572: - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 160 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:160:13 - movq %rbx, %rdi - ## kill: def $edx killed $edx killed $rdx - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp3573: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp3574: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - .loc 1 160 13 ## /Users/dylan/github/ravi/src/lvm.c:160:13 - callq _luaV_tointeger -Ltmp3575: - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl -68(%rbp), %r11d ## 4-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload - .loc 1 160 13 ## /Users/dylan/github/ravi/src/lvm.c:160:13 - testl %eax, %eax -Ltmp3576: - .loc 1 160 12 ## /Users/dylan/github/ravi/src/lvm.c:160:12 - je LBB21_817 -Ltmp3577: -LBB21_813: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1806 46 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1806:46 - movzwl 8(%r15), %eax - cmpl $19, %eax - jne LBB21_1584 -Ltmp3578: -LBB21_814: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - movq (%r15), %rcx -Ltmp3579: - .loc 1 1807 11 ## /Users/dylan/github/ravi/src/lvm.c:1807:11 - movq -144(%rbp), %rax -Ltmp3580: -LBB21_815: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3581: - ##DEBUG_VALUE: ilimit <- $rax - ##DEBUG_VALUE: initv <- $rcx - .loc 1 1807 11 ## /Users/dylan/github/ravi/src/lvm.c:1807:11 - movq %rax, 16(%r15) - movw $19, 24(%r15) -Ltmp3582: - .loc 1 1808 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1808:11 - movzwl 40(%r15), %eax -Ltmp3583: - cmpl $19, %eax - movq -80(%rbp), %r8 ## 8-byte Reload - jne LBB21_1713 -Ltmp3584: -## %bb.816: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rcx - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - subq 32(%r15), %rcx -Ltmp3585: - movq %rcx, (%r15) - movw $19, %ax - jmp LBB21_832 -Ltmp3586: -LBB21_817: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 163 10 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movzwl 24(%r15), %eax - cmpl $3, %eax -Ltmp3587: - .loc 1 163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:163:9 - jne LBB21_820 -Ltmp3588: -## %bb.818: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: n <- [DW_OP_deref] $rbx - .loc 1 163 10 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movq (%rbx), %rax - movq %rax, -304(%rbp) - movq %rax, %xmm0 -Ltmp3589: - ##DEBUG_VALUE: n <- $xmm0 - .loc 1 0 10 ## /Users/dylan/github/ravi/src/lvm.c:0:10 - xorpd %xmm1, %xmm1 -Ltmp3590: - .loc 1 170 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:170:10 - movabsq $9223372036854775807, %rax ## imm = 0x7FFFFFFFFFFFFFFF -Ltmp3591: - .loc 1 165 9 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ucomisd %xmm1, %xmm0 -Ltmp3592: - .loc 1 165 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - jbe LBB21_822 -Ltmp3593: -LBB21_819: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 166 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:166:10 - movq %rax, -144(%rbp) -Ltmp3594: - .loc 1 160 42 ## /Users/dylan/github/ravi/src/lvm.c:160:42 - testq %r14, %r14 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp3595: - .loc 1 167 11 ## /Users/dylan/github/ravi/src/lvm.c:167:11 - jns LBB21_813 - jmp LBB21_823 -Ltmp3596: -LBB21_820: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - leaq -304(%rbp), %rsi -Ltmp3597: - ##DEBUG_VALUE: n <- [DW_OP_constu 304, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 163 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:163:10 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp3598: - testl %eax, %eax -Ltmp3599: - .loc 1 163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:163:9 - je LBB21_824 -Ltmp3600: -## %bb.821: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- [DW_OP_constu 304, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 165 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - movq -304(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp3601: - ##DEBUG_VALUE: n <- $xmm0 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorpd %xmm1, %xmm1 -Ltmp3602: - .loc 1 170 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:170:10 - movabsq $9223372036854775807, %rax ## imm = 0x7FFFFFFFFFFFFFFF -Ltmp3603: - .loc 1 165 9 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ucomisd %xmm1, %xmm0 -Ltmp3604: - .loc 1 165 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:165:9 - ja LBB21_819 -Ltmp3605: -LBB21_822: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 170 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:170:10 - incq %rax - movq %rax, -144(%rbp) -Ltmp3606: - .loc 1 171 16 ## /Users/dylan/github/ravi/src/lvm.c:171:16 - testq %r14, %r14 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp3607: - .loc 1 171 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:171:11 - js LBB21_813 -Ltmp3608: -LBB21_823: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $xmm0 - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - xorl %ecx, %ecx - jmp LBB21_815 -Ltmp3609: -LBB21_824: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- [DW_OP_constu 304, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: ilimit <- [DW_OP_constu 144, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_forlimit:p <- [DW_OP_constu 144, DW_OP_minus] $rbp - ##DEBUG_VALUE: luaV_forlimit:step <- $r14 - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3610: - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movq -80(%rbp), %r8 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp3611: - .p2align 4, 0x90 -LBB21_825: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1812 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1812:11 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3612: - .loc 1 1813 16 ## /Users/dylan/github/ravi/src/lvm.c:1813:16 - movzwl 24(%r15), %eax - cmpl $3, %eax -Ltmp3613: - .loc 1 1813 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1813:15 - jne LBB21_802 -Ltmp3614: -## %bb.826: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: nlimit <- [DW_OP_deref] $rbx - .loc 1 1813 16 ## /Users/dylan/github/ravi/src/lvm.c:1813:16 - movq (%rbx), %rax - movq %rax, -288(%rbp) -Ltmp3615: -LBB21_827: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - leaq 32(%r15), %rdi -Ltmp3616: - ##DEBUG_VALUE: pstep <- $rdi - ##DEBUG_VALUE: io <- $rdi - .loc 1 1815 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1815:11 - movq %rax, 16(%r15) - movw $3, 24(%r15) -Ltmp3617: - .loc 1 1816 16 ## /Users/dylan/github/ravi/src/lvm.c:1816:16 - movzwl 40(%r15), %eax - cmpl $3, %eax -Ltmp3618: - .loc 1 1816 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1816:15 - jne LBB21_804 -Ltmp3619: -## %bb.828: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pstep <- $rdi - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: nstep <- [DW_OP_deref] $rdi - .loc 1 1816 16 ## /Users/dylan/github/ravi/src/lvm.c:1816:16 - movq (%rdi), %rbx -Ltmp3620: - movq %rbx, -280(%rbp) -Ltmp3621: -LBB21_829: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1818 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1818:11 - movq %rbx, 32(%r15) - movw $3, 40(%r15) -Ltmp3622: - .loc 1 1819 16 ## /Users/dylan/github/ravi/src/lvm.c:1819:16 - movzwl 8(%r15), %eax - cmpl $3, %eax -Ltmp3623: - .loc 1 1819 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1819:15 - jne LBB21_806 -Ltmp3624: -## %bb.830: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1819 16 ## /Users/dylan/github/ravi/src/lvm.c:1819:16 - movq (%r15), %rax - movq %rax, -296(%rbp) - movq %rax, %xmm0 -Ltmp3625: -LBB21_831: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %rbx, %xmm1 -Ltmp3626: - ##DEBUG_VALUE: ninit <- $xmm0 - ##DEBUG_VALUE: nstep <- $xmm1 - .loc 1 1821 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1821:11 - subsd %xmm1, %xmm0 -Ltmp3627: - movsd %xmm0, (%r15) - movw $3, %ax -Ltmp3628: -LBB21_832: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movw %ax, 8(%r15) -Ltmp3629: - .loc 1 1823 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1823:15 - shrl $16, %r12d -Ltmp3630: - .loc 1 1824 9 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - leaq -131068(%r10,%r12,4), %rbx -Ltmp3631: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl -131072(%r10,%r12,4), %r12d -Ltmp3632: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1824 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - testl %r11d, %r11d -Ltmp3633: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3634: - .loc 1 1824 9 ## /Users/dylan/github/ravi/src/lvm.c:1824:9 - jne LBB21_801 -Ltmp3635: -LBB21_833: ## in Loop: Header=BB21_808 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3636: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3637: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3638: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp3639: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp3640: - .p2align 4, 0x90 -Ltmp3641: ## Block address taken -LBB21_834: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1828 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1828:9 - movq 32(%r15), %rax -Ltmp3642: - movq %rax, 80(%r15) - movzwl 40(%r15), %ecx - movw %cx, 88(%r15) - testw %cx, %cx - jns LBB21_838 -Ltmp3643: -## %bb.835: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1654 -Ltmp3644: -## %bb.836: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1828 9 ## /Users/dylan/github/ravi/src/lvm.c:1828:9 - je LBB21_838 -Ltmp3645: -## %bb.837: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1654 -Ltmp3646: -LBB21_838: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1829 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1829:9 - movq 16(%r15), %rax - movq %rax, 64(%r15) - movzwl 24(%r15), %ecx - movw %cx, 72(%r15) - testw %cx, %cx - jns LBB21_842 -Ltmp3647: -## %bb.839: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1655 -Ltmp3648: -## %bb.840: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1829 9 ## /Users/dylan/github/ravi/src/lvm.c:1829:9 - je LBB21_842 -Ltmp3649: -## %bb.841: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1655 -Ltmp3650: -LBB21_842: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1830 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1830:9 - movq (%r15), %rax - movq %rax, 48(%r15) - movzwl 8(%r15), %ecx - movw %cx, 56(%r15) - testw %cx, %cx - jns LBB21_846 -Ltmp3651: -## %bb.843: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1656 -Ltmp3652: -## %bb.844: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 1830 9 ## /Users/dylan/github/ravi/src/lvm.c:1830:9 - je LBB21_846 -Ltmp3653: -## %bb.845: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1656 -Ltmp3654: -LBB21_846: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq 48(%r15), %rsi -Ltmp3655: - ##DEBUG_VALUE: cb <- $rsi - ##DEBUG_VALUE: io1 <- $rsi - .loc 1 1831 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1831:21 - addq $96, %r15 -Ltmp3656: - .loc 1 1831 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1831:16 - movq %r15, 16(%r13) - movq -128(%rbp), %rbx ## 8-byte Reload -Ltmp3657: - .loc 1 1832 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1832:9 - movq %r10, 40(%rbx) -Ltmp3658: - .loc 1 1832 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1832:9 - shrl $16, %r12d -Ltmp3659: - movzbl %r12b, %edx - movq %r13, %rdi - movq %r10, %r15 -Ltmp3660: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - callq _luaD_call -Ltmp3661: - .loc 1 1833 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1833:22 - movq 8(%rbx), %rax -Ltmp3662: - .loc 1 1832 9 ## /Users/dylan/github/ravi/src/lvm.c:1832:9 - movq 32(%rbx), %r8 -Ltmp3663: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d -Ltmp3664: - .loc 1 1833 16 ## /Users/dylan/github/ravi/src/lvm.c:1833:16 - movq %rax, 16(%r13) - .loc 1 1834 13 ## /Users/dylan/github/ravi/src/lvm.c:1834:13 - movl (%r15), %r12d - .loc 1 1836 9 ## /Users/dylan/github/ravi/src/lvm.c:1836:9 - cmpb $42, %r12b - jne LBB21_1657 -Ltmp3665: -## %bb.847: ## in Loop: Header=BB21_2 Depth=1 - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r15, %r10 - andl $12, %r11d -Ltmp3666: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp3667: - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r12, %r15 - shrq $4, %r15 - andl $2032, %r15d ## imm = 0x7F0 - addq %r8, %r15 -Ltmp3668: - ##DEBUG_VALUE: ra <- $r15 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3669: -Ltmp3670: ## Block address taken -LBB21_848: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: io1 <- $r15 - .loc 1 1841 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1841:14 - movzwl 24(%r15), %ecx - testl %ecx, %ecx -Ltmp3671: - .loc 1 1841 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1841:13 - je LBB21_854 -Ltmp3672: -## %bb.849: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1842 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1842:11 - movq 16(%r15), %rax - movq %rax, (%r15) - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_853 -Ltmp3673: -## %bb.850: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1658 -Ltmp3674: -## %bb.851: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 1842 11 ## /Users/dylan/github/ravi/src/lvm.c:1842:11 - je LBB21_853 -Ltmp3675: -## %bb.852: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1658 -Ltmp3676: -LBB21_853: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1843 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1843:17 - shrl $16, %r12d -Ltmp3677: - .loc 1 1843 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1843:14 - leaq -131072(%r10,%r12,4), %r10 -Ltmp3678: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_854: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1845 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3679: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1845 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - testl %r11d, %r11d -Ltmp3680: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3681: - .loc 1 1845 9 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - jne LBB21_856 -Ltmp3682: -LBB21_855: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3683: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3684: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3685: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3686: -LBB21_856: ## in Loop: Header=BB21_848 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1845 9 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3687: - .loc 1 1845 9 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3688: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3689: - .loc 1 1845 9 ## /Users/dylan/github/ravi/src/lvm.c:1845:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3690: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3691: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_855 -Ltmp3692: -LBB21_857: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1909 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3693: - .loc 1 1909 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3694: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3695: - .loc 1 1909 9 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3696: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3697: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_903 -Ltmp3698: - .p2align 4, 0x90 -Ltmp3699: ## Block address taken -LBB21_858: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_870 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1848 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1848:17 - movl %r12d, %ebx - shrl $24, %ebx -Ltmp3700: - ##DEBUG_VALUE: n <- $ebx - .loc 1 1849 17 ## /Users/dylan/github/ravi/src/lvm.c:1849:17 - shrl $16, %r12d -Ltmp3701: - movzbl %r12b, %eax -Ltmp3702: - ##DEBUG_VALUE: c <- $eax - .loc 1 1852 15 ## /Users/dylan/github/ravi/src/lvm.c:1852:15 - testl %ebx, %ebx -Ltmp3703: - .loc 1 1852 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1852:13 - je LBB21_861 -Ltmp3704: -## %bb.859: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: n <- $ebx - .loc 1 1853 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1853:15 - testl %eax, %eax -Ltmp3705: - .loc 1 1853 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1853:13 - je LBB21_862 -Ltmp3706: -LBB21_860: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: c <- $eax - .loc 1 1857 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1857:13 - movzwl 8(%r15), %ecx - andl $15, %ecx - cmpl $5, %ecx - je LBB21_864 - jmp LBB21_1852 -Ltmp3707: - .p2align 4, 0x90 -LBB21_861: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1852 25 ## /Users/dylan/github/ravi/src/lvm.c:1852:25 - movq 16(%r13), %rbx -Ltmp3708: - subq %r15, %rbx - shrq $4, %rbx - .loc 1 1852 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1852:47 - decl %ebx -Ltmp3709: - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: n <- $ebx - .loc 1 1853 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1853:15 - testl %eax, %eax -Ltmp3710: - .loc 1 1853 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1853:13 - jne LBB21_860 -Ltmp3711: -LBB21_862: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1854 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1854:11 - movl (%r10), %eax -Ltmp3712: - cmpb $46, %al - jne LBB21_1851 -Ltmp3713: -## %bb.863: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1855 15 ## /Users/dylan/github/ravi/src/lvm.c:1855:15 - addq $4, %r10 -Ltmp3714: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $8, %eax -Ltmp3715: - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: c <- $eax - .loc 1 1857 13 ## /Users/dylan/github/ravi/src/lvm.c:1857:13 - movzwl 8(%r15), %ecx - andl $15, %ecx - cmpl $5, %ecx - jne LBB21_1852 -Ltmp3716: -LBB21_864: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp3717: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - .loc 1 1857 13 ## /Users/dylan/github/ravi/src/lvm.c:1857:13 - movq (%r15), %r12 -Ltmp3718: - ##DEBUG_VALUE: h <- $r12 - movb 8(%r12), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB21_1853 -Ltmp3719: -## %bb.865: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1858 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1858:22 - imull $50, %eax, %r13d - .loc 1 1858 42 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1858:42 - leal -50(%rbx,%r13), %r14d -Ltmp3720: - ##DEBUG_VALUE: last <- $r14d - .loc 1 1859 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1859:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) -Ltmp3721: - .loc 1 1860 27 ## /Users/dylan/github/ravi/src/lvm.c:1860:27 - movb 72(%r12), %cl - .loc 1 1860 38 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1860:38 - cmpb $6, %cl - movq %r10, -112(%rbp) ## 8-byte Spill - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp3722: - .loc 1 1860 13 ## /Users/dylan/github/ravi/src/lvm.c:1860:13 - jne LBB21_875 -Ltmp3723: -## %bb.866: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1861 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1861:20 - cmpl 12(%r12), %r14d -Ltmp3724: - .loc 1 1861 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1861:15 - jbe LBB21_868 -Ltmp3725: -## %bb.867: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1862 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1862:13 - movq -88(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - movl %r14d, %edx - callq _luaH_resizearray -Ltmp3726: - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movl -68(%rbp), %r11d ## 4-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3727: -LBB21_868: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1863 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1863:20 - testl %ebx, %ebx -Ltmp3728: - .loc 1 1863 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1863:11 - jle LBB21_902 -Ltmp3729: -## %bb.869: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movslq %ebx, %rbx -Ltmp3730: - movq %rbx, %rax - shlq $4, %rax - addq %rax, %r15 -Ltmp3731: - .p2align 4, 0x90 -LBB21_870: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_858 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $rbx - ##DEBUG_VALUE: last <- $r14d - .loc 1 1865 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1865:31 - movl %r14d, %edx - movq -88(%rbp), %r13 ## 8-byte Reload - .loc 1 1865 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1865:13 - movq %r13, %rdi - movq %r12, %rsi - movq %r15, %rcx - callq _luaH_setint -Ltmp3732: - .loc 1 1866 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1866:13 - cmpw $0, 8(%r15) - jns LBB21_874 -Ltmp3733: -## %bb.871: ## in Loop: Header=BB21_870 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $rbx - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $4, 9(%r12) - je LBB21_874 -Ltmp3734: -## %bb.872: ## in Loop: Header=BB21_870 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $rbx - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r15), %rax - testb $3, 9(%rax) - je LBB21_874 -Ltmp3735: -## %bb.873: ## in Loop: Header=BB21_870 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $rbx - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r12, %rsi - callq _luaC_barrierback_ -Ltmp3736: - .p2align 4, 0x90 -LBB21_874: ## in Loop: Header=BB21_870 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $rbx - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - decl %r14d -Ltmp3737: - ##DEBUG_VALUE: n <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: last <- $r14d - .loc 1 1863 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1863:20 - addq $-16, %r15 - decq %rbx - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp3738: - .loc 1 1863 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1863:11 - jg LBB21_870 - jmp LBB21_902 -Ltmp3739: - .p2align 4, 0x90 -LBB21_875: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1870 28 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1870:28 - addl $-49, %r13d -Ltmp3740: - ##DEBUG_VALUE: i <- $r13d - .loc 1 1871 20 ## /Users/dylan/github/ravi/src/lvm.c:1871:20 - cmpl %r14d, %r13d -Ltmp3741: - .loc 1 1871 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1871:11 - jg LBB21_902 -Ltmp3742: -## %bb.876: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %eax -Ltmp3743: - imulq $800, %rax, %rax ## imm = 0x320 - leaq -784(%r15,%rax), %rbx -Ltmp3744: - .loc 1 1874 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1874:13 - cmpb $4, %cl -Ltmp3745: - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: i <- $r13d - jne LBB21_878 - jmp LBB21_882 -Ltmp3746: - .p2align 4, 0x90 -LBB21_891: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 1896 30 ## /Users/dylan/github/ravi/src/lvm.c:1896:30 - movq $0, -152(%rbp) - leaq -152(%rbp), %rsi -Ltmp3747: - ##DEBUG_VALUE: d <- [DW_OP_constu 152, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 1897 23 ## /Users/dylan/github/ravi/src/lvm.c:1897:23 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp3748: - testl %eax, %eax -Ltmp3749: - .loc 1 1897 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1897:23 - je LBB21_1756 -Ltmp3750: -## %bb.892: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 152, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1898 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1898:21 - cmpl 64(%r12), %r13d -Ltmp3751: - .loc 1 1898 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1898:21 - jae LBB21_900 -Ltmp3752: -## %bb.893: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 152, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r12), %rax -Ltmp3753: - ##DEBUG_VALUE: data <- $rax - .loc 1 1898 21 ## /Users/dylan/github/ravi/src/lvm.c:1898:21 - movq -152(%rbp), %rcx -Ltmp3754: -LBB21_894: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $rcx - .loc 1 0 21 ## /Users/dylan/github/ravi/src/lvm.c:0:21 - movl %r13d, %edx - movq %rcx, (%rax,%rdx,8) - jmp LBB21_901 -Ltmp3755: -LBB21_896: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1890 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1890:19 - movl %r13d, %edx - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero - jmp LBB21_898 -Ltmp3756: -LBB21_897: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1893 19 ## /Users/dylan/github/ravi/src/lvm.c:1893:19 - movl %r13d, %edx - xorps %xmm0, %xmm0 - cvtsi2sdq (%rbx), %xmm0 -Ltmp3757: -LBB21_898: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - movq -88(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_float -Ltmp3758: -LBB21_899: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movl -68(%rbp), %r11d ## 4-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload - .loc 1 1871 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1871:20 - cmpl %r14d, %r13d - jl LBB21_877 - jmp LBB21_902 -Ltmp3759: -LBB21_900: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 152, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1898 21 ## /Users/dylan/github/ravi/src/lvm.c:1898:21 - movl %r13d, %edx - movsd -152(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp3760: - ##DEBUG_VALUE: d <- $xmm0 - movq -88(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_float -Ltmp3761: - .p2align 4, 0x90 -LBB21_901: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:21 - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movl -68(%rbp), %r11d ## 4-byte Reload - .loc 1 1871 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1871:20 - cmpl %r14d, %r13d -Ltmp3762: - .loc 1 1871 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1871:11 - jge LBB21_902 -Ltmp3763: -LBB21_877: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: data <- $rax - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1871 35 ## /Users/dylan/github/ravi/src/lvm.c:1871:35 - incl %r13d -Ltmp3764: - ##DEBUG_VALUE: i <- $r13d - .loc 1 1874 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1874:35 - movb 72(%r12), %cl -Ltmp3765: - .loc 1 1871 11 ## /Users/dylan/github/ravi/src/lvm.c:1871:11 - addq $16, %rbx -Ltmp3766: - .loc 1 1874 13 ## /Users/dylan/github/ravi/src/lvm.c:1874:13 - cmpb $4, %cl -Ltmp3767: - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: ukey <- $r13d - ##DEBUG_VALUE: i <- $r13d - je LBB21_882 -Ltmp3768: -LBB21_878: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpb $3, %cl - jne LBB21_1560 -Ltmp3769: -## %bb.879: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1876 21 ## /Users/dylan/github/ravi/src/lvm.c:1876:21 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp3770: - .loc 1 1876 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1876:21 - jne LBB21_886 -Ltmp3771: -## %bb.880: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1877 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1877:19 - cmpl 64(%r12), %r13d -Ltmp3772: - .loc 1 1877 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1877:19 - jb LBB21_885 -Ltmp3773: -## %bb.881: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1877 19 ## /Users/dylan/github/ravi/src/lvm.c:1877:19 - movl %r13d, %edx - movq (%rbx), %rcx - movq -88(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_int -Ltmp3774: - .loc 1 0 19 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - jmp LBB21_899 -Ltmp3775: - .p2align 4, 0x90 -LBB21_886: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: i <- 0 - .loc 1 1880 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1880:31 - movq $0, -160(%rbp) - leaq -160(%rbp), %rsi -Ltmp3776: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 160, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 160, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp3777: - .loc 1 1881 23 ## /Users/dylan/github/ravi/src/lvm.c:1881:23 - testl %eax, %eax -Ltmp3778: - .loc 1 1881 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1881:23 - je LBB21_1854 -Ltmp3779: -## %bb.887: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 160, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1882 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1882:21 - cmpl 64(%r12), %r13d -Ltmp3780: - .loc 1 1882 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1882:21 - jae LBB21_895 -Ltmp3781: -## %bb.888: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 160, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%r12), %rax -Ltmp3782: - ##DEBUG_VALUE: data <- $rax - .loc 1 1882 21 ## /Users/dylan/github/ravi/src/lvm.c:1882:21 - movq -160(%rbp), %rcx - jmp LBB21_894 -Ltmp3783: - .p2align 4, 0x90 -LBB21_895: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 160, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1882 21 ## /Users/dylan/github/ravi/src/lvm.c:1882:21 - movl %r13d, %edx - movq -160(%rbp), %rcx -Ltmp3784: - ##DEBUG_VALUE: i <- $rcx - movq -88(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_int -Ltmp3785: - .loc 1 0 21 ## /Users/dylan/github/ravi/src/lvm.c:0:21 - jmp LBB21_901 -Ltmp3786: - .p2align 4, 0x90 -LBB21_882: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1889 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1889:21 - movzwl 8(%rbx), %eax -Ltmp3787: - .loc 1 1889 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1889:21 - cmpl $19, %eax - je LBB21_889 -Ltmp3788: -## %bb.883: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_891 -Ltmp3789: -## %bb.884: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1890 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1890:19 - cmpl 64(%r12), %r13d -Ltmp3790: - .loc 1 1890 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1890:19 - jae LBB21_896 -Ltmp3791: -LBB21_885: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 19 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - movq 56(%r12), %rax -Ltmp3792: - ##DEBUG_VALUE: data <- $rax - movq (%rbx), %rcx - movl %r13d, %edx - movq %rcx, (%rax,%rdx,8) - .loc 1 1871 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1871:20 - cmpl %r14d, %r13d - jl LBB21_877 - jmp LBB21_902 -Ltmp3793: - .p2align 4, 0x90 -LBB21_889: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1893 19 ## /Users/dylan/github/ravi/src/lvm.c:1893:19 - cmpl 64(%r12), %r13d -Ltmp3794: - .loc 1 1893 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1893:19 - jae LBB21_897 -Ltmp3795: -## %bb.890: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%r12), %rax -Ltmp3796: - ##DEBUG_VALUE: data <- $rax - .loc 1 1893 19 ## /Users/dylan/github/ravi/src/lvm.c:1893:19 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rbx), %xmm0 - movl %r13d, %ecx - movsd %xmm0, (%rax,%rcx,8) -Ltmp3797: - .loc 1 1871 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1871:20 - cmpl %r14d, %r13d -Ltmp3798: - .loc 1 1871 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1871:11 - jl LBB21_877 -Ltmp3799: - .p2align 4, 0x90 -LBB21_902: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1908 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1908:22 - movq -128(%rbp), %rax ## 8-byte Reload - movq 8(%rax), %rax - movq -88(%rbp), %r13 ## 8-byte Reload - .loc 1 1908 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1908:16 - movq %rax, 16(%r13) -Ltmp3800: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1909 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - movl (%r10), %r12d -Ltmp3801: - addq $4, %r10 -Ltmp3802: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1909 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - testl %r11d, %r11d -Ltmp3803: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp3804: - .loc 1 1909 9 ## /Users/dylan/github/ravi/src/lvm.c:1909:9 - jne LBB21_857 -Ltmp3805: -LBB21_903: ## in Loop: Header=BB21_858 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3806: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3807: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3808: - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmpq *(%r14,%rcx,8) -Ltmp3809: -LBB21_904: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1921 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3810: - .loc 1 1921 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3811: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3812: - .loc 1 1921 9 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3813: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3814: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_921 -Ltmp3815: - .p2align 4, 0x90 -Ltmp3816: ## Block address taken -LBB21_905: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_908 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %r14 - movq %r8, %r13 -Ltmp3817: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - .loc 1 1912 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1912:24 - movq -136(%rbp), %rax ## 8-byte Reload -Ltmp3818: - movq 24(%rax), %rax - .loc 1 1912 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1912:27 - movq 64(%rax), %rax - .loc 1 1912 29 ## /Users/dylan/github/ravi/src/lvm.c:1912:29 - shrl $16, %r12d -Ltmp3819: - .loc 1 1912 20 ## /Users/dylan/github/ravi/src/lvm.c:1912:20 - movq (%rax,%r12,8), %rsi -Ltmp3820: - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: p <- $rsi - .loc 1 893 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:893:20 - movq 96(%rsi), %r8 -Ltmp3821: - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: x_ <- $r8 - .loc 1 894 9 ## /Users/dylan/github/ravi/src/lvm.c:894:9 - testq %r8, %r8 -Ltmp3822: - .loc 1 894 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:894:7 - je LBB21_912 -Ltmp3823: -## %bb.906: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 895 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:895:18 - movslq 16(%rsi), %rcx - testq %rcx, %rcx -Ltmp3824: - ##DEBUG_VALUE: i <- 0 - .loc 1 898 5 ## /Users/dylan/github/ravi/src/lvm.c:898:5 - jle LBB21_913 -Ltmp3825: -## %bb.907: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq 88(%rsi), %rdx -Ltmp3826: - ##DEBUG_VALUE: uv <- $rdx - .loc 1 899 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - addq $18, %rdx -Ltmp3827: - .loc 1 0 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - xorl %edi, %edi -Ltmp3828: - .p2align 4, 0x90 -LBB21_908: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_905 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: i <- $rdi - .loc 1 899 19 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - cmpb $0, -1(%rdx) - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl (%rdx), %ebx - .loc 1 899 19 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - je LBB21_911 -Ltmp3829: -## %bb.909: ## in Loop: Header=BB21_908 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $rdi - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 899 40 ## /Users/dylan/github/ravi/src/lvm.c:899:40 - shlq $4, %rbx - addq %r13, %rbx -Ltmp3830: - ##DEBUG_VALUE: v <- $rbx - .loc 1 900 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:900:11 - movq 32(%r8,%rdi,8), %rax -Ltmp3831: - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 900 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:900:27 - cmpq %rbx, (%rax) - jne LBB21_912 -Ltmp3832: -LBB21_910: ## in Loop: Header=BB21_908 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - incq %rdi - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 898 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:898:19 - addq $24, %rdx - cmpq %rcx, %rdi -Ltmp3833: - .loc 1 898 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:898:5 - jl LBB21_908 - jmp LBB21_913 -Ltmp3834: - .p2align 4, 0x90 -LBB21_911: ## in Loop: Header=BB21_908 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $rdi - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 899 54 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:899:54 - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax,%rbx,8), %rbx - .loc 1 899 72 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:899:72 - movq (%rbx), %rbx -Ltmp3835: - ##DEBUG_VALUE: v <- $rbx - .loc 1 900 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:900:11 - movq 32(%r8,%rdi,8), %rax -Ltmp3836: - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 900 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:900:27 - cmpq %rbx, (%rax) - je LBB21_910 -Ltmp3837: - .p2align 4, 0x90 -LBB21_912: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - movl %r11d, %r12d -Ltmp3838: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - .loc 1 1915 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1915:11 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, %rbx - movq %r10, (%rax) - .loc 1 1916 11 ## /Users/dylan/github/ravi/src/lvm.c:1916:11 - movq %r14, %rdi - movq -120(%rbp), %rdx ## 8-byte Reload - movq %r13, %rcx - movq %r15, %r8 -Ltmp3839: - callq _pushclosure -Ltmp3840: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movl %r12d, %r11d - jmp LBB21_917 -Ltmp3841: - .p2align 4, 0x90 -LBB21_913: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1919 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1919:11 - movb 8(%r8), %al - andb $14, %al - cmpb $10, %al - jae LBB21_1585 -Ltmp3842: -## %bb.914: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, (%r15) - movw $-32762, 8(%r15) ## imm = 0x8006 - cmpb $6, 8(%r8) - jne LBB21_1586 -Ltmp3843: -## %bb.915: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r10, %rbx -Ltmp3844: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - testq %r14, %r14 - .loc 1 1919 11 ## /Users/dylan/github/ravi/src/lvm.c:1919:11 - je LBB21_917 -Ltmp3845: -## %bb.916: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movb 9(%r8), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1586 -Ltmp3846: -LBB21_917: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1920 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movq -96(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax - cmpq $0, 24(%rax) - movq %r13, %r8 - movq %r14, %r13 -Ltmp3847: - .loc 1 1920 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - jle LBB21_919 -Ltmp3848: -## %bb.918: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - addq $16, %r15 -Ltmp3849: - movq %r15, 16(%r13) - movq %r13, %rdi - callq _luaC_step -Ltmp3850: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -128(%rbp), %rcx ## 8-byte Reload -Ltmp3851: - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movq %rbx, 40(%rcx) -Ltmp3852: - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movq 8(%rcx), %rax - movq %rax, 16(%r13) -Ltmp3853: - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movq 32(%rcx), %r8 -Ltmp3854: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3855: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d -LBB21_919: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movq -8(%r13), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - leaq _luaV_execute.dispatch_table(%rip), %r14 - jne LBB21_1587 -Ltmp3856: -## %bb.920: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - movl %ecx, (%rax) -Ltmp3857: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1921 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - movl (%rbx), %r12d - addq $4, %r10 -Ltmp3858: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1921 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - testl %r11d, %r11d -Ltmp3859: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3860: - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3861: - .loc 1 1921 9 ## /Users/dylan/github/ravi/src/lvm.c:1921:9 - jne LBB21_904 -Ltmp3862: -LBB21_921: ## in Loop: Header=BB21_905 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3863: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3864: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3865: - .p2align 4, 0x90 -LBB21_922: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r14d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1931 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1931:11 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) - movq -88(%rbp), %rdx ## 8-byte Reload -Ltmp3866: - .loc 1 1931 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1931:11 - movq 48(%rdx), %rax - subq 16(%rdx), %rax - sarq $4, %rax - movl %r14d, %r15d -Ltmp3867: - cmpq %r15, %rax -Ltmp3868: - .loc 1 1931 11 ## /Users/dylan/github/ravi/src/lvm.c:1931:11 - jg LBB21_924 -Ltmp3869: -## %bb.923: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r14d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1931 11 ## /Users/dylan/github/ravi/src/lvm.c:1931:11 - movq -88(%rbp), %rdi ## 8-byte Reload - movl %r14d, %esi - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp3870: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - callq _luaD_growstack -Ltmp3871: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -88(%rbp), %rdx ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload -Ltmp3872: -LBB21_924: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r14d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1931 11 ## /Users/dylan/github/ravi/src/lvm.c:1931:11 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %rax -Ltmp3873: - ##DEBUG_VALUE: luaV_execute:base <- $rax - movzbl 200(%rdx), %ecx - andl $12, %ecx -Ltmp3874: - ##DEBUG_VALUE: luaV_execute:mask <- $ecx - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movl %ecx, -68(%rbp) ## 4-byte Spill -Ltmp3875: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - .loc 1 1932 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1932:16 - shrl $8, %r12d -Ltmp3876: - andl $127, %r12d - shlq $4, %r12 - movq %rax, %r11 - addq %rax, %r12 -Ltmp3877: - ##DEBUG_VALUE: ra <- $r12 - ##DEBUG_VALUE: luaV_execute:base <- $r11 - .loc 1 1933 23 ## /Users/dylan/github/ravi/src/lvm.c:1933:23 - shlq $4, %r15 - addq %r12, %r15 - .loc 1 1933 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1933:18 - movq %r15, 16(%rdx) -Ltmp3878: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r14d, %r8d -Ltmp3879: - movq %r12, %r15 -Ltmp3880: - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: j <- 0 - .loc 1 1935 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1935:23 - testl %r8d, %r8d - .loc 1 1935 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:27 - jg LBB21_928 - jmp LBB21_940 -Ltmp3881: -LBB21_925: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1939 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp3882: - .loc 1 1939 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3883: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3884: - .loc 1 1939 9 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3885: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3886: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_949 -Ltmp3887: - .p2align 4, 0x90 -Ltmp3888: ## Block address taken -LBB21_926: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_930 Depth 3 - ## Child Loop BB21_935 Depth 3 - ## Child Loop BB21_943 Depth 3 - ## Child Loop BB21_947 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp3889: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r8, %rax -Ltmp3890: - .loc 1 1924 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1924:17 - movl %r12d, %r8d -Ltmp3891: - shrl $24, %r8d - movq %rax, %r11 - .loc 1 1926 17 ## /Users/dylan/github/ravi/src/lvm.c:1926:17 - movq -128(%rbp), %rcx ## 8-byte Reload - subq (%rcx), %rax - shrq $4, %rax - .loc 1 1926 49 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1926:49 - movq -136(%rbp), %rcx ## 8-byte Reload - movq 24(%rcx), %rcx - .loc 1 1926 52 ## /Users/dylan/github/ravi/src/lvm.c:1926:52 - movzbl 10(%rcx), %r13d - .loc 1 1926 62 ## /Users/dylan/github/ravi/src/lvm.c:1926:62 - notl %r13d - xorl %ebx, %ebx - addl %eax, %r13d -Ltmp3892: - ##DEBUG_VALUE: n <- $r13d - .loc 1 1927 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1927:13 - movl $0, %r14d - cmovnsl %r13d, %r14d -Ltmp3893: - ##DEBUG_VALUE: b <- $r14d - ##DEBUG_VALUE: n <- $r14d - .loc 1 1929 15 ## /Users/dylan/github/ravi/src/lvm.c:1929:15 - testl %r8d, %r8d -Ltmp3894: - .loc 1 1929 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1929:13 - je LBB21_922 -Ltmp3895: -## %bb.927: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r14d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - decl %r8d -Ltmp3896: - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: j <- 0 - .loc 1 1935 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1935:23 - testl %r8d, %r8d - .loc 1 1935 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:27 - jle LBB21_940 -Ltmp3897: -LBB21_928: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testl %r13d, %r13d - movq -88(%rbp), %r13 ## 8-byte Reload - jle LBB21_940 -Ltmp3898: -## %bb.929: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - movq %r10, %r12 - movl %r14d, %r9d - movq %r9, %rax - shlq $4, %rax - movq %r11, %rcx - movq %r11, %rdx - subq %rax, %rdx -Ltmp3899: - .loc 1 1936 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1936:11 - movslq %r8d, %r10 - xorl %ebx, %ebx - movl $8, %edi - testq %r13, %r13 -Ltmp3900: - .loc 1 1935 27 ## /Users/dylan/github/ravi/src/lvm.c:1935:27 - je LBB21_935 -Ltmp3901: - .p2align 4, 0x90 -LBB21_930: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_926 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - .loc 1 1936 11 ## /Users/dylan/github/ravi/src/lvm.c:1936:11 - movq -8(%rdx,%rdi), %rax - movq %rax, -8(%r15,%rdi) - movzwl (%rdx,%rdi), %ecx - movw %cx, (%r15,%rdi) - testw %cx, %cx - jns LBB21_933 -Ltmp3902: -## %bb.931: ## in Loop: Header=BB21_930 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %ecx - movzbl 8(%rax), %esi - cmpl %esi, %ecx - jne LBB21_1559 -Ltmp3903: -## %bb.932: ## in Loop: Header=BB21_930 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1559 -Ltmp3904: -LBB21_933: ## in Loop: Header=BB21_930 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 1935 38 ## /Users/dylan/github/ravi/src/lvm.c:1935:38 - incq %rbx - .loc 1 1935 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:23 - cmpq %r10, %rbx - .loc 1 1935 27 ## /Users/dylan/github/ravi/src/lvm.c:1935:27 - jge LBB21_939 -Ltmp3905: -## %bb.934: ## in Loop: Header=BB21_930 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - addq $16, %rdi - cmpq %r9, %rbx - jb LBB21_930 - jmp LBB21_939 -Ltmp3906: - .p2align 4, 0x90 -LBB21_935: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_926 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - .loc 1 1936 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1936:11 - movq -8(%rdx,%rdi), %rax - movq %rax, -8(%r15,%rdi) - movzwl (%rdx,%rdi), %ecx - movw %cx, (%r15,%rdi) - testw %cx, %cx - jns LBB21_937 -Ltmp3907: -## %bb.936: ## in Loop: Header=BB21_935 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - andl $127, %ecx - movzbl 8(%rax), %eax - cmpl %eax, %ecx - jne LBB21_1559 -Ltmp3908: -LBB21_937: ## in Loop: Header=BB21_935 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 1935 38 ## /Users/dylan/github/ravi/src/lvm.c:1935:38 - incq %rbx - .loc 1 1935 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1935:23 - cmpq %r10, %rbx - .loc 1 1935 27 ## /Users/dylan/github/ravi/src/lvm.c:1935:27 - jge LBB21_939 -Ltmp3909: -## %bb.938: ## in Loop: Header=BB21_935 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - addq $16, %rdi - cmpq %r9, %rbx - jb LBB21_935 -Ltmp3910: - .p2align 4, 0x90 -LBB21_939: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - movq %r12, %r10 -Ltmp3911: -LBB21_940: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $ebx - .loc 1 1937 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1937:18 - cmpl %r8d, %ebx - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp3912: - .loc 1 0 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %r11, %r13 -Ltmp3913: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl -68(%rbp), %r9d ## 4-byte Reload -Ltmp3914: - .loc 1 1937 9 ## /Users/dylan/github/ravi/src/lvm.c:1937:9 - jge LBB21_948 -Ltmp3915: -## %bb.941: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $ebx - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1938 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1938:11 - movl %ebx, %edx - movl %r8d, %ecx - subl %ebx, %r8d -Ltmp3916: - movq %rdx, %rsi - notq %rsi - addq %rcx, %rsi - andq $3, %r8 - je LBB21_945 -Ltmp3917: -## %bb.942: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $ebx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %rdx, %rax - shlq $4, %rax - leaq 8(%r15,%rax), %rdi - negq %r8 - xorl %ebx, %ebx -Ltmp3918: - .p2align 4, 0x90 -LBB21_943: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_926 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- undef - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, (%rdi) -Ltmp3919: - .loc 1 1937 9 ## /Users/dylan/github/ravi/src/lvm.c:1937:9 - decq %rbx - addq $16, %rdi - cmpq %rbx, %r8 - jne LBB21_943 -Ltmp3920: -## %bb.944: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1938 11 ## /Users/dylan/github/ravi/src/lvm.c:1938:11 - subq %rbx, %rdx -Ltmp3921: -LBB21_945: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpq $3, %rsi - jb LBB21_948 -Ltmp3922: -## %bb.946: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - subq %rdx, %rcx - shlq $4, %rdx - leaq 56(%r15,%rdx), %rax -Ltmp3923: - .p2align 4, 0x90 -LBB21_947: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_926 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- undef - movw $0, -48(%rax) -Ltmp3924: - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, -32(%rax) - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, -16(%rax) - ##DEBUG_VALUE: j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, (%rax) - addq $64, %rax - addq $-4, %rcx -Ltmp3925: - .loc 1 1937 9 ## /Users/dylan/github/ravi/src/lvm.c:1937:9 - jne LBB21_947 -Ltmp3926: -LBB21_948: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1939 9 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp3927: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1939 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - testl %r9d, %r9d -Ltmp3928: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r13, %r8 - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp3929: - .loc 1 1939 9 ## /Users/dylan/github/ravi/src/lvm.c:1939:9 - jne LBB21_925 -Ltmp3930: -LBB21_949: ## in Loop: Header=BB21_926 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3931: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3932: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3933: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3934: -LBB21_950: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1949 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp3935: - movq %r10, (%rax) -Ltmp3936: - .loc 1 1949 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3937: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3938: - .loc 1 1949 9 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3939: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3940: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_956 -Ltmp3941: - .p2align 4, 0x90 -Ltmp3942: ## Block address taken -LBB21_951: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1946 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1946:22 - movzbl %r12b, %eax -Ltmp3943: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1855 -Ltmp3944: -## %bb.952: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp3945: - ##DEBUG_VALUE: rb <- $rax - .loc 1 1947 22 ## /Users/dylan/github/ravi/src/lvm.c:1947:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1856 -Ltmp3946: -## %bb.953: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp3947: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 1948 9 ## /Users/dylan/github/ravi/src/lvm.c:1948:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1857 -Ltmp3948: -## %bb.954: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1757 -Ltmp3949: -## %bb.955: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rcx -Ltmp3950: - andq (%rax), %rcx - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp3951: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1949 9 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - movl (%r10), %r12d -Ltmp3952: - addq $4, %r10 -Ltmp3953: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1949 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - testl %r11d, %r11d -Ltmp3954: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3955: - .loc 1 1949 9 ## /Users/dylan/github/ravi/src/lvm.c:1949:9 - jne LBB21_950 -Ltmp3956: -LBB21_956: ## in Loop: Header=BB21_951 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3957: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3958: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3959: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3960: -LBB21_957: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1955 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp3961: - movq %r10, (%rax) -Ltmp3962: - .loc 1 1955 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3963: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3964: - .loc 1 1955 9 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3965: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3966: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_963 -Ltmp3967: - .p2align 4, 0x90 -Ltmp3968: ## Block address taken -LBB21_958: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1952 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1952:22 - movzbl %r12b, %eax -Ltmp3969: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1758 -Ltmp3970: -## %bb.959: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp3971: - ##DEBUG_VALUE: rb <- $rax - .loc 1 1953 22 ## /Users/dylan/github/ravi/src/lvm.c:1953:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1759 -Ltmp3972: -## %bb.960: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp3973: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 1954 9 ## /Users/dylan/github/ravi/src/lvm.c:1954:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1760 -Ltmp3974: -## %bb.961: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1761 -Ltmp3975: -## %bb.962: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rcx -Ltmp3976: - orq (%rax), %rcx - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp3977: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1955 9 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - movl (%r10), %r12d -Ltmp3978: - addq $4, %r10 -Ltmp3979: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1955 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - testl %r11d, %r11d -Ltmp3980: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp3981: - .loc 1 1955 9 ## /Users/dylan/github/ravi/src/lvm.c:1955:9 - jne LBB21_957 -Ltmp3982: -LBB21_963: ## in Loop: Header=BB21_958 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp3983: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp3984: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp3985: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp3986: -LBB21_964: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1961 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp3987: - movq %r10, (%rax) -Ltmp3988: - .loc 1 1961 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp3989: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp3990: - .loc 1 1961 9 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp3991: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp3992: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_970 -Ltmp3993: - .p2align 4, 0x90 -Ltmp3994: ## Block address taken -LBB21_965: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1958 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1958:22 - movzbl %r12b, %eax -Ltmp3995: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1762 -Ltmp3996: -## %bb.966: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp3997: - ##DEBUG_VALUE: rb <- $rax - .loc 1 1959 22 ## /Users/dylan/github/ravi/src/lvm.c:1959:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1763 -Ltmp3998: -## %bb.967: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp3999: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 1960 9 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1764 -Ltmp4000: -## %bb.968: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1765 -Ltmp4001: -## %bb.969: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rcx -Ltmp4002: - xorq (%rax), %rcx - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp4003: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1961 9 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - movl (%r10), %r12d -Ltmp4004: - addq $4, %r10 -Ltmp4005: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1961 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - testl %r11d, %r11d -Ltmp4006: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4007: - .loc 1 1961 9 ## /Users/dylan/github/ravi/src/lvm.c:1961:9 - jne LBB21_964 -Ltmp4008: -LBB21_970: ## in Loop: Header=BB21_965 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4009: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4010: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4011: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4012: -LBB21_971: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1967 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4013: - .loc 1 1967 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4014: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4015: - .loc 1 1967 9 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4016: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4017: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_980 -Ltmp4018: - .p2align 4, 0x90 -Ltmp4019: ## Block address taken -LBB21_972: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1964 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1964:22 - movzbl %r12b, %eax -Ltmp4020: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1588 -Ltmp4021: -## %bb.973: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4022: - ##DEBUG_VALUE: rb <- $rax - .loc 1 1965 22 ## /Users/dylan/github/ravi/src/lvm.c:1965:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1589 -Ltmp4023: -## %bb.974: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4024: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 1966 9 ## /Users/dylan/github/ravi/src/lvm.c:1966:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1590 -Ltmp4025: -## %bb.975: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1591 -Ltmp4026: -## %bb.976: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rax), %rdx - movq (%rcx), %rax -Ltmp4027: - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp4028: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - js LBB21_978 -Ltmp4029: -## %bb.977: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 882 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - movl %eax, %ecx -Ltmp4030: - shlq %cl, %rdx -Ltmp4031: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $63, %rax -Ltmp4032: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovleq %rdx, %rcx - jmp LBB21_979 -Ltmp4033: - .p2align 4, 0x90 -LBB21_978: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx -Ltmp4034: - negl %ecx - ## kill: def $cl killed $cl killed $ecx - shrq %cl, %rdx -Ltmp4035: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $-63, %rax -Ltmp4036: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovgeq %rdx, %rcx -Ltmp4037: -LBB21_979: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1966 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1966:9 - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp4038: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1967 9 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - movl (%r10), %r12d -Ltmp4039: - addq $4, %r10 -Ltmp4040: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1967 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - testl %r11d, %r11d -Ltmp4041: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4042: - .loc 1 1967 9 ## /Users/dylan/github/ravi/src/lvm.c:1967:9 - jne LBB21_971 -Ltmp4043: -LBB21_980: ## in Loop: Header=BB21_972 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4044: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4045: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4046: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4047: -LBB21_981: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1974 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4048: - movq %r10, (%rax) -Ltmp4049: - .loc 1 1974 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4050: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4051: - .loc 1 1974 9 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4052: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4053: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_990 -Ltmp4054: - .p2align 4, 0x90 -Ltmp4055: ## Block address taken -LBB21_982: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1970 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1970:22 - movzbl %r12b, %eax -Ltmp4056: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andb $48, %cl - cmpb $48, %cl - jne LBB21_1592 -Ltmp4057: -## %bb.983: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $24, %ecx - movl %ecx, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl %r12d, %r12d - cmovsq %rdx, %rcx -Ltmp4058: - ##DEBUG_VALUE: rb <- $rcx - .loc 1 1971 22 ## /Users/dylan/github/ravi/src/lvm.c:1971:22 - andb $12, %al - cmpb $12, %al - jne LBB21_1593 -Ltmp4059: -## %bb.984: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %eax - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rax -Ltmp4060: - ##DEBUG_VALUE: rc <- $rax - .loc 1 1972 26 ## /Users/dylan/github/ravi/src/lvm.c:1972:26 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1594 -Ltmp4061: -## %bb.985: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1973 9 ## /Users/dylan/github/ravi/src/lvm.c:1973:9 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1595 -Ltmp4062: -## %bb.986: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1972 26 ## /Users/dylan/github/ravi/src/lvm.c:1972:26 - movq (%rax), %rax -Ltmp4063: - ##DEBUG_VALUE: ic <- $rax - .loc 1 1973 9 ## /Users/dylan/github/ravi/src/lvm.c:1973:9 - movq (%rcx), %rdx -Ltmp4064: - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp4065: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jle LBB21_988 -Ltmp4066: -## %bb.987: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx -Ltmp4067: - shrq %cl, %rdx -Ltmp4068: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $63, %rax -Ltmp4069: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovleq %rdx, %rcx - jmp LBB21_989 -Ltmp4070: - .p2align 4, 0x90 -LBB21_988: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1973 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1973:9 - movl %eax, %ecx -Ltmp4071: - negl %ecx - ## kill: def $cl killed $cl killed $ecx -Ltmp4072: - .loc 1 882 17 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - shlq %cl, %rdx -Ltmp4073: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $-63, %rax -Ltmp4074: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovgeq %rdx, %rcx -Ltmp4075: -LBB21_989: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1973 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1973:9 - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp4076: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1974 9 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - movl (%r10), %r12d -Ltmp4077: - addq $4, %r10 -Ltmp4078: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1974 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - testl %r11d, %r11d -Ltmp4079: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4080: - .loc 1 1974 9 ## /Users/dylan/github/ravi/src/lvm.c:1974:9 - jne LBB21_981 -Ltmp4081: -LBB21_990: ## in Loop: Header=BB21_982 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4082: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4083: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4084: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4085: -LBB21_991: ## in Loop: Header=BB21_992 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1996 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4086: - .loc 1 1996 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4087: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4088: - .loc 1 1996 9 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4089: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4090: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_995 -Ltmp4091: - .p2align 4, 0x90 -Ltmp4092: ## Block address taken -LBB21_992: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1993 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1993:22 - movzbl %r12b, %eax -Ltmp4093: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1659 -Ltmp4094: -## %bb.993: ## in Loop: Header=BB21_992 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp4095: - .loc 1 1994 26 ## /Users/dylan/github/ravi/src/lvm.c:1994:26 - shlq $4, %r12 - movzwl 8(%r8,%r12), %eax - cmpl $19, %eax - jne LBB21_1660 -Ltmp4096: -## %bb.994: ## in Loop: Header=BB21_992 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r8,%r12), %rax -Ltmp4097: - ##DEBUG_VALUE: ib <- $rax - .loc 1 1995 9 ## /Users/dylan/github/ravi/src/lvm.c:1995:9 - notq %rax -Ltmp4098: - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp4099: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1996 9 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4100: - ##DEBUG_VALUE: i <- $r12d - .loc 1 1996 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - testl %r11d, %r11d -Ltmp4101: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4102: - .loc 1 1996 9 ## /Users/dylan/github/ravi/src/lvm.c:1996:9 - jne LBB21_991 -Ltmp4103: -LBB21_995: ## in Loop: Header=BB21_992 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4104: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4105: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4106: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4107: -LBB21_996: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2006 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4108: - .loc 1 2006 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4109: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4110: - .loc 1 2006 9 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4111: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4112: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1007 -Ltmp4113: - .p2align 4, 0x90 -Ltmp4114: ## Block address taken -LBB21_997: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1999 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1999:22 - movzbl %r12b, %eax -Ltmp4115: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1661 -Ltmp4116: -## %bb.998: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4117: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2000 22 ## /Users/dylan/github/ravi/src/lvm.c:2000:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1662 -Ltmp4118: -## %bb.999: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4119: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2001 23 ## /Users/dylan/github/ravi/src/lvm.c:2001:23 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1663 -Ltmp4120: -## %bb.1000: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2001 37 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2001:37 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1664 -Ltmp4121: -## %bb.1001: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2001 23 ## /Users/dylan/github/ravi/src/lvm.c:2001:23 - movq (%rax), %rax -Ltmp4122: - .loc 1 2001 34 ## /Users/dylan/github/ravi/src/lvm.c:2001:34 - xorl %edx, %edx - cmpq (%rcx), %rax - sete %dl -Ltmp4123: - ##DEBUG_VALUE: equals <- $edx - .loc 1 2002 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2002:23 - shrl $8, %r12d -Ltmp4124: - andl $127, %r12d - .loc 1 2002 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2002:20 - cmpl %edx, %r12d -Ltmp4125: - .loc 1 2002 13 ## /Users/dylan/github/ravi/src/lvm.c:2002:13 - jne LBB21_1005 -Ltmp4126: -## %bb.1002: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: equals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2005 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2005:11 - movl (%r10), %ebx -Ltmp4127: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2005 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2005:11 - movl %ebx, %eax - shrl $8, %eax - andl $127, %eax -Ltmp4128: - ##DEBUG_VALUE: a <- $eax - je LBB21_1004 -Ltmp4129: -## %bb.1003: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: equals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2005 11 ## /Users/dylan/github/ravi/src/lvm.c:2005:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4130: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4131: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4132: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4133: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2005 11 ## /Users/dylan/github/ravi/src/lvm.c:2005:11 - callq _luaF_close -Ltmp4134: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4135: -LBB21_1004: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2005 11 ## /Users/dylan/github/ravi/src/lvm.c:2005:11 - shrl $16, %ebx -Ltmp4136: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4137: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4138: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1006 -Ltmp4139: - .p2align 4, 0x90 -LBB21_1005: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: equals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2003 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2003:13 - addq $4, %r10 -Ltmp4140: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1006: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2006 9 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4141: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2006 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - testl %r11d, %r11d -Ltmp4142: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4143: - .loc 1 2006 9 ## /Users/dylan/github/ravi/src/lvm.c:2006:9 - jne LBB21_996 -Ltmp4144: -LBB21_1007: ## in Loop: Header=BB21_997 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4145: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4146: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4147: -LBB21_1008: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2016 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4148: - .loc 1 2016 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4149: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4150: - .loc 1 2016 9 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4151: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4152: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1019 -Ltmp4153: - .p2align 4, 0x90 -Ltmp4154: ## Block address taken -LBB21_1009: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2009 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2009:22 - movzbl %r12b, %eax -Ltmp4155: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1665 -Ltmp4156: -## %bb.1010: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4157: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2010 22 ## /Users/dylan/github/ravi/src/lvm.c:2010:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1766 -Ltmp4158: -## %bb.1011: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4159: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2011 23 ## /Users/dylan/github/ravi/src/lvm.c:2011:23 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1858 -Ltmp4160: -## %bb.1012: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2011 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2011:39 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1859 -Ltmp4161: -## %bb.1013: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rcx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2011 36 ## /Users/dylan/github/ravi/src/lvm.c:2011:36 - cmpeqsd (%rax), %xmm0 - movq %xmm0, %rax -Ltmp4162: - andl $1, %eax -Ltmp4163: - ##DEBUG_VALUE: equals <- $eax - .loc 1 2012 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2012:23 - shrl $8, %r12d -Ltmp4164: - andl $127, %r12d - .loc 1 2012 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2012:20 - cmpl %eax, %r12d -Ltmp4165: - .loc 1 2012 13 ## /Users/dylan/github/ravi/src/lvm.c:2012:13 - jne LBB21_1017 -Ltmp4166: -## %bb.1014: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: equals <- $eax - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2015 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2015:11 - movl (%r10), %ebx -Ltmp4167: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2015 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2015:11 - movl %ebx, %eax -Ltmp4168: - shrl $8, %eax - andl $127, %eax -Ltmp4169: - ##DEBUG_VALUE: a <- $eax - je LBB21_1016 -Ltmp4170: -## %bb.1015: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2015 11 ## /Users/dylan/github/ravi/src/lvm.c:2015:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4171: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4172: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4173: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4174: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2015 11 ## /Users/dylan/github/ravi/src/lvm.c:2015:11 - callq _luaF_close -Ltmp4175: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4176: -LBB21_1016: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2015 11 ## /Users/dylan/github/ravi/src/lvm.c:2015:11 - shrl $16, %ebx -Ltmp4177: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4178: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4179: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1018 -Ltmp4180: - .p2align 4, 0x90 -LBB21_1017: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: equals <- $eax - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2013 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2013:13 - addq $4, %r10 -Ltmp4181: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1018: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2016 9 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4182: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2016 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - testl %r11d, %r11d -Ltmp4183: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4184: - .loc 1 2016 9 ## /Users/dylan/github/ravi/src/lvm.c:2016:9 - jne LBB21_1008 -Ltmp4185: -LBB21_1019: ## in Loop: Header=BB21_1009 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4186: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4187: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4188: -LBB21_1020: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2026 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4189: - .loc 1 2026 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4190: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4191: - .loc 1 2026 9 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4192: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4193: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1031 -Ltmp4194: - .p2align 4, 0x90 -Ltmp4195: ## Block address taken -LBB21_1021: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2019 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2019:22 - movzbl %r12b, %eax -Ltmp4196: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1860 -Ltmp4197: -## %bb.1022: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4198: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2020 22 ## /Users/dylan/github/ravi/src/lvm.c:2020:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1861 -Ltmp4199: -## %bb.1023: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4200: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2021 25 ## /Users/dylan/github/ravi/src/lvm.c:2021:25 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1862 -Ltmp4201: -## %bb.1024: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2021 38 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2021:38 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1863 -Ltmp4202: -## %bb.1025: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2021 25 ## /Users/dylan/github/ravi/src/lvm.c:2021:25 - movq (%rax), %rax -Ltmp4203: - .loc 1 2021 36 ## /Users/dylan/github/ravi/src/lvm.c:2021:36 - xorl %edx, %edx - cmpq (%rcx), %rax - setl %dl -Ltmp4204: - ##DEBUG_VALUE: lessthan <- $edx - .loc 1 2022 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2022:25 - shrl $8, %r12d -Ltmp4205: - andl $127, %r12d - .loc 1 2022 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2022:22 - cmpl %edx, %r12d -Ltmp4206: - .loc 1 2022 13 ## /Users/dylan/github/ravi/src/lvm.c:2022:13 - jne LBB21_1029 -Ltmp4207: -## %bb.1026: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessthan <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2025 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2025:11 - movl (%r10), %ebx -Ltmp4208: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2025 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2025:11 - movl %ebx, %eax - shrl $8, %eax - andl $127, %eax -Ltmp4209: - ##DEBUG_VALUE: a <- $eax - je LBB21_1028 -Ltmp4210: -## %bb.1027: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: lessthan <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2025 11 ## /Users/dylan/github/ravi/src/lvm.c:2025:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4211: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4212: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4213: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4214: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2025 11 ## /Users/dylan/github/ravi/src/lvm.c:2025:11 - callq _luaF_close -Ltmp4215: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4216: -LBB21_1028: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2025 11 ## /Users/dylan/github/ravi/src/lvm.c:2025:11 - shrl $16, %ebx -Ltmp4217: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4218: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4219: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1030 -Ltmp4220: - .p2align 4, 0x90 -LBB21_1029: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessthan <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2023 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2023:13 - addq $4, %r10 -Ltmp4221: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1030: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2026 9 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4222: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2026 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - testl %r11d, %r11d -Ltmp4223: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4224: - .loc 1 2026 9 ## /Users/dylan/github/ravi/src/lvm.c:2026:9 - jne LBB21_1020 -Ltmp4225: -LBB21_1031: ## in Loop: Header=BB21_1021 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4226: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4227: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4228: -LBB21_1032: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2036 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4229: - .loc 1 2036 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4230: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4231: - .loc 1 2036 9 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4232: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4233: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1043 -Ltmp4234: - .p2align 4, 0x90 -Ltmp4235: ## Block address taken -LBB21_1033: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2029 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2029:22 - movzbl %r12b, %eax -Ltmp4236: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1767 -Ltmp4237: -## %bb.1034: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4238: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2030 22 ## /Users/dylan/github/ravi/src/lvm.c:2030:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1768 -Ltmp4239: -## %bb.1035: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4240: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2031 25 ## /Users/dylan/github/ravi/src/lvm.c:2031:25 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1769 -Ltmp4241: -## %bb.1036: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2031 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2031:40 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1770 -Ltmp4242: -## %bb.1037: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rcx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2031 38 ## /Users/dylan/github/ravi/src/lvm.c:2031:38 - xorl %ecx, %ecx -Ltmp4243: - ucomisd (%rax), %xmm0 - seta %cl -Ltmp4244: - ##DEBUG_VALUE: lessthan <- $ecx - .loc 1 2032 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2032:25 - shrl $8, %r12d -Ltmp4245: - andl $127, %r12d - .loc 1 2032 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2032:22 - cmpl %ecx, %r12d -Ltmp4246: - .loc 1 2032 13 ## /Users/dylan/github/ravi/src/lvm.c:2032:13 - jne LBB21_1041 -Ltmp4247: -## %bb.1038: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessthan <- $ecx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2035 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2035:11 - movl (%r10), %ebx -Ltmp4248: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2035 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2035:11 - movl %ebx, %eax -Ltmp4249: - shrl $8, %eax - andl $127, %eax -Ltmp4250: - ##DEBUG_VALUE: a <- $eax - je LBB21_1040 -Ltmp4251: -## %bb.1039: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: lessthan <- $ecx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2035 11 ## /Users/dylan/github/ravi/src/lvm.c:2035:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4252: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4253: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4254: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4255: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2035 11 ## /Users/dylan/github/ravi/src/lvm.c:2035:11 - callq _luaF_close -Ltmp4256: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4257: -LBB21_1040: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2035 11 ## /Users/dylan/github/ravi/src/lvm.c:2035:11 - shrl $16, %ebx -Ltmp4258: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4259: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4260: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1042 -Ltmp4261: - .p2align 4, 0x90 -LBB21_1041: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessthan <- $ecx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2033 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2033:13 - addq $4, %r10 -Ltmp4262: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1042: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2036 9 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4263: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2036 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - testl %r11d, %r11d -Ltmp4264: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4265: - .loc 1 2036 9 ## /Users/dylan/github/ravi/src/lvm.c:2036:9 - jne LBB21_1032 -Ltmp4266: -LBB21_1043: ## in Loop: Header=BB21_1033 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4267: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4268: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4269: -LBB21_1044: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2046 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4270: - .loc 1 2046 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4271: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4272: - .loc 1 2046 9 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4273: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4274: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1055 -Ltmp4275: - .p2align 4, 0x90 -Ltmp4276: ## Block address taken -LBB21_1045: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2039 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2039:22 - movzbl %r12b, %eax -Ltmp4277: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1771 -Ltmp4278: -## %bb.1046: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4279: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2040 22 ## /Users/dylan/github/ravi/src/lvm.c:2040:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1772 -Ltmp4280: -## %bb.1047: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4281: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2041 27 ## /Users/dylan/github/ravi/src/lvm.c:2041:27 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1773 -Ltmp4282: -## %bb.1048: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2041 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2041:41 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1774 -Ltmp4283: -## %bb.1049: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2041 27 ## /Users/dylan/github/ravi/src/lvm.c:2041:27 - movq (%rax), %rax -Ltmp4284: - .loc 1 2041 38 ## /Users/dylan/github/ravi/src/lvm.c:2041:38 - xorl %edx, %edx - cmpq (%rcx), %rax - setle %dl -Ltmp4285: - ##DEBUG_VALUE: lessequals <- $edx - .loc 1 2042 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2042:27 - shrl $8, %r12d -Ltmp4286: - andl $127, %r12d - .loc 1 2042 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2042:24 - cmpl %edx, %r12d -Ltmp4287: - .loc 1 2042 13 ## /Users/dylan/github/ravi/src/lvm.c:2042:13 - jne LBB21_1053 -Ltmp4288: -## %bb.1050: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessequals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2045 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2045:11 - movl (%r10), %ebx -Ltmp4289: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2045 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2045:11 - movl %ebx, %eax - shrl $8, %eax - andl $127, %eax -Ltmp4290: - ##DEBUG_VALUE: a <- $eax - je LBB21_1052 -Ltmp4291: -## %bb.1051: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: lessequals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2045 11 ## /Users/dylan/github/ravi/src/lvm.c:2045:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4292: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4293: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4294: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4295: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2045 11 ## /Users/dylan/github/ravi/src/lvm.c:2045:11 - callq _luaF_close -Ltmp4296: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4297: -LBB21_1052: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2045 11 ## /Users/dylan/github/ravi/src/lvm.c:2045:11 - shrl $16, %ebx -Ltmp4298: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4299: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4300: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1054 -Ltmp4301: - .p2align 4, 0x90 -LBB21_1053: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessequals <- $edx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2043 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2043:13 - addq $4, %r10 -Ltmp4302: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1054: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2046 9 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4303: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2046 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - testl %r11d, %r11d -Ltmp4304: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4305: - .loc 1 2046 9 ## /Users/dylan/github/ravi/src/lvm.c:2046:9 - jne LBB21_1044 -Ltmp4306: -LBB21_1055: ## in Loop: Header=BB21_1045 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4307: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4308: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4309: -LBB21_1056: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2056 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4310: - .loc 1 2056 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4311: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4312: - .loc 1 2056 9 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4313: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4314: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1067 -Ltmp4315: - .p2align 4, 0x90 -Ltmp4316: ## Block address taken -LBB21_1057: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2049 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2049:22 - movzbl %r12b, %eax -Ltmp4317: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1596 -Ltmp4318: -## %bb.1058: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4319: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2050 22 ## /Users/dylan/github/ravi/src/lvm.c:2050:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1597 -Ltmp4320: -## %bb.1059: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4321: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2051 27 ## /Users/dylan/github/ravi/src/lvm.c:2051:27 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1598 -Ltmp4322: -## %bb.1060: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2051 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2051:43 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1599 -Ltmp4323: -## %bb.1061: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rcx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2051 40 ## /Users/dylan/github/ravi/src/lvm.c:2051:40 - xorl %ecx, %ecx -Ltmp4324: - ucomisd (%rax), %xmm0 - setae %cl -Ltmp4325: - ##DEBUG_VALUE: lessequals <- $ecx - .loc 1 2052 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2052:27 - shrl $8, %r12d -Ltmp4326: - andl $127, %r12d - .loc 1 2052 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2052:24 - cmpl %ecx, %r12d -Ltmp4327: - .loc 1 2052 13 ## /Users/dylan/github/ravi/src/lvm.c:2052:13 - jne LBB21_1065 -Ltmp4328: -## %bb.1062: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessequals <- $ecx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2055 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2055:11 - movl (%r10), %ebx -Ltmp4329: - ##DEBUG_VALUE: i <- $ebx - .loc 1 2055 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2055:11 - movl %ebx, %eax -Ltmp4330: - shrl $8, %eax - andl $127, %eax -Ltmp4331: - ##DEBUG_VALUE: a <- $eax - je LBB21_1064 -Ltmp4332: -## %bb.1063: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: a <- $eax - ##DEBUG_VALUE: lessequals <- $ecx - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2055 11 ## /Users/dylan/github/ravi/src/lvm.c:2055:11 - movq -56(%rbp), %rcx ## 8-byte Reload -Ltmp4333: - movq (%rcx), %rcx - shlq $4, %rax -Ltmp4334: - leaq -16(%rcx,%rax), %rsi - movq %r13, %rdi - movq %r10, %r15 -Ltmp4335: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 -Ltmp4336: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2055 11 ## /Users/dylan/github/ravi/src/lvm.c:2055:11 - callq _luaF_close -Ltmp4337: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movq %r15, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4338: -LBB21_1064: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $ebx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2055 11 ## /Users/dylan/github/ravi/src/lvm.c:2055:11 - shrl $16, %ebx -Ltmp4339: - leaq -131068(%r10,%rbx,4), %r10 -Ltmp4340: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4341: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - jmp LBB21_1066 -Ltmp4342: - .p2align 4, 0x90 -LBB21_1065: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: lessequals <- $ecx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2053 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2053:13 - addq $4, %r10 -Ltmp4343: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 -LBB21_1066: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2056 9 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - movl (%r10), %r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4344: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2056 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - testl %r11d, %r11d -Ltmp4345: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4346: - .loc 1 2056 9 ## /Users/dylan/github/ravi/src/lvm.c:2056:9 - jne LBB21_1056 -Ltmp4347: -LBB21_1067: ## in Loop: Header=BB21_1057 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4348: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4349: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4350: -LBB21_1068: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2068 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4351: - movq %r10, (%rax) -Ltmp4352: - .loc 1 2068 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4353: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4354: - .loc 1 2068 9 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4355: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4356: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1077 -Ltmp4357: - .p2align 4, 0x90 -Ltmp4358: ## Block address taken -LBB21_1069: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2060 31 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2060:31 - cmpl $87, %eax - .loc 1 2060 28 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2060:28 - jne LBB21_1071 -Ltmp4359: -## %bb.1070: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 28 ## /Users/dylan/github/ravi/src/lvm.c:0:28 - movl $1, %eax -Ltmp4360: - ##DEBUG_VALUE: step <- $rax - .loc 1 2061 27 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2061:27 - movzwl 8(%r15), %ecx - cmpl $19, %ecx - je LBB21_1073 - jmp LBB21_1667 -Ltmp4361: - .p2align 4, 0x90 -LBB21_1071: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2060 59 ## /Users/dylan/github/ravi/src/lvm.c:2060:59 - movzwl 40(%r15), %eax -Ltmp4362: - cmpl $19, %eax - jne LBB21_1666 -Ltmp4363: -## %bb.1072: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 32(%r15), %rax -Ltmp4364: - ##DEBUG_VALUE: step <- $rax - .loc 1 2061 27 ## /Users/dylan/github/ravi/src/lvm.c:2061:27 - movzwl 8(%r15), %ecx - cmpl $19, %ecx - jne LBB21_1667 -Ltmp4365: -LBB21_1073: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: step <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2062 29 ## /Users/dylan/github/ravi/src/lvm.c:2062:29 - movzwl 24(%r15), %ecx - cmpl $19, %ecx - jne LBB21_1668 -Ltmp4366: -## %bb.1074: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: step <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:29 - addq (%r15), %rax -Ltmp4367: - ##DEBUG_VALUE: idx <- $rax - .loc 1 2063 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2063:17 - cmpq 16(%r15), %rax -Ltmp4368: - .loc 1 2063 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2063:13 - jg LBB21_1076 -Ltmp4369: -## %bb.1075: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2064 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2064:17 - shrl $16, %r12d -Ltmp4370: - .loc 1 2064 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2064:14 - leaq -131072(%r10,%r12,4), %r10 -Ltmp4371: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2065 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2065:11 - movq %rax, (%r15) -Ltmp4372: - .loc 1 2066 11 ## /Users/dylan/github/ravi/src/lvm.c:2066:11 - movq %rax, 48(%r15) - movw $19, 56(%r15) -Ltmp4373: -LBB21_1076: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2068 9 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4374: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2068 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - testl %r11d, %r11d -Ltmp4375: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4376: - .loc 1 2068 9 ## /Users/dylan/github/ravi/src/lvm.c:2068:9 - jne LBB21_1068 -Ltmp4377: -LBB21_1077: ## in Loop: Header=BB21_1069 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4378: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4379: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4380: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4381: -LBB21_1078: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 32(%r15), %rcx -Ltmp4382: - ##DEBUG_VALUE: pstep <- $rcx - .loc 1 2076 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2076:29 - movzwl 8(%r15), %edx - cmpl $19, %edx - je LBB21_1082 - jmp LBB21_1864 -Ltmp4383: -LBB21_1079: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: istep <- $rax - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2081 9 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4384: - movq %rbx, (%rax) -Ltmp4385: - .loc 1 2081 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp4386: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4387: - .loc 1 2081 9 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4388: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4389: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1087 -Ltmp4390: - .p2align 4, 0x90 -Ltmp4391: ## Block address taken -LBB21_1080: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2074 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2074:25 - cmpl $89, %eax - jne LBB21_1078 -Ltmp4392: -## %bb.1081: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:25 - xorl %ecx, %ecx -Ltmp4393: - ##DEBUG_VALUE: pstep <- $rcx - .loc 1 2076 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2076:29 - movzwl 8(%r15), %edx - cmpl $19, %edx - jne LBB21_1864 -Ltmp4394: -LBB21_1082: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rdx -Ltmp4395: - ##DEBUG_VALUE: initv <- $rdx - .loc 1 2074 25 ## /Users/dylan/github/ravi/src/lvm.c:2074:25 - cmpl $89, %eax - .loc 1 2077 29 ## /Users/dylan/github/ravi/src/lvm.c:2077:29 - jne LBB21_1084 -Ltmp4396: -## %bb.1083: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rdx - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 29 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:29 - movl $1, %eax -Ltmp4397: - jmp LBB21_1086 -Ltmp4398: - .p2align 4, 0x90 -LBB21_1084: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rdx - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2077 75 ## /Users/dylan/github/ravi/src/lvm.c:2077:75 - movzwl 8(%rcx), %eax -Ltmp4399: - cmpl $19, %eax - jne LBB21_1865 -Ltmp4400: -## %bb.1085: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rdx - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rax -Ltmp4401: -LBB21_1086: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rdx - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: istep <- $rax - .loc 1 2079 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2079:9 - subq %rax, %rdx -Ltmp4402: - movq %rdx, (%r15) - movw $19, 8(%r15) -Ltmp4403: - .loc 1 2080 15 ## /Users/dylan/github/ravi/src/lvm.c:2080:15 - shrl $16, %r12d -Ltmp4404: - .loc 1 2081 9 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - leaq -131068(%r10,%r12,4), %rbx -Ltmp4405: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl -131072(%r10,%r12,4), %r12d -Ltmp4406: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2081 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - testl %r11d, %r11d -Ltmp4407: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4408: - .loc 1 2081 9 ## /Users/dylan/github/ravi/src/lvm.c:2081:9 - jne LBB21_1079 -Ltmp4409: -LBB21_1087: ## in Loop: Header=BB21_1080 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4410: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4411: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4412: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp4413: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp4414: - .p2align 4, 0x90 -LBB21_1088: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2088 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - movq -96(%rbp), %rax ## 8-byte Reload -Ltmp4415: - movq (%rax), %rax - cmpq $0, 24(%rax) -Ltmp4416: - .loc 1 2088 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - jg LBB21_1095 - jmp LBB21_1096 -Ltmp4417: -LBB21_1089: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2089 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4418: - .loc 1 2089 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4419: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4420: - .loc 1 2089 9 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4421: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4422: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1098 -Ltmp4423: - .p2align 4, 0x90 -Ltmp4424: ## Block address taken -LBB21_1090: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r14, %r12 -Ltmp4425: - movq %r13, %rdi - movq %r8, %r13 -Ltmp4426: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r14d -Ltmp4427: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 2085 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2085:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4428: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp4429: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 2085 9 ## /Users/dylan/github/ravi/src/lvm.c:2085:9 - movq %r10, (%rax) - .loc 1 2086 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2086:13 - movl $3, %esi - xorl %edx, %edx - movq %rdi, %rbx - callq _raviH_new -Ltmp4430: - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: t <- $rax - .loc 1 2087 9 ## /Users/dylan/github/ravi/src/lvm.c:2087:9 - movzbl 8(%rax), %ecx - andb $14, %cl - cmpb $10, %cl - jae LBB21_1600 -Ltmp4431: -## %bb.1091: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %rax, (%r15) - movw $-32747, 8(%r15) ## imm = 0x8015 - cmpb $21, 8(%rax) - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - jne LBB21_1866 -Ltmp4432: -## %bb.1092: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r14d, %esi - movq %r13, %r8 - movq %rbx, %r13 -Ltmp4433: - movq %r12, %r14 -Ltmp4434: - testq %rbx, %rbx - .loc 1 2087 9 ## /Users/dylan/github/ravi/src/lvm.c:2087:9 - je LBB21_1088 -Ltmp4435: -## %bb.1093: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rax), %ecx - xorb $3, %cl - movq -96(%rbp), %rax ## 8-byte Reload -Ltmp4436: - movq (%rax), %rax - movzbl 84(%rax), %edx - xorb $3, %dl - testb %cl, %dl - je LBB21_1866 -Ltmp4437: -## %bb.1094: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2088 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - cmpq $0, 24(%rax) -Ltmp4438: - .loc 1 2088 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - jle LBB21_1096 -Ltmp4439: -LBB21_1095: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - addq $16, %r15 -Ltmp4440: - movq %r15, 16(%r13) - movq %r13, %rdi - callq _luaC_step -Ltmp4441: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload - movq -128(%rbp), %rcx ## 8-byte Reload -Ltmp4442: - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - movq %r10, 40(%rcx) -Ltmp4443: - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - movq 8(%rcx), %rax - movq %rax, 16(%r13) -Ltmp4444: - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - movq 32(%rcx), %r8 -Ltmp4445: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %esi - andl $12, %esi -Ltmp4446: - ##DEBUG_VALUE: luaV_execute:mask <- $esi -LBB21_1096: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - movq -8(%r13), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB21_1867 -Ltmp4447: -## %bb.1097: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movl %ecx, (%rax) -Ltmp4448: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2089 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4449: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2089 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - testl %esi, %esi -Ltmp4450: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4451: - .loc 1 2089 9 ## /Users/dylan/github/ravi/src/lvm.c:2089:9 - jne LBB21_1089 -Ltmp4452: -LBB21_1098: ## in Loop: Header=BB21_1090 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4453: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4454: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4455: - .p2align 4, 0x90 -LBB21_1099: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2096 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - movq -96(%rbp), %rax ## 8-byte Reload -Ltmp4456: - movq (%rax), %rax - cmpq $0, 24(%rax) -Ltmp4457: - .loc 1 2096 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - jg LBB21_1106 - jmp LBB21_1107 -Ltmp4458: -LBB21_1100: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2097 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4459: - .loc 1 2097 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4460: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4461: - .loc 1 2097 9 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4462: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4463: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1109 -Ltmp4464: - .p2align 4, 0x90 -Ltmp4465: ## Block address taken -LBB21_1101: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r14, %r12 -Ltmp4466: - movq %r13, %rdi - movq %r8, %r13 -Ltmp4467: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r14d -Ltmp4468: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - .loc 1 2093 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2093:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4469: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp4470: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 2093 9 ## /Users/dylan/github/ravi/src/lvm.c:2093:9 - movq %r10, (%rax) - .loc 1 2094 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2094:13 - movl $4, %esi - xorl %edx, %edx - movq %rdi, %rbx - callq _raviH_new -Ltmp4471: - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: t <- $rax - .loc 1 2095 9 ## /Users/dylan/github/ravi/src/lvm.c:2095:9 - movzbl 8(%rax), %ecx - andb $14, %cl - cmpb $10, %cl - jae LBB21_1601 -Ltmp4472: -## %bb.1102: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %rax, (%r15) - movw $-32731, 8(%r15) ## imm = 0x8025 - cmpb $37, 8(%rax) - movq -48(%rbp), %r9 ## 8-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - jne LBB21_1868 -Ltmp4473: -## %bb.1103: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r14d, %esi - movq %r13, %r8 - movq %rbx, %r13 -Ltmp4474: - movq %r12, %r14 -Ltmp4475: - testq %rbx, %rbx - .loc 1 2095 9 ## /Users/dylan/github/ravi/src/lvm.c:2095:9 - je LBB21_1099 -Ltmp4476: -## %bb.1104: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rax), %ecx - xorb $3, %cl - movq -96(%rbp), %rax ## 8-byte Reload -Ltmp4477: - movq (%rax), %rax - movzbl 84(%rax), %edx - xorb $3, %dl - testb %cl, %dl - je LBB21_1868 -Ltmp4478: -## %bb.1105: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2096 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - cmpq $0, 24(%rax) -Ltmp4479: - .loc 1 2096 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - jle LBB21_1107 -Ltmp4480: -LBB21_1106: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - addq $16, %r15 -Ltmp4481: - movq %r15, 16(%r13) - movq %r13, %rdi - callq _luaC_step -Ltmp4482: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload - movq -128(%rbp), %rcx ## 8-byte Reload -Ltmp4483: - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - movq %r10, 40(%rcx) -Ltmp4484: - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - movq 8(%rcx), %rax - movq %rax, 16(%r13) -Ltmp4485: - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - movq 32(%rcx), %r8 -Ltmp4486: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %esi - andl $12, %esi -Ltmp4487: - ##DEBUG_VALUE: luaV_execute:mask <- $esi -LBB21_1107: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - movq -8(%r13), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB21_1869 -Ltmp4488: -## %bb.1108: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movl %ecx, (%rax) -Ltmp4489: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2097 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4490: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2097 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - testl %esi, %esi -Ltmp4491: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4492: - .loc 1 2097 9 ## /Users/dylan/github/ravi/src/lvm.c:2097:9 - jne LBB21_1100 -Ltmp4493: -LBB21_1109: ## in Loop: Header=BB21_1101 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4494: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4495: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4496: -LBB21_1110: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB21_1118 -Ltmp4497: -## %bb.1111: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq (%r14), %rax -Ltmp4498: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1670 -Ltmp4499: -## %bb.1112: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movzwl 8(%rbx), %ecx - cmpl $19, %ecx - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4500: - jne LBB21_1669 -Ltmp4501: -## %bb.1113: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rcx -Ltmp4502: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpl %ecx, 64(%rax) -Ltmp4503: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - jbe LBB21_1680 -Ltmp4504: -## %bb.1114: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4505: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movl %ecx, %ecx -Ltmp4506: - movq 56(%rax), %rax -Ltmp4507: - ##DEBUG_VALUE: data <- $rax - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq (%rax,%rcx,8), %rax -Ltmp4508: - movq %rax, (%r15) - movw $3, 8(%r15) - jmp LBB21_1137 -Ltmp4509: -LBB21_1115: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2103 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp4510: - .loc 1 2103 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp4511: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4512: - .loc 1 2103 9 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4513: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4514: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1138 -Ltmp4515: -LBB21_1116: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r10, -112(%rbp) ## 8-byte Spill -Ltmp4516: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp4517: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - .loc 1 2102 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - callq _luaH_getint -Ltmp4518: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl -68(%rbp), %r11d ## 4-byte Reload - movq -112(%rbp), %r10 ## 8-byte Reload - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4519: - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpw $0, 8(%rax) -Ltmp4520: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - jne LBB21_1132 -Ltmp4521: -LBB21_1117: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq -64(%rbp), %rcx ## 8-byte Reload - movq %r10, (%rcx) -Ltmp4522: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq %r13, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx - movq %rax, %r8 - jmp LBB21_1124 -Ltmp4523: -LBB21_1118: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB21_1123 -Ltmp4524: -## %bb.1119: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq (%r14), %rax -Ltmp4525: - ##DEBUG_VALUE: h <- $rax - movzbl 8(%rax), %ecx - andb $15, %cl - cmpb $5, %cl - jne LBB21_1670 -Ltmp4526: -## %bb.1120: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movzwl 8(%rbx), %ecx - cmpl $19, %ecx - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4527: - jne LBB21_1669 -Ltmp4528: -## %bb.1121: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rcx -Ltmp4529: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpl %ecx, 64(%rax) -Ltmp4530: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - jbe LBB21_1680 -Ltmp4531: -## %bb.1122: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4532: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movl %ecx, %ecx -Ltmp4533: - movq 56(%rax), %rax -Ltmp4534: - ##DEBUG_VALUE: data <- $rax - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq (%rax,%rcx,8), %rax -Ltmp4535: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB21_1137 -Ltmp4536: -LBB21_1123: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4537: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - xorl %r8d, %r8d -Ltmp4538: - movq %r13, %rdi - movq %r14, %rsi - movq %rbx, %rdx - movq %r15, %rcx -Ltmp4539: -LBB21_1124: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %rbx -Ltmp4540: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - callq _luaV_finishget -Ltmp4541: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4542: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4543: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4544: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4545: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - jmp LBB21_1137 -Ltmp4546: - .p2align 4, 0x90 -Ltmp4547: ## Block address taken -LBB21_1125: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2100 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2100:22 - movzbl %r12b, %eax -Ltmp4548: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1714 -Ltmp4549: -## %bb.1126: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2101 22 ## /Users/dylan/github/ravi/src/lvm.c:2101:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1715 -Ltmp4550: -## %bb.1127: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movl %r12d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r8,%rax), %r14 -Ltmp4551: - ##DEBUG_VALUE: rb <- $r14 - .loc 1 2101 22 ## /Users/dylan/github/ravi/src/lvm.c:2101:22 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %ebx - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rbx - addq %r8, %rbx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rbx -Ltmp4552: - ##DEBUG_VALUE: rc <- $rbx - .loc 1 0 22 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movq %r8, %r12 -Ltmp4553: - .loc 1 2102 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movzwl 8(%r8,%rax), %eax -Ltmp4554: - .loc 1 2102 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB21_1110 -Ltmp4555: -## %bb.1128: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movzwl 8(%rbx), %eax - cmpl $19, %eax - jne LBB21_1669 -Ltmp4556: -## %bb.1129: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r14), %rdi - movzbl 8(%rdi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1670 -Ltmp4557: -## %bb.1130: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rbx), %rsi -Ltmp4558: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp4559: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - jae LBB21_1116 -Ltmp4560: -## %bb.1131: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp4561: - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - cmpw $0, 8(%rax) -Ltmp4562: - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - je LBB21_1117 -Ltmp4563: -LBB21_1132: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - movq (%rax), %rcx - movq %rcx, (%r15) - movzwl 8(%rax), %eax -Ltmp4564: - movw %ax, 8(%r15) - testw %ax, %ax - js LBB21_1134 -Ltmp4565: -## %bb.1133: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4566: - movq %r12, %r8 - jmp LBB21_1137 -Ltmp4567: - .p2align 4, 0x90 -LBB21_1134: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4568: - jne LBB21_1775 -Ltmp4569: -## %bb.1135: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - testq %r13, %r13 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - je LBB21_1137 -Ltmp4570: -## %bb.1136: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzbl 9(%rcx), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1775 -Ltmp4571: -LBB21_1137: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 2103 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp4572: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp4573: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2103 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - testl %r11d, %r11d -Ltmp4574: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4575: - .loc 1 2103 9 ## /Users/dylan/github/ravi/src/lvm.c:2103:9 - jne LBB21_1115 -Ltmp4576: -LBB21_1138: ## in Loop: Header=BB21_1125 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4577: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4578: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4579: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp4580: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp4581: -LBB21_1139: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2114 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - andl $15, %eax - cmpl $5, %eax -Ltmp4582: - .loc 1 2114 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - je LBB21_1671 -Ltmp4583: -## %bb.1140: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rcx, %rdx -Ltmp4584: - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4585: - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - xorl %r8d, %r8d -Ltmp4586: - movq %r13, %rdi - movq %r15, %rcx -Ltmp4587: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %rbx -Ltmp4588: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - callq _luaV_finishget -Ltmp4589: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp4590: - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4591: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4592: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_1162 -Ltmp4593: -LBB21_1141: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2115 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp4594: - .loc 1 2115 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp4595: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4596: - .loc 1 2115 9 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4597: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4598: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1163 -Ltmp4599: -LBB21_1142: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4600: - .loc 1 2114 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq %r13, %rdi - movq -112(%rbp), %rdx ## 8-byte Reload - movq %r15, %rcx - movq %r10, %rbx - callq _luaV_finishget -Ltmp4601: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4602: - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4603: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4604: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1162 -Ltmp4605: - .p2align 4, 0x90 -Ltmp4606: ## Block address taken -LBB21_1143: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_1150 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2111 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2111:9 - testl $8388608, %r12d ## imm = 0x800000 - je LBB21_1602 -Ltmp4607: -## %bb.1144: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r12d, %eax -Ltmp4608: - shrl $24, %eax - movq -120(%rbp), %rcx ## 8-byte Reload - movq (%rcx,%rax,8), %rax - movq (%rax), %rsi -Ltmp4609: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 2111 9 ## /Users/dylan/github/ravi/src/lvm.c:2111:9 - shrl $16, %r12d -Ltmp4610: - .loc 1 2113 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2113:26 - andl $127, %r12d - .loc 1 2113 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2113:24 - shlq $4, %r12 - leaq (%r9,%r12), %rcx -Ltmp4611: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2114 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movzwl 8(%rsi), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp4612: - .loc 1 2114 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - jne LBB21_1139 -Ltmp4613: -## %bb.1145: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r10, %rdx - movl %r11d, %r10d -Ltmp4614: - movq %r14, %r11 -Ltmp4615: - movq %r13, %r14 - movq %r9, %r13 -Ltmp4616: - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq (%rsi), %r9 - movb 8(%r9), %al - andb $15, %al - cmpb $5, %al - jne LBB21_1672 -Ltmp4617: -## %bb.1146: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movzwl 8(%r13,%r12), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1673 -Ltmp4618: -## %bb.1147: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rcx, -112(%rbp) ## 8-byte Spill -Ltmp4619: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq (%rcx), %rdi - movb 8(%rdi), %cl - movl %ecx, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1776 -Ltmp4620: -## %bb.1148: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %cl - jne LBB21_1605 -Ltmp4621: -## %bb.1149: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 0 3 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:3 - movq %r8, %r12 -Ltmp4622: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - .loc 14 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdi), %r8d - andl 80(%r9), %r8d - shlq $5, %r8 - addq 24(%r9), %r8 -Ltmp4623: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq %r13, %r9 - movq %r14, %r13 - movq %r11, %r14 - movl %r10d, %r11d - movq %rdx, %r10 -Ltmp4624: - .p2align 4, 0x90 -LBB21_1150: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_1143 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%r8), %ecx - cmpl $32772, %ecx ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB21_1154 -Ltmp4625: -## %bb.1151: ## in Loop: Header=BB21_1150 Depth=3 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%r8), %rcx - movzbl 8(%rcx), %eax - movl %eax, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1555 -Ltmp4626: -## %bb.1152: ## in Loop: Header=BB21_1150 Depth=3 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpb $4, %al - jne LBB21_1556 -Ltmp4627: -## %bb.1153: ## in Loop: Header=BB21_1150 Depth=3 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpq %rdi, %rcx -Ltmp4628: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB21_1156 -Ltmp4629: -LBB21_1154: ## in Loop: Header=BB21_1150 Depth=3 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%r8), %rax - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rax, %rcx - shlq $5, %rcx - addq %rcx, %r8 -Ltmp4630: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rax, %rax - jne LBB21_1150 -Ltmp4631: -## %bb.1155: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 0 16 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:16 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp4632: -LBB21_1156: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - .loc 1 2114 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - cmpw $0, 8(%r8) -Ltmp4633: - .loc 1 2114 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - je LBB21_1142 -Ltmp4634: -## %bb.1157: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - movq (%r8), %rax - movq %rax, (%r15) - movzwl 8(%r8), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - js LBB21_1159 -Ltmp4635: -## %bb.1158: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4636: - jmp LBB21_1162 -Ltmp4637: - .p2align 4, 0x90 -LBB21_1159: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1870 -Ltmp4638: -## %bb.1160: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4639: - testq %r13, %r13 - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - je LBB21_1162 -Ltmp4640: -## %bb.1161: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1870 -Ltmp4641: -LBB21_1162: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 2115 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp4642: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp4643: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2115 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - testl %r11d, %r11d -Ltmp4644: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4645: - .loc 1 2115 9 ## /Users/dylan/github/ravi/src/lvm.c:2115:9 - jne LBB21_1141 -Ltmp4646: -LBB21_1163: ## in Loop: Header=BB21_1143 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4647: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4648: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4649: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp4650: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp4651: -LBB21_1164: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - andl $15, %eax - cmpl $5, %eax -Ltmp4652: - .loc 1 2122 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - je LBB21_1777 -Ltmp4653: -## %bb.1165: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4654: - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - xorl %r8d, %r8d -Ltmp4655: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r14, %r13 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq %r14, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp4656: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp4657: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 -Ltmp4658: - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4659: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r14), %r11d - andl $12, %r11d -Ltmp4660: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload - leaq _luaV_execute.dispatch_table(%rip), %r14 - jmp LBB21_1188 -Ltmp4661: -LBB21_1166: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2123 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %rbx, (%rax) -Ltmp4662: - .loc 1 2123 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp4663: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4664: - .loc 1 2123 9 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4665: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4666: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1189 -Ltmp4667: -LBB21_1167: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4668: - .loc 1 2122 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq %r13, %rdi - movq %r15, %rcx - movq %r10, %rbx -Ltmp4669: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp4670: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4671: - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4672: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4673: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1188 -Ltmp4674: - .p2align 4, 0x90 -Ltmp4675: ## Block address taken -LBB21_1168: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_1176 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2118 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2118:20 - movzbl %r12b, %eax -Ltmp4676: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movb (%rcx,%rax), %al - andb $48, %al - cmpb $32, %al - jne LBB21_1778 -Ltmp4677: -## %bb.1169: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2119 9 ## /Users/dylan/github/ravi/src/lvm.c:2119:9 - testl $8388608, %r12d ## imm = 0x800000 - je LBB21_1603 -Ltmp4678: -## %bb.1170: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %r14 - movl %r12d, %eax - shrl $24, %eax - shlq $4, %rax - leaq (%r8,%rax), %rsi -Ltmp4679: - ##DEBUG_VALUE: rb <- $rsi - .loc 1 2119 9 ## /Users/dylan/github/ravi/src/lvm.c:2119:9 - shrl $16, %r12d -Ltmp4680: - .loc 1 2121 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2121:26 - andl $127, %r12d - .loc 1 2121 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2121:24 - shlq $4, %r12 - leaq (%r9,%r12), %rdx -Ltmp4681: - ##DEBUG_VALUE: rc <- $rdx - .loc 1 2122 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movzwl 8(%r8,%rax), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp4682: - .loc 1 2122 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - jne LBB21_1164 -Ltmp4683: -## %bb.1171: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r9, %r13 -Ltmp4684: - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq (%rsi), %r9 - movb 8(%r9), %al - andb $15, %al - cmpb $5, %al - jne LBB21_1779 -Ltmp4685: -## %bb.1172: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%r13,%r12), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1780 -Ltmp4686: -## %bb.1173: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rdx), %rdi - movb 8(%rdi), %cl - movl %ecx, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1604 -Ltmp4687: -## %bb.1174: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %cl - jne LBB21_1605 -Ltmp4688: -## %bb.1175: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 3 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:3 - movq %r8, %r12 -Ltmp4689: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - .loc 14 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rdi), %r8d - andl 80(%r9), %r8d - shlq $5, %r8 - addq 24(%r9), %r8 -Ltmp4690: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq %r13, %r9 - movq %r14, %r13 - leaq _luaV_execute.dispatch_table(%rip), %r14 -Ltmp4691: - .p2align 4, 0x90 -LBB21_1176: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_1168 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%r8), %ecx - cmpl $32772, %ecx ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB21_1180 -Ltmp4692: -## %bb.1177: ## in Loop: Header=BB21_1176 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%r8), %rcx - movzbl 8(%rcx), %eax - movl %eax, %ebx - andb $15, %bl - cmpb $4, %bl - jne LBB21_1555 -Ltmp4693: -## %bb.1178: ## in Loop: Header=BB21_1176 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpb $4, %al - jne LBB21_1556 -Ltmp4694: -## %bb.1179: ## in Loop: Header=BB21_1176 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpq %rdi, %rcx -Ltmp4695: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB21_1182 -Ltmp4696: -LBB21_1180: ## in Loop: Header=BB21_1176 Depth=3 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%r8), %rax - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rax, %rcx - shlq $5, %rcx - addq %rcx, %r8 -Ltmp4697: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rax, %rax - jne LBB21_1176 -Ltmp4698: -## %bb.1181: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: luaH_getshortstr:key <- $rdi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 16 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:16 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp4699: -LBB21_1182: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - .loc 1 2122 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - cmpw $0, 8(%r8) -Ltmp4700: - .loc 1 2122 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - je LBB21_1167 -Ltmp4701: -## %bb.1183: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - movq (%r8), %rax - movq %rax, (%r15) - movzwl 8(%r8), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - js LBB21_1185 -Ltmp4702: -## %bb.1184: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4703: - jmp LBB21_1188 -Ltmp4704: - .p2align 4, 0x90 -LBB21_1185: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp4705: - cmpl %edx, %ecx - jne LBB21_1606 -Ltmp4706: -## %bb.1186: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 -Ltmp4707: - testq %r13, %r13 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - je LBB21_1188 -Ltmp4708: -## %bb.1187: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1606 -Ltmp4709: -LBB21_1188: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - .loc 1 2123 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - movq %r10, %rbx - addq $4, %rbx -Ltmp4710: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl (%r10), %r12d -Ltmp4711: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2123 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - testl %r11d, %r11d -Ltmp4712: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4713: - .loc 1 2123 9 ## /Users/dylan/github/ravi/src/lvm.c:2123:9 - jne LBB21_1166 -Ltmp4714: -LBB21_1189: ## in Loop: Header=BB21_1168 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4715: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4716: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4717: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %eax, %ecx - movq %rbx, %r10 -Ltmp4718: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - jmpq *(%r14,%rcx,8) -Ltmp4719: -LBB21_1190: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: v <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2144 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2144:13 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp4720: - movq %r10, (%rax) -Ltmp4721: - .loc 1 2144 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2144:13 - movq %r13, %rdi - movq %r12, %rdx - movq %r15, %rcx - movq %r10, %rbx -Ltmp4722: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - callq _luaV_finishget -Ltmp4723: - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4724: - .loc 1 2144 13 ## /Users/dylan/github/ravi/src/lvm.c:2144:13 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4725: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4726: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - jmp LBB21_1217 -Ltmp4727: -LBB21_1191: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2147 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4728: - .loc 1 2147 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4729: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4730: - .loc 1 2147 9 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4731: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4732: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1218 -Ltmp4733: - .p2align 4, 0x90 -Ltmp4734: ## Block address taken -LBB21_1192: ## Parent Loop BB21_2 Depth=1 - ## => This Loop Header: Depth=2 - ## Child Loop BB21_1205 Depth 3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2131 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2131:20 - movzbl %r12b, %ecx - movq _luaP_opmodes@GOTPCREL(%rip), %rdx - movb (%rdx,%rcx), %cl - andb $48, %cl - cmpb $32, %cl - jne LBB21_1607 -Ltmp4735: -## %bb.1193: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $24, %ecx - shlq $4, %rcx - leaq (%r8,%rcx), %rsi -Ltmp4736: - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: io2 <- $rsi - .loc 1 2132 16 ## /Users/dylan/github/ravi/src/lvm.c:2132:16 - cmpl $109, %eax -Ltmp4737: - .loc 1 2132 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2132:13 - jne LBB21_1198 -Ltmp4738: -## %bb.1194: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2132 44 ## /Users/dylan/github/ravi/src/lvm.c:2132:44 - movq (%rsi), %rax -Ltmp4739: - movq %rax, 16(%r15) - movzwl 8(%r8,%rcx), %edx - movw %dx, 24(%r15) - testw %dx, %dx - jns LBB21_1198 -Ltmp4740: -## %bb.1195: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %edx - movzbl 8(%rax), %edi - cmpl %edi, %edx - jne LBB21_1716 -Ltmp4741: -## %bb.1196: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 44 ## /Users/dylan/github/ravi/src/lvm.c:0:44 - testq %r13, %r13 - .loc 1 2132 44 ## /Users/dylan/github/ravi/src/lvm.c:2132:44 - je LBB21_1198 -Ltmp4742: -## %bb.1197: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rdx ## 8-byte Reload - movq (%rdx), %rdx - movb 84(%rdx), %dl - xorb $3, %dl - testb %al, %dl - je LBB21_1716 -Ltmp4743: - .p2align 4, 0x90 -LBB21_1198: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2134 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2134:11 - testl $8388608, %r12d ## imm = 0x800000 - je LBB21_1608 -Ltmp4744: -## %bb.1199: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $16, %r12d -Ltmp4745: - .loc 1 2135 28 ## /Users/dylan/github/ravi/src/lvm.c:2135:28 - andl $127, %r12d - .loc 1 2135 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2135:26 - shlq $4, %r12 - .loc 1 2136 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2136:26 - movzwl 8(%r9,%r12), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB21_1674 -Ltmp4746: -## %bb.1200: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - addq %r9, %r12 -Ltmp4747: - ##DEBUG_VALUE: rc <- $r12 - .loc 1 2136 26 ## /Users/dylan/github/ravi/src/lvm.c:2136:26 - movq (%r12), %rax -Ltmp4748: - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: luaH_getshortstr:key <- $rax - movb 8(%rax), %bl - movl %ebx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB21_1675 -Ltmp4749: -## %bb.1201: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2137 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2137:11 - cmpb $4, %bl - jne LBB21_1676 -Ltmp4750: -## %bb.1202: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2138 22 ## /Users/dylan/github/ravi/src/lvm.c:2138:22 - movzwl 8(%r8,%rcx), %ecx - andl $15, %ecx - cmpl $5, %ecx - jne LBB21_1677 -Ltmp4751: -## %bb.1203: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rsi), %rcx -Ltmp4752: - ##DEBUG_VALUE: h <- $rcx - movb 8(%rcx), %dl - andb $15, %dl - cmpb $5, %dl - jne LBB21_1678 -Ltmp4753: -## %bb.1204: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $rcx - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - movq %r8, %rdi -Ltmp4754: - .loc 14 85 13 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%rax), %r8d -Ltmp4755: - andl 80(%rcx), %r8d - shlq $5, %r8 - addq 24(%rcx), %r8 -Ltmp4756: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .p2align 4, 0x90 -LBB21_1205: ## Parent Loop BB21_2 Depth=1 - ## Parent Loop BB21_1192 Depth=2 - ## => This Inner Loop Header: Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: h <- $rcx - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%r8), %ecx -Ltmp4757: - cmpl $32772, %ecx ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB21_1209 -Ltmp4758: -## %bb.1206: ## in Loop: Header=BB21_1205 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%r8), %rcx - movzbl 8(%rcx), %ebx - movl %ebx, %edx - andb $15, %dl - cmpb $4, %dl - jne LBB21_1555 -Ltmp4759: -## %bb.1207: ## in Loop: Header=BB21_1205 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpb $4, %bl - jne LBB21_1556 -Ltmp4760: -## %bb.1208: ## in Loop: Header=BB21_1205 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpq %rax, %rcx -Ltmp4761: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB21_1211 -Ltmp4762: -LBB21_1209: ## in Loop: Header=BB21_1205 Depth=3 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r8 - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%r8), %rcx - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %rcx, %rdx - shlq $5, %rdx - addq %rdx, %r8 -Ltmp4763: - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %rcx, %rcx - jne LBB21_1205 -Ltmp4764: -## %bb.1210: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaH_getshortstr:n <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 0 16 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:16 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp4765: -LBB21_1211: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: v <- $r8 - .loc 1 2140 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2140:15 - cmpw $0, 8(%r8) -Ltmp4766: - .loc 1 2140 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2140:15 - je LBB21_1190 -Ltmp4767: -## %bb.1212: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: v <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2141 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2141:13 - movq (%r8), %rax -Ltmp4768: - movq %rax, (%r15) - movzwl 8(%r8), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - js LBB21_1214 -Ltmp4769: -## %bb.1213: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: v <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %rdi, %r8 -Ltmp4770: - jmp LBB21_1217 -Ltmp4771: - .p2align 4, 0x90 -LBB21_1214: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: v <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2141 13 ## /Users/dylan/github/ravi/src/lvm.c:2141:13 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1679 -Ltmp4772: -## %bb.1215: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: v <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %rdi, %r8 -Ltmp4773: - testq %r13, %r13 - .loc 1 2141 13 ## /Users/dylan/github/ravi/src/lvm.c:2141:13 - je LBB21_1217 -Ltmp4774: -## %bb.1216: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movb 9(%rax), %al - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB21_1679 -Ltmp4775: -LBB21_1217: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2147 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - movl (%r10), %r12d -Ltmp4776: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - addq $4, %r10 -Ltmp4777: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2147 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - testl %r11d, %r11d -Ltmp4778: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4779: - .loc 1 2147 9 ## /Users/dylan/github/ravi/src/lvm.c:2147:9 - jne LBB21_1191 -Ltmp4780: -LBB21_1218: ## in Loop: Header=BB21_1192 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4781: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4782: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4783: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4784: -LBB21_1219: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2155 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4785: - .loc 1 2155 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4786: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4787: - .loc 1 2155 9 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4788: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4789: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1227 -Ltmp4790: - .p2align 4, 0x90 -Ltmp4791: ## Block address taken -LBB21_1220: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2150 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2150:22 - movzbl %r12b, %eax -Ltmp4792: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1609 -Ltmp4793: -## %bb.1221: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2151 22 ## /Users/dylan/github/ravi/src/lvm.c:2151:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1610 -Ltmp4794: -## %bb.1222: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %eax - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rax - addq %r8, %rax - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rax -Ltmp4795: - ##DEBUG_VALUE: rc <- $rax - .loc 1 2152 27 ## /Users/dylan/github/ravi/src/lvm.c:2152:27 - movzwl 8(%rax), %ecx - cmpl $19, %ecx - jne LBB21_1611 -Ltmp4796: -## %bb.1223: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - shrl $24, %r12d -Ltmp4797: - .loc 1 2153 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2153:20 - shlq $4, %r12 - movzwl 8(%r8,%r12), %ecx - andl $15, %ecx - cmpl $5, %ecx - jne LBB21_1717 -Ltmp4798: -## %bb.1224: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r8,%r12), %rcx -Ltmp4799: - ##DEBUG_VALUE: t <- $rcx - movzbl 8(%rcx), %edx - andb $15, %dl - cmpb $5, %dl - jne LBB21_1718 -Ltmp4800: -## %bb.1225: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:20 - movl (%rax), %eax -Ltmp4801: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: idx <- $rax - .loc 1 2154 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2154:9 - cmpl %eax, 64(%rcx) -Ltmp4802: - .loc 1 2154 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2154:9 - jbe LBB21_1680 -Ltmp4803: -## %bb.1226: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rcx), %rcx -Ltmp4804: - ##DEBUG_VALUE: data <- $rcx - .loc 1 2154 9 ## /Users/dylan/github/ravi/src/lvm.c:2154:9 - movq (%rcx,%rax,8), %rax -Ltmp4805: - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp4806: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2155 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4807: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2155 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - testl %r11d, %r11d -Ltmp4808: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4809: - .loc 1 2155 9 ## /Users/dylan/github/ravi/src/lvm.c:2155:9 - jne LBB21_1219 -Ltmp4810: -LBB21_1227: ## in Loop: Header=BB21_1220 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4811: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4812: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4813: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4814: -LBB21_1228: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2163 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4815: - .loc 1 2163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4816: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4817: - .loc 1 2163 9 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4818: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4819: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1236 -Ltmp4820: - .p2align 4, 0x90 -Ltmp4821: ## Block address taken -LBB21_1229: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2158 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2158:22 - movzbl %r12b, %eax -Ltmp4822: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - movl %eax, %ecx - andl $48, %ecx - cmpl $32, %ecx - jne LBB21_1681 -Ltmp4823: -## %bb.1230: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2159 22 ## /Users/dylan/github/ravi/src/lvm.c:2159:22 - andl $12, %eax - cmpl $12, %eax - jne LBB21_1682 -Ltmp4824: -## %bb.1231: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %eax - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rax - addq %r8, %rax - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rax -Ltmp4825: - ##DEBUG_VALUE: rc <- $rax - .loc 1 2160 27 ## /Users/dylan/github/ravi/src/lvm.c:2160:27 - movzwl 8(%rax), %ecx - cmpl $19, %ecx - jne LBB21_1683 -Ltmp4826: -## %bb.1232: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - shrl $24, %r12d -Ltmp4827: - .loc 1 2161 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2161:20 - shlq $4, %r12 - movzwl 8(%r8,%r12), %ecx - andl $15, %ecx - cmpl $5, %ecx - jne LBB21_1684 -Ltmp4828: -## %bb.1233: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r8,%r12), %rcx -Ltmp4829: - ##DEBUG_VALUE: t <- $rcx - movzbl 8(%rcx), %edx - andb $15, %dl - cmpb $5, %dl - jne LBB21_1685 -Ltmp4830: -## %bb.1234: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 20 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:20 - movl (%rax), %eax -Ltmp4831: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: idx <- $rax - .loc 1 2162 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2162:9 - cmpl %eax, 64(%rcx) -Ltmp4832: - .loc 1 2162 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2162:9 - jbe LBB21_1686 -Ltmp4833: -## %bb.1235: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rcx), %rcx -Ltmp4834: - ##DEBUG_VALUE: data <- $rcx - .loc 1 2162 9 ## /Users/dylan/github/ravi/src/lvm.c:2162:9 - movq (%rcx,%rax,8), %rax -Ltmp4835: - movq %rax, (%r15) - movw $3, 8(%r15) -Ltmp4836: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2163 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4837: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2163 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - testl %r11d, %r11d -Ltmp4838: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4839: - .loc 1 2163 9 ## /Users/dylan/github/ravi/src/lvm.c:2163:9 - jne LBB21_1228 -Ltmp4840: -LBB21_1236: ## in Loop: Header=BB21_1229 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4841: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp4842: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4843: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4844: -LBB21_1237: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2180 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4845: - .loc 1 2180 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4846: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4847: - .loc 1 2180 9 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4848: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4849: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1259 -Ltmp4850: - .p2align 4, 0x90 -Ltmp4851: ## Block address taken -LBB21_1238: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2166 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2166:20 - movzwl 8(%r15), %eax -Ltmp4852: - andl $15, %eax - cmpl $5, %eax - jne LBB21_1687 -Ltmp4853: -## %bb.1239: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rbx -Ltmp4854: - ##DEBUG_VALUE: t <- $rbx - movzbl 8(%rbx), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1688 -Ltmp4855: -## %bb.1240: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2167 22 ## /Users/dylan/github/ravi/src/lvm.c:2167:22 - movzbl %r12b, %eax - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1689 -Ltmp4856: -## %bb.1241: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4857: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2168 22 ## /Users/dylan/github/ravi/src/lvm.c:2168:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1690 -Ltmp4858: -## %bb.1242: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %edi - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rdi - addq %r8, %rdi - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rdi -Ltmp4859: - ##DEBUG_VALUE: rc <- $rdi - .loc 1 2169 27 ## /Users/dylan/github/ravi/src/lvm.c:2169:27 - movzwl 8(%rax), %ecx - cmpl $19, %ecx - jne LBB21_1781 -Ltmp4860: -## %bb.1243: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - movq %r13, %r15 -Ltmp4861: - movq %r8, %r13 -Ltmp4862: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - .loc 1 2169 27 ## /Users/dylan/github/ravi/src/lvm.c:2169:27 - movl (%rax), %r14d -Ltmp4863: - ##DEBUG_VALUE: idx <- $r14 - .loc 1 2170 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2170:13 - movzwl 8(%rdi), %eax -Ltmp4864: - .loc 1 2170 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2170:13 - cmpl $3, %eax - je LBB21_1247 -Ltmp4865: -## %bb.1244: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $19, %eax - jne LBB21_1250 -Ltmp4866: -## %bb.1245: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2170 32 ## /Users/dylan/github/ravi/src/lvm.c:2170:32 - cmpl %r14d, 64(%rbx) -Ltmp4867: - .loc 1 2170 32 ## /Users/dylan/github/ravi/src/lvm.c:2170:32 - jbe LBB21_1253 -Ltmp4868: -## %bb.1246: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rbx), %rax -Ltmp4869: - ##DEBUG_VALUE: data <- $rax - .loc 1 2170 32 ## /Users/dylan/github/ravi/src/lvm.c:2170:32 - movq (%rdi), %rcx - jmp LBB21_1249 -Ltmp4870: - .p2align 4, 0x90 -LBB21_1247: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2172 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2172:11 - cmpl %r14d, 64(%rbx) -Ltmp4871: - .loc 1 2172 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2172:11 - jbe LBB21_1254 -Ltmp4872: -## %bb.1248: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rbx), %rax -Ltmp4873: - ##DEBUG_VALUE: data <- $rax - .loc 1 2172 11 ## /Users/dylan/github/ravi/src/lvm.c:2172:11 - cvttsd2si (%rdi), %rcx -Ltmp4874: -LBB21_1249: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %rcx, (%rax,%r14,8) - jmp LBB21_1258 -Ltmp4875: - .p2align 4, 0x90 -LBB21_1250: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp4876: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp4877: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - leaq -272(%rbp), %rsi -Ltmp4878: - ##DEBUG_VALUE: j <- [DW_OP_constu 272, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2176 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2176:15 - xorl %edx, %edx - callq _luaV_tointeger -Ltmp4879: - testl %eax, %eax -Ltmp4880: - .loc 1 2176 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2176:15 - je LBB21_1871 -Ltmp4881: -## %bb.1251: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 272, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2176 36 ## /Users/dylan/github/ravi/src/lvm.c:2176:36 - cmpl %r14d, 64(%rbx) -Ltmp4882: - .loc 1 2176 36 ## /Users/dylan/github/ravi/src/lvm.c:2176:36 - jbe LBB21_1256 -Ltmp4883: -## %bb.1252: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: j <- [DW_OP_constu 272, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%rbx), %rax -Ltmp4884: - ##DEBUG_VALUE: data <- $rax - .loc 1 2176 36 ## /Users/dylan/github/ravi/src/lvm.c:2176:36 - movq -272(%rbp), %rcx -Ltmp4885: - ##DEBUG_VALUE: j <- $rcx - movq %rcx, (%rax,%r14,8) - jmp LBB21_1257 -Ltmp4886: -LBB21_1253: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2170 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2170:32 - movq (%rdi), %rcx - jmp LBB21_1255 -Ltmp4887: -LBB21_1254: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2172 11 ## /Users/dylan/github/ravi/src/lvm.c:2172:11 - cvttsd2si (%rdi), %rcx -Ltmp4888: -LBB21_1255: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r15, %rdi -Ltmp4889: - movq %rbx, %rsi - movq %r14, %rdx - movq %r10, %rbx -Ltmp4890: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %r11d, %r14d -Ltmp4891: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - callq _raviH_set_int -Ltmp4892: - movl %r14d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_1258 -Ltmp4893: -LBB21_1256: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: j <- [DW_OP_constu 272, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2176 36 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2176:36 - movq -272(%rbp), %rcx -Ltmp4894: - ##DEBUG_VALUE: j <- $rcx - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _raviH_set_int -Ltmp4895: -LBB21_1257: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 36 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:36 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp4896: -LBB21_1258: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2180 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4897: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2180 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - testl %r11d, %r11d -Ltmp4898: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r13, %r8 - movq %r15, %r13 -Ltmp4899: - .loc 1 2180 9 ## /Users/dylan/github/ravi/src/lvm.c:2180:9 - jne LBB21_1237 -Ltmp4900: -LBB21_1259: ## in Loop: Header=BB21_1238 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4901: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4902: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4903: -LBB21_1260: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2188 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4904: - .loc 1 2188 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4905: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4906: - .loc 1 2188 9 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4907: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4908: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1272 -Ltmp4909: - .p2align 4, 0x90 -Ltmp4910: ## Block address taken -LBB21_1261: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2183 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2183:20 - movzwl 8(%r15), %eax -Ltmp4911: - andl $15, %eax - cmpl $5, %eax - jne LBB21_1782 -Ltmp4912: -## %bb.1262: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rsi -Ltmp4913: - ##DEBUG_VALUE: t <- $rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1783 -Ltmp4914: -## %bb.1263: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2184 22 ## /Users/dylan/github/ravi/src/lvm.c:2184:22 - movzbl %r12b, %eax - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1784 -Ltmp4915: -## %bb.1264: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4916: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2185 22 ## /Users/dylan/github/ravi/src/lvm.c:2185:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1785 -Ltmp4917: -## %bb.1265: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp4918: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2186 27 ## /Users/dylan/github/ravi/src/lvm.c:2186:27 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1612 -Ltmp4919: -## %bb.1266: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rax), %rax -Ltmp4920: - .loc 1 2186 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2186:21 - movl %eax, %edx -Ltmp4921: - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2187 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - cmpl %eax, 64(%rsi) -Ltmp4922: - .loc 1 2187 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - movzwl 8(%rcx), %eax -Ltmp4923: - movzwl %ax, %eax -Ltmp4924: - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - jbe LBB21_1269 -Ltmp4925: -## %bb.1267: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - cmpl $19, %eax - jne LBB21_1613 -Ltmp4926: -## %bb.1268: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - movq 56(%rsi), %rax -Ltmp4927: - ##DEBUG_VALUE: data <- $rax - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - movq (%rcx), %rcx -Ltmp4928: - movq %rcx, (%rax,%rdx,8) - jmp LBB21_1271 -Ltmp4929: - .p2align 4, 0x90 -LBB21_1269: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $19, %eax -Ltmp4930: - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - jne LBB21_1613 -Ltmp4931: -## %bb.1270: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r8, %r12 -Ltmp4932: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - movl %r11d, %r15d -Ltmp4933: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r10, %rbx -Ltmp4934: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - movq (%rcx), %rcx -Ltmp4935: - movq %r13, %rdi - callq _raviH_set_int -Ltmp4936: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r15d, %r11d - movq %r12, %r8 -Ltmp4937: -LBB21_1271: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2188 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4938: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2188 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - testl %r11d, %r11d -Ltmp4939: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp4940: - .loc 1 2188 9 ## /Users/dylan/github/ravi/src/lvm.c:2188:9 - jne LBB21_1260 -Ltmp4941: -LBB21_1272: ## in Loop: Header=BB21_1261 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4942: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp4943: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp4944: -LBB21_1273: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2205 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp4945: - .loc 1 2205 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp4946: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp4947: - .loc 1 2205 9 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp4948: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp4949: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1294 -Ltmp4950: - .p2align 4, 0x90 -Ltmp4951: ## Block address taken -LBB21_1274: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2191 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2191:20 - movzwl 8(%r15), %eax -Ltmp4952: - andl $15, %eax - cmpl $5, %eax - jne LBB21_1872 -Ltmp4953: -## %bb.1275: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rbx -Ltmp4954: - ##DEBUG_VALUE: t <- $rbx - movzbl 8(%rbx), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1873 -Ltmp4955: -## %bb.1276: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2192 22 ## /Users/dylan/github/ravi/src/lvm.c:2192:22 - movzbl %r12b, %eax - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1874 -Ltmp4956: -## %bb.1277: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp4957: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2193 22 ## /Users/dylan/github/ravi/src/lvm.c:2193:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1875 -Ltmp4958: -## %bb.1278: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %ecx - shrl $16, %ecx - movzbl %cl, %edi - ## kill: def $ecx killed $ecx def $rcx - andl $127, %ecx - shlq $4, %rcx - addq %r9, %rcx - shlq $4, %rdi - addq %r8, %rdi - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rcx, %rdi -Ltmp4959: - ##DEBUG_VALUE: rc <- $rdi - .loc 1 2194 27 ## /Users/dylan/github/ravi/src/lvm.c:2194:27 - movzwl 8(%rax), %ecx - cmpl $19, %ecx - jne LBB21_1876 -Ltmp4960: -## %bb.1279: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - movq %r13, %r15 -Ltmp4961: - movq %r8, %r13 -Ltmp4962: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - .loc 1 2194 27 ## /Users/dylan/github/ravi/src/lvm.c:2194:27 - movl (%rax), %r14d -Ltmp4963: - ##DEBUG_VALUE: idx <- $r14 - .loc 1 2195 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2195:13 - movzwl 8(%rdi), %eax -Ltmp4964: - .loc 1 2195 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2195:13 - cmpl $19, %eax - je LBB21_1283 -Ltmp4965: -## %bb.1280: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB21_1285 -Ltmp4966: -## %bb.1281: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2195 30 ## /Users/dylan/github/ravi/src/lvm.c:2195:30 - cmpl %r14d, 64(%rbx) -Ltmp4967: - .loc 1 2195 30 ## /Users/dylan/github/ravi/src/lvm.c:2195:30 - jbe LBB21_1288 -Ltmp4968: -## %bb.1282: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rbx), %rax -Ltmp4969: - ##DEBUG_VALUE: data <- $rax - .loc 1 2195 30 ## /Users/dylan/github/ravi/src/lvm.c:2195:30 - movq (%rdi), %rcx - movq %rcx, (%rax,%r14,8) - jmp LBB21_1293 -Ltmp4970: - .p2align 4, 0x90 -LBB21_1283: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2197 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2197:11 - cmpl %r14d, 64(%rbx) -Ltmp4971: - .loc 1 2197 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2197:11 - jbe LBB21_1289 -Ltmp4972: -## %bb.1284: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq 56(%rbx), %rax -Ltmp4973: - ##DEBUG_VALUE: data <- $rax - .loc 1 2197 11 ## /Users/dylan/github/ravi/src/lvm.c:2197:11 - cvtsi2sdq (%rdi), %xmm0 - movsd %xmm0, (%rax,%r14,8) - jmp LBB21_1293 -Ltmp4974: - .p2align 4, 0x90 -LBB21_1285: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movl %r11d, -68(%rbp) ## 4-byte Spill -Ltmp4975: - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - movq %r10, %r12 -Ltmp4976: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - leaq -264(%rbp), %rsi -Ltmp4977: - ##DEBUG_VALUE: j <- [DW_OP_constu 264, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2201 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2201:15 - callq _luaV_tonumber_ -Ltmp4978: - testl %eax, %eax -Ltmp4979: - .loc 1 2201 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2201:15 - je LBB21_1786 -Ltmp4980: -## %bb.1286: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 264, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - .loc 1 2201 35 ## /Users/dylan/github/ravi/src/lvm.c:2201:35 - cmpl %r14d, 64(%rbx) -Ltmp4981: - .loc 1 2201 35 ## /Users/dylan/github/ravi/src/lvm.c:2201:35 - jbe LBB21_1291 -Ltmp4982: -## %bb.1287: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: j <- [DW_OP_constu 264, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq 56(%rbx), %rax -Ltmp4983: - ##DEBUG_VALUE: data <- $rax - .loc 1 2201 35 ## /Users/dylan/github/ravi/src/lvm.c:2201:35 - movq -264(%rbp), %rcx - movq %rcx, (%rax,%r14,8) - jmp LBB21_1292 -Ltmp4984: -LBB21_1288: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2195 30 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2195:30 - movsd (%rdi), %xmm0 ## xmm0 = mem[0],zero - jmp LBB21_1290 -Ltmp4985: -LBB21_1289: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2197 11 ## /Users/dylan/github/ravi/src/lvm.c:2197:11 - cvtsi2sdq (%rdi), %xmm0 -Ltmp4986: -LBB21_1290: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r15, %rdi -Ltmp4987: - movq %rbx, %rsi - movq %r14, %rdx - movq %r10, %rbx -Ltmp4988: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - movl %r11d, %r14d -Ltmp4989: - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - callq _raviH_set_float -Ltmp4990: - movl %r14d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload - jmp LBB21_1293 -Ltmp4991: -LBB21_1291: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: j <- [DW_OP_constu 264, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2201 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2201:35 - movsd -264(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp4992: - ##DEBUG_VALUE: j <- $xmm0 - movq %r15, %rdi - movq %rbx, %rsi - movq %r14, %rdx - callq _raviH_set_float -Ltmp4993: -LBB21_1292: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ukey <- $r14d - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 35 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:35 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %r12, %r10 - movl -68(%rbp), %r11d ## 4-byte Reload -Ltmp4994: -LBB21_1293: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2205 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp4995: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2205 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - testl %r11d, %r11d -Ltmp4996: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d - leaq _luaV_execute.dispatch_table(%rip), %r14 - movq %r13, %r8 - movq %r15, %r13 -Ltmp4997: - .loc 1 2205 9 ## /Users/dylan/github/ravi/src/lvm.c:2205:9 - jne LBB21_1273 -Ltmp4998: -LBB21_1294: ## in Loop: Header=BB21_1274 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp4999: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5000: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5001: -LBB21_1295: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2213 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5002: - .loc 1 2213 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5003: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5004: - .loc 1 2213 9 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5005: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5006: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1307 -Ltmp5007: - .p2align 4, 0x90 -Ltmp5008: ## Block address taken -LBB21_1296: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2208 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2208:20 - movzwl 8(%r15), %eax -Ltmp5009: - andl $15, %eax - cmpl $5, %eax - jne LBB21_1614 -Ltmp5010: -## %bb.1297: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rsi -Ltmp5011: - ##DEBUG_VALUE: t <- $rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $5, %al - jne LBB21_1615 -Ltmp5012: -## %bb.1298: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2209 22 ## /Users/dylan/github/ravi/src/lvm.c:2209:22 - movzbl %r12b, %eax - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1616 -Ltmp5013: -## %bb.1299: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5014: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2210 22 ## /Users/dylan/github/ravi/src/lvm.c:2210:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1617 -Ltmp5015: -## %bb.1300: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5016: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2211 27 ## /Users/dylan/github/ravi/src/lvm.c:2211:27 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1618 -Ltmp5017: -## %bb.1301: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rax), %rax -Ltmp5018: - .loc 1 2211 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2211:21 - movl %eax, %edx -Ltmp5019: - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2212 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - cmpl %eax, 64(%rsi) -Ltmp5020: - .loc 1 2212 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - movzwl 8(%rcx), %eax -Ltmp5021: - movzwl %ax, %eax -Ltmp5022: - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - jbe LBB21_1304 -Ltmp5023: -## %bb.1302: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - cmpl $3, %eax - jne LBB21_1719 -Ltmp5024: -## %bb.1303: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - movq 56(%rsi), %rax -Ltmp5025: - ##DEBUG_VALUE: data <- $rax - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - movq (%rcx), %rcx -Ltmp5026: - movq %rcx, (%rax,%rdx,8) - jmp LBB21_1306 -Ltmp5027: - .p2align 4, 0x90 -LBB21_1304: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - cmpl $3, %eax -Ltmp5028: - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - jne LBB21_1719 -Ltmp5029: -## %bb.1305: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r8, %r12 -Ltmp5030: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - movl %r11d, %r15d -Ltmp5031: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r10, %rbx -Ltmp5032: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - movsd (%rcx), %xmm0 ## xmm0 = mem[0],zero - movq %r13, %rdi - callq _raviH_set_float -Ltmp5033: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r15d, %r11d - movq %r12, %r8 -Ltmp5034: -LBB21_1306: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2213 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5035: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2213 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - testl %r11d, %r11d -Ltmp5036: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5037: - .loc 1 2213 9 ## /Users/dylan/github/ravi/src/lvm.c:2213:9 - jne LBB21_1295 -Ltmp5038: -LBB21_1307: ## in Loop: Header=BB21_1296 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5039: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5040: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5041: -LBB21_1308: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp5042: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - movl %r11d, %r13d -Ltmp5043: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r10, %rbx -Ltmp5044: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -256(%rbp), %rsi -Ltmp5045: - ##DEBUG_VALUE: ia <- [DW_OP_constu 256, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2217 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2217:13 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp5046: - testl %eax, %eax -Ltmp5047: - .loc 1 2217 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2217:13 - je LBB21_1619 -Ltmp5048: -## %bb.1309: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ia <- [DW_OP_constu 256, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2219 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2219:11 - movq -256(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r13d, %r11d - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5049: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_1313 -Ltmp5050: -LBB21_1310: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2225 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5051: - .loc 1 2225 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5052: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5053: - .loc 1 2225 9 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5054: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5055: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1317 -Ltmp5056: - .p2align 4, 0x90 -Ltmp5057: ## Block address taken -LBB21_1311: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2217 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2217:13 - movzwl 8(%r15), %eax -Ltmp5058: - cmpl $19, %eax -Ltmp5059: - .loc 1 2217 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2217:13 - jne LBB21_1308 -Ltmp5060: -## %bb.1312: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2217 13 ## /Users/dylan/github/ravi/src/lvm.c:2217:13 - movq (%r15), %rax -Ltmp5061: - ##DEBUG_VALUE: ia <- $rax - movq %rax, -256(%rbp) -Ltmp5062: -LBB21_1313: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: ia <- $rax - .loc 1 2218 34 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2218:34 - shrl $24, %r12d -Ltmp5063: - .loc 1 2218 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2218:23 - movq -120(%rbp), %rcx ## 8-byte Reload - movq (%rcx,%r12,8), %rsi -Ltmp5064: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2219 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2219:11 - movq (%rsi), %rcx -Ltmp5065: - ##DEBUG_VALUE: io <- $rcx - movq %rax, (%rcx) - movw $19, 8(%rcx) -Ltmp5066: - .loc 1 2220 11 ## /Users/dylan/github/ravi/src/lvm.c:2220:11 - movq (%rsi), %rax -Ltmp5067: - cmpw $0, 8(%rax) - jns LBB21_1316 -Ltmp5068: -## %bb.1314: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_1316 -Ltmp5069: -## %bb.1315: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r10, %rbx - movl %r11d, %r15d -Ltmp5070: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 - .loc 1 2220 11 ## /Users/dylan/github/ravi/src/lvm.c:2220:11 - callq _luaC_upvalbarrier_ -Ltmp5071: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5072: - .p2align 4, 0x90 -LBB21_1316: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2225 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5073: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2225 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - testl %r11d, %r11d -Ltmp5074: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5075: - .loc 1 2225 9 ## /Users/dylan/github/ravi/src/lvm.c:2225:9 - jne LBB21_1310 -Ltmp5076: -LBB21_1317: ## in Loop: Header=BB21_1311 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5077: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5078: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5079: -LBB21_1318: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp5080: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - movl %r11d, %r13d -Ltmp5081: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r10, %rbx -Ltmp5082: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -248(%rbp), %rsi -Ltmp5083: - ##DEBUG_VALUE: na <- [DW_OP_constu 248, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2229 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2229:13 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp5084: - testl %eax, %eax -Ltmp5085: - .loc 1 2229 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2229:13 - je LBB21_1691 -Ltmp5086: -## %bb.1319: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: na <- [DW_OP_constu 248, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2231 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2231:11 - movq -248(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r13d, %r11d - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5087: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq -80(%rbp), %r8 ## 8-byte Reload - jmp LBB21_1323 -Ltmp5088: -LBB21_1320: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2237 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5089: - .loc 1 2237 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5090: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5091: - .loc 1 2237 9 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5092: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5093: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1327 -Ltmp5094: - .p2align 4, 0x90 -Ltmp5095: ## Block address taken -LBB21_1321: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2229 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2229:13 - movzwl 8(%r15), %eax -Ltmp5096: - cmpl $3, %eax -Ltmp5097: - .loc 1 2229 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2229:13 - jne LBB21_1318 -Ltmp5098: -## %bb.1322: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2229 13 ## /Users/dylan/github/ravi/src/lvm.c:2229:13 - movq (%r15), %rax - movq %rax, -248(%rbp) -Ltmp5099: -LBB21_1323: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2230 34 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2230:34 - shrl $24, %r12d -Ltmp5100: - .loc 1 2230 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2230:23 - movq -120(%rbp), %rcx ## 8-byte Reload - movq (%rcx,%r12,8), %rsi -Ltmp5101: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2231 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2231:11 - movq (%rsi), %rcx -Ltmp5102: - ##DEBUG_VALUE: io <- $rcx - movq %rax, (%rcx) - movw $3, 8(%rcx) -Ltmp5103: - .loc 1 2232 11 ## /Users/dylan/github/ravi/src/lvm.c:2232:11 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB21_1326 -Ltmp5104: -## %bb.1324: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_1326 -Ltmp5105: -## %bb.1325: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq %r13, %rdi - movq %r10, %rbx - movl %r11d, %r15d -Ltmp5106: - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r8, %r12 - .loc 1 2232 11 ## /Users/dylan/github/ravi/src/lvm.c:2232:11 - callq _luaC_upvalbarrier_ -Ltmp5107: - .loc 1 0 11 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5108: - .p2align 4, 0x90 -LBB21_1326: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2237 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5109: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2237 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - testl %r11d, %r11d -Ltmp5110: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5111: - .loc 1 2237 9 ## /Users/dylan/github/ravi/src/lvm.c:2237:9 - jne LBB21_1320 -Ltmp5112: -LBB21_1327: ## in Loop: Header=BB21_1321 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5113: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5114: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5115: -LBB21_1328: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2247 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5116: - .loc 1 2247 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5117: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5118: - .loc 1 2247 9 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5119: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5120: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1338 -Ltmp5121: - .p2align 4, 0x90 -Ltmp5122: ## Block address taken -LBB21_1329: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2240 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2240:14 - movzwl 8(%r15), %eax -Ltmp5123: - cmpl $32789, %eax ## imm = 0x8015 -Ltmp5124: - .loc 1 2240 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2240:13 - jne LBB21_1692 -Ltmp5125: -## %bb.1330: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2244 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2244:32 - shrl $24, %r12d -Ltmp5126: - .loc 1 2244 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2244:21 - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax,%r12,8), %rsi -Ltmp5127: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2245 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2245:9 - movq (%rsi), %rdx -Ltmp5128: - ##DEBUG_VALUE: io1 <- $rdx - movq (%r15), %rax - movq %rax, (%rdx) - movzwl 8(%r15), %ecx - movw %cx, 8(%rdx) - testw %cx, %cx - jns LBB21_1334 -Ltmp5129: -## %bb.1331: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $rdx - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp5130: - cmpl %edx, %ecx - jne LBB21_1693 -Ltmp5131: -## %bb.1332: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 2245 9 ## /Users/dylan/github/ravi/src/lvm.c:2245:9 - je LBB21_1334 -Ltmp5132: -## %bb.1333: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1693 -Ltmp5133: -LBB21_1334: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2246 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2246:9 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB21_1337 -Ltmp5134: -## %bb.1335: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_1337 -Ltmp5135: -## %bb.1336: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %rdi - movq %r10, %rbx -Ltmp5136: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r15d -Ltmp5137: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r8, %r12 -Ltmp5138: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2246 9 ## /Users/dylan/github/ravi/src/lvm.c:2246:9 - callq _luaC_upvalbarrier_ -Ltmp5139: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5140: - .p2align 4, 0x90 -LBB21_1337: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2247 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5141: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2247 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - testl %r11d, %r11d -Ltmp5142: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5143: - .loc 1 2247 9 ## /Users/dylan/github/ravi/src/lvm.c:2247:9 - jne LBB21_1328 -Ltmp5144: -LBB21_1338: ## in Loop: Header=BB21_1329 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5145: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5146: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5147: -LBB21_1339: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2257 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5148: - .loc 1 2257 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5149: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5150: - .loc 1 2257 9 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5151: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5152: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1349 -Ltmp5153: - .p2align 4, 0x90 -Ltmp5154: ## Block address taken -LBB21_1340: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2250 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2250:14 - movzwl 8(%r15), %eax -Ltmp5155: - cmpl $32805, %eax ## imm = 0x8025 -Ltmp5156: - .loc 1 2250 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2250:13 - jne LBB21_1694 -Ltmp5157: -## %bb.1341: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2254 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2254:32 - shrl $24, %r12d -Ltmp5158: - .loc 1 2254 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2254:21 - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax,%r12,8), %rsi -Ltmp5159: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2255 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2255:9 - movq (%rsi), %rdx -Ltmp5160: - ##DEBUG_VALUE: io1 <- $rdx - movq (%r15), %rax - movq %rax, (%rdx) - movzwl 8(%r15), %ecx - movw %cx, 8(%rdx) - testw %cx, %cx - jns LBB21_1345 -Ltmp5161: -## %bb.1342: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $rdx - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp5162: - cmpl %edx, %ecx - jne LBB21_1877 -Ltmp5163: -## %bb.1343: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 2255 9 ## /Users/dylan/github/ravi/src/lvm.c:2255:9 - je LBB21_1345 -Ltmp5164: -## %bb.1344: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1877 -Ltmp5165: -LBB21_1345: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2256 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB21_1348 -Ltmp5166: -## %bb.1346: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_1348 -Ltmp5167: -## %bb.1347: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %rdi - movq %r10, %rbx -Ltmp5168: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r15d -Ltmp5169: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r8, %r12 -Ltmp5170: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2256 9 ## /Users/dylan/github/ravi/src/lvm.c:2256:9 - callq _luaC_upvalbarrier_ -Ltmp5171: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5172: - .p2align 4, 0x90 -LBB21_1348: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2257 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5173: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2257 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - testl %r11d, %r11d -Ltmp5174: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5175: - .loc 1 2257 9 ## /Users/dylan/github/ravi/src/lvm.c:2257:9 - jne LBB21_1339 -Ltmp5176: -LBB21_1349: ## in Loop: Header=BB21_1340 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5177: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5178: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5179: -LBB21_1350: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2266 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5180: - .loc 1 2266 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5181: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5182: - .loc 1 2266 9 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5183: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5184: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1360 -Ltmp5185: - .p2align 4, 0x90 -Ltmp5186: ## Block address taken -LBB21_1351: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2260 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2260:14 - movzwl 8(%r15), %eax -Ltmp5187: - cmpl $32773, %eax ## imm = 0x8005 -Ltmp5188: - .loc 1 2260 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2260:13 - jne LBB21_1878 -Ltmp5189: -## %bb.1352: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2263 32 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2263:32 - shrl $24, %r12d -Ltmp5190: - .loc 1 2263 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2263:21 - movq -120(%rbp), %rax ## 8-byte Reload - movq (%rax,%r12,8), %rsi -Ltmp5191: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2264 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2264:9 - movq (%rsi), %rdx -Ltmp5192: - ##DEBUG_VALUE: io1 <- $rdx - movq (%r15), %rax - movq %rax, (%rdx) - movzwl 8(%r15), %ecx - movw %cx, 8(%rdx) - testw %cx, %cx - jns LBB21_1356 -Ltmp5193: -## %bb.1353: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $rdx - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx -Ltmp5194: - cmpl %edx, %ecx - jne LBB21_1879 -Ltmp5195: -## %bb.1354: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - testq %r13, %r13 - .loc 1 2264 9 ## /Users/dylan/github/ravi/src/lvm.c:2264:9 - je LBB21_1356 -Ltmp5196: -## %bb.1355: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1879 -Ltmp5197: -LBB21_1356: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2265 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2265:9 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB21_1359 -Ltmp5198: -## %bb.1357: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB21_1359 -Ltmp5199: -## %bb.1358: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r13, %rdi - movq %r10, %rbx -Ltmp5200: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movl %r11d, %r15d -Ltmp5201: - ##DEBUG_VALUE: luaV_execute:mask <- $r15d - movq %r8, %r12 -Ltmp5202: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - .loc 1 2265 9 ## /Users/dylan/github/ravi/src/lvm.c:2265:9 - callq _luaC_upvalbarrier_ -Ltmp5203: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r12, %r8 - movl %r15d, %r11d - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5204: - .p2align 4, 0x90 -LBB21_1359: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2266 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5205: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2266 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - testl %r11d, %r11d -Ltmp5206: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5207: - .loc 1 2266 9 ## /Users/dylan/github/ravi/src/lvm.c:2266:9 - jne LBB21_1350 -Ltmp5208: -LBB21_1360: ## in Loop: Header=BB21_1351 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5209: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5210: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5211: -LBB21_1361: ## in Loop: Header=BB21_1362 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2270 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5212: - movq %r10, (%rax) -Ltmp5213: - .loc 1 2270 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5214: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5215: - .loc 1 2270 9 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5216: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5217: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1363 -Ltmp5218: - .p2align 4, 0x90 -Ltmp5219: ## Block address taken -LBB21_1362: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2269 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2269:9 - movq $0, (%r15) - movw $19, 8(%r15) -Ltmp5220: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2270 9 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - movl (%r10), %r12d -Ltmp5221: - addq $4, %r10 -Ltmp5222: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2270 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - testl %r11d, %r11d -Ltmp5223: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5224: - .loc 1 2270 9 ## /Users/dylan/github/ravi/src/lvm.c:2270:9 - jne LBB21_1361 -Ltmp5225: -LBB21_1363: ## in Loop: Header=BB21_1362 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5226: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5227: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5228: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5229: -LBB21_1364: ## in Loop: Header=BB21_1365 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2274 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5230: - movq %r10, (%rax) -Ltmp5231: - .loc 1 2274 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5232: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5233: - .loc 1 2274 9 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5234: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5235: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1366 -Ltmp5236: - .p2align 4, 0x90 -Ltmp5237: ## Block address taken -LBB21_1365: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2273 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2273:9 - movq $0, (%r15) - movw $3, 8(%r15) -Ltmp5238: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2274 9 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - movl (%r10), %r12d -Ltmp5239: - addq $4, %r10 -Ltmp5240: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2274 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - testl %r11d, %r11d -Ltmp5241: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5242: - .loc 1 2274 9 ## /Users/dylan/github/ravi/src/lvm.c:2274:9 - jne LBB21_1364 -Ltmp5243: -LBB21_1366: ## in Loop: Header=BB21_1365 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5244: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5245: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5246: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5247: -LBB21_1367: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2292 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5248: - movq %r10, (%rax) -Ltmp5249: - .loc 1 2292 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5250: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5251: - .loc 1 2292 9 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5252: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5253: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1373 -Ltmp5254: - .p2align 4, 0x90 -Ltmp5255: ## Block address taken -LBB21_1368: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2289 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2289:22 - movzbl %r12b, %eax -Ltmp5256: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1787 -Ltmp5257: -## %bb.1369: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5258: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2290 22 ## /Users/dylan/github/ravi/src/lvm.c:2290:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1788 -Ltmp5259: -## %bb.1370: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5260: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2291 9 ## /Users/dylan/github/ravi/src/lvm.c:2291:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1789 -Ltmp5261: -## %bb.1371: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1790 -Ltmp5262: -## %bb.1372: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rax), %xmm0 ## xmm0 = mem[0],zero - addsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5263: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2292 9 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - movl (%r10), %r12d -Ltmp5264: - addq $4, %r10 -Ltmp5265: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2292 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - testl %r11d, %r11d -Ltmp5266: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5267: - .loc 1 2292 9 ## /Users/dylan/github/ravi/src/lvm.c:2292:9 - jne LBB21_1367 -Ltmp5268: -LBB21_1373: ## in Loop: Header=BB21_1368 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5269: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5270: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5271: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5272: -LBB21_1374: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2298 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5273: - movq %r10, (%rax) -Ltmp5274: - .loc 1 2298 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5275: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5276: - .loc 1 2298 9 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5277: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5278: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1380 -Ltmp5279: - .p2align 4, 0x90 -Ltmp5280: ## Block address taken -LBB21_1375: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2295 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2295:22 - movzbl %r12b, %eax -Ltmp5281: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1791 -Ltmp5282: -## %bb.1376: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5283: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2296 22 ## /Users/dylan/github/ravi/src/lvm.c:2296:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1792 -Ltmp5284: -## %bb.1377: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5285: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2297 9 ## /Users/dylan/github/ravi/src/lvm.c:2297:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1793 -Ltmp5286: -## %bb.1378: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1794 -Ltmp5287: -## %bb.1379: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rcx), %xmm0 - addsd (%rax), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5288: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2298 9 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - movl (%r10), %r12d -Ltmp5289: - addq $4, %r10 -Ltmp5290: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2298 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - testl %r11d, %r11d -Ltmp5291: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5292: - .loc 1 2298 9 ## /Users/dylan/github/ravi/src/lvm.c:2298:9 - jne LBB21_1374 -Ltmp5293: -LBB21_1380: ## in Loop: Header=BB21_1375 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5294: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5295: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5296: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5297: -LBB21_1381: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2304 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5298: - movq %r10, (%rax) -Ltmp5299: - .loc 1 2304 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5300: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5301: - .loc 1 2304 9 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5302: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5303: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1387 -Ltmp5304: - .p2align 4, 0x90 -Ltmp5305: ## Block address taken -LBB21_1382: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2301 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2301:22 - movzbl %r12b, %eax -Ltmp5306: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1795 -Ltmp5307: -## %bb.1383: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5308: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2302 22 ## /Users/dylan/github/ravi/src/lvm.c:2302:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1796 -Ltmp5309: -## %bb.1384: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5310: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2303 9 ## /Users/dylan/github/ravi/src/lvm.c:2303:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1620 -Ltmp5311: -## %bb.1385: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1621 -Ltmp5312: -## %bb.1386: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rcx -Ltmp5313: - addq (%rax), %rcx - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp5314: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2304 9 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - movl (%r10), %r12d -Ltmp5315: - addq $4, %r10 -Ltmp5316: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2304 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - testl %r11d, %r11d -Ltmp5317: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5318: - .loc 1 2304 9 ## /Users/dylan/github/ravi/src/lvm.c:2304:9 - jne LBB21_1381 -Ltmp5319: -LBB21_1387: ## in Loop: Header=BB21_1382 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5320: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5321: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5322: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5323: -LBB21_1388: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2310 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5324: - movq %r10, (%rax) -Ltmp5325: - .loc 1 2310 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5326: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5327: - .loc 1 2310 9 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5328: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5329: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1394 -Ltmp5330: - .p2align 4, 0x90 -Ltmp5331: ## Block address taken -LBB21_1389: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2307 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2307:22 - movzbl %r12b, %eax -Ltmp5332: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1622 -Ltmp5333: -## %bb.1390: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5334: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2308 22 ## /Users/dylan/github/ravi/src/lvm.c:2308:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1623 -Ltmp5335: -## %bb.1391: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5336: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2309 9 ## /Users/dylan/github/ravi/src/lvm.c:2309:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1624 -Ltmp5337: -## %bb.1392: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1625 -Ltmp5338: -## %bb.1393: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rax), %xmm0 ## xmm0 = mem[0],zero - subsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5339: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2310 9 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - movl (%r10), %r12d -Ltmp5340: - addq $4, %r10 -Ltmp5341: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2310 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - testl %r11d, %r11d -Ltmp5342: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5343: - .loc 1 2310 9 ## /Users/dylan/github/ravi/src/lvm.c:2310:9 - jne LBB21_1388 -Ltmp5344: -LBB21_1394: ## in Loop: Header=BB21_1389 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5345: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5346: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5347: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5348: -LBB21_1395: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2316 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5349: - movq %r10, (%rax) -Ltmp5350: - .loc 1 2316 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5351: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5352: - .loc 1 2316 9 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5353: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5354: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1401 -Ltmp5355: - .p2align 4, 0x90 -Ltmp5356: ## Block address taken -LBB21_1396: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2313 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2313:22 - movzbl %r12b, %eax -Ltmp5357: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1626 -Ltmp5358: -## %bb.1397: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5359: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2314 22 ## /Users/dylan/github/ravi/src/lvm.c:2314:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1627 -Ltmp5360: -## %bb.1398: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5361: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2315 9 ## /Users/dylan/github/ravi/src/lvm.c:2315:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1720 -Ltmp5362: -## %bb.1399: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1721 -Ltmp5363: -## %bb.1400: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rcx), %xmm0 - movsd (%rax), %xmm1 ## xmm1 = mem[0],zero - subsd %xmm0, %xmm1 - movsd %xmm1, (%r15) - movw $3, 8(%r15) -Ltmp5364: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2316 9 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - movl (%r10), %r12d -Ltmp5365: - addq $4, %r10 -Ltmp5366: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2316 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - testl %r11d, %r11d -Ltmp5367: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5368: - .loc 1 2316 9 ## /Users/dylan/github/ravi/src/lvm.c:2316:9 - jne LBB21_1395 -Ltmp5369: -LBB21_1401: ## in Loop: Header=BB21_1396 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5370: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5371: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5372: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5373: -LBB21_1402: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2322 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5374: - movq %r10, (%rax) -Ltmp5375: - .loc 1 2322 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5376: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5377: - .loc 1 2322 9 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5378: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5379: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1408 -Ltmp5380: - .p2align 4, 0x90 -Ltmp5381: ## Block address taken -LBB21_1403: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2319 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2319:22 - movzbl %r12b, %eax -Ltmp5382: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1695 -Ltmp5383: -## %bb.1404: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5384: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2320 22 ## /Users/dylan/github/ravi/src/lvm.c:2320:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1696 -Ltmp5385: -## %bb.1405: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5386: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2321 9 ## /Users/dylan/github/ravi/src/lvm.c:2321:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1697 -Ltmp5387: -## %bb.1406: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1698 -Ltmp5388: -## %bb.1407: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rax), %xmm0 - subsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5389: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2322 9 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - movl (%r10), %r12d -Ltmp5390: - addq $4, %r10 -Ltmp5391: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2322 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - testl %r11d, %r11d -Ltmp5392: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5393: - .loc 1 2322 9 ## /Users/dylan/github/ravi/src/lvm.c:2322:9 - jne LBB21_1402 -Ltmp5394: -LBB21_1408: ## in Loop: Header=BB21_1403 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5395: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5396: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5397: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5398: -LBB21_1409: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2328 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5399: - .loc 1 2328 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5400: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5401: - .loc 1 2328 9 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5402: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5403: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1415 -Ltmp5404: - .p2align 4, 0x90 -Ltmp5405: ## Block address taken -LBB21_1410: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2325 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2325:22 - movzbl %r12b, %eax -Ltmp5406: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1699 -Ltmp5407: -## %bb.1411: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5408: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2326 22 ## /Users/dylan/github/ravi/src/lvm.c:2326:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1700 -Ltmp5409: -## %bb.1412: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5410: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2327 9 ## /Users/dylan/github/ravi/src/lvm.c:2327:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1701 -Ltmp5411: -## %bb.1413: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1702 -Ltmp5412: -## %bb.1414: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rax), %rax -Ltmp5413: - subq (%rcx), %rax - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp5414: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2328 9 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - movl (%r10), %r12d -Ltmp5415: - addq $4, %r10 -Ltmp5416: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2328 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - testl %r11d, %r11d -Ltmp5417: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5418: - .loc 1 2328 9 ## /Users/dylan/github/ravi/src/lvm.c:2328:9 - jne LBB21_1409 -Ltmp5419: -LBB21_1415: ## in Loop: Header=BB21_1410 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5420: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5421: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5422: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5423: -LBB21_1416: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2334 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5424: - movq %r10, (%rax) -Ltmp5425: - .loc 1 2334 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5426: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5427: - .loc 1 2334 9 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5428: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5429: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1422 -Ltmp5430: - .p2align 4, 0x90 -Ltmp5431: ## Block address taken -LBB21_1417: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2331 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2331:22 - movzbl %r12b, %eax -Ltmp5432: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1703 -Ltmp5433: -## %bb.1418: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5434: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2332 22 ## /Users/dylan/github/ravi/src/lvm.c:2332:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1797 -Ltmp5435: -## %bb.1419: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5436: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2333 9 ## /Users/dylan/github/ravi/src/lvm.c:2333:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1880 -Ltmp5437: -## %bb.1420: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1881 -Ltmp5438: -## %bb.1421: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rax), %xmm0 ## xmm0 = mem[0],zero - mulsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5439: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2334 9 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - movl (%r10), %r12d -Ltmp5440: - addq $4, %r10 -Ltmp5441: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2334 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - testl %r11d, %r11d -Ltmp5442: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5443: - .loc 1 2334 9 ## /Users/dylan/github/ravi/src/lvm.c:2334:9 - jne LBB21_1416 -Ltmp5444: -LBB21_1422: ## in Loop: Header=BB21_1417 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5445: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5446: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5447: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5448: -LBB21_1423: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2340 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5449: - movq %r10, (%rax) -Ltmp5450: - .loc 1 2340 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5451: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5452: - .loc 1 2340 9 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5453: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5454: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1429 -Ltmp5455: - .p2align 4, 0x90 -Ltmp5456: ## Block address taken -LBB21_1424: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2337 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2337:22 - movzbl %r12b, %eax -Ltmp5457: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1882 -Ltmp5458: -## %bb.1425: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5459: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2338 22 ## /Users/dylan/github/ravi/src/lvm.c:2338:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1883 -Ltmp5460: -## %bb.1426: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5461: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2339 9 ## /Users/dylan/github/ravi/src/lvm.c:2339:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1884 -Ltmp5462: -## %bb.1427: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1885 -Ltmp5463: -## %bb.1428: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rcx), %xmm0 - mulsd (%rax), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5464: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2340 9 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - movl (%r10), %r12d -Ltmp5465: - addq $4, %r10 -Ltmp5466: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2340 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - testl %r11d, %r11d -Ltmp5467: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5468: - .loc 1 2340 9 ## /Users/dylan/github/ravi/src/lvm.c:2340:9 - jne LBB21_1423 -Ltmp5469: -LBB21_1429: ## in Loop: Header=BB21_1424 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5470: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5471: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5472: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5473: -LBB21_1430: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2346 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5474: - movq %r10, (%rax) -Ltmp5475: - .loc 1 2346 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5476: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5477: - .loc 1 2346 9 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5478: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5479: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1436 -Ltmp5480: - .p2align 4, 0x90 -Ltmp5481: ## Block address taken -LBB21_1431: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2343 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2343:22 - movzbl %r12b, %eax -Ltmp5482: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1886 -Ltmp5483: -## %bb.1432: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5484: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2344 22 ## /Users/dylan/github/ravi/src/lvm.c:2344:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1887 -Ltmp5485: -## %bb.1433: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5486: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2345 9 ## /Users/dylan/github/ravi/src/lvm.c:2345:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1888 -Ltmp5487: -## %bb.1434: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1889 -Ltmp5488: -## %bb.1435: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rcx), %rcx -Ltmp5489: - imulq (%rax), %rcx - movq %rcx, (%r15) - movw $19, 8(%r15) -Ltmp5490: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2346 9 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - movl (%r10), %r12d -Ltmp5491: - addq $4, %r10 -Ltmp5492: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2346 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - testl %r11d, %r11d -Ltmp5493: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5494: - .loc 1 2346 9 ## /Users/dylan/github/ravi/src/lvm.c:2346:9 - jne LBB21_1430 -Ltmp5495: -LBB21_1436: ## in Loop: Header=BB21_1431 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5496: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5497: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5498: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5499: -LBB21_1437: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2352 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5500: - movq %r10, (%rax) -Ltmp5501: - .loc 1 2352 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5502: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5503: - .loc 1 2352 9 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5504: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5505: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1443 -Ltmp5506: - .p2align 4, 0x90 -Ltmp5507: ## Block address taken -LBB21_1438: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2349 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2349:22 - movzbl %r12b, %eax -Ltmp5508: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1798 -Ltmp5509: -## %bb.1439: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5510: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2350 22 ## /Users/dylan/github/ravi/src/lvm.c:2350:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1799 -Ltmp5511: -## %bb.1440: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5512: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2351 9 ## /Users/dylan/github/ravi/src/lvm.c:2351:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1800 -Ltmp5513: -## %bb.1441: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1801 -Ltmp5514: -## %bb.1442: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movsd (%rax), %xmm0 ## xmm0 = mem[0],zero - divsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5515: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2352 9 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - movl (%r10), %r12d -Ltmp5516: - addq $4, %r10 -Ltmp5517: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2352 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - testl %r11d, %r11d -Ltmp5518: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5519: - .loc 1 2352 9 ## /Users/dylan/github/ravi/src/lvm.c:2352:9 - jne LBB21_1437 -Ltmp5520: -LBB21_1443: ## in Loop: Header=BB21_1438 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5521: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5522: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5523: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5524: -LBB21_1444: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2358 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5525: - movq %r10, (%rax) -Ltmp5526: - .loc 1 2358 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5527: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5528: - .loc 1 2358 9 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5529: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5530: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1450 -Ltmp5531: - .p2align 4, 0x90 -Ltmp5532: ## Block address taken -LBB21_1445: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2355 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2355:22 - movzbl %r12b, %eax -Ltmp5533: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1802 -Ltmp5534: -## %bb.1446: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5535: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2356 22 ## /Users/dylan/github/ravi/src/lvm.c:2356:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1803 -Ltmp5536: -## %bb.1447: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5537: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2357 9 ## /Users/dylan/github/ravi/src/lvm.c:2357:9 - movzwl 8(%rax), %edx - cmpl $3, %edx - jne LBB21_1804 -Ltmp5538: -## %bb.1448: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1805 -Ltmp5539: -## %bb.1449: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rcx), %xmm0 - movsd (%rax), %xmm1 ## xmm1 = mem[0],zero - divsd %xmm0, %xmm1 - movsd %xmm1, (%r15) - movw $3, 8(%r15) -Ltmp5540: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2358 9 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - movl (%r10), %r12d -Ltmp5541: - addq $4, %r10 -Ltmp5542: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2358 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - testl %r11d, %r11d -Ltmp5543: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5544: - .loc 1 2358 9 ## /Users/dylan/github/ravi/src/lvm.c:2358:9 - jne LBB21_1444 -Ltmp5545: -LBB21_1450: ## in Loop: Header=BB21_1445 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5546: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5547: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5548: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5549: -LBB21_1451: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2364 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5550: - movq %r10, (%rax) -Ltmp5551: - .loc 1 2364 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5552: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5553: - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5554: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5555: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1457 -Ltmp5556: - .p2align 4, 0x90 -Ltmp5557: ## Block address taken -LBB21_1452: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2361 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2361:22 - movzbl %r12b, %eax -Ltmp5558: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1806 -Ltmp5559: -## %bb.1453: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5560: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2362 22 ## /Users/dylan/github/ravi/src/lvm.c:2362:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1807 -Ltmp5561: -## %bb.1454: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5562: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2363 9 ## /Users/dylan/github/ravi/src/lvm.c:2363:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1628 -Ltmp5563: -## %bb.1455: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $3, %edx - jne LBB21_1629 -Ltmp5564: -## %bb.1456: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rax), %xmm0 - divsd (%rcx), %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5565: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - movl (%r10), %r12d -Ltmp5566: - addq $4, %r10 -Ltmp5567: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2364 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - testl %r11d, %r11d -Ltmp5568: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5569: - .loc 1 2364 9 ## /Users/dylan/github/ravi/src/lvm.c:2364:9 - jne LBB21_1451 -Ltmp5570: -LBB21_1457: ## in Loop: Header=BB21_1452 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5571: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5572: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5573: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5574: -LBB21_1458: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2370 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5575: - movq %r10, (%rax) -Ltmp5576: - .loc 1 2370 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5577: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5578: - .loc 1 2370 9 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5579: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5580: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1464 -Ltmp5581: - .p2align 4, 0x90 -Ltmp5582: ## Block address taken -LBB21_1459: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2367 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2367:22 - movzbl %r12b, %eax -Ltmp5583: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %ecx - movl %ecx, %eax - andb $48, %al - cmpb $48, %al - jne LBB21_1630 -Ltmp5584: -## %bb.1460: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %eax - shrl $24, %eax - movl %eax, %edx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rax - addq %r8, %rax - testl %r12d, %r12d - cmovsq %rdx, %rax -Ltmp5585: - ##DEBUG_VALUE: rb <- $rax - .loc 1 2368 22 ## /Users/dylan/github/ravi/src/lvm.c:2368:22 - andb $12, %cl - cmpb $12, %cl - jne LBB21_1631 -Ltmp5586: -## %bb.1461: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %r12d, %edx - shrl $16, %edx - movzbl %dl, %ecx - ## kill: def $edx killed $edx def $rdx - andl $127, %edx - shlq $4, %rdx - addq %r9, %rdx - shlq $4, %rcx - addq %r8, %rcx - testl $8388608, %r12d ## imm = 0x800000 - cmovneq %rdx, %rcx -Ltmp5587: - ##DEBUG_VALUE: rc <- $rcx - .loc 1 2369 9 ## /Users/dylan/github/ravi/src/lvm.c:2369:9 - movzwl 8(%rax), %edx - cmpl $19, %edx - jne LBB21_1632 -Ltmp5588: -## %bb.1462: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzwl 8(%rcx), %edx - cmpl $19, %edx - jne LBB21_1633 -Ltmp5589: -## %bb.1463: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - xorps %xmm0, %xmm0 - cvtsi2sdq (%rax), %xmm0 - xorps %xmm1, %xmm1 - cvtsi2sdq (%rcx), %xmm1 - divsd %xmm1, %xmm0 - movsd %xmm0, (%r15) - movw $3, 8(%r15) -Ltmp5590: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2370 9 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - movl (%r10), %r12d -Ltmp5591: - addq $4, %r10 -Ltmp5592: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2370 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - testl %r11d, %r11d -Ltmp5593: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5594: - .loc 1 2370 9 ## /Users/dylan/github/ravi/src/lvm.c:2370:9 - jne LBB21_1458 -Ltmp5595: -LBB21_1464: ## in Loop: Header=BB21_1459 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5596: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5597: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5598: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5599: -LBB21_1465: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, %r13 -Ltmp5600: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp5601: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp5602: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -240(%rbp), %rsi -Ltmp5603: - ##DEBUG_VALUE: j <- [DW_OP_constu 240, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2375 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2375:13 - xorl %edx, %edx - callq _luaV_tointeger -Ltmp5604: - testl %eax, %eax -Ltmp5605: - .loc 1 2375 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2375:13 - je LBB21_1890 -Ltmp5606: -## %bb.1466: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 240, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2375 47 ## /Users/dylan/github/ravi/src/lvm.c:2375:47 - movq -240(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r12d, %r11d - movq %r13, %r8 - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5607: - .loc 1 0 47 ## /Users/dylan/github/ravi/src/lvm.c:0:47 - jmp LBB21_1471 -Ltmp5608: -LBB21_1467: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2378 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5609: - movq %r10, (%rax) -Ltmp5610: - .loc 1 2378 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5611: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5612: - .loc 1 2378 9 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5613: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5614: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1472 -Ltmp5615: - .p2align 4, 0x90 -Ltmp5616: ## Block address taken -LBB21_1468: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2373 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2373:22 - movzbl %r12b, %eax -Ltmp5617: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1891 -Ltmp5618: -## %bb.1469: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp5619: - shlq $4, %r12 - leaq (%r8,%r12), %rdi -Ltmp5620: - ##DEBUG_VALUE: rb <- $rdi - .loc 1 2375 13 ## /Users/dylan/github/ravi/src/lvm.c:2375:13 - movzwl 8(%r8,%r12), %eax - cmpl $19, %eax - jne LBB21_1465 -Ltmp5621: -## %bb.1470: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%rdi), %rax -Ltmp5622: - ##DEBUG_VALUE: j <- $rax - movq %rax, -240(%rbp) -Ltmp5623: -LBB21_1471: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rax - .loc 1 2375 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2375:47 - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp5624: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2378 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5625: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2378 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - testl %r11d, %r11d -Ltmp5626: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5627: - .loc 1 2378 9 ## /Users/dylan/github/ravi/src/lvm.c:2378:9 - jne LBB21_1467 -Ltmp5628: -LBB21_1472: ## in Loop: Header=BB21_1468 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5629: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5630: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5631: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5632: -LBB21_1473: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, %r13 -Ltmp5633: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp5634: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp5635: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -232(%rbp), %rsi -Ltmp5636: - ##DEBUG_VALUE: j <- [DW_OP_constu 232, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2383 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2383:13 - callq _luaV_tonumber_ -Ltmp5637: - testl %eax, %eax -Ltmp5638: - .loc 1 2383 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2383:13 - je LBB21_1808 -Ltmp5639: -## %bb.1474: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 232, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2383 46 ## /Users/dylan/github/ravi/src/lvm.c:2383:46 - movq -232(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r12d, %r11d - movq %r13, %r8 - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5640: - .loc 1 0 46 ## /Users/dylan/github/ravi/src/lvm.c:0:46 - jmp LBB21_1479 -Ltmp5641: -LBB21_1475: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2386 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5642: - .loc 1 2386 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5643: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5644: - .loc 1 2386 9 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5645: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5646: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1480 -Ltmp5647: - .p2align 4, 0x90 -Ltmp5648: ## Block address taken -LBB21_1476: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2381 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2381:22 - movzbl %r12b, %eax -Ltmp5649: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1892 -Ltmp5650: -## %bb.1477: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp5651: - shlq $4, %r12 - leaq (%r8,%r12), %rdi -Ltmp5652: - ##DEBUG_VALUE: rb <- $rdi - .loc 1 2383 13 ## /Users/dylan/github/ravi/src/lvm.c:2383:13 - movzwl 8(%r8,%r12), %eax - cmpl $3, %eax - jne LBB21_1473 -Ltmp5653: -## %bb.1478: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: j <- [DW_OP_deref] $rdi - movq (%rdi), %rax - movq %rax, -232(%rbp) -Ltmp5654: -LBB21_1479: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2383 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2383:46 - movq %rax, (%r15) - movw $3, 8(%r15) -Ltmp5655: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2386 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5656: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2386 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - testl %r11d, %r11d -Ltmp5657: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5658: - .loc 1 2386 9 ## /Users/dylan/github/ravi/src/lvm.c:2386:9 - jne LBB21_1475 -Ltmp5659: -LBB21_1480: ## in Loop: Header=BB21_1476 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5660: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5661: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5662: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5663: -LBB21_1481: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5664: - .loc 1 2395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5665: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5666: - .loc 1 2395 9 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5667: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5668: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1489 -Ltmp5669: - .p2align 4, 0x90 -Ltmp5670: ## Block address taken -LBB21_1482: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2389 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2389:22 - movzbl %r12b, %eax -Ltmp5671: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1809 -Ltmp5672: -## %bb.1483: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp5673: - .loc 1 2390 13 ## /Users/dylan/github/ravi/src/lvm.c:2390:13 - shlq $4, %r12 - movzwl 8(%r8,%r12), %eax - cmpl $32789, %eax ## imm = 0x8015 -Ltmp5674: - .loc 1 2390 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2390:13 - jne LBB21_1810 -Ltmp5675: -## %bb.1484: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - leaq 8(%r8,%r12), %rcx -Ltmp5676: - .loc 1 2391 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2391:11 - movq (%r8,%r12), %rax - movq %rax, (%r15) - movzwl (%rcx), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_1488 -Ltmp5677: -## %bb.1485: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1811 -Ltmp5678: -## %bb.1486: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 2391 11 ## /Users/dylan/github/ravi/src/lvm.c:2391:11 - je LBB21_1488 -Ltmp5679: -## %bb.1487: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1811 -Ltmp5680: -LBB21_1488: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5681: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2395 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - testl %r11d, %r11d -Ltmp5682: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5683: - .loc 1 2395 9 ## /Users/dylan/github/ravi/src/lvm.c:2395:9 - jne LBB21_1481 -Ltmp5684: -LBB21_1489: ## in Loop: Header=BB21_1482 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5685: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5686: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5687: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5688: -LBB21_1490: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2404 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5689: - .loc 1 2404 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5690: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5691: - .loc 1 2404 9 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5692: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5693: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1498 -Ltmp5694: - .p2align 4, 0x90 -Ltmp5695: ## Block address taken -LBB21_1491: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2398 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2398:22 - movzbl %r12b, %eax -Ltmp5696: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1812 -Ltmp5697: -## %bb.1492: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp5698: - .loc 1 2399 13 ## /Users/dylan/github/ravi/src/lvm.c:2399:13 - shlq $4, %r12 - movzwl 8(%r8,%r12), %eax - cmpl $32805, %eax ## imm = 0x8025 -Ltmp5699: - .loc 1 2399 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2399:13 - jne LBB21_1813 -Ltmp5700: -## %bb.1493: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - leaq 8(%r8,%r12), %rcx -Ltmp5701: - .loc 1 2400 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2400:11 - movq (%r8,%r12), %rax - movq %rax, (%r15) - movzwl (%rcx), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_1497 -Ltmp5702: -## %bb.1494: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1634 -Ltmp5703: -## %bb.1495: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 2400 11 ## /Users/dylan/github/ravi/src/lvm.c:2400:11 - je LBB21_1497 -Ltmp5704: -## %bb.1496: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1634 -Ltmp5705: -LBB21_1497: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2404 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5706: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2404 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - testl %r11d, %r11d -Ltmp5707: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5708: - .loc 1 2404 9 ## /Users/dylan/github/ravi/src/lvm.c:2404:9 - jne LBB21_1490 -Ltmp5709: -LBB21_1498: ## in Loop: Header=BB21_1491 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5710: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5711: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5712: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5713: -LBB21_1499: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2413 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5714: - .loc 1 2413 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5715: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5716: - .loc 1 2413 9 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5717: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5718: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1507 -Ltmp5719: - .p2align 4, 0x90 -Ltmp5720: ## Block address taken -LBB21_1500: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2407 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2407:22 - movzbl %r12b, %eax -Ltmp5721: - movq _luaP_opmodes@GOTPCREL(%rip), %rcx - movzbl (%rcx,%rax), %eax - andb $48, %al - cmpb $32, %al - jne LBB21_1635 -Ltmp5722: -## %bb.1501: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - shrl $24, %r12d -Ltmp5723: - .loc 1 2408 13 ## /Users/dylan/github/ravi/src/lvm.c:2408:13 - shlq $4, %r12 - movzwl 8(%r8,%r12), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp5724: - .loc 1 2408 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2408:13 - jne LBB21_1636 -Ltmp5725: -## %bb.1502: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - leaq 8(%r8,%r12), %rcx -Ltmp5726: - .loc 1 2409 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2409:11 - movq (%r8,%r12), %rax - movq %rax, (%r15) - movzwl (%rcx), %ecx - movw %cx, 8(%r15) - testw %cx, %cx - jns LBB21_1506 -Ltmp5727: -## %bb.1503: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB21_1637 -Ltmp5728: -## %bb.1504: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 11 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:11 - testq %r13, %r13 - .loc 1 2409 11 ## /Users/dylan/github/ravi/src/lvm.c:2409:11 - je LBB21_1506 -Ltmp5729: -## %bb.1505: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movzbl 9(%rax), %eax - xorb $3, %al - movq -96(%rbp), %rcx ## 8-byte Reload - movq (%rcx), %rcx - movzbl 84(%rcx), %ecx - xorb $3, %cl - testb %al, %cl - je LBB21_1637 -Ltmp5730: -LBB21_1506: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2413 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5731: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2413 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - testl %r11d, %r11d -Ltmp5732: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5733: - .loc 1 2413 9 ## /Users/dylan/github/ravi/src/lvm.c:2413:9 - jne LBB21_1499 -Ltmp5734: -LBB21_1507: ## in Loop: Header=BB21_1500 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5735: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5736: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5737: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5738: -LBB21_1508: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, %r13 -Ltmp5739: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp5740: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp5741: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -224(%rbp), %rsi -Ltmp5742: - ##DEBUG_VALUE: j <- [DW_OP_constu 224, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2417 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2417:13 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp5743: - testl %eax, %eax -Ltmp5744: - .loc 1 2417 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2417:13 - je LBB21_1638 -Ltmp5745: -## %bb.1509: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 224, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2417 47 ## /Users/dylan/github/ravi/src/lvm.c:2417:47 - movq -224(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r12d, %r11d - movq %r13, %r8 - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5746: - .loc 1 0 47 ## /Users/dylan/github/ravi/src/lvm.c:0:47 - jmp LBB21_1513 -Ltmp5747: -LBB21_1510: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2420 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - movq -64(%rbp), %rax ## 8-byte Reload -Ltmp5748: - movq %r10, (%rax) -Ltmp5749: - .loc 1 2420 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5750: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5751: - .loc 1 2420 9 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5752: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5753: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1514 -Ltmp5754: - .p2align 4, 0x90 -Ltmp5755: ## Block address taken -LBB21_1511: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2417 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2417:13 - movzwl 8(%r15), %eax -Ltmp5756: - cmpl $19, %eax - jne LBB21_1508 -Ltmp5757: -## %bb.1512: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rax -Ltmp5758: - ##DEBUG_VALUE: j <- $rax - movq %rax, -224(%rbp) -Ltmp5759: -LBB21_1513: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rax - .loc 1 2417 47 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2417:47 - movq %rax, (%r15) - movw $19, 8(%r15) -Ltmp5760: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2420 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5761: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2420 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - testl %r11d, %r11d -Ltmp5762: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5763: - .loc 1 2420 9 ## /Users/dylan/github/ravi/src/lvm.c:2420:9 - jne LBB21_1510 -Ltmp5764: -LBB21_1514: ## in Loop: Header=BB21_1511 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5765: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5766: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5767: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5768: -LBB21_1515: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq %r8, %r13 -Ltmp5769: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - movl %r11d, %r12d -Ltmp5770: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - movq %r10, %rbx -Ltmp5771: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - leaq -216(%rbp), %rsi -Ltmp5772: - ##DEBUG_VALUE: j <- [DW_OP_constu 216, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2424 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2424:13 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp5773: - testl %eax, %eax -Ltmp5774: - .loc 1 2424 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2424:13 - je LBB21_1704 -Ltmp5775: -## %bb.1516: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 216, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2424 46 ## /Users/dylan/github/ravi/src/lvm.c:2424:46 - movq -216(%rbp), %rax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r12d, %r11d - movq %r13, %r8 - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5776: - .loc 1 0 46 ## /Users/dylan/github/ravi/src/lvm.c:0:46 - jmp LBB21_1520 -Ltmp5777: -LBB21_1517: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2427 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5778: - .loc 1 2427 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5779: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5780: - .loc 1 2427 9 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5781: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5782: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1521 -Ltmp5783: - .p2align 4, 0x90 -Ltmp5784: ## Block address taken -LBB21_1518: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2424 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2424:13 - movzwl 8(%r15), %eax -Ltmp5785: - cmpl $3, %eax - jne LBB21_1515 -Ltmp5786: -## %bb.1519: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movq (%r15), %rax - movq %rax, -216(%rbp) -Ltmp5787: -LBB21_1520: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2424 46 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2424:46 - movq %rax, (%r15) - movw $3, 8(%r15) -Ltmp5788: - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2427 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5789: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2427 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - testl %r11d, %r11d -Ltmp5790: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5791: - .loc 1 2427 9 ## /Users/dylan/github/ravi/src/lvm.c:2427:9 - jne LBB21_1517 -Ltmp5792: -LBB21_1521: ## in Loop: Header=BB21_1518 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5793: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5794: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5795: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5796: -LBB21_1522: ## in Loop: Header=BB21_1523 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2432 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5797: - .loc 1 2432 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5798: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5799: - .loc 1 2432 9 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5800: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5801: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1525 -Ltmp5802: - .p2align 4, 0x90 -Ltmp5803: ## Block address taken -LBB21_1523: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2430 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2430:13 - movzwl 8(%r15), %eax -Ltmp5804: - cmpl $32773, %eax ## imm = 0x8005 -Ltmp5805: - .loc 1 2430 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2430:13 - jne LBB21_1705 -Ltmp5806: -## %bb.1524: ## in Loop: Header=BB21_1523 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2432 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - movl (%r10), %r12d -Ltmp5807: - addq $4, %r10 -Ltmp5808: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2432 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - testl %r11d, %r11d -Ltmp5809: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5810: - .loc 1 2432 9 ## /Users/dylan/github/ravi/src/lvm.c:2432:9 - jne LBB21_1522 -Ltmp5811: -LBB21_1525: ## in Loop: Header=BB21_1523 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5812: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5813: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5814: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5815: -LBB21_1526: ## in Loop: Header=BB21_1527 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2437 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5816: - .loc 1 2437 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5817: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5818: - .loc 1 2437 9 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5819: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5820: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1529 -Ltmp5821: - .p2align 4, 0x90 -Ltmp5822: ## Block address taken -LBB21_1527: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2435 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2435:13 - movzwl 8(%r15), %eax -Ltmp5823: - cmpl $32789, %eax ## imm = 0x8015 -Ltmp5824: - .loc 1 2435 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2435:13 - jne LBB21_1706 -Ltmp5825: -## %bb.1528: ## in Loop: Header=BB21_1527 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2437 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - movl (%r10), %r12d -Ltmp5826: - addq $4, %r10 -Ltmp5827: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2437 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - testl %r11d, %r11d -Ltmp5828: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5829: - .loc 1 2437 9 ## /Users/dylan/github/ravi/src/lvm.c:2437:9 - jne LBB21_1526 -Ltmp5830: -LBB21_1529: ## in Loop: Header=BB21_1527 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5831: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5832: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5833: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5834: -LBB21_1530: ## in Loop: Header=BB21_1531 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2442 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5835: - .loc 1 2442 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5836: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5837: - .loc 1 2442 9 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5838: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5839: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1533 -Ltmp5840: - .p2align 4, 0x90 -Ltmp5841: ## Block address taken -LBB21_1531: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2440 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2440:13 - movzwl 8(%r15), %eax -Ltmp5842: - cmpl $32805, %eax ## imm = 0x8025 -Ltmp5843: - .loc 1 2440 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2440:13 - jne LBB21_1707 -Ltmp5844: -## %bb.1532: ## in Loop: Header=BB21_1531 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2442 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - movl (%r10), %r12d -Ltmp5845: - addq $4, %r10 -Ltmp5846: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2442 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - testl %r11d, %r11d -Ltmp5847: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5848: - .loc 1 2442 9 ## /Users/dylan/github/ravi/src/lvm.c:2442:9 - jne LBB21_1530 -Ltmp5849: -LBB21_1533: ## in Loop: Header=BB21_1531 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5850: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5851: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5852: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5853: -LBB21_1534: ## in Loop: Header=BB21_1535 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2447 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5854: - .loc 1 2447 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5855: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5856: - .loc 1 2447 9 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5857: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5858: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1538 -Ltmp5859: - .p2align 4, 0x90 -Ltmp5860: ## Block address taken -LBB21_1535: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2445 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2445:14 - movzwl 8(%r15), %eax -Ltmp5861: - testw %ax, %ax - .loc 1 2445 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2445:26 - je LBB21_1537 -Ltmp5862: -## %bb.1536: ## in Loop: Header=BB21_1535 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - andl $15, %eax - .loc 1 2445 26 ## /Users/dylan/github/ravi/src/lvm.c:2445:26 - movzwl %ax, %eax - cmpl $4, %eax - jne LBB21_1708 -Ltmp5863: -LBB21_1537: ## in Loop: Header=BB21_1535 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2447 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - movl (%r10), %r12d -Ltmp5864: - addq $4, %r10 -Ltmp5865: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2447 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - testl %r11d, %r11d -Ltmp5866: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5867: - .loc 1 2447 9 ## /Users/dylan/github/ravi/src/lvm.c:2447:9 - jne LBB21_1534 -Ltmp5868: -LBB21_1538: ## in Loop: Header=BB21_1535 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5869: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5870: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5871: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5872: -LBB21_1539: ## in Loop: Header=BB21_1540 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2452 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5873: - .loc 1 2452 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5874: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5875: - .loc 1 2452 9 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5876: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5877: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1543 -Ltmp5878: - .p2align 4, 0x90 -Ltmp5879: ## Block address taken -LBB21_1540: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2450 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2450:14 - movzwl 8(%r15), %eax -Ltmp5880: - testw %ax, %ax - .loc 1 2450 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2450:26 - je LBB21_1542 -Ltmp5881: -## %bb.1541: ## in Loop: Header=BB21_1540 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - andl $31, %eax - .loc 1 2450 26 ## /Users/dylan/github/ravi/src/lvm.c:2450:26 - movzwl %ax, %eax - cmpl $6, %eax - jne LBB21_1893 -Ltmp5882: -LBB21_1542: ## in Loop: Header=BB21_1540 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2452 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - movl (%r10), %r12d -Ltmp5883: - addq $4, %r10 -Ltmp5884: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2452 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - testl %r11d, %r11d -Ltmp5885: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5886: - .loc 1 2452 9 ## /Users/dylan/github/ravi/src/lvm.c:2452:9 - jne LBB21_1539 -Ltmp5887: -LBB21_1543: ## in Loop: Header=BB21_1540 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5888: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5889: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5890: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5891: -LBB21_1544: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2463 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - movq -64(%rbp), %rax ## 8-byte Reload - movq %r10, (%rax) -Ltmp5892: - .loc 1 2463 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - movq %r13, %rdi - movq %r10, %rbx - callq _luaG_traceexec -Ltmp5893: - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %rbx, %r10 - movq -48(%rbp), %r9 ## 8-byte Reload -Ltmp5894: - .loc 1 2463 9 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - movq -56(%rbp), %rax ## 8-byte Reload - movq (%rax), %r8 -Ltmp5895: - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl 200(%r13), %r11d - andl $12, %r11d -Ltmp5896: - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - jmp LBB21_1550 -Ltmp5897: - .p2align 4, 0x90 -Ltmp5898: ## Block address taken -LBB21_1545: ## Parent Loop BB21_2 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2455 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2455:14 - cmpw $0, 8(%r15) -Ltmp5899: - .loc 1 2455 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2455:13 - je LBB21_1549 -Ltmp5900: -## %bb.1546: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq %r13, %rdi -Ltmp5901: - .loc 1 2456 28 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2456:28 - shrl $16, %r12d -Ltmp5902: - .loc 1 2457 17 ## /Users/dylan/github/ravi/src/lvm.c:2457:17 - shlq $4, %r12 - movzwl 8(%r9,%r12), %eax -Ltmp5903: - cmpl $32772, %eax ## imm = 0x8004 -Ltmp5904: - .loc 1 2457 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2457:16 - jne LBB21_1894 -Ltmp5905: -## %bb.1547: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 16 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq %r8, -80(%rbp) ## 8-byte Spill -Ltmp5906: - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 80, DW_OP_minus] [$rbp+0] - .loc 1 2459 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2459:26 - movq (%r9,%r12), %r12 - movzbl 8(%r12), %eax - andb $15, %al - cmpb $4, %al - jne LBB21_1895 -Ltmp5907: -## %bb.1548: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - movl %r11d, %r13d -Ltmp5908: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - movq %r10, %rbx -Ltmp5909: - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: key <- $r12 - .loc 1 2460 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2460:16 - movq %r12, %rsi - movq %r15, %rdx - callq _raviV_check_usertype -Ltmp5910: - testl %eax, %eax - movq -48(%rbp), %r9 ## 8-byte Reload - movq %rbx, %r10 - movl %r13d, %r11d - movq -88(%rbp), %r13 ## 8-byte Reload -Ltmp5911: - .loc 1 0 16 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:16 - movq -80(%rbp), %r8 ## 8-byte Reload -Ltmp5912: - .loc 1 2460 15 ## /Users/dylan/github/ravi/src/lvm.c:2460:15 - je LBB21_1896 -Ltmp5913: -LBB21_1549: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2463 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - movl (%r10), %r12d - addq $4, %r10 -Ltmp5914: - ##DEBUG_VALUE: i <- $r12d - .loc 1 2463 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - testl %r11d, %r11d -Ltmp5915: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl $0, %r11d -Ltmp5916: - .loc 1 2463 9 ## /Users/dylan/github/ravi/src/lvm.c:2463:9 - jne LBB21_1544 -Ltmp5917: -LBB21_1550: ## in Loop: Header=BB21_1545 Depth=2 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- $r8 - movzbl %r12b, %eax -Ltmp5918: - ##DEBUG_VALUE: op <- $eax - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r15d -Ltmp5919: - shrl $8, %r15d - andl $127, %r15d - shlq $4, %r15 - addq %r8, %r15 -Ltmp5920: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_plus_uconst 4, DW_OP_stack_value] $r10 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: getcached:base <- $r8 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - movl %eax, %ecx - jmpq *(%r14,%rcx,8) -Ltmp5921: -Ltmp5922: ## Block address taken -LBB21_1551: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1942 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1942:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1942, %edx ## imm = 0x796 - callq ___assert_rtn -Ltmp5923: -LBB21_1552: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $eax - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1760 11 ## /Users/dylan/github/ravi/src/lvm.c:1760:11 - addq $264, %rsp ## imm = 0x108 - popq %rbx - popq %r12 -Ltmp5924: - popq %r13 - popq %r14 - popq %r15 -Ltmp5925: - popq %rbp - retq -Ltmp5926: -Ltmp5927: ## Block address taken -LBB21_1553: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2277 9 ## /Users/dylan/github/ravi/src/lvm.c:2277:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2277, %edx ## imm = 0x8E5 - callq ___assert_rtn -Ltmp5928: -Ltmp5929: ## Block address taken -LBB21_1554: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2283 9 ## /Users/dylan/github/ravi/src/lvm.c:2283:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2283, %edx ## imm = 0x8EB - callq ___assert_rtn -Ltmp5930: -LBB21_1555: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.196(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp5931: -LBB21_1556: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.197(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp5932: -LBB21_1557: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 89 29 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.196(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp5933: -LBB21_1558: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.197(%rip), %rcx - movl $89, %edx - callq ___assert_rtn -Ltmp5934: -LBB21_1559: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- $rbx - ##DEBUG_VALUE: n <- $r14d - ##DEBUG_VALUE: b <- $r8d - ##DEBUG_VALUE: luaV_execute:base <- $r11 - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1936 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1936:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1936, %edx ## imm = 0x790 - callq ___assert_rtn -Ltmp5935: -LBB21_1560: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1904 24 ## /Users/dylan/github/ravi/src/lvm.c:1904:24 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1904, %edx ## imm = 0x770 - callq ___assert_rtn -Ltmp5936: -LBB21_1561: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:24 - leaq L_.str.22(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp5937: -LBB21_1562: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L_.str.23(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp5938: -LBB21_1563: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1302 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1302:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1302, %edx ## imm = 0x516 - callq ___assert_rtn -Ltmp5939: -LBB21_1564: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1302, %edx ## imm = 0x516 - callq ___assert_rtn -Ltmp5940: -LBB21_1565: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1307 9 ## /Users/dylan/github/ravi/src/lvm.c:1307:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1307, %edx ## imm = 0x51B - callq ___assert_rtn -Ltmp5941: -LBB21_1566: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1349 9 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx - movl $1349, %edx ## imm = 0x545 - callq ___assert_rtn -Ltmp5942: -LBB21_1567: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1349 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1349:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1349, %edx ## imm = 0x545 - callq ___assert_rtn -Ltmp5943: -LBB21_1568: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1354 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1354:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1354, %edx ## imm = 0x54A - callq ___assert_rtn -Ltmp5944: -LBB21_1569: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 22 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:22 - leaq L_.str.9(%rip), %rdx - movq %r13, %rdi - movq %rbx, %rsi - callq _luaG_typeerror -Ltmp5945: -LBB21_1570: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $1362, %edx ## imm = 0x552 - callq ___assert_rtn -Ltmp5946: -LBB21_1571: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1368, %edx ## imm = 0x558 - callq ___assert_rtn -Ltmp5947: -LBB21_1572: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5948: - leaq L_.str.14(%rip), %rcx - movl $1395, %edx ## imm = 0x573 - callq ___assert_rtn -Ltmp5949: -LBB21_1573: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1425 22 ## /Users/dylan/github/ravi/src/lvm.c:1425:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1425, %edx ## imm = 0x591 - callq ___assert_rtn -Ltmp5950: -LBB21_1574: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1426 22 ## /Users/dylan/github/ravi/src/lvm.c:1426:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5951: - leaq L_.str.90(%rip), %rcx - movl $1426, %edx ## imm = 0x592 - callq ___assert_rtn -Ltmp5952: -LBB21_1575: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1439 22 ## /Users/dylan/github/ravi/src/lvm.c:1439:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1439, %edx ## imm = 0x59F - callq ___assert_rtn -Ltmp5953: -LBB21_1576: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1463 22 ## /Users/dylan/github/ravi/src/lvm.c:1463:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1463, %edx ## imm = 0x5B7 - callq ___assert_rtn -Ltmp5954: -LBB21_1577: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1464 22 ## /Users/dylan/github/ravi/src/lvm.c:1464:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5955: - leaq L_.str.90(%rip), %rcx - movl $1464, %edx ## imm = 0x5B8 - callq ___assert_rtn -Ltmp5956: -LBB21_1578: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_div:n <- $rsi - ##DEBUG_VALUE: luaV_div:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 837 7 ## /Users/dylan/github/ravi/src/lvm.c:837:7 - leaq L_.str.71(%rip), %rsi -Ltmp5957: - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp5958: -LBB21_1579: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1636 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1636:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1636, %edx ## imm = 0x664 - callq ___assert_rtn -Ltmp5959: -LBB21_1580: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1637 22 ## /Users/dylan/github/ravi/src/lvm.c:1637:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5960: - leaq L_.str.90(%rip), %rcx - movl $1637, %edx ## imm = 0x665 - callq ___assert_rtn -Ltmp5961: -LBB21_1581: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: nlimit <- [DW_OP_constu 288, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1814 13 ## /Users/dylan/github/ravi/src/lvm.c:1814:13 - leaq L_.str.128(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp5962: -LBB21_1582: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: nstep <- [DW_OP_constu 280, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1817 13 ## /Users/dylan/github/ravi/src/lvm.c:1817:13 - leaq L_.str.130(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp5963: -LBB21_1583: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ninit <- [DW_OP_constu 296, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1820 13 ## /Users/dylan/github/ravi/src/lvm.c:1820:13 - leaq L_.str.132(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp5964: -LBB21_1584: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1806 46 ## /Users/dylan/github/ravi/src/lvm.c:1806:46 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.126(%rip), %rcx - movl $1806, %edx ## imm = 0x70E - callq ___assert_rtn -Ltmp5965: -LBB21_1585: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1919 11 ## /Users/dylan/github/ravi/src/lvm.c:1919:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5966: - leaq L_.str.64(%rip), %rcx - movl $1919, %edx ## imm = 0x77F - callq ___assert_rtn -Ltmp5967: -LBB21_1586: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ncl <- $r8 - ##DEBUG_VALUE: p <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5968: - leaq L_.str.14(%rip), %rcx - movl $1919, %edx ## imm = 0x77F - callq ___assert_rtn -Ltmp5969: -LBB21_1587: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1920 9 ## /Users/dylan/github/ravi/src/lvm.c:1920:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $1920, %edx ## imm = 0x780 - callq ___assert_rtn -Ltmp5970: -LBB21_1588: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1964 22 ## /Users/dylan/github/ravi/src/lvm.c:1964:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1964, %edx ## imm = 0x7AC - callq ___assert_rtn -Ltmp5971: -LBB21_1589: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1965 22 ## /Users/dylan/github/ravi/src/lvm.c:1965:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1965, %edx ## imm = 0x7AD - callq ___assert_rtn -Ltmp5972: -LBB21_1590: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1966 9 ## /Users/dylan/github/ravi/src/lvm.c:1966:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp5973: - movl $1966, %edx ## imm = 0x7AE - callq ___assert_rtn -Ltmp5974: -LBB21_1591: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp5975: - movl $1966, %edx ## imm = 0x7AE - callq ___assert_rtn -Ltmp5976: -LBB21_1592: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1970 22 ## /Users/dylan/github/ravi/src/lvm.c:1970:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1970, %edx ## imm = 0x7B2 - callq ___assert_rtn -Ltmp5977: -LBB21_1593: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1971 22 ## /Users/dylan/github/ravi/src/lvm.c:1971:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx -Ltmp5978: - movl $1971, %edx ## imm = 0x7B3 - callq ___assert_rtn -Ltmp5979: -LBB21_1594: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1972 26 ## /Users/dylan/github/ravi/src/lvm.c:1972:26 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp5980: - movl $1972, %edx ## imm = 0x7B4 - callq ___assert_rtn -Ltmp5981: -LBB21_1595: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: rb <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1973 9 ## /Users/dylan/github/ravi/src/lvm.c:1973:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp5982: - movl $1973, %edx ## imm = 0x7B5 - callq ___assert_rtn -Ltmp5983: -LBB21_1596: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2049 22 ## /Users/dylan/github/ravi/src/lvm.c:2049:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2049, %edx ## imm = 0x801 - callq ___assert_rtn -Ltmp5984: -LBB21_1597: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2050 22 ## /Users/dylan/github/ravi/src/lvm.c:2050:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2050, %edx ## imm = 0x802 - callq ___assert_rtn -Ltmp5985: -LBB21_1598: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2051 27 ## /Users/dylan/github/ravi/src/lvm.c:2051:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp5986: - movl $2051, %edx ## imm = 0x803 - callq ___assert_rtn -Ltmp5987: -LBB21_1599: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2051 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2051:43 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp5988: - movl $2051, %edx ## imm = 0x803 - callq ___assert_rtn -Ltmp5989: -LBB21_1600: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2087 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2087:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $2087, %edx ## imm = 0x827 - callq ___assert_rtn -Ltmp5990: -LBB21_1601: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $r14d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2095 9 ## /Users/dylan/github/ravi/src/lvm.c:2095:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $2095, %edx ## imm = 0x82F - callq ___assert_rtn -Ltmp5991: -LBB21_1602: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2111 9 ## /Users/dylan/github/ravi/src/lvm.c:2111:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.135(%rip), %rcx - movl $2111, %edx ## imm = 0x83F - callq ___assert_rtn -Ltmp5992: -LBB21_1603: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2119 9 ## /Users/dylan/github/ravi/src/lvm.c:2119:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.135(%rip), %rcx - movl $2119, %edx ## imm = 0x847 - callq ___assert_rtn -Ltmp5993: -LBB21_1604: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5994: - leaq L_.str.104(%rip), %rcx - movl $2122, %edx ## imm = 0x84A -Ltmp5995: - callq ___assert_rtn -Ltmp5996: -LBB21_1605: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.136(%rip), %rcx - movl $86, %edx - callq ___assert_rtn -Ltmp5997: -LBB21_1606: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp5998: - leaq L_.str.14(%rip), %rcx - movl $2122, %edx ## imm = 0x84A - callq ___assert_rtn -Ltmp5999: -LBB21_1607: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2131 20 ## /Users/dylan/github/ravi/src/lvm.c:2131:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2131, %edx ## imm = 0x853 - callq ___assert_rtn -Ltmp6000: -LBB21_1608: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2134 11 ## /Users/dylan/github/ravi/src/lvm.c:2134:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6001: - leaq L_.str.135(%rip), %rcx - movl $2134, %edx ## imm = 0x856 - callq ___assert_rtn -Ltmp6002: -LBB21_1609: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2150 22 ## /Users/dylan/github/ravi/src/lvm.c:2150:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2150, %edx ## imm = 0x866 - callq ___assert_rtn -Ltmp6003: -LBB21_1610: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2151 22 ## /Users/dylan/github/ravi/src/lvm.c:2151:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2151, %edx ## imm = 0x867 - callq ___assert_rtn -Ltmp6004: -LBB21_1611: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2152 27 ## /Users/dylan/github/ravi/src/lvm.c:2152:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx - movl $2152, %edx ## imm = 0x868 - callq ___assert_rtn -Ltmp6005: -LBB21_1612: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2186 27 ## /Users/dylan/github/ravi/src/lvm.c:2186:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6006: - leaq L_.str.95(%rip), %rcx -Ltmp6007: - movl $2186, %edx ## imm = 0x88A - callq ___assert_rtn -Ltmp6008: -LBB21_1613: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2187 9 ## /Users/dylan/github/ravi/src/lvm.c:2187:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6009: - leaq L_.str.91(%rip), %rcx -Ltmp6010: - movl $2187, %edx ## imm = 0x88B -Ltmp6011: - callq ___assert_rtn -Ltmp6012: -LBB21_1614: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2208 20 ## /Users/dylan/github/ravi/src/lvm.c:2208:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $2208, %edx ## imm = 0x8A0 - callq ___assert_rtn -Ltmp6013: -LBB21_1615: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6014: - leaq L_.str.99(%rip), %rcx - movl $2208, %edx ## imm = 0x8A0 - callq ___assert_rtn -Ltmp6015: -LBB21_1616: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2209 22 ## /Users/dylan/github/ravi/src/lvm.c:2209:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6016: - leaq L_.str.94(%rip), %rcx - movl $2209, %edx ## imm = 0x8A1 - callq ___assert_rtn -Ltmp6017: -LBB21_1617: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2210 22 ## /Users/dylan/github/ravi/src/lvm.c:2210:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6018: - leaq L_.str.90(%rip), %rcx - movl $2210, %edx ## imm = 0x8A2 - callq ___assert_rtn -Ltmp6019: -LBB21_1618: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2211 27 ## /Users/dylan/github/ravi/src/lvm.c:2211:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6020: - leaq L_.str.95(%rip), %rcx -Ltmp6021: - movl $2211, %edx ## imm = 0x8A3 - callq ___assert_rtn -Ltmp6022: -LBB21_1619: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ia <- [DW_OP_constu 256, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2223 11 ## /Users/dylan/github/ravi/src/lvm.c:2223:11 - leaq L_.str.139(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6023: -LBB21_1620: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2303 9 ## /Users/dylan/github/ravi/src/lvm.c:2303:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6024: - movl $2303, %edx ## imm = 0x8FF - callq ___assert_rtn -Ltmp6025: -LBB21_1621: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6026: - movl $2303, %edx ## imm = 0x8FF - callq ___assert_rtn -Ltmp6027: -LBB21_1622: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2307 22 ## /Users/dylan/github/ravi/src/lvm.c:2307:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2307, %edx ## imm = 0x903 - callq ___assert_rtn -Ltmp6028: -LBB21_1623: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2308 22 ## /Users/dylan/github/ravi/src/lvm.c:2308:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2308, %edx ## imm = 0x904 - callq ___assert_rtn -Ltmp6029: -LBB21_1624: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2309 9 ## /Users/dylan/github/ravi/src/lvm.c:2309:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6030: - movl $2309, %edx ## imm = 0x905 - callq ___assert_rtn -Ltmp6031: -LBB21_1625: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6032: - movl $2309, %edx ## imm = 0x905 - callq ___assert_rtn -Ltmp6033: -LBB21_1626: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2313 22 ## /Users/dylan/github/ravi/src/lvm.c:2313:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2313, %edx ## imm = 0x909 - callq ___assert_rtn -Ltmp6034: -LBB21_1627: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2314 22 ## /Users/dylan/github/ravi/src/lvm.c:2314:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2314, %edx ## imm = 0x90A - callq ___assert_rtn -Ltmp6035: -LBB21_1628: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2363 9 ## /Users/dylan/github/ravi/src/lvm.c:2363:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6036: - movl $2363, %edx ## imm = 0x93B - callq ___assert_rtn -Ltmp6037: -LBB21_1629: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6038: - movl $2363, %edx ## imm = 0x93B - callq ___assert_rtn -Ltmp6039: -LBB21_1630: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2367 22 ## /Users/dylan/github/ravi/src/lvm.c:2367:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2367, %edx ## imm = 0x93F - callq ___assert_rtn -Ltmp6040: -LBB21_1631: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2368 22 ## /Users/dylan/github/ravi/src/lvm.c:2368:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2368, %edx ## imm = 0x940 - callq ___assert_rtn -Ltmp6041: -LBB21_1632: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2369 9 ## /Users/dylan/github/ravi/src/lvm.c:2369:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6042: - movl $2369, %edx ## imm = 0x941 - callq ___assert_rtn -Ltmp6043: -LBB21_1633: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6044: - movl $2369, %edx ## imm = 0x941 - callq ___assert_rtn -Ltmp6045: -LBB21_1634: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2400 11 ## /Users/dylan/github/ravi/src/lvm.c:2400:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2400, %edx ## imm = 0x960 - callq ___assert_rtn -Ltmp6046: -LBB21_1635: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2407 22 ## /Users/dylan/github/ravi/src/lvm.c:2407:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2407, %edx ## imm = 0x967 - callq ___assert_rtn -Ltmp6047: -LBB21_1636: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2412 11 ## /Users/dylan/github/ravi/src/lvm.c:2412:11 - leaq L_.str.148(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6048: -LBB21_1637: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2409 11 ## /Users/dylan/github/ravi/src/lvm.c:2409:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2409, %edx ## imm = 0x969 - callq ___assert_rtn -Ltmp6049: -LBB21_1638: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 224, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2419 11 ## /Users/dylan/github/ravi/src/lvm.c:2419:11 - leaq L_.str.149(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6050: -LBB21_1639: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1314 9 ## /Users/dylan/github/ravi/src/lvm.c:1314:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1314, %edx ## imm = 0x522 - callq ___assert_rtn -Ltmp6051: -LBB21_1640: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $1356, %edx ## imm = 0x54C - callq ___assert_rtn -Ltmp6052: -LBB21_1641: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1362, %edx ## imm = 0x552 - callq ___assert_rtn -Ltmp6053: -LBB21_1642: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $1362, %edx ## imm = 0x552 - callq ___assert_rtn -Ltmp6054: -LBB21_1643: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1362 9 ## /Users/dylan/github/ravi/src/lvm.c:1362:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx - movl $1362, %edx ## imm = 0x552 - callq ___assert_rtn -Ltmp6055: -LBB21_1644: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1384 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1384:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1384, %edx ## imm = 0x568 - callq ___assert_rtn -Ltmp6056: -LBB21_1645: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1473 22 ## /Users/dylan/github/ravi/src/lvm.c:1473:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1473, %edx ## imm = 0x5C1 - callq ___assert_rtn -Ltmp6057: -LBB21_1646: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1474 22 ## /Users/dylan/github/ravi/src/lvm.c:1474:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6058: - leaq L_.str.90(%rip), %rcx - movl $1474, %edx ## imm = 0x5C2 - callq ___assert_rtn -Ltmp6059: -LBB21_1647: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1513 22 ## /Users/dylan/github/ravi/src/lvm.c:1513:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1513, %edx ## imm = 0x5E9 - callq ___assert_rtn -Ltmp6060: -LBB21_1648: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1514 22 ## /Users/dylan/github/ravi/src/lvm.c:1514:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6061: - leaq L_.str.90(%rip), %rcx - movl $1514, %edx ## imm = 0x5EA - callq ___assert_rtn -Ltmp6062: -LBB21_1649: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ic <- $rsi - ##DEBUG_VALUE: luaV_mod:n <- $rsi - ##DEBUG_VALUE: luaV_mod:m <- $rcx - ##DEBUG_VALUE: ib <- $rcx - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 857 7 ## /Users/dylan/github/ravi/src/lvm.c:857:7 - leaq L_.str.72(%rip), %rsi -Ltmp6063: - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6064: -LBB21_1650: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1568 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1568:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1568, %edx ## imm = 0x620 - callq ___assert_rtn -Ltmp6065: -LBB21_1651: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1579 22 ## /Users/dylan/github/ravi/src/lvm.c:1579:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1579, %edx ## imm = 0x62B - callq ___assert_rtn -Ltmp6066: -LBB21_1652: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1660 22 ## /Users/dylan/github/ravi/src/lvm.c:1660:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1660, %edx ## imm = 0x67C - callq ___assert_rtn -Ltmp6067: -LBB21_1653: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1664 11 ## /Users/dylan/github/ravi/src/lvm.c:1664:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1664, %edx ## imm = 0x680 - callq ___assert_rtn -Ltmp6068: -LBB21_1654: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1828 9 ## /Users/dylan/github/ravi/src/lvm.c:1828:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1828, %edx ## imm = 0x724 - callq ___assert_rtn -Ltmp6069: -LBB21_1655: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1829 9 ## /Users/dylan/github/ravi/src/lvm.c:1829:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1829, %edx ## imm = 0x725 - callq ___assert_rtn -Ltmp6070: -LBB21_1656: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1830 9 ## /Users/dylan/github/ravi/src/lvm.c:1830:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1830, %edx ## imm = 0x726 - callq ___assert_rtn -Ltmp6071: -LBB21_1657: - ##DEBUG_VALUE: luaV_execute:pc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1836 9 ## /Users/dylan/github/ravi/src/lvm.c:1836:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.133(%rip), %rcx - movl $1836, %edx ## imm = 0x72C - callq ___assert_rtn -Ltmp6072: -LBB21_1658: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io2 <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1842 11 ## /Users/dylan/github/ravi/src/lvm.c:1842:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1842, %edx ## imm = 0x732 - callq ___assert_rtn -Ltmp6073: -LBB21_1659: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1993 22 ## /Users/dylan/github/ravi/src/lvm.c:1993:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1993, %edx ## imm = 0x7C9 - callq ___assert_rtn -Ltmp6074: -LBB21_1660: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1994 26 ## /Users/dylan/github/ravi/src/lvm.c:1994:26 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $1994, %edx ## imm = 0x7CA - callq ___assert_rtn -Ltmp6075: -LBB21_1661: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1999 22 ## /Users/dylan/github/ravi/src/lvm.c:1999:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1999, %edx ## imm = 0x7CF - callq ___assert_rtn -Ltmp6076: -LBB21_1662: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2000 22 ## /Users/dylan/github/ravi/src/lvm.c:2000:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2000, %edx ## imm = 0x7D0 - callq ___assert_rtn -Ltmp6077: -LBB21_1663: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2001 23 ## /Users/dylan/github/ravi/src/lvm.c:2001:23 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6078: - movl $2001, %edx ## imm = 0x7D1 - callq ___assert_rtn -Ltmp6079: -LBB21_1664: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2001 37 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2001:37 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6080: - movl $2001, %edx ## imm = 0x7D1 - callq ___assert_rtn -Ltmp6081: -LBB21_1665: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2009 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2009:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2009, %edx ## imm = 0x7D9 - callq ___assert_rtn -Ltmp6082: -LBB21_1666: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2060 59 ## /Users/dylan/github/ravi/src/lvm.c:2060:59 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.117(%rip), %rcx - movl $2060, %edx ## imm = 0x80C - callq ___assert_rtn -Ltmp6083: -LBB21_1667: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: step <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2061 27 ## /Users/dylan/github/ravi/src/lvm.c:2061:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.118(%rip), %rcx - movl $2061, %edx ## imm = 0x80D - callq ___assert_rtn -Ltmp6084: -LBB21_1668: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: step <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2062 29 ## /Users/dylan/github/ravi/src/lvm.c:2062:29 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.119(%rip), %rcx - movl $2062, %edx ## imm = 0x80E - callq ___assert_rtn -Ltmp6085: -LBB21_1669: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2102 9 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx - movl $2102, %edx ## imm = 0x836 - callq ___assert_rtn -Ltmp6086: -LBB21_1670: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx - movl $2102, %edx ## imm = 0x836 - callq ___assert_rtn -Ltmp6087: -LBB21_1671: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - leaq L_.str.100(%rip), %rdx - movq %r13, %rdi - callq _luaG_typeerror -Ltmp6088: -LBB21_1672: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6089: - leaq L_.str.67(%rip), %rcx -Ltmp6090: - movl $2114, %edx ## imm = 0x842 - callq ___assert_rtn -Ltmp6091: -LBB21_1673: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6092: - leaq L_.str.103(%rip), %rcx -Ltmp6093: - movl $2114, %edx ## imm = 0x842 - callq ___assert_rtn -Ltmp6094: -LBB21_1674: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2136 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2136:26 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6095: - leaq L_.str.103(%rip), %rcx - movl $2136, %edx ## imm = 0x858 - callq ___assert_rtn -Ltmp6096: -LBB21_1675: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6097: - leaq L_.str.104(%rip), %rcx - movl $2136, %edx ## imm = 0x858 - callq ___assert_rtn -Ltmp6098: -LBB21_1676: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2137 11 ## /Users/dylan/github/ravi/src/lvm.c:2137:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6099: - leaq L_.str.136(%rip), %rcx - movl $2137, %edx ## imm = 0x859 - callq ___assert_rtn -Ltmp6100: -LBB21_1677: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2138 22 ## /Users/dylan/github/ravi/src/lvm.c:2138:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6101: - leaq L_.str.66(%rip), %rcx - movl $2138, %edx ## imm = 0x85A - callq ___assert_rtn -Ltmp6102: -LBB21_1678: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $rcx - ##DEBUG_VALUE: key <- $rax - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6103: - leaq L_.str.67(%rip), %rcx -Ltmp6104: - movl $2138, %edx ## imm = 0x85A - callq ___assert_rtn -Ltmp6105: -LBB21_1679: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r12 - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2141 13 ## /Users/dylan/github/ravi/src/lvm.c:2141:13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6106: - leaq L_.str.14(%rip), %rcx - movl $2141, %edx ## imm = 0x85D - callq ___assert_rtn -Ltmp6107: -LBB21_1680: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6108: -LBB21_1681: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2158 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2158:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2158, %edx ## imm = 0x86E - callq ___assert_rtn -Ltmp6109: -LBB21_1682: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2159 22 ## /Users/dylan/github/ravi/src/lvm.c:2159:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2159, %edx ## imm = 0x86F - callq ___assert_rtn -Ltmp6110: -LBB21_1683: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2160 27 ## /Users/dylan/github/ravi/src/lvm.c:2160:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx - movl $2160, %edx ## imm = 0x870 - callq ___assert_rtn -Ltmp6111: -LBB21_1684: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2161 20 ## /Users/dylan/github/ravi/src/lvm.c:2161:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.66(%rip), %rcx - movl $2161, %edx ## imm = 0x871 - callq ___assert_rtn -Ltmp6112: -LBB21_1685: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx -Ltmp6113: - movl $2161, %edx ## imm = 0x871 - callq ___assert_rtn -Ltmp6114: -LBB21_1686: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rax - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2162 9 ## /Users/dylan/github/ravi/src/lvm.c:2162:9 - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax -Ltmp6115: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq %r13, %rdi - callq _luaG_runerror -Ltmp6116: -LBB21_1687: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2166 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2166:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $2166, %edx ## imm = 0x876 - callq ___assert_rtn -Ltmp6117: -LBB21_1688: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx - movl $2166, %edx ## imm = 0x876 - callq ___assert_rtn -Ltmp6118: -LBB21_1689: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2167 22 ## /Users/dylan/github/ravi/src/lvm.c:2167:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2167, %edx ## imm = 0x877 - callq ___assert_rtn -Ltmp6119: -LBB21_1690: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2168 22 ## /Users/dylan/github/ravi/src/lvm.c:2168:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2168, %edx ## imm = 0x878 - callq ___assert_rtn -Ltmp6120: -LBB21_1691: - ##DEBUG_VALUE: luaV_execute:mask <- $r13d - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: na <- [DW_OP_constu 248, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 2235 11 ## /Users/dylan/github/ravi/src/lvm.c:2235:11 - leaq L_.str.140(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6121: -LBB21_1692: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2241 11 ## /Users/dylan/github/ravi/src/lvm.c:2241:11 - leaq L_.str.141(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6122: -LBB21_1693: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2245 9 ## /Users/dylan/github/ravi/src/lvm.c:2245:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6123: - leaq L_.str.14(%rip), %rcx - movl $2245, %edx ## imm = 0x8C5 - callq ___assert_rtn -Ltmp6124: -LBB21_1694: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2251 11 ## /Users/dylan/github/ravi/src/lvm.c:2251:11 - leaq L_.str.142(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6125: -LBB21_1695: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2319 22 ## /Users/dylan/github/ravi/src/lvm.c:2319:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2319, %edx ## imm = 0x90F - callq ___assert_rtn -Ltmp6126: -LBB21_1696: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2320 22 ## /Users/dylan/github/ravi/src/lvm.c:2320:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2320, %edx ## imm = 0x910 - callq ___assert_rtn -Ltmp6127: -LBB21_1697: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2321 9 ## /Users/dylan/github/ravi/src/lvm.c:2321:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6128: - movl $2321, %edx ## imm = 0x911 - callq ___assert_rtn -Ltmp6129: -LBB21_1698: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6130: - movl $2321, %edx ## imm = 0x911 - callq ___assert_rtn -Ltmp6131: -LBB21_1699: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2325 22 ## /Users/dylan/github/ravi/src/lvm.c:2325:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2325, %edx ## imm = 0x915 - callq ___assert_rtn -Ltmp6132: -LBB21_1700: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2326 22 ## /Users/dylan/github/ravi/src/lvm.c:2326:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2326, %edx ## imm = 0x916 - callq ___assert_rtn -Ltmp6133: -LBB21_1701: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2327 9 ## /Users/dylan/github/ravi/src/lvm.c:2327:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6134: - movl $2327, %edx ## imm = 0x917 - callq ___assert_rtn -Ltmp6135: -LBB21_1702: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6136: - movl $2327, %edx ## imm = 0x917 - callq ___assert_rtn -Ltmp6137: -LBB21_1703: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2331 22 ## /Users/dylan/github/ravi/src/lvm.c:2331:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2331, %edx ## imm = 0x91B - callq ___assert_rtn -Ltmp6138: -LBB21_1704: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 216, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2426 11 ## /Users/dylan/github/ravi/src/lvm.c:2426:11 - leaq L_.str.150(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6139: -LBB21_1705: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2431 11 ## /Users/dylan/github/ravi/src/lvm.c:2431:11 - leaq L_.str.148(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6140: -LBB21_1706: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2436 11 ## /Users/dylan/github/ravi/src/lvm.c:2436:11 - leaq L_.str.146(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6141: -LBB21_1707: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2441 11 ## /Users/dylan/github/ravi/src/lvm.c:2441:11 - leaq L_.str.147(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6142: -LBB21_1708: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2446 11 ## /Users/dylan/github/ravi/src/lvm.c:2446:11 - leaq L_.str.151(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6143: -LBB21_1709: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1312 9 ## /Users/dylan/github/ravi/src/lvm.c:1312:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.89(%rip), %rcx - movl $1312, %edx ## imm = 0x520 - callq ___assert_rtn -Ltmp6144: -LBB21_1710: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1355 22 ## /Users/dylan/github/ravi/src/lvm.c:1355:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1355, %edx ## imm = 0x54B - callq ___assert_rtn -Ltmp6145: -LBB21_1711: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1440 22 ## /Users/dylan/github/ravi/src/lvm.c:1440:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6146: - leaq L_.str.90(%rip), %rcx - movl $1440, %edx ## imm = 0x5A0 - callq ___assert_rtn -Ltmp6147: -LBB21_1712: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1553 22 ## /Users/dylan/github/ravi/src/lvm.c:1553:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1553, %edx ## imm = 0x611 - callq ___assert_rtn -Ltmp6148: -LBB21_1713: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rcx - ##DEBUG_VALUE: plimit <- $rbx - ##DEBUG_VALUE: init <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1808 11 ## /Users/dylan/github/ravi/src/lvm.c:1808:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.125(%rip), %rcx -Ltmp6149: - movl $1808, %edx ## imm = 0x710 - callq ___assert_rtn -Ltmp6150: -LBB21_1714: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2100 22 ## /Users/dylan/github/ravi/src/lvm.c:2100:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2100, %edx ## imm = 0x834 - callq ___assert_rtn -Ltmp6151: -LBB21_1715: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2101 22 ## /Users/dylan/github/ravi/src/lvm.c:2101:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2101, %edx ## imm = 0x835 - callq ___assert_rtn -Ltmp6152: -LBB21_1716: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2132 44 ## /Users/dylan/github/ravi/src/lvm.c:2132:44 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6153: - leaq L_.str.14(%rip), %rcx - movl $2132, %edx ## imm = 0x854 - callq ___assert_rtn -Ltmp6154: -LBB21_1717: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2153 20 ## /Users/dylan/github/ravi/src/lvm.c:2153:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.66(%rip), %rcx - movl $2153, %edx ## imm = 0x869 - callq ___assert_rtn -Ltmp6155: -LBB21_1718: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rcx - ##DEBUG_VALUE: rc <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.67(%rip), %rcx -Ltmp6156: - movl $2153, %edx ## imm = 0x869 - callq ___assert_rtn -Ltmp6157: -LBB21_1719: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: idx <- $rdx - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2212 9 ## /Users/dylan/github/ravi/src/lvm.c:2212:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6158: - leaq L_.str.97(%rip), %rcx -Ltmp6159: - movl $2212, %edx ## imm = 0x8A4 -Ltmp6160: - callq ___assert_rtn -Ltmp6161: -LBB21_1720: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2315 9 ## /Users/dylan/github/ravi/src/lvm.c:2315:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6162: - movl $2315, %edx ## imm = 0x90B - callq ___assert_rtn -Ltmp6163: -LBB21_1721: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6164: - movl $2315, %edx ## imm = 0x90B - callq ___assert_rtn -Ltmp6165: -LBB21_1722: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: b <- $r12d - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1331 9 ## /Users/dylan/github/ravi/src/lvm.c:1331:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1331, %edx ## imm = 0x533 - callq ___assert_rtn -Ltmp6166: -LBB21_1723: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1336 9 ## /Users/dylan/github/ravi/src/lvm.c:1336:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6167: - leaq L_.str.14(%rip), %rcx - movl $1336, %edx ## imm = 0x538 - callq ___assert_rtn -Ltmp6168: -LBB21_1724: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1343, %edx ## imm = 0x53F - callq ___assert_rtn -Ltmp6169: -LBB21_1725: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq L_.str.9(%rip), %rdx - movq -88(%rbp), %rdi ## 8-byte Reload - movq %rbx, %rsi - callq _luaG_typeerror -Ltmp6170: -LBB21_1726: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6171: -LBB21_1727: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1347 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1347:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1347, %edx ## imm = 0x543 - callq ___assert_rtn -Ltmp6172: -LBB21_1728: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1348 22 ## /Users/dylan/github/ravi/src/lvm.c:1348:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1348, %edx ## imm = 0x544 - callq ___assert_rtn -Ltmp6173: -LBB21_1729: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1360 22 ## /Users/dylan/github/ravi/src/lvm.c:1360:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1360, %edx ## imm = 0x550 - callq ___assert_rtn -Ltmp6174: -LBB21_1730: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1361 22 ## /Users/dylan/github/ravi/src/lvm.c:1361:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1361, %edx ## imm = 0x551 - callq ___assert_rtn -Ltmp6175: -LBB21_1731: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $r14 - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1368 9 ## /Users/dylan/github/ravi/src/lvm.c:1368:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx - movl $1368, %edx ## imm = 0x558 - callq ___assert_rtn -Ltmp6176: -LBB21_1732: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $1368, %edx ## imm = 0x558 - callq ___assert_rtn -Ltmp6177: -LBB21_1733: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx -Ltmp6178: - movl $1375, %edx ## imm = 0x55F - callq ___assert_rtn -Ltmp6179: -LBB21_1734: - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx -Ltmp6180: - movl $1375, %edx ## imm = 0x55F - callq ___assert_rtn -Ltmp6181: -LBB21_1735: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx -Ltmp6182: - movl $1375, %edx ## imm = 0x55F - callq ___assert_rtn -Ltmp6183: -LBB21_1736: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - leaq L_.str.100(%rip), %rdx -Ltmp6184: - movq %r13, %rdi - callq _luaG_typeerror -Ltmp6185: -LBB21_1737: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1391 20 ## /Users/dylan/github/ravi/src/lvm.c:1391:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1391, %edx ## imm = 0x56F - callq ___assert_rtn -Ltmp6186: -LBB21_1738: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1393 22 ## /Users/dylan/github/ravi/src/lvm.c:1393:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1393, %edx ## imm = 0x571 - callq ___assert_rtn -Ltmp6187: -LBB21_1739: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $rsi - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1394 9 ## /Users/dylan/github/ravi/src/lvm.c:1394:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6188: - leaq L_.str.14(%rip), %rcx - movl $1394, %edx ## imm = 0x572 -Ltmp6189: - callq ___assert_rtn -Ltmp6190: -LBB21_1740: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1395 9 ## /Users/dylan/github/ravi/src/lvm.c:1395:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6191: - leaq L_.str.67(%rip), %rcx - movl $1395, %edx ## imm = 0x573 -Ltmp6192: - callq ___assert_rtn -Ltmp6193: -LBB21_1741: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6194: - leaq L_.str.103(%rip), %rcx - movl $1395, %edx ## imm = 0x573 -Ltmp6195: - callq ___assert_rtn -Ltmp6196: -LBB21_1742: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6197: - leaq L_.str.104(%rip), %rcx - movl $1395, %edx ## imm = 0x573 -Ltmp6198: - callq ___assert_rtn -Ltmp6199: -LBB21_1743: - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1405 11 ## /Users/dylan/github/ravi/src/lvm.c:1405:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1405, %edx ## imm = 0x57D - callq ___assert_rtn -Ltmp6200: -LBB21_1744: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1411 22 ## /Users/dylan/github/ravi/src/lvm.c:1411:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1411, %edx ## imm = 0x583 - callq ___assert_rtn -Ltmp6201: -LBB21_1745: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1412 22 ## /Users/dylan/github/ravi/src/lvm.c:1412:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6202: - leaq L_.str.90(%rip), %rcx - movl $1412, %edx ## imm = 0x584 - callq ___assert_rtn -Ltmp6203: -LBB21_1746: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1503 22 ## /Users/dylan/github/ravi/src/lvm.c:1503:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1503, %edx ## imm = 0x5DF - callq ___assert_rtn -Ltmp6204: -LBB21_1747: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1504 22 ## /Users/dylan/github/ravi/src/lvm.c:1504:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6205: - leaq L_.str.90(%rip), %rcx - movl $1504, %edx ## imm = 0x5E0 - callq ___assert_rtn -Ltmp6206: -LBB21_1748: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1529 22 ## /Users/dylan/github/ravi/src/lvm.c:1529:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1529, %edx ## imm = 0x5F9 - callq ___assert_rtn -Ltmp6207: -LBB21_1749: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1530 22 ## /Users/dylan/github/ravi/src/lvm.c:1530:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6208: - leaq L_.str.90(%rip), %rcx - movl $1530, %edx ## imm = 0x5FA - callq ___assert_rtn -Ltmp6209: -LBB21_1750: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1607 22 ## /Users/dylan/github/ravi/src/lvm.c:1607:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1607, %edx ## imm = 0x647 - callq ___assert_rtn -Ltmp6210: -LBB21_1751: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1619 22 ## /Users/dylan/github/ravi/src/lvm.c:1619:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1619, %edx ## imm = 0x653 - callq ___assert_rtn -Ltmp6211: -LBB21_1752: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1620 22 ## /Users/dylan/github/ravi/src/lvm.c:1620:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6212: - leaq L_.str.90(%rip), %rcx - movl $1620, %edx ## imm = 0x654 - callq ___assert_rtn -Ltmp6213: -LBB21_1753: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1787 30 ## /Users/dylan/github/ravi/src/lvm.c:1787:30 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.123(%rip), %rcx - movl $1787, %edx ## imm = 0x6FB - callq ___assert_rtn -Ltmp6214: -LBB21_1754: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1775 30 ## /Users/dylan/github/ravi/src/lvm.c:1775:30 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.117(%rip), %rcx - movl $1775, %edx ## imm = 0x6EF - callq ___assert_rtn -Ltmp6215: -LBB21_1755: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1777 31 ## /Users/dylan/github/ravi/src/lvm.c:1777:31 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.119(%rip), %rcx - movl $1777, %edx ## imm = 0x6F1 - callq ___assert_rtn -Ltmp6216: -LBB21_1756: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 152, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1901 21 ## /Users/dylan/github/ravi/src/lvm.c:1901:21 - leaq L_.str.22(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6217: -LBB21_1757: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1948 9 ## /Users/dylan/github/ravi/src/lvm.c:1948:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6218: - movl $1948, %edx ## imm = 0x79C - callq ___assert_rtn -Ltmp6219: -LBB21_1758: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1952 22 ## /Users/dylan/github/ravi/src/lvm.c:1952:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1952, %edx ## imm = 0x7A0 - callq ___assert_rtn -Ltmp6220: -LBB21_1759: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1953 22 ## /Users/dylan/github/ravi/src/lvm.c:1953:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1953, %edx ## imm = 0x7A1 - callq ___assert_rtn -Ltmp6221: -LBB21_1760: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1954 9 ## /Users/dylan/github/ravi/src/lvm.c:1954:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6222: - movl $1954, %edx ## imm = 0x7A2 - callq ___assert_rtn -Ltmp6223: -LBB21_1761: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6224: - movl $1954, %edx ## imm = 0x7A2 - callq ___assert_rtn -Ltmp6225: -LBB21_1762: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1958 22 ## /Users/dylan/github/ravi/src/lvm.c:1958:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1958, %edx ## imm = 0x7A6 - callq ___assert_rtn -Ltmp6226: -LBB21_1763: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1959 22 ## /Users/dylan/github/ravi/src/lvm.c:1959:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1959, %edx ## imm = 0x7A7 - callq ___assert_rtn -Ltmp6227: -LBB21_1764: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1960 9 ## /Users/dylan/github/ravi/src/lvm.c:1960:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6228: - movl $1960, %edx ## imm = 0x7A8 - callq ___assert_rtn -Ltmp6229: -LBB21_1765: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6230: - movl $1960, %edx ## imm = 0x7A8 - callq ___assert_rtn -Ltmp6231: -LBB21_1766: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2010 22 ## /Users/dylan/github/ravi/src/lvm.c:2010:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2010, %edx ## imm = 0x7DA - callq ___assert_rtn -Ltmp6232: -LBB21_1767: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2029 22 ## /Users/dylan/github/ravi/src/lvm.c:2029:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2029, %edx ## imm = 0x7ED - callq ___assert_rtn -Ltmp6233: -LBB21_1768: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2030 22 ## /Users/dylan/github/ravi/src/lvm.c:2030:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2030, %edx ## imm = 0x7EE - callq ___assert_rtn -Ltmp6234: -LBB21_1769: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2031 25 ## /Users/dylan/github/ravi/src/lvm.c:2031:25 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6235: - movl $2031, %edx ## imm = 0x7EF - callq ___assert_rtn -Ltmp6236: -LBB21_1770: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2031 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2031:40 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6237: - movl $2031, %edx ## imm = 0x7EF - callq ___assert_rtn -Ltmp6238: -LBB21_1771: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2039 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2039:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2039, %edx ## imm = 0x7F7 - callq ___assert_rtn -Ltmp6239: -LBB21_1772: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2040 22 ## /Users/dylan/github/ravi/src/lvm.c:2040:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2040, %edx ## imm = 0x7F8 - callq ___assert_rtn -Ltmp6240: -LBB21_1773: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2041 27 ## /Users/dylan/github/ravi/src/lvm.c:2041:27 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6241: - movl $2041, %edx ## imm = 0x7F9 - callq ___assert_rtn -Ltmp6242: -LBB21_1774: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2041 41 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2041:41 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6243: - movl $2041, %edx ## imm = 0x7F9 - callq ___assert_rtn -Ltmp6244: -LBB21_1775: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2102 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2102:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2102, %edx ## imm = 0x836 - callq ___assert_rtn -Ltmp6245: -LBB21_1776: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6246: - leaq L_.str.104(%rip), %rcx - movl $2114, %edx ## imm = 0x842 - callq ___assert_rtn -Ltmp6247: -LBB21_1777: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - leaq L_.str.100(%rip), %rdx -Ltmp6248: - movq %r14, %rdi - callq _luaG_typeerror -Ltmp6249: -LBB21_1778: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2118 20 ## /Users/dylan/github/ravi/src/lvm.c:2118:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2118, %edx ## imm = 0x846 - callq ___assert_rtn -Ltmp6250: -LBB21_1779: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2122 9 ## /Users/dylan/github/ravi/src/lvm.c:2122:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6251: - leaq L_.str.67(%rip), %rcx - movl $2122, %edx ## imm = 0x84A -Ltmp6252: - callq ___assert_rtn -Ltmp6253: -LBB21_1780: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdx - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6254: - leaq L_.str.103(%rip), %rcx - movl $2122, %edx ## imm = 0x84A -Ltmp6255: - callq ___assert_rtn -Ltmp6256: -LBB21_1781: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2169 27 ## /Users/dylan/github/ravi/src/lvm.c:2169:27 - leaq L___func__.luaV_execute(%rip), %rdi -Ltmp6257: - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $2169, %edx ## imm = 0x879 - callq ___assert_rtn -Ltmp6258: -LBB21_1782: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2183 20 ## /Users/dylan/github/ravi/src/lvm.c:2183:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $2183, %edx ## imm = 0x887 - callq ___assert_rtn -Ltmp6259: -LBB21_1783: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6260: - leaq L_.str.99(%rip), %rcx - movl $2183, %edx ## imm = 0x887 - callq ___assert_rtn -Ltmp6261: -LBB21_1784: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2184 22 ## /Users/dylan/github/ravi/src/lvm.c:2184:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6262: - leaq L_.str.94(%rip), %rcx - movl $2184, %edx ## imm = 0x888 - callq ___assert_rtn -Ltmp6263: -LBB21_1785: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2185 22 ## /Users/dylan/github/ravi/src/lvm.c:2185:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6264: - leaq L_.str.90(%rip), %rcx - movl $2185, %edx ## imm = 0x889 - callq ___assert_rtn -Ltmp6265: -LBB21_1786: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 264, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2203 13 ## /Users/dylan/github/ravi/src/lvm.c:2203:13 - leaq L_.str.138(%rip), %rsi - xorl %eax, %eax - movq %r15, %rdi - callq _luaG_runerror -Ltmp6266: -LBB21_1787: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2289 22 ## /Users/dylan/github/ravi/src/lvm.c:2289:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2289, %edx ## imm = 0x8F1 - callq ___assert_rtn -Ltmp6267: -LBB21_1788: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2290 22 ## /Users/dylan/github/ravi/src/lvm.c:2290:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2290, %edx ## imm = 0x8F2 - callq ___assert_rtn -Ltmp6268: -LBB21_1789: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2291 9 ## /Users/dylan/github/ravi/src/lvm.c:2291:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6269: - movl $2291, %edx ## imm = 0x8F3 - callq ___assert_rtn -Ltmp6270: -LBB21_1790: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6271: - movl $2291, %edx ## imm = 0x8F3 - callq ___assert_rtn -Ltmp6272: -LBB21_1791: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2295 22 ## /Users/dylan/github/ravi/src/lvm.c:2295:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2295, %edx ## imm = 0x8F7 - callq ___assert_rtn -Ltmp6273: -LBB21_1792: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2296 22 ## /Users/dylan/github/ravi/src/lvm.c:2296:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2296, %edx ## imm = 0x8F8 - callq ___assert_rtn -Ltmp6274: -LBB21_1793: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2297 9 ## /Users/dylan/github/ravi/src/lvm.c:2297:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6275: - movl $2297, %edx ## imm = 0x8F9 - callq ___assert_rtn -Ltmp6276: -LBB21_1794: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6277: - movl $2297, %edx ## imm = 0x8F9 - callq ___assert_rtn -Ltmp6278: -LBB21_1795: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2301 22 ## /Users/dylan/github/ravi/src/lvm.c:2301:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2301, %edx ## imm = 0x8FD - callq ___assert_rtn -Ltmp6279: -LBB21_1796: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2302 22 ## /Users/dylan/github/ravi/src/lvm.c:2302:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2302, %edx ## imm = 0x8FE - callq ___assert_rtn -Ltmp6280: -LBB21_1797: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2332 22 ## /Users/dylan/github/ravi/src/lvm.c:2332:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2332, %edx ## imm = 0x91C - callq ___assert_rtn -Ltmp6281: -LBB21_1798: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2349 22 ## /Users/dylan/github/ravi/src/lvm.c:2349:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2349, %edx ## imm = 0x92D - callq ___assert_rtn -Ltmp6282: -LBB21_1799: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2350 22 ## /Users/dylan/github/ravi/src/lvm.c:2350:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2350, %edx ## imm = 0x92E - callq ___assert_rtn -Ltmp6283: -LBB21_1800: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2351 9 ## /Users/dylan/github/ravi/src/lvm.c:2351:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6284: - movl $2351, %edx ## imm = 0x92F - callq ___assert_rtn -Ltmp6285: -LBB21_1801: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6286: - movl $2351, %edx ## imm = 0x92F - callq ___assert_rtn -Ltmp6287: -LBB21_1802: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2355 22 ## /Users/dylan/github/ravi/src/lvm.c:2355:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2355, %edx ## imm = 0x933 - callq ___assert_rtn -Ltmp6288: -LBB21_1803: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2356 22 ## /Users/dylan/github/ravi/src/lvm.c:2356:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2356, %edx ## imm = 0x934 - callq ___assert_rtn -Ltmp6289: -LBB21_1804: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2357 9 ## /Users/dylan/github/ravi/src/lvm.c:2357:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6290: - movl $2357, %edx ## imm = 0x935 - callq ___assert_rtn -Ltmp6291: -LBB21_1805: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6292: - movl $2357, %edx ## imm = 0x935 - callq ___assert_rtn -Ltmp6293: -LBB21_1806: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2361 22 ## /Users/dylan/github/ravi/src/lvm.c:2361:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2361, %edx ## imm = 0x939 - callq ___assert_rtn -Ltmp6294: -LBB21_1807: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2362 22 ## /Users/dylan/github/ravi/src/lvm.c:2362:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2362, %edx ## imm = 0x93A - callq ___assert_rtn -Ltmp6295: -LBB21_1808: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 232, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2385 11 ## /Users/dylan/github/ravi/src/lvm.c:2385:11 - leaq L_.str.145(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6296: -LBB21_1809: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2389 22 ## /Users/dylan/github/ravi/src/lvm.c:2389:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2389, %edx ## imm = 0x955 - callq ___assert_rtn -Ltmp6297: -LBB21_1810: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2394 11 ## /Users/dylan/github/ravi/src/lvm.c:2394:11 - leaq L_.str.146(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6298: -LBB21_1811: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2391 11 ## /Users/dylan/github/ravi/src/lvm.c:2391:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2391, %edx ## imm = 0x957 - callq ___assert_rtn -Ltmp6299: -LBB21_1812: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2398 22 ## /Users/dylan/github/ravi/src/lvm.c:2398:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2398, %edx ## imm = 0x95E - callq ___assert_rtn -Ltmp6300: -LBB21_1813: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2403 11 ## /Users/dylan/github/ravi/src/lvm.c:2403:11 - leaq L_.str.147(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6301: -LBB21_1814: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1342 22 ## /Users/dylan/github/ravi/src/lvm.c:1342:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1342, %edx ## imm = 0x53E - callq ___assert_rtn -Ltmp6302: -LBB21_1815: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: upval <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - ##DEBUG_VALUE: luaV_execute:L <- $r13 - .loc 1 1343 9 ## /Users/dylan/github/ravi/src/lvm.c:1343:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.93(%rip), %rcx - movl $1343, %edx ## imm = 0x53F -Ltmp6303: - callq ___assert_rtn -Ltmp6304: -LBB21_1816: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1356, %edx ## imm = 0x54C - callq ___assert_rtn -Ltmp6305: -LBB21_1817: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.92(%rip), %rcx - movl $1356, %edx ## imm = 0x54C - callq ___assert_rtn -Ltmp6306: -LBB21_1818: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1356 9 ## /Users/dylan/github/ravi/src/lvm.c:1356:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.93(%rip), %rcx - movl $1356, %edx ## imm = 0x54C - callq ___assert_rtn -Ltmp6307: -LBB21_1819: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1366 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1366:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1366, %edx ## imm = 0x556 - callq ___assert_rtn -Ltmp6308: -LBB21_1820: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1367 22 ## /Users/dylan/github/ravi/src/lvm.c:1367:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1367, %edx ## imm = 0x557 - callq ___assert_rtn -Ltmp6309: -LBB21_1821: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - leaq L_.str.100(%rip), %rdx -Ltmp6310: - movq %r13, %rdi - movq %r15, %rsi - callq _luaG_typeerror -Ltmp6311: -LBB21_1822: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1373 22 ## /Users/dylan/github/ravi/src/lvm.c:1373:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1373, %edx ## imm = 0x55D - callq ___assert_rtn -Ltmp6312: -LBB21_1823: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1374 22 ## /Users/dylan/github/ravi/src/lvm.c:1374:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1374, %edx ## imm = 0x55E -Ltmp6313: - callq ___assert_rtn -Ltmp6314: -LBB21_1824: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1375 9 ## /Users/dylan/github/ravi/src/lvm.c:1375:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.68(%rip), %rcx -Ltmp6315: - movl $1375, %edx ## imm = 0x55F -Ltmp6316: - callq ___assert_rtn -Ltmp6317: -LBB21_1825: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rdx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.69(%rip), %rcx -Ltmp6318: - movl $1375, %edx ## imm = 0x55F -Ltmp6319: - callq ___assert_rtn -Ltmp6320: -LBB21_1826: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: x_ <- $rbx - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - .loc 1 1384 9 ## /Users/dylan/github/ravi/src/lvm.c:1384:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $1384, %edx ## imm = 0x568 - callq ___assert_rtn -Ltmp6321: -LBB21_1827: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1387 9 ## /Users/dylan/github/ravi/src/lvm.c:1387:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6322: - leaq L_.str.101(%rip), %rcx - movl $1387, %edx ## imm = 0x56B - callq ___assert_rtn -Ltmp6323: -LBB21_1828: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - leaq L___func__.luaH_getshortstr(%rip), %rdi - leaq L_.str.194(%rip), %rsi - leaq L_.str.136(%rip), %rcx - movl $86, %edx - callq ___assert_rtn -Ltmp6324: -LBB21_1829: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1400 20 ## /Users/dylan/github/ravi/src/lvm.c:1400:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1400, %edx ## imm = 0x578 - callq ___assert_rtn -Ltmp6325: -LBB21_1830: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1401 22 ## /Users/dylan/github/ravi/src/lvm.c:1401:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1401, %edx ## imm = 0x579 - callq ___assert_rtn -Ltmp6326: -LBB21_1831: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1402 24 ## /Users/dylan/github/ravi/src/lvm.c:1402:24 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.103(%rip), %rcx - movl $1402, %edx ## imm = 0x57A - callq ___assert_rtn -Ltmp6327: -LBB21_1832: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6328: - leaq L_.str.104(%rip), %rcx - movl $1402, %edx ## imm = 0x57A - callq ___assert_rtn -Ltmp6329: -LBB21_1833: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io2 <- $r14 - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1403 9 ## /Users/dylan/github/ravi/src/lvm.c:1403:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6330: - leaq L_.str.14(%rip), %rcx - movl $1403, %edx ## imm = 0x57B - callq ___assert_rtn -Ltmp6331: -LBB21_1834: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $r14 - ##DEBUG_VALUE: key <- $rsi - ##DEBUG_VALUE: rc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1404 13 ## /Users/dylan/github/ravi/src/lvm.c:1404:13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6332: - leaq L_.str.67(%rip), %rcx - movl $1404, %edx ## imm = 0x57C - callq ___assert_rtn -Ltmp6333: -LBB21_1835: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1453 22 ## /Users/dylan/github/ravi/src/lvm.c:1453:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1453, %edx ## imm = 0x5AD - callq ___assert_rtn -Ltmp6334: -LBB21_1836: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1454 22 ## /Users/dylan/github/ravi/src/lvm.c:1454:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6335: - leaq L_.str.90(%rip), %rcx - movl $1454, %edx ## imm = 0x5AE - callq ___assert_rtn -Ltmp6336: -LBB21_1837: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1483 22 ## /Users/dylan/github/ravi/src/lvm.c:1483:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1483, %edx ## imm = 0x5CB - callq ___assert_rtn -Ltmp6337: -LBB21_1838: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1484 22 ## /Users/dylan/github/ravi/src/lvm.c:1484:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6338: - leaq L_.str.90(%rip), %rcx - movl $1484, %edx ## imm = 0x5CC - callq ___assert_rtn -Ltmp6339: -LBB21_1839: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1493 22 ## /Users/dylan/github/ravi/src/lvm.c:1493:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1493, %edx ## imm = 0x5D5 - callq ___assert_rtn -Ltmp6340: -LBB21_1840: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1494 22 ## /Users/dylan/github/ravi/src/lvm.c:1494:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6341: - leaq L_.str.90(%rip), %rcx - movl $1494, %edx ## imm = 0x5D6 - callq ___assert_rtn -Ltmp6342: -LBB21_1841: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1543 22 ## /Users/dylan/github/ravi/src/lvm.c:1543:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1543, %edx ## imm = 0x607 - callq ___assert_rtn -Ltmp6343: -LBB21_1842: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1544 22 ## /Users/dylan/github/ravi/src/lvm.c:1544:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6344: - leaq L_.str.90(%rip), %rcx - movl $1544, %edx ## imm = 0x608 - callq ___assert_rtn -Ltmp6345: -LBB21_1843: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1585 9 ## /Users/dylan/github/ravi/src/lvm.c:1585:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $1585, %edx ## imm = 0x631 - callq ___assert_rtn -Ltmp6346: -LBB21_1844: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1596 9 ## /Users/dylan/github/ravi/src/lvm.c:1596:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1596, %edx ## imm = 0x63C - callq ___assert_rtn -Ltmp6347: -LBB21_1845: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1597 9 ## /Users/dylan/github/ravi/src/lvm.c:1597:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $1597, %edx ## imm = 0x63D - callq ___assert_rtn -Ltmp6348: -LBB21_1846: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1606 22 ## /Users/dylan/github/ravi/src/lvm.c:1606:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1606, %edx ## imm = 0x646 - callq ___assert_rtn -Ltmp6349: -LBB21_1847: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1688 13 ## /Users/dylan/github/ravi/src/lvm.c:1688:13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.85(%rip), %rcx - movl $1688, %edx ## imm = 0x698 - callq ___assert_rtn -Ltmp6350: -LBB21_1848: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1703 9 ## /Users/dylan/github/ravi/src/lvm.c:1703:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.109(%rip), %rcx - movl $1703, %edx ## imm = 0x6A7 - callq ___assert_rtn -Ltmp6351: -LBB21_1849: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1785 29 ## /Users/dylan/github/ravi/src/lvm.c:1785:29 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.121(%rip), %rcx - movl $1785, %edx ## imm = 0x6F9 - callq ___assert_rtn -Ltmp6352: -LBB21_1850: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1786 28 ## /Users/dylan/github/ravi/src/lvm.c:1786:28 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.122(%rip), %rcx - movl $1786, %edx ## imm = 0x6FA - callq ___assert_rtn -Ltmp6353: -LBB21_1851: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1854 11 ## /Users/dylan/github/ravi/src/lvm.c:1854:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.89(%rip), %rcx - movl $1854, %edx ## imm = 0x73E - callq ___assert_rtn -Ltmp6354: -LBB21_1852: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1857 13 ## /Users/dylan/github/ravi/src/lvm.c:1857:13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $1857, %edx ## imm = 0x741 - callq ___assert_rtn -Ltmp6355: -LBB21_1853: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: c <- $eax - ##DEBUG_VALUE: n <- $ebx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx - movl $1857, %edx ## imm = 0x741 - callq ___assert_rtn -Ltmp6356: -LBB21_1854: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 160, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r13d - ##DEBUG_VALUE: i <- $r13d - ##DEBUG_VALUE: last <- $r14d - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1885 21 ## /Users/dylan/github/ravi/src/lvm.c:1885:21 - leaq L_.str.23(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6357: -LBB21_1855: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1946 22 ## /Users/dylan/github/ravi/src/lvm.c:1946:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $1946, %edx ## imm = 0x79A - callq ___assert_rtn -Ltmp6358: -LBB21_1856: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1947 22 ## /Users/dylan/github/ravi/src/lvm.c:1947:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $1947, %edx ## imm = 0x79B - callq ___assert_rtn -Ltmp6359: -LBB21_1857: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 1948 9 ## /Users/dylan/github/ravi/src/lvm.c:1948:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6360: - movl $1948, %edx ## imm = 0x79C - callq ___assert_rtn -Ltmp6361: -LBB21_1858: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2011 23 ## /Users/dylan/github/ravi/src/lvm.c:2011:23 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6362: - movl $2011, %edx ## imm = 0x7DB - callq ___assert_rtn -Ltmp6363: -LBB21_1859: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2011 39 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2011:39 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6364: - movl $2011, %edx ## imm = 0x7DB - callq ___assert_rtn -Ltmp6365: -LBB21_1860: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2019 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2019:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2019, %edx ## imm = 0x7E3 - callq ___assert_rtn -Ltmp6366: -LBB21_1861: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2020 22 ## /Users/dylan/github/ravi/src/lvm.c:2020:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2020, %edx ## imm = 0x7E4 - callq ___assert_rtn -Ltmp6367: -LBB21_1862: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2021 25 ## /Users/dylan/github/ravi/src/lvm.c:2021:25 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6368: - movl $2021, %edx ## imm = 0x7E5 - callq ___assert_rtn -Ltmp6369: -LBB21_1863: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2021 38 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2021:38 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6370: - movl $2021, %edx ## imm = 0x7E5 - callq ___assert_rtn -Ltmp6371: -LBB21_1864: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: op <- $eax - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2076 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2076:29 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.134(%rip), %rcx -Ltmp6372: - movl $2076, %edx ## imm = 0x81C - callq ___assert_rtn -Ltmp6373: -LBB21_1865: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: initv <- $rdx - ##DEBUG_VALUE: pstep <- $rcx - ##DEBUG_VALUE: pinit <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2077 75 ## /Users/dylan/github/ravi/src/lvm.c:2077:75 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.125(%rip), %rcx -Ltmp6374: - movl $2077, %edx ## imm = 0x81D -Ltmp6375: - callq ___assert_rtn -Ltmp6376: -LBB21_1866: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2087 9 ## /Users/dylan/github/ravi/src/lvm.c:2087:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2087, %edx ## imm = 0x827 - callq ___assert_rtn -Ltmp6377: -LBB21_1867: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2088 9 ## /Users/dylan/github/ravi/src/lvm.c:2088:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6378: - leaq L_.str.101(%rip), %rcx - movl $2088, %edx ## imm = 0x828 - callq ___assert_rtn -Ltmp6379: -LBB21_1868: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2095 9 ## /Users/dylan/github/ravi/src/lvm.c:2095:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2095, %edx ## imm = 0x82F - callq ___assert_rtn -Ltmp6380: -LBB21_1869: - ##DEBUG_VALUE: luaV_execute:pc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:mask <- $esi - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2096 9 ## /Users/dylan/github/ravi/src/lvm.c:2096:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6381: - leaq L_.str.101(%rip), %rcx - movl $2096, %edx ## imm = 0x830 - callq ___assert_rtn -Ltmp6382: -LBB21_1870: - ##DEBUG_VALUE: rc <- [DW_OP_constu 112, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:base <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2114 9 ## /Users/dylan/github/ravi/src/lvm.c:2114:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6383: - leaq L_.str.14(%rip), %rcx - movl $2114, %edx ## imm = 0x842 - callq ___assert_rtn -Ltmp6384: -LBB21_1871: - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:pc <- $r12 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 272, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: idx <- $r14 - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: luaV_execute:mask <- [DW_OP_constu 68, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2178 13 ## /Users/dylan/github/ravi/src/lvm.c:2178:13 - leaq L_.str.137(%rip), %rsi - xorl %eax, %eax - movq %r15, %rdi - callq _luaG_runerror -Ltmp6385: -LBB21_1872: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2191 20 ## /Users/dylan/github/ravi/src/lvm.c:2191:20 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.98(%rip), %rcx - movl $2191, %edx ## imm = 0x88F - callq ___assert_rtn -Ltmp6386: -LBB21_1873: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.99(%rip), %rcx - movl $2191, %edx ## imm = 0x88F - callq ___assert_rtn -Ltmp6387: -LBB21_1874: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2192 22 ## /Users/dylan/github/ravi/src/lvm.c:2192:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2192, %edx ## imm = 0x890 - callq ___assert_rtn -Ltmp6388: -LBB21_1875: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2193 22 ## /Users/dylan/github/ravi/src/lvm.c:2193:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2193, %edx ## imm = 0x891 - callq ___assert_rtn -Ltmp6389: -LBB21_1876: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rdi - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: t <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2194 27 ## /Users/dylan/github/ravi/src/lvm.c:2194:27 - leaq L___func__.luaV_execute(%rip), %rdi -Ltmp6390: - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx - movl $2194, %edx ## imm = 0x892 - callq ___assert_rtn -Ltmp6391: -LBB21_1877: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2255 9 ## /Users/dylan/github/ravi/src/lvm.c:2255:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6392: - leaq L_.str.14(%rip), %rcx - movl $2255, %edx ## imm = 0x8CF - callq ___assert_rtn -Ltmp6393: -LBB21_1878: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2261 11 ## /Users/dylan/github/ravi/src/lvm.c:2261:11 - leaq L_.str.143(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6394: -LBB21_1879: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2264 9 ## /Users/dylan/github/ravi/src/lvm.c:2264:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6395: - leaq L_.str.14(%rip), %rcx - movl $2264, %edx ## imm = 0x8D8 - callq ___assert_rtn -Ltmp6396: -LBB21_1880: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2333 9 ## /Users/dylan/github/ravi/src/lvm.c:2333:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6397: - movl $2333, %edx ## imm = 0x91D - callq ___assert_rtn -Ltmp6398: -LBB21_1881: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.97(%rip), %rcx -Ltmp6399: - movl $2333, %edx ## imm = 0x91D - callq ___assert_rtn -Ltmp6400: -LBB21_1882: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2337 22 ## /Users/dylan/github/ravi/src/lvm.c:2337:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2337, %edx ## imm = 0x921 - callq ___assert_rtn -Ltmp6401: -LBB21_1883: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2338 22 ## /Users/dylan/github/ravi/src/lvm.c:2338:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2338, %edx ## imm = 0x922 - callq ___assert_rtn -Ltmp6402: -LBB21_1884: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2339 9 ## /Users/dylan/github/ravi/src/lvm.c:2339:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.105(%rip), %rcx -Ltmp6403: - movl $2339, %edx ## imm = 0x923 - callq ___assert_rtn -Ltmp6404: -LBB21_1885: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6405: - movl $2339, %edx ## imm = 0x923 - callq ___assert_rtn -Ltmp6406: -LBB21_1886: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2343 22 ## /Users/dylan/github/ravi/src/lvm.c:2343:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.94(%rip), %rcx - movl $2343, %edx ## imm = 0x927 - callq ___assert_rtn -Ltmp6407: -LBB21_1887: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2344 22 ## /Users/dylan/github/ravi/src/lvm.c:2344:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.90(%rip), %rcx - movl $2344, %edx ## imm = 0x928 - callq ___assert_rtn -Ltmp6408: -LBB21_1888: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2345 9 ## /Users/dylan/github/ravi/src/lvm.c:2345:9 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.95(%rip), %rcx -Ltmp6409: - movl $2345, %edx ## imm = 0x929 - callq ___assert_rtn -Ltmp6410: -LBB21_1889: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: rc <- $rcx - ##DEBUG_VALUE: rb <- $rax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.91(%rip), %rcx -Ltmp6411: - movl $2345, %edx ## imm = 0x929 - callq ___assert_rtn -Ltmp6412: -LBB21_1890: - ##DEBUG_VALUE: luaV_execute:mask <- $r12d - ##DEBUG_VALUE: luaV_execute:base <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: j <- [DW_OP_constu 240, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2377 11 ## /Users/dylan/github/ravi/src/lvm.c:2377:11 - leaq L_.str.144(%rip), %rsi - xorl %eax, %eax - movq -88(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6413: -LBB21_1891: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2373 22 ## /Users/dylan/github/ravi/src/lvm.c:2373:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2373, %edx ## imm = 0x945 - callq ___assert_rtn -Ltmp6414: -LBB21_1892: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2381 22 ## /Users/dylan/github/ravi/src/lvm.c:2381:22 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.88(%rip), %rcx - movl $2381, %edx ## imm = 0x94D - callq ___assert_rtn -Ltmp6415: -LBB21_1893: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r12d - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2451 11 ## /Users/dylan/github/ravi/src/lvm.c:2451:11 - leaq L_.str.152(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - callq _luaG_runerror -Ltmp6416: -LBB21_1894: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- $r8 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2458 13 ## /Users/dylan/github/ravi/src/lvm.c:2458:13 - leaq L_.str.153(%rip), %rsi - xorl %eax, %eax - callq _luaG_runerror -Ltmp6417: -LBB21_1895: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:mask <- $r11d - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:pc <- $r10 - .loc 1 2459 26 ## /Users/dylan/github/ravi/src/lvm.c:2459:26 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.69(%rip), %rcx - movl $2459, %edx ## imm = 0x99B - callq ___assert_rtn -Ltmp6418: -LBB21_1896: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: key <- $r12 - ##DEBUG_VALUE: luaV_execute:pc <- $rbx - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:base <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2461 60 ## /Users/dylan/github/ravi/src/lvm.c:2461:60 - addq $24, %r12 -Ltmp6419: - .loc 1 2461 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2461:13 - leaq L_.str.154(%rip), %rsi - xorl %eax, %eax - movq %r13, %rdi - movq %r12, %rdx - callq _luaG_runerror -Ltmp6420: -LBB21_1897: - ##DEBUG_VALUE: luaV_execute:cl <- $rcx - ##DEBUG_VALUE: luaV_execute:L <- $r13 - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1285 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:1285:8 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.87(%rip), %rcx -Ltmp6421: - movl $1285, %edx ## imm = 0x505 - callq ___assert_rtn -Ltmp6422: -LBB21_1898: - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.86(%rip), %rcx - movl $1285, %edx ## imm = 0x505 - callq ___assert_rtn -Ltmp6423: -LBB21_1899: - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1765 11 ## /Users/dylan/github/ravi/src/lvm.c:1765:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.115(%rip), %rcx - movl $1765, %edx ## imm = 0x6E5 - callq ___assert_rtn -Ltmp6424: -LBB21_1900: - ##DEBUG_VALUE: nres <- $r12d - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1766 11 ## /Users/dylan/github/ravi/src/lvm.c:1766:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.116(%rip), %rcx - movl $1766, %edx ## imm = 0x6E6 - callq ___assert_rtn -Ltmp6425: -LBB21_1901: - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1726 13 ## /Users/dylan/github/ravi/src/lvm.c:1726:13 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $1726, %edx ## imm = 0x6BE - callq ___assert_rtn -Ltmp6426: -LBB21_1902: - ##DEBUG_VALUE: c_or_compiled <- $eax - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: luaV_execute:ci <- $rbx - .loc 1 1695 11 ## /Users/dylan/github/ravi/src/lvm.c:1695:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.108(%rip), %rcx - movl $1695, %edx ## imm = 0x69F - callq ___assert_rtn -Ltmp6427: -LBB21_1903: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: nci <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1720 39 ## /Users/dylan/github/ravi/src/lvm.c:1720:39 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.110(%rip), %rcx - movl $1720, %edx ## imm = 0x6B8 - callq ___assert_rtn -Ltmp6428: -LBB21_1904: - ##DEBUG_VALUE: luaV_execute:ci <- [DW_OP_constu 128, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: nci <- $r8 - ##DEBUG_VALUE: ra <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.111(%rip), %rcx - movl $1720, %edx ## imm = 0x6B8 - callq ___assert_rtn -Ltmp6429: -LBB21_1905: - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:ci <- $r14 - ##DEBUG_VALUE: oci <- $r14 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 1733 11 ## /Users/dylan/github/ravi/src/lvm.c:1733:11 - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.112(%rip), %rcx - movl $1733, %edx ## imm = 0x6C5 - callq ___assert_rtn -Ltmp6430: -LBB21_1906: - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: nfunc <- $rbx - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.113(%rip), %rcx - movl $1733, %edx ## imm = 0x6C5 - callq ___assert_rtn -Ltmp6431: -LBB21_1907: - ##DEBUG_VALUE: lim <- $r12 - ##DEBUG_VALUE: ofunc <- $r15 - ##DEBUG_VALUE: luaV_execute:k <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.luaV_execute(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.114(%rip), %rcx - movl $1733, %edx ## imm = 0x6C5 - callq ___assert_rtn -Ltmp6432: -Lfunc_end21: - .cfi_endproc - ## -- End function - .p2align 4, 0x90 ## -- Begin function pushclosure -_pushclosure: ## @pushclosure -Lfunc_begin22: - .loc 1 915 0 ## /Users/dylan/github/ravi/src/lvm.c:915:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $40, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: pushclosure:L <- $rdi - ##DEBUG_VALUE: pushclosure:p <- $rsi - ##DEBUG_VALUE: pushclosure:encup <- $rdx - ##DEBUG_VALUE: pushclosure:base <- $rcx - ##DEBUG_VALUE: pushclosure:ra <- $r8 -Ltmp6433: - ##DEBUG_VALUE: io <- $r8 - movq %r8, -48(%rbp) ## 8-byte Spill - movq %rcx, -72(%rbp) ## 8-byte Spill - movq %rdx, -64(%rbp) ## 8-byte Spill - movq %rsi, %r12 - movq %rdi, %r13 -Ltmp6434: - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:p <- $r12 - ##DEBUG_VALUE: pushclosure:L <- $r13 - .loc 1 916 16 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:916:16 - movl 16(%rsi), %ebx -Ltmp6435: - ##DEBUG_VALUE: pushclosure:nup <- $ebx - .loc 1 917 22 ## /Users/dylan/github/ravi/src/lvm.c:917:22 - movq 88(%rsi), %r15 -Ltmp6436: - ##DEBUG_VALUE: pushclosure:uv <- $r15 - .loc 1 919 19 ## /Users/dylan/github/ravi/src/lvm.c:919:19 - movl %ebx, %esi - callq _luaF_newLclosure -Ltmp6437: - movq %rax, %r14 -Ltmp6438: - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - .loc 1 920 10 ## /Users/dylan/github/ravi/src/lvm.c:920:10 - movq %r12, 24(%rax) -Ltmp6439: - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 921 3 ## /Users/dylan/github/ravi/src/lvm.c:921:3 - movb 8(%rax), %al - andb $14, %al - cmpb $10, %al - jae LBB22_13 -Ltmp6440: -## %bb.1: - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:p <- $r12 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq %r12, -56(%rbp) ## 8-byte Spill -Ltmp6441: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %rax ## 8-byte Reload - .loc 1 921 3 ## /Users/dylan/github/ravi/src/lvm.c:921:3 - movq %r14, (%rax) - movw $-32762, 8(%rax) ## imm = 0x8006 - cmpb $6, 8(%r14) - jne LBB22_14 -Ltmp6442: -## %bb.2: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testq %r13, %r13 - je LBB22_4 -Ltmp6443: -## %bb.3: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movb 9(%r14), %al - xorb $3, %al - movq 24(%r13), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB22_14 -Ltmp6444: -LBB22_4: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:i <- 0 - .loc 1 922 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:922:17 - testl %ebx, %ebx -Ltmp6445: - .loc 1 922 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:922:3 - jle LBB22_10 -Ltmp6446: -## %bb.5: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 923 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:923:9 - addq $18, %r15 -Ltmp6447: - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - xorl %r12d, %r12d -Ltmp6448: - .p2align 4, 0x90 -LBB22_6: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:i <- $r12 - .loc 1 923 9 ## /Users/dylan/github/ravi/src/lvm.c:923:9 - cmpb $0, -1(%r15) - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl (%r15), %esi -Ltmp6449: - .loc 1 923 9 ## /Users/dylan/github/ravi/src/lvm.c:923:9 - je LBB22_8 -Ltmp6450: -## %bb.7: ## in Loop: Header=BB22_6 Depth=1 - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:i <- $r12 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 924 47 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:924:47 - shlq $4, %rsi - addq -72(%rbp), %rsi ## 8-byte Folded Reload - .loc 1 924 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:924:24 - movq %r13, %rdi - callq _luaF_findupval -Ltmp6451: - .loc 1 0 24 ## /Users/dylan/github/ravi/src/lvm.c:0:24 - jmp LBB22_9 -Ltmp6452: - .p2align 4, 0x90 -LBB22_8: ## in Loop: Header=BB22_6 Depth=1 - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:i <- $r12 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 926 24 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:926:24 - movq -64(%rbp), %rax ## 8-byte Reload - movq (%rax,%rsi,8), %rax -Ltmp6453: -LBB22_9: ## in Loop: Header=BB22_6 Depth=1 - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:i <- $r12 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 24 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:24 - movq %rax, 32(%r14,%r12,8) - .loc 1 927 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:927:29 - incq 8(%rax) -Ltmp6454: - ##DEBUG_VALUE: pushclosure:i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 922 25 ## /Users/dylan/github/ravi/src/lvm.c:922:25 - incq %r12 - .loc 1 922 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:922:17 - addq $24, %r15 - cmpq %r12, %rbx -Ltmp6455: - .loc 1 922 3 ## /Users/dylan/github/ravi/src/lvm.c:922:3 - jne LBB22_6 -Ltmp6456: -LBB22_10: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq -56(%rbp), %rax ## 8-byte Reload -Ltmp6457: - .loc 1 930 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:930:8 - testb $4, 9(%rax) -Ltmp6458: - .loc 1 930 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:930:7 - jne LBB22_12 -Ltmp6459: -## %bb.11: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 931 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:931:14 - movq %r14, 96(%rax) -Ltmp6460: -LBB22_12: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 932 1 ## /Users/dylan/github/ravi/src/lvm.c:932:1 - addq $40, %rsp - popq %rbx -Ltmp6461: - popq %r12 - popq %r13 -Ltmp6462: - popq %r14 -Ltmp6463: - popq %r15 - popq %rbp - retq -LBB22_14: - ##DEBUG_VALUE: pushclosure:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] -Ltmp6464: - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 921 3 ## /Users/dylan/github/ravi/src/lvm.c:921:3 - leaq L___func__.pushclosure(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $921, %edx ## imm = 0x399 - callq ___assert_rtn -Ltmp6465: -LBB22_13: - ##DEBUG_VALUE: io <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: x_ <- $r14 - ##DEBUG_VALUE: pushclosure:ncl <- $r14 - ##DEBUG_VALUE: pushclosure:uv <- $r15 - ##DEBUG_VALUE: pushclosure:nup <- $ebx - ##DEBUG_VALUE: pushclosure:L <- $r13 - ##DEBUG_VALUE: pushclosure:p <- $r12 - ##DEBUG_VALUE: pushclosure:encup <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:base <- [DW_OP_constu 72, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: pushclosure:ra <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - leaq L___func__.pushclosure(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $921, %edx ## imm = 0x399 - callq ___assert_rtn -Ltmp6466: -Lfunc_end22: - .cfi_endproc - ## -- End function - .globl _ravi_dump_value ## -- Begin function ravi_dump_value - .p2align 4, 0x90 -_ravi_dump_value: ## @ravi_dump_value -Lfunc_begin23: - .loc 1 2469 0 ## /Users/dylan/github/ravi/src/lvm.c:2469:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi -Ltmp6467: - .loc 1 2471 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2471:7 - movzwl 8(%rsi), %eax - cmpl $22, %eax -Ltmp6468: - .loc 1 2471 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2471:7 - je LBB23_3 -Ltmp6469: -## %bb.1: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - movzwl %ax, %ecx - cmpl $32806, %ecx ## imm = 0x8026 - jne LBB23_4 -Ltmp6470: -## %bb.2: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2472 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2472:5 - leaq L_str.234(%rip), %rdi -Ltmp6471: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6472: -LBB23_3: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2474 5 ## /Users/dylan/github/ravi/src/lvm.c:2474:5 - leaq L_str.233(%rip), %rdi -Ltmp6473: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6474: -LBB23_4: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2475 12 ## /Users/dylan/github/ravi/src/lvm.c:2475:12 - movl %eax, %ecx - andl $127, %ecx - cmpl $70, %ecx -Ltmp6475: - .loc 1 2475 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2475:12 - jne LBB23_5 -Ltmp6476: -## %bb.26: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2476 2 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2476:2 - leaq L_str.232(%rip), %rdi -Ltmp6477: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6478: -LBB23_5: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2477 12 ## /Users/dylan/github/ravi/src/lvm.c:2477:12 - cmpl $32774, %eax ## imm = 0x8006 -Ltmp6479: - .loc 1 2477 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2477:12 - jne LBB23_6 -Ltmp6480: -## %bb.27: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2478 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2478:5 - leaq L_str.231(%rip), %rdi -Ltmp6481: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6482: -LBB23_6: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2479 12 ## /Users/dylan/github/ravi/src/lvm.c:2479:12 - movl %eax, %ecx - andl $15, %ecx - cmpl $6, %ecx -Ltmp6483: - .loc 1 2479 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2479:12 - jne LBB23_7 -Ltmp6484: -## %bb.28: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2480 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2480:5 - leaq L_str.230(%rip), %rdi -Ltmp6485: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6486: -LBB23_7: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2481 37 ## /Users/dylan/github/ravi/src/lvm.c:2481:37 - movl %eax, %edx - orl $16, %edx - cmpl $32788, %edx ## imm = 0x8014 - jne LBB23_8 -Ltmp6487: -LBB23_10: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2483 22 ## /Users/dylan/github/ravi/src/lvm.c:2483:22 - cmpl $4, %ecx - jne LBB23_29 -Ltmp6488: -## %bb.11: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - movq (%rsi), %rsi -Ltmp6489: - movb 8(%rsi), %al - andb $15, %al - cmpb $4, %al - jne LBB23_30 -Ltmp6490: -## %bb.12: - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - addq $24, %rsi - .loc 1 2483 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2483:5 - leaq L_.str.160(%rip), %rdi -Ltmp6491: - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - xorl %eax, %eax - popq %rbp - jmp _printf ## TAILCALL -Ltmp6492: -LBB23_8: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2481 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2481:12 - movl %eax, %edx - andb $15, %dl - cmpb $5, %dl - je LBB23_14 -Ltmp6493: -## %bb.9: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - cmpb $4, %dl - je LBB23_10 -Ltmp6494: -## %bb.15: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2486 12 ## /Users/dylan/github/ravi/src/lvm.c:2486:12 - cmpl $19, %eax - ja LBB23_16 -Ltmp6495: -## %bb.31: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 0 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - movl %eax, %eax - leaq LJTI23_0(%rip), %rcx - movslq (%rcx,%rax,4), %rax - addq %rcx, %rax - jmpq *%rax -Ltmp6496: -LBB23_19: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2487 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2487:5 - leaq L_str.228(%rip), %rdi -Ltmp6497: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6498: -LBB23_14: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2485 5 ## /Users/dylan/github/ravi/src/lvm.c:2485:5 - leaq L_str.229(%rip), %rdi -Ltmp6499: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6500: -LBB23_16: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2486 12 ## /Users/dylan/github/ravi/src/lvm.c:2486:12 - movzwl %ax, %eax - cmpl $32775, %eax ## imm = 0x8007 - je LBB23_23 -Ltmp6501: -## %bb.17: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - cmpl $32776, %eax ## imm = 0x8008 - jne LBB23_25 -Ltmp6502: -## %bb.18: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2499 5 ## /Users/dylan/github/ravi/src/lvm.c:2499:5 - leaq L_str.224(%rip), %rdi -Ltmp6503: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6504: -LBB23_25: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2501 5 ## /Users/dylan/github/ravi/src/lvm.c:2501:5 - leaq L_str.223(%rip), %rdi -Ltmp6505: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6506: -LBB23_24: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2497 5 ## /Users/dylan/github/ravi/src/lvm.c:2497:5 - leaq L_str.225(%rip), %rdi -Ltmp6507: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6508: -LBB23_22: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2493 5 ## /Users/dylan/github/ravi/src/lvm.c:2493:5 - leaq L_str.227(%rip), %rdi -Ltmp6509: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6510: -LBB23_20: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2489 22 ## /Users/dylan/github/ravi/src/lvm.c:2489:22 - movsd (%rsi), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2489 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2489:5 - leaq L_.str.165(%rip), %rdi -Ltmp6511: - movb $1, %al - popq %rbp - jmp _printf ## TAILCALL -Ltmp6512: -LBB23_21: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2491 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2491:33 - movq (%rsi), %rsi -Ltmp6513: - .loc 1 2491 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2491:5 - leaq L_.str.167(%rip), %rdi -Ltmp6514: - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - xorl %eax, %eax - popq %rbp - jmp _printf ## TAILCALL -Ltmp6515: -LBB23_23: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2495 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2495:5 - leaq L_str.226(%rip), %rdi -Ltmp6516: - popq %rbp - jmp _puts ## TAILCALL -Ltmp6517: -LBB23_29: - ##DEBUG_VALUE: ravi_dump_value:stack_ptr <- $rsi - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - .loc 1 2483 22 ## /Users/dylan/github/ravi/src/lvm.c:2483:22 - leaq L___func__.ravi_dump_value(%rip), %rdi -Ltmp6518: - leaq L_.str(%rip), %rsi -Ltmp6519: - leaq L_.str.161(%rip), %rcx - movl $2483, %edx ## imm = 0x9B3 - callq ___assert_rtn -Ltmp6520: -LBB23_30: - ##DEBUG_VALUE: ravi_dump_value:L <- $rdi - leaq L___func__.ravi_dump_value(%rip), %rdi -Ltmp6521: - leaq L_.str(%rip), %rsi - leaq L_.str.162(%rip), %rcx - movl $2483, %edx ## imm = 0x9B3 - callq ___assert_rtn -Ltmp6522: -Lfunc_end23: - .cfi_endproc - .p2align 2, 0x90 - .data_region jt32 -.set L23_0_set_19, LBB23_19-LJTI23_0 -.set L23_0_set_24, LBB23_24-LJTI23_0 -.set L23_0_set_22, LBB23_22-LJTI23_0 -.set L23_0_set_20, LBB23_20-LJTI23_0 -.set L23_0_set_25, LBB23_25-LJTI23_0 -.set L23_0_set_21, LBB23_21-LJTI23_0 -LJTI23_0: - .long L23_0_set_19 - .long L23_0_set_24 - .long L23_0_set_22 - .long L23_0_set_20 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_25 - .long L23_0_set_21 - .end_data_region - ## -- End function - .globl _ravi_dump_stack ## -- Begin function ravi_dump_stack - .p2align 4, 0x90 -_ravi_dump_stack: ## @ravi_dump_stack -Lfunc_begin24: - .loc 1 2573 0 ## /Users/dylan/github/ravi/src/lvm.c:2573:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp6523: - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: ravi_dump_stack:L <- $rdi - ##DEBUG_VALUE: ravi_dump_stack:s <- $rsi -Ltmp6524: - ##DEBUG_VALUE: ravi_dump_ci:L <- $rdi - .loc 1 2574 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2574:8 - testq %rsi, %rsi -Ltmp6525: - .loc 1 2574 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2574:7 - je LBB24_46 -Ltmp6526: -## %bb.1: - ##DEBUG_VALUE: ravi_dump_ci:L <- $rdi - ##DEBUG_VALUE: ravi_dump_stack:s <- $rsi - ##DEBUG_VALUE: ravi_dump_stack:L <- $rdi - .loc 1 0 7 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq %rsi, %r14 -Ltmp6527: - ##DEBUG_VALUE: ravi_dump_stack:s <- $r14 - movq %rdi, %r13 -Ltmp6528: - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - .loc 1 2576 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2576:21 - movq 32(%rdi), %r12 -Ltmp6529: - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2577 3 ## /Users/dylan/github/ravi/src/lvm.c:2577:3 - leaq L_str.221(%rip), %r15 - movq %r15, %rdi - callq _puts -Ltmp6530: - .loc 1 2578 3 ## /Users/dylan/github/ravi/src/lvm.c:2578:3 - leaq L_.str.175(%rip), %rdi - xorl %eax, %eax - movq %r14, %rsi - callq _printf -Ltmp6531: - .loc 1 2579 3 ## /Users/dylan/github/ravi/src/lvm.c:2579:3 - movq %r15, %rdi - callq _puts -Ltmp6532: - .loc 1 2580 36 ## /Users/dylan/github/ravi/src/lvm.c:2580:36 - movq 16(%r13), %rsi - .loc 1 2580 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2580:40 - subq 56(%r13), %rsi - shrq $4, %rsi - .loc 1 2580 3 ## /Users/dylan/github/ravi/src/lvm.c:2580:3 - leaq L_.str.176(%rip), %rdi - xorl %eax, %eax - ## kill: def $esi killed $esi killed $rsi - callq _printf -Ltmp6533: - .loc 1 2581 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2581:3 - testq %r12, %r12 - je LBB24_45 -Ltmp6534: -## %bb.2: - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - ##DEBUG_VALUE: ravi_dump_stack:s <- $r14 - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - leaq LJTI24_0(%rip), %rbx - leaq L_str.237(%rip), %r14 -Ltmp6535: - movq %r13, -48(%rbp) ## 8-byte Spill -Ltmp6536: - .p2align 4, 0x90 -LBB24_3: ## =>This Loop Header: Depth=1 - ## Child Loop BB24_13 Depth 2 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - .loc 1 2505 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2505:20 - movq (%r12), %rcx -Ltmp6537: - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - .loc 1 2506 19 ## /Users/dylan/github/ravi/src/lvm.c:2506:19 - movzwl 8(%rcx), %edx - movl %edx, %esi - andl $127, %esi -Ltmp6538: - ##DEBUG_VALUE: ravi_dump_ci:func_type <- $esi - .loc 1 2512 3 ## /Users/dylan/github/ravi/src/lvm.c:2512:3 - addl $-6, %esi -Ltmp6539: - roll $28, %esi - cmpl $4, %esi - ja LBB24_44 -Ltmp6540: -## %bb.4: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq 56(%r13), %rax - movq %rcx, %r15 - subq %rax, %r15 - shrq $4, %r15 -Ltmp6541: - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - movslq (%rbx,%rsi,4), %rsi - addq %rbx, %rsi - jmpq *%rsi -Ltmp6542: -LBB24_9: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 2526 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2526:9 - movzwl %dx, %edx - cmpl $32774, %edx ## imm = 0x8006 - jne LBB24_47 -Ltmp6543: -## %bb.10: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - movq (%rcx), %rcx -Ltmp6544: - cmpb $6, 8(%rcx) - jne LBB24_48 -Ltmp6545: -## %bb.11: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 0 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - movq 8(%r12), %r13 -Ltmp6546: - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- [DW_OP_constu 16, DW_OP_minus, DW_OP_stack_value] $r13 - .loc 1 2526 25 ## /Users/dylan/github/ravi/src/lvm.c:2526:25 - movq 24(%rcx), %rcx -Ltmp6547: - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - .loc 1 2527 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2527:20 - movq %rcx, -56(%rbp) ## 8-byte Spill - movq 32(%r12), %r14 -Ltmp6548: - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - .loc 1 0 0 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - leaq -16(%r13), %rbx -Ltmp6549: - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - .loc 1 2533 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:20 - cmpq %r14, %rbx -Ltmp6550: - .loc 1 2533 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - jb LBB24_43 -Ltmp6551: -## %bb.12: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2528 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2528:17 - subq %rax, %r13 - shrq $4, %r13 -Ltmp6552: - ##DEBUG_VALUE: ravi_dump_ci:i <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] $r13d - .loc 1 2533 3 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - decl %r13d -Ltmp6553: - .p2align 4, 0x90 -LBB24_13: ## Parent Loop BB24_3 Depth=1 - ## => This Inner Loop Header: Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- [DW_OP_constu 16, DW_OP_minus, DW_OP_stack_value] $rbx - .loc 1 2534 59 ## /Users/dylan/github/ravi/src/lvm.c:2534:59 - movq %rbx, %rdx - subq %r14, %rdx - leaq L_.str.206(%rip), %rax - movq %rax, %rsi - .loc 1 2534 68 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2534:68 - movq %rax, %rcx - leaq L_.str.205(%rip), %rax - cmoveq %rax, %rcx - .loc 1 2534 59 ## /Users/dylan/github/ravi/src/lvm.c:2534:59 - shrq $4, %rdx - .loc 1 2534 116 ## /Users/dylan/github/ravi/src/lvm.c:2534:116 - movq -48(%rbp), %rax ## 8-byte Reload - cmpq 16(%rax), %rbx - .loc 1 2534 106 ## /Users/dylan/github/ravi/src/lvm.c:2534:106 - movq %rsi, %r8 - leaq L_.str.207(%rip), %rax - cmoveq %rax, %r8 - .loc 1 2534 5 ## /Users/dylan/github/ravi/src/lvm.c:2534:5 - xorl %eax, %eax - leaq L_.str.204(%rip), %rdi - movl %r13d, %esi - ## kill: def $edx killed $edx killed $rdx - callq _printf -Ltmp6554: - .loc 1 2535 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2535:9 - movzwl 8(%rbx), %eax - cmpl $22, %eax -Ltmp6555: - .loc 1 2535 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2535:9 - je LBB24_16 -Ltmp6556: -## %bb.14: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - movzwl %ax, %ecx - cmpl $32806, %ecx ## imm = 0x8026 - jne LBB24_17 -Ltmp6557: -## %bb.15: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2536 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2536:7 - leaq L_str.234(%rip), %rdi - jmp LBB24_41 -Ltmp6558: - .p2align 4, 0x90 -LBB24_16: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2538 7 ## /Users/dylan/github/ravi/src/lvm.c:2538:7 - leaq L_str.233(%rip), %rdi - jmp LBB24_41 -Ltmp6559: - .p2align 4, 0x90 -LBB24_17: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2539 14 ## /Users/dylan/github/ravi/src/lvm.c:2539:14 - movl %eax, %ecx - andl $127, %ecx - cmpl $70, %ecx -Ltmp6560: - .loc 1 2539 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2539:14 - jne LBB24_19 -Ltmp6561: -## %bb.18: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2540 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2540:7 - leaq L_str.232(%rip), %rdi - jmp LBB24_41 -Ltmp6562: -LBB24_19: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2541 14 ## /Users/dylan/github/ravi/src/lvm.c:2541:14 - cmpl $32774, %eax ## imm = 0x8006 -Ltmp6563: - .loc 1 2541 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2541:14 - jne LBB24_21 -Ltmp6564: -## %bb.20: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2542 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2542:7 - leaq L_str.231(%rip), %rdi - jmp LBB24_41 -Ltmp6565: -LBB24_21: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2543 14 ## /Users/dylan/github/ravi/src/lvm.c:2543:14 - movl %eax, %ecx - andl $15, %ecx - cmpl $6, %ecx -Ltmp6566: - .loc 1 2543 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2543:14 - jne LBB24_23 -Ltmp6567: -## %bb.22: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2544 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2544:7 - leaq L_str.230(%rip), %rdi -Ltmp6568: - .p2align 4, 0x90 -LBB24_41: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - callq _puts -Ltmp6569: - ##DEBUG_VALUE: ravi_dump_ci:i <- [DW_OP_constu 1, DW_OP_minus, DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 2533 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:20 - decl %r13d - addq $-16, %rbx -Ltmp6570: - cmpq %r14, %rbx -Ltmp6571: - .loc 1 2533 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - jae LBB24_13 - jmp LBB24_43 -Ltmp6572: -LBB24_23: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2545 39 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2545:39 - movl %eax, %edx - orl $16, %edx - cmpl $32788, %edx ## imm = 0x8014 - jne LBB24_24 -Ltmp6573: -LBB24_26: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2547 24 ## /Users/dylan/github/ravi/src/lvm.c:2547:24 - cmpl $4, %ecx - jne LBB24_49 -Ltmp6574: -## %bb.27: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - movq (%rbx), %rsi - movzbl 8(%rsi), %eax - andb $15, %al - cmpb $4, %al - jne LBB24_50 -Ltmp6575: -## %bb.28: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - addq $24, %rsi - .loc 1 2547 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2547:7 - xorl %eax, %eax - leaq L_.str.160(%rip), %rdi - callq _printf -Ltmp6576: - ##DEBUG_VALUE: ravi_dump_ci:i <- [DW_OP_constu 1, DW_OP_minus, DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 2533 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:20 - decl %r13d - addq $-16, %rbx -Ltmp6577: - cmpq %r14, %rbx -Ltmp6578: - .loc 1 2533 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - jae LBB24_13 - jmp LBB24_43 -Ltmp6579: -LBB24_24: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2545 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2545:14 - movl %eax, %edx - andb $15, %dl - cmpb $5, %dl - je LBB24_29 -Ltmp6580: -## %bb.25: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - cmpb $4, %dl - je LBB24_26 -Ltmp6581: -## %bb.30: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2550 14 ## /Users/dylan/github/ravi/src/lvm.c:2550:14 - cmpl $19, %eax - ja LBB24_31 -Ltmp6582: -## %bb.51: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 0 14 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:14 - movl %eax, %eax - leaq LJTI24_1(%rip), %rcx - movslq (%rcx,%rax,4), %rax - addq %rcx, %rax - jmpq *%rax -Ltmp6583: -LBB24_34: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2551 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2551:7 - leaq L_str.228(%rip), %rdi - jmp LBB24_41 -Ltmp6584: -LBB24_29: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2549 7 ## /Users/dylan/github/ravi/src/lvm.c:2549:7 - leaq L_str.229(%rip), %rdi - jmp LBB24_41 -Ltmp6585: -LBB24_31: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2550 14 ## /Users/dylan/github/ravi/src/lvm.c:2550:14 - movzwl %ax, %eax - cmpl $32775, %eax ## imm = 0x8007 - je LBB24_38 -Ltmp6586: -## %bb.32: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - cmpl $32776, %eax ## imm = 0x8008 - jne LBB24_40 -Ltmp6587: -## %bb.33: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2563 7 ## /Users/dylan/github/ravi/src/lvm.c:2563:7 - leaq L_str.224(%rip), %rdi - jmp LBB24_41 -Ltmp6588: -LBB24_40: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2565 7 ## /Users/dylan/github/ravi/src/lvm.c:2565:7 - leaq L_str.223(%rip), %rdi - jmp LBB24_41 -Ltmp6589: -LBB24_39: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2561 7 ## /Users/dylan/github/ravi/src/lvm.c:2561:7 - leaq L_str.225(%rip), %rdi - jmp LBB24_41 -Ltmp6590: -LBB24_37: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2557 7 ## /Users/dylan/github/ravi/src/lvm.c:2557:7 - leaq L_str.227(%rip), %rdi - jmp LBB24_41 -Ltmp6591: -LBB24_35: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2553 24 ## /Users/dylan/github/ravi/src/lvm.c:2553:24 - movsd (%rbx), %xmm0 ## xmm0 = mem[0],zero - .loc 1 2553 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2553:7 - movb $1, %al - leaq L_.str.165(%rip), %rdi - callq _printf -Ltmp6592: - ##DEBUG_VALUE: ravi_dump_ci:i <- [DW_OP_constu 1, DW_OP_minus, DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 2533 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:20 - decl %r13d - addq $-16, %rbx -Ltmp6593: - cmpq %r14, %rbx -Ltmp6594: - .loc 1 2533 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - jae LBB24_13 - jmp LBB24_43 -Ltmp6595: -LBB24_36: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2555 35 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2555:35 - movq (%rbx), %rsi - .loc 1 2555 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2555:7 - xorl %eax, %eax - leaq L_.str.167(%rip), %rdi - callq _printf -Ltmp6596: - ##DEBUG_VALUE: ravi_dump_ci:i <- [DW_OP_constu 1, DW_OP_minus, DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 2533 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2533:20 - decl %r13d - addq $-16, %rbx -Ltmp6597: - cmpq %r14, %rbx -Ltmp6598: - .loc 1 2533 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2533:3 - jae LBB24_13 - jmp LBB24_43 -Ltmp6599: -LBB24_38: ## in Loop: Header=BB24_13 Depth=2 - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2559 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2559:7 - leaq L_str.226(%rip), %rdi - jmp LBB24_41 -Ltmp6600: - .p2align 4, 0x90 -LBB24_8: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 2522 5 ## /Users/dylan/github/ravi/src/lvm.c:2522:5 - xorl %eax, %eax - leaq L_.str.201(%rip), %rdi - jmp LBB24_6 -Ltmp6601: -LBB24_7: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 2518 5 ## /Users/dylan/github/ravi/src/lvm.c:2518:5 - xorl %eax, %eax - leaq L_.str.200(%rip), %rdi - jmp LBB24_6 -Ltmp6602: -LBB24_5: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 2514 4 ## /Users/dylan/github/ravi/src/lvm.c:2514:4 - xorl %eax, %eax - leaq L_.str.198(%rip), %rdi -Ltmp6603: -LBB24_6: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 0 4 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:4 - movl %r15d, %esi - callq _printf -Ltmp6604: - movq %r14, %rdi - callq _puts -Ltmp6605: -LBB24_44: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - .loc 1 2583 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2583:14 - movq 16(%r12), %r12 -Ltmp6606: - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2581 3 ## /Users/dylan/github/ravi/src/lvm.c:2581:3 - testq %r12, %r12 - jne LBB24_3 - jmp LBB24_45 -Ltmp6607: -LBB24_43: ## in Loop: Header=BB24_3 Depth=1 - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq -56(%rbp), %rax ## 8-byte Reload -Ltmp6608: - .loc 1 2569 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2569:25 - movzbl 12(%rax), %edx - .loc 1 2569 49 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2569:49 - movzbl 10(%rax), %ecx - .loc 1 2569 64 ## /Users/dylan/github/ravi/src/lvm.c:2569:64 - movl 36(%rax), %r8d - .loc 1 2567 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2567:3 - xorl %eax, %eax - leaq L_.str.208(%rip), %rdi - movl %r15d, %esi - callq _printf -Ltmp6609: - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - leaq L_str.237(%rip), %r14 -Ltmp6610: - .loc 1 2570 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2570:3 - movq %r14, %rdi - callq _puts -Ltmp6611: - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq -48(%rbp), %r13 ## 8-byte Reload - leaq LJTI24_0(%rip), %rbx -Ltmp6612: - .loc 1 2583 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2583:14 - movq 16(%r12), %r12 -Ltmp6613: - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2581 3 ## /Users/dylan/github/ravi/src/lvm.c:2581:3 - testq %r12, %r12 - jne LBB24_3 -Ltmp6614: -LBB24_45: - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2585 3 ## /Users/dylan/github/ravi/src/lvm.c:2585:3 - movl $10, %edi - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp6615: - popq %r13 - popq %r14 - popq %r15 - popq %rbp - jmp _putchar ## TAILCALL -Ltmp6616: -LBB24_46: - ##DEBUG_VALUE: ravi_dump_stack:s <- $rsi - ##DEBUG_VALUE: ravi_dump_stack:L <- $rdi - .loc 1 2586 1 ## /Users/dylan/github/ravi/src/lvm.c:2586:1 - addq $24, %rsp - popq %rbx - popq %r12 - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp6617: -LBB24_47: - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:func <- $rcx - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - .loc 1 2526 9 ## /Users/dylan/github/ravi/src/lvm.c:2526:9 - leaq L___func__.ravi_dump_ci(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.202(%rip), %rcx -Ltmp6618: - movl $2526, %edx ## imm = 0x9DE - callq ___assert_rtn -Ltmp6619: -LBB24_48: - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:L <- $r13 - ##DEBUG_VALUE: ravi_dump_ci:L <- $r13 - leaq L___func__.ravi_dump_ci(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.203(%rip), %rcx - movl $2526, %edx ## imm = 0x9DE - callq ___assert_rtn -Ltmp6620: -LBB24_49: - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - .loc 1 2547 24 ## /Users/dylan/github/ravi/src/lvm.c:2547:24 - leaq L___func__.ravi_dump_ci(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.161(%rip), %rcx - movl $2547, %edx ## imm = 0x9F3 - callq ___assert_rtn -Ltmp6621: -LBB24_50: - ##DEBUG_VALUE: ravi_dump_ci:stack_ptr <- $rbx - ##DEBUG_VALUE: ravi_dump_ci:base <- $r14 - ##DEBUG_VALUE: ravi_dump_ci:p <- [DW_OP_constu 56, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_dump_ci:funcpos <- $r15d - ##DEBUG_VALUE: ravi_dump_ci:ci <- $r12 - ##DEBUG_VALUE: ravi_dump_stack:ci <- $r12 - leaq L___func__.ravi_dump_ci(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.162(%rip), %rcx - movl $2547, %edx ## imm = 0x9F3 - callq ___assert_rtn -Ltmp6622: -Lfunc_end24: - .cfi_endproc - .p2align 2, 0x90 - .data_region jt32 -.set L24_0_set_9, LBB24_9-LJTI24_0 -.set L24_0_set_7, LBB24_7-LJTI24_0 -.set L24_0_set_8, LBB24_8-LJTI24_0 -.set L24_0_set_44, LBB24_44-LJTI24_0 -.set L24_0_set_5, LBB24_5-LJTI24_0 -LJTI24_0: - .long L24_0_set_9 - .long L24_0_set_7 - .long L24_0_set_8 - .long L24_0_set_44 - .long L24_0_set_5 -.set L24_1_set_34, LBB24_34-LJTI24_1 -.set L24_1_set_39, LBB24_39-LJTI24_1 -.set L24_1_set_37, LBB24_37-LJTI24_1 -.set L24_1_set_35, LBB24_35-LJTI24_1 -.set L24_1_set_40, LBB24_40-LJTI24_1 -.set L24_1_set_36, LBB24_36-LJTI24_1 -LJTI24_1: - .long L24_1_set_34 - .long L24_1_set_39 - .long L24_1_set_37 - .long L24_1_set_35 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_40 - .long L24_1_set_36 - .end_data_region - ## -- End function - .globl _ravi_dump_stacktop ## -- Begin function ravi_dump_stacktop - .p2align 4, 0x90 -_ravi_dump_stacktop: ## @ravi_dump_stacktop -Lfunc_begin25: - .loc 1 2588 0 ## /Users/dylan/github/ravi/src/lvm.c:2588:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: ravi_dump_stacktop:L <- $rdi - ##DEBUG_VALUE: ravi_dump_stacktop:L <- $rdi - ##DEBUG_VALUE: ravi_dump_stacktop:s <- $rsi - ##DEBUG_VALUE: ravi_dump_stacktop:s <- $rsi -Ltmp6623: - .loc 1 2591 22 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2591:22 - movq 16(%rdi), %rcx - .loc 1 2589 21 ## /Users/dylan/github/ravi/src/lvm.c:2589:21 - movq 32(%rdi), %rax -Ltmp6624: - ##DEBUG_VALUE: ravi_dump_stacktop:ci <- $rax - .loc 1 2590 37 ## /Users/dylan/github/ravi/src/lvm.c:2590:37 - movq 56(%rdi), %rdi -Ltmp6625: - .loc 1 2590 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2590:27 - movq (%rax), %rdx - .loc 1 2592 26 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2592:26 - movq 8(%rax), %r8 - .loc 1 2590 32 ## /Users/dylan/github/ravi/src/lvm.c:2590:32 - subq %rdi, %rdx - shrq $4, %rdx -Ltmp6626: - ##DEBUG_VALUE: ravi_dump_stacktop:funcpos <- $edx - .loc 1 2591 26 ## /Users/dylan/github/ravi/src/lvm.c:2591:26 - subq %rdi, %rcx - shrq $4, %rcx -Ltmp6627: - ##DEBUG_VALUE: ravi_dump_stacktop:top <- $ecx - .loc 1 2592 30 ## /Users/dylan/github/ravi/src/lvm.c:2592:30 - subq %rdi, %r8 - shrq $4, %r8 -Ltmp6628: - ##DEBUG_VALUE: ravi_dump_stacktop:ci_top <- $r8d - .loc 1 2593 3 ## /Users/dylan/github/ravi/src/lvm.c:2593:3 - leaq L_.str.178(%rip), %rdi - xorl %eax, %eax -Ltmp6629: - ##DEBUG_VALUE: ravi_dump_stacktop:s <- $rsi - ## kill: def $edx killed $edx killed $rdx - ## kill: def $ecx killed $ecx killed $rcx - ## kill: def $r8d killed $r8d killed $r8 - popq %rbp - jmp _printf ## TAILCALL -Ltmp6630: -Lfunc_end25: - .cfi_endproc - ## -- End function - .globl _ravi_debug_trace ## -- Begin function ravi_debug_trace - .p2align 4, 0x90 -_ravi_debug_trace: ## @ravi_debug_trace -Lfunc_begin26: - .loc 1 2602 0 ## /Users/dylan/github/ravi/src/lvm.c:2602:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $152, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: ravi_debug_trace:L <- $rdi - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - movq %rdi, %r13 - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - movq %rax, -48(%rbp) - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi -Ltmp6631: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2603 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - movq _ravi_parser_debug@GOTPCREL(%rip), %rax - testb $8, (%rax) -Ltmp6632: - .loc 1 2603 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - jne LBB26_2 -Ltmp6633: -## %bb.1: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi - .loc 1 2632 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2632:23 - movq 32(%r13), %rax - movq (%rax), %rcx - movzwl 8(%rcx), %esi -Ltmp6634: - cmpl $32774, %esi ## imm = 0x8006 - je LBB26_8 - jmp LBB26_16 -Ltmp6635: -LBB26_2: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi - .loc 1 2603 3 ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - movq 32(%r13), %rax -Ltmp6636: - ##DEBUG_VALUE: ci <- $rax - movq (%rax), %r15 - movzwl 8(%r15), %ecx - andl $31, %ecx - cmpl $6, %ecx - jne LBB26_13 -Ltmp6637: -## %bb.3: - ##DEBUG_VALUE: ci <- $rax - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movl %esi, -164(%rbp) ## 4-byte Spill -Ltmp6638: - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - .loc 1 2603 3 ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - movq (%r15), %rcx - movb 8(%rcx), %bl - andb $15, %bl - cmpb $6, %bl - jne LBB26_14 -Ltmp6639: -## %bb.4: - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ci <- $rax - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - movq 16(%r13), %rbx - movq 8(%rax), %r12 - movq 56(%r13), %rsi - subq %rsi, %r15 - shrq $4, %r15 -Ltmp6640: - ##DEBUG_VALUE: funcpos <- $r15d - subq %rsi, %rbx - shrq $4, %rbx -Ltmp6641: - ##DEBUG_VALUE: top <- $ebx - subq %rsi, %r12 - shrq $4, %r12 -Ltmp6642: - ##DEBUG_VALUE: ci_top <- $r12d - movq 32(%rax), %r14 - subq %rsi, %r14 - shrq $4, %r14 -Ltmp6643: - ##DEBUG_VALUE: base <- $r14d - movq 24(%rcx), %rax -Ltmp6644: - movq 56(%rax), %rax - movl %edx, -168(%rbp) ## 4-byte Spill -Ltmp6645: - ##DEBUG_VALUE: ravi_debug_trace:pc <- [DW_OP_constu 168, DW_OP_minus] [$rbp+0] - movslq %edx, %rcx - movq %rcx, -176(%rbp) ## 8-byte Spill - movl (%rax,%rcx,4), %edx - leaq -160(%rbp), %rdi - movl $100, %esi - callq _raviP_instruction_to_str -Ltmp6646: - movslq -164(%rbp), %rax ## 4-byte Folded Reload - movq _luaP_opnames@GOTPCREL(%rip), %rcx - movq (%rcx,%rax,8), %rsi - subl %r14d, %ebx -Ltmp6647: - subl %r14d, %r12d -Ltmp6648: - movl %r12d, (%rsp) - leaq L_.str.181(%rip), %rdi - xorl %eax, %eax - leaq -160(%rbp), %rdx - movl %r15d, %ecx - movq -176(%rbp), %r8 ## 8-byte Reload - ## kill: def $r8d killed $r8d killed $r8 - movl %ebx, %r9d - callq _printf -Ltmp6649: - movq 16(%r13), %rcx - movq 32(%r13), %rax - cmpq %rcx, 32(%rax) - ja LBB26_15 -Ltmp6650: -## %bb.5: - ##DEBUG_VALUE: ravi_debug_trace:pc <- [DW_OP_constu 168, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: base <- $r14d - ##DEBUG_VALUE: funcpos <- $r15d - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - movslq 184(%r13), %rdx - shlq $4, %rdx - addq 56(%r13), %rdx - cmpq %rdx, %rcx - jae LBB26_15 -Ltmp6651: -## %bb.6: - ##DEBUG_VALUE: ravi_debug_trace:pc <- [DW_OP_constu 168, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movl -168(%rbp), %edx ## 4-byte Reload - .loc 1 2632 23 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2632:23 - movq (%rax), %rcx - movzwl 8(%rcx), %esi - cmpl $32774, %esi ## imm = 0x8006 - jne LBB26_16 -Ltmp6652: -LBB26_8: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - movq (%rcx), %rcx -Ltmp6653: - ##DEBUG_VALUE: ravi_debug_trace:closure <- $rcx - cmpb $6, 8(%rcx) - jne LBB26_17 -Ltmp6654: -## %bb.9: - ##DEBUG_VALUE: ravi_debug_trace:closure <- $rcx - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2633 34 ## /Users/dylan/github/ravi/src/lvm.c:2633:34 - movq 24(%rcx), %rcx -Ltmp6655: - .loc 1 2633 37 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2633:37 - movq 56(%rcx), %rcx - .loc 1 2633 25 ## /Users/dylan/github/ravi/src/lvm.c:2633:25 - movslq %edx, %rdx - leaq 4(%rcx,%rdx,4), %rcx - .loc 1 2633 22 ## /Users/dylan/github/ravi/src/lvm.c:2633:22 - movq %rcx, 40(%rax) -Ltmp6656: - .loc 1 2634 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2634:19 - testb $12, 200(%r13) -Ltmp6657: - .loc 1 2634 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2634:7 - je LBB26_11 -Ltmp6658: -## %bb.10: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2634 53 ## /Users/dylan/github/ravi/src/lvm.c:2634:53 - movq %r13, %rdi - callq _luaG_traceexec -Ltmp6659: -LBB26_11: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 0 53 ## /Users/dylan/github/ravi/src/lvm.c:0:53 - movq ___stack_chk_guard@GOTPCREL(%rip), %rax - movq (%rax), %rax - cmpq -48(%rbp), %rax - jne LBB26_18 -Ltmp6660: -## %bb.12: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2635 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2635:1 - addq $152, %rsp - popq %rbx - popq %r12 - popq %r13 -Ltmp6661: - popq %r14 - popq %r15 - popq %rbp - retq -LBB26_18: -Ltmp6662: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - callq ___stack_chk_fail -Ltmp6663: -LBB26_15: - ##DEBUG_VALUE: ravi_debug_trace:pc <- [DW_OP_constu 168, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: base <- $r14d - ##DEBUG_VALUE: funcpos <- $r15d - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2603 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - leaq L___func__.ravi_debug_trace(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.182(%rip), %rcx - movl $2615, %edx ## imm = 0xA37 - callq ___assert_rtn -Ltmp6664: -LBB26_16: - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - .loc 1 2632 23 ## /Users/dylan/github/ravi/src/lvm.c:2632:23 - leaq L___func__.ravi_debug_trace(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.183(%rip), %rcx - movl $2632, %edx ## imm = 0xA48 - callq ___assert_rtn -Ltmp6665: -LBB26_17: - ##DEBUG_VALUE: ravi_debug_trace:closure <- $rcx - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - leaq L___func__.ravi_debug_trace(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.184(%rip), %rcx -Ltmp6666: - movl $2632, %edx ## imm = 0xA48 - callq ___assert_rtn -Ltmp6667: -LBB26_13: - ##DEBUG_VALUE: ci <- $rax - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - ##DEBUG_VALUE: ravi_debug_trace:opCode <- $esi - .loc 1 2603 3 ## /Users/dylan/github/ravi/src/lvm.c:2603:3 - leaq L___func__.ravi_debug_trace(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6668: - leaq L_.str.179(%rip), %rcx - movl $2609, %edx ## imm = 0xA31 -Ltmp6669: - callq ___assert_rtn -Ltmp6670: -LBB26_14: - ##DEBUG_VALUE: ravi_debug_trace:opCode <- [DW_OP_constu 164, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: ci <- $rax - ##DEBUG_VALUE: ravi_debug_trace:L <- $r13 - ##DEBUG_VALUE: ravi_debug_trace:pc <- $edx - leaq L___func__.ravi_debug_trace(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.180(%rip), %rcx - movl $2609, %edx ## imm = 0xA31 -Ltmp6671: - callq ___assert_rtn -Ltmp6672: -Lfunc_end26: - .cfi_endproc - ## -- End function - .globl _raviV_op_newarrayint ## -- Begin function raviV_op_newarrayint - .p2align 4, 0x90 -_raviV_op_newarrayint: ## @raviV_op_newarrayint -Lfunc_begin27: - .loc 1 2637 0 ## /Users/dylan/github/ravi/src/lvm.c:2637:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rdi - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $rsi - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $rdx -Ltmp6673: - ##DEBUG_VALUE: io <- $rdx - movq %rdx, %r15 - movq %rsi, %r14 - movq %rdi, %rbx -Ltmp6674: - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - .loc 1 2638 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2638:14 - movl $3, %esi - xorl %edx, %edx -Ltmp6675: - callq _raviH_new -Ltmp6676: - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: io <- $r15 - .loc 1 2639 3 ## /Users/dylan/github/ravi/src/lvm.c:2639:3 - movb 8(%rax), %cl - andb $14, %cl - cmpb $10, %cl - jae LBB27_9 -Ltmp6677: -## %bb.1: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - movq %rax, (%r15) - movw $-32747, 8(%r15) ## imm = 0x8015 - cmpb $21, 8(%rax) - jne LBB27_10 -Ltmp6678: -## %bb.2: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - testq %rbx, %rbx - je LBB27_3 -Ltmp6679: -## %bb.4: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - movb 9(%rax), %cl - xorb $3, %cl - movq 24(%rbx), %rax -Ltmp6680: - movb 84(%rax), %dl - xorb $3, %dl - testb %cl, %dl - je LBB27_10 -Ltmp6681: -## %bb.5: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - .loc 1 2640 3 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - cmpq $0, 24(%rax) -Ltmp6682: - .loc 1 2640 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - jle LBB27_7 -Ltmp6683: -LBB27_6: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - .loc 1 2640 3 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - addq $16, %r15 -Ltmp6684: - movq %r15, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step -Ltmp6685: - movq 8(%r14), %rax - movq %rax, 16(%rbx) -Ltmp6686: -LBB27_7: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - .loc 1 2640 3 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - movq -8(%rbx), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB27_11 -Ltmp6687: -## %bb.8: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - movl %ecx, (%rax) -Ltmp6688: - .loc 1 2641 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2641:1 - addq $8, %rsp - popq %rbx -Ltmp6689: - popq %r14 -Ltmp6690: - popq %r15 - popq %rbp - retq -LBB27_3: -Ltmp6691: - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - .loc 1 2640 3 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - movq 24, %rax -Ltmp6692: - cmpq $0, 24(%rax) -Ltmp6693: - .loc 1 2640 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - jg LBB27_6 - jmp LBB27_7 -Ltmp6694: -LBB27_10: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - .loc 1 2639 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2639:3 - leaq L___func__.raviV_op_newarrayint(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2639, %edx ## imm = 0xA4F - callq ___assert_rtn -Ltmp6695: -LBB27_9: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayint:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayint:ra <- $r15 - leaq L___func__.raviV_op_newarrayint(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $2639, %edx ## imm = 0xA4F - callq ___assert_rtn -Ltmp6696: -LBB27_11: - ##DEBUG_VALUE: raviV_op_newarrayint:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayint:ci <- $r14 - .loc 1 2640 3 ## /Users/dylan/github/ravi/src/lvm.c:2640:3 - leaq L___func__.raviV_op_newarrayint(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $2640, %edx ## imm = 0xA50 - callq ___assert_rtn -Ltmp6697: -Lfunc_end27: - .cfi_endproc - ## -- End function - .globl _raviV_op_newarrayfloat ## -- Begin function raviV_op_newarrayfloat - .p2align 4, 0x90 -_raviV_op_newarrayfloat: ## @raviV_op_newarrayfloat -Lfunc_begin28: - .loc 1 2643 0 ## /Users/dylan/github/ravi/src/lvm.c:2643:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rdi - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $rsi - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $rdx -Ltmp6698: - ##DEBUG_VALUE: io <- $rdx - movq %rdx, %r15 - movq %rsi, %r14 - movq %rdi, %rbx -Ltmp6699: - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - .loc 1 2644 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2644:14 - movl $4, %esi - xorl %edx, %edx -Ltmp6700: - callq _raviH_new -Ltmp6701: - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: io <- $r15 - .loc 1 2645 3 ## /Users/dylan/github/ravi/src/lvm.c:2645:3 - movb 8(%rax), %cl - andb $14, %cl - cmpb $10, %cl - jae LBB28_9 -Ltmp6702: -## %bb.1: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - movq %rax, (%r15) - movw $-32731, 8(%r15) ## imm = 0x8025 - cmpb $37, 8(%rax) - jne LBB28_10 -Ltmp6703: -## %bb.2: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - testq %rbx, %rbx - je LBB28_3 -Ltmp6704: -## %bb.4: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - movb 9(%rax), %cl - xorb $3, %cl - movq 24(%rbx), %rax -Ltmp6705: - movb 84(%rax), %dl - xorb $3, %dl - testb %cl, %dl - je LBB28_10 -Ltmp6706: -## %bb.5: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - .loc 1 2646 3 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - cmpq $0, 24(%rax) -Ltmp6707: - .loc 1 2646 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - jle LBB28_7 -Ltmp6708: -LBB28_6: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - .loc 1 2646 3 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - addq $16, %r15 -Ltmp6709: - movq %r15, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step -Ltmp6710: - movq 8(%r14), %rax - movq %rax, 16(%rbx) -Ltmp6711: -LBB28_7: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - .loc 1 2646 3 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - movq -8(%rbx), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB28_11 -Ltmp6712: -## %bb.8: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - movl %ecx, (%rax) -Ltmp6713: - .loc 1 2647 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2647:1 - addq $8, %rsp - popq %rbx -Ltmp6714: - popq %r14 -Ltmp6715: - popq %r15 - popq %rbp - retq -LBB28_3: -Ltmp6716: - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - .loc 1 2646 3 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - movq 24, %rax -Ltmp6717: - cmpq $0, 24(%rax) -Ltmp6718: - .loc 1 2646 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - jg LBB28_6 - jmp LBB28_7 -Ltmp6719: -LBB28_10: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - .loc 1 2645 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2645:3 - leaq L___func__.raviV_op_newarrayfloat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2645, %edx ## imm = 0xA55 - callq ___assert_rtn -Ltmp6720: -LBB28_9: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newarrayfloat:t <- $rax - ##DEBUG_VALUE: x_ <- $rax - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_newarrayfloat:ra <- $r15 - leaq L___func__.raviV_op_newarrayfloat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $2645, %edx ## imm = 0xA55 - callq ___assert_rtn -Ltmp6721: -LBB28_11: - ##DEBUG_VALUE: raviV_op_newarrayfloat:L <- $rbx - ##DEBUG_VALUE: raviV_op_newarrayfloat:ci <- $r14 - .loc 1 2646 3 ## /Users/dylan/github/ravi/src/lvm.c:2646:3 - leaq L___func__.raviV_op_newarrayfloat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $2646, %edx ## imm = 0xA56 - callq ___assert_rtn -Ltmp6722: -Lfunc_end28: - .cfi_endproc - ## -- End function - .globl _raviV_op_newtable ## -- Begin function raviV_op_newtable - .p2align 4, 0x90 -_raviV_op_newtable: ## @raviV_op_newtable -Lfunc_begin29: - .loc 1 2649 0 ## /Users/dylan/github/ravi/src/lvm.c:2649:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rdi - ##DEBUG_VALUE: raviV_op_newtable:ci <- $rsi - ##DEBUG_VALUE: raviV_op_newtable:ra <- $rdx - ##DEBUG_VALUE: raviV_op_newtable:b <- $ecx - ##DEBUG_VALUE: raviV_op_newtable:c <- $r8d -Ltmp6723: - ##DEBUG_VALUE: io <- $rdx - movl %r8d, %r12d - movl %ecx, %r14d - movq %rdx, %r15 - movq %rsi, -48(%rbp) ## 8-byte Spill - movq %rdi, %rbx -Ltmp6724: - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - .loc 1 2650 14 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2650:14 - callq _luaH_new -Ltmp6725: - movq %rax, %r13 -Ltmp6726: - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: io <- $r15 - .loc 1 2651 3 ## /Users/dylan/github/ravi/src/lvm.c:2651:3 - movb 8(%rax), %al - andb $14, %al - cmpb $10, %al - jae LBB29_10 -Ltmp6727: -## %bb.1: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - movq %r13, (%r15) - movw $-32763, 8(%r15) ## imm = 0x8005 - cmpb $5, 8(%r13) - jne LBB29_11 -Ltmp6728: -## %bb.2: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - testq %rbx, %rbx - je LBB29_4 -Ltmp6729: -## %bb.3: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - movb 9(%r13), %al - xorb $3, %al - movq 24(%rbx), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB29_11 -Ltmp6730: -LBB29_4: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2652 14 ## /Users/dylan/github/ravi/src/lvm.c:2652:14 - movl %r12d, %eax - orl %r14d, %eax - je LBB29_6 -Ltmp6731: -## %bb.5: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2652 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2652:43 - movl %r14d, %edi - callq _luaO_fb2int -Ltmp6732: - movl %eax, %r14d -Ltmp6733: - .loc 1 2652 59 ## /Users/dylan/github/ravi/src/lvm.c:2652:59 - movl %r12d, %edi - callq _luaO_fb2int -Ltmp6734: - .loc 1 2652 25 ## /Users/dylan/github/ravi/src/lvm.c:2652:25 - movq %rbx, %rdi - movq %r13, %rsi - movl %r14d, %edx - movl %eax, %ecx - callq _luaH_resize -Ltmp6735: -LBB29_6: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2653 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2653:3 - movq 24(%rbx), %rax - cmpq $0, 24(%rax) -Ltmp6736: - .loc 1 2653 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2653:3 - jle LBB29_8 -Ltmp6737: -## %bb.7: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2653 3 ## /Users/dylan/github/ravi/src/lvm.c:2653:3 - addq $16, %r15 -Ltmp6738: - movq %r15, 16(%rbx) - movq %rbx, %rdi - callq _luaC_step -Ltmp6739: - movq -48(%rbp), %rax ## 8-byte Reload - movq 8(%rax), %rax - movq %rax, 16(%rbx) -Ltmp6740: -LBB29_8: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2653 3 ## /Users/dylan/github/ravi/src/lvm.c:2653:3 - movq -8(%rbx), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB29_12 -Ltmp6741: -## %bb.9: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - movl %ecx, (%rax) -Ltmp6742: - .loc 1 2654 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2654:1 - addq $8, %rsp - popq %rbx -Ltmp6743: - popq %r12 -Ltmp6744: - popq %r13 -Ltmp6745: - popq %r14 - popq %r15 - popq %rbp - retq -LBB29_11: -Ltmp6746: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2651 3 ## /Users/dylan/github/ravi/src/lvm.c:2651:3 - leaq L___func__.raviV_op_newtable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2651, %edx ## imm = 0xA5B - callq ___assert_rtn -Ltmp6747: -LBB29_10: - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: x_ <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:ra <- $r15 - ##DEBUG_VALUE: raviV_op_newtable:b <- $r14d - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - leaq L___func__.raviV_op_newtable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.64(%rip), %rcx - movl $2651, %edx ## imm = 0xA5B - callq ___assert_rtn -Ltmp6748: -LBB29_12: - ##DEBUG_VALUE: raviV_op_newtable:t <- $r13 - ##DEBUG_VALUE: raviV_op_newtable:L <- $rbx - ##DEBUG_VALUE: raviV_op_newtable:ci <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_newtable:c <- $r12d - .loc 1 2653 3 ## /Users/dylan/github/ravi/src/lvm.c:2653:3 - leaq L___func__.raviV_op_newtable(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $2653, %edx ## imm = 0xA5D - callq ___assert_rtn -Ltmp6749: -Lfunc_end29: - .cfi_endproc - ## -- End function - .globl _raviV_op_setlist ## -- Begin function raviV_op_setlist - .p2align 4, 0x90 -_raviV_op_setlist: ## @raviV_op_setlist -Lfunc_begin30: - .loc 1 2656 0 ## /Users/dylan/github/ravi/src/lvm.c:2656:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - subq $24, %rsp - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setlist:L <- $rdi - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - ##DEBUG_VALUE: raviV_op_setlist:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setlist:b <- $ecx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d -Ltmp6750: - ##DEBUG_VALUE: raviV_op_setlist:n <- $ecx - movl %ecx, %ebx - movq %rdx, %r13 - movq %rdi, -48(%rbp) ## 8-byte Spill -Ltmp6751: - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:b <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2660 9 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2660:9 - testl %ecx, %ecx -Ltmp6752: - .loc 1 2660 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2660:7 - jne LBB30_2 -Ltmp6753: -## %bb.1: - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:b <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - .loc 1 2660 19 ## /Users/dylan/github/ravi/src/lvm.c:2660:19 - movq -48(%rbp), %rax ## 8-byte Reload - movq 16(%rax), %rbx -Ltmp6754: - subq %r13, %rbx - shrq $4, %rbx - .loc 1 2660 41 ## /Users/dylan/github/ravi/src/lvm.c:2660:41 - decl %ebx -Ltmp6755: - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx -LBB30_2: - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - .loc 1 2661 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2661:7 - movzwl 8(%r13), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB30_46 -Ltmp6756: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - movq (%r13), %r12 -Ltmp6757: - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - movb 8(%r12), %al - andb $15, %al - cmpb $5, %al - jne LBB30_47 -Ltmp6758: -## %bb.4: - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq %rsi, -64(%rbp) ## 8-byte Spill -Ltmp6759: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - .loc 1 2662 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2662:19 - imull $50, %r8d, %ecx - .loc 1 2662 40 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2662:40 - leal -50(%rcx,%rbx), %r14d -Ltmp6760: - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - .loc 1 2663 21 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2663:21 - movb 72(%r12), %al - .loc 1 2663 32 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2663:32 - cmpb $6, %al -Ltmp6761: - .loc 1 2663 7 ## /Users/dylan/github/ravi/src/lvm.c:2663:7 - jne LBB30_15 -Ltmp6762: -## %bb.5: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2664 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2664:14 - cmpl 12(%r12), %r14d -Ltmp6763: - .loc 1 2664 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2664:9 - jbe LBB30_7 -Ltmp6764: -## %bb.6: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2665 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2665:7 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - movl %r14d, %edx - callq _luaH_resizearray -Ltmp6765: -LBB30_7: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - .loc 1 2666 14 ## /Users/dylan/github/ravi/src/lvm.c:2666:14 - testl %ebx, %ebx -Ltmp6766: - .loc 1 2666 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2666:5 - jle LBB30_14 -Ltmp6767: -## %bb.8: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - movslq %ebx, %rbx -Ltmp6768: - movq %rbx, %rax - shlq $4, %rax - addq %rax, %r13 -Ltmp6769: - .p2align 4, 0x90 -LBB30_9: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:n <- $rbx - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - .loc 1 2668 25 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2668:25 - movl %r14d, %edx - .loc 1 2668 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2668:7 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - movq %r13, %rcx - callq _luaH_setint -Ltmp6770: - .loc 1 2669 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2669:7 - cmpw $0, 8(%r13) - jns LBB30_13 -Ltmp6771: -## %bb.10: ## in Loop: Header=BB30_9 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:n <- $rbx - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - testb $4, 9(%r12) - je LBB30_13 -Ltmp6772: -## %bb.11: ## in Loop: Header=BB30_9 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:n <- $rbx - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq (%r13), %rax - testb $3, 9(%rax) - je LBB30_13 -Ltmp6773: -## %bb.12: ## in Loop: Header=BB30_9 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:n <- $rbx - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _luaC_barrierback_ -Ltmp6774: - .p2align 4, 0x90 -LBB30_13: ## in Loop: Header=BB30_9 Depth=1 - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:n <- $rbx - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - decl %r14d -Ltmp6775: - ##DEBUG_VALUE: raviV_op_setlist:n <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - .loc 1 2666 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2666:14 - addq $-16, %r13 - decq %rbx -Ltmp6776: - .loc 1 2666 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2666:5 - jg LBB30_9 - jmp LBB30_14 -Ltmp6777: -LBB30_15: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2673 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2673:22 - leal -49(%rcx), %r15d -Ltmp6778: - ##DEBUG_VALUE: i <- $r15d - .loc 1 2674 14 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d -Ltmp6779: - .loc 1 2674 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2674:5 - jle LBB30_16 -Ltmp6780: -LBB30_14: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2705 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2705:16 - movq -64(%rbp), %rax ## 8-byte Reload - movq 8(%rax), %rax - .loc 1 2705 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2705:10 - movq -48(%rbp), %rcx ## 8-byte Reload - movq %rax, 16(%rcx) - .loc 1 2706 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2706:1 - addq $24, %rsp - popq %rbx - popq %r12 -Ltmp6781: - popq %r13 - popq %r14 -Ltmp6782: - popq %r15 - popq %rbp - retq -LBB30_16: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] -Ltmp6783: - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2674 5 ## /Users/dylan/github/ravi/src/lvm.c:2674:5 - addl $-50, %ecx - movslq %ecx, %rcx - shlq $4, %rcx - leaq 16(%r13,%rcx), %r13 -Ltmp6784: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - leaq -56(%rbp), %rbx -Ltmp6785: - .loc 1 2677 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2677:7 - cmpb $4, %al -Ltmp6786: - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: i <- $r15d - .loc 1 0 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - jne LBB30_18 - jmp LBB30_31 -Ltmp6787: - .p2align 4, 0x90 -LBB30_39: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2674 29 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:29 - incl %r15d -Ltmp6788: - ##DEBUG_VALUE: i <- $r15d - .loc 1 2677 29 ## /Users/dylan/github/ravi/src/lvm.c:2677:29 - movb 72(%r12), %al -Ltmp6789: - .loc 1 2674 5 ## /Users/dylan/github/ravi/src/lvm.c:2674:5 - addq $16, %r13 -Ltmp6790: - .loc 1 2677 7 ## /Users/dylan/github/ravi/src/lvm.c:2677:7 - cmpb $4, %al -Ltmp6791: - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: ukey <- $r15d - ##DEBUG_VALUE: i <- $r15d - je LBB30_31 -Ltmp6792: -LBB30_18: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - cmpb $3, %al - jne LBB30_45 -Ltmp6793: -## %bb.19: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2679 15 ## /Users/dylan/github/ravi/src/lvm.c:2679:15 - movzwl 8(%r13), %eax - cmpl $19, %eax -Ltmp6794: - .loc 1 2679 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2679:15 - jne LBB30_25 -Ltmp6795: -## %bb.20: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2679 35 ## /Users/dylan/github/ravi/src/lvm.c:2679:35 - cmpl 64(%r12), %r15d -Ltmp6796: - .loc 1 2679 35 ## /Users/dylan/github/ravi/src/lvm.c:2679:35 - jb LBB30_21 -Ltmp6797: -## %bb.23: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2679 35 ## /Users/dylan/github/ravi/src/lvm.c:2679:35 - movl %r15d, %edx - movq (%r13), %rcx - jmp LBB30_24 -Ltmp6798: - .p2align 4, 0x90 -LBB30_31: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2688 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2688:15 - movzwl 8(%r13), %eax -Ltmp6799: - .loc 1 2688 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2688:15 - cmpl $19, %eax - je LBB30_36 -Ltmp6800: -## %bb.32: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - movzwl %ax, %eax - cmpl $3, %eax - jne LBB30_41 -Ltmp6801: -## %bb.33: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2689 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2689:13 - cmpl 64(%r12), %r15d -Ltmp6802: - .loc 1 2689 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2689:13 - jae LBB30_34 -Ltmp6803: -LBB30_21: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 13 ## /Users/dylan/github/ravi/src/lvm.c:0:13 - movq 56(%r12), %rax -Ltmp6804: - ##DEBUG_VALUE: data <- $rax - movq (%r13), %rcx - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - .loc 1 2674 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d - jl LBB30_39 - jmp LBB30_14 -Ltmp6805: - .p2align 4, 0x90 -LBB30_25: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- 0 - .loc 1 2681 25 ## /Users/dylan/github/ravi/src/lvm.c:2681:25 - movq $0, -56(%rbp) -Ltmp6806: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 56, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r13, %rdi - movq %rbx, %rsi - callq _luaV_tointeger -Ltmp6807: - .loc 1 2682 17 ## /Users/dylan/github/ravi/src/lvm.c:2682:17 - testl %eax, %eax -Ltmp6808: - .loc 1 2682 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2682:17 - je LBB30_29 -Ltmp6809: -## %bb.26: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2682 45 ## /Users/dylan/github/ravi/src/lvm.c:2682:45 - cmpl 64(%r12), %r15d -Ltmp6810: - .loc 1 2682 45 ## /Users/dylan/github/ravi/src/lvm.c:2682:45 - jb LBB30_27 -Ltmp6811: -## %bb.28: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2682 45 ## /Users/dylan/github/ravi/src/lvm.c:2682:45 - movl %r15d, %edx - movq -56(%rbp), %rcx -Ltmp6812: -LBB30_24: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 45 ## /Users/dylan/github/ravi/src/lvm.c:0:45 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_int -Ltmp6813: - .loc 1 2674 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d - jl LBB30_39 - jmp LBB30_14 -Ltmp6814: - .p2align 4, 0x90 -LBB30_36: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2692 13 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - cmpl 64(%r12), %r15d -Ltmp6815: - .loc 1 2692 13 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - jae LBB30_40 -Ltmp6816: -## %bb.37: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - movq 56(%r12), %rax -Ltmp6817: - ##DEBUG_VALUE: data <- $rax - .loc 1 2692 13 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 - movl %r15d, %ecx - movsd %xmm0, (%rax,%rcx,8) -Ltmp6818: - .loc 1 2674 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d - jl LBB30_39 - jmp LBB30_14 -Ltmp6819: - .p2align 4, 0x90 -LBB30_41: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 2695 24 ## /Users/dylan/github/ravi/src/lvm.c:2695:24 - movq $0, -56(%rbp) -Ltmp6820: - ##DEBUG_VALUE: d <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2696 17 ## /Users/dylan/github/ravi/src/lvm.c:2696:17 - movq %r13, %rdi - movq %rbx, %rsi - callq _luaV_tonumber_ -Ltmp6821: - testl %eax, %eax -Ltmp6822: - .loc 1 2696 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2696:17 - je LBB30_44 -Ltmp6823: -## %bb.42: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2696 44 ## /Users/dylan/github/ravi/src/lvm.c:2696:44 - cmpl 64(%r12), %r15d -Ltmp6824: - .loc 1 2696 44 ## /Users/dylan/github/ravi/src/lvm.c:2696:44 - jae LBB30_43 -Ltmp6825: -LBB30_27: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 44 ## /Users/dylan/github/ravi/src/lvm.c:0:44 - movq 56(%r12), %rax -Ltmp6826: - ##DEBUG_VALUE: data <- $rax - movq -56(%rbp), %rcx - movl %r15d, %edx - movq %rcx, (%rax,%rdx,8) - .loc 1 2674 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d - jl LBB30_39 - jmp LBB30_14 -Ltmp6827: -LBB30_34: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2689 13 ## /Users/dylan/github/ravi/src/lvm.c:2689:13 - movl %r15d, %edx - movsd (%r13), %xmm0 ## xmm0 = mem[0],zero - jmp LBB30_35 -Ltmp6828: -LBB30_40: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - .loc 1 2692 13 ## /Users/dylan/github/ravi/src/lvm.c:2692:13 - movl %r15d, %edx - xorps %xmm0, %xmm0 - cvtsi2sdq (%r13), %xmm0 - jmp LBB30_35 -Ltmp6829: -LBB30_43: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2696 44 ## /Users/dylan/github/ravi/src/lvm.c:2696:44 - movl %r15d, %edx - movsd -56(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp6830: -LBB30_35: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 0 44 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:44 - movq -48(%rbp), %rdi ## 8-byte Reload - movq %r12, %rsi - callq _raviH_set_float -Ltmp6831: - .loc 1 2674 14 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2674:14 - cmpl %r14d, %r15d - jl LBB30_39 - jmp LBB30_14 -Ltmp6832: -LBB30_45: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2701 18 ## /Users/dylan/github/ravi/src/lvm.c:2701:18 - leaq L___func__.raviV_op_setlist(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2701, %edx ## imm = 0xA8D - callq ___assert_rtn -Ltmp6833: -LBB30_29: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: i <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2684 15 ## /Users/dylan/github/ravi/src/lvm.c:2684:15 - leaq L_.str.23(%rip), %rsi - xorl %eax, %eax - movq -48(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6834: -LBB30_44: - ##DEBUG_VALUE: raviV_op_setlist:ci <- [DW_OP_constu 64, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: d <- [DW_OP_constu 56, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: u <- $r15d - ##DEBUG_VALUE: i <- $r15d - ##DEBUG_VALUE: raviV_op_setlist:last <- $r14d - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - .loc 1 2698 15 ## /Users/dylan/github/ravi/src/lvm.c:2698:15 - leaq L_.str.22(%rip), %rsi - xorl %eax, %eax - movq -48(%rbp), %rdi ## 8-byte Reload - callq _luaG_runerror -Ltmp6835: -LBB30_46: - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - .loc 1 2661 7 ## /Users/dylan/github/ravi/src/lvm.c:2661:7 - leaq L___func__.raviV_op_setlist(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6836: - leaq L_.str.98(%rip), %rcx - movl $2661, %edx ## imm = 0xA65 - callq ___assert_rtn -Ltmp6837: -LBB30_47: - ##DEBUG_VALUE: raviV_op_setlist:h <- $r12 - ##DEBUG_VALUE: raviV_op_setlist:L <- [DW_OP_constu 48, DW_OP_minus] [$rbp+0] - ##DEBUG_VALUE: raviV_op_setlist:ra <- $r13 - ##DEBUG_VALUE: raviV_op_setlist:n <- $ebx - ##DEBUG_VALUE: raviV_op_setlist:c <- $r8d - ##DEBUG_VALUE: raviV_op_setlist:ci <- $rsi - leaq L___func__.raviV_op_setlist(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6838: - leaq L_.str.99(%rip), %rcx - movl $2661, %edx ## imm = 0xA65 - callq ___assert_rtn -Ltmp6839: -Lfunc_end30: - .cfi_endproc - ## -- End function - .globl _raviV_op_concat ## -- Begin function raviV_op_concat - .p2align 4, 0x90 -_raviV_op_concat: ## @raviV_op_concat -Lfunc_begin31: - .loc 1 2708 0 ## /Users/dylan/github/ravi/src/lvm.c:2708:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_concat:L <- $rdi - ##DEBUG_VALUE: raviV_op_concat:ci <- $rsi - ##DEBUG_VALUE: raviV_op_concat:a <- $edx - ##DEBUG_VALUE: raviV_op_concat:b <- $ecx - ##DEBUG_VALUE: raviV_op_concat:c <- $r8d - movl %ecx, %r15d - movl %edx, %r12d - movq %rsi, %r14 - movq %rdi, %r13 -Ltmp6840: - ##DEBUG_VALUE: raviV_op_concat:base <- [DW_OP_plus_uconst 32, DW_OP_deref, DW_OP_stack_value] $r14 - ##DEBUG_VALUE: raviV_op_concat:c <- $r8d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - .loc 1 2710 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2710:24 - movq 32(%rsi), %rax -Ltmp6841: - ##DEBUG_VALUE: raviV_op_concat:base <- $rax - .loc 1 2711 17 ## /Users/dylan/github/ravi/src/lvm.c:2711:17 - movslq %r8d, %rsi - movq %rsi, %rcx - shlq $4, %rcx - .loc 1 2711 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2711:21 - leaq 16(%rax,%rcx), %rax -Ltmp6842: - .loc 1 2711 10 ## /Users/dylan/github/ravi/src/lvm.c:2711:10 - movq %rax, 16(%rdi) - movl $1, %eax -Ltmp6843: - .loc 1 2712 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2712:3 - subl %r15d, %eax - addl %eax, %esi - ## kill: def $esi killed $esi killed $rsi - callq _luaV_concat -Ltmp6844: - .loc 1 2712 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2712:3 - movq 32(%r14), %rdx -Ltmp6845: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - .loc 1 2713 13 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2713:13 - movslq %r12d, %rax - shlq $4, %rax - .loc 1 2714 13 ## /Users/dylan/github/ravi/src/lvm.c:2714:13 - movslq %r15d, %rcx - shlq $4, %rcx -Ltmp6846: - .loc 1 2715 3 ## /Users/dylan/github/ravi/src/lvm.c:2715:3 - movq (%rdx,%rcx), %r8 - movq %r8, (%rdx,%rax) - movzwl 8(%rdx,%rcx), %edi - movw %di, 8(%rdx,%rax) - testw %di, %di - js LBB31_2 -Ltmp6847: -## %bb.1: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - movq 24(%r13), %rsi - cmpq $0, 24(%rsi) -Ltmp6848: - .loc 1 2716 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - jg LBB31_5 - jmp LBB31_6 -Ltmp6849: -LBB31_2: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2715 3 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2715:3 - andl $127, %edi - movzbl 8(%r8), %esi - cmpl %esi, %edi - jne LBB31_8 -Ltmp6850: -## %bb.3: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - movb 9(%r8), %dil - xorb $3, %dil - movq 24(%r13), %rsi - movb 84(%rsi), %bl - xorb $3, %bl - testb %dil, %bl - je LBB31_8 -Ltmp6851: -## %bb.4: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - cmpq $0, 24(%rsi) -Ltmp6852: - .loc 1 2716 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - jle LBB31_6 -Ltmp6853: -LBB31_5: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - addq %rdx, %rax -Ltmp6854: - ##DEBUG_VALUE: raviV_op_concat:ra <- $rax - ##DEBUG_VALUE: io1 <- $rax - addq %rdx, %rcx -Ltmp6855: - ##DEBUG_VALUE: io2 <- $rcx - ##DEBUG_VALUE: raviV_op_concat:rb <- $rcx - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - addq $16, %rax -Ltmp6856: - cmpl %r15d, %r12d - cmovlq %rcx, %rax - movq %rax, 16(%r13) - movq %r13, %rdi - callq _luaC_step -Ltmp6857: - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - movq 8(%r14), %rax - movq %rax, 16(%r13) -Ltmp6858: -LBB31_6: - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - movq -8(%r13), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB31_9 -Ltmp6859: -## %bb.7: - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - movl %ecx, (%rax) -Ltmp6860: - .loc 1 2717 16 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2717:16 - movq 8(%r14), %rax - .loc 1 2717 10 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2717:10 - movq %rax, 16(%r13) - .loc 1 2718 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2718:1 - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp6861: - popq %r13 -Ltmp6862: - popq %r14 -Ltmp6863: - popq %r15 -Ltmp6864: - popq %rbp - retq -LBB31_9: -Ltmp6865: - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2716 3 ## /Users/dylan/github/ravi/src/lvm.c:2716:3 - leaq L___func__.raviV_op_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $2716, %edx ## imm = 0xA9C - callq ___assert_rtn -Ltmp6866: -LBB31_8: - ##DEBUG_VALUE: raviV_op_concat:base <- $rdx - ##DEBUG_VALUE: raviV_op_concat:L <- $r13 - ##DEBUG_VALUE: raviV_op_concat:ci <- $r14 - ##DEBUG_VALUE: raviV_op_concat:a <- $r12d - ##DEBUG_VALUE: raviV_op_concat:b <- $r15d - .loc 1 2715 3 ## /Users/dylan/github/ravi/src/lvm.c:2715:3 - leaq L___func__.raviV_op_concat(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2715, %edx ## imm = 0xA9B -Ltmp6867: - callq ___assert_rtn -Ltmp6868: -Lfunc_end31: - .cfi_endproc - ## -- End function - .globl _raviV_op_closure ## -- Begin function raviV_op_closure - .p2align 4, 0x90 -_raviV_op_closure: ## @raviV_op_closure -Lfunc_begin32: - .loc 1 2720 0 ## /Users/dylan/github/ravi/src/lvm.c:2720:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_closure:L <- $rdi - ##DEBUG_VALUE: raviV_op_closure:ci <- $rsi - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:Bx <- $r8d - movq %rsi, %r14 - movq %rdi, %r15 -Ltmp6869: - ##DEBUG_VALUE: raviV_op_closure:base <- [DW_OP_plus_uconst 32, DW_OP_deref, DW_OP_stack_value] $r14 - ##DEBUG_VALUE: raviV_op_closure:Bx <- $r8d - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - .loc 1 2721 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2721:24 - movq 32(%rsi), %r13 -Ltmp6870: - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - .loc 1 2722 18 ## /Users/dylan/github/ravi/src/lvm.c:2722:18 - movq 24(%rdx), %rax - .loc 1 2722 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2722:21 - movq 64(%rax), %rax - .loc 1 2722 14 ## /Users/dylan/github/ravi/src/lvm.c:2722:14 - movslq %r8d, %rsi - movq (%rax,%rsi,8), %rsi -Ltmp6871: - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: getcached:base <- $r13 - .loc 1 893 20 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:893:20 - movq 96(%rsi), %r8 -Ltmp6872: - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: x_ <- $r8 - .loc 1 894 9 ## /Users/dylan/github/ravi/src/lvm.c:894:9 - testq %r8, %r8 -Ltmp6873: - .loc 1 894 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:894:7 - je LBB32_8 -Ltmp6874: -## %bb.1: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 895 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:895:18 - movslq 16(%rsi), %r9 - testq %r9, %r9 -Ltmp6875: - ##DEBUG_VALUE: i <- 0 - .loc 1 898 5 ## /Users/dylan/github/ravi/src/lvm.c:898:5 - jle LBB32_9 -Ltmp6876: -## %bb.2: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq 88(%rsi), %r10 -Ltmp6877: - ##DEBUG_VALUE: uv <- $r10 - .loc 1 899 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - addq $18, %r10 -Ltmp6878: - .loc 1 0 19 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:19 - xorl %eax, %eax -Ltmp6879: - .p2align 4, 0x90 -LBB32_4: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - ##DEBUG_VALUE: i <- $rax - .loc 1 899 19 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - cmpb $0, -1(%r10) - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movzbl (%r10), %edi - .loc 1 899 19 ## /Users/dylan/github/ravi/src/lvm.c:899:19 - je LBB32_6 -Ltmp6880: -## %bb.5: ## in Loop: Header=BB32_4 Depth=1 - ##DEBUG_VALUE: i <- $rax - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 899 40 ## /Users/dylan/github/ravi/src/lvm.c:899:40 - shlq $4, %rdi - addq %r13, %rdi -Ltmp6881: - ##DEBUG_VALUE: v <- $rdi - .loc 1 900 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:900:11 - movq 32(%r8,%rax,8), %rbx -Ltmp6882: - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 900 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:900:27 - cmpq %rdi, (%rbx) - jne LBB32_8 -Ltmp6883: -LBB32_3: ## in Loop: Header=BB32_4 Depth=1 - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - incq %rax - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 898 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:898:19 - addq $24, %r10 - cmpq %r9, %rax - jl LBB32_4 - jmp LBB32_9 -Ltmp6884: - .p2align 4, 0x90 -LBB32_6: ## in Loop: Header=BB32_4 Depth=1 - ##DEBUG_VALUE: i <- $rax - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 899 54 ## /Users/dylan/github/ravi/src/lvm.c:899:54 - movq 32(%rdx,%rdi,8), %rdi - .loc 1 899 72 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:899:72 - movq (%rdi), %rdi -Ltmp6885: - ##DEBUG_VALUE: v <- $rdi - .loc 1 900 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:900:11 - movq 32(%r8,%rax,8), %rbx -Ltmp6886: - ##DEBUG_VALUE: i <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 900 27 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:900:27 - cmpq %rdi, (%rbx) - je LBB32_3 -Ltmp6887: -LBB32_8: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: getcached:c <- $r8 - ##DEBUG_VALUE: getcached:base <- $r13 - ##DEBUG_VALUE: getcached:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 0 27 ## /Users/dylan/github/ravi/src/lvm.c:0:27 - addq $32, %rdx -Ltmp6888: - ##DEBUG_VALUE: getcached:encup <- $rdx - .loc 1 2724 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2724:19 - movslq %ecx, %r12 - movq %r12, %r8 -Ltmp6889: - shlq $4, %r8 - addq %r13, %r8 -Ltmp6890: - .loc 1 2726 5 ## /Users/dylan/github/ravi/src/lvm.c:2726:5 - movq %r15, %rdi - movq %r13, %rcx -Ltmp6891: - callq _pushclosure -Ltmp6892: - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - movq 24(%r15), %rax - cmpq $0, 24(%rax) -Ltmp6893: - .loc 1 2731 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - jg LBB32_14 - jmp LBB32_15 -Ltmp6894: -LBB32_9: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 2729 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2729:5 - movb 8(%r8), %al - andb $14, %al - cmpb $10, %al - jae LBB32_17 -Ltmp6895: -## %bb.10: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 2724 19 ## /Users/dylan/github/ravi/src/lvm.c:2724:19 - movslq %ecx, %r12 - movq %r12, %rax - shlq $4, %rax -Ltmp6896: - .loc 1 2729 5 ## /Users/dylan/github/ravi/src/lvm.c:2729:5 - movq %r8, (%r13,%rax) - movw $-32762, 8(%r13,%rax) ## imm = 0x8006 - cmpb $6, 8(%r8) - jne LBB32_18 -Ltmp6897: -## %bb.11: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - testq %r15, %r15 - je LBB32_13 -Ltmp6898: -## %bb.12: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - movb 9(%r8), %al - xorb $3, %al - movq 24(%r15), %rcx -Ltmp6899: - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB32_18 -Ltmp6900: -LBB32_13: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - movq 24(%r15), %rax - cmpq $0, 24(%rax) -Ltmp6901: - .loc 1 2731 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - jle LBB32_15 -Ltmp6902: -LBB32_14: - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - .loc 1 2724 19 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2724:19 - shlq $4, %r12 -Ltmp6903: - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - leaq 16(%r13,%r12), %rax - movq %rax, 16(%r15) - movq %r15, %rdi - callq _luaC_step -Ltmp6904: - .loc 1 2731 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - movq 8(%r14), %rax - movq %rax, 16(%r15) -Ltmp6905: -LBB32_15: - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - movq -8(%r15), %rax - movl (%rax), %ecx - movl %ecx, %edx - decl %edx - movl %edx, (%rax) - jne LBB32_19 -Ltmp6906: -## %bb.16: - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - movl %ecx, (%rax) -Ltmp6907: - .loc 1 2732 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2732:1 - addq $8, %rsp - popq %rbx - popq %r12 - popq %r13 -Ltmp6908: - popq %r14 -Ltmp6909: - popq %r15 -Ltmp6910: - popq %rbp - retq -LBB32_19: -Ltmp6911: - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - .loc 1 2731 3 ## /Users/dylan/github/ravi/src/lvm.c:2731:3 - leaq L___func__.raviV_op_closure(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.101(%rip), %rcx - movl $2731, %edx ## imm = 0xAAB - callq ___assert_rtn -Ltmp6912: -LBB32_18: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - .loc 1 2729 5 ## /Users/dylan/github/ravi/src/lvm.c:2729:5 - leaq L___func__.raviV_op_closure(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6913: - leaq L_.str.14(%rip), %rcx - movl $2729, %edx ## imm = 0xAA9 -Ltmp6914: - callq ___assert_rtn -Ltmp6915: -LBB32_17: - ##DEBUG_VALUE: raviV_op_closure:ncl <- $r8 - ##DEBUG_VALUE: raviV_op_closure:p <- $rsi - ##DEBUG_VALUE: raviV_op_closure:base <- $r13 - ##DEBUG_VALUE: raviV_op_closure:L <- $r15 - ##DEBUG_VALUE: raviV_op_closure:ci <- $r14 - ##DEBUG_VALUE: raviV_op_closure:a <- $ecx - ##DEBUG_VALUE: raviV_op_closure:cl <- $rdx - leaq L___func__.raviV_op_closure(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp6916: - leaq L_.str.64(%rip), %rcx -Ltmp6917: - movl $2729, %edx ## imm = 0xAA9 -Ltmp6918: - callq ___assert_rtn -Ltmp6919: -Lfunc_end32: - .cfi_endproc - ## -- End function - .globl _raviV_op_vararg ## -- Begin function raviV_op_vararg - .p2align 4, 0x90 -_raviV_op_vararg: ## @raviV_op_vararg -Lfunc_begin33: - .loc 1 2734 0 ## /Users/dylan/github/ravi/src/lvm.c:2734:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_vararg:L <- $rdi - ##DEBUG_VALUE: raviV_op_vararg:ci <- $rsi - ##DEBUG_VALUE: raviV_op_vararg:cl <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:a <- $ecx - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ## kill: def $r8d killed $r8d def $r8 -Ltmp6920: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:a <- $ecx - ##DEBUG_VALUE: raviV_op_vararg:cl <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:L <- $rdi - .loc 1 2735 24 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2735:24 - movq 32(%rsi), %r14 -Ltmp6921: - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - .loc 1 2738 11 ## /Users/dylan/github/ravi/src/lvm.c:2738:11 - movq %r14, %rax - subq (%rsi), %rax - shrq $4, %rax - .loc 1 2738 43 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2738:43 - movq 24(%rdx), %rdx -Ltmp6922: - .loc 1 2738 46 ## /Users/dylan/github/ravi/src/lvm.c:2738:46 - movzbl 10(%rdx), %ebx - .loc 1 2738 56 ## /Users/dylan/github/ravi/src/lvm.c:2738:56 - notl %ebx - xorl %r12d, %r12d - addl %eax, %ebx -Ltmp6923: - ##DEBUG_VALUE: raviV_op_vararg:n <- $ebx - .loc 1 2739 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2739:7 - cmovnsl %ebx, %r12d -Ltmp6924: - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r12d - .loc 1 2742 9 ## /Users/dylan/github/ravi/src/lvm.c:2742:9 - testl %r8d, %r8d -Ltmp6925: - .loc 1 2742 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2742:7 - jle LBB33_1 -Ltmp6926: -## %bb.4: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:a <- $ecx - ##DEBUG_VALUE: raviV_op_vararg:ci <- $rsi - ##DEBUG_VALUE: raviV_op_vararg:L <- $rdi - .loc 1 2741 9 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2741:9 - decl %r8d -Ltmp6927: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - .loc 1 2749 15 ## /Users/dylan/github/ravi/src/lvm.c:2749:15 - movslq %ecx, %r11 - shlq $4, %r11 - addq %r14, %r11 -Ltmp6928: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - .loc 1 0 15 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:15 - xorl %edx, %edx -Ltmp6929: - .loc 1 2751 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2751:17 - testl %r8d, %r8d - .loc 1 2751 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2751:21 - jle LBB33_16 -Ltmp6930: -LBB33_6: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - testl %ebx, %ebx - jle LBB33_16 -Ltmp6931: -## %bb.7: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - .loc 1 0 21 ## /Users/dylan/github/ravi/src/lvm.c:0:21 - movl %r12d, %r9d - movq %r9, %rdx - shlq $4, %rdx - subq %rdx, %r14 -Ltmp6932: - .loc 1 2752 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2752:5 - movslq %r8d, %r10 - xorl %edx, %edx - movl $8, %ebx - testq %rdi, %rdi -Ltmp6933: - .loc 1 2751 21 ## /Users/dylan/github/ravi/src/lvm.c:2751:21 - je LBB33_12 -Ltmp6934: - .p2align 4, 0x90 -LBB33_8: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - .loc 1 2752 5 ## /Users/dylan/github/ravi/src/lvm.c:2752:5 - movq -8(%r14,%rbx), %rsi - movq %rsi, -8(%r11,%rbx) - movzwl (%r14,%rbx), %ecx - movw %cx, (%r11,%rbx) - testw %cx, %cx - jns LBB33_25 -Ltmp6935: -## %bb.9: ## in Loop: Header=BB33_8 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - andl $127, %ecx - movzbl 8(%rsi), %eax - cmpl %eax, %ecx - jne LBB33_11 -Ltmp6936: -## %bb.10: ## in Loop: Header=BB33_8 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - movzbl 9(%rsi), %eax - xorb $3, %al - movq 24(%rdi), %rsi - movzbl 84(%rsi), %ecx - xorb $3, %cl - testb %al, %cl - je LBB33_11 -Ltmp6937: -LBB33_25: ## in Loop: Header=BB33_8 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 2751 32 ## /Users/dylan/github/ravi/src/lvm.c:2751:32 - incq %rdx - .loc 1 2751 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2751:17 - cmpq %r10, %rdx - .loc 1 2751 21 ## /Users/dylan/github/ravi/src/lvm.c:2751:21 - jge LBB33_16 -Ltmp6938: -## %bb.26: ## in Loop: Header=BB33_8 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - addq $16, %rbx - cmpq %r9, %rdx - jb LBB33_8 - jmp LBB33_16 -Ltmp6939: - .p2align 4, 0x90 -LBB33_12: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - .loc 1 2752 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2752:5 - movq -8(%r14,%rbx), %rsi - movq %rsi, -8(%r11,%rbx) - movzwl (%r14,%rbx), %edi - movw %di, (%r11,%rbx) - testw %di, %di - jns LBB33_14 -Ltmp6940: -## %bb.13: ## in Loop: Header=BB33_12 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - andl $127, %edi - movzbl 8(%rsi), %esi - cmpl %esi, %edi - jne LBB33_11 -Ltmp6941: -LBB33_14: ## in Loop: Header=BB33_12 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - .loc 1 2751 32 ## /Users/dylan/github/ravi/src/lvm.c:2751:32 - incq %rdx - .loc 1 2751 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2751:17 - cmpq %r10, %rdx - .loc 1 2751 21 ## /Users/dylan/github/ravi/src/lvm.c:2751:21 - jge LBB33_16 -Ltmp6942: -## %bb.15: ## in Loop: Header=BB33_12 Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - addq $16, %rbx - cmpq %r9, %rdx - jb LBB33_12 - jmp LBB33_16 -Ltmp6943: -LBB33_1: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:a <- $ecx - ##DEBUG_VALUE: raviV_op_vararg:ci <- $rsi - ##DEBUG_VALUE: raviV_op_vararg:L <- $rdi - .loc 1 2744 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2744:5 - movq 48(%rdi), %rax - subq 16(%rdi), %rax - sarq $4, %rax - movl %r12d, %r15d - cmpq %r15, %rax -Ltmp6944: - .loc 1 2744 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2744:5 - jg LBB33_3 -Ltmp6945: -## %bb.2: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:a <- $ecx - ##DEBUG_VALUE: raviV_op_vararg:ci <- $rsi - ##DEBUG_VALUE: raviV_op_vararg:L <- $rdi - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq %rsi, %r13 -Ltmp6946: - ##DEBUG_VALUE: raviV_op_vararg:ci <- $r13 - movq %rdi, %r14 -Ltmp6947: - .loc 1 2744 5 ## /Users/dylan/github/ravi/src/lvm.c:2744:5 - movl %r12d, %esi - movl %ecx, -44(%rbp) ## 4-byte Spill -Ltmp6948: - ##DEBUG_VALUE: raviV_op_vararg:a <- [DW_OP_constu 44, DW_OP_minus] [$rbp+0] - callq _luaD_growstack -Ltmp6949: - .loc 1 0 5 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - movq %r14, %rdi - movl -44(%rbp), %ecx ## 4-byte Reload -Ltmp6950: - .loc 1 2744 5 ## /Users/dylan/github/ravi/src/lvm.c:2744:5 - movq 32(%r13), %r14 -Ltmp6951: -LBB33_3: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - .loc 1 2745 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2745:15 - movslq %ecx, %r11 - shlq $4, %r11 - addq %r14, %r11 -Ltmp6952: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - .loc 1 2746 17 ## /Users/dylan/github/ravi/src/lvm.c:2746:17 - shlq $4, %r15 - addq %r11, %r15 - .loc 1 2746 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2746:12 - movq %r15, 16(%rdi) -Ltmp6953: - .loc 1 0 0 ## /Users/dylan/github/ravi/src/lvm.c:0:0 - movl %r12d, %r8d -Ltmp6954: - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:base <- $r14 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:j <- 0 - xorl %edx, %edx -Ltmp6955: - .loc 1 2751 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2751:17 - testl %r8d, %r8d - .loc 1 2751 21 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2751:21 - jg LBB33_6 -Ltmp6956: -LBB33_16: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - ##DEBUG_VALUE: raviV_op_vararg:j <- $edx - .loc 1 2753 12 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2753:12 - cmpl %r8d, %edx -Ltmp6957: - .loc 1 2753 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2753:3 - jge LBB33_24 -Ltmp6958: -## %bb.17: - ##DEBUG_VALUE: raviV_op_vararg:j <- $edx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - .loc 1 2754 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2754:5 - movl %edx, %esi - movl %r8d, %ecx - subl %edx, %r8d -Ltmp6959: - movq %rsi, %rdx -Ltmp6960: - notq %rdx - addq %rcx, %rdx - andq $3, %r8 - je LBB33_21 -Ltmp6961: -## %bb.18: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - movq %rsi, %rdi - shlq $4, %rdi - leaq 8(%r11,%rdi), %rdi - negq %r8 - xorl %ebx, %ebx -Ltmp6962: - .p2align 4, 0x90 -LBB33_19: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:j <- undef - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, (%rdi) -Ltmp6963: - .loc 1 2753 3 ## /Users/dylan/github/ravi/src/lvm.c:2753:3 - decq %rbx - addq $16, %rdi - cmpq %rbx, %r8 - jne LBB33_19 -Ltmp6964: -## %bb.20: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - .loc 1 2754 5 ## /Users/dylan/github/ravi/src/lvm.c:2754:5 - subq %rbx, %rsi -Ltmp6965: -LBB33_21: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - cmpq $3, %rdx - jb LBB33_24 -Ltmp6966: -## %bb.22: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - subq %rsi, %rcx - shlq $4, %rsi - leaq 56(%r11,%rsi), %rax -Ltmp6967: - .p2align 4, 0x90 -LBB33_23: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:j <- undef - movw $0, -48(%rax) -Ltmp6968: - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, -32(%rax) - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, -16(%rax) - ##DEBUG_VALUE: raviV_op_vararg:j <- [DW_OP_plus_uconst 1, DW_OP_stack_value] undef - movw $0, (%rax) - addq $64, %rax - addq $-4, %rcx -Ltmp6969: - .loc 1 2753 3 ## /Users/dylan/github/ravi/src/lvm.c:2753:3 - jne LBB33_23 -Ltmp6970: -LBB33_24: - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - .loc 1 2755 1 ## /Users/dylan/github/ravi/src/lvm.c:2755:1 - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp6971: - popq %r13 - popq %r14 - popq %r15 - popq %rbp - retq -Ltmp6972: -LBB33_11: - ##DEBUG_VALUE: raviV_op_vararg:j <- $rdx - ##DEBUG_VALUE: raviV_op_vararg:ra <- $r11 - ##DEBUG_VALUE: raviV_op_vararg:n <- $r12d - ##DEBUG_VALUE: raviV_op_vararg:b <- $r8d - .loc 1 2752 5 ## /Users/dylan/github/ravi/src/lvm.c:2752:5 - leaq L___func__.raviV_op_vararg(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2752, %edx ## imm = 0xAC0 -Ltmp6973: - callq ___assert_rtn -Ltmp6974: -Lfunc_end33: - .cfi_endproc - ## -- End function - .globl _raviV_op_loadnil ## -- Begin function raviV_op_loadnil - .p2align 4, 0x90 -_raviV_op_loadnil: ## @raviV_op_loadnil -Lfunc_begin34: - .loc 1 2758 0 ## /Users/dylan/github/ravi/src/lvm.c:2758:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - ##DEBUG_VALUE: raviV_op_loadnil:a <- $esi - ##DEBUG_VALUE: raviV_op_loadnil:b <- $edx - ## kill: def $edx killed $edx def $rdx -Ltmp6975: - ##DEBUG_VALUE: raviV_op_loadnil:b <- $edx - ##DEBUG_VALUE: raviV_op_loadnil:a <- $esi - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 2761 21 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2761:21 - movslq %esi, %rax - shlq $4, %rax - addq 32(%rdi), %rax -Ltmp6976: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- $rax - .loc 1 2762 3 ## /Users/dylan/github/ravi/src/lvm.c:2762:3 - leal 1(%rdx), %ecx - andl $7, %ecx - je LBB34_1 -Ltmp6977: -## %bb.2: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- $rax - ##DEBUG_VALUE: raviV_op_loadnil:b <- $edx - ##DEBUG_VALUE: raviV_op_loadnil:a <- $esi - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 0 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - xorl %esi, %esi -Ltmp6978: - .p2align 4, 0x90 -LBB34_3: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_loadnil:ra <- $rax - ##DEBUG_VALUE: raviV_op_loadnil:b <- $edx - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - ##DEBUG_VALUE: raviV_op_loadnil:ra <- $rax - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - .loc 1 2762 8 ## /Users/dylan/github/ravi/src/lvm.c:2762:8 - movw $0, 8(%rax) -Ltmp6979: - ##DEBUG_VALUE: raviV_op_loadnil:b <- undef - addq $16, %rax -Ltmp6980: - .loc 1 2762 27 ## /Users/dylan/github/ravi/src/lvm.c:2762:27 - incl %esi - cmpl %esi, %ecx - jne LBB34_3 -Ltmp6981: -## %bb.4: - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 2762 3 ## /Users/dylan/github/ravi/src/lvm.c:2762:3 - movl %edx, %ecx - subl %esi, %ecx - cmpl $7, %edx - jae LBB34_6 - jmp LBB34_8 -LBB34_1: -Ltmp6982: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- $rax - ##DEBUG_VALUE: raviV_op_loadnil:b <- $edx - ##DEBUG_VALUE: raviV_op_loadnil:a <- $esi - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movl %edx, %ecx - .loc 1 2762 3 ## /Users/dylan/github/ravi/src/lvm.c:2762:3 - cmpl $7, %edx - jb LBB34_8 -Ltmp6983: -LBB34_6: - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 2762 8 ## /Users/dylan/github/ravi/src/lvm.c:2762:8 - notl %ecx - addq $120, %rax - .p2align 4, 0x90 -LBB34_7: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi -Ltmp6984: - ##DEBUG_VALUE: raviV_op_loadnil:b <- undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 16, DW_OP_stack_value] undef - movw $0, -112(%rax) -Ltmp6985: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 32, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 16, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 1, DW_OP_minus, DW_OP_stack_value] undef - movw $0, -96(%rax) -Ltmp6986: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 48, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 2, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 32, DW_OP_stack_value] undef - movw $0, -80(%rax) -Ltmp6987: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 64, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 3, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 48, DW_OP_stack_value] undef - movw $0, -64(%rax) -Ltmp6988: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 80, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 4, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 64, DW_OP_stack_value] undef - movw $0, -48(%rax) -Ltmp6989: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 96, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 5, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 80, DW_OP_stack_value] undef - movw $0, -32(%rax) -Ltmp6990: - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 112, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 6, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 96, DW_OP_stack_value] undef - movw $0, -16(%rax) -Ltmp6991: - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 8, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 128, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:b <- [DW_OP_constu 7, DW_OP_minus, DW_OP_stack_value] undef - ##DEBUG_VALUE: raviV_op_loadnil:ra <- [DW_OP_plus_uconst 112, DW_OP_stack_value] undef - movw $0, (%rax) - .loc 1 2762 27 ## /Users/dylan/github/ravi/src/lvm.c:2762:27 - subq $-128, %rax - addl $8, %ecx - jne LBB34_7 -Ltmp6992: -LBB34_8: - ##DEBUG_VALUE: raviV_op_loadnil:ci <- $rdi - .loc 1 2763 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2763:1 - popq %rbp - retq -Ltmp6993: -Lfunc_end34: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupvali ## -- Begin function raviV_op_setupvali - .p2align 4, 0x90 -_raviV_op_setupvali: ## @raviV_op_setupvali -Lfunc_begin35: - .loc 1 2765 0 ## /Users/dylan/github/ravi/src/lvm.c:2765:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setupvali:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvali:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $ecx - movl %ecx, %r15d - movq %rdx, %rax - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp6994: - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - ##DEBUG_VALUE: raviV_op_setupvali:ra <- $rax - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - .loc 1 2767 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2767:7 - movzwl 8(%rdx), %ecx - cmpl $19, %ecx -Ltmp6995: - .loc 1 2767 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2767:7 - jne LBB35_2 -Ltmp6996: -## %bb.1: - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:ra <- $rax - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - .loc 1 2767 7 ## /Users/dylan/github/ravi/src/lvm.c:2767:7 - movq (%rax), %rax -Ltmp6997: - ##DEBUG_VALUE: raviV_op_setupvali:ia <- $rax - movq %rax, -32(%rbp) -Ltmp6998: -LBB35_4: - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - ##DEBUG_VALUE: raviV_op_setupvali:ia <- $rax - .loc 1 2768 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2768:17 - movslq %r15d, %rcx - movq 32(%rbx,%rcx,8), %rsi -Ltmp6999: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2769 5 ## /Users/dylan/github/ravi/src/lvm.c:2769:5 - movq (%rsi), %rcx -Ltmp7000: - ##DEBUG_VALUE: io <- $rcx - movq %rax, (%rcx) - movw $19, 8(%rcx) -Ltmp7001: - .loc 1 2770 5 ## /Users/dylan/github/ravi/src/lvm.c:2770:5 - movq (%rsi), %rax -Ltmp7002: - cmpw $0, 8(%rax) - jns LBB35_7 -Ltmp7003: -## %bb.5: - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB35_7 -Ltmp7004: -## %bb.6: - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - movq %r14, %rdi - callq _luaC_upvalbarrier_ -Ltmp7005: -LBB35_7: - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - .loc 1 2775 1 ## /Users/dylan/github/ravi/src/lvm.c:2775:1 - addq $8, %rsp - popq %rbx -Ltmp7006: - popq %r14 -Ltmp7007: - popq %r15 -Ltmp7008: - popq %rbp - retq -LBB35_2: -Ltmp7009: - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:ra <- $rax - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -32(%rbp), %rsi -Ltmp7010: - ##DEBUG_VALUE: raviV_op_setupvali:ia <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2767 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2767:7 - xorl %edx, %edx - movq %rax, %rdi - callq _luaV_tointeger -Ltmp7011: - testl %eax, %eax -Ltmp7012: - .loc 1 2767 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2767:7 - je LBB35_8 -Ltmp7013: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupvali:ia <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - .loc 1 2769 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2769:5 - movq -32(%rbp), %rax - jmp LBB35_4 -Ltmp7014: -LBB35_8: - ##DEBUG_VALUE: raviV_op_setupvali:ia <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_setupvali:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvali:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvali:b <- $r15d - .loc 1 2773 5 ## /Users/dylan/github/ravi/src/lvm.c:2773:5 - leaq L_.str.139(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7015: -Lfunc_end35: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupvalf ## -- Begin function raviV_op_setupvalf - .p2align 4, 0x90 -_raviV_op_setupvalf: ## @raviV_op_setupvalf -Lfunc_begin36: - .loc 1 2777 0 ## /Users/dylan/github/ravi/src/lvm.c:2777:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $ecx - movl %ecx, %r15d - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp7016: - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - .loc 1 2779 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2779:7 - movzwl 8(%rdx), %eax - cmpl $3, %eax -Ltmp7017: - .loc 1 2779 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2779:7 - jne LBB36_2 -Ltmp7018: -## %bb.1: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalf:na <- [DW_OP_deref] $rdx - .loc 1 2779 7 ## /Users/dylan/github/ravi/src/lvm.c:2779:7 - movq (%rdx), %rax - movq %rax, -32(%rbp) -Ltmp7019: -LBB36_4: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - .loc 1 2780 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2780:17 - movslq %r15d, %rcx - movq 32(%rbx,%rcx,8), %rsi -Ltmp7020: - ##DEBUG_VALUE: uv <- $rsi - .loc 1 2781 5 ## /Users/dylan/github/ravi/src/lvm.c:2781:5 - movq (%rsi), %rcx -Ltmp7021: - ##DEBUG_VALUE: io <- $rcx - movq %rax, (%rcx) - movw $3, 8(%rcx) -Ltmp7022: - .loc 1 2782 5 ## /Users/dylan/github/ravi/src/lvm.c:2782:5 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB36_7 -Ltmp7023: -## %bb.5: - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - jne LBB36_7 -Ltmp7024: -## %bb.6: - ##DEBUG_VALUE: uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - movq %r14, %rdi - callq _luaC_upvalbarrier_ -Ltmp7025: -LBB36_7: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - .loc 1 2787 1 ## /Users/dylan/github/ravi/src/lvm.c:2787:1 - addq $8, %rsp - popq %rbx -Ltmp7026: - popq %r14 -Ltmp7027: - popq %r15 -Ltmp7028: - popq %rbp - retq -LBB36_2: -Ltmp7029: - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - ##DEBUG_VALUE: raviV_op_setupvalf:ra <- $rdx - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -32(%rbp), %rsi -Ltmp7030: - ##DEBUG_VALUE: raviV_op_setupvalf:na <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2779 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2779:7 - movq %rdx, %rdi - callq _luaV_tonumber_ -Ltmp7031: - testl %eax, %eax -Ltmp7032: - .loc 1 2779 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2779:7 - je LBB36_8 -Ltmp7033: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupvalf:na <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - .loc 1 2781 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2781:5 - movq -32(%rbp), %rax - jmp LBB36_4 -Ltmp7034: -LBB36_8: - ##DEBUG_VALUE: raviV_op_setupvalf:na <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_setupvalf:L <- $r14 - ##DEBUG_VALUE: raviV_op_setupvalf:cl <- $rbx - ##DEBUG_VALUE: raviV_op_setupvalf:b <- $r15d - .loc 1 2785 5 ## /Users/dylan/github/ravi/src/lvm.c:2785:5 - leaq L_.str.140(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7035: -Lfunc_end36: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupvalai ## -- Begin function raviV_op_setupvalai - .p2align 4, 0x90 -_raviV_op_setupvalai: ## @raviV_op_setupvalai -Lfunc_begin37: - .loc 1 2789 0 ## /Users/dylan/github/ravi/src/lvm.c:2789:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalai:b <- $ecx -Ltmp7036: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: io2 <- $rdx - .loc 1 2790 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2790:8 - movzwl 8(%rdx), %eax - cmpl $32789, %eax ## imm = 0x8015 -Ltmp7037: - .loc 1 2790 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2790:7 - jne LBB37_8 -Ltmp7038: -## %bb.1: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2793 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2793:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp7039: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - .loc 1 2794 3 ## /Users/dylan/github/ravi/src/lvm.c:2794:3 - movq (%rsi), %rax -Ltmp7040: - ##DEBUG_VALUE: io1 <- $rax - movq (%rdx), %r8 - movq %r8, (%rax) - movzwl 8(%rdx), %ecx -Ltmp7041: - movw %cx, 8(%rax) - testw %cx, %cx - jns LBB37_5 -Ltmp7042: -## %bb.2: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - andl $127, %ecx - movzbl 8(%r8), %eax -Ltmp7043: - cmpl %eax, %ecx - jne LBB37_9 -Ltmp7044: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - testq %rdi, %rdi - je LBB37_5 -Ltmp7045: -## %bb.4: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - movb 9(%r8), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB37_9 -Ltmp7046: -LBB37_5: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2795 3 ## /Users/dylan/github/ravi/src/lvm.c:2795:3 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB37_7 -Ltmp7047: -## %bb.6: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB37_10 -Ltmp7048: -LBB37_7: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2796 1 ## /Users/dylan/github/ravi/src/lvm.c:2796:1 - popq %rbp - retq -Ltmp7049: -LBB37_10: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2795 3 ## /Users/dylan/github/ravi/src/lvm.c:2795:3 - popq %rbp - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp7050: -LBB37_8: - ##DEBUG_VALUE: raviV_op_setupvalai:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2791 5 ## /Users/dylan/github/ravi/src/lvm.c:2791:5 - leaq L_.str.141(%rip), %rsi -Ltmp7051: - xorl %eax, %eax - callq _luaG_runerror -Ltmp7052: -LBB37_9: - ##DEBUG_VALUE: raviV_op_setupvalai:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalai:L <- $rdi - .loc 1 2794 3 ## /Users/dylan/github/ravi/src/lvm.c:2794:3 - leaq L___func__.raviV_op_setupvalai(%rip), %rdi -Ltmp7053: - leaq L_.str(%rip), %rsi -Ltmp7054: - leaq L_.str.14(%rip), %rcx - movl $2794, %edx ## imm = 0xAEA -Ltmp7055: - callq ___assert_rtn -Ltmp7056: -Lfunc_end37: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupvalaf ## -- Begin function raviV_op_setupvalaf - .p2align 4, 0x90 -_raviV_op_setupvalaf: ## @raviV_op_setupvalaf -Lfunc_begin38: - .loc 1 2798 0 ## /Users/dylan/github/ravi/src/lvm.c:2798:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- $ecx -Ltmp7057: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: io2 <- $rdx - .loc 1 2799 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2799:8 - movzwl 8(%rdx), %eax - cmpl $32805, %eax ## imm = 0x8025 -Ltmp7058: - .loc 1 2799 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2799:7 - jne LBB38_8 -Ltmp7059: -## %bb.1: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2802 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2802:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp7060: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - .loc 1 2803 3 ## /Users/dylan/github/ravi/src/lvm.c:2803:3 - movq (%rsi), %rax -Ltmp7061: - ##DEBUG_VALUE: io1 <- $rax - movq (%rdx), %r8 - movq %r8, (%rax) - movzwl 8(%rdx), %ecx -Ltmp7062: - movw %cx, 8(%rax) - testw %cx, %cx - jns LBB38_5 -Ltmp7063: -## %bb.2: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - andl $127, %ecx - movzbl 8(%r8), %eax -Ltmp7064: - cmpl %eax, %ecx - jne LBB38_9 -Ltmp7065: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - testq %rdi, %rdi - je LBB38_5 -Ltmp7066: -## %bb.4: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - movb 9(%r8), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB38_9 -Ltmp7067: -LBB38_5: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2804 3 ## /Users/dylan/github/ravi/src/lvm.c:2804:3 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB38_7 -Ltmp7068: -## %bb.6: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB38_10 -Ltmp7069: -LBB38_7: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2805 1 ## /Users/dylan/github/ravi/src/lvm.c:2805:1 - popq %rbp - retq -Ltmp7070: -LBB38_10: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2804 3 ## /Users/dylan/github/ravi/src/lvm.c:2804:3 - popq %rbp - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp7071: -LBB38_8: - ##DEBUG_VALUE: raviV_op_setupvalaf:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2800 5 ## /Users/dylan/github/ravi/src/lvm.c:2800:5 - leaq L_.str.142(%rip), %rsi -Ltmp7072: - xorl %eax, %eax - callq _luaG_runerror -Ltmp7073: -LBB38_9: - ##DEBUG_VALUE: raviV_op_setupvalaf:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalaf:L <- $rdi - .loc 1 2803 3 ## /Users/dylan/github/ravi/src/lvm.c:2803:3 - leaq L___func__.raviV_op_setupvalaf(%rip), %rdi -Ltmp7074: - leaq L_.str(%rip), %rsi -Ltmp7075: - leaq L_.str.14(%rip), %rcx - movl $2803, %edx ## imm = 0xAF3 -Ltmp7076: - callq ___assert_rtn -Ltmp7077: -Lfunc_end38: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupvalt ## -- Begin function raviV_op_setupvalt - .p2align 4, 0x90 -_raviV_op_setupvalt: ## @raviV_op_setupvalt -Lfunc_begin39: - .loc 1 2807 0 ## /Users/dylan/github/ravi/src/lvm.c:2807:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalt:b <- $ecx -Ltmp7078: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: io2 <- $rdx - .loc 1 2808 8 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2808:8 - movzwl 8(%rdx), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp7079: - .loc 1 2808 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2808:7 - jne LBB39_8 -Ltmp7080: -## %bb.1: - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2810 15 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2810:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp7081: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - .loc 1 2811 3 ## /Users/dylan/github/ravi/src/lvm.c:2811:3 - movq (%rsi), %rax -Ltmp7082: - ##DEBUG_VALUE: io1 <- $rax - movq (%rdx), %r8 - movq %r8, (%rax) - movzwl 8(%rdx), %ecx -Ltmp7083: - movw %cx, 8(%rax) - testw %cx, %cx - jns LBB39_5 -Ltmp7084: -## %bb.2: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - andl $127, %ecx - movzbl 8(%r8), %eax -Ltmp7085: - cmpl %eax, %ecx - jne LBB39_9 -Ltmp7086: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - testq %rdi, %rdi - je LBB39_5 -Ltmp7087: -## %bb.4: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - movb 9(%r8), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB39_9 -Ltmp7088: -LBB39_5: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2812 3 ## /Users/dylan/github/ravi/src/lvm.c:2812:3 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB39_7 -Ltmp7089: -## %bb.6: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB39_10 -Ltmp7090: -LBB39_7: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2813 1 ## /Users/dylan/github/ravi/src/lvm.c:2813:1 - popq %rbp - retq -Ltmp7091: -LBB39_10: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2812 3 ## /Users/dylan/github/ravi/src/lvm.c:2812:3 - popq %rbp - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp7092: -LBB39_8: - ##DEBUG_VALUE: raviV_op_setupvalt:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2809 5 ## /Users/dylan/github/ravi/src/lvm.c:2809:5 - leaq L_.str.143(%rip), %rsi -Ltmp7093: - xorl %eax, %eax - callq _luaG_runerror -Ltmp7094: -LBB39_9: - ##DEBUG_VALUE: raviV_op_setupvalt:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupvalt:L <- $rdi - .loc 1 2811 3 ## /Users/dylan/github/ravi/src/lvm.c:2811:3 - leaq L___func__.raviV_op_setupvalt(%rip), %rdi -Ltmp7095: - leaq L_.str(%rip), %rsi -Ltmp7096: - leaq L_.str.14(%rip), %rcx - movl $2811, %edx ## imm = 0xAFB -Ltmp7097: - callq ___assert_rtn -Ltmp7098: -Lfunc_end39: - .cfi_endproc - ## -- End function - .globl _raviV_op_setupval ## -- Begin function raviV_op_setupval - .p2align 4, 0x90 -_raviV_op_setupval: ## @raviV_op_setupval -Lfunc_begin40: - .loc 1 2815 0 ## /Users/dylan/github/ravi/src/lvm.c:2815:0 - .cfi_startproc -## %bb.0: - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - ##DEBUG_VALUE: raviV_op_setupval:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:cl <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:b <- $ecx - ##DEBUG_VALUE: raviV_op_setupval:b <- $ecx - ##DEBUG_VALUE: io2 <- $rdx - .loc 1 2816 15 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2816:15 - movslq %ecx, %rax - movq 32(%rsi,%rax,8), %rsi -Ltmp7099: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - .loc 1 2817 3 ## /Users/dylan/github/ravi/src/lvm.c:2817:3 - movq (%rsi), %rax -Ltmp7100: - ##DEBUG_VALUE: io1 <- $rax - movq (%rdx), %r8 - movq %r8, (%rax) - movzwl 8(%rdx), %ecx -Ltmp7101: - movw %cx, 8(%rax) - testw %cx, %cx - jns LBB40_4 -Ltmp7102: -## %bb.1: - ##DEBUG_VALUE: io1 <- $rax - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - andl $127, %ecx - movzbl 8(%r8), %eax -Ltmp7103: - cmpl %eax, %ecx - jne LBB40_7 -Ltmp7104: -## %bb.2: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - testq %rdi, %rdi - je LBB40_4 -Ltmp7105: -## %bb.3: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - movb 9(%r8), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB40_7 -Ltmp7106: -LBB40_4: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - .loc 1 2818 3 ## /Users/dylan/github/ravi/src/lvm.c:2818:3 - movq (%rsi), %rax - cmpw $0, 8(%rax) - jns LBB40_6 -Ltmp7107: -## %bb.5: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - leaq 16(%rsi), %rcx - cmpq %rcx, %rax - je LBB40_8 -Ltmp7108: -LBB40_6: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - .loc 1 2819 1 ## /Users/dylan/github/ravi/src/lvm.c:2819:1 - retq -Ltmp7109: -LBB40_8: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - .loc 1 2818 3 ## /Users/dylan/github/ravi/src/lvm.c:2818:3 - jmp _luaC_upvalbarrier_ ## TAILCALL -Ltmp7110: -LBB40_7: - ##DEBUG_VALUE: raviV_op_setupval:uv <- $rsi - ##DEBUG_VALUE: io2 <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:ra <- $rdx - ##DEBUG_VALUE: raviV_op_setupval:L <- $rdi - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp7111: - .loc 1 2817 3 ## /Users/dylan/github/ravi/src/lvm.c:2817:3 - leaq L___func__.raviV_op_setupval(%rip), %rdi -Ltmp7112: - leaq L_.str(%rip), %rsi -Ltmp7113: - leaq L_.str.14(%rip), %rcx - movl $2817, %edx ## imm = 0xB01 -Ltmp7114: - callq ___assert_rtn -Ltmp7115: -Lfunc_end40: - .cfi_endproc - ## -- End function - .globl _raviV_op_add ## -- Begin function raviV_op_add - .p2align 4, 0x90 -_raviV_op_add: ## @raviV_op_add -Lfunc_begin41: - .loc 1 2821 0 ## /Users/dylan/github/ravi/src/lvm.c:2821:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_add:L <- $rdi - ##DEBUG_VALUE: raviV_op_add:ra <- $rsi - ##DEBUG_VALUE: raviV_op_add:rb <- $rdx - ##DEBUG_VALUE: raviV_op_add:rc <- $rcx -Ltmp7116: - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %rbx - movq %rdx, %r15 - movq %rsi, %r14 -Ltmp7117: - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7118: - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - .loc 1 2824 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2824:7 - movzwl 8(%rdx), %eax - .loc 1 2824 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2824:23 - cmpl $19, %eax - jne LBB41_1 -Ltmp7119: -## %bb.3: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2824 26 ## /Users/dylan/github/ravi/src/lvm.c:2824:26 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp7120: - .loc 1 2824 7 ## /Users/dylan/github/ravi/src/lvm.c:2824:7 - jne LBB41_5 -Ltmp7121: -## %bb.4: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2826 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2826:22 - movq (%rbx), %rax -Ltmp7122: - ##DEBUG_VALUE: ic <- $rax - .loc 1 2827 5 ## /Users/dylan/github/ravi/src/lvm.c:2827:5 - addq (%r15), %rax -Ltmp7123: - movq %rax, (%r14) - movw $19, 8(%r14) - jmp LBB41_12 -Ltmp7124: -LBB41_1: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2824 23 ## /Users/dylan/github/ravi/src/lvm.c:2824:23 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB41_5 -Ltmp7125: -## %bb.2: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - ##DEBUG_VALUE: raviV_op_add:nb <- [DW_OP_deref] $r15 - .loc 1 2829 12 ## /Users/dylan/github/ravi/src/lvm.c:2829:12 - movq (%r15), %rax - movq %rax, -48(%rbp) - .loc 1 2829 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2829:33 - movzwl 8(%rbx), %eax - cmpl $3, %eax -Ltmp7126: - .loc 1 2829 12 ## /Users/dylan/github/ravi/src/lvm.c:2829:12 - je LBB41_7 - jmp LBB41_8 -Ltmp7127: -LBB41_5: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 0 12 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - leaq -48(%rbp), %rsi -Ltmp7128: - ##DEBUG_VALUE: raviV_op_add:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2829 12 ## /Users/dylan/github/ravi/src/lvm.c:2829:12 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp7129: - testl %eax, %eax - .loc 1 2829 30 ## /Users/dylan/github/ravi/src/lvm.c:2829:30 - je LBB41_11 -Ltmp7130: -## %bb.6: - ##DEBUG_VALUE: raviV_op_add:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2829 33 ## /Users/dylan/github/ravi/src/lvm.c:2829:33 - movzwl 8(%rbx), %eax - cmpl $3, %eax -Ltmp7131: - .loc 1 2829 12 ## /Users/dylan/github/ravi/src/lvm.c:2829:12 - jne LBB41_8 -Ltmp7132: -LBB41_7: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - ##DEBUG_VALUE: raviV_op_add:nc <- [DW_OP_deref] $rbx - .loc 1 2829 33 ## /Users/dylan/github/ravi/src/lvm.c:2829:33 - movq (%rbx), %rax - movq %rax, -40(%rbp) - movq %rax, %xmm0 -Ltmp7133: -LBB41_10: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - ##DEBUG_VALUE: raviV_op_add:nc <- $xmm0 - .loc 1 2830 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2830:5 - addsd -48(%rbp), %xmm0 -Ltmp7134: - movsd %xmm0, (%r14) - movw $3, 8(%r14) -Ltmp7135: -LBB41_12: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2835 1 ## /Users/dylan/github/ravi/src/lvm.c:2835:1 - addq $16, %rsp - popq %rbx -Ltmp7136: - popq %r12 -Ltmp7137: - popq %r14 -Ltmp7138: - popq %r15 -Ltmp7139: - popq %rbp - retq -LBB41_8: -Ltmp7140: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -40(%rbp), %rsi -Ltmp7141: - ##DEBUG_VALUE: raviV_op_add:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2829 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2829:33 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp7142: - testl %eax, %eax -Ltmp7143: - .loc 1 2829 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2829:12 - je LBB41_11 -Ltmp7144: -## %bb.9: - ##DEBUG_VALUE: raviV_op_add:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2830 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2830:5 - movq -40(%rbp), %xmm0 ## xmm0 = mem[0],zero - jmp LBB41_10 -Ltmp7145: -LBB41_11: - ##DEBUG_VALUE: raviV_op_add:L <- $r12 - ##DEBUG_VALUE: raviV_op_add:ra <- $r14 - ##DEBUG_VALUE: raviV_op_add:rb <- $r15 - ##DEBUG_VALUE: raviV_op_add:rc <- $rbx - .loc 1 2833 5 ## /Users/dylan/github/ravi/src/lvm.c:2833:5 - movl $6, %r8d - movq %r12, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7146: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB41_12 -Ltmp7147: -Lfunc_end41: - .cfi_endproc - ## -- End function - .globl _raviV_op_sub ## -- Begin function raviV_op_sub - .p2align 4, 0x90 -_raviV_op_sub: ## @raviV_op_sub -Lfunc_begin42: - .loc 1 2837 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2837:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_sub:L <- $rdi - ##DEBUG_VALUE: raviV_op_sub:ra <- $rsi - ##DEBUG_VALUE: raviV_op_sub:rb <- $rdx - ##DEBUG_VALUE: raviV_op_sub:rc <- $rcx -Ltmp7148: - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7149: - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7150: - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - .loc 1 2840 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2840:7 - movzwl 8(%rdx), %eax - .loc 1 2840 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2840:23 - cmpl $19, %eax - jne LBB42_1 -Ltmp7151: -## %bb.3: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2840 26 ## /Users/dylan/github/ravi/src/lvm.c:2840:26 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7152: - .loc 1 2840 7 ## /Users/dylan/github/ravi/src/lvm.c:2840:7 - jne LBB42_5 -Ltmp7153: -## %bb.4: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2841 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2841:22 - movq (%rbx), %rax -Ltmp7154: - ##DEBUG_VALUE: ib <- $rax - .loc 1 2843 5 ## /Users/dylan/github/ravi/src/lvm.c:2843:5 - subq (%r15), %rax -Ltmp7155: - movq %rax, (%r14) - movw $19, 8(%r14) - jmp LBB42_12 -Ltmp7156: -LBB42_1: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2840 23 ## /Users/dylan/github/ravi/src/lvm.c:2840:23 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB42_5 -Ltmp7157: -## %bb.2: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - ##DEBUG_VALUE: raviV_op_sub:nb <- [DW_OP_deref] $rbx - .loc 1 2845 12 ## /Users/dylan/github/ravi/src/lvm.c:2845:12 - movq (%rbx), %rax - movq %rax, -48(%rbp) - .loc 1 2845 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2845:33 - movzwl 8(%r15), %eax - cmpl $3, %eax -Ltmp7158: - .loc 1 2845 12 ## /Users/dylan/github/ravi/src/lvm.c:2845:12 - je LBB42_7 - jmp LBB42_8 -Ltmp7159: -LBB42_5: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 0 12 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - leaq -48(%rbp), %rsi -Ltmp7160: - ##DEBUG_VALUE: raviV_op_sub:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2845 12 ## /Users/dylan/github/ravi/src/lvm.c:2845:12 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp7161: - testl %eax, %eax - .loc 1 2845 30 ## /Users/dylan/github/ravi/src/lvm.c:2845:30 - je LBB42_11 -Ltmp7162: -## %bb.6: - ##DEBUG_VALUE: raviV_op_sub:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2845 33 ## /Users/dylan/github/ravi/src/lvm.c:2845:33 - movzwl 8(%r15), %eax - cmpl $3, %eax -Ltmp7163: - .loc 1 2845 12 ## /Users/dylan/github/ravi/src/lvm.c:2845:12 - jne LBB42_8 -Ltmp7164: -LBB42_7: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - ##DEBUG_VALUE: raviV_op_sub:nc <- [DW_OP_deref] $r15 - .loc 1 2845 33 ## /Users/dylan/github/ravi/src/lvm.c:2845:33 - movq (%r15), %rax - movq %rax, -40(%rbp) - movq %rax, %xmm0 -Ltmp7165: -LBB42_10: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - ##DEBUG_VALUE: raviV_op_sub:nc <- $xmm0 - .loc 1 2846 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2846:5 - movsd -48(%rbp), %xmm1 ## xmm1 = mem[0],zero -Ltmp7166: - ##DEBUG_VALUE: raviV_op_sub:nb <- $xmm1 - subsd %xmm0, %xmm1 -Ltmp7167: - movsd %xmm1, (%r14) - movw $3, 8(%r14) -Ltmp7168: -LBB42_12: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2851 1 ## /Users/dylan/github/ravi/src/lvm.c:2851:1 - addq $16, %rsp - popq %rbx -Ltmp7169: - popq %r12 -Ltmp7170: - popq %r14 -Ltmp7171: - popq %r15 -Ltmp7172: - popq %rbp - retq -LBB42_8: -Ltmp7173: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -40(%rbp), %rsi -Ltmp7174: - ##DEBUG_VALUE: raviV_op_sub:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2845 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2845:33 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp7175: - testl %eax, %eax -Ltmp7176: - .loc 1 2845 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2845:12 - je LBB42_11 -Ltmp7177: -## %bb.9: - ##DEBUG_VALUE: raviV_op_sub:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2846 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2846:5 - movq -40(%rbp), %xmm0 ## xmm0 = mem[0],zero - jmp LBB42_10 -Ltmp7178: -LBB42_11: - ##DEBUG_VALUE: raviV_op_sub:L <- $r12 - ##DEBUG_VALUE: raviV_op_sub:ra <- $r14 - ##DEBUG_VALUE: raviV_op_sub:rb <- $rbx - ##DEBUG_VALUE: raviV_op_sub:rc <- $r15 - .loc 1 2849 5 ## /Users/dylan/github/ravi/src/lvm.c:2849:5 - movl $7, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7179: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB42_12 -Ltmp7180: -Lfunc_end42: - .cfi_endproc - ## -- End function - .globl _raviV_op_mul ## -- Begin function raviV_op_mul - .p2align 4, 0x90 -_raviV_op_mul: ## @raviV_op_mul -Lfunc_begin43: - .loc 1 2853 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2853:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_mul:L <- $rdi - ##DEBUG_VALUE: raviV_op_mul:ra <- $rsi - ##DEBUG_VALUE: raviV_op_mul:rb <- $rdx - ##DEBUG_VALUE: raviV_op_mul:rc <- $rcx -Ltmp7181: - ##DEBUG_VALUE: io <- $rsi - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %rbx - movq %rdx, %r15 - movq %rsi, %r14 -Ltmp7182: - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7183: - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - .loc 1 2856 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2856:7 - movzwl 8(%rdx), %eax - .loc 1 2856 23 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2856:23 - cmpl $19, %eax - jne LBB43_1 -Ltmp7184: -## %bb.3: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2856 26 ## /Users/dylan/github/ravi/src/lvm.c:2856:26 - movzwl 8(%rbx), %eax - cmpl $19, %eax -Ltmp7185: - .loc 1 2856 7 ## /Users/dylan/github/ravi/src/lvm.c:2856:7 - jne LBB43_5 -Ltmp7186: -## %bb.4: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2858 22 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2858:22 - movq (%rbx), %rax -Ltmp7187: - ##DEBUG_VALUE: ic <- $rax - .loc 1 2859 5 ## /Users/dylan/github/ravi/src/lvm.c:2859:5 - imulq (%r15), %rax -Ltmp7188: - movq %rax, (%r14) - movw $19, 8(%r14) - jmp LBB43_12 -Ltmp7189: -LBB43_1: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2856 23 ## /Users/dylan/github/ravi/src/lvm.c:2856:23 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB43_5 -Ltmp7190: -## %bb.2: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - ##DEBUG_VALUE: raviV_op_mul:nb <- [DW_OP_deref] $r15 - .loc 1 2861 12 ## /Users/dylan/github/ravi/src/lvm.c:2861:12 - movq (%r15), %rax - movq %rax, -48(%rbp) - .loc 1 2861 33 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2861:33 - movzwl 8(%rbx), %eax - cmpl $3, %eax -Ltmp7191: - .loc 1 2861 12 ## /Users/dylan/github/ravi/src/lvm.c:2861:12 - je LBB43_7 - jmp LBB43_8 -Ltmp7192: -LBB43_5: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 0 12 ## /Users/dylan/github/ravi/src/lvm.c:0:12 - leaq -48(%rbp), %rsi -Ltmp7193: - ##DEBUG_VALUE: raviV_op_mul:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2861 12 ## /Users/dylan/github/ravi/src/lvm.c:2861:12 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp7194: - testl %eax, %eax - .loc 1 2861 30 ## /Users/dylan/github/ravi/src/lvm.c:2861:30 - je LBB43_11 -Ltmp7195: -## %bb.6: - ##DEBUG_VALUE: raviV_op_mul:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2861 33 ## /Users/dylan/github/ravi/src/lvm.c:2861:33 - movzwl 8(%rbx), %eax - cmpl $3, %eax -Ltmp7196: - .loc 1 2861 12 ## /Users/dylan/github/ravi/src/lvm.c:2861:12 - jne LBB43_8 -Ltmp7197: -LBB43_7: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - ##DEBUG_VALUE: raviV_op_mul:nc <- [DW_OP_deref] $rbx - .loc 1 2861 33 ## /Users/dylan/github/ravi/src/lvm.c:2861:33 - movq (%rbx), %rax - movq %rax, -40(%rbp) - movq %rax, %xmm0 -Ltmp7198: -LBB43_10: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - ##DEBUG_VALUE: raviV_op_mul:nc <- $xmm0 - .loc 1 2862 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2862:5 - mulsd -48(%rbp), %xmm0 -Ltmp7199: - movsd %xmm0, (%r14) - movw $3, 8(%r14) -Ltmp7200: -LBB43_12: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2867 1 ## /Users/dylan/github/ravi/src/lvm.c:2867:1 - addq $16, %rsp - popq %rbx -Ltmp7201: - popq %r12 -Ltmp7202: - popq %r14 -Ltmp7203: - popq %r15 -Ltmp7204: - popq %rbp - retq -LBB43_8: -Ltmp7205: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -40(%rbp), %rsi -Ltmp7206: - ##DEBUG_VALUE: raviV_op_mul:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2861 33 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2861:33 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp7207: - testl %eax, %eax -Ltmp7208: - .loc 1 2861 12 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2861:12 - je LBB43_11 -Ltmp7209: -## %bb.9: - ##DEBUG_VALUE: raviV_op_mul:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2862 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2862:5 - movq -40(%rbp), %xmm0 ## xmm0 = mem[0],zero - jmp LBB43_10 -Ltmp7210: -LBB43_11: - ##DEBUG_VALUE: raviV_op_mul:L <- $r12 - ##DEBUG_VALUE: raviV_op_mul:ra <- $r14 - ##DEBUG_VALUE: raviV_op_mul:rb <- $r15 - ##DEBUG_VALUE: raviV_op_mul:rc <- $rbx - .loc 1 2865 5 ## /Users/dylan/github/ravi/src/lvm.c:2865:5 - movl $8, %r8d - movq %r12, %rdi - movq %r15, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7211: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB43_12 -Ltmp7212: -Lfunc_end43: - .cfi_endproc - ## -- End function - .globl _raviV_op_div ## -- Begin function raviV_op_div - .p2align 4, 0x90 -_raviV_op_div: ## @raviV_op_div -Lfunc_begin44: - .loc 1 2869 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2869:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_div:L <- $rdi - ##DEBUG_VALUE: raviV_op_div:ra <- $rsi - ##DEBUG_VALUE: raviV_op_div:rb <- $rdx - ##DEBUG_VALUE: raviV_op_div:rc <- $rcx -Ltmp7213: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7214: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7215: - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - .loc 1 2872 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movzwl 8(%rdx), %eax - cmpl $3, %eax - .loc 1 2872 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2872:25 - jne LBB44_2 -Ltmp7216: -## %bb.1: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - ##DEBUG_VALUE: raviV_op_div:nb <- [DW_OP_deref] $rbx - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movq (%rbx), %rax - movq %rax, -48(%rbp) -Ltmp7217: -LBB44_3: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 2872 28 ## /Users/dylan/github/ravi/src/lvm.c:2872:28 - movzwl 8(%r15), %eax - cmpl $3, %eax -Ltmp7218: - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - jne LBB44_5 -Ltmp7219: -## %bb.4: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - ##DEBUG_VALUE: raviV_op_div:nc <- [DW_OP_deref] $r15 - .loc 1 2872 28 ## /Users/dylan/github/ravi/src/lvm.c:2872:28 - movq (%r15), %rax - movq %rax, -40(%rbp) - movq %rax, %xmm0 -Ltmp7220: -LBB44_7: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - ##DEBUG_VALUE: raviV_op_div:nc <- $xmm0 - .loc 1 2873 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2873:5 - movsd -48(%rbp), %xmm1 ## xmm1 = mem[0],zero -Ltmp7221: - ##DEBUG_VALUE: raviV_op_div:nb <- $xmm1 - divsd %xmm0, %xmm1 -Ltmp7222: - movsd %xmm1, (%r14) - movw $3, 8(%r14) -Ltmp7223: -LBB44_9: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 2878 1 ## /Users/dylan/github/ravi/src/lvm.c:2878:1 - addq $16, %rsp - popq %rbx -Ltmp7224: - popq %r12 -Ltmp7225: - popq %r14 -Ltmp7226: - popq %r15 -Ltmp7227: - popq %rbp - retq -LBB44_2: -Ltmp7228: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -48(%rbp), %rsi -Ltmp7229: - ##DEBUG_VALUE: raviV_op_div:nb <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2872 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - movq %rbx, %rdi - callq _luaV_tonumber_ -Ltmp7230: - testl %eax, %eax - .loc 1 2872 25 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2872:25 - jne LBB44_3 - jmp LBB44_8 -Ltmp7231: -LBB44_5: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 0 25 ## /Users/dylan/github/ravi/src/lvm.c:0:25 - leaq -40(%rbp), %rsi -Ltmp7232: - ##DEBUG_VALUE: raviV_op_div:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2872 28 ## /Users/dylan/github/ravi/src/lvm.c:2872:28 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp7233: - testl %eax, %eax -Ltmp7234: - .loc 1 2872 7 ## /Users/dylan/github/ravi/src/lvm.c:2872:7 - je LBB44_8 -Ltmp7235: -## %bb.6: - ##DEBUG_VALUE: raviV_op_div:nc <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 2873 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2873:5 - movq -40(%rbp), %xmm0 ## xmm0 = mem[0],zero - jmp LBB44_7 -Ltmp7236: -LBB44_8: - ##DEBUG_VALUE: raviV_op_div:L <- $r12 - ##DEBUG_VALUE: raviV_op_div:ra <- $r14 - ##DEBUG_VALUE: raviV_op_div:rb <- $rbx - ##DEBUG_VALUE: raviV_op_div:rc <- $r15 - .loc 1 2876 5 ## /Users/dylan/github/ravi/src/lvm.c:2876:5 - movl $11, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7237: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB44_9 -Ltmp7238: -Lfunc_end44: - .cfi_endproc - ## -- End function - .globl _raviV_op_shl ## -- Begin function raviV_op_shl - .p2align 4, 0x90 -_raviV_op_shl: ## @raviV_op_shl -Lfunc_begin45: - .loc 1 2880 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2880:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_shl:L <- $rdi - ##DEBUG_VALUE: raviV_op_shl:ra <- $rsi - ##DEBUG_VALUE: raviV_op_shl:rb <- $rdx - ##DEBUG_VALUE: raviV_op_shl:rc <- $rcx -Ltmp7239: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7240: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7241: - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - .loc 1 2883 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax - .loc 1 2883 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2883:26 - jne LBB45_2 -Ltmp7242: -## %bb.1: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - movq (%rbx), %rax -Ltmp7243: - ##DEBUG_VALUE: raviV_op_shl:ib <- $rax - movq %rax, -48(%rbp) -Ltmp7244: -LBB45_3: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7245: - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - jne LBB45_5 -Ltmp7246: -## %bb.4: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - movq (%r15), %rax -Ltmp7247: - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax - movq %rax, -40(%rbp) - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax -Ltmp7248: - .loc 1 2884 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2884:5 - movq -48(%rbp), %rdx -Ltmp7249: - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: raviV_op_shl:ib <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp7250: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - js LBB45_8 -Ltmp7251: -LBB45_9: - ##DEBUG_VALUE: raviV_op_shl:ib <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 882 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - movl %eax, %ecx - shlq %cl, %rdx -Ltmp7252: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $63, %rax -Ltmp7253: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovleq %rdx, %rcx - jmp LBB45_10 -Ltmp7254: -LBB45_2: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq -48(%rbp), %rsi -Ltmp7255: - ##DEBUG_VALUE: raviV_op_shl:ib <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2883 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7256: - testl %eax, %eax - .loc 1 2883 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2883:26 - jne LBB45_3 - jmp LBB45_11 -Ltmp7257: -LBB45_5: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - leaq -40(%rbp), %rsi -Ltmp7258: - ##DEBUG_VALUE: raviV_op_shl:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2883 29 ## /Users/dylan/github/ravi/src/lvm.c:2883:29 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7259: - testl %eax, %eax -Ltmp7260: - .loc 1 2883 7 ## /Users/dylan/github/ravi/src/lvm.c:2883:7 - je LBB45_11 -Ltmp7261: -## %bb.6: - ##DEBUG_VALUE: raviV_op_shl:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2884 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2884:5 - movq -40(%rbp), %rax -Ltmp7262: - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax - movq -48(%rbp), %rdx -Ltmp7263: - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: raviV_op_shl:ib <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp7264: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jns LBB45_9 -Ltmp7265: -LBB45_8: - ##DEBUG_VALUE: raviV_op_shl:ib <- $rdx - ##DEBUG_VALUE: luaV_shiftl:y <- $rax - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx - negl %ecx - ## kill: def $cl killed $cl killed $ecx - shrq %cl, %rdx -Ltmp7266: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $-63, %rax -Ltmp7267: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovgeq %rdx, %rcx -Ltmp7268: -LBB45_10: - ##DEBUG_VALUE: raviV_op_shl:ic <- $rax - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2884 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2884:5 - movq %rcx, (%r14) - movw $19, 8(%r14) -Ltmp7269: -LBB45_12: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2889 1 ## /Users/dylan/github/ravi/src/lvm.c:2889:1 - addq $16, %rsp - popq %rbx -Ltmp7270: - popq %r12 -Ltmp7271: - popq %r14 -Ltmp7272: - popq %r15 -Ltmp7273: - popq %rbp - retq -LBB45_11: -Ltmp7274: - ##DEBUG_VALUE: raviV_op_shl:L <- $r12 - ##DEBUG_VALUE: raviV_op_shl:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shl:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shl:rc <- $r15 - .loc 1 2887 5 ## /Users/dylan/github/ravi/src/lvm.c:2887:5 - movl $16, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7275: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB45_12 -Ltmp7276: -Lfunc_end45: - .cfi_endproc - ## -- End function - .globl _raviV_op_shr ## -- Begin function raviV_op_shr - .p2align 4, 0x90 -_raviV_op_shr: ## @raviV_op_shr -Lfunc_begin46: - .loc 1 2891 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2891:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_shr:L <- $rdi - ##DEBUG_VALUE: raviV_op_shr:ra <- $rsi - ##DEBUG_VALUE: raviV_op_shr:rb <- $rdx - ##DEBUG_VALUE: raviV_op_shr:rc <- $rcx -Ltmp7277: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7278: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7279: - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - .loc 1 2894 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax - .loc 1 2894 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2894:26 - jne LBB46_2 -Ltmp7280: -## %bb.1: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - movq (%rbx), %rax -Ltmp7281: - ##DEBUG_VALUE: raviV_op_shr:ib <- $rax - movq %rax, -48(%rbp) -Ltmp7282: -LBB46_3: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7283: - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - jne LBB46_5 -Ltmp7284: -## %bb.4: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - movq (%r15), %rax -Ltmp7285: - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax - movq %rax, -40(%rbp) - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax -Ltmp7286: - .loc 1 2895 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2895:5 - movq -48(%rbp), %rdx -Ltmp7287: - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shr:ib <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp7288: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jle LBB46_9 -Ltmp7289: -LBB46_8: - ##DEBUG_VALUE: raviV_op_shr:ib <- $rdx - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 878 17 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:878:17 - movl %eax, %ecx - shrq %cl, %rdx -Ltmp7290: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 877 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:877:11 - cmpq $63, %rax -Ltmp7291: - .loc 1 877 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:877:9 - cmovleq %rdx, %rcx - jmp LBB46_10 -Ltmp7292: -LBB46_2: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 0 9 ## /Users/dylan/github/ravi/src/lvm.c:0:9 - leaq -48(%rbp), %rsi -Ltmp7293: - ##DEBUG_VALUE: raviV_op_shr:ib <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2894 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7294: - testl %eax, %eax - .loc 1 2894 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2894:26 - jne LBB46_3 - jmp LBB46_11 -Ltmp7295: -LBB46_5: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - leaq -40(%rbp), %rsi -Ltmp7296: - ##DEBUG_VALUE: raviV_op_shr:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2894 29 ## /Users/dylan/github/ravi/src/lvm.c:2894:29 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7297: - testl %eax, %eax -Ltmp7298: - .loc 1 2894 7 ## /Users/dylan/github/ravi/src/lvm.c:2894:7 - je LBB46_11 -Ltmp7299: -## %bb.6: - ##DEBUG_VALUE: raviV_op_shr:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2895 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2895:5 - movq -40(%rbp), %rax -Ltmp7300: - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax - movq -48(%rbp), %rdx -Ltmp7301: - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shr:ib <- $rdx - .loc 1 876 9 ## /Users/dylan/github/ravi/src/lvm.c:876:9 - testq %rax, %rax -Ltmp7302: - .loc 1 876 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:876:7 - jg LBB46_8 -Ltmp7303: -LBB46_9: - ##DEBUG_VALUE: raviV_op_shr:ib <- $rdx - ##DEBUG_VALUE: luaV_shiftl:x <- $rdx - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2895 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2895:5 - movl %eax, %ecx - negl %ecx - ## kill: def $cl killed $cl killed $ecx -Ltmp7304: - .loc 1 882 17 ## /Users/dylan/github/ravi/src/lvm.c:882:17 - shlq %cl, %rdx -Ltmp7305: - .loc 1 0 17 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:17 - xorl %ecx, %ecx - .loc 1 881 11 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:881:11 - cmpq $-63, %rax -Ltmp7306: - .loc 1 881 9 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:881:9 - cmovgeq %rdx, %rcx -Ltmp7307: -LBB46_10: - ##DEBUG_VALUE: raviV_op_shr:ic <- $rax - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2895 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2895:5 - movq %rcx, (%r14) - movw $19, 8(%r14) -Ltmp7308: -LBB46_12: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2900 1 ## /Users/dylan/github/ravi/src/lvm.c:2900:1 - addq $16, %rsp - popq %rbx -Ltmp7309: - popq %r12 -Ltmp7310: - popq %r14 -Ltmp7311: - popq %r15 -Ltmp7312: - popq %rbp - retq -LBB46_11: -Ltmp7313: - ##DEBUG_VALUE: raviV_op_shr:L <- $r12 - ##DEBUG_VALUE: raviV_op_shr:ra <- $r14 - ##DEBUG_VALUE: raviV_op_shr:rb <- $rbx - ##DEBUG_VALUE: raviV_op_shr:rc <- $r15 - .loc 1 2898 5 ## /Users/dylan/github/ravi/src/lvm.c:2898:5 - movl $17, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7314: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB46_12 -Ltmp7315: -Lfunc_end46: - .cfi_endproc - ## -- End function - .globl _raviV_op_band ## -- Begin function raviV_op_band - .p2align 4, 0x90 -_raviV_op_band: ## @raviV_op_band -Lfunc_begin47: - .loc 1 2902 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2902:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_band:L <- $rdi - ##DEBUG_VALUE: raviV_op_band:ra <- $rsi - ##DEBUG_VALUE: raviV_op_band:rb <- $rdx - ##DEBUG_VALUE: raviV_op_band:rc <- $rcx -Ltmp7316: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7317: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7318: - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - .loc 1 2905 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax - .loc 1 2905 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2905:26 - jne LBB47_2 -Ltmp7319: -## %bb.1: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - movq (%rbx), %rax -Ltmp7320: - ##DEBUG_VALUE: raviV_op_band:ib <- $rax - movq %rax, -48(%rbp) -Ltmp7321: -LBB47_3: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7322: - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - jne LBB47_5 -Ltmp7323: -## %bb.4: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - movq (%r15), %rax -Ltmp7324: - ##DEBUG_VALUE: raviV_op_band:ic <- $rax - movq %rax, -40(%rbp) -Ltmp7325: -LBB47_7: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - ##DEBUG_VALUE: raviV_op_band:ic <- $rax - .loc 1 2906 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2906:5 - andq -48(%rbp), %rax -Ltmp7326: - movq %rax, (%r14) - movw $19, 8(%r14) -Ltmp7327: -LBB47_9: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2911 1 ## /Users/dylan/github/ravi/src/lvm.c:2911:1 - addq $16, %rsp - popq %rbx -Ltmp7328: - popq %r12 -Ltmp7329: - popq %r14 -Ltmp7330: - popq %r15 -Ltmp7331: - popq %rbp - retq -LBB47_2: -Ltmp7332: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -48(%rbp), %rsi -Ltmp7333: - ##DEBUG_VALUE: raviV_op_band:ib <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2905 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7334: - testl %eax, %eax - .loc 1 2905 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2905:26 - jne LBB47_3 - jmp LBB47_8 -Ltmp7335: -LBB47_5: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - leaq -40(%rbp), %rsi -Ltmp7336: - ##DEBUG_VALUE: raviV_op_band:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2905 29 ## /Users/dylan/github/ravi/src/lvm.c:2905:29 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7337: - testl %eax, %eax -Ltmp7338: - .loc 1 2905 7 ## /Users/dylan/github/ravi/src/lvm.c:2905:7 - je LBB47_8 -Ltmp7339: -## %bb.6: - ##DEBUG_VALUE: raviV_op_band:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2906 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2906:5 - movq -40(%rbp), %rax - jmp LBB47_7 -Ltmp7340: -LBB47_8: - ##DEBUG_VALUE: raviV_op_band:L <- $r12 - ##DEBUG_VALUE: raviV_op_band:ra <- $r14 - ##DEBUG_VALUE: raviV_op_band:rb <- $rbx - ##DEBUG_VALUE: raviV_op_band:rc <- $r15 - .loc 1 2909 5 ## /Users/dylan/github/ravi/src/lvm.c:2909:5 - movl $13, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7341: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB47_9 -Ltmp7342: -Lfunc_end47: - .cfi_endproc - ## -- End function - .globl _raviV_op_bor ## -- Begin function raviV_op_bor - .p2align 4, 0x90 -_raviV_op_bor: ## @raviV_op_bor -Lfunc_begin48: - .loc 1 2913 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2913:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bor:L <- $rdi - ##DEBUG_VALUE: raviV_op_bor:ra <- $rsi - ##DEBUG_VALUE: raviV_op_bor:rb <- $rdx - ##DEBUG_VALUE: raviV_op_bor:rc <- $rcx -Ltmp7343: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7344: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7345: - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - .loc 1 2916 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2916:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax - .loc 1 2916 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2916:26 - jne LBB48_2 -Ltmp7346: -## %bb.1: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2916 7 ## /Users/dylan/github/ravi/src/lvm.c:2916:7 - movq (%rbx), %rax -Ltmp7347: - ##DEBUG_VALUE: raviV_op_bor:ib <- $rax - movq %rax, -48(%rbp) -Ltmp7348: -LBB48_3: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2916 29 ## /Users/dylan/github/ravi/src/lvm.c:2916:29 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7349: - .loc 1 2916 7 ## /Users/dylan/github/ravi/src/lvm.c:2916:7 - jne LBB48_5 -Ltmp7350: -## %bb.4: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2916 29 ## /Users/dylan/github/ravi/src/lvm.c:2916:29 - movq (%r15), %rax -Ltmp7351: - ##DEBUG_VALUE: raviV_op_bor:ic <- $rax - movq %rax, -40(%rbp) -Ltmp7352: -LBB48_7: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - ##DEBUG_VALUE: raviV_op_bor:ic <- $rax - .loc 1 2917 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2917:5 - orq -48(%rbp), %rax -Ltmp7353: - movq %rax, (%r14) - movw $19, 8(%r14) -Ltmp7354: -LBB48_9: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2922 1 ## /Users/dylan/github/ravi/src/lvm.c:2922:1 - addq $16, %rsp - popq %rbx -Ltmp7355: - popq %r12 -Ltmp7356: - popq %r14 -Ltmp7357: - popq %r15 -Ltmp7358: - popq %rbp - retq -LBB48_2: -Ltmp7359: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -48(%rbp), %rsi -Ltmp7360: - ##DEBUG_VALUE: raviV_op_bor:ib <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2916 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2916:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7361: - testl %eax, %eax - .loc 1 2916 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2916:26 - jne LBB48_3 - jmp LBB48_8 -Ltmp7362: -LBB48_5: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - leaq -40(%rbp), %rsi -Ltmp7363: - ##DEBUG_VALUE: raviV_op_bor:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2916 29 ## /Users/dylan/github/ravi/src/lvm.c:2916:29 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7364: - testl %eax, %eax -Ltmp7365: - .loc 1 2916 7 ## /Users/dylan/github/ravi/src/lvm.c:2916:7 - je LBB48_8 -Ltmp7366: -## %bb.6: - ##DEBUG_VALUE: raviV_op_bor:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2917 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2917:5 - movq -40(%rbp), %rax - jmp LBB48_7 -Ltmp7367: -LBB48_8: - ##DEBUG_VALUE: raviV_op_bor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bor:rc <- $r15 - .loc 1 2920 5 ## /Users/dylan/github/ravi/src/lvm.c:2920:5 - movl $14, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7368: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB48_9 -Ltmp7369: -Lfunc_end48: - .cfi_endproc - ## -- End function - .globl _raviV_op_bxor ## -- Begin function raviV_op_bxor - .p2align 4, 0x90 -_raviV_op_bxor: ## @raviV_op_bxor -Lfunc_begin49: - .loc 1 2924 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2924:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - subq $16, %rsp - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bxor:L <- $rdi - ##DEBUG_VALUE: raviV_op_bxor:ra <- $rsi - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rdx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $rcx -Ltmp7370: - ##DEBUG_VALUE: io <- $rsi - movq %rcx, %r15 - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7371: - ##DEBUG_VALUE: io <- $r14 - movq %rdi, %r12 -Ltmp7372: - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - .loc 1 2927 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2927:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax - .loc 1 2927 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2927:26 - jne LBB49_2 -Ltmp7373: -## %bb.1: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2927 7 ## /Users/dylan/github/ravi/src/lvm.c:2927:7 - movq (%rbx), %rax -Ltmp7374: - ##DEBUG_VALUE: raviV_op_bxor:ib <- $rax - movq %rax, -48(%rbp) -Ltmp7375: -LBB49_3: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2927 29 ## /Users/dylan/github/ravi/src/lvm.c:2927:29 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7376: - .loc 1 2927 7 ## /Users/dylan/github/ravi/src/lvm.c:2927:7 - jne LBB49_5 -Ltmp7377: -## %bb.4: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2927 29 ## /Users/dylan/github/ravi/src/lvm.c:2927:29 - movq (%r15), %rax -Ltmp7378: - ##DEBUG_VALUE: raviV_op_bxor:ic <- $rax - movq %rax, -40(%rbp) -Ltmp7379: -LBB49_7: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - ##DEBUG_VALUE: raviV_op_bxor:ic <- $rax - .loc 1 2928 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2928:5 - xorq -48(%rbp), %rax -Ltmp7380: - movq %rax, (%r14) - movw $19, 8(%r14) -Ltmp7381: -LBB49_9: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2933 1 ## /Users/dylan/github/ravi/src/lvm.c:2933:1 - addq $16, %rsp - popq %rbx -Ltmp7382: - popq %r12 -Ltmp7383: - popq %r14 -Ltmp7384: - popq %r15 -Ltmp7385: - popq %rbp - retq -LBB49_2: -Ltmp7386: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - leaq -48(%rbp), %rsi -Ltmp7387: - ##DEBUG_VALUE: raviV_op_bxor:ib <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2927 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2927:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7388: - testl %eax, %eax - .loc 1 2927 26 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2927:26 - jne LBB49_3 - jmp LBB49_8 -Ltmp7389: -LBB49_5: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 0 26 ## /Users/dylan/github/ravi/src/lvm.c:0:26 - leaq -40(%rbp), %rsi -Ltmp7390: - ##DEBUG_VALUE: raviV_op_bxor:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2927 29 ## /Users/dylan/github/ravi/src/lvm.c:2927:29 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7391: - testl %eax, %eax -Ltmp7392: - .loc 1 2927 7 ## /Users/dylan/github/ravi/src/lvm.c:2927:7 - je LBB49_8 -Ltmp7393: -## %bb.6: - ##DEBUG_VALUE: raviV_op_bxor:ic <- [DW_OP_constu 40, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2928 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2928:5 - movq -40(%rbp), %rax - jmp LBB49_7 -Ltmp7394: -LBB49_8: - ##DEBUG_VALUE: raviV_op_bxor:L <- $r12 - ##DEBUG_VALUE: raviV_op_bxor:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bxor:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bxor:rc <- $r15 - .loc 1 2931 5 ## /Users/dylan/github/ravi/src/lvm.c:2931:5 - movl $15, %r8d - movq %r12, %rdi - movq %rbx, %rsi - movq %r15, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7395: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB49_9 -Ltmp7396: -Lfunc_end49: - .cfi_endproc - ## -- End function - .globl _raviV_op_bnot ## -- Begin function raviV_op_bnot - .p2align 4, 0x90 -_raviV_op_bnot: ## @raviV_op_bnot -Lfunc_begin50: - .loc 1 2935 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2935:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_op_bnot:L <- $rdi - ##DEBUG_VALUE: raviV_op_bnot:ra <- $rsi - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rdx -Ltmp7397: - ##DEBUG_VALUE: io <- $rsi - movq %rdx, %rbx - movq %rsi, %r14 -Ltmp7398: - ##DEBUG_VALUE: io <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - .loc 1 2937 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2937:7 - movzwl 8(%rdx), %eax - cmpl $19, %eax -Ltmp7399: - .loc 1 2937 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2937:7 - jne LBB50_2 -Ltmp7400: -## %bb.1: - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bnot:L <- $rdi - .loc 1 2937 7 ## /Users/dylan/github/ravi/src/lvm.c:2937:7 - movq (%rbx), %rax -Ltmp7401: - ##DEBUG_VALUE: raviV_op_bnot:ib <- $rax - movq %rax, -32(%rbp) -Ltmp7402: -LBB50_4: - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bnot:ib <- $rax - .loc 1 2937 29 ## /Users/dylan/github/ravi/src/lvm.c:2937:29 - notq %rax -Ltmp7403: - movq %rax, (%r14) - movw $19, 8(%r14) -Ltmp7404: -LBB50_6: - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - .loc 1 2941 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2941:1 - addq $8, %rsp - popq %rbx -Ltmp7405: - popq %r14 -Ltmp7406: - popq %r15 - popq %rbp - retq -LBB50_2: -Ltmp7407: - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - ##DEBUG_VALUE: raviV_op_bnot:L <- $rdi - .loc 1 0 1 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:1 - movq %rdi, %r15 -Ltmp7408: - ##DEBUG_VALUE: raviV_op_bnot:L <- $r15 - leaq -32(%rbp), %rsi -Ltmp7409: - ##DEBUG_VALUE: raviV_op_bnot:ib <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2937 7 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2937:7 - xorl %edx, %edx - movq %rbx, %rdi - callq _luaV_tointeger -Ltmp7410: - testl %eax, %eax -Ltmp7411: - .loc 1 2937 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2937:7 - je LBB50_5 -Ltmp7412: -## %bb.3: - ##DEBUG_VALUE: raviV_op_bnot:ib <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_bnot:L <- $r15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - .loc 1 2937 29 ## /Users/dylan/github/ravi/src/lvm.c:2937:29 - movq -32(%rbp), %rax - jmp LBB50_4 -Ltmp7413: -LBB50_5: - ##DEBUG_VALUE: raviV_op_bnot:ib <- [DW_OP_constu 32, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: raviV_op_bnot:L <- $r15 - ##DEBUG_VALUE: raviV_op_bnot:ra <- $r14 - ##DEBUG_VALUE: raviV_op_bnot:rb <- $rbx - .loc 1 2939 5 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2939:5 - movl $19, %r8d - movq %r15, %rdi - movq %rbx, %rsi - movq %rbx, %rdx - movq %r14, %rcx - callq _luaT_trybinTM -Ltmp7414: - .loc 1 0 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:5 - jmp LBB50_6 -Ltmp7415: -Lfunc_end50: - .cfi_endproc - ## -- End function - .globl _raviV_gettable_sskey ## -- Begin function raviV_gettable_sskey - .p2align 4, 0x90 -_raviV_gettable_sskey: ## @raviV_gettable_sskey -Lfunc_begin51: - .loc 1 2949 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2949:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp7416: - pushq %rbx - pushq %rax - .cfi_offset %rbx, -24 - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx -Ltmp7417: - ##DEBUG_VALUE: io1 <- $rcx - ##DEBUG_VALUE: io1 <- $rcx - .loc 1 2950 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - movzwl 8(%rsi), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp7418: - .loc 1 2950 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - jne LBB51_18 -Ltmp7419: -## %bb.1: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - movq (%rsi), %r8 - movb 8(%r8), %al - andb $15, %al - cmpb $5, %al - jne LBB51_22 -Ltmp7420: -## %bb.2: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - movzwl 8(%rdx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB51_23 -Ltmp7421: -## %bb.3: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - movq (%rdx), %r9 - movb 8(%r9), %r10b - movl %r10d, %eax - andb $15, %al - cmpb $4, %al - jne LBB51_24 -Ltmp7422: -## %bb.4: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %r10b - jne LBB51_25 -Ltmp7423: -## %bb.5: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - .loc 14 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%r9), %ebx - andl 80(%r8), %ebx - shlq $5, %rbx - addq 24(%r8), %rbx -Ltmp7424: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp7425: - .p2align 4, 0x90 -LBB51_6: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%rbx), %eax - cmpl $32772, %eax ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB51_11 -Ltmp7426: -## %bb.7: ## in Loop: Header=BB51_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%rbx), %r10 - movzbl 8(%r10), %r11d - movl %r11d, %eax - andb $15, %al - cmpb $4, %al - jne LBB51_26 -Ltmp7427: -## %bb.8: ## in Loop: Header=BB51_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - cmpb $4, %r11b - jne LBB51_27 -Ltmp7428: -## %bb.9: ## in Loop: Header=BB51_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - cmpq %r9, %r10 -Ltmp7429: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB51_10 -Ltmp7430: -LBB51_11: ## in Loop: Header=BB51_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%rbx), %r10 - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %r10, %rax - shlq $5, %rax - addq %rax, %rbx -Ltmp7431: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %r10, %r10 - jne LBB51_6 -Ltmp7432: -## %bb.12: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - cmpw $0, 8(%r8) -Ltmp7433: - .loc 1 2950 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - jne LBB51_13 - jmp LBB51_20 -Ltmp7434: -LBB51_10: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq %rbx, %r8 -Ltmp7435: - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: aux <- $r8 - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - cmpw $0, 8(%r8) -Ltmp7436: - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - je LBB51_20 -Ltmp7437: -LBB51_13: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - movq (%r8), %rax - movq %rax, (%rcx) - movzwl 8(%r8), %edx -Ltmp7438: - movw %dx, 8(%rcx) - testw %dx, %dx - jns LBB51_21 -Ltmp7439: -## %bb.14: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - andl $127, %edx - movzbl 8(%rax), %ecx -Ltmp7440: - cmpl %ecx, %edx - jne LBB51_17 -Ltmp7441: -## %bb.15: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - testq %rdi, %rdi - je LBB51_21 -Ltmp7442: -## %bb.16: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - movb 9(%rax), %al - xorb $3, %al - movq 24(%rdi), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB51_17 -Ltmp7443: -LBB51_21: - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2951 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2951:1 - addq $8, %rsp - popq %rbx - popq %rbp - retq -Ltmp7444: -LBB51_18: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - andl $15, %eax - cmpl $5, %eax -Ltmp7445: - .loc 1 2950 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - je LBB51_28 -Ltmp7446: -## %bb.19: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - xorl %r8d, %r8d -Ltmp7447: -LBB51_20: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - addq $8, %rsp - popq %rbx - popq %rbp - jmp _luaV_finishget ## TAILCALL -Ltmp7448: -LBB51_26: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 14 89 29 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7449: - leaq L_.str.194(%rip), %rsi -Ltmp7450: - leaq L_.str.196(%rip), %rcx -Ltmp7451: - movl $89, %edx -Ltmp7452: - callq ___assert_rtn -Ltmp7453: -LBB51_27: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7454: - leaq L_.str.194(%rip), %rsi -Ltmp7455: - leaq L_.str.197(%rip), %rcx -Ltmp7456: - movl $89, %edx -Ltmp7457: - callq ___assert_rtn -Ltmp7458: -LBB51_22: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - leaq L___func__.raviV_gettable_sskey(%rip), %rdi -Ltmp7459: - leaq L_.str(%rip), %rsi -Ltmp7460: - leaq L_.str.12(%rip), %rcx -Ltmp7461: - movl $2950, %edx ## imm = 0xB86 -Ltmp7462: - callq ___assert_rtn -Ltmp7463: -LBB51_23: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - leaq L___func__.raviV_gettable_sskey(%rip), %rdi -Ltmp7464: - leaq L_.str(%rip), %rsi -Ltmp7465: - leaq L_.str.185(%rip), %rcx -Ltmp7466: - movl $2950, %edx ## imm = 0xB86 -Ltmp7467: - callq ___assert_rtn -Ltmp7468: -LBB51_24: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - leaq L___func__.raviV_gettable_sskey(%rip), %rdi -Ltmp7469: - leaq L_.str(%rip), %rsi -Ltmp7470: - leaq L_.str.186(%rip), %rcx -Ltmp7471: - movl $2950, %edx ## imm = 0xB86 -Ltmp7472: - callq ___assert_rtn -Ltmp7473: -LBB51_25: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7474: - leaq L_.str.194(%rip), %rsi -Ltmp7475: - leaq L_.str.136(%rip), %rcx -Ltmp7476: - movl $86, %edx -Ltmp7477: - callq ___assert_rtn -Ltmp7478: -LBB51_17: - ##DEBUG_VALUE: aux <- $r8 - ##DEBUG_VALUE: io2 <- $r8 - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - leaq L___func__.raviV_gettable_sskey(%rip), %rdi -Ltmp7479: - leaq L_.str(%rip), %rsi -Ltmp7480: - leaq L_.str.14(%rip), %rcx - movl $2950, %edx ## imm = 0xB86 - callq ___assert_rtn -Ltmp7481: -LBB51_28: - ##DEBUG_VALUE: raviV_gettable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_gettable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_sskey:L <- $rdi - .loc 1 2950 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2950:3 - leaq L_.str.100(%rip), %rdx -Ltmp7482: - callq _luaG_typeerror -Ltmp7483: -Lfunc_end51: - .cfi_endproc - ## -- End function - .globl _raviV_settable_sskey ## -- Begin function raviV_settable_sskey - .p2align 4, 0x90 -_raviV_settable_sskey: ## @raviV_settable_sskey -Lfunc_begin52: - .loc 1 2960 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2960:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp7484: - pushq %rbx - pushq %rax - .cfi_offset %rbx, -24 - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx -Ltmp7485: - ##DEBUG_VALUE: io2 <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - .loc 1 2961 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - movzwl 8(%rsi), %eax - cmpl $32773, %eax ## imm = 0x8005 -Ltmp7486: - .loc 1 2961 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - jne LBB52_23 -Ltmp7487: -## %bb.1: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - movq (%rsi), %r8 - movb 8(%r8), %al - andb $15, %al - cmpb $5, %al - jne LBB52_27 -Ltmp7488: -## %bb.2: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movzwl 8(%rdx), %eax - andl $15, %eax - cmpl $4, %eax - jne LBB52_28 -Ltmp7489: -## %bb.3: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movq (%rdx), %r9 - movb 8(%r9), %r10b - movl %r10d, %eax - andb $15, %al - cmpb $4, %al - jne LBB52_29 -Ltmp7490: -## %bb.4: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 14 86 3 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - cmpb $4, %r10b - jne LBB52_30 -Ltmp7491: -## %bb.5: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - .loc 14 85 13 ## /Users/dylan/github/ravi/include/ltable.h:85:13 - movl 12(%r9), %ebx - andl 80(%r8), %ebx - shlq $5, %rbx - addq 24(%r8), %rbx -Ltmp7492: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - .loc 14 0 13 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:0:13 - movq _luaO_nilobject_@GOTPCREL(%rip), %r8 -Ltmp7493: - .p2align 4, 0x90 -LBB52_6: ## =>This Inner Loop Header: Depth=1 - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - .loc 14 89 9 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - movzwl 24(%rbx), %eax - cmpl $32772, %eax ## imm = 0x8004 - .loc 14 89 26 is_stmt 0 ## /Users/dylan/github/ravi/include/ltable.h:89:26 - jne LBB52_11 -Ltmp7494: -## %bb.7: ## in Loop: Header=BB52_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 14 89 29 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - movq 16(%rbx), %r10 - movzbl 8(%r10), %r11d - movl %r11d, %eax - andb $15, %al - cmpb $4, %al - jne LBB52_31 -Ltmp7495: -## %bb.8: ## in Loop: Header=BB52_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - cmpb $4, %r11b - jne LBB52_32 -Ltmp7496: -## %bb.9: ## in Loop: Header=BB52_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - cmpq %r9, %r10 -Ltmp7497: - .loc 14 89 9 ## /Users/dylan/github/ravi/include/ltable.h:89:9 - je LBB52_10 -Ltmp7498: -LBB52_11: ## in Loop: Header=BB52_6 Depth=1 - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 14 92 16 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - movslq 28(%rbx), %r10 - .loc 14 95 9 ## /Users/dylan/github/ravi/include/ltable.h:95:9 - movq %r10, %rax - shlq $5, %rax - addq %rax, %rbx -Ltmp7499: - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - .loc 14 92 16 ## /Users/dylan/github/ravi/include/ltable.h:92:16 - testq %r10, %r10 - jne LBB52_6 -Ltmp7500: -## %bb.12: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - cmpw $0, 8(%r8) -Ltmp7501: - .loc 1 2961 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - jne LBB52_13 -Ltmp7502: -LBB52_25: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - addq $8, %rsp - popq %rbx - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp7503: -LBB52_10: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - movq %rbx, %r8 -Ltmp7504: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - cmpw $0, 8(%r8) -Ltmp7505: - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - je LBB52_25 -Ltmp7506: -LBB52_13: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - movq (%rcx), %rax - movq %rax, (%r8) - movzwl 8(%rcx), %edx -Ltmp7507: - movw %dx, 8(%r8) - testw %dx, %dx - jns LBB52_17 -Ltmp7508: -## %bb.14: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - andl $127, %edx - movzbl 8(%rax), %ebx - cmpl %ebx, %edx - jne LBB52_33 -Ltmp7509: -## %bb.15: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - testq %rdi, %rdi - je LBB52_17 -Ltmp7510: -## %bb.16: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movb 9(%rax), %al - xorb $3, %al - movq 24(%rdi), %rdx - movb 84(%rdx), %dl - xorb $3, %dl - testb %al, %dl - je LBB52_33 -Ltmp7511: -LBB52_17: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - cmpw $0, 8(%rcx) - jns LBB52_26 -Ltmp7512: -## %bb.18: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movzwl 8(%rsi), %eax - andl $15, %eax - cmpl $5, %eax - jne LBB52_34 -Ltmp7513: -## %bb.19: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movq (%rsi), %rsi -Ltmp7514: - movb 8(%rsi), %al - andb $15, %al - cmpb $5, %al - jne LBB52_27 -Ltmp7515: -## %bb.20: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - testb $4, 9(%rsi) - je LBB52_26 -Ltmp7516: -## %bb.21: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - movq (%rcx), %rax - testb $3, 9(%rax) - je LBB52_26 -Ltmp7517: -## %bb.22: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - addq $8, %rsp - popq %rbx - popq %rbp - jmp _luaC_barrierback_ ## TAILCALL -Ltmp7518: -LBB52_26: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2962 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2962:1 - addq $8, %rsp - popq %rbx - popq %rbp - retq -Ltmp7519: -LBB52_23: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - andl $15, %eax - cmpl $5, %eax -Ltmp7520: - .loc 1 2961 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - je LBB52_35 -Ltmp7521: -## %bb.24: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - xorl %r8d, %r8d -Ltmp7522: - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - addq $8, %rsp - popq %rbx - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp7523: -LBB52_31: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 14 89 29 is_stmt 1 ## /Users/dylan/github/ravi/include/ltable.h:89:29 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7524: - leaq L_.str.194(%rip), %rsi -Ltmp7525: - leaq L_.str.196(%rip), %rcx -Ltmp7526: - movl $89, %edx -Ltmp7527: - callq ___assert_rtn -Ltmp7528: -LBB52_32: - ##DEBUG_VALUE: k <- [DW_OP_plus_uconst 16, DW_OP_stack_value] $rbx - ##DEBUG_VALUE: luaH_getshortstr:n <- $rbx - ##DEBUG_VALUE: luaH_getshortstr:key <- $r9 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7529: - leaq L_.str.194(%rip), %rsi -Ltmp7530: - leaq L_.str.197(%rip), %rcx -Ltmp7531: - movl $89, %edx -Ltmp7532: - callq ___assert_rtn -Ltmp7533: -LBB52_27: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - leaq L___func__.raviV_settable_sskey(%rip), %rdi -Ltmp7534: - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx -Ltmp7535: - movl $2961, %edx ## imm = 0xB91 - callq ___assert_rtn -Ltmp7536: -LBB52_28: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - leaq L___func__.raviV_settable_sskey(%rip), %rdi -Ltmp7537: - leaq L_.str(%rip), %rsi -Ltmp7538: - leaq L_.str.185(%rip), %rcx -Ltmp7539: - movl $2961, %edx ## imm = 0xB91 -Ltmp7540: - callq ___assert_rtn -Ltmp7541: -LBB52_29: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - leaq L___func__.raviV_settable_sskey(%rip), %rdi -Ltmp7542: - leaq L_.str(%rip), %rsi -Ltmp7543: - leaq L_.str.186(%rip), %rcx -Ltmp7544: - movl $2961, %edx ## imm = 0xB91 -Ltmp7545: - callq ___assert_rtn -Ltmp7546: -LBB52_30: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 14 86 3 ## /Users/dylan/github/ravi/include/ltable.h:86:3 - leaq L___func__.luaH_getshortstr(%rip), %rdi -Ltmp7547: - leaq L_.str.194(%rip), %rsi -Ltmp7548: - leaq L_.str.136(%rip), %rcx -Ltmp7549: - movl $86, %edx -Ltmp7550: - callq ___assert_rtn -Ltmp7551: -LBB52_33: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - leaq L___func__.raviV_settable_sskey(%rip), %rdi -Ltmp7552: - leaq L_.str(%rip), %rsi -Ltmp7553: - leaq L_.str.14(%rip), %rcx -Ltmp7554: - movl $2961, %edx ## imm = 0xB91 - callq ___assert_rtn -Ltmp7555: -LBB52_34: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - leaq L___func__.raviV_settable_sskey(%rip), %rdi -Ltmp7556: - leaq L_.str(%rip), %rsi -Ltmp7557: - leaq L_.str.11(%rip), %rcx -Ltmp7558: - movl $2961, %edx ## imm = 0xB91 - callq ___assert_rtn -Ltmp7559: -LBB52_35: - ##DEBUG_VALUE: raviV_settable_sskey:val <- $rcx - ##DEBUG_VALUE: raviV_settable_sskey:key <- $rdx - ##DEBUG_VALUE: raviV_settable_sskey:t <- $rsi - ##DEBUG_VALUE: raviV_settable_sskey:L <- $rdi - .loc 1 2961 3 ## /Users/dylan/github/ravi/src/lvm.c:2961:3 - leaq L_.str.100(%rip), %rdx -Ltmp7560: - callq _luaG_typeerror -Ltmp7561: -Lfunc_end52: - .cfi_endproc - ## -- End function - .globl _raviV_gettable_i ## -- Begin function raviV_gettable_i - .p2align 4, 0x90 -_raviV_gettable_i: ## @raviV_gettable_i -Lfunc_begin53: - .loc 1 2970 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2970:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r12 - pushq %rbx - .cfi_offset %rbx, -48 - .cfi_offset %r12, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_gettable_i:L <- $rdi - ##DEBUG_VALUE: raviV_gettable_i:t <- $rsi - ##DEBUG_VALUE: raviV_gettable_i:key <- $rdx - ##DEBUG_VALUE: raviV_gettable_i:val <- $rcx -Ltmp7562: - ##DEBUG_VALUE: io <- $rcx - ##DEBUG_VALUE: io <- $rcx - ##DEBUG_VALUE: io1 <- $rcx - movq %rcx, %r15 -Ltmp7563: - ##DEBUG_VALUE: io1 <- $r15 - ##DEBUG_VALUE: io <- $r15 - ##DEBUG_VALUE: io <- $r15 - movq %rdx, %r12 - movq %rsi, %rbx - movq %rdi, %r14 -Ltmp7564: - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - .loc 1 2971 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movzwl 8(%rsi), %eax -Ltmp7565: - .loc 1 2971 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB53_1 -Ltmp7566: -## %bb.8: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movzwl 8(%r12), %eax - cmpl $19, %eax - jne LBB53_27 -Ltmp7567: -## %bb.9: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movq (%rbx), %rdi - movb 8(%rdi), %al - andb $15, %al - cmpb $5, %al - jne LBB53_28 -Ltmp7568: -## %bb.10: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movq (%r12), %rsi -Ltmp7569: - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: idx <- $rsi - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - leaq -1(%rsi), %rax - movl 12(%rdi), %ecx - cmpq %rcx, %rax -Ltmp7570: - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - jae LBB53_12 -Ltmp7571: -## %bb.11: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - shlq $4, %rax - addq 16(%rdi), %rax -Ltmp7572: - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpw $0, 8(%rax) -Ltmp7573: - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - je LBB53_19 -Ltmp7574: -LBB53_14: - ##DEBUG_VALUE: io2 <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq (%rax), %rcx - movq %rcx, (%r15) - movzwl 8(%rax), %eax -Ltmp7575: - movw %ax, 8(%r15) - testw %ax, %ax - jns LBB53_7 -Ltmp7576: -## %bb.15: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - andl $127, %eax - movzbl 8(%rcx), %edx - cmpl %edx, %eax - jne LBB53_18 -Ltmp7577: -## %bb.16: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - testq %r14, %r14 - je LBB53_7 -Ltmp7578: -## %bb.17: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movb 9(%rcx), %al - xorb $3, %al - movq 24(%r14), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB53_18 -Ltmp7579: -LBB53_7: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2972 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2972:1 - popq %rbx -Ltmp7580: - popq %r12 -Ltmp7581: - popq %r14 -Ltmp7582: - popq %r15 -Ltmp7583: - popq %rbp - retq -LBB53_1: -Ltmp7584: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB53_2 -Ltmp7585: -## %bb.21: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq (%rbx), %rax -Ltmp7586: - ##DEBUG_VALUE: h <- $rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB53_28 -Ltmp7587: -## %bb.22: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movzwl 8(%r12), %ecx - cmpl $19, %ecx - jne LBB53_27 -Ltmp7588: -## %bb.23: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movq (%r12), %rcx -Ltmp7589: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpl %ecx, 64(%rax) -Ltmp7590: - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - jbe LBB53_25 -Ltmp7591: -## %bb.24: - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movl %ecx, %ecx -Ltmp7592: - movq 56(%rax), %rax -Ltmp7593: - ##DEBUG_VALUE: data <- $rax - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq (%rax,%rcx,8), %rax -Ltmp7594: - movq %rax, (%r15) - movw $3, 8(%r15) - jmp LBB53_7 -Ltmp7595: -LBB53_12: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rdi - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - callq _luaH_getint -Ltmp7596: - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: io2 <- $rax - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpw $0, 8(%rax) -Ltmp7597: - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - jne LBB53_14 -Ltmp7598: -LBB53_19: - ##DEBUG_VALUE: v <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx - movq %rax, %r8 - jmp LBB53_20 -Ltmp7599: -LBB53_2: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB53_26 -Ltmp7600: -## %bb.3: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq (%rbx), %rax -Ltmp7601: - ##DEBUG_VALUE: h <- $rax - movb 8(%rax), %cl - andb $15, %cl - cmpb $5, %cl - jne LBB53_28 -Ltmp7602: -## %bb.4: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movzwl 8(%r12), %ecx - cmpl $19, %ecx - jne LBB53_27 -Ltmp7603: -## %bb.5: - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movq (%r12), %rcx -Ltmp7604: - ##DEBUG_VALUE: ukey <- $ecx - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - cmpl %ecx, 64(%rax) -Ltmp7605: - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - jbe LBB53_25 -Ltmp7606: -## %bb.6: - ##DEBUG_VALUE: ukey <- $ecx - ##DEBUG_VALUE: h <- $rax - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - movl %ecx, %ecx -Ltmp7607: - movq 56(%rax), %rax -Ltmp7608: - ##DEBUG_VALUE: data <- $rax - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - movq (%rax,%rcx,8), %rax -Ltmp7609: - movq %rax, (%r15) - movw $19, 8(%r15) - jmp LBB53_7 -Ltmp7610: -LBB53_26: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - xorl %r8d, %r8d - movq %r14, %rdi - movq %rbx, %rsi - movq %r12, %rdx - movq %r15, %rcx -Ltmp7611: -LBB53_20: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - popq %rbx -Ltmp7612: - popq %r12 -Ltmp7613: - popq %r14 -Ltmp7614: - popq %r15 -Ltmp7615: - popq %rbp - jmp _luaV_finishget ## TAILCALL -Ltmp7616: -LBB53_28: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - leaq L___func__.raviV_gettable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $2971, %edx ## imm = 0xB9B - callq ___assert_rtn -Ltmp7617: -LBB53_27: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - leaq L___func__.raviV_gettable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.18(%rip), %rcx - movl $2971, %edx ## imm = 0xB9B - callq ___assert_rtn -Ltmp7618: -LBB53_18: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - leaq L___func__.raviV_gettable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2971, %edx ## imm = 0xB9B - callq ___assert_rtn -Ltmp7619: -LBB53_25: - ##DEBUG_VALUE: raviV_gettable_i:L <- $r14 - ##DEBUG_VALUE: raviV_gettable_i:t <- $rbx - ##DEBUG_VALUE: raviV_gettable_i:key <- $r12 - ##DEBUG_VALUE: raviV_gettable_i:val <- $r15 - .loc 1 2971 3 ## /Users/dylan/github/ravi/src/lvm.c:2971:3 - leaq L_.str.19(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7620: -Lfunc_end53: - .cfi_endproc - ## -- End function - .globl _raviV_settable_i ## -- Begin function raviV_settable_i - .p2align 4, 0x90 -_raviV_settable_i: ## @raviV_settable_i -Lfunc_begin54: - .loc 1 2981 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2981:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp - pushq %r15 - pushq %r14 - pushq %r13 - pushq %r12 - pushq %rbx - pushq %rax - .cfi_offset %rbx, -56 - .cfi_offset %r12, -48 - .cfi_offset %r13, -40 - .cfi_offset %r14, -32 - .cfi_offset %r15, -24 - ##DEBUG_VALUE: raviV_settable_i:L <- $rdi - ##DEBUG_VALUE: raviV_settable_i:t <- $rsi - ##DEBUG_VALUE: raviV_settable_i:key <- $rdx - ##DEBUG_VALUE: raviV_settable_i:val <- $rcx -Ltmp7621: - ##DEBUG_VALUE: luaV_tointeger_:obj <- $rcx - ##DEBUG_VALUE: io2 <- $rcx - movq %rcx, %r15 -Ltmp7622: - ##DEBUG_VALUE: io2 <- $r15 - ##DEBUG_VALUE: luaV_tointeger_:obj <- $r15 - movq %rdx, %r13 - movq %rsi, %r12 - movq %rdi, %r14 -Ltmp7623: - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - .loc 1 2982 3 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%rsi), %eax -Ltmp7624: - .loc 1 2982 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl $32773, %eax ## imm = 0x8005 - jne LBB54_1 -Ltmp7625: -## %bb.8: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7626: -## %bb.9: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r12), %rbx - movb 8(%rbx), %al - andb $15, %al - cmpb $5, %al - jne LBB54_54 -Ltmp7627: -## %bb.10: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rsi -Ltmp7628: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: idx <- $rsi - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - leaq -1(%rsi), %r8 - movl 12(%rbx), %eax - cmpq %rax, %r8 -Ltmp7629: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jae LBB54_12 -Ltmp7630: -## %bb.11: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - shlq $4, %r8 - addq 16(%rbx), %r8 -Ltmp7631: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpw $0, 8(%r8) -Ltmp7632: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - je LBB54_50 -Ltmp7633: -LBB54_14: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq (%r15), %rax - movq %rax, (%r8) - movzwl 8(%r15), %ecx - movw %cx, 8(%r8) - testw %cx, %cx - jns LBB54_18 -Ltmp7634: -## %bb.15: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - andl $127, %ecx - movzbl 8(%rax), %edx - cmpl %edx, %ecx - jne LBB54_55 -Ltmp7635: -## %bb.16: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - testq %r14, %r14 - je LBB54_18 -Ltmp7636: -## %bb.17: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movb 9(%rax), %al - xorb $3, %al - movq 24(%r14), %rcx - movb 84(%rcx), %cl - xorb $3, %cl - testb %al, %cl - je LBB54_55 -Ltmp7637: -LBB54_18: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpw $0, 8(%r15) - jns LBB54_52 -Ltmp7638: -## %bb.19: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - testb $4, 9(%rbx) - je LBB54_52 -Ltmp7639: -## %bb.20: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r15), %rax - testb $3, 9(%rax) - je LBB54_52 -Ltmp7640: -## %bb.21: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq %r14, %rdi - movq %rbx, %rsi - addq $8, %rsp - popq %rbx -Ltmp7641: - popq %r12 -Ltmp7642: - popq %r13 -Ltmp7643: - popq %r14 -Ltmp7644: - popq %r15 -Ltmp7645: - popq %rbp - jmp _luaC_barrierback_ ## TAILCALL -Ltmp7646: -LBB54_1: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl %ax, %eax - cmpl $32805, %eax ## imm = 0x8025 - jne LBB54_2 -Ltmp7647: -## %bb.22: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq (%r12), %r12 -Ltmp7648: - ##DEBUG_VALUE: h <- $r12 - movb 8(%r12), %al - andb $15, %al - cmpb $5, %al - jne LBB54_54 -Ltmp7649: -## %bb.23: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r15), %eax -Ltmp7650: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl $19, %eax - je LBB54_31 -Ltmp7651: -## %bb.24: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movzwl %ax, %eax - cmpl $3, %eax - jne LBB54_35 -Ltmp7652: -## %bb.25: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7653: -## %bb.26: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rax - movl %eax, %edx -Ltmp7654: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl %eax, 64(%r12) -Ltmp7655: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jbe LBB54_29 -Ltmp7656: -## %bb.27: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq 56(%r12), %rax -Ltmp7657: - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - jmp LBB54_28 -Ltmp7658: -LBB54_12: - ##DEBUG_VALUE: idx <- $rsi - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq %rbx, %rdi - callq _luaH_getint -Ltmp7659: - movq %rax, %r8 -Ltmp7660: - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: io1 <- $r8 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpw $0, 8(%r8) -Ltmp7661: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jne LBB54_14 - jmp LBB54_50 -Ltmp7662: -LBB54_2: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl $32789, %eax ## imm = 0x8015 - jne LBB54_49 -Ltmp7663: -## %bb.3: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq (%r12), %rbx -Ltmp7664: - ##DEBUG_VALUE: h <- $rbx - movb 8(%rbx), %al - andb $15, %al - cmpb $5, %al - jne LBB54_54 -Ltmp7665: -## %bb.4: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r15), %eax - cmpl $19, %eax -Ltmp7666: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jne LBB54_43 -Ltmp7667: -## %bb.5: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7668: -## %bb.6: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rax - movl %eax, %edx -Ltmp7669: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl %eax, 64(%rbx) -Ltmp7670: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jbe LBB54_42 -Ltmp7671: -## %bb.7: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq 56(%rbx), %rax -Ltmp7672: -LBB54_28: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - ##DEBUG_VALUE: data <- $rax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq (%r15), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB54_52 -Ltmp7673: -LBB54_49: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - xorl %r8d, %r8d -Ltmp7674: -LBB54_50: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq %r14, %rdi - movq %r12, %rsi - movq %r13, %rdx - movq %r15, %rcx - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp7675: - popq %r13 -Ltmp7676: - popq %r14 -Ltmp7677: - popq %r15 -Ltmp7678: - popq %rbp - jmp _luaV_finishset ## TAILCALL -Ltmp7679: -LBB54_31: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7680: -## %bb.32: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rax - movl %eax, %edx -Ltmp7681: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl %eax, 64(%r12) -Ltmp7682: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jbe LBB54_34 -Ltmp7683: -## %bb.33: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq 56(%r12), %rax -Ltmp7684: - ##DEBUG_VALUE: data <- $rax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cvtsi2sdq (%r15), %xmm0 - movsd %xmm0, (%rax,%rdx,8) - jmp LBB54_52 -Ltmp7685: -LBB54_35: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - ##DEBUG_VALUE: d <- 0.000000e+00 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq $0, -48(%rbp) - leaq -48(%rbp), %rsi -Ltmp7686: - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq %r15, %rdi - callq _luaV_tonumber_ -Ltmp7687: - testl %eax, %eax -Ltmp7688: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - je LBB54_40 -Ltmp7689: -## %bb.36: - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7690: -## %bb.37: - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rax - movl %eax, %edx -Ltmp7691: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl %eax, 64(%r12) -Ltmp7692: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jbe LBB54_51 -Ltmp7693: -## %bb.38: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq 56(%r12), %rax -Ltmp7694: - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - jmp LBB54_39 -Ltmp7695: -LBB54_43: - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - ##DEBUG_VALUE: i <- 0 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq $0, -48(%rbp) - leaq -48(%rbp), %rsi -Ltmp7696: - ##DEBUG_VALUE: luaV_tointeger_:p <- [DW_OP_constu 48, DW_OP_minus] $rbp - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - .loc 1 136 10 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:136:10 - xorl %edx, %edx - movq %r15, %rdi - callq _luaV_tointeger -Ltmp7697: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - testl %eax, %eax -Ltmp7698: - .loc 1 2982 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - je LBB54_48 -Ltmp7699: -## %bb.44: - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movzwl 8(%r13), %eax - cmpl $19, %eax - jne LBB54_53 -Ltmp7700: -## %bb.45: - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq (%r13), %rax - movl %eax, %edx -Ltmp7701: - ##DEBUG_VALUE: ukey <- $eax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cmpl %eax, 64(%rbx) -Ltmp7702: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - jbe LBB54_47 -Ltmp7703: -## %bb.46: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - movq 56(%rbx), %rax -Ltmp7704: -LBB54_39: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - ##DEBUG_VALUE: data <- $rax - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq -48(%rbp), %rcx - movq %rcx, (%rax,%rdx,8) - jmp LBB54_52 -Ltmp7705: -LBB54_29: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movsd (%r15), %xmm0 ## xmm0 = mem[0],zero - jmp LBB54_30 -Ltmp7706: -LBB54_34: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - cvtsi2sdq (%r15), %xmm0 -Ltmp7707: -LBB54_30: - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq %r14, %rdi - movq %r12, %rsi - addq $8, %rsp - popq %rbx - popq %r12 -Ltmp7708: - popq %r13 -Ltmp7709: - popq %r14 -Ltmp7710: - popq %r15 -Ltmp7711: - popq %rbp - jmp _raviH_set_float ## TAILCALL -Ltmp7712: -LBB54_51: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movsd -48(%rbp), %xmm0 ## xmm0 = mem[0],zero -Ltmp7713: - ##DEBUG_VALUE: d <- $xmm0 - movq %r14, %rdi - movq %r12, %rsi - callq _raviH_set_float -Ltmp7714: - .loc 1 0 3 ## /Users/dylan/github/ravi/src/lvm.c:0:3 - jmp LBB54_52 -Ltmp7715: -LBB54_42: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq (%r15), %rcx - movq %r14, %rdi - movq %rbx, %rsi - addq $8, %rsp - popq %rbx -Ltmp7716: - popq %r12 -Ltmp7717: - popq %r13 -Ltmp7718: - popq %r14 -Ltmp7719: - popq %r15 -Ltmp7720: - popq %rbp - jmp _raviH_set_int ## TAILCALL -Ltmp7721: -LBB54_47: - ##DEBUG_VALUE: ukey <- $eax - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - movq -48(%rbp), %rcx -Ltmp7722: - ##DEBUG_VALUE: i <- $rcx - movq %r14, %rdi - movq %rbx, %rsi - callq _raviH_set_int -Ltmp7723: -LBB54_52: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2983 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2983:1 - addq $8, %rsp - popq %rbx - popq %r12 - popq %r13 -Ltmp7724: - popq %r14 -Ltmp7725: - popq %r15 -Ltmp7726: - popq %rbp - retq -LBB54_54: -Ltmp7727: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - leaq L___func__.raviV_settable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.12(%rip), %rcx - movl $2982, %edx ## imm = 0xBA6 - callq ___assert_rtn -Ltmp7728: -LBB54_53: - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - leaq L___func__.raviV_settable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.18(%rip), %rcx - movl $2982, %edx ## imm = 0xBA6 - callq ___assert_rtn -Ltmp7729: -LBB54_55: - ##DEBUG_VALUE: io1 <- $r8 - ##DEBUG_VALUE: slot <- $r8 - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - leaq L___func__.raviV_settable_i(%rip), %rdi - leaq L_.str(%rip), %rsi - leaq L_.str.14(%rip), %rcx - movl $2982, %edx ## imm = 0xBA6 - callq ___assert_rtn -Ltmp7730: -LBB54_40: - ##DEBUG_VALUE: d <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $r12 - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - leaq L_.str.22(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7731: -LBB54_48: - ##DEBUG_VALUE: i <- [DW_OP_constu 48, DW_OP_minus, DW_OP_deref] $rbp - ##DEBUG_VALUE: h <- $rbx - ##DEBUG_VALUE: raviV_settable_i:L <- $r14 - ##DEBUG_VALUE: raviV_settable_i:t <- $r12 - ##DEBUG_VALUE: raviV_settable_i:key <- $r13 - ##DEBUG_VALUE: raviV_settable_i:val <- $r15 - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - leaq L_.str.23(%rip), %rsi -Ltmp7732: - .loc 1 2982 3 ## /Users/dylan/github/ravi/src/lvm.c:2982:3 - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7733: -Lfunc_end54: - .cfi_endproc - ## -- End function - .globl _raviV_op_totype ## -- Begin function raviV_op_totype - .p2align 4, 0x90 -_raviV_op_totype: ## @raviV_op_totype -Lfunc_begin55: - .loc 1 2989 0 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2989:0 - .cfi_startproc -## %bb.0: - pushq %rbp - .cfi_def_cfa_offset 16 - .cfi_offset %rbp, -16 - movq %rsp, %rbp - .cfi_def_cfa_register %rbp -Ltmp7734: - pushq %r14 - pushq %rbx - .cfi_offset %rbx, -32 - .cfi_offset %r14, -24 - ##DEBUG_VALUE: raviV_op_totype:L <- $rdi - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - .loc 1 2990 7 prologue_end ## /Users/dylan/github/ravi/src/lvm.c:2990:7 - cmpw $0, 8(%rsi) -Ltmp7735: - .loc 1 2990 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2990:7 - je LBB55_4 -Ltmp7736: -## %bb.1: - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - ##DEBUG_VALUE: raviV_op_totype:L <- $rdi - .loc 1 0 7 ## /Users/dylan/github/ravi/src/lvm.c:0:7 - movq %rdi, %r14 -Ltmp7737: - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - .loc 1 2992 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2992:8 - movzwl 8(%rdx), %ecx - cmpl $32772, %ecx ## imm = 0x8004 -Ltmp7738: - .loc 1 2992 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2992:7 - jne LBB55_5 -Ltmp7739: -## %bb.2: - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - .loc 1 2993 18 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2993:18 - movq (%rdx), %rbx - movb 8(%rbx), %cl - andb $15, %cl - cmpb $4, %cl - jne LBB55_6 -Ltmp7740: -## %bb.3: - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - .loc 1 0 18 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:0:18 - movq %rsi, %rax -Ltmp7741: - ##DEBUG_VALUE: raviV_op_totype:ra <- $rax - ##DEBUG_VALUE: raviV_op_totype:key <- $rbx - .loc 1 2994 8 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2994:8 - movq %r14, %rdi - movq %rbx, %rsi - movq %rax, %rdx -Ltmp7742: - callq _raviV_check_usertype -Ltmp7743: - testl %eax, %eax -Ltmp7744: - .loc 1 2994 7 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2994:7 - je LBB55_7 -Ltmp7745: -LBB55_4: - .loc 1 2996 1 is_stmt 1 ## /Users/dylan/github/ravi/src/lvm.c:2996:1 - popq %rbx - popq %r14 - popq %rbp - retq -LBB55_5: -Ltmp7746: - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - .loc 1 2992 27 ## /Users/dylan/github/ravi/src/lvm.c:2992:27 - leaq L_.str.153(%rip), %rsi -Ltmp7747: - xorl %eax, %eax - movq %r14, %rdi - callq _luaG_runerror -Ltmp7748: -LBB55_6: - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - ##DEBUG_VALUE: raviV_op_totype:rb <- $rdx - ##DEBUG_VALUE: raviV_op_totype:ra <- $rsi - .loc 1 2993 18 ## /Users/dylan/github/ravi/src/lvm.c:2993:18 - leaq L___func__.raviV_op_totype(%rip), %rdi - leaq L_.str(%rip), %rsi -Ltmp7749: - leaq L_.str.69(%rip), %rcx - movl $2993, %edx ## imm = 0xBB1 -Ltmp7750: - callq ___assert_rtn -Ltmp7751: -LBB55_7: - ##DEBUG_VALUE: raviV_op_totype:key <- $rbx - ##DEBUG_VALUE: raviV_op_totype:L <- $r14 - .loc 1 2995 52 ## /Users/dylan/github/ravi/src/lvm.c:2995:52 - addq $24, %rbx -Ltmp7752: - .loc 1 2995 5 is_stmt 0 ## /Users/dylan/github/ravi/src/lvm.c:2995:5 - leaq L_.str.154(%rip), %rsi - xorl %eax, %eax - movq %r14, %rdi - movq %rbx, %rdx - callq _luaG_runerror -Ltmp7753: -Lfunc_end55: - .cfi_endproc - ## -- End function - .section __TEXT,__cstring,cstring_literals -L___func__.luaV_tonumber_: ## @__func__.luaV_tonumber_ - .asciz "luaV_tonumber_" - -L_.str: ## @.str - .asciz "/Users/dylan/github/ravi/src/lvm.c" - -L_.str.2: ## @.str.2 - .asciz "(((((((obj))->tt_)) & 0x0F)) == (4))" - -L_.str.3: ## @.str.3 - .asciz "(((((obj)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.4: ## @.str.4 - .asciz "(((((((&v))->tt_)) & 0x0F)) == (3))" - -L_.str.6: ## @.str.6 - .asciz "((((&v))->tt_) == ((3 | (0 << 4))))" - -L___func__.luaV_tointeger: ## @__func__.luaV_tointeger - .asciz "luaV_tointeger" - -L___func__.luaV_finishget: ## @__func__.luaV_finishget - .asciz "luaV_finishget" - -L_.str.8: ## @.str.8 - .asciz "!(((((((t))->tt_)) & 0x0F)) == (5))" - -L_.str.9: ## @.str.9 - .asciz "index" - -L_.str.10: ## @.str.10 - .asciz "((((slot))->tt_) == (0))" - -L_.str.11: ## @.str.11 - .asciz "(((((((t))->tt_)) & 0x0F)) == (5))" - -L_.str.12: ## @.str.12 - .asciz "(((((t)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.14: ## @.str.14 - .asciz "0" - -L_.str.15: ## @.str.15 - .asciz "'__index' chain too long; possible loop" - -L___func__.luaV_finishset: ## @__func__.luaV_finishset - .asciz "luaV_finishset" - -L_.str.17: ## @.str.17 - .asciz "'__newindex' chain too long; possible loop" - -L___func__.luaV_gettable: ## @__func__.luaV_gettable - .asciz "luaV_gettable" - -L_.str.18: ## @.str.18 - .asciz "((((key))->tt_) == ((3 | (1 << 4))))" - -L_.str.19: ## @.str.19 - .asciz "array out of bounds" - -L___func__.luaV_settable: ## @__func__.luaV_settable - .asciz "luaV_settable" - -L_.str.22: ## @.str.22 - .asciz "value cannot be converted to number" - -L_.str.23: ## @.str.23 - .asciz "value cannot be converted to integer" - -L___func__.luaV_lessthan: ## @__func__.luaV_lessthan - .asciz "luaV_lessthan" - -L_.str.25: ## @.str.25 - .asciz "(((((l)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.27: ## @.str.27 - .asciz "(((((r)->value_).gc)->tt) & 0x0F) == 4" - -L___func__.luaV_lessequal: ## @__func__.luaV_lessequal - .asciz "luaV_lessequal" - -L___func__.luaV_equalobj: ## @__func__.luaV_equalobj - .asciz "luaV_equalobj" - -L_.str.28: ## @.str.28 - .asciz "((((t1))->tt_) == ((3 | (1 << 4))))" - -L_.str.29: ## @.str.29 - .asciz "((((t2))->tt_) == ((3 | (1 << 4))))" - -L_.str.30: ## @.str.30 - .asciz "((((t1))->tt_) == ((3 | (0 << 4))))" - -L_.str.31: ## @.str.31 - .asciz "((((t2))->tt_) == ((3 | (0 << 4))))" - -L_.str.32: ## @.str.32 - .asciz "((((t1))->tt_) == (1))" - -L_.str.33: ## @.str.33 - .asciz "((((t2))->tt_) == (1))" - -L_.str.34: ## @.str.34 - .asciz "((((t1))->tt_) == (2))" - -L_.str.35: ## @.str.35 - .asciz "((((t2))->tt_) == (2))" - -L_.str.36: ## @.str.36 - .asciz "((((t1))->tt_) == ((6 | (1 << 4))))" - -L_.str.37: ## @.str.37 - .asciz "((((t2))->tt_) == ((6 | (1 << 4))))" - -L_.str.38: ## @.str.38 - .asciz "((((t1)->tt_) & 0x7F) == (6 | (4 << 4)))" - -L_.str.40: ## @.str.40 - .asciz "(((((((t1))->tt_)) & 0x0F)) == (4))" - -L_.str.41: ## @.str.41 - .asciz "(((((t1)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.42: ## @.str.42 - .asciz "(((__builtin_expect(!((((((((t1))->tt_)) & 0x0F)) == (4))), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/src/lvm.c\", 696, \"(((((((t1))->tt_)) & 0x0F)) == (4))\") : (void)0), (((__builtin_expect(!((((((t1)->value_).gc)->tt) & 0x0F) == 4), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/src/lvm.c\", 696, \"(((((t1)->value_).gc)->tt) & 0x0F) == 4\") : (void)0), (&((((union GCUnion *)((((t1)->value_).gc))))->ts))))))->tt == (4 | (0 << 4))" - -L_.str.43: ## @.str.43 - .asciz "(((((((t2))->tt_)) & 0x0F)) == (4))" - -L_.str.44: ## @.str.44 - .asciz "(((((t2)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.45: ## @.str.45 - .asciz "((((t1))->tt_) == (((7) | (1 << 15))))" - -L_.str.46: ## @.str.46 - .asciz "(((t1)->value_).gc)->tt == 7" - -L_.str.47: ## @.str.47 - .asciz "((((t2))->tt_) == (((7) | (1 << 15))))" - -L_.str.48: ## @.str.48 - .asciz "(((t2)->value_).gc)->tt == 7" - -L_.str.49: ## @.str.49 - .asciz "(((((((t1))->tt_)) & 0x0F)) == (5))" - -L_.str.50: ## @.str.50 - .asciz "(((((t1)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.51: ## @.str.51 - .asciz "(((((((t2))->tt_)) & 0x0F)) == (5))" - -L_.str.52: ## @.str.52 - .asciz "(((((t2)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.53: ## @.str.53 - .asciz "(((t1)->tt_) & (1 << 15))" - -L_.str.54: ## @.str.54 - .asciz "(((t2)->tt_) & (1 << 15))" - -L___func__.luaV_concat: ## @__func__.luaV_concat - .asciz "luaV_concat" - -L_.str.56: ## @.str.56 - .asciz "total >= 2" - -L_.str.57: ## @.str.57 - .asciz "(((((((top - 1))->tt_)) & 0x0F)) == (4))" - -L_.str.58: ## @.str.58 - .asciz "(((((top - 1)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.60: ## @.str.60 - .asciz "(((((top - 2)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.61: ## @.str.61 - .asciz "(((((((top - n - 1))->tt_)) & 0x0F)) == (4))" - -L_.str.62: ## @.str.62 - .asciz "(((((top - n - 1)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.63: ## @.str.63 - .asciz "string length overflow" - -L_.str.64: ## @.str.64 - .asciz "(((x_)->tt) & 0x0F) < (9+1)" - -L___func__.luaV_objlen: ## @__func__.luaV_objlen - .asciz "luaV_objlen" - -L_.str.66: ## @.str.66 - .asciz "(((((((rb))->tt_)) & 0x0F)) == (5))" - -L_.str.67: ## @.str.67 - .asciz "(((((rb)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.68: ## @.str.68 - .asciz "(((((((rb))->tt_)) & 0x0F)) == (4))" - -L_.str.69: ## @.str.69 - .asciz "(((((rb)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.70: ## @.str.70 - .asciz "get length of" - -L_.str.71: ## @.str.71 - .asciz "attempt to divide by zero" - -L_.str.72: ## @.str.72 - .asciz "attempt to perform 'n%%0'" - -L___func__.luaV_finishOp: ## @__func__.luaV_finishOp - .asciz "luaV_finishOp" - -L_.str.74: ## @.str.74 - .asciz "op == OP_LE" - -L_.str.75: ## @.str.75 - .asciz "((OpCode)(((*ci->u.l.savedpc)&0xff))) == OP_JMP" - -L_.str.76: ## @.str.76 - .asciz "((OpCode)(((*ci->u.l.savedpc)&0xff))) == OP_TFORLOOP" - -L___func__.raviV_check_usertype: ## @__func__.raviV_check_usertype - .asciz "raviV_check_usertype" - -L_.str.77: ## @.str.77 - .asciz "(((((((o))->tt_)) & 0x0F)) == (5))" - -L_.str.78: ## @.str.78 - .asciz "(((((o)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.79: ## @.str.79 - .asciz "((((o))->tt_) == (((7) | (1 << 15))))" - -L_.str.80: ## @.str.80 - .asciz "(((o)->value_).gc)->tt == 7" - -L_.str.81: ## @.str.81 - .asciz "(((((((&(L->l_G)->l_registry))->tt_)) & 0x0F)) == (5))" - -L_.str.82: ## @.str.82 - .asciz "(((((&(L->l_G)->l_registry)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.84: ## @.str.84 - .asciz "(((((metatab)->value_).gc)->tt) & 0x0F) == 5" - - .section __DATA,__const - .p2align 4 ## @luaV_execute.dispatch_table -_luaV_execute.dispatch_table: - .quad Ltmp1201 - .quad Ltmp1223 - .quad Ltmp1245 - .quad Ltmp1268 - .quad Ltmp1289 - .quad Ltmp1322 - .quad Ltmp1416 - .quad Ltmp1510 - .quad Ltmp1659 - .quad Ltmp1346 - .quad Ltmp1811 - .quad Ltmp2083 - .quad Ltmp2207 - .quad Ltmp2262 - .quad Ltmp2311 - .quad Ltmp2360 - .quad Ltmp2747 - .quad Ltmp2881 - .quad Ltmp2409 - .quad Ltmp2820 - .quad Ltmp2457 - .quad Ltmp2512 - .quad Ltmp2567 - .quad Ltmp2628 - .quad Ltmp2693 - .quad Ltmp2931 - .quad Ltmp2969 - .quad Ltmp3007 - .quad Ltmp3030 - .quad Ltmp3055 - .quad Ltmp3102 - .quad Ltmp3128 - .quad Ltmp3170 - .quad Ltmp3235 - .quad Ltmp3300 - .quad Ltmp3337 - .quad Ltmp3382 - .quad Ltmp3415 - .quad Ltmp3466 - .quad Ltmp3514 - .quad Ltmp3561 - .quad Ltmp3641 - .quad Ltmp3670 - .quad Ltmp3699 - .quad Ltmp3816 - .quad Ltmp3888 - .quad Ltmp5922 - .quad Ltmp4424 - .quad Ltmp4465 - .quad Ltmp5219 - .quad Ltmp5237 - .quad Ltmp5927 - .quad Ltmp5929 - .quad Ltmp5255 - .quad Ltmp5280 - .quad Ltmp5305 - .quad Ltmp5331 - .quad Ltmp5356 - .quad Ltmp5381 - .quad Ltmp5405 - .quad Ltmp5431 - .quad Ltmp5456 - .quad Ltmp5481 - .quad Ltmp5507 - .quad Ltmp5532 - .quad Ltmp5557 - .quad Ltmp5582 - .quad Ltmp5755 - .quad Ltmp5784 - .quad Ltmp5822 - .quad Ltmp5841 - .quad Ltmp5803 - .quad Ltmp5860 - .quad Ltmp5879 - .quad Ltmp5898 - .quad Ltmp5616 - .quad Ltmp5648 - .quad Ltmp5670 - .quad Ltmp5695 - .quad Ltmp5720 - .quad Ltmp4791 - .quad Ltmp4821 - .quad Ltmp4851 - .quad Ltmp4951 - .quad Ltmp4910 - .quad Ltmp5008 - .quad Ltmp4358 - .quad Ltmp4358 - .quad Ltmp4391 - .quad Ltmp4391 - .quad Ltmp5057 - .quad Ltmp5095 - .quad Ltmp5122 - .quad Ltmp5154 - .quad Ltmp5186 - .quad Ltmp3942 - .quad Ltmp3968 - .quad Ltmp3994 - .quad Ltmp4019 - .quad Ltmp4055 - .quad Ltmp4092 - .quad Ltmp4114 - .quad Ltmp4154 - .quad Ltmp4195 - .quad Ltmp4235 - .quad Ltmp4276 - .quad Ltmp4316 - .quad Ltmp4734 - .quad Ltmp2022 - .quad Ltmp4734 - .quad Ltmp4547 - .quad Ltmp1943 - .quad Ltmp4675 - .quad Ltmp2145 - .quad Ltmp2022 - .quad Ltmp4606 - - .section __TEXT,__cstring,cstring_literals -L___func__.luaV_execute: ## @__func__.luaV_execute - .asciz "luaV_execute" - -L_.str.85: ## @.str.85 - .asciz "ci == L->ci" - -L_.str.86: ## @.str.86 - .asciz "((((ci->func))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))" - -L_.str.87: ## @.str.87 - .asciz "(((ci->func)->value_).gc)->tt == (6 | (0 << 4))" - -L_.str.88: ## @.str.88 - .asciz "(((enum OpArgMask)((luaP_opmodes[((OpCode)(((i)&0xff)))] >> 4) & 3))) == OpArgR" - -L_.str.89: ## @.str.89 - .asciz "((OpCode)(((*pc)&0xff))) == OP_EXTRAARG" - -L_.str.90: ## @.str.90 - .asciz "(((enum OpArgMask)((luaP_opmodes[((OpCode)(((i)&0xff)))] >> 2) & 3))) == OpArgK" - -L_.str.91: ## @.str.91 - .asciz "((((rc))->tt_) == ((3 | (1 << 4))))" - -L_.str.92: ## @.str.92 - .asciz "(((((((upval))->tt_)) & 0x0F)) == (5))" - -L_.str.93: ## @.str.93 - .asciz "(((((upval)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.94: ## @.str.94 - .asciz "(((enum OpArgMask)((luaP_opmodes[((OpCode)(((i)&0xff)))] >> 4) & 3))) == OpArgK" - -L_.str.95: ## @.str.95 - .asciz "((((rb))->tt_) == ((3 | (1 << 4))))" - -L_.str.97: ## @.str.97 - .asciz "((((rc))->tt_) == ((3 | (0 << 4))))" - -L_.str.98: ## @.str.98 - .asciz "(((((((ra))->tt_)) & 0x0F)) == (5))" - -L_.str.99: ## @.str.99 - .asciz "(((((ra)->value_).gc)->tt) & 0x0F) == 5" - -L_.str.100: ## @.str.100 - .asciz "incorrectly index" - -L_.str.101: ## @.str.101 - .asciz "--(*((struct L_EXTRA*)(((void *)((char *)(L) - sizeof(struct L_EXTRA)))))->plock) == 0" - -L_.str.103: ## @.str.103 - .asciz "(((((((rc))->tt_)) & 0x0F)) == (4))" - -L_.str.104: ## @.str.104 - .asciz "(((((rc)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.105: ## @.str.105 - .asciz "((((rb))->tt_) == ((3 | (0 << 4))))" - -L_.str.108: ## @.str.108 - .asciz "!ci->jitstatus" - -L_.str.109: ## @.str.109 - .asciz "((int)(((i)>>16)&0xff)) - 1 == (-1)" - -L_.str.110: ## @.str.110 - .asciz "((((nfunc))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))" - -L_.str.111: ## @.str.111 - .asciz "(((nfunc)->value_).gc)->tt == (6 | (0 << 4))" - -L_.str.112: ## @.str.112 - .asciz "((((ofunc))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))" - -L_.str.113: ## @.str.113 - .asciz "(((ofunc)->value_).gc)->tt == (6 | (0 << 4))" - -L_.str.114: ## @.str.114 - .asciz "L->top == oci->u.l.base + (((__builtin_expect(!(((((ofunc))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/src/lvm.c\", 1733, \"((((ofunc))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))\") : (void)0), (((__builtin_expect(!((((ofunc)->value_).gc)->tt == (6 | (0 << 4))), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/src/lvm.c\", 1733, \"(((ofunc)->value_).gc)->tt == (6 | (0 << 4))\") : (void)0), (&((((union GCUnion *)((((ofunc)->value_).gc))))->cl.l)))))->p)->maxstacksize" - -L_.str.115: ## @.str.115 - .asciz "((ci)->callstatus & (1<<1))" - -L_.str.116: ## @.str.116 - .asciz "((OpCode)(((*((ci)->u.l.savedpc - 1))&0xff))) == OP_CALL" - -L_.str.117: ## @.str.117 - .asciz "((((ra + 2))->tt_) == ((3 | (1 << 4))))" - -L_.str.118: ## @.str.118 - .asciz "((((ra))->tt_) == ((3 | (1 << 4))))" - -L_.str.119: ## @.str.119 - .asciz "((((ra + 1))->tt_) == ((3 | (1 << 4))))" - -L_.str.121: ## @.str.121 - .asciz "((((ra + 2))->tt_) == ((3 | (0 << 4))))" - -L_.str.122: ## @.str.122 - .asciz "((((ra))->tt_) == ((3 | (0 << 4))))" - -L_.str.123: ## @.str.123 - .asciz "((((ra + 1))->tt_) == ((3 | (0 << 4))))" - -L_.str.125: ## @.str.125 - .asciz "((((pstep))->tt_) == ((3 | (1 << 4))))" - -L_.str.126: ## @.str.126 - .asciz "((((init))->tt_) == ((3 | (1 << 4))))" - -L_.str.128: ## @.str.128 - .asciz "'for' limit must be a number" - -L_.str.130: ## @.str.130 - .asciz "'for' step must be a number" - -L_.str.132: ## @.str.132 - .asciz "'for' initial value must be a number" - -L_.str.133: ## @.str.133 - .asciz "((OpCode)(((i)&0xff))) == OP_TFORLOOP" - -L_.str.134: ## @.str.134 - .asciz "((((pinit))->tt_) == ((3 | (1 << 4))))" - -L_.str.135: ## @.str.135 - .asciz "((((int)(((i)>>16)&0xff))) & 0x80)" - -L_.str.136: ## @.str.136 - .asciz "key->tt == (4 | (0 << 4))" - -L_.str.137: ## @.str.137 - .asciz "integer expected" - -L_.str.138: ## @.str.138 - .asciz "number expected" - -L_.str.139: ## @.str.139 - .asciz "upvalue of integer type, cannot be set to non integer value" - -L_.str.140: ## @.str.140 - .asciz "upvalue of number type, cannot be set to non number value" - -L_.str.141: ## @.str.141 - .asciz "upvalue of integer[] type, cannot be set to non integer[] value" - -L_.str.142: ## @.str.142 - .asciz "upvalue of number[] type, cannot be set to non number[] value" - -L_.str.143: ## @.str.143 - .asciz "upvalue of table type, cannot be set to non table value" - -L_.str.144: ## @.str.144 - .asciz "MOVEI: integer expected" - -L_.str.145: ## @.str.145 - .asciz "MOVEF: number expected" - -L_.str.146: ## @.str.146 - .asciz "integer[] expected" - -L_.str.147: ## @.str.147 - .asciz "number[] expected" - -L_.str.148: ## @.str.148 - .asciz "table expected" - -L_.str.149: ## @.str.149 - .asciz "TOINT: integer expected" - -L_.str.150: ## @.str.150 - .asciz "TOFLT: number expected" - -L_.str.151: ## @.str.151 - .asciz "string expected" - -L_.str.152: ## @.str.152 - .asciz "closure expected" - -L_.str.153: ## @.str.153 - .asciz "type name must be string" - -L_.str.154: ## @.str.154 - .asciz "type mismatch: expected %s" - -L_.str.160: ## @.str.160 - .asciz "'%s'\n" - -L___func__.ravi_dump_value: ## @__func__.ravi_dump_value - .asciz "ravi_dump_value" - -L_.str.161: ## @.str.161 - .asciz "(((((((stack_ptr))->tt_)) & 0x0F)) == (4))" - -L_.str.162: ## @.str.162 - .asciz "(((((stack_ptr)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.165: ## @.str.165 - .asciz "%.6f\n" - -L_.str.167: ## @.str.167 - .asciz "%lld\n" - -L_.str.175: ## @.str.175 - .asciz "Stack dump %s\n" - -L_.str.176: ## @.str.176 - .asciz "L->top = %d\n" - -L_.str.178: ## @.str.178 - .asciz "Stack dump %s function %d L->top = %d, ci->top = %d\n" - -L___func__.ravi_debug_trace: ## @__func__.ravi_debug_trace - .asciz "ravi_debug_trace" - -L_.str.179: ## @.str.179 - .asciz "((((L->ci->func)->tt_) & 0x1F) == 6)" - -L_.str.180: ## @.str.180 - .asciz "(((((L->ci->func)->value_).gc)->tt) & 0x0F) == 6" - -L_.str.181: ## @.str.181 - .asciz "Stack dump %s (%s) function %d, pc=%d, L->top = %d, ci->top = %d\n" - -L_.str.182: ## @.str.182 - .asciz "L->ci->u.l.base <= L->top && L->top < L->stack + L->stacksize" - -L_.str.183: ## @.str.183 - .asciz "((((L->ci->func))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))" - -L_.str.184: ## @.str.184 - .asciz "(((L->ci->func)->value_).gc)->tt == (6 | (0 << 4))" - -L___func__.raviV_op_newarrayint: ## @__func__.raviV_op_newarrayint - .asciz "raviV_op_newarrayint" - -L___func__.raviV_op_newarrayfloat: ## @__func__.raviV_op_newarrayfloat - .asciz "raviV_op_newarrayfloat" - -L___func__.raviV_op_newtable: ## @__func__.raviV_op_newtable - .asciz "raviV_op_newtable" - -L___func__.raviV_op_setlist: ## @__func__.raviV_op_setlist - .asciz "raviV_op_setlist" - -L___func__.raviV_op_concat: ## @__func__.raviV_op_concat - .asciz "raviV_op_concat" - -L___func__.raviV_op_closure: ## @__func__.raviV_op_closure - .asciz "raviV_op_closure" - -L___func__.raviV_op_vararg: ## @__func__.raviV_op_vararg - .asciz "raviV_op_vararg" - -L___func__.raviV_op_setupvalai: ## @__func__.raviV_op_setupvalai - .asciz "raviV_op_setupvalai" - -L___func__.raviV_op_setupvalaf: ## @__func__.raviV_op_setupvalaf - .asciz "raviV_op_setupvalaf" - -L___func__.raviV_op_setupvalt: ## @__func__.raviV_op_setupvalt - .asciz "raviV_op_setupvalt" - -L___func__.raviV_op_setupval: ## @__func__.raviV_op_setupval - .asciz "raviV_op_setupval" - -L___func__.raviV_gettable_sskey: ## @__func__.raviV_gettable_sskey - .asciz "raviV_gettable_sskey" - -L_.str.185: ## @.str.185 - .asciz "(((((((key))->tt_)) & 0x0F)) == (4))" - -L_.str.186: ## @.str.186 - .asciz "(((((key)->value_).gc)->tt) & 0x0F) == 4" - -L___func__.raviV_settable_sskey: ## @__func__.raviV_settable_sskey - .asciz "raviV_settable_sskey" - -L___func__.raviV_gettable_i: ## @__func__.raviV_gettable_i - .asciz "raviV_gettable_i" - -L___func__.raviV_settable_i: ## @__func__.raviV_settable_i - .asciz "raviV_settable_i" - -L___func__.raviV_op_totype: ## @__func__.raviV_op_totype - .asciz "raviV_op_totype" - -L___func__.LTnum: ## @__func__.LTnum - .asciz "LTnum" - -L_.str.187: ## @.str.187 - .asciz "(((((((l))->tt_)) & 0x0F)) == (3)) && (((((((r))->tt_)) & 0x0F)) == (3))" - -L_.str.189: ## @.str.189 - .asciz "((((r))->tt_) == ((3 | (1 << 4))))" - -L_.str.190: ## @.str.190 - .asciz "((((r))->tt_) == ((3 | (0 << 4))))" - -L_.str.191: ## @.str.191 - .asciz "((((l))->tt_) == ((3 | (0 << 4))))" - -L___func__.LEnum: ## @__func__.LEnum - .asciz "LEnum" - -L___func__.copy2buff: ## @__func__.copy2buff - .asciz "copy2buff" - -L_.str.192: ## @.str.192 - .asciz "(((((((top - n))->tt_)) & 0x0F)) == (4))" - -L_.str.193: ## @.str.193 - .asciz "(((((top - n)->value_).gc)->tt) & 0x0F) == 4" - -L___func__.luaH_getshortstr: ## @__func__.luaH_getshortstr - .asciz "luaH_getshortstr" - -L_.str.194: ## @.str.194 - .asciz "/Users/dylan/github/ravi/include/ltable.h" - -L_.str.196: ## @.str.196 - .asciz "(((((k)->value_).gc)->tt) & 0x0F) == 4" - -L_.str.197: ## @.str.197 - .asciz "(((__builtin_expect(!((((((((k))->tt_)) & 0x0F)) == (4))), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/include/ltable.h\", 89, \"(((((((k))->tt_)) & 0x0F)) == (4))\") : (void)0), (((__builtin_expect(!((((((k)->value_).gc)->tt) & 0x0F) == 4), 0) ? __assert_rtn(__func__, \"/Users/dylan/github/ravi/include/ltable.h\", 89, \"(((((k)->value_).gc)->tt) & 0x0F) == 4\") : (void)0), (&((((union GCUnion *)((((k)->value_).gc))))->ts))))))->tt == (4 | (0 << 4))" - -L___func__.pushclosure: ## @__func__.pushclosure - .asciz "pushclosure" - -L_.str.198: ## @.str.198 - .asciz "stack[%d] = Fast C function\n" - -L_.str.200: ## @.str.200 - .asciz "stack[%d] = Light C function\n" - -L_.str.201: ## @.str.201 - .asciz "stack[%d] = C closure\n" - -L___func__.ravi_dump_ci: ## @__func__.ravi_dump_ci - .asciz "ravi_dump_ci" - -L_.str.202: ## @.str.202 - .asciz "((((func))->tt_) == ((((6 | (0 << 4))) | (1 << 15))))" - -L_.str.203: ## @.str.203 - .asciz "(((func)->value_).gc)->tt == (6 | (0 << 4))" - -L_.str.204: ## @.str.204 - .asciz "stack[%d] reg[%d] = %s %s" - -L_.str.205: ## @.str.205 - .asciz "(base) " - -L_.str.206: ## @.str.206 - .space 1 - -L_.str.207: ## @.str.207 - .asciz "(L->top) " - -L_.str.208: ## @.str.208 - .asciz "stack[%d] = Lua function (registers = %d, params = %d, locals = %d)\n" - - .p2align 4 ## @str.221 -L_str.221: - .asciz "=======================" - -L_str.223: ## @str.223 - .asciz "other" - -L_str.224: ## @str.224 - .asciz "thread" - -L_str.225: ## @str.225 - .asciz "boolean" - -L_str.226: ## @str.226 - .asciz "full user data" - -L_str.227: ## @str.227 - .asciz "light user data" - -L_str.228: ## @str.228 - .asciz "nil" - -L_str.229: ## @str.229 - .asciz "table" - -L_str.230: ## @str.230 - .asciz "function" - -L_str.231: ## @str.231 - .asciz "Lua closure" - -L_str.232: ## @str.232 - .asciz "fast C function" - - .p2align 4 ## @str.233 -L_str.233: - .asciz "light C function" - -L_str.234: ## @str.234 - .asciz "C closure" - - .p2align 4 ## @str.237 -L_str.237: - .asciz "---> called from " - - .section __DWARF,__debug_str,regular,debug -Linfo_string: - .asciz "Apple LLVM version 10.0.1 (clang-1001.0.46.4)" ## string offset=0 - .asciz "/Users/dylan/github/ravi/src/lvm.c" ## string offset=46 - .asciz "/Users/dylan/github/ravi/vmbuilder/compiler-output" ## string offset=81 - .asciz "dispatch_table" ## string offset=132 - .asciz "__ARRAY_SIZE_TYPE__" ## string offset=147 - .asciz "TM_INDEX" ## string offset=167 - .asciz "TM_NEWINDEX" ## string offset=176 - .asciz "TM_GC" ## string offset=188 - .asciz "TM_MODE" ## string offset=194 - .asciz "TM_LEN" ## string offset=202 - .asciz "TM_EQ" ## string offset=209 - .asciz "TM_ADD" ## string offset=215 - .asciz "TM_SUB" ## string offset=222 - .asciz "TM_MUL" ## string offset=229 - .asciz "TM_MOD" ## string offset=236 - .asciz "TM_POW" ## string offset=243 - .asciz "TM_DIV" ## string offset=250 - .asciz "TM_IDIV" ## string offset=257 - .asciz "TM_BAND" ## string offset=265 - .asciz "TM_BOR" ## string offset=273 - .asciz "TM_BXOR" ## string offset=280 - .asciz "TM_SHL" ## string offset=288 - .asciz "TM_SHR" ## string offset=295 - .asciz "TM_UNM" ## string offset=302 - .asciz "TM_BNOT" ## string offset=309 - .asciz "TM_LT" ## string offset=317 - .asciz "TM_LE" ## string offset=323 - .asciz "TM_CONCAT" ## string offset=329 - .asciz "TM_CALL" ## string offset=339 - .asciz "TM_N" ## string offset=347 - .asciz "OP_MOVE" ## string offset=352 - .asciz "OP_LOADK" ## string offset=360 - .asciz "OP_LOADKX" ## string offset=369 - .asciz "OP_LOADBOOL" ## string offset=379 - .asciz "OP_LOADNIL" ## string offset=391 - .asciz "OP_GETUPVAL" ## string offset=402 - .asciz "OP_GETTABUP" ## string offset=414 - .asciz "OP_GETTABLE" ## string offset=426 - .asciz "OP_SETTABUP" ## string offset=438 - .asciz "OP_SETUPVAL" ## string offset=450 - .asciz "OP_SETTABLE" ## string offset=462 - .asciz "OP_NEWTABLE" ## string offset=474 - .asciz "OP_SELF" ## string offset=486 - .asciz "OP_ADD" ## string offset=494 - .asciz "OP_SUB" ## string offset=501 - .asciz "OP_MUL" ## string offset=508 - .asciz "OP_MOD" ## string offset=515 - .asciz "OP_POW" ## string offset=522 - .asciz "OP_DIV" ## string offset=529 - .asciz "OP_IDIV" ## string offset=536 - .asciz "OP_BAND" ## string offset=544 - .asciz "OP_BOR" ## string offset=552 - .asciz "OP_BXOR" ## string offset=559 - .asciz "OP_SHL" ## string offset=567 - .asciz "OP_SHR" ## string offset=574 - .asciz "OP_UNM" ## string offset=581 - .asciz "OP_BNOT" ## string offset=588 - .asciz "OP_NOT" ## string offset=596 - .asciz "OP_LEN" ## string offset=603 - .asciz "OP_CONCAT" ## string offset=610 - .asciz "OP_JMP" ## string offset=620 - .asciz "OP_EQ" ## string offset=627 - .asciz "OP_LT" ## string offset=633 - .asciz "OP_LE" ## string offset=639 - .asciz "OP_TEST" ## string offset=645 - .asciz "OP_TESTSET" ## string offset=653 - .asciz "OP_CALL" ## string offset=664 - .asciz "OP_TAILCALL" ## string offset=672 - .asciz "OP_RETURN" ## string offset=684 - .asciz "OP_FORLOOP" ## string offset=694 - .asciz "OP_FORPREP" ## string offset=705 - .asciz "OP_TFORCALL" ## string offset=716 - .asciz "OP_TFORLOOP" ## string offset=728 - .asciz "OP_SETLIST" ## string offset=740 - .asciz "OP_CLOSURE" ## string offset=751 - .asciz "OP_VARARG" ## string offset=762 - .asciz "OP_EXTRAARG" ## string offset=772 - .asciz "OP_RAVI_NEW_IARRAY" ## string offset=784 - .asciz "OP_RAVI_NEW_FARRAY" ## string offset=803 - .asciz "OP_RAVI_LOADIZ" ## string offset=822 - .asciz "OP_RAVI_LOADFZ" ## string offset=837 - .asciz "OP_RAVI_UNMF" ## string offset=852 - .asciz "OP_RAVI_UNMI" ## string offset=865 - .asciz "OP_RAVI_ADDFF" ## string offset=878 - .asciz "OP_RAVI_ADDFI" ## string offset=892 - .asciz "OP_RAVI_ADDII" ## string offset=906 - .asciz "OP_RAVI_SUBFF" ## string offset=920 - .asciz "OP_RAVI_SUBFI" ## string offset=934 - .asciz "OP_RAVI_SUBIF" ## string offset=948 - .asciz "OP_RAVI_SUBII" ## string offset=962 - .asciz "OP_RAVI_MULFF" ## string offset=976 - .asciz "OP_RAVI_MULFI" ## string offset=990 - .asciz "OP_RAVI_MULII" ## string offset=1004 - .asciz "OP_RAVI_DIVFF" ## string offset=1018 - .asciz "OP_RAVI_DIVFI" ## string offset=1032 - .asciz "OP_RAVI_DIVIF" ## string offset=1046 - .asciz "OP_RAVI_DIVII" ## string offset=1060 - .asciz "OP_RAVI_TOINT" ## string offset=1074 - .asciz "OP_RAVI_TOFLT" ## string offset=1088 - .asciz "OP_RAVI_TOIARRAY" ## string offset=1102 - .asciz "OP_RAVI_TOFARRAY" ## string offset=1119 - .asciz "OP_RAVI_TOTAB" ## string offset=1136 - .asciz "OP_RAVI_TOSTRING" ## string offset=1150 - .asciz "OP_RAVI_TOCLOSURE" ## string offset=1167 - .asciz "OP_RAVI_TOTYPE" ## string offset=1185 - .asciz "OP_RAVI_MOVEI" ## string offset=1200 - .asciz "OP_RAVI_MOVEF" ## string offset=1214 - .asciz "OP_RAVI_MOVEIARRAY" ## string offset=1228 - .asciz "OP_RAVI_MOVEFARRAY" ## string offset=1247 - .asciz "OP_RAVI_MOVETAB" ## string offset=1266 - .asciz "OP_RAVI_IARRAY_GET" ## string offset=1282 - .asciz "OP_RAVI_FARRAY_GET" ## string offset=1301 - .asciz "OP_RAVI_IARRAY_SET" ## string offset=1320 - .asciz "OP_RAVI_FARRAY_SET" ## string offset=1339 - .asciz "OP_RAVI_IARRAY_SETI" ## string offset=1358 - .asciz "OP_RAVI_FARRAY_SETF" ## string offset=1378 - .asciz "OP_RAVI_FORLOOP_IP" ## string offset=1398 - .asciz "OP_RAVI_FORLOOP_I1" ## string offset=1417 - .asciz "OP_RAVI_FORPREP_IP" ## string offset=1436 - .asciz "OP_RAVI_FORPREP_I1" ## string offset=1455 - .asciz "OP_RAVI_SETUPVALI" ## string offset=1474 - .asciz "OP_RAVI_SETUPVALF" ## string offset=1492 - .asciz "OP_RAVI_SETUPVAL_IARRAY" ## string offset=1510 - .asciz "OP_RAVI_SETUPVAL_FARRAY" ## string offset=1534 - .asciz "OP_RAVI_SETUPVALT" ## string offset=1558 - .asciz "OP_RAVI_BAND_II" ## string offset=1576 - .asciz "OP_RAVI_BOR_II" ## string offset=1592 - .asciz "OP_RAVI_BXOR_II" ## string offset=1607 - .asciz "OP_RAVI_SHL_II" ## string offset=1623 - .asciz "OP_RAVI_SHR_II" ## string offset=1638 - .asciz "OP_RAVI_BNOT_I" ## string offset=1653 - .asciz "OP_RAVI_EQ_II" ## string offset=1668 - .asciz "OP_RAVI_EQ_FF" ## string offset=1682 - .asciz "OP_RAVI_LT_II" ## string offset=1696 - .asciz "OP_RAVI_LT_FF" ## string offset=1710 - .asciz "OP_RAVI_LE_II" ## string offset=1724 - .asciz "OP_RAVI_LE_FF" ## string offset=1738 - .asciz "OP_RAVI_TABLE_GETFIELD" ## string offset=1752 - .asciz "OP_RAVI_TABLE_SETFIELD" ## string offset=1775 - .asciz "OP_RAVI_TABLE_SELF_SK" ## string offset=1798 - .asciz "OP_RAVI_GETI" ## string offset=1820 - .asciz "OP_RAVI_SETI" ## string offset=1833 - .asciz "OP_RAVI_GETFIELD" ## string offset=1846 - .asciz "OP_RAVI_SELF_SK" ## string offset=1863 - .asciz "OP_RAVI_SETFIELD" ## string offset=1879 - .asciz "OP_RAVI_GETTABUP_SK" ## string offset=1896 - .asciz "OpArgMask" ## string offset=1916 - .asciz "OpArgN" ## string offset=1926 - .asciz "OpArgU" ## string offset=1933 - .asciz "OpArgR" ## string offset=1940 - .asciz "OpArgK" ## string offset=1947 - .asciz "RAVI_TANY" ## string offset=1954 - .asciz "RAVI_TNUMINT" ## string offset=1964 - .asciz "RAVI_TNUMFLT" ## string offset=1977 - .asciz "RAVI_TARRAYINT" ## string offset=1990 - .asciz "RAVI_TARRAYFLT" ## string offset=2005 - .asciz "RAVI_TFUNCTION" ## string offset=2020 - .asciz "RAVI_TTABLE" ## string offset=2035 - .asciz "RAVI_TSTRING" ## string offset=2047 - .asciz "RAVI_TNIL" ## string offset=2060 - .asciz "RAVI_TBOOLEAN" ## string offset=2070 - .asciz "RAVI_TUSERDATA" ## string offset=2084 - .asciz "lua_Number" ## string offset=2099 - .asciz "double" ## string offset=2110 - .asciz "char" ## string offset=2117 - .asciz "GCUnion" ## string offset=2122 - .asciz "gc" ## string offset=2130 - .asciz "GCObject" ## string offset=2133 - .asciz "next" ## string offset=2142 - .asciz "tt" ## string offset=2147 - .asciz "lu_byte" ## string offset=2150 - .asciz "unsigned char" ## string offset=2158 - .asciz "marked" ## string offset=2172 - .asciz "ts" ## string offset=2179 - .asciz "TString" ## string offset=2182 - .asciz "extra" ## string offset=2190 - .asciz "shrlen" ## string offset=2196 - .asciz "hash" ## string offset=2203 - .asciz "unsigned int" ## string offset=2208 - .asciz "u" ## string offset=2221 - .asciz "lnglen" ## string offset=2223 - .asciz "size_t" ## string offset=2230 - .asciz "__darwin_size_t" ## string offset=2237 - .asciz "long unsigned int" ## string offset=2253 - .asciz "hnext" ## string offset=2271 - .asciz "Udata" ## string offset=2277 - .asciz "ttuv_" ## string offset=2283 - .asciz "LuaType" ## string offset=2289 - .asciz "uint16_t" ## string offset=2297 - .asciz "unsigned short" ## string offset=2306 - .asciz "metatable" ## string offset=2321 - .asciz "Table" ## string offset=2331 - .asciz "flags" ## string offset=2337 - .asciz "lsizenode" ## string offset=2343 - .asciz "sizearray" ## string offset=2353 - .asciz "array" ## string offset=2363 - .asciz "TValue" ## string offset=2369 - .asciz "lua_TValue" ## string offset=2376 - .asciz "value_" ## string offset=2387 - .asciz "Value" ## string offset=2394 - .asciz "p" ## string offset=2400 - .asciz "b" ## string offset=2402 - .asciz "int" ## string offset=2404 - .asciz "f" ## string offset=2408 - .asciz "lua_CFunction" ## string offset=2410 - .asciz "lua_State" ## string offset=2424 - .asciz "status" ## string offset=2434 - .asciz "top" ## string offset=2441 - .asciz "StkId" ## string offset=2445 - .asciz "l_G" ## string offset=2451 - .asciz "global_State" ## string offset=2455 - .asciz "frealloc" ## string offset=2468 - .asciz "lua_Alloc" ## string offset=2477 - .asciz "ud" ## string offset=2487 - .asciz "totalbytes" ## string offset=2490 - .asciz "l_mem" ## string offset=2501 - .asciz "ptrdiff_t" ## string offset=2507 - .asciz "long int" ## string offset=2517 - .asciz "GCdebt" ## string offset=2526 - .asciz "GCmemtrav" ## string offset=2533 - .asciz "lu_mem" ## string offset=2543 - .asciz "GCestimate" ## string offset=2550 - .asciz "strt" ## string offset=2561 - .asciz "stringtable" ## string offset=2566 - .asciz "nuse" ## string offset=2578 - .asciz "size" ## string offset=2583 - .asciz "l_registry" ## string offset=2588 - .asciz "seed" ## string offset=2599 - .asciz "currentwhite" ## string offset=2604 - .asciz "gcstate" ## string offset=2617 - .asciz "gckind" ## string offset=2625 - .asciz "gcrunning" ## string offset=2632 - .asciz "allgc" ## string offset=2642 - .asciz "sweepgc" ## string offset=2648 - .asciz "finobj" ## string offset=2656 - .asciz "gray" ## string offset=2663 - .asciz "grayagain" ## string offset=2668 - .asciz "weak" ## string offset=2678 - .asciz "ephemeron" ## string offset=2683 - .asciz "allweak" ## string offset=2693 - .asciz "tobefnz" ## string offset=2701 - .asciz "fixedgc" ## string offset=2709 - .asciz "twups" ## string offset=2717 - .asciz "gcfinnum" ## string offset=2723 - .asciz "gcpause" ## string offset=2732 - .asciz "gcstepmul" ## string offset=2740 - .asciz "panic" ## string offset=2750 - .asciz "mainthread" ## string offset=2756 - .asciz "version" ## string offset=2767 - .asciz "memerrmsg" ## string offset=2775 - .asciz "tmname" ## string offset=2785 - .asciz "mt" ## string offset=2792 - .asciz "strcache" ## string offset=2795 - .asciz "ravi_state" ## string offset=2804 - .asciz "ravi_State" ## string offset=2815 - .asciz "dispatch" ## string offset=2826 - .asciz "ASMFunction" ## string offset=2835 - .asciz "ravi_writeline" ## string offset=2847 - .asciz "ravi_Writeline" ## string offset=2862 - .asciz "ravi_writestring" ## string offset=2877 - .asciz "ravi_Writestring" ## string offset=2894 - .asciz "ravi_writestringerror" ## string offset=2911 - .asciz "ravi_Writestringerror" ## string offset=2933 - .asciz "ravi_debugger_data" ## string offset=2955 - .asciz "ci" ## string offset=2974 - .asciz "CallInfo" ## string offset=2977 - .asciz "func" ## string offset=2986 - .asciz "previous" ## string offset=2991 - .asciz "l" ## string offset=3000 - .asciz "base" ## string offset=3002 - .asciz "savedpc" ## string offset=3007 - .asciz "Instruction" ## string offset=3015 - .asciz "c" ## string offset=3027 - .asciz "k" ## string offset=3029 - .asciz "lua_KFunction" ## string offset=3031 - .asciz "lua_KContext" ## string offset=3045 - .asciz "intptr_t" ## string offset=3058 - .asciz "__darwin_intptr_t" ## string offset=3067 - .asciz "old_errfunc" ## string offset=3085 - .asciz "ctx" ## string offset=3097 - .asciz "nresults" ## string offset=3101 - .asciz "short" ## string offset=3110 - .asciz "callstatus" ## string offset=3116 - .asciz "stacklevel" ## string offset=3127 - .asciz "jitstatus" ## string offset=3138 - .asciz "magic" ## string offset=3148 - .asciz "oldpc" ## string offset=3154 - .asciz "stack_last" ## string offset=3160 - .asciz "stack" ## string offset=3171 - .asciz "openupval" ## string offset=3177 - .asciz "UpVal" ## string offset=3187 - .asciz "v" ## string offset=3193 - .asciz "refcount" ## string offset=3195 - .asciz "open" ## string offset=3204 - .asciz "touched" ## string offset=3209 - .asciz "value" ## string offset=3217 - .asciz "gclist" ## string offset=3223 - .asciz "errorJmp" ## string offset=3230 - .asciz "lua_longjmp" ## string offset=3239 - .asciz "base_ci" ## string offset=3251 - .asciz "hook" ## string offset=3259 - .asciz "lua_Hook" ## string offset=3264 - .asciz "lua_Debug" ## string offset=3273 - .asciz "event" ## string offset=3283 - .asciz "name" ## string offset=3289 - .asciz "namewhat" ## string offset=3294 - .asciz "what" ## string offset=3303 - .asciz "source" ## string offset=3308 - .asciz "currentline" ## string offset=3315 - .asciz "linedefined" ## string offset=3327 - .asciz "lastlinedefined" ## string offset=3339 - .asciz "nups" ## string offset=3355 - .asciz "nparams" ## string offset=3360 - .asciz "isvararg" ## string offset=3368 - .asciz "istailcall" ## string offset=3377 - .asciz "short_src" ## string offset=3388 - .asciz "i_ci" ## string offset=3398 - .asciz "errfunc" ## string offset=3403 - .asciz "stacksize" ## string offset=3411 - .asciz "basehookcount" ## string offset=3421 - .asciz "hookcount" ## string offset=3435 - .asciz "nny" ## string offset=3445 - .asciz "nCcalls" ## string offset=3449 - .asciz "hookmask" ## string offset=3457 - .asciz "allowhook" ## string offset=3466 - .asciz "nci" ## string offset=3476 - .asciz "i" ## string offset=3480 - .asciz "lua_Integer" ## string offset=3482 - .asciz "long long int" ## string offset=3494 - .asciz "n" ## string offset=3508 - .asciz "tt_" ## string offset=3510 - .asciz "node" ## string offset=3514 - .asciz "Node" ## string offset=3519 - .asciz "i_val" ## string offset=3524 - .asciz "i_key" ## string offset=3530 - .asciz "TKey" ## string offset=3536 - .asciz "nk" ## string offset=3541 - .asciz "tvk" ## string offset=3544 - .asciz "lastfree" ## string offset=3548 - .asciz "ravi_array" ## string offset=3557 - .asciz "RaviArray" ## string offset=3568 - .asciz "data" ## string offset=3578 - .asciz "len" ## string offset=3583 - .asciz "array_type" ## string offset=3587 - .asciz "array_modifier" ## string offset=3598 - .asciz "hmask" ## string offset=3613 - .asciz "user_" ## string offset=3619 - .asciz "cl" ## string offset=3625 - .asciz "Closure" ## string offset=3628 - .asciz "CClosure" ## string offset=3636 - .asciz "nupvalues" ## string offset=3645 - .asciz "upvalue" ## string offset=3655 - .asciz "LClosure" ## string offset=3663 - .asciz "Proto" ## string offset=3672 - .asciz "numparams" ## string offset=3678 - .asciz "is_vararg" ## string offset=3688 - .asciz "maxstacksize" ## string offset=3698 - .asciz "sizeupvalues" ## string offset=3711 - .asciz "sizek" ## string offset=3724 - .asciz "sizecode" ## string offset=3730 - .asciz "sizelineinfo" ## string offset=3739 - .asciz "sizep" ## string offset=3752 - .asciz "sizelocvars" ## string offset=3758 - .asciz "code" ## string offset=3770 - .asciz "lineinfo" ## string offset=3775 - .asciz "locvars" ## string offset=3784 - .asciz "LocVar" ## string offset=3792 - .asciz "varname" ## string offset=3799 - .asciz "usertype" ## string offset=3807 - .asciz "startpc" ## string offset=3816 - .asciz "endpc" ## string offset=3824 - .asciz "ravi_type" ## string offset=3830 - .asciz "upvalues" ## string offset=3840 - .asciz "Upvaldesc" ## string offset=3849 - .asciz "instack" ## string offset=3859 - .asciz "idx" ## string offset=3867 - .asciz "cache" ## string offset=3871 - .asciz "ravi_jit" ## string offset=3877 - .asciz "RaviJITProto" ## string offset=3886 - .asciz "jit_status" ## string offset=3899 - .asciz "jit_flags" ## string offset=3910 - .asciz "execution_count" ## string offset=3920 - .asciz "jit_data" ## string offset=3936 - .asciz "jit_function" ## string offset=3945 - .asciz "upvals" ## string offset=3958 - .asciz "h" ## string offset=3965 - .asciz "th" ## string offset=3967 - .asciz "lua_Unsigned" ## string offset=3970 - .asciz "long long unsigned int" ## string offset=3983 - .asciz "OpCode" ## string offset=4006 - .asciz "L_EXTRA" ## string offset=4013 - .asciz "lock" ## string offset=4021 - .asciz "plock" ## string offset=4026 - .asciz "luaV_tonumber_" ## string offset=4032 - .asciz "luaV_flttointeger" ## string offset=4047 - .asciz "obj" ## string offset=4065 - .asciz "mode" ## string offset=4069 - .asciz "luaV_tointeger" ## string offset=4074 - .asciz "luaV_tointeger_" ## string offset=4089 - .asciz "luaV_forlimit" ## string offset=4105 - .asciz "luaV_finishget" ## string offset=4119 - .asciz "luaV_finishset" ## string offset=4134 - .asciz "luaV_gettable" ## string offset=4149 - .asciz "luaV_settable" ## string offset=4163 - .asciz "l_strcmp" ## string offset=4177 - .asciz "ls" ## string offset=4186 - .asciz "rs" ## string offset=4189 - .asciz "ll" ## string offset=4192 - .asciz "r" ## string offset=4195 - .asciz "lr" ## string offset=4197 - .asciz "temp" ## string offset=4200 - .asciz "luaV_lessthan" ## string offset=4205 - .asciz "LTintfloat" ## string offset=4219 - .asciz "LEintfloat" ## string offset=4230 - .asciz "LTnum" ## string offset=4241 - .asciz "luaV_lessequal" ## string offset=4247 - .asciz "LEnum" ## string offset=4262 - .asciz "luaV_equalobj" ## string offset=4268 - .asciz "copy2buff" ## string offset=4282 - .asciz "buff" ## string offset=4292 - .asciz "tl" ## string offset=4297 - .asciz "luaV_concat" ## string offset=4300 - .asciz "luaV_objlen" ## string offset=4312 - .asciz "luaV_div" ## string offset=4324 - .asciz "luaV_mod" ## string offset=4333 - .asciz "luaV_shiftl" ## string offset=4342 - .asciz "luaV_finishOp" ## string offset=4354 - .asciz "luaH_getshortstr" ## string offset=4368 - .asciz "t" ## string offset=4385 - .asciz "key" ## string offset=4387 - .asciz "nx" ## string offset=4391 - .asciz "raviV_check_usertype" ## string offset=4394 - .asciz "x" ## string offset=4415 - .asciz "y" ## string offset=4417 - .asciz "L" ## string offset=4419 - .asciz "m" ## string offset=4421 - .asciz "q" ## string offset=4423 - .asciz "step" ## string offset=4425 - .asciz "stopnow" ## string offset=4430 - .asciz "getcached" ## string offset=4438 - .asciz "encup" ## string offset=4448 - .asciz "uv" ## string offset=4454 - .asciz "nup" ## string offset=4457 - .asciz "luaV_execute" ## string offset=4461 - .asciz "pushclosure" ## string offset=4474 - .asciz "ravi_dump_value" ## string offset=4486 - .asciz "ravi_dump_ci" ## string offset=4502 - .asciz "func_type" ## string offset=4515 - .asciz "funcpos" ## string offset=4525 - .asciz "stack_ptr" ## string offset=4533 - .asciz "ravi_dump_stack" ## string offset=4543 - .asciz "ravi_dump_stacktop" ## string offset=4559 - .asciz "ravi_debug_trace" ## string offset=4578 - .asciz "raviV_op_newarrayint" ## string offset=4595 - .asciz "raviV_op_newarrayfloat" ## string offset=4616 - .asciz "raviV_op_newtable" ## string offset=4639 - .asciz "raviV_op_setlist" ## string offset=4657 - .asciz "raviV_op_concat" ## string offset=4674 - .asciz "raviV_op_closure" ## string offset=4690 - .asciz "raviV_op_vararg" ## string offset=4707 - .asciz "raviV_op_loadnil" ## string offset=4723 - .asciz "raviV_op_setupvali" ## string offset=4740 - .asciz "raviV_op_setupvalf" ## string offset=4759 - .asciz "raviV_op_setupvalai" ## string offset=4778 - .asciz "raviV_op_setupvalaf" ## string offset=4798 - .asciz "raviV_op_setupvalt" ## string offset=4818 - .asciz "raviV_op_setupval" ## string offset=4837 - .asciz "raviV_op_add" ## string offset=4855 - .asciz "raviV_op_sub" ## string offset=4868 - .asciz "raviV_op_mul" ## string offset=4881 - .asciz "raviV_op_div" ## string offset=4894 - .asciz "raviV_op_shl" ## string offset=4907 - .asciz "raviV_op_shr" ## string offset=4920 - .asciz "raviV_op_band" ## string offset=4933 - .asciz "raviV_op_bor" ## string offset=4947 - .asciz "raviV_op_bxor" ## string offset=4960 - .asciz "raviV_op_bnot" ## string offset=4974 - .asciz "raviV_gettable_sskey" ## string offset=4988 - .asciz "raviV_settable_sskey" ## string offset=5009 - .asciz "raviV_gettable_i" ## string offset=5030 - .asciz "raviV_settable_i" ## string offset=5047 - .asciz "raviV_op_totype" ## string offset=5064 - .asciz "val" ## string offset=5080 - .asciz "slot" ## string offset=5084 - .asciz "io1" ## string offset=5089 - .asciz "loop" ## string offset=5093 - .asciz "tm" ## string offset=5098 - .asciz "io2" ## string offset=5101 - .asciz "io" ## string offset=5105 - .asciz "aux" ## string offset=5108 - .asciz "ukey" ## string offset=5112 - .asciz "d" ## string offset=5117 - .asciz "res" ## string offset=5119 - .asciz "li" ## string offset=5123 - .asciz "lf" ## string offset=5126 - .asciz "t1" ## string offset=5129 - .asciz "t2" ## string offset=5132 - .asciz "i1" ## string offset=5135 - .asciz "i2" ## string offset=5138 - .asciz "total" ## string offset=5141 - .asciz "x_" ## string offset=5147 - .asciz "ra" ## string offset=5150 - .asciz "rb" ## string offset=5153 - .asciz "inst" ## string offset=5156 - .asciz "op" ## string offset=5161 - .asciz "o" ## string offset=5164 - .asciz "reg" ## string offset=5166 - .asciz "metatab" ## string offset=5170 - .asciz "pc" ## string offset=5178 - .asciz "mask" ## string offset=5181 - .asciz "init" ## string offset=5186 - .asciz "pinit" ## string offset=5191 - .asciz "rc" ## string offset=5197 - .asciz "upval" ## string offset=5200 - .asciz "ib" ## string offset=5206 - .asciz "nb" ## string offset=5209 - .asciz "nc" ## string offset=5212 - .asciz "ic" ## string offset=5215 - .asciz "a" ## string offset=5218 - .asciz "c_or_compiled" ## string offset=5220 - .asciz "nfunc" ## string offset=5234 - .asciz "oci" ## string offset=5240 - .asciz "ofunc" ## string offset=5244 - .asciz "lim" ## string offset=5250 - .asciz "nres" ## string offset=5254 - .asciz "limit" ## string offset=5259 - .asciz "plimit" ## string offset=5265 - .asciz "nlimit" ## string offset=5272 - .asciz "pstep" ## string offset=5279 - .asciz "nstep" ## string offset=5285 - .asciz "ninit" ## string offset=5291 - .asciz "ilimit" ## string offset=5297 - .asciz "initv" ## string offset=5304 - .asciz "cb" ## string offset=5310 - .asciz "last" ## string offset=5313 - .asciz "ncl" ## string offset=5318 - .asciz "j" ## string offset=5322 - .asciz "equals" ## string offset=5324 - .asciz "lessthan" ## string offset=5331 - .asciz "lessequals" ## string offset=5340 - .asciz "istep" ## string offset=5351 - .asciz "ia" ## string offset=5357 - .asciz "na" ## string offset=5360 - .asciz "s" ## string offset=5363 - .asciz "ci_top" ## string offset=5365 - .asciz "buf" ## string offset=5372 - .asciz "opCode" ## string offset=5376 - .asciz "closure" ## string offset=5383 - .asciz "Bx" ## string offset=5391 - .section __DWARF,__debug_loc,regular,debug -Lsection_debug_loc: -Ldebug_loc0: -.set Lset0, Lfunc_begin0-Lfunc_begin0 - .quad Lset0 -.set Lset1, Ltmp0-Lfunc_begin0 - .quad Lset1 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset2, Ltmp0-Lfunc_begin0 - .quad Lset2 -.set Lset3, Ltmp3-Lfunc_begin0 - .quad Lset3 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset4, Ltmp4-Lfunc_begin0 - .quad Lset4 -.set Lset5, Ltmp10-Lfunc_begin0 - .quad Lset5 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset6, Ltmp24-Lfunc_begin0 - .quad Lset6 -.set Lset7, Ltmp25-Lfunc_begin0 - .quad Lset7 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1: -.set Lset8, Lfunc_begin0-Lfunc_begin0 - .quad Lset8 -.set Lset9, Ltmp0-Lfunc_begin0 - .quad Lset9 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset10, Ltmp0-Lfunc_begin0 - .quad Lset10 -.set Lset11, Ltmp15-Lfunc_begin0 - .quad Lset11 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset12, Ltmp16-Lfunc_begin0 - .quad Lset12 -.set Lset13, Lfunc_end0-Lfunc_begin0 - .quad Lset13 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc2: -.set Lset14, Ltmp7-Lfunc_begin0 - .quad Lset14 -.set Lset15, Lfunc_end0-Lfunc_begin0 - .quad Lset15 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc3: -.set Lset16, Ltmp31-Lfunc_begin0 - .quad Lset16 -.set Lset17, Ltmp40-Lfunc_begin0 - .quad Lset17 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc4: -.set Lset18, Ltmp32-Lfunc_begin0 - .quad Lset18 -.set Lset19, Ltmp42-Lfunc_begin0 - .quad Lset19 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc5: -.set Lset20, Lfunc_begin2-Lfunc_begin0 - .quad Lset20 -.set Lset21, Ltmp44-Lfunc_begin0 - .quad Lset21 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset22, Ltmp44-Lfunc_begin0 - .quad Lset22 -.set Lset23, Ltmp55-Lfunc_begin0 - .quad Lset23 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24, Ltmp56-Lfunc_begin0 - .quad Lset24 -.set Lset25, Ltmp73-Lfunc_begin0 - .quad Lset25 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26, Ltmp76-Lfunc_begin0 - .quad Lset26 -.set Lset27, Lfunc_end2-Lfunc_begin0 - .quad Lset27 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc6: -.set Lset28, Lfunc_begin2-Lfunc_begin0 - .quad Lset28 -.set Lset29, Ltmp44-Lfunc_begin0 - .quad Lset29 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset30, Ltmp44-Lfunc_begin0 - .quad Lset30 -.set Lset31, Ltmp74-Lfunc_begin0 - .quad Lset31 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset32, Ltmp76-Lfunc_begin0 - .quad Lset32 -.set Lset33, Lfunc_end2-Lfunc_begin0 - .quad Lset33 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc7: -.set Lset34, Lfunc_begin2-Lfunc_begin0 - .quad Lset34 -.set Lset35, Ltmp44-Lfunc_begin0 - .quad Lset35 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset36, Ltmp44-Lfunc_begin0 - .quad Lset36 -.set Lset37, Ltmp75-Lfunc_begin0 - .quad Lset37 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset38, Ltmp76-Lfunc_begin0 - .quad Lset38 -.set Lset39, Lfunc_end2-Lfunc_begin0 - .quad Lset39 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc8: -.set Lset40, Ltmp47-Lfunc_begin0 - .quad Lset40 -.set Lset41, Lfunc_end2-Lfunc_begin0 - .quad Lset41 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc9: -.set Lset42, Ltmp60-Lfunc_begin0 - .quad Lset42 -.set Lset43, Ltmp69-Lfunc_begin0 - .quad Lset43 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc10: -.set Lset44, Ltmp61-Lfunc_begin0 - .quad Lset44 -.set Lset45, Ltmp71-Lfunc_begin0 - .quad Lset45 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc11: -.set Lset46, Lfunc_begin4-Lfunc_begin0 - .quad Lset46 -.set Lset47, Ltmp81-Lfunc_begin0 - .quad Lset47 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset48, Ltmp81-Lfunc_begin0 - .quad Lset48 -.set Lset49, Ltmp110-Lfunc_begin0 - .quad Lset49 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset50, Ltmp112-Lfunc_begin0 - .quad Lset50 -.set Lset51, Lfunc_end4-Lfunc_begin0 - .quad Lset51 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc12: -.set Lset52, Lfunc_begin4-Lfunc_begin0 - .quad Lset52 -.set Lset53, Ltmp81-Lfunc_begin0 - .quad Lset53 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset54, Ltmp81-Lfunc_begin0 - .quad Lset54 -.set Lset55, Ltmp111-Lfunc_begin0 - .quad Lset55 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset56, Ltmp112-Lfunc_begin0 - .quad Lset56 -.set Lset57, Lfunc_end4-Lfunc_begin0 - .quad Lset57 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc13: -.set Lset58, Lfunc_begin4-Lfunc_begin0 - .quad Lset58 -.set Lset59, Ltmp81-Lfunc_begin0 - .quad Lset59 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset60, Ltmp81-Lfunc_begin0 - .quad Lset60 -.set Lset61, Ltmp87-Lfunc_begin0 - .quad Lset61 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc14: -.set Lset62, Lfunc_begin4-Lfunc_begin0 - .quad Lset62 -.set Lset63, Ltmp81-Lfunc_begin0 - .quad Lset63 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset64, Ltmp81-Lfunc_begin0 - .quad Lset64 -.set Lset65, Ltmp86-Lfunc_begin0 - .quad Lset65 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc15: -.set Lset66, Ltmp92-Lfunc_begin0 - .quad Lset66 -.set Lset67, Ltmp93-Lfunc_begin0 - .quad Lset67 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset68, Ltmp93-Lfunc_begin0 - .quad Lset68 -.set Lset69, Ltmp98-Lfunc_begin0 - .quad Lset69 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset70, Ltmp99-Lfunc_begin0 - .quad Lset70 -.set Lset71, Ltmp103-Lfunc_begin0 - .quad Lset71 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset72, Ltmp103-Lfunc_begin0 - .quad Lset72 -.set Lset73, Ltmp109-Lfunc_begin0 - .quad Lset73 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset74, Ltmp112-Lfunc_begin0 - .quad Lset74 -.set Lset75, Lfunc_end4-Lfunc_begin0 - .quad Lset75 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc16: -.set Lset76, Lfunc_begin5-Lfunc_begin0 - .quad Lset76 -.set Lset77, Ltmp116-Lfunc_begin0 - .quad Lset77 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset78, Ltmp116-Lfunc_begin0 - .quad Lset78 -.set Lset79, Ltmp156-Lfunc_begin0 - .quad Lset79 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset80, Ltmp159-Lfunc_begin0 - .quad Lset80 -.set Lset81, Ltmp161-Lfunc_begin0 - .quad Lset81 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset82, Ltmp164-Lfunc_begin0 - .quad Lset82 -.set Lset83, Lfunc_end5-Lfunc_begin0 - .quad Lset83 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc17: -.set Lset84, Lfunc_begin5-Lfunc_begin0 - .quad Lset84 -.set Lset85, Ltmp117-Lfunc_begin0 - .quad Lset85 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset86, Ltmp117-Lfunc_begin0 - .quad Lset86 -.set Lset87, Ltmp130-Lfunc_begin0 - .quad Lset87 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset88, Ltmp130-Lfunc_begin0 - .quad Lset88 -.set Lset89, Ltmp131-Lfunc_begin0 - .quad Lset89 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset90, Ltmp131-Lfunc_begin0 - .quad Lset90 -.set Lset91, Ltmp137-Lfunc_begin0 - .quad Lset91 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset92, Ltmp137-Lfunc_begin0 - .quad Lset92 -.set Lset93, Ltmp154-Lfunc_begin0 - .quad Lset93 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset94, Ltmp154-Lfunc_begin0 - .quad Lset94 -.set Lset95, Ltmp155-Lfunc_begin0 - .quad Lset95 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset96, Ltmp159-Lfunc_begin0 - .quad Lset96 -.set Lset97, Ltmp160-Lfunc_begin0 - .quad Lset97 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset98, Ltmp164-Lfunc_begin0 - .quad Lset98 -.set Lset99, Ltmp170-Lfunc_begin0 - .quad Lset99 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset100, Ltmp170-Lfunc_begin0 - .quad Lset100 -.set Lset101, Ltmp173-Lfunc_begin0 - .quad Lset101 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset102, Ltmp173-Lfunc_begin0 - .quad Lset102 -.set Lset103, Ltmp174-Lfunc_begin0 - .quad Lset103 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset104, Ltmp174-Lfunc_begin0 - .quad Lset104 -.set Lset105, Lfunc_end5-Lfunc_begin0 - .quad Lset105 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc18: -.set Lset106, Lfunc_begin5-Lfunc_begin0 - .quad Lset106 -.set Lset107, Ltmp115-Lfunc_begin0 - .quad Lset107 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset108, Ltmp115-Lfunc_begin0 - .quad Lset108 -.set Lset109, Ltmp158-Lfunc_begin0 - .quad Lset109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset110, Ltmp159-Lfunc_begin0 - .quad Lset110 -.set Lset111, Ltmp163-Lfunc_begin0 - .quad Lset111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset112, Ltmp164-Lfunc_begin0 - .quad Lset112 -.set Lset113, Lfunc_end5-Lfunc_begin0 - .quad Lset113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc19: -.set Lset114, Lfunc_begin5-Lfunc_begin0 - .quad Lset114 -.set Lset115, Ltmp114-Lfunc_begin0 - .quad Lset115 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset116, Ltmp114-Lfunc_begin0 - .quad Lset116 -.set Lset117, Lfunc_end5-Lfunc_begin0 - .quad Lset117 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc20: -.set Lset118, Lfunc_begin5-Lfunc_begin0 - .quad Lset118 -.set Lset119, Ltmp117-Lfunc_begin0 - .quad Lset119 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset120, Ltmp117-Lfunc_begin0 - .quad Lset120 -.set Lset121, Ltmp121-Lfunc_begin0 - .quad Lset121 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset122, Ltmp131-Lfunc_begin0 - .quad Lset122 -.set Lset123, Ltmp132-Lfunc_begin0 - .quad Lset123 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset124, Ltmp140-Lfunc_begin0 - .quad Lset124 -.set Lset125, Ltmp144-Lfunc_begin0 - .quad Lset125 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset126, Ltmp146-Lfunc_begin0 - .quad Lset126 -.set Lset127, Ltmp153-Lfunc_begin0 - .quad Lset127 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset128, Ltmp164-Lfunc_begin0 - .quad Lset128 -.set Lset129, Ltmp165-Lfunc_begin0 - .quad Lset129 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset130, Ltmp170-Lfunc_begin0 - .quad Lset130 -.set Lset131, Ltmp171-Lfunc_begin0 - .quad Lset131 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc21: -.set Lset132, Ltmp113-Lfunc_begin0 - .quad Lset132 -.set Lset133, Ltmp114-Lfunc_begin0 - .quad Lset133 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset134, Ltmp114-Lfunc_begin0 - .quad Lset134 -.set Lset135, Lfunc_end5-Lfunc_begin0 - .quad Lset135 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc22: -.set Lset136, Ltmp117-Lfunc_begin0 - .quad Lset136 -.set Lset137, Ltmp117-Lfunc_begin0 - .quad Lset137 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset138, Ltmp117-Lfunc_begin0 - .quad Lset138 -.set Lset139, Ltmp157-Lfunc_begin0 - .quad Lset139 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset140, Ltmp159-Lfunc_begin0 - .quad Lset140 -.set Lset141, Ltmp162-Lfunc_begin0 - .quad Lset141 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset142, Ltmp164-Lfunc_begin0 - .quad Lset142 -.set Lset143, Lfunc_end5-Lfunc_begin0 - .quad Lset143 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc23: -.set Lset144, Ltmp129-Lfunc_begin0 - .quad Lset144 -.set Lset145, Ltmp131-Lfunc_begin0 - .quad Lset145 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset146, Ltmp135-Lfunc_begin0 - .quad Lset146 -.set Lset147, Ltmp142-Lfunc_begin0 - .quad Lset147 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset148, Ltmp142-Lfunc_begin0 - .quad Lset148 -.set Lset149, Ltmp144-Lfunc_begin0 - .quad Lset149 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset150, Ltmp144-Lfunc_begin0 - .quad Lset150 -.set Lset151, Ltmp150-Lfunc_begin0 - .quad Lset151 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset152, Ltmp150-Lfunc_begin0 - .quad Lset152 -.set Lset153, Ltmp154-Lfunc_begin0 - .quad Lset153 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset154, Ltmp159-Lfunc_begin0 - .quad Lset154 -.set Lset155, Ltmp160-Lfunc_begin0 - .quad Lset155 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset156, Ltmp164-Lfunc_begin0 - .quad Lset156 -.set Lset157, Ltmp170-Lfunc_begin0 - .quad Lset157 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset158, Ltmp173-Lfunc_begin0 - .quad Lset158 -.set Lset159, Ltmp174-Lfunc_begin0 - .quad Lset159 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset160, Ltmp175-Lfunc_begin0 - .quad Lset160 -.set Lset161, Lfunc_end5-Lfunc_begin0 - .quad Lset161 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc24: -.set Lset162, Ltmp146-Lfunc_begin0 - .quad Lset162 -.set Lset163, Ltmp148-Lfunc_begin0 - .quad Lset163 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset164, Ltmp164-Lfunc_begin0 - .quad Lset164 -.set Lset165, Ltmp165-Lfunc_begin0 - .quad Lset165 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc25: -.set Lset166, Lfunc_begin6-Lfunc_begin0 - .quad Lset166 -.set Lset167, Ltmp180-Lfunc_begin0 - .quad Lset167 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset168, Ltmp180-Lfunc_begin0 - .quad Lset168 -.set Lset169, Lfunc_end6-Lfunc_begin0 - .quad Lset169 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc26: -.set Lset170, Lfunc_begin6-Lfunc_begin0 - .quad Lset170 -.set Lset171, Ltmp181-Lfunc_begin0 - .quad Lset171 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset172, Ltmp181-Lfunc_begin0 - .quad Lset172 -.set Lset173, Ltmp194-Lfunc_begin0 - .quad Lset173 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset174, Ltmp194-Lfunc_begin0 - .quad Lset174 -.set Lset175, Ltmp201-Lfunc_begin0 - .quad Lset175 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset176, Ltmp201-Lfunc_begin0 - .quad Lset176 -.set Lset177, Ltmp206-Lfunc_begin0 - .quad Lset177 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset178, Ltmp206-Lfunc_begin0 - .quad Lset178 -.set Lset179, Ltmp214-Lfunc_begin0 - .quad Lset179 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset180, Ltmp214-Lfunc_begin0 - .quad Lset180 -.set Lset181, Ltmp216-Lfunc_begin0 - .quad Lset181 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset182, Ltmp217-Lfunc_begin0 - .quad Lset182 -.set Lset183, Ltmp230-Lfunc_begin0 - .quad Lset183 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset184, Ltmp230-Lfunc_begin0 - .quad Lset184 -.set Lset185, Ltmp231-Lfunc_begin0 - .quad Lset185 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset186, Ltmp234-Lfunc_begin0 - .quad Lset186 -.set Lset187, Ltmp245-Lfunc_begin0 - .quad Lset187 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset188, Ltmp251-Lfunc_begin0 - .quad Lset188 -.set Lset189, Ltmp254-Lfunc_begin0 - .quad Lset189 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset190, Ltmp254-Lfunc_begin0 - .quad Lset190 -.set Lset191, Ltmp255-Lfunc_begin0 - .quad Lset191 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset192, Ltmp255-Lfunc_begin0 - .quad Lset192 -.set Lset193, Ltmp257-Lfunc_begin0 - .quad Lset193 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset194, Ltmp257-Lfunc_begin0 - .quad Lset194 -.set Lset195, Lfunc_end6-Lfunc_begin0 - .quad Lset195 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc27: -.set Lset196, Lfunc_begin6-Lfunc_begin0 - .quad Lset196 -.set Lset197, Ltmp179-Lfunc_begin0 - .quad Lset197 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset198, Ltmp179-Lfunc_begin0 - .quad Lset198 -.set Lset199, Lfunc_end6-Lfunc_begin0 - .quad Lset199 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc28: -.set Lset200, Lfunc_begin6-Lfunc_begin0 - .quad Lset200 -.set Lset201, Ltmp178-Lfunc_begin0 - .quad Lset201 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset202, Ltmp178-Lfunc_begin0 - .quad Lset202 -.set Lset203, Lfunc_end6-Lfunc_begin0 - .quad Lset203 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc29: -.set Lset204, Lfunc_begin6-Lfunc_begin0 - .quad Lset204 -.set Lset205, Ltmp181-Lfunc_begin0 - .quad Lset205 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset206, Ltmp181-Lfunc_begin0 - .quad Lset206 -.set Lset207, Ltmp233-Lfunc_begin0 - .quad Lset207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset208, Ltmp234-Lfunc_begin0 - .quad Lset208 -.set Lset209, Ltmp247-Lfunc_begin0 - .quad Lset209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset210, Ltmp248-Lfunc_begin0 - .quad Lset210 -.set Lset211, Ltmp250-Lfunc_begin0 - .quad Lset211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset212, Ltmp251-Lfunc_begin0 - .quad Lset212 -.set Lset213, Lfunc_end6-Lfunc_begin0 - .quad Lset213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc30: -.set Lset214, Ltmp177-Lfunc_begin0 - .quad Lset214 -.set Lset215, Ltmp178-Lfunc_begin0 - .quad Lset215 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset216, Ltmp178-Lfunc_begin0 - .quad Lset216 -.set Lset217, Lfunc_end6-Lfunc_begin0 - .quad Lset217 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc31: -.set Lset218, Ltmp177-Lfunc_begin0 - .quad Lset218 -.set Lset219, Ltmp178-Lfunc_begin0 - .quad Lset219 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset220, Ltmp178-Lfunc_begin0 - .quad Lset220 -.set Lset221, Lfunc_end6-Lfunc_begin0 - .quad Lset221 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc32: -.set Lset222, Ltmp181-Lfunc_begin0 - .quad Lset222 -.set Lset223, Ltmp181-Lfunc_begin0 - .quad Lset223 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset224, Ltmp181-Lfunc_begin0 - .quad Lset224 -.set Lset225, Ltmp232-Lfunc_begin0 - .quad Lset225 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset226, Ltmp234-Lfunc_begin0 - .quad Lset226 -.set Lset227, Ltmp246-Lfunc_begin0 - .quad Lset227 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset228, Ltmp248-Lfunc_begin0 - .quad Lset228 -.set Lset229, Ltmp249-Lfunc_begin0 - .quad Lset229 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset230, Ltmp251-Lfunc_begin0 - .quad Lset230 -.set Lset231, Lfunc_end6-Lfunc_begin0 - .quad Lset231 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc33: -.set Lset232, Ltmp192-Lfunc_begin0 - .quad Lset232 -.set Lset233, Ltmp199-Lfunc_begin0 - .quad Lset233 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset234, Ltmp199-Lfunc_begin0 - .quad Lset234 -.set Lset235, Ltmp201-Lfunc_begin0 - .quad Lset235 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset236, Ltmp203-Lfunc_begin0 - .quad Lset236 -.set Lset237, Ltmp212-Lfunc_begin0 - .quad Lset237 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset238, Ltmp230-Lfunc_begin0 - .quad Lset238 -.set Lset239, Ltmp231-Lfunc_begin0 - .quad Lset239 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset240, Ltmp234-Lfunc_begin0 - .quad Lset240 -.set Lset241, Ltmp245-Lfunc_begin0 - .quad Lset241 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset242, Ltmp254-Lfunc_begin0 - .quad Lset242 -.set Lset243, Ltmp256-Lfunc_begin0 - .quad Lset243 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset244, Ltmp257-Lfunc_begin0 - .quad Lset244 -.set Lset245, Lfunc_end6-Lfunc_begin0 - .quad Lset245 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc34: -.set Lset246, Ltmp210-Lfunc_begin0 - .quad Lset246 -.set Lset247, Ltmp212-Lfunc_begin0 - .quad Lset247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset248, Ltmp234-Lfunc_begin0 - .quad Lset248 -.set Lset249, Ltmp239-Lfunc_begin0 - .quad Lset249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset250, Ltmp257-Lfunc_begin0 - .quad Lset250 -.set Lset251, Ltmp258-Lfunc_begin0 - .quad Lset251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc35: -.set Lset252, Ltmp222-Lfunc_begin0 - .quad Lset252 -.set Lset253, Ltmp226-Lfunc_begin0 - .quad Lset253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset254, Ltmp256-Lfunc_begin0 - .quad Lset254 -.set Lset255, Ltmp257-Lfunc_begin0 - .quad Lset255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc36: -.set Lset256, Lfunc_begin7-Lfunc_begin0 - .quad Lset256 -.set Lset257, Ltmp263-Lfunc_begin0 - .quad Lset257 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset258, Ltmp263-Lfunc_begin0 - .quad Lset258 -.set Lset259, Ltmp286-Lfunc_begin0 - .quad Lset259 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset260, Ltmp288-Lfunc_begin0 - .quad Lset260 -.set Lset261, Ltmp320-Lfunc_begin0 - .quad Lset261 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset262, Ltmp322-Lfunc_begin0 - .quad Lset262 -.set Lset263, Lfunc_end7-Lfunc_begin0 - .quad Lset263 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc37: -.set Lset264, Lfunc_begin7-Lfunc_begin0 - .quad Lset264 -.set Lset265, Ltmp263-Lfunc_begin0 - .quad Lset265 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset266, Ltmp263-Lfunc_begin0 - .quad Lset266 -.set Lset267, Ltmp284-Lfunc_begin0 - .quad Lset267 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset268, Ltmp288-Lfunc_begin0 - .quad Lset268 -.set Lset269, Ltmp318-Lfunc_begin0 - .quad Lset269 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset270, Ltmp322-Lfunc_begin0 - .quad Lset270 -.set Lset271, Lfunc_end7-Lfunc_begin0 - .quad Lset271 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc38: -.set Lset272, Lfunc_begin7-Lfunc_begin0 - .quad Lset272 -.set Lset273, Ltmp263-Lfunc_begin0 - .quad Lset273 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset274, Ltmp263-Lfunc_begin0 - .quad Lset274 -.set Lset275, Ltmp285-Lfunc_begin0 - .quad Lset275 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset276, Ltmp288-Lfunc_begin0 - .quad Lset276 -.set Lset277, Ltmp319-Lfunc_begin0 - .quad Lset277 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset278, Ltmp322-Lfunc_begin0 - .quad Lset278 -.set Lset279, Lfunc_end7-Lfunc_begin0 - .quad Lset279 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc39: -.set Lset280, Lfunc_begin7-Lfunc_begin0 - .quad Lset280 -.set Lset281, Ltmp263-Lfunc_begin0 - .quad Lset281 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset282, Ltmp263-Lfunc_begin0 - .quad Lset282 -.set Lset283, Ltmp287-Lfunc_begin0 - .quad Lset283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset284, Ltmp288-Lfunc_begin0 - .quad Lset284 -.set Lset285, Ltmp321-Lfunc_begin0 - .quad Lset285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset286, Ltmp322-Lfunc_begin0 - .quad Lset286 -.set Lset287, Lfunc_end7-Lfunc_begin0 - .quad Lset287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc40: -.set Lset288, Ltmp261-Lfunc_begin0 - .quad Lset288 -.set Lset289, Ltmp262-Lfunc_begin0 - .quad Lset289 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset290, Ltmp262-Lfunc_begin0 - .quad Lset290 -.set Lset291, Ltmp265-Lfunc_begin0 - .quad Lset291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc41: -.set Lset292, Ltmp261-Lfunc_begin0 - .quad Lset292 -.set Lset293, Ltmp262-Lfunc_begin0 - .quad Lset293 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset294, Ltmp262-Lfunc_begin0 - .quad Lset294 -.set Lset295, Ltmp265-Lfunc_begin0 - .quad Lset295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc42: -.set Lset296, Ltmp261-Lfunc_begin0 - .quad Lset296 -.set Lset297, Ltmp262-Lfunc_begin0 - .quad Lset297 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset298, Ltmp262-Lfunc_begin0 - .quad Lset298 -.set Lset299, Ltmp265-Lfunc_begin0 - .quad Lset299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc43: -.set Lset300, Ltmp269-Lfunc_begin0 - .quad Lset300 -.set Lset301, Ltmp274-Lfunc_begin0 - .quad Lset301 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset302, Ltmp312-Lfunc_begin0 - .quad Lset302 -.set Lset303, Ltmp313-Lfunc_begin0 - .quad Lset303 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc44: -.set Lset304, Ltmp269-Lfunc_begin0 - .quad Lset304 -.set Lset305, Ltmp274-Lfunc_begin0 - .quad Lset305 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset306, Ltmp312-Lfunc_begin0 - .quad Lset306 -.set Lset307, Ltmp313-Lfunc_begin0 - .quad Lset307 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc45: -.set Lset308, Ltmp272-Lfunc_begin0 - .quad Lset308 -.set Lset309, Ltmp274-Lfunc_begin0 - .quad Lset309 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset310, Ltmp276-Lfunc_begin0 - .quad Lset310 -.set Lset311, Ltmp279-Lfunc_begin0 - .quad Lset311 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset312, Ltmp313-Lfunc_begin0 - .quad Lset312 -.set Lset313, Ltmp316-Lfunc_begin0 - .quad Lset313 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc46: -.set Lset314, Ltmp272-Lfunc_begin0 - .quad Lset314 -.set Lset315, Ltmp274-Lfunc_begin0 - .quad Lset315 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset316, Ltmp276-Lfunc_begin0 - .quad Lset316 -.set Lset317, Ltmp279-Lfunc_begin0 - .quad Lset317 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset318, Ltmp313-Lfunc_begin0 - .quad Lset318 -.set Lset319, Ltmp315-Lfunc_begin0 - .quad Lset319 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc47: -.set Lset320, Ltmp292-Lfunc_begin0 - .quad Lset320 -.set Lset321, Ltmp298-Lfunc_begin0 - .quad Lset321 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc48: -.set Lset322, Ltmp294-Lfunc_begin0 - .quad Lset322 -.set Lset323, Ltmp297-Lfunc_begin0 - .quad Lset323 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc49: -.set Lset324, Ltmp298-Lfunc_begin0 - .quad Lset324 -.set Lset325, Ltmp299-Lfunc_begin0 - .quad Lset325 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc50: -.set Lset326, Ltmp304-Lfunc_begin0 - .quad Lset326 -.set Lset327, Ltmp310-Lfunc_begin0 - .quad Lset327 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc51: -.set Lset328, Ltmp306-Lfunc_begin0 - .quad Lset328 -.set Lset329, Ltmp309-Lfunc_begin0 - .quad Lset329 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc52: -.set Lset330, Ltmp310-Lfunc_begin0 - .quad Lset330 -.set Lset331, Ltmp311-Lfunc_begin0 - .quad Lset331 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc53: -.set Lset332, Lfunc_begin8-Lfunc_begin0 - .quad Lset332 -.set Lset333, Ltmp329-Lfunc_begin0 - .quad Lset333 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset334, Ltmp329-Lfunc_begin0 - .quad Lset334 -.set Lset335, Ltmp344-Lfunc_begin0 - .quad Lset335 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset336, Ltmp346-Lfunc_begin0 - .quad Lset336 -.set Lset337, Ltmp363-Lfunc_begin0 - .quad Lset337 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset338, Ltmp365-Lfunc_begin0 - .quad Lset338 -.set Lset339, Ltmp422-Lfunc_begin0 - .quad Lset339 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset340, Ltmp424-Lfunc_begin0 - .quad Lset340 -.set Lset341, Ltmp427-Lfunc_begin0 - .quad Lset341 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset342, Ltmp429-Lfunc_begin0 - .quad Lset342 -.set Lset343, Ltmp433-Lfunc_begin0 - .quad Lset343 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset344, Ltmp435-Lfunc_begin0 - .quad Lset344 -.set Lset345, Lfunc_end8-Lfunc_begin0 - .quad Lset345 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc54: -.set Lset346, Lfunc_begin8-Lfunc_begin0 - .quad Lset346 -.set Lset347, Ltmp329-Lfunc_begin0 - .quad Lset347 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset348, Ltmp329-Lfunc_begin0 - .quad Lset348 -.set Lset349, Ltmp342-Lfunc_begin0 - .quad Lset349 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset350, Ltmp346-Lfunc_begin0 - .quad Lset350 -.set Lset351, Ltmp361-Lfunc_begin0 - .quad Lset351 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset352, Ltmp365-Lfunc_begin0 - .quad Lset352 -.set Lset353, Ltmp367-Lfunc_begin0 - .quad Lset353 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset354, Ltmp377-Lfunc_begin0 - .quad Lset354 -.set Lset355, Ltmp379-Lfunc_begin0 - .quad Lset355 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset356, Ltmp389-Lfunc_begin0 - .quad Lset356 -.set Lset357, Ltmp392-Lfunc_begin0 - .quad Lset357 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset358, Ltmp436-Lfunc_begin0 - .quad Lset358 -.set Lset359, Ltmp438-Lfunc_begin0 - .quad Lset359 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc55: -.set Lset360, Lfunc_begin8-Lfunc_begin0 - .quad Lset360 -.set Lset361, Ltmp329-Lfunc_begin0 - .quad Lset361 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset362, Ltmp329-Lfunc_begin0 - .quad Lset362 -.set Lset363, Ltmp343-Lfunc_begin0 - .quad Lset363 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset364, Ltmp346-Lfunc_begin0 - .quad Lset364 -.set Lset365, Ltmp362-Lfunc_begin0 - .quad Lset365 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset366, Ltmp365-Lfunc_begin0 - .quad Lset366 -.set Lset367, Ltmp421-Lfunc_begin0 - .quad Lset367 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset368, Ltmp424-Lfunc_begin0 - .quad Lset368 -.set Lset369, Ltmp426-Lfunc_begin0 - .quad Lset369 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset370, Ltmp429-Lfunc_begin0 - .quad Lset370 -.set Lset371, Ltmp432-Lfunc_begin0 - .quad Lset371 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset372, Ltmp435-Lfunc_begin0 - .quad Lset372 -.set Lset373, Lfunc_end8-Lfunc_begin0 - .quad Lset373 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc56: -.set Lset374, Lfunc_begin8-Lfunc_begin0 - .quad Lset374 -.set Lset375, Ltmp329-Lfunc_begin0 - .quad Lset375 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset376, Ltmp329-Lfunc_begin0 - .quad Lset376 -.set Lset377, Ltmp345-Lfunc_begin0 - .quad Lset377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset378, Ltmp346-Lfunc_begin0 - .quad Lset378 -.set Lset379, Ltmp364-Lfunc_begin0 - .quad Lset379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset380, Ltmp365-Lfunc_begin0 - .quad Lset380 -.set Lset381, Ltmp423-Lfunc_begin0 - .quad Lset381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset382, Ltmp424-Lfunc_begin0 - .quad Lset382 -.set Lset383, Ltmp428-Lfunc_begin0 - .quad Lset383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset384, Ltmp429-Lfunc_begin0 - .quad Lset384 -.set Lset385, Ltmp434-Lfunc_begin0 - .quad Lset385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset386, Ltmp435-Lfunc_begin0 - .quad Lset386 -.set Lset387, Lfunc_end8-Lfunc_begin0 - .quad Lset387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc57: -.set Lset388, Ltmp327-Lfunc_begin0 - .quad Lset388 -.set Lset389, Ltmp328-Lfunc_begin0 - .quad Lset389 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset390, Ltmp328-Lfunc_begin0 - .quad Lset390 -.set Lset391, Ltmp331-Lfunc_begin0 - .quad Lset391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc58: -.set Lset392, Ltmp327-Lfunc_begin0 - .quad Lset392 -.set Lset393, Ltmp328-Lfunc_begin0 - .quad Lset393 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset394, Ltmp328-Lfunc_begin0 - .quad Lset394 -.set Lset395, Ltmp331-Lfunc_begin0 - .quad Lset395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc59: -.set Lset396, Ltmp335-Lfunc_begin0 - .quad Lset396 -.set Lset397, Ltmp340-Lfunc_begin0 - .quad Lset397 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset398, Ltmp389-Lfunc_begin0 - .quad Lset398 -.set Lset399, Ltmp390-Lfunc_begin0 - .quad Lset399 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc60: -.set Lset400, Ltmp335-Lfunc_begin0 - .quad Lset400 -.set Lset401, Ltmp340-Lfunc_begin0 - .quad Lset401 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset402, Ltmp389-Lfunc_begin0 - .quad Lset402 -.set Lset403, Ltmp390-Lfunc_begin0 - .quad Lset403 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc61: -.set Lset404, Ltmp338-Lfunc_begin0 - .quad Lset404 -.set Lset405, Ltmp341-Lfunc_begin0 - .quad Lset405 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset406, Ltmp348-Lfunc_begin0 - .quad Lset406 -.set Lset407, Ltmp352-Lfunc_begin0 - .quad Lset407 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset408, Ltmp390-Lfunc_begin0 - .quad Lset408 -.set Lset409, Ltmp391-Lfunc_begin0 - .quad Lset409 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc62: -.set Lset410, Ltmp338-Lfunc_begin0 - .quad Lset410 -.set Lset411, Ltmp340-Lfunc_begin0 - .quad Lset411 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset412, Ltmp348-Lfunc_begin0 - .quad Lset412 -.set Lset413, Ltmp352-Lfunc_begin0 - .quad Lset413 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset414, Ltmp390-Lfunc_begin0 - .quad Lset414 -.set Lset415, Ltmp391-Lfunc_begin0 - .quad Lset415 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc63: -.set Lset416, Ltmp367-Lfunc_begin0 - .quad Lset416 -.set Lset417, Ltmp377-Lfunc_begin0 - .quad Lset417 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset418, Ltmp392-Lfunc_begin0 - .quad Lset418 -.set Lset419, Ltmp408-Lfunc_begin0 - .quad Lset419 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset420, Ltmp418-Lfunc_begin0 - .quad Lset420 -.set Lset421, Ltmp420-Lfunc_begin0 - .quad Lset421 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset422, Ltmp440-Lfunc_begin0 - .quad Lset422 -.set Lset423, Ltmp441-Lfunc_begin0 - .quad Lset423 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc64: -.set Lset424, Ltmp374-Lfunc_begin0 - .quad Lset424 -.set Lset425, Ltmp377-Lfunc_begin0 - .quad Lset425 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc65: -.set Lset426, Ltmp379-Lfunc_begin0 - .quad Lset426 -.set Lset427, Ltmp387-Lfunc_begin0 - .quad Lset427 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset428, Ltmp408-Lfunc_begin0 - .quad Lset428 -.set Lset429, Ltmp416-Lfunc_begin0 - .quad Lset429 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset430, Ltmp424-Lfunc_begin0 - .quad Lset430 -.set Lset431, Ltmp425-Lfunc_begin0 - .quad Lset431 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset432, Ltmp429-Lfunc_begin0 - .quad Lset432 -.set Lset433, Ltmp431-Lfunc_begin0 - .quad Lset433 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset434, Ltmp441-Lfunc_begin0 - .quad Lset434 -.set Lset435, Lfunc_end8-Lfunc_begin0 - .quad Lset435 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc66: -.set Lset436, Ltmp385-Lfunc_begin0 - .quad Lset436 -.set Lset437, Ltmp387-Lfunc_begin0 - .quad Lset437 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset438, Ltmp424-Lfunc_begin0 - .quad Lset438 -.set Lset439, Ltmp429-Lfunc_begin0 - .quad Lset439 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc67: -.set Lset440, Ltmp388-Lfunc_begin0 - .quad Lset440 -.set Lset441, Ltmp389-Lfunc_begin0 - .quad Lset441 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc68: -.set Lset442, Ltmp393-Lfunc_begin0 - .quad Lset442 -.set Lset443, Ltmp396-Lfunc_begin0 - .quad Lset443 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset444, Ltmp418-Lfunc_begin0 - .quad Lset444 -.set Lset445, Ltmp419-Lfunc_begin0 - .quad Lset445 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc69: -.set Lset446, Ltmp396-Lfunc_begin0 - .quad Lset446 -.set Lset447, Ltmp397-Lfunc_begin0 - .quad Lset447 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc70: -.set Lset448, Ltmp397-Lfunc_begin0 - .quad Lset448 -.set Lset449, Ltmp398-Lfunc_begin0 - .quad Lset449 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset450, Ltmp398-Lfunc_begin0 - .quad Lset450 -.set Lset451, Ltmp406-Lfunc_begin0 - .quad Lset451 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 -.set Lset452, Ltmp406-Lfunc_begin0 - .quad Lset452 -.set Lset453, Ltmp407-Lfunc_begin0 - .quad Lset453 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset454, Ltmp440-Lfunc_begin0 - .quad Lset454 -.set Lset455, Lfunc_end8-Lfunc_begin0 - .quad Lset455 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc71: -.set Lset456, Ltmp403-Lfunc_begin0 - .quad Lset456 -.set Lset457, Ltmp407-Lfunc_begin0 - .quad Lset457 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc72: -.set Lset458, Ltmp408-Lfunc_begin0 - .quad Lset458 -.set Lset459, Ltmp409-Lfunc_begin0 - .quad Lset459 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset460, Ltmp409-Lfunc_begin0 - .quad Lset460 -.set Lset461, Ltmp430-Lfunc_begin0 - .quad Lset461 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 -.set Lset462, Ltmp430-Lfunc_begin0 - .quad Lset462 -.set Lset463, Ltmp431-Lfunc_begin0 - .quad Lset463 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset464, Ltmp441-Lfunc_begin0 - .quad Lset464 -.set Lset465, Lfunc_end8-Lfunc_begin0 - .quad Lset465 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc73: -.set Lset466, Ltmp414-Lfunc_begin0 - .quad Lset466 -.set Lset467, Ltmp416-Lfunc_begin0 - .quad Lset467 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset468, Ltmp429-Lfunc_begin0 - .quad Lset468 -.set Lset469, Ltmp431-Lfunc_begin0 - .quad Lset469 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc74: -.set Lset470, Ltmp417-Lfunc_begin0 - .quad Lset470 -.set Lset471, Ltmp418-Lfunc_begin0 - .quad Lset471 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc75: -.set Lset472, Lfunc_begin9-Lfunc_begin0 - .quad Lset472 -.set Lset473, Ltmp444-Lfunc_begin0 - .quad Lset473 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset474, Ltmp444-Lfunc_begin0 - .quad Lset474 -.set Lset475, Ltmp450-Lfunc_begin0 - .quad Lset475 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset476, Ltmp452-Lfunc_begin0 - .quad Lset476 -.set Lset477, Ltmp455-Lfunc_begin0 - .quad Lset477 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset478, Ltmp465-Lfunc_begin0 - .quad Lset478 -.set Lset479, Ltmp468-Lfunc_begin0 - .quad Lset479 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset480, Ltmp489-Lfunc_begin0 - .quad Lset480 -.set Lset481, Ltmp490-Lfunc_begin0 - .quad Lset481 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc76: -.set Lset482, Lfunc_begin9-Lfunc_begin0 - .quad Lset482 -.set Lset483, Ltmp444-Lfunc_begin0 - .quad Lset483 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset484, Ltmp444-Lfunc_begin0 - .quad Lset484 -.set Lset485, Ltmp449-Lfunc_begin0 - .quad Lset485 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset486, Ltmp452-Lfunc_begin0 - .quad Lset486 -.set Lset487, Ltmp458-Lfunc_begin0 - .quad Lset487 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset488, Ltmp465-Lfunc_begin0 - .quad Lset488 -.set Lset489, Ltmp468-Lfunc_begin0 - .quad Lset489 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset490, Ltmp489-Lfunc_begin0 - .quad Lset490 -.set Lset491, Ltmp491-Lfunc_begin0 - .quad Lset491 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc77: -.set Lset492, Lfunc_begin9-Lfunc_begin0 - .quad Lset492 -.set Lset493, Ltmp444-Lfunc_begin0 - .quad Lset493 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset494, Ltmp444-Lfunc_begin0 - .quad Lset494 -.set Lset495, Ltmp451-Lfunc_begin0 - .quad Lset495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset496, Ltmp452-Lfunc_begin0 - .quad Lset496 -.set Lset497, Ltmp461-Lfunc_begin0 - .quad Lset497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset498, Ltmp465-Lfunc_begin0 - .quad Lset498 -.set Lset499, Ltmp468-Lfunc_begin0 - .quad Lset499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset500, Ltmp469-Lfunc_begin0 - .quad Lset500 -.set Lset501, Ltmp470-Lfunc_begin0 - .quad Lset501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset502, Ltmp489-Lfunc_begin0 - .quad Lset502 -.set Lset503, Lfunc_end9-Lfunc_begin0 - .quad Lset503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc78: -.set Lset504, Ltmp455-Lfunc_begin0 - .quad Lset504 -.set Lset505, Ltmp462-Lfunc_begin0 - .quad Lset505 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset506, Ltmp469-Lfunc_begin0 - .quad Lset506 -.set Lset507, Ltmp471-Lfunc_begin0 - .quad Lset507 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc79: -.set Lset508, Ltmp457-Lfunc_begin0 - .quad Lset508 -.set Lset509, Ltmp465-Lfunc_begin0 - .quad Lset509 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset510, Ltmp469-Lfunc_begin0 - .quad Lset510 -.set Lset511, Ltmp474-Lfunc_begin0 - .quad Lset511 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset512, Ltmp479-Lfunc_begin0 - .quad Lset512 -.set Lset513, Ltmp480-Lfunc_begin0 - .quad Lset513 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc80: -.set Lset514, Ltmp462-Lfunc_begin0 - .quad Lset514 -.set Lset515, Ltmp465-Lfunc_begin0 - .quad Lset515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset516, Ltmp471-Lfunc_begin0 - .quad Lset516 -.set Lset517, Ltmp488-Lfunc_begin0 - .quad Lset517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc81: -.set Lset518, Ltmp462-Lfunc_begin0 - .quad Lset518 -.set Lset519, Ltmp465-Lfunc_begin0 - .quad Lset519 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset520, Ltmp471-Lfunc_begin0 - .quad Lset520 -.set Lset521, Ltmp488-Lfunc_begin0 - .quad Lset521 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc82: -.set Lset522, Ltmp463-Lfunc_begin0 - .quad Lset522 -.set Lset523, Ltmp465-Lfunc_begin0 - .quad Lset523 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset524, Ltmp472-Lfunc_begin0 - .quad Lset524 -.set Lset525, Ltmp488-Lfunc_begin0 - .quad Lset525 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc83: -.set Lset526, Ltmp466-Lfunc_begin0 - .quad Lset526 -.set Lset527, Ltmp468-Lfunc_begin0 - .quad Lset527 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset528, Ltmp489-Lfunc_begin0 - .quad Lset528 -.set Lset529, Ltmp490-Lfunc_begin0 - .quad Lset529 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc84: -.set Lset530, Ltmp474-Lfunc_begin0 - .quad Lset530 -.set Lset531, Ltmp475-Lfunc_begin0 - .quad Lset531 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset532, Ltmp475-Lfunc_begin0 - .quad Lset532 -.set Lset533, Ltmp479-Lfunc_begin0 - .quad Lset533 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset534, Ltmp483-Lfunc_begin0 - .quad Lset534 -.set Lset535, Ltmp488-Lfunc_begin0 - .quad Lset535 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc85: -.set Lset536, Ltmp474-Lfunc_begin0 - .quad Lset536 -.set Lset537, Ltmp488-Lfunc_begin0 - .quad Lset537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc86: -.set Lset538, Ltmp480-Lfunc_begin0 - .quad Lset538 -.set Lset539, Ltmp483-Lfunc_begin0 - .quad Lset539 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc87: -.set Lset540, Lfunc_begin10-Lfunc_begin0 - .quad Lset540 -.set Lset541, Ltmp549-Lfunc_begin0 - .quad Lset541 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset542, Ltmp551-Lfunc_begin0 - .quad Lset542 -.set Lset543, Ltmp552-Lfunc_begin0 - .quad Lset543 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset544, Ltmp554-Lfunc_begin0 - .quad Lset544 -.set Lset545, Ltmp555-Lfunc_begin0 - .quad Lset545 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset546, Ltmp558-Lfunc_begin0 - .quad Lset546 -.set Lset547, Ltmp559-Lfunc_begin0 - .quad Lset547 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc88: -.set Lset548, Lfunc_begin10-Lfunc_begin0 - .quad Lset548 -.set Lset549, Ltmp550-Lfunc_begin0 - .quad Lset549 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset550, Ltmp551-Lfunc_begin0 - .quad Lset550 -.set Lset551, Ltmp553-Lfunc_begin0 - .quad Lset551 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset552, Ltmp554-Lfunc_begin0 - .quad Lset552 -.set Lset553, Ltmp556-Lfunc_begin0 - .quad Lset553 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset554, Ltmp558-Lfunc_begin0 - .quad Lset554 -.set Lset555, Ltmp560-Lfunc_begin0 - .quad Lset555 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc89: -.set Lset556, Ltmp497-Lfunc_begin0 - .quad Lset556 -.set Lset557, Ltmp501-Lfunc_begin0 - .quad Lset557 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset558, Ltmp507-Lfunc_begin0 - .quad Lset558 -.set Lset559, Ltmp513-Lfunc_begin0 - .quad Lset559 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset560, Ltmp522-Lfunc_begin0 - .quad Lset560 -.set Lset561, Ltmp528-Lfunc_begin0 - .quad Lset561 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset562, Ltmp554-Lfunc_begin0 - .quad Lset562 -.set Lset563, Ltmp557-Lfunc_begin0 - .quad Lset563 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc90: -.set Lset564, Ltmp497-Lfunc_begin0 - .quad Lset564 -.set Lset565, Ltmp498-Lfunc_begin0 - .quad Lset565 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc91: -.set Lset566, Ltmp503-Lfunc_begin0 - .quad Lset566 -.set Lset567, Ltmp507-Lfunc_begin0 - .quad Lset567 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset568, Ltmp513-Lfunc_begin0 - .quad Lset568 -.set Lset569, Ltmp522-Lfunc_begin0 - .quad Lset569 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset570, Ltmp530-Lfunc_begin0 - .quad Lset570 -.set Lset571, Ltmp541-Lfunc_begin0 - .quad Lset571 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset572, Ltmp544-Lfunc_begin0 - .quad Lset572 -.set Lset573, Ltmp548-Lfunc_begin0 - .quad Lset573 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset574, Ltmp558-Lfunc_begin0 - .quad Lset574 -.set Lset575, Ltmp561-Lfunc_begin0 - .quad Lset575 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc92: -.set Lset576, Ltmp503-Lfunc_begin0 - .quad Lset576 -.set Lset577, Ltmp505-Lfunc_begin0 - .quad Lset577 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc93: -.set Lset578, Ltmp509-Lfunc_begin0 - .quad Lset578 -.set Lset579, Ltmp513-Lfunc_begin0 - .quad Lset579 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset580, Ltmp522-Lfunc_begin0 - .quad Lset580 -.set Lset581, Ltmp528-Lfunc_begin0 - .quad Lset581 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc94: -.set Lset582, Ltmp517-Lfunc_begin0 - .quad Lset582 -.set Lset583, Ltmp522-Lfunc_begin0 - .quad Lset583 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset584, Ltmp533-Lfunc_begin0 - .quad Lset584 -.set Lset585, Ltmp538-Lfunc_begin0 - .quad Lset585 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset586, Ltmp544-Lfunc_begin0 - .quad Lset586 -.set Lset587, Ltmp545-Lfunc_begin0 - .quad Lset587 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc95: -.set Lset588, Lfunc_begin11-Lfunc_begin0 - .quad Lset588 -.set Lset589, Ltmp562-Lfunc_begin0 - .quad Lset589 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset590, Ltmp562-Lfunc_begin0 - .quad Lset590 -.set Lset591, Ltmp569-Lfunc_begin0 - .quad Lset591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset592, Ltmp570-Lfunc_begin0 - .quad Lset592 -.set Lset593, Ltmp573-Lfunc_begin0 - .quad Lset593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset594, Ltmp583-Lfunc_begin0 - .quad Lset594 -.set Lset595, Ltmp594-Lfunc_begin0 - .quad Lset595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset596, Ltmp617-Lfunc_begin0 - .quad Lset596 -.set Lset597, Ltmp618-Lfunc_begin0 - .quad Lset597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc96: -.set Lset598, Lfunc_begin11-Lfunc_begin0 - .quad Lset598 -.set Lset599, Ltmp562-Lfunc_begin0 - .quad Lset599 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset600, Ltmp562-Lfunc_begin0 - .quad Lset600 -.set Lset601, Ltmp567-Lfunc_begin0 - .quad Lset601 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset602, Ltmp570-Lfunc_begin0 - .quad Lset602 -.set Lset603, Ltmp576-Lfunc_begin0 - .quad Lset603 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset604, Ltmp583-Lfunc_begin0 - .quad Lset604 -.set Lset605, Ltmp594-Lfunc_begin0 - .quad Lset605 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset606, Ltmp617-Lfunc_begin0 - .quad Lset606 -.set Lset607, Ltmp619-Lfunc_begin0 - .quad Lset607 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc97: -.set Lset608, Lfunc_begin11-Lfunc_begin0 - .quad Lset608 -.set Lset609, Ltmp562-Lfunc_begin0 - .quad Lset609 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset610, Ltmp562-Lfunc_begin0 - .quad Lset610 -.set Lset611, Ltmp568-Lfunc_begin0 - .quad Lset611 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset612, Ltmp570-Lfunc_begin0 - .quad Lset612 -.set Lset613, Ltmp579-Lfunc_begin0 - .quad Lset613 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset614, Ltmp583-Lfunc_begin0 - .quad Lset614 -.set Lset615, Ltmp595-Lfunc_begin0 - .quad Lset615 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset616, Ltmp617-Lfunc_begin0 - .quad Lset616 -.set Lset617, Lfunc_end11-Lfunc_begin0 - .quad Lset617 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc98: -.set Lset618, Ltmp573-Lfunc_begin0 - .quad Lset618 -.set Lset619, Ltmp580-Lfunc_begin0 - .quad Lset619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset620, Ltmp594-Lfunc_begin0 - .quad Lset620 -.set Lset621, Ltmp596-Lfunc_begin0 - .quad Lset621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc99: -.set Lset622, Ltmp575-Lfunc_begin0 - .quad Lset622 -.set Lset623, Ltmp583-Lfunc_begin0 - .quad Lset623 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset624, Ltmp594-Lfunc_begin0 - .quad Lset624 -.set Lset625, Ltmp599-Lfunc_begin0 - .quad Lset625 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset626, Ltmp604-Lfunc_begin0 - .quad Lset626 -.set Lset627, Ltmp605-Lfunc_begin0 - .quad Lset627 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc100: -.set Lset628, Ltmp580-Lfunc_begin0 - .quad Lset628 -.set Lset629, Ltmp583-Lfunc_begin0 - .quad Lset629 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset630, Ltmp596-Lfunc_begin0 - .quad Lset630 -.set Lset631, Ltmp615-Lfunc_begin0 - .quad Lset631 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc101: -.set Lset632, Ltmp580-Lfunc_begin0 - .quad Lset632 -.set Lset633, Ltmp583-Lfunc_begin0 - .quad Lset633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset634, Ltmp596-Lfunc_begin0 - .quad Lset634 -.set Lset635, Ltmp615-Lfunc_begin0 - .quad Lset635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc102: -.set Lset636, Ltmp581-Lfunc_begin0 - .quad Lset636 -.set Lset637, Ltmp583-Lfunc_begin0 - .quad Lset637 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset638, Ltmp597-Lfunc_begin0 - .quad Lset638 -.set Lset639, Ltmp615-Lfunc_begin0 - .quad Lset639 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc103: -.set Lset640, Ltmp585-Lfunc_begin0 - .quad Lset640 -.set Lset641, Ltmp588-Lfunc_begin0 - .quad Lset641 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset642, Ltmp589-Lfunc_begin0 - .quad Lset642 -.set Lset643, Ltmp593-Lfunc_begin0 - .quad Lset643 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset644, Ltmp617-Lfunc_begin0 - .quad Lset644 -.set Lset645, Ltmp618-Lfunc_begin0 - .quad Lset645 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc104: -.set Lset646, Ltmp599-Lfunc_begin0 - .quad Lset646 -.set Lset647, Ltmp600-Lfunc_begin0 - .quad Lset647 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset648, Ltmp600-Lfunc_begin0 - .quad Lset648 -.set Lset649, Ltmp604-Lfunc_begin0 - .quad Lset649 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset650, Ltmp609-Lfunc_begin0 - .quad Lset650 -.set Lset651, Ltmp615-Lfunc_begin0 - .quad Lset651 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc105: -.set Lset652, Ltmp599-Lfunc_begin0 - .quad Lset652 -.set Lset653, Ltmp615-Lfunc_begin0 - .quad Lset653 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc106: -.set Lset654, Ltmp605-Lfunc_begin0 - .quad Lset654 -.set Lset655, Ltmp608-Lfunc_begin0 - .quad Lset655 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc107: -.set Lset656, Lfunc_begin12-Lfunc_begin0 - .quad Lset656 -.set Lset657, Ltmp678-Lfunc_begin0 - .quad Lset657 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset658, Ltmp680-Lfunc_begin0 - .quad Lset658 -.set Lset659, Ltmp681-Lfunc_begin0 - .quad Lset659 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset660, Ltmp683-Lfunc_begin0 - .quad Lset660 -.set Lset661, Ltmp684-Lfunc_begin0 - .quad Lset661 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset662, Ltmp687-Lfunc_begin0 - .quad Lset662 -.set Lset663, Ltmp688-Lfunc_begin0 - .quad Lset663 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc108: -.set Lset664, Lfunc_begin12-Lfunc_begin0 - .quad Lset664 -.set Lset665, Ltmp679-Lfunc_begin0 - .quad Lset665 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset666, Ltmp680-Lfunc_begin0 - .quad Lset666 -.set Lset667, Ltmp682-Lfunc_begin0 - .quad Lset667 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset668, Ltmp683-Lfunc_begin0 - .quad Lset668 -.set Lset669, Ltmp685-Lfunc_begin0 - .quad Lset669 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset670, Ltmp687-Lfunc_begin0 - .quad Lset670 -.set Lset671, Ltmp689-Lfunc_begin0 - .quad Lset671 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc109: -.set Lset672, Ltmp625-Lfunc_begin0 - .quad Lset672 -.set Lset673, Ltmp629-Lfunc_begin0 - .quad Lset673 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset674, Ltmp635-Lfunc_begin0 - .quad Lset674 -.set Lset675, Ltmp641-Lfunc_begin0 - .quad Lset675 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset676, Ltmp650-Lfunc_begin0 - .quad Lset676 -.set Lset677, Ltmp656-Lfunc_begin0 - .quad Lset677 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset678, Ltmp670-Lfunc_begin0 - .quad Lset678 -.set Lset679, Ltmp673-Lfunc_begin0 - .quad Lset679 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset680, Ltmp683-Lfunc_begin0 - .quad Lset680 -.set Lset681, Ltmp686-Lfunc_begin0 - .quad Lset681 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc110: -.set Lset682, Ltmp625-Lfunc_begin0 - .quad Lset682 -.set Lset683, Ltmp626-Lfunc_begin0 - .quad Lset683 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc111: -.set Lset684, Ltmp631-Lfunc_begin0 - .quad Lset684 -.set Lset685, Ltmp635-Lfunc_begin0 - .quad Lset685 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset686, Ltmp641-Lfunc_begin0 - .quad Lset686 -.set Lset687, Ltmp650-Lfunc_begin0 - .quad Lset687 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset688, Ltmp658-Lfunc_begin0 - .quad Lset688 -.set Lset689, Ltmp670-Lfunc_begin0 - .quad Lset689 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset690, Ltmp673-Lfunc_begin0 - .quad Lset690 -.set Lset691, Ltmp677-Lfunc_begin0 - .quad Lset691 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset692, Ltmp687-Lfunc_begin0 - .quad Lset692 -.set Lset693, Ltmp690-Lfunc_begin0 - .quad Lset693 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc112: -.set Lset694, Ltmp631-Lfunc_begin0 - .quad Lset694 -.set Lset695, Ltmp633-Lfunc_begin0 - .quad Lset695 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc113: -.set Lset696, Ltmp637-Lfunc_begin0 - .quad Lset696 -.set Lset697, Ltmp641-Lfunc_begin0 - .quad Lset697 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset698, Ltmp650-Lfunc_begin0 - .quad Lset698 -.set Lset699, Ltmp656-Lfunc_begin0 - .quad Lset699 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset700, Ltmp670-Lfunc_begin0 - .quad Lset700 -.set Lset701, Ltmp673-Lfunc_begin0 - .quad Lset701 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc114: -.set Lset702, Ltmp645-Lfunc_begin0 - .quad Lset702 -.set Lset703, Ltmp650-Lfunc_begin0 - .quad Lset703 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset704, Ltmp661-Lfunc_begin0 - .quad Lset704 -.set Lset705, Ltmp670-Lfunc_begin0 - .quad Lset705 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset706, Ltmp673-Lfunc_begin0 - .quad Lset706 -.set Lset707, Ltmp674-Lfunc_begin0 - .quad Lset707 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc115: -.set Lset708, Lfunc_begin13-Lfunc_begin0 - .quad Lset708 -.set Lset709, Ltmp691-Lfunc_begin0 - .quad Lset709 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset710, Ltmp691-Lfunc_begin0 - .quad Lset710 -.set Lset711, Ltmp797-Lfunc_begin0 - .quad Lset711 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset712, Ltmp800-Lfunc_begin0 - .quad Lset712 -.set Lset713, Ltmp805-Lfunc_begin0 - .quad Lset713 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset714, Ltmp808-Lfunc_begin0 - .quad Lset714 -.set Lset715, Lfunc_end13-Lfunc_begin0 - .quad Lset715 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc116: -.set Lset716, Lfunc_begin13-Lfunc_begin0 - .quad Lset716 -.set Lset717, Ltmp691-Lfunc_begin0 - .quad Lset717 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset718, Ltmp691-Lfunc_begin0 - .quad Lset718 -.set Lset719, Ltmp799-Lfunc_begin0 - .quad Lset719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset720, Ltmp800-Lfunc_begin0 - .quad Lset720 -.set Lset721, Ltmp807-Lfunc_begin0 - .quad Lset721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset722, Ltmp808-Lfunc_begin0 - .quad Lset722 -.set Lset723, Lfunc_end13-Lfunc_begin0 - .quad Lset723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc117: -.set Lset724, Lfunc_begin13-Lfunc_begin0 - .quad Lset724 -.set Lset725, Ltmp691-Lfunc_begin0 - .quad Lset725 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset726, Ltmp691-Lfunc_begin0 - .quad Lset726 -.set Lset727, Ltmp798-Lfunc_begin0 - .quad Lset727 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset728, Ltmp800-Lfunc_begin0 - .quad Lset728 -.set Lset729, Ltmp806-Lfunc_begin0 - .quad Lset729 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset730, Ltmp808-Lfunc_begin0 - .quad Lset730 -.set Lset731, Lfunc_end13-Lfunc_begin0 - .quad Lset731 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc118: -.set Lset732, Ltmp705-Lfunc_begin0 - .quad Lset732 -.set Lset733, Ltmp709-Lfunc_begin0 - .quad Lset733 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset734, Ltmp716-Lfunc_begin0 - .quad Lset734 -.set Lset735, Ltmp724-Lfunc_begin0 - .quad Lset735 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc119: -.set Lset736, Ltmp708-Lfunc_begin0 - .quad Lset736 -.set Lset737, Ltmp709-Lfunc_begin0 - .quad Lset737 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset738, Ltmp729-Lfunc_begin0 - .quad Lset738 -.set Lset739, Ltmp730-Lfunc_begin0 - .quad Lset739 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc120: -.set Lset740, Ltmp710-Lfunc_begin0 - .quad Lset740 -.set Lset741, Ltmp714-Lfunc_begin0 - .quad Lset741 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc121: -.set Lset742, Ltmp711-Lfunc_begin0 - .quad Lset742 -.set Lset743, Ltmp717-Lfunc_begin0 - .quad Lset743 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc122: -.set Lset744, Ltmp718-Lfunc_begin0 - .quad Lset744 -.set Lset745, Ltmp722-Lfunc_begin0 - .quad Lset745 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc123: -.set Lset746, Ltmp719-Lfunc_begin0 - .quad Lset746 -.set Lset747, Ltmp724-Lfunc_begin0 - .quad Lset747 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc124: -.set Lset748, Ltmp744-Lfunc_begin0 - .quad Lset748 -.set Lset749, Ltmp747-Lfunc_begin0 - .quad Lset749 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset750, Ltmp777-Lfunc_begin0 - .quad Lset750 -.set Lset751, Ltmp780-Lfunc_begin0 - .quad Lset751 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset752, Ltmp786-Lfunc_begin0 - .quad Lset752 -.set Lset753, Ltmp789-Lfunc_begin0 - .quad Lset753 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc125: -.set Lset754, Lfunc_begin14-Lfunc_begin0 - .quad Lset754 -.set Lset755, Ltmp855-Lfunc_begin0 - .quad Lset755 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset756, Ltmp862-Lfunc_begin0 - .quad Lset756 -.set Lset757, Ltmp863-Lfunc_begin0 - .quad Lset757 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset758, Ltmp941-Lfunc_begin0 - .quad Lset758 -.set Lset759, Ltmp942-Lfunc_begin0 - .quad Lset759 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc126: -.set Lset760, Lfunc_begin14-Lfunc_begin0 - .quad Lset760 -.set Lset761, Ltmp848-Lfunc_begin0 - .quad Lset761 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset762, Ltmp848-Lfunc_begin0 - .quad Lset762 -.set Lset763, Ltmp866-Lfunc_begin0 - .quad Lset763 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 156 ## -100 - .byte 127 ## -.set Lset764, Ltmp866-Lfunc_begin0 - .quad Lset764 -.set Lset765, Ltmp869-Lfunc_begin0 - .quad Lset765 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset766, Ltmp869-Lfunc_begin0 - .quad Lset766 -.set Lset767, Ltmp927-Lfunc_begin0 - .quad Lset767 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 156 ## -100 - .byte 127 ## -.set Lset768, Ltmp927-Lfunc_begin0 - .quad Lset768 -.set Lset769, Ltmp930-Lfunc_begin0 - .quad Lset769 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset770, Ltmp930-Lfunc_begin0 - .quad Lset770 -.set Lset771, Ltmp941-Lfunc_begin0 - .quad Lset771 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 156 ## -100 - .byte 127 ## -.set Lset772, Ltmp941-Lfunc_begin0 - .quad Lset772 -.set Lset773, Ltmp943-Lfunc_begin0 - .quad Lset773 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc127: -.set Lset774, Ltmp847-Lfunc_begin0 - .quad Lset774 -.set Lset775, Ltmp851-Lfunc_begin0 - .quad Lset775 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc128: -.set Lset776, Ltmp847-Lfunc_begin0 - .quad Lset776 -.set Lset777, Ltmp851-Lfunc_begin0 - .quad Lset777 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc129: -.set Lset778, Ltmp848-Lfunc_begin0 - .quad Lset778 -.set Lset779, Ltmp865-Lfunc_begin0 - .quad Lset779 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 2 ## 2 - .byte 159 ## DW_OP_stack_value -.set Lset780, Ltmp865-Lfunc_begin0 - .quad Lset780 -.set Lset781, Ltmp869-Lfunc_begin0 - .quad Lset781 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset782, Ltmp870-Lfunc_begin0 - .quad Lset782 -.set Lset783, Ltmp871-Lfunc_begin0 - .quad Lset783 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 1 ## 1 - .byte 159 ## DW_OP_stack_value -.set Lset784, Ltmp871-Lfunc_begin0 - .quad Lset784 -.set Lset785, Ltmp886-Lfunc_begin0 - .quad Lset785 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset786, Ltmp887-Lfunc_begin0 - .quad Lset786 -.set Lset787, Ltmp891-Lfunc_begin0 - .quad Lset787 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset788, Ltmp903-Lfunc_begin0 - .quad Lset788 -.set Lset789, Ltmp912-Lfunc_begin0 - .quad Lset789 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset790, Ltmp913-Lfunc_begin0 - .quad Lset790 -.set Lset791, Ltmp914-Lfunc_begin0 - .quad Lset791 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset792, Ltmp927-Lfunc_begin0 - .quad Lset792 -.set Lset793, Ltmp928-Lfunc_begin0 - .quad Lset793 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset794, Ltmp929-Lfunc_begin0 - .quad Lset794 -.set Lset795, Ltmp930-Lfunc_begin0 - .quad Lset795 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset796, Ltmp932-Lfunc_begin0 - .quad Lset796 -.set Lset797, Ltmp935-Lfunc_begin0 - .quad Lset797 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc130: -.set Lset798, Ltmp848-Lfunc_begin0 - .quad Lset798 -.set Lset799, Ltmp852-Lfunc_begin0 - .quad Lset799 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset800, Ltmp852-Lfunc_begin0 - .quad Lset800 -.set Lset801, Lfunc_end14-Lfunc_begin0 - .quad Lset801 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc131: -.set Lset802, Ltmp849-Lfunc_begin0 - .quad Lset802 -.set Lset803, Ltmp851-Lfunc_begin0 - .quad Lset803 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc132: -.set Lset804, Ltmp850-Lfunc_begin0 - .quad Lset804 -.set Lset805, Ltmp851-Lfunc_begin0 - .quad Lset805 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc133: -.set Lset806, Ltmp870-Lfunc_begin0 - .quad Lset806 -.set Lset807, Ltmp908-Lfunc_begin0 - .quad Lset807 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset808, Ltmp932-Lfunc_begin0 - .quad Lset808 -.set Lset809, Ltmp935-Lfunc_begin0 - .quad Lset809 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc134: -.set Lset810, Ltmp880-Lfunc_begin0 - .quad Lset810 -.set Lset811, Ltmp882-Lfunc_begin0 - .quad Lset811 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset812, Ltmp883-Lfunc_begin0 - .quad Lset812 -.set Lset813, Ltmp886-Lfunc_begin0 - .quad Lset813 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset814, Ltmp934-Lfunc_begin0 - .quad Lset814 -.set Lset815, Ltmp935-Lfunc_begin0 - .quad Lset815 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc135: -.set Lset816, Ltmp891-Lfunc_begin0 - .quad Lset816 -.set Lset817, Ltmp898-Lfunc_begin0 - .quad Lset817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc136: -.set Lset818, Ltmp889-Lfunc_begin0 - .quad Lset818 -.set Lset819, Ltmp891-Lfunc_begin0 - .quad Lset819 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset820, Ltmp891-Lfunc_begin0 - .quad Lset820 -.set Lset821, Ltmp900-Lfunc_begin0 - .quad Lset821 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc137: -.set Lset822, Ltmp896-Lfunc_begin0 - .quad Lset822 -.set Lset823, Ltmp898-Lfunc_begin0 - .quad Lset823 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc138: -.set Lset824, Ltmp902-Lfunc_begin0 - .quad Lset824 -.set Lset825, Ltmp903-Lfunc_begin0 - .quad Lset825 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset826, Ltmp904-Lfunc_begin0 - .quad Lset826 -.set Lset827, Ltmp905-Lfunc_begin0 - .quad Lset827 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset828, Ltmp905-Lfunc_begin0 - .quad Lset828 -.set Lset829, Ltmp919-Lfunc_begin0 - .quad Lset829 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -136 - .byte 126 ## -.set Lset830, Ltmp919-Lfunc_begin0 - .quad Lset830 -.set Lset831, Ltmp923-Lfunc_begin0 - .quad Lset831 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset832, Ltmp938-Lfunc_begin0 - .quad Lset832 -.set Lset833, Ltmp939-Lfunc_begin0 - .quad Lset833 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc139: -.set Lset834, Ltmp906-Lfunc_begin0 - .quad Lset834 -.set Lset835, Ltmp919-Lfunc_begin0 - .quad Lset835 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc140: -.set Lset836, Ltmp906-Lfunc_begin0 - .quad Lset836 -.set Lset837, Ltmp908-Lfunc_begin0 - .quad Lset837 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset838, Ltmp908-Lfunc_begin0 - .quad Lset838 -.set Lset839, Ltmp919-Lfunc_begin0 - .quad Lset839 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc141: -.set Lset840, Ltmp908-Lfunc_begin0 - .quad Lset840 -.set Lset841, Ltmp916-Lfunc_begin0 - .quad Lset841 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc142: -.set Lset842, Ltmp914-Lfunc_begin0 - .quad Lset842 -.set Lset843, Ltmp916-Lfunc_begin0 - .quad Lset843 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc143: -.set Lset844, Ltmp919-Lfunc_begin0 - .quad Lset844 -.set Lset845, Ltmp923-Lfunc_begin0 - .quad Lset845 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset846, Ltmp938-Lfunc_begin0 - .quad Lset846 -.set Lset847, Ltmp939-Lfunc_begin0 - .quad Lset847 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc144: -.set Lset848, Lfunc_begin15-Lfunc_begin0 - .quad Lset848 -.set Lset849, Ltmp947-Lfunc_begin0 - .quad Lset849 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset850, Ltmp947-Lfunc_begin0 - .quad Lset850 -.set Lset851, Ltmp959-Lfunc_begin0 - .quad Lset851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset852, Ltmp960-Lfunc_begin0 - .quad Lset852 -.set Lset853, Ltmp979-Lfunc_begin0 - .quad Lset853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset854, Ltmp980-Lfunc_begin0 - .quad Lset854 -.set Lset855, Lfunc_end15-Lfunc_begin0 - .quad Lset855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc145: -.set Lset856, Lfunc_begin15-Lfunc_begin0 - .quad Lset856 -.set Lset857, Ltmp947-Lfunc_begin0 - .quad Lset857 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset858, Ltmp947-Lfunc_begin0 - .quad Lset858 -.set Lset859, Ltmp958-Lfunc_begin0 - .quad Lset859 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset860, Ltmp960-Lfunc_begin0 - .quad Lset860 -.set Lset861, Ltmp978-Lfunc_begin0 - .quad Lset861 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset862, Ltmp980-Lfunc_begin0 - .quad Lset862 -.set Lset863, Lfunc_end15-Lfunc_begin0 - .quad Lset863 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc146: -.set Lset864, Lfunc_begin15-Lfunc_begin0 - .quad Lset864 -.set Lset865, Ltmp947-Lfunc_begin0 - .quad Lset865 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset866, Ltmp947-Lfunc_begin0 - .quad Lset866 -.set Lset867, Ltmp957-Lfunc_begin0 - .quad Lset867 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset868, Ltmp960-Lfunc_begin0 - .quad Lset868 -.set Lset869, Ltmp977-Lfunc_begin0 - .quad Lset869 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset870, Ltmp980-Lfunc_begin0 - .quad Lset870 -.set Lset871, Lfunc_end15-Lfunc_begin0 - .quad Lset871 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc147: -.set Lset872, Ltmp945-Lfunc_begin0 - .quad Lset872 -.set Lset873, Ltmp946-Lfunc_begin0 - .quad Lset873 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset874, Ltmp946-Lfunc_begin0 - .quad Lset874 -.set Lset875, Ltmp949-Lfunc_begin0 - .quad Lset875 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset876, Ltmp960-Lfunc_begin0 - .quad Lset876 -.set Lset877, Ltmp963-Lfunc_begin0 - .quad Lset877 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset878, Ltmp983-Lfunc_begin0 - .quad Lset878 -.set Lset879, Ltmp985-Lfunc_begin0 - .quad Lset879 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc148: -.set Lset880, Ltmp945-Lfunc_begin0 - .quad Lset880 -.set Lset881, Ltmp946-Lfunc_begin0 - .quad Lset881 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset882, Ltmp946-Lfunc_begin0 - .quad Lset882 -.set Lset883, Ltmp949-Lfunc_begin0 - .quad Lset883 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset884, Ltmp963-Lfunc_begin0 - .quad Lset884 -.set Lset885, Ltmp966-Lfunc_begin0 - .quad Lset885 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset886, Ltmp985-Lfunc_begin0 - .quad Lset886 -.set Lset887, Ltmp987-Lfunc_begin0 - .quad Lset887 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc149: -.set Lset888, Ltmp945-Lfunc_begin0 - .quad Lset888 -.set Lset889, Ltmp946-Lfunc_begin0 - .quad Lset889 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset890, Ltmp946-Lfunc_begin0 - .quad Lset890 -.set Lset891, Ltmp949-Lfunc_begin0 - .quad Lset891 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc150: -.set Lset892, Ltmp945-Lfunc_begin0 - .quad Lset892 -.set Lset893, Ltmp946-Lfunc_begin0 - .quad Lset893 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset894, Ltmp946-Lfunc_begin0 - .quad Lset894 -.set Lset895, Ltmp949-Lfunc_begin0 - .quad Lset895 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc151: -.set Lset896, Ltmp951-Lfunc_begin0 - .quad Lset896 -.set Lset897, Ltmp952-Lfunc_begin0 - .quad Lset897 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc152: -.set Lset898, Ltmp954-Lfunc_begin0 - .quad Lset898 -.set Lset899, Ltmp960-Lfunc_begin0 - .quad Lset899 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset900, Ltmp972-Lfunc_begin0 - .quad Lset900 -.set Lset901, Ltmp974-Lfunc_begin0 - .quad Lset901 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset902, Ltmp982-Lfunc_begin0 - .quad Lset902 -.set Lset903, Ltmp983-Lfunc_begin0 - .quad Lset903 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc153: -.set Lset904, Ltmp968-Lfunc_begin0 - .quad Lset904 -.set Lset905, Ltmp975-Lfunc_begin0 - .quad Lset905 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset906, Ltmp988-Lfunc_begin0 - .quad Lset906 -.set Lset907, Lfunc_end15-Lfunc_begin0 - .quad Lset907 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc154: -.set Lset908, Lfunc_begin16-Lfunc_begin0 - .quad Lset908 -.set Lset909, Ltmp1005-Lfunc_begin0 - .quad Lset909 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc155: -.set Lset910, Lfunc_begin16-Lfunc_begin0 - .quad Lset910 -.set Lset911, Ltmp995-Lfunc_begin0 - .quad Lset911 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset912, Ltmp996-Lfunc_begin0 - .quad Lset912 -.set Lset913, Ltmp1004-Lfunc_begin0 - .quad Lset913 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc156: -.set Lset914, Lfunc_begin16-Lfunc_begin0 - .quad Lset914 -.set Lset915, Ltmp990-Lfunc_begin0 - .quad Lset915 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset916, Ltmp990-Lfunc_begin0 - .quad Lset916 -.set Lset917, Ltmp998-Lfunc_begin0 - .quad Lset917 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset918, Ltmp1002-Lfunc_begin0 - .quad Lset918 -.set Lset919, Ltmp1005-Lfunc_begin0 - .quad Lset919 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc157: -.set Lset920, Ltmp997-Lfunc_begin0 - .quad Lset920 -.set Lset921, Ltmp1001-Lfunc_begin0 - .quad Lset921 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc158: -.set Lset922, Lfunc_begin17-Lfunc_begin0 - .quad Lset922 -.set Lset923, Ltmp1020-Lfunc_begin0 - .quad Lset923 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc159: -.set Lset924, Lfunc_begin17-Lfunc_begin0 - .quad Lset924 -.set Lset925, Ltmp1012-Lfunc_begin0 - .quad Lset925 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset926, Ltmp1012-Lfunc_begin0 - .quad Lset926 -.set Lset927, Ltmp1014-Lfunc_begin0 - .quad Lset927 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset928, Ltmp1017-Lfunc_begin0 - .quad Lset928 -.set Lset929, Ltmp1019-Lfunc_begin0 - .quad Lset929 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc160: -.set Lset930, Lfunc_begin17-Lfunc_begin0 - .quad Lset930 -.set Lset931, Ltmp1006-Lfunc_begin0 - .quad Lset931 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset932, Ltmp1006-Lfunc_begin0 - .quad Lset932 -.set Lset933, Ltmp1015-Lfunc_begin0 - .quad Lset933 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset934, Ltmp1017-Lfunc_begin0 - .quad Lset934 -.set Lset935, Ltmp1020-Lfunc_begin0 - .quad Lset935 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc161: -.set Lset936, Ltmp1013-Lfunc_begin0 - .quad Lset936 -.set Lset937, Ltmp1017-Lfunc_begin0 - .quad Lset937 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc162: -.set Lset938, Lfunc_begin18-Lfunc_begin0 - .quad Lset938 -.set Lset939, Ltmp1024-Lfunc_begin0 - .quad Lset939 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset940, Ltmp1026-Lfunc_begin0 - .quad Lset940 -.set Lset941, Ltmp1027-Lfunc_begin0 - .quad Lset941 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc163: -.set Lset942, Lfunc_begin19-Lfunc_begin0 - .quad Lset942 -.set Lset943, Ltmp1034-Lfunc_begin0 - .quad Lset943 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset944, Ltmp1034-Lfunc_begin0 - .quad Lset944 -.set Lset945, Ltmp1081-Lfunc_begin0 - .quad Lset945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset946, Ltmp1082-Lfunc_begin0 - .quad Lset946 -.set Lset947, Ltmp1087-Lfunc_begin0 - .quad Lset947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset948, Ltmp1088-Lfunc_begin0 - .quad Lset948 -.set Lset949, Lfunc_end19-Lfunc_begin0 - .quad Lset949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc164: -.set Lset950, Ltmp1032-Lfunc_begin0 - .quad Lset950 -.set Lset951, Ltmp1080-Lfunc_begin0 - .quad Lset951 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset952, Ltmp1082-Lfunc_begin0 - .quad Lset952 -.set Lset953, Lfunc_end19-Lfunc_begin0 - .quad Lset953 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc165: -.set Lset954, Ltmp1035-Lfunc_begin0 - .quad Lset954 -.set Lset955, Ltmp1040-Lfunc_begin0 - .quad Lset955 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset956, Ltmp1043-Lfunc_begin0 - .quad Lset956 -.set Lset957, Ltmp1044-Lfunc_begin0 - .quad Lset957 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset958, Ltmp1047-Lfunc_begin0 - .quad Lset958 -.set Lset959, Ltmp1052-Lfunc_begin0 - .quad Lset959 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset960, Ltmp1064-Lfunc_begin0 - .quad Lset960 -.set Lset961, Ltmp1068-Lfunc_begin0 - .quad Lset961 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset962, Ltmp1090-Lfunc_begin0 - .quad Lset962 -.set Lset963, Ltmp1092-Lfunc_begin0 - .quad Lset963 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc166: -.set Lset964, Ltmp1037-Lfunc_begin0 - .quad Lset964 -.set Lset965, Ltmp1038-Lfunc_begin0 - .quad Lset965 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc167: -.set Lset966, Ltmp1048-Lfunc_begin0 - .quad Lset966 -.set Lset967, Ltmp1051-Lfunc_begin0 - .quad Lset967 - .short 3 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 80 ## -48 - .byte 159 ## DW_OP_stack_value -.set Lset968, Ltmp1090-Lfunc_begin0 - .quad Lset968 -.set Lset969, Ltmp1091-Lfunc_begin0 - .quad Lset969 - .short 3 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 80 ## -48 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc168: -.set Lset970, Ltmp1053-Lfunc_begin0 - .quad Lset970 -.set Lset971, Ltmp1057-Lfunc_begin0 - .quad Lset971 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc169: -.set Lset972, Ltmp1059-Lfunc_begin0 - .quad Lset972 -.set Lset973, Ltmp1060-Lfunc_begin0 - .quad Lset973 - .short 3 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 112 ## -16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc170: -.set Lset974, Ltmp1076-Lfunc_begin0 - .quad Lset974 -.set Lset975, Ltmp1079-Lfunc_begin0 - .quad Lset975 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc171: -.set Lset976, Ltmp1082-Lfunc_begin0 - .quad Lset976 -.set Lset977, Ltmp1086-Lfunc_begin0 - .quad Lset977 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset978, Ltmp1088-Lfunc_begin0 - .quad Lset978 -.set Lset979, Ltmp1090-Lfunc_begin0 - .quad Lset979 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc172: -.set Lset980, Ltmp1083-Lfunc_begin0 - .quad Lset980 -.set Lset981, Ltmp1086-Lfunc_begin0 - .quad Lset981 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset982, Ltmp1088-Lfunc_begin0 - .quad Lset982 -.set Lset983, Ltmp1089-Lfunc_begin0 - .quad Lset983 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc173: -.set Lset984, Lfunc_begin20-Lfunc_begin0 - .quad Lset984 -.set Lset985, Ltmp1114-Lfunc_begin0 - .quad Lset985 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset986, Ltmp1137-Lfunc_begin0 - .quad Lset986 -.set Lset987, Ltmp1138-Lfunc_begin0 - .quad Lset987 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset988, Ltmp1140-Lfunc_begin0 - .quad Lset988 -.set Lset989, Ltmp1141-Lfunc_begin0 - .quad Lset989 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset990, Ltmp1144-Lfunc_begin0 - .quad Lset990 -.set Lset991, Ltmp1145-Lfunc_begin0 - .quad Lset991 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset992, Ltmp1148-Lfunc_begin0 - .quad Lset992 -.set Lset993, Ltmp1149-Lfunc_begin0 - .quad Lset993 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset994, Ltmp1152-Lfunc_begin0 - .quad Lset994 -.set Lset995, Ltmp1153-Lfunc_begin0 - .quad Lset995 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset996, Ltmp1155-Lfunc_begin0 - .quad Lset996 -.set Lset997, Ltmp1156-Lfunc_begin0 - .quad Lset997 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset998, Ltmp1159-Lfunc_begin0 - .quad Lset998 -.set Lset999, Ltmp1160-Lfunc_begin0 - .quad Lset999 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc174: -.set Lset1000, Lfunc_begin20-Lfunc_begin0 - .quad Lset1000 -.set Lset1001, Ltmp1133-Lfunc_begin0 - .quad Lset1001 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1002, Ltmp1134-Lfunc_begin0 - .quad Lset1002 -.set Lset1003, Ltmp1136-Lfunc_begin0 - .quad Lset1003 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1004, Ltmp1137-Lfunc_begin0 - .quad Lset1004 -.set Lset1005, Ltmp1139-Lfunc_begin0 - .quad Lset1005 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1006, Ltmp1140-Lfunc_begin0 - .quad Lset1006 -.set Lset1007, Ltmp1142-Lfunc_begin0 - .quad Lset1007 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1008, Ltmp1144-Lfunc_begin0 - .quad Lset1008 -.set Lset1009, Ltmp1146-Lfunc_begin0 - .quad Lset1009 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1010, Ltmp1148-Lfunc_begin0 - .quad Lset1010 -.set Lset1011, Ltmp1150-Lfunc_begin0 - .quad Lset1011 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1012, Ltmp1152-Lfunc_begin0 - .quad Lset1012 -.set Lset1013, Ltmp1154-Lfunc_begin0 - .quad Lset1013 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1014, Ltmp1155-Lfunc_begin0 - .quad Lset1014 -.set Lset1015, Ltmp1157-Lfunc_begin0 - .quad Lset1015 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1016, Ltmp1159-Lfunc_begin0 - .quad Lset1016 -.set Lset1017, Ltmp1161-Lfunc_begin0 - .quad Lset1017 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset1018, Ltmp1163-Lfunc_begin0 - .quad Lset1018 -.set Lset1019, Ltmp1164-Lfunc_begin0 - .quad Lset1019 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc175: -.set Lset1020, Lfunc_begin20-Lfunc_begin0 - .quad Lset1020 -.set Lset1021, Ltmp1098-Lfunc_begin0 - .quad Lset1021 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1022, Ltmp1103-Lfunc_begin0 - .quad Lset1022 -.set Lset1023, Ltmp1109-Lfunc_begin0 - .quad Lset1023 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1024, Ltmp1148-Lfunc_begin0 - .quad Lset1024 -.set Lset1025, Ltmp1151-Lfunc_begin0 - .quad Lset1025 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1026, Ltmp1155-Lfunc_begin0 - .quad Lset1026 -.set Lset1027, Ltmp1158-Lfunc_begin0 - .quad Lset1027 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1028, Ltmp1159-Lfunc_begin0 - .quad Lset1028 -.set Lset1029, Ltmp1162-Lfunc_begin0 - .quad Lset1029 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc176: -.set Lset1030, Ltmp1093-Lfunc_begin0 - .quad Lset1030 -.set Lset1031, Ltmp1094-Lfunc_begin0 - .quad Lset1031 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc177: -.set Lset1032, Ltmp1100-Lfunc_begin0 - .quad Lset1032 -.set Lset1033, Ltmp1101-Lfunc_begin0 - .quad Lset1033 - .short 2 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 0 ## 0 -.set Lset1034, Ltmp1101-Lfunc_begin0 - .quad Lset1034 -.set Lset1035, Ltmp1103-Lfunc_begin0 - .quad Lset1035 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset1036, Ltmp1106-Lfunc_begin0 - .quad Lset1036 -.set Lset1037, Ltmp1107-Lfunc_begin0 - .quad Lset1037 - .short 2 ## Loc expr size - .byte 114 ## DW_OP_breg2 - .byte 0 ## 0 -.set Lset1038, Ltmp1107-Lfunc_begin0 - .quad Lset1038 -.set Lset1039, Ltmp1129-Lfunc_begin0 - .quad Lset1039 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset1040, Ltmp1130-Lfunc_begin0 - .quad Lset1040 -.set Lset1041, Ltmp1148-Lfunc_begin0 - .quad Lset1041 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset1042, Ltmp1163-Lfunc_begin0 - .quad Lset1042 -.set Lset1043, Ltmp1165-Lfunc_begin0 - .quad Lset1043 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc178: -.set Lset1044, Ltmp1111-Lfunc_begin0 - .quad Lset1044 -.set Lset1045, Ltmp1118-Lfunc_begin0 - .quad Lset1045 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1046, Ltmp1140-Lfunc_begin0 - .quad Lset1046 -.set Lset1047, Ltmp1143-Lfunc_begin0 - .quad Lset1047 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset1048, Ltmp1144-Lfunc_begin0 - .quad Lset1048 -.set Lset1049, Ltmp1147-Lfunc_begin0 - .quad Lset1049 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc179: -.set Lset1050, Ltmp1115-Lfunc_begin0 - .quad Lset1050 -.set Lset1051, Ltmp1124-Lfunc_begin0 - .quad Lset1051 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset1052, Ltmp1131-Lfunc_begin0 - .quad Lset1052 -.set Lset1053, Ltmp1132-Lfunc_begin0 - .quad Lset1053 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset1054, Ltmp1134-Lfunc_begin0 - .quad Lset1054 -.set Lset1055, Ltmp1135-Lfunc_begin0 - .quad Lset1055 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc180: -.set Lset1056, Ltmp1116-Lfunc_begin0 - .quad Lset1056 -.set Lset1057, Ltmp1123-Lfunc_begin0 - .quad Lset1057 - .short 3 ## Loc expr size - .byte 117 ## DW_OP_breg5 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value -.set Lset1058, Ltmp1131-Lfunc_begin0 - .quad Lset1058 -.set Lset1059, Ltmp1132-Lfunc_begin0 - .quad Lset1059 - .short 3 ## Loc expr size - .byte 117 ## DW_OP_breg5 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value -.set Lset1060, Ltmp1134-Lfunc_begin0 - .quad Lset1060 -.set Lset1061, Ltmp1135-Lfunc_begin0 - .quad Lset1061 - .short 3 ## Loc expr size - .byte 117 ## DW_OP_breg5 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc181: -.set Lset1062, Ltmp1124-Lfunc_begin0 - .quad Lset1062 -.set Lset1063, Ltmp1125-Lfunc_begin0 - .quad Lset1063 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset1064, Ltmp1126-Lfunc_begin0 - .quad Lset1064 -.set Lset1065, Ltmp1129-Lfunc_begin0 - .quad Lset1065 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset1066, Ltmp1130-Lfunc_begin0 - .quad Lset1066 -.set Lset1067, Ltmp1131-Lfunc_begin0 - .quad Lset1067 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset1068, Ltmp1163-Lfunc_begin0 - .quad Lset1068 -.set Lset1069, Ltmp1165-Lfunc_begin0 - .quad Lset1069 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc182: -.set Lset1070, Lfunc_begin21-Lfunc_begin0 - .quad Lset1070 -.set Lset1071, Ltmp1170-Lfunc_begin0 - .quad Lset1071 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset1072, Ltmp1170-Lfunc_begin0 - .quad Lset1072 -.set Lset1073, Ltmp1190-Lfunc_begin0 - .quad Lset1073 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1074, Ltmp1190-Lfunc_begin0 - .quad Lset1074 -.set Lset1075, Ltmp1192-Lfunc_begin0 - .quad Lset1075 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset1076, Ltmp1192-Lfunc_begin0 - .quad Lset1076 -.set Lset1077, Ltmp1339-Lfunc_begin0 - .quad Lset1077 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1078, Ltmp1369-Lfunc_begin0 - .quad Lset1078 -.set Lset1079, Ltmp1381-Lfunc_begin0 - .quad Lset1079 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1080, Ltmp1387-Lfunc_begin0 - .quad Lset1080 -.set Lset1081, Ltmp1402-Lfunc_begin0 - .quad Lset1081 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1082, Ltmp1406-Lfunc_begin0 - .quad Lset1082 -.set Lset1083, Ltmp1408-Lfunc_begin0 - .quad Lset1083 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1084, Ltmp1415-Lfunc_begin0 - .quad Lset1084 -.set Lset1085, Ltmp1432-Lfunc_begin0 - .quad Lset1085 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1086, Ltmp1439-Lfunc_begin0 - .quad Lset1086 -.set Lset1087, Ltmp1443-Lfunc_begin0 - .quad Lset1087 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1088, Ltmp5938-Lfunc_begin0 - .quad Lset1088 -.set Lset1089, Ltmp5941-Lfunc_begin0 - .quad Lset1089 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1090, Ltmp6050-Lfunc_begin0 - .quad Lset1090 -.set Lset1091, Ltmp6051-Lfunc_begin0 - .quad Lset1091 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1092, Ltmp6143-Lfunc_begin0 - .quad Lset1092 -.set Lset1093, Ltmp6144-Lfunc_begin0 - .quad Lset1093 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1094, Ltmp6165-Lfunc_begin0 - .quad Lset1094 -.set Lset1095, Ltmp6166-Lfunc_begin0 - .quad Lset1095 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1096, Ltmp6301-Lfunc_begin0 - .quad Lset1096 -.set Lset1097, Ltmp6304-Lfunc_begin0 - .quad Lset1097 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1098, Ltmp6420-Lfunc_begin0 - .quad Lset1098 -.set Lset1099, Ltmp6422-Lfunc_begin0 - .quad Lset1099 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc183: -.set Lset1100, Ltmp1167-Lfunc_begin0 - .quad Lset1100 -.set Lset1101, Ltmp1170-Lfunc_begin0 - .quad Lset1101 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset1102, Ltmp1170-Lfunc_begin0 - .quad Lset1102 -.set Lset1103, Ltmp1171-Lfunc_begin0 - .quad Lset1103 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc184: -.set Lset1104, Ltmp1167-Lfunc_begin0 - .quad Lset1104 -.set Lset1105, Ltmp1170-Lfunc_begin0 - .quad Lset1105 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset1106, Ltmp1170-Lfunc_begin0 - .quad Lset1106 -.set Lset1107, Ltmp1171-Lfunc_begin0 - .quad Lset1107 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc185: -.set Lset1108, Ltmp1168-Lfunc_begin0 - .quad Lset1108 -.set Lset1109, Ltmp1182-Lfunc_begin0 - .quad Lset1109 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1110, Ltmp1182-Lfunc_begin0 - .quad Lset1110 -.set Lset1111, Ltmp1187-Lfunc_begin0 - .quad Lset1111 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1112, Ltmp1187-Lfunc_begin0 - .quad Lset1112 -.set Lset1113, Ltmp1194-Lfunc_begin0 - .quad Lset1113 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1114, Ltmp1194-Lfunc_begin0 - .quad Lset1114 -.set Lset1115, Ltmp3409-Lfunc_begin0 - .quad Lset1115 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1116, Ltmp3409-Lfunc_begin0 - .quad Lset1116 -.set Lset1117, Ltmp3410-Lfunc_begin0 - .quad Lset1117 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1118, Ltmp3410-Lfunc_begin0 - .quad Lset1118 -.set Lset1119, Ltmp3441-Lfunc_begin0 - .quad Lset1119 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1120, Ltmp3441-Lfunc_begin0 - .quad Lset1120 -.set Lset1121, Ltmp3462-Lfunc_begin0 - .quad Lset1121 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset1122, Ltmp3465-Lfunc_begin0 - .quad Lset1122 -.set Lset1123, Ltmp3482-Lfunc_begin0 - .quad Lset1123 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1124, Ltmp3482-Lfunc_begin0 - .quad Lset1124 -.set Lset1125, Ltmp3489-Lfunc_begin0 - .quad Lset1125 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1126, Ltmp3489-Lfunc_begin0 - .quad Lset1126 -.set Lset1127, Ltmp6420-Lfunc_begin0 - .quad Lset1127 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1128, Ltmp6420-Lfunc_begin0 - .quad Lset1128 -.set Lset1129, Ltmp6425-Lfunc_begin0 - .quad Lset1129 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1130, Ltmp6425-Lfunc_begin0 - .quad Lset1130 -.set Lset1131, Ltmp6426-Lfunc_begin0 - .quad Lset1131 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset1132, Ltmp6426-Lfunc_begin0 - .quad Lset1132 -.set Lset1133, Ltmp6427-Lfunc_begin0 - .quad Lset1133 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1134, Ltmp6427-Lfunc_begin0 - .quad Lset1134 -.set Lset1135, Ltmp6429-Lfunc_begin0 - .quad Lset1135 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -128 - .byte 127 ## -.set Lset1136, Ltmp6429-Lfunc_begin0 - .quad Lset1136 -.set Lset1137, Ltmp6430-Lfunc_begin0 - .quad Lset1137 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc186: -.set Lset1138, Ltmp1172-Lfunc_begin0 - .quad Lset1138 -.set Lset1139, Ltmp1179-Lfunc_begin0 - .quad Lset1139 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset1140, Ltmp1187-Lfunc_begin0 - .quad Lset1140 -.set Lset1141, Ltmp1189-Lfunc_begin0 - .quad Lset1141 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset1142, Ltmp1189-Lfunc_begin0 - .quad Lset1142 -.set Lset1143, Ltmp1194-Lfunc_begin0 - .quad Lset1143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1144, Ltmp6420-Lfunc_begin0 - .quad Lset1144 -.set Lset1145, Ltmp6421-Lfunc_begin0 - .quad Lset1145 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc187: -.set Lset1146, Ltmp1174-Lfunc_begin0 - .quad Lset1146 -.set Lset1147, Ltmp1177-Lfunc_begin0 - .quad Lset1147 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset1148, Ltmp1177-Lfunc_begin0 - .quad Lset1148 -.set Lset1149, Lfunc_end21-Lfunc_begin0 - .quad Lset1149 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc188: -.set Lset1150, Ltmp1175-Lfunc_begin0 - .quad Lset1150 -.set Lset1151, Ltmp1176-Lfunc_begin0 - .quad Lset1151 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1152, Ltmp1186-Lfunc_begin0 - .quad Lset1152 -.set Lset1153, Ltmp1186-Lfunc_begin0 - .quad Lset1153 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1154, Ltmp1186-Lfunc_begin0 - .quad Lset1154 -.set Lset1155, Ltmp1187-Lfunc_begin0 - .quad Lset1155 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1156, Ltmp1200-Lfunc_begin0 - .quad Lset1156 -.set Lset1157, Ltmp1209-Lfunc_begin0 - .quad Lset1157 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1158, Ltmp1215-Lfunc_begin0 - .quad Lset1158 -.set Lset1159, Ltmp1215-Lfunc_begin0 - .quad Lset1159 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1160, Ltmp1215-Lfunc_begin0 - .quad Lset1160 -.set Lset1161, Ltmp1216-Lfunc_begin0 - .quad Lset1161 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1162, Ltmp1222-Lfunc_begin0 - .quad Lset1162 -.set Lset1163, Ltmp1231-Lfunc_begin0 - .quad Lset1163 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1164, Ltmp1237-Lfunc_begin0 - .quad Lset1164 -.set Lset1165, Ltmp1237-Lfunc_begin0 - .quad Lset1165 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1166, Ltmp1237-Lfunc_begin0 - .quad Lset1166 -.set Lset1167, Ltmp1238-Lfunc_begin0 - .quad Lset1167 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1168, Ltmp1244-Lfunc_begin0 - .quad Lset1168 -.set Lset1169, Ltmp1254-Lfunc_begin0 - .quad Lset1169 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1170, Ltmp1260-Lfunc_begin0 - .quad Lset1170 -.set Lset1171, Ltmp1260-Lfunc_begin0 - .quad Lset1171 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1172, Ltmp1260-Lfunc_begin0 - .quad Lset1172 -.set Lset1173, Ltmp1261-Lfunc_begin0 - .quad Lset1173 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1174, Ltmp1267-Lfunc_begin0 - .quad Lset1174 -.set Lset1175, Ltmp1275-Lfunc_begin0 - .quad Lset1175 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1176, Ltmp1281-Lfunc_begin0 - .quad Lset1176 -.set Lset1177, Ltmp1281-Lfunc_begin0 - .quad Lset1177 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1178, Ltmp1281-Lfunc_begin0 - .quad Lset1178 -.set Lset1179, Ltmp1282-Lfunc_begin0 - .quad Lset1179 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1180, Ltmp1288-Lfunc_begin0 - .quad Lset1180 -.set Lset1181, Ltmp1309-Lfunc_begin0 - .quad Lset1181 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1182, Ltmp1314-Lfunc_begin0 - .quad Lset1182 -.set Lset1183, Ltmp1314-Lfunc_begin0 - .quad Lset1183 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1184, Ltmp1314-Lfunc_begin0 - .quad Lset1184 -.set Lset1185, Ltmp1315-Lfunc_begin0 - .quad Lset1185 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1186, Ltmp1321-Lfunc_begin0 - .quad Lset1186 -.set Lset1187, Ltmp1332-Lfunc_begin0 - .quad Lset1187 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1188, Ltmp1338-Lfunc_begin0 - .quad Lset1188 -.set Lset1189, Ltmp1338-Lfunc_begin0 - .quad Lset1189 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1190, Ltmp1338-Lfunc_begin0 - .quad Lset1190 -.set Lset1191, Ltmp1339-Lfunc_begin0 - .quad Lset1191 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1192, Ltmp1345-Lfunc_begin0 - .quad Lset1192 -.set Lset1193, Ltmp1358-Lfunc_begin0 - .quad Lset1193 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1194, Ltmp1358-Lfunc_begin0 - .quad Lset1194 -.set Lset1195, Ltmp1362-Lfunc_begin0 - .quad Lset1195 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1196, Ltmp1362-Lfunc_begin0 - .quad Lset1196 -.set Lset1197, Ltmp1363-Lfunc_begin0 - .quad Lset1197 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1198, Ltmp1368-Lfunc_begin0 - .quad Lset1198 -.set Lset1199, Ltmp1368-Lfunc_begin0 - .quad Lset1199 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1200, Ltmp1368-Lfunc_begin0 - .quad Lset1200 -.set Lset1201, Ltmp1381-Lfunc_begin0 - .quad Lset1201 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1202, Ltmp1381-Lfunc_begin0 - .quad Lset1202 -.set Lset1203, Ltmp1387-Lfunc_begin0 - .quad Lset1203 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1204, Ltmp1387-Lfunc_begin0 - .quad Lset1204 -.set Lset1205, Ltmp1400-Lfunc_begin0 - .quad Lset1205 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1206, Ltmp1400-Lfunc_begin0 - .quad Lset1206 -.set Lset1207, Ltmp1406-Lfunc_begin0 - .quad Lset1207 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1208, Ltmp1406-Lfunc_begin0 - .quad Lset1208 -.set Lset1209, Ltmp1410-Lfunc_begin0 - .quad Lset1209 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1210, Ltmp1410-Lfunc_begin0 - .quad Lset1210 -.set Lset1211, Ltmp1415-Lfunc_begin0 - .quad Lset1211 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1212, Ltmp1415-Lfunc_begin0 - .quad Lset1212 -.set Lset1213, Ltmp1432-Lfunc_begin0 - .quad Lset1213 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1214, Ltmp1439-Lfunc_begin0 - .quad Lset1214 -.set Lset1215, Ltmp1442-Lfunc_begin0 - .quad Lset1215 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1216, Ltmp1442-Lfunc_begin0 - .quad Lset1216 -.set Lset1217, Ltmp1447-Lfunc_begin0 - .quad Lset1217 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1218, Ltmp1455-Lfunc_begin0 - .quad Lset1218 -.set Lset1219, Ltmp1462-Lfunc_begin0 - .quad Lset1219 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1220, Ltmp1462-Lfunc_begin0 - .quad Lset1220 -.set Lset1221, Ltmp1462-Lfunc_begin0 - .quad Lset1221 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1222, Ltmp1462-Lfunc_begin0 - .quad Lset1222 -.set Lset1223, Ltmp1463-Lfunc_begin0 - .quad Lset1223 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1224, Ltmp1463-Lfunc_begin0 - .quad Lset1224 -.set Lset1225, Ltmp1463-Lfunc_begin0 - .quad Lset1225 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1226, Ltmp1463-Lfunc_begin0 - .quad Lset1226 -.set Lset1227, Ltmp1476-Lfunc_begin0 - .quad Lset1227 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1228, Ltmp1476-Lfunc_begin0 - .quad Lset1228 -.set Lset1229, Ltmp1482-Lfunc_begin0 - .quad Lset1229 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1230, Ltmp1482-Lfunc_begin0 - .quad Lset1230 -.set Lset1231, Ltmp1495-Lfunc_begin0 - .quad Lset1231 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1232, Ltmp1495-Lfunc_begin0 - .quad Lset1232 -.set Lset1233, Ltmp1501-Lfunc_begin0 - .quad Lset1233 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1234, Ltmp1501-Lfunc_begin0 - .quad Lset1234 -.set Lset1235, Ltmp1504-Lfunc_begin0 - .quad Lset1235 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1236, Ltmp1504-Lfunc_begin0 - .quad Lset1236 -.set Lset1237, Ltmp1509-Lfunc_begin0 - .quad Lset1237 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1238, Ltmp1509-Lfunc_begin0 - .quad Lset1238 -.set Lset1239, Ltmp1527-Lfunc_begin0 - .quad Lset1239 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1240, Ltmp1534-Lfunc_begin0 - .quad Lset1240 -.set Lset1241, Ltmp1537-Lfunc_begin0 - .quad Lset1241 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1242, Ltmp1537-Lfunc_begin0 - .quad Lset1242 -.set Lset1243, Ltmp1542-Lfunc_begin0 - .quad Lset1243 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1244, Ltmp1550-Lfunc_begin0 - .quad Lset1244 -.set Lset1245, Ltmp1557-Lfunc_begin0 - .quad Lset1245 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1246, Ltmp1557-Lfunc_begin0 - .quad Lset1246 -.set Lset1247, Ltmp1557-Lfunc_begin0 - .quad Lset1247 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1248, Ltmp1557-Lfunc_begin0 - .quad Lset1248 -.set Lset1249, Ltmp1558-Lfunc_begin0 - .quad Lset1249 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1250, Ltmp1558-Lfunc_begin0 - .quad Lset1250 -.set Lset1251, Ltmp1558-Lfunc_begin0 - .quad Lset1251 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1252, Ltmp1558-Lfunc_begin0 - .quad Lset1252 -.set Lset1253, Ltmp1571-Lfunc_begin0 - .quad Lset1253 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1254, Ltmp1571-Lfunc_begin0 - .quad Lset1254 -.set Lset1255, Ltmp1577-Lfunc_begin0 - .quad Lset1255 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1256, Ltmp1577-Lfunc_begin0 - .quad Lset1256 -.set Lset1257, Ltmp1590-Lfunc_begin0 - .quad Lset1257 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1258, Ltmp1590-Lfunc_begin0 - .quad Lset1258 -.set Lset1259, Ltmp1599-Lfunc_begin0 - .quad Lset1259 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1260, Ltmp1599-Lfunc_begin0 - .quad Lset1260 -.set Lset1261, Ltmp1602-Lfunc_begin0 - .quad Lset1261 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1262, Ltmp1602-Lfunc_begin0 - .quad Lset1262 -.set Lset1263, Ltmp1608-Lfunc_begin0 - .quad Lset1263 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1264, Ltmp1608-Lfunc_begin0 - .quad Lset1264 -.set Lset1265, Ltmp1615-Lfunc_begin0 - .quad Lset1265 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1266, Ltmp1615-Lfunc_begin0 - .quad Lset1266 -.set Lset1267, Ltmp1626-Lfunc_begin0 - .quad Lset1267 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1268, Ltmp1626-Lfunc_begin0 - .quad Lset1268 -.set Lset1269, Ltmp1628-Lfunc_begin0 - .quad Lset1269 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1270, Ltmp1628-Lfunc_begin0 - .quad Lset1270 -.set Lset1271, Ltmp1640-Lfunc_begin0 - .quad Lset1271 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1272, Ltmp1640-Lfunc_begin0 - .quad Lset1272 -.set Lset1273, Ltmp1642-Lfunc_begin0 - .quad Lset1273 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1274, Ltmp1642-Lfunc_begin0 - .quad Lset1274 -.set Lset1275, Ltmp1645-Lfunc_begin0 - .quad Lset1275 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1276, Ltmp1645-Lfunc_begin0 - .quad Lset1276 -.set Lset1277, Ltmp1649-Lfunc_begin0 - .quad Lset1277 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1278, Ltmp1649-Lfunc_begin0 - .quad Lset1278 -.set Lset1279, Ltmp1650-Lfunc_begin0 - .quad Lset1279 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1280, Ltmp1650-Lfunc_begin0 - .quad Lset1280 -.set Lset1281, Ltmp1653-Lfunc_begin0 - .quad Lset1281 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1282, Ltmp1653-Lfunc_begin0 - .quad Lset1282 -.set Lset1283, Ltmp1658-Lfunc_begin0 - .quad Lset1283 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1284, Ltmp1658-Lfunc_begin0 - .quad Lset1284 -.set Lset1285, Ltmp1676-Lfunc_begin0 - .quad Lset1285 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1286, Ltmp1683-Lfunc_begin0 - .quad Lset1286 -.set Lset1287, Ltmp1687-Lfunc_begin0 - .quad Lset1287 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1288, Ltmp1687-Lfunc_begin0 - .quad Lset1288 -.set Lset1289, Ltmp1693-Lfunc_begin0 - .quad Lset1289 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1290, Ltmp1707-Lfunc_begin0 - .quad Lset1290 -.set Lset1291, Ltmp1713-Lfunc_begin0 - .quad Lset1291 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1292, Ltmp1713-Lfunc_begin0 - .quad Lset1292 -.set Lset1293, Ltmp1713-Lfunc_begin0 - .quad Lset1293 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1294, Ltmp1713-Lfunc_begin0 - .quad Lset1294 -.set Lset1295, Ltmp1714-Lfunc_begin0 - .quad Lset1295 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1296, Ltmp1714-Lfunc_begin0 - .quad Lset1296 -.set Lset1297, Ltmp1714-Lfunc_begin0 - .quad Lset1297 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1298, Ltmp1714-Lfunc_begin0 - .quad Lset1298 -.set Lset1299, Ltmp1727-Lfunc_begin0 - .quad Lset1299 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1300, Ltmp1727-Lfunc_begin0 - .quad Lset1300 -.set Lset1301, Ltmp1733-Lfunc_begin0 - .quad Lset1301 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1302, Ltmp1733-Lfunc_begin0 - .quad Lset1302 -.set Lset1303, Ltmp1746-Lfunc_begin0 - .quad Lset1303 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1304, Ltmp1746-Lfunc_begin0 - .quad Lset1304 -.set Lset1305, Ltmp1752-Lfunc_begin0 - .quad Lset1305 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1306, Ltmp1752-Lfunc_begin0 - .quad Lset1306 -.set Lset1307, Ltmp1754-Lfunc_begin0 - .quad Lset1307 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1308, Ltmp1754-Lfunc_begin0 - .quad Lset1308 -.set Lset1309, Ltmp1760-Lfunc_begin0 - .quad Lset1309 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1310, Ltmp1760-Lfunc_begin0 - .quad Lset1310 -.set Lset1311, Ltmp1767-Lfunc_begin0 - .quad Lset1311 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1312, Ltmp1767-Lfunc_begin0 - .quad Lset1312 -.set Lset1313, Ltmp1778-Lfunc_begin0 - .quad Lset1313 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1314, Ltmp1778-Lfunc_begin0 - .quad Lset1314 -.set Lset1315, Ltmp1780-Lfunc_begin0 - .quad Lset1315 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1316, Ltmp1780-Lfunc_begin0 - .quad Lset1316 -.set Lset1317, Ltmp1792-Lfunc_begin0 - .quad Lset1317 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1318, Ltmp1792-Lfunc_begin0 - .quad Lset1318 -.set Lset1319, Ltmp1794-Lfunc_begin0 - .quad Lset1319 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1320, Ltmp1794-Lfunc_begin0 - .quad Lset1320 -.set Lset1321, Ltmp1797-Lfunc_begin0 - .quad Lset1321 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1322, Ltmp1797-Lfunc_begin0 - .quad Lset1322 -.set Lset1323, Ltmp1801-Lfunc_begin0 - .quad Lset1323 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1324, Ltmp1801-Lfunc_begin0 - .quad Lset1324 -.set Lset1325, Ltmp1802-Lfunc_begin0 - .quad Lset1325 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1326, Ltmp1802-Lfunc_begin0 - .quad Lset1326 -.set Lset1327, Ltmp1805-Lfunc_begin0 - .quad Lset1327 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1328, Ltmp1805-Lfunc_begin0 - .quad Lset1328 -.set Lset1329, Ltmp1810-Lfunc_begin0 - .quad Lset1329 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1330, Ltmp1810-Lfunc_begin0 - .quad Lset1330 -.set Lset1331, Ltmp1828-Lfunc_begin0 - .quad Lset1331 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1332, Ltmp1835-Lfunc_begin0 - .quad Lset1332 -.set Lset1333, Ltmp1839-Lfunc_begin0 - .quad Lset1333 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1334, Ltmp1839-Lfunc_begin0 - .quad Lset1334 -.set Lset1335, Ltmp1844-Lfunc_begin0 - .quad Lset1335 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1336, Ltmp1858-Lfunc_begin0 - .quad Lset1336 -.set Lset1337, Ltmp1864-Lfunc_begin0 - .quad Lset1337 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1338, Ltmp1864-Lfunc_begin0 - .quad Lset1338 -.set Lset1339, Ltmp1864-Lfunc_begin0 - .quad Lset1339 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1340, Ltmp1864-Lfunc_begin0 - .quad Lset1340 -.set Lset1341, Ltmp1865-Lfunc_begin0 - .quad Lset1341 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1342, Ltmp1865-Lfunc_begin0 - .quad Lset1342 -.set Lset1343, Ltmp1865-Lfunc_begin0 - .quad Lset1343 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1344, Ltmp1865-Lfunc_begin0 - .quad Lset1344 -.set Lset1345, Ltmp1866-Lfunc_begin0 - .quad Lset1345 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1346, Ltmp1866-Lfunc_begin0 - .quad Lset1346 -.set Lset1347, Ltmp1872-Lfunc_begin0 - .quad Lset1347 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1348, Ltmp1872-Lfunc_begin0 - .quad Lset1348 -.set Lset1349, Ltmp1885-Lfunc_begin0 - .quad Lset1349 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1350, Ltmp1885-Lfunc_begin0 - .quad Lset1350 -.set Lset1351, Ltmp1891-Lfunc_begin0 - .quad Lset1351 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1352, Ltmp1891-Lfunc_begin0 - .quad Lset1352 -.set Lset1353, Ltmp1899-Lfunc_begin0 - .quad Lset1353 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1354, Ltmp1899-Lfunc_begin0 - .quad Lset1354 -.set Lset1355, Ltmp1910-Lfunc_begin0 - .quad Lset1355 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1356, Ltmp1910-Lfunc_begin0 - .quad Lset1356 -.set Lset1357, Ltmp1912-Lfunc_begin0 - .quad Lset1357 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1358, Ltmp1912-Lfunc_begin0 - .quad Lset1358 -.set Lset1359, Ltmp1924-Lfunc_begin0 - .quad Lset1359 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1360, Ltmp1924-Lfunc_begin0 - .quad Lset1360 -.set Lset1361, Ltmp1926-Lfunc_begin0 - .quad Lset1361 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1362, Ltmp1926-Lfunc_begin0 - .quad Lset1362 -.set Lset1363, Ltmp1929-Lfunc_begin0 - .quad Lset1363 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1364, Ltmp1929-Lfunc_begin0 - .quad Lset1364 -.set Lset1365, Ltmp1933-Lfunc_begin0 - .quad Lset1365 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1366, Ltmp1933-Lfunc_begin0 - .quad Lset1366 -.set Lset1367, Ltmp1934-Lfunc_begin0 - .quad Lset1367 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1368, Ltmp1934-Lfunc_begin0 - .quad Lset1368 -.set Lset1369, Ltmp1937-Lfunc_begin0 - .quad Lset1369 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1370, Ltmp1937-Lfunc_begin0 - .quad Lset1370 -.set Lset1371, Ltmp1942-Lfunc_begin0 - .quad Lset1371 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1372, Ltmp1942-Lfunc_begin0 - .quad Lset1372 -.set Lset1373, Ltmp1960-Lfunc_begin0 - .quad Lset1373 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1374, Ltmp1971-Lfunc_begin0 - .quad Lset1374 -.set Lset1375, Ltmp1983-Lfunc_begin0 - .quad Lset1375 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1376, Ltmp1983-Lfunc_begin0 - .quad Lset1376 -.set Lset1377, Ltmp1998-Lfunc_begin0 - .quad Lset1377 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset1378, Ltmp1998-Lfunc_begin0 - .quad Lset1378 -.set Lset1379, Ltmp2004-Lfunc_begin0 - .quad Lset1379 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1380, Ltmp2004-Lfunc_begin0 - .quad Lset1380 -.set Lset1381, Ltmp2004-Lfunc_begin0 - .quad Lset1381 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1382, Ltmp2004-Lfunc_begin0 - .quad Lset1382 -.set Lset1383, Ltmp2005-Lfunc_begin0 - .quad Lset1383 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1384, Ltmp2005-Lfunc_begin0 - .quad Lset1384 -.set Lset1385, Ltmp2005-Lfunc_begin0 - .quad Lset1385 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1386, Ltmp2005-Lfunc_begin0 - .quad Lset1386 -.set Lset1387, Ltmp2011-Lfunc_begin0 - .quad Lset1387 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1388, Ltmp2011-Lfunc_begin0 - .quad Lset1388 -.set Lset1389, Ltmp2021-Lfunc_begin0 - .quad Lset1389 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1390, Ltmp2021-Lfunc_begin0 - .quad Lset1390 -.set Lset1391, Ltmp2057-Lfunc_begin0 - .quad Lset1391 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1392, Ltmp2057-Lfunc_begin0 - .quad Lset1392 -.set Lset1393, Ltmp2061-Lfunc_begin0 - .quad Lset1393 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1394, Ltmp2061-Lfunc_begin0 - .quad Lset1394 -.set Lset1395, Ltmp2063-Lfunc_begin0 - .quad Lset1395 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1396, Ltmp2063-Lfunc_begin0 - .quad Lset1396 -.set Lset1397, Ltmp2067-Lfunc_begin0 - .quad Lset1397 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1398, Ltmp2068-Lfunc_begin0 - .quad Lset1398 -.set Lset1399, Ltmp2074-Lfunc_begin0 - .quad Lset1399 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1400, Ltmp2074-Lfunc_begin0 - .quad Lset1400 -.set Lset1401, Ltmp2074-Lfunc_begin0 - .quad Lset1401 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1402, Ltmp2074-Lfunc_begin0 - .quad Lset1402 -.set Lset1403, Ltmp2075-Lfunc_begin0 - .quad Lset1403 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1404, Ltmp2075-Lfunc_begin0 - .quad Lset1404 -.set Lset1405, Ltmp2075-Lfunc_begin0 - .quad Lset1405 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1406, Ltmp2075-Lfunc_begin0 - .quad Lset1406 -.set Lset1407, Ltmp2076-Lfunc_begin0 - .quad Lset1407 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1408, Ltmp2082-Lfunc_begin0 - .quad Lset1408 -.set Lset1409, Ltmp2087-Lfunc_begin0 - .quad Lset1409 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1410, Ltmp2087-Lfunc_begin0 - .quad Lset1410 -.set Lset1411, Ltmp2114-Lfunc_begin0 - .quad Lset1411 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset1412, Ltmp2114-Lfunc_begin0 - .quad Lset1412 -.set Lset1413, Ltmp2115-Lfunc_begin0 - .quad Lset1413 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1414, Ltmp2120-Lfunc_begin0 - .quad Lset1414 -.set Lset1415, Ltmp2120-Lfunc_begin0 - .quad Lset1415 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1416, Ltmp2120-Lfunc_begin0 - .quad Lset1416 -.set Lset1417, Ltmp2126-Lfunc_begin0 - .quad Lset1417 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1418, Ltmp2126-Lfunc_begin0 - .quad Lset1418 -.set Lset1419, Ltmp2137-Lfunc_begin0 - .quad Lset1419 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1420, Ltmp2137-Lfunc_begin0 - .quad Lset1420 -.set Lset1421, Ltmp2139-Lfunc_begin0 - .quad Lset1421 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1422, Ltmp2139-Lfunc_begin0 - .quad Lset1422 -.set Lset1423, Ltmp2144-Lfunc_begin0 - .quad Lset1423 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1424, Ltmp2144-Lfunc_begin0 - .quad Lset1424 -.set Lset1425, Ltmp2185-Lfunc_begin0 - .quad Lset1425 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1426, Ltmp2186-Lfunc_begin0 - .quad Lset1426 -.set Lset1427, Ltmp2193-Lfunc_begin0 - .quad Lset1427 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1428, Ltmp2193-Lfunc_begin0 - .quad Lset1428 -.set Lset1429, Ltmp2193-Lfunc_begin0 - .quad Lset1429 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1430, Ltmp2193-Lfunc_begin0 - .quad Lset1430 -.set Lset1431, Ltmp2194-Lfunc_begin0 - .quad Lset1431 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1432, Ltmp2194-Lfunc_begin0 - .quad Lset1432 -.set Lset1433, Ltmp2194-Lfunc_begin0 - .quad Lset1433 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1434, Ltmp2194-Lfunc_begin0 - .quad Lset1434 -.set Lset1435, Ltmp2195-Lfunc_begin0 - .quad Lset1435 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1436, Ltmp2195-Lfunc_begin0 - .quad Lset1436 -.set Lset1437, Ltmp2200-Lfunc_begin0 - .quad Lset1437 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1438, Ltmp2200-Lfunc_begin0 - .quad Lset1438 -.set Lset1439, Ltmp2206-Lfunc_begin0 - .quad Lset1439 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1440, Ltmp2206-Lfunc_begin0 - .quad Lset1440 -.set Lset1441, Ltmp2227-Lfunc_begin0 - .quad Lset1441 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1442, Ltmp2227-Lfunc_begin0 - .quad Lset1442 -.set Lset1443, Ltmp2235-Lfunc_begin0 - .quad Lset1443 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1444, Ltmp2235-Lfunc_begin0 - .quad Lset1444 -.set Lset1445, Ltmp2236-Lfunc_begin0 - .quad Lset1445 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1446, Ltmp2236-Lfunc_begin0 - .quad Lset1446 -.set Lset1447, Ltmp2237-Lfunc_begin0 - .quad Lset1447 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset1448, Ltmp2246-Lfunc_begin0 - .quad Lset1448 -.set Lset1449, Ltmp2253-Lfunc_begin0 - .quad Lset1449 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1450, Ltmp2253-Lfunc_begin0 - .quad Lset1450 -.set Lset1451, Ltmp2253-Lfunc_begin0 - .quad Lset1451 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1452, Ltmp2253-Lfunc_begin0 - .quad Lset1452 -.set Lset1453, Ltmp2254-Lfunc_begin0 - .quad Lset1453 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1454, Ltmp2254-Lfunc_begin0 - .quad Lset1454 -.set Lset1455, Ltmp2254-Lfunc_begin0 - .quad Lset1455 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1456, Ltmp2254-Lfunc_begin0 - .quad Lset1456 -.set Lset1457, Ltmp2255-Lfunc_begin0 - .quad Lset1457 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1458, Ltmp2255-Lfunc_begin0 - .quad Lset1458 -.set Lset1459, Ltmp2261-Lfunc_begin0 - .quad Lset1459 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1460, Ltmp2261-Lfunc_begin0 - .quad Lset1460 -.set Lset1461, Ltmp2284-Lfunc_begin0 - .quad Lset1461 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1462, Ltmp2284-Lfunc_begin0 - .quad Lset1462 -.set Lset1463, Ltmp2289-Lfunc_begin0 - .quad Lset1463 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1464, Ltmp2289-Lfunc_begin0 - .quad Lset1464 -.set Lset1465, Ltmp2294-Lfunc_begin0 - .quad Lset1465 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1466, Ltmp2295-Lfunc_begin0 - .quad Lset1466 -.set Lset1467, Ltmp2302-Lfunc_begin0 - .quad Lset1467 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1468, Ltmp2302-Lfunc_begin0 - .quad Lset1468 -.set Lset1469, Ltmp2302-Lfunc_begin0 - .quad Lset1469 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1470, Ltmp2302-Lfunc_begin0 - .quad Lset1470 -.set Lset1471, Ltmp2303-Lfunc_begin0 - .quad Lset1471 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1472, Ltmp2303-Lfunc_begin0 - .quad Lset1472 -.set Lset1473, Ltmp2303-Lfunc_begin0 - .quad Lset1473 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1474, Ltmp2303-Lfunc_begin0 - .quad Lset1474 -.set Lset1475, Ltmp2304-Lfunc_begin0 - .quad Lset1475 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1476, Ltmp2304-Lfunc_begin0 - .quad Lset1476 -.set Lset1477, Ltmp2310-Lfunc_begin0 - .quad Lset1477 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1478, Ltmp2310-Lfunc_begin0 - .quad Lset1478 -.set Lset1479, Ltmp2333-Lfunc_begin0 - .quad Lset1479 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1480, Ltmp2333-Lfunc_begin0 - .quad Lset1480 -.set Lset1481, Ltmp2338-Lfunc_begin0 - .quad Lset1481 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1482, Ltmp2338-Lfunc_begin0 - .quad Lset1482 -.set Lset1483, Ltmp2343-Lfunc_begin0 - .quad Lset1483 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1484, Ltmp2344-Lfunc_begin0 - .quad Lset1484 -.set Lset1485, Ltmp2351-Lfunc_begin0 - .quad Lset1485 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1486, Ltmp2351-Lfunc_begin0 - .quad Lset1486 -.set Lset1487, Ltmp2351-Lfunc_begin0 - .quad Lset1487 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1488, Ltmp2351-Lfunc_begin0 - .quad Lset1488 -.set Lset1489, Ltmp2352-Lfunc_begin0 - .quad Lset1489 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1490, Ltmp2352-Lfunc_begin0 - .quad Lset1490 -.set Lset1491, Ltmp2352-Lfunc_begin0 - .quad Lset1491 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1492, Ltmp2352-Lfunc_begin0 - .quad Lset1492 -.set Lset1493, Ltmp2353-Lfunc_begin0 - .quad Lset1493 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1494, Ltmp2353-Lfunc_begin0 - .quad Lset1494 -.set Lset1495, Ltmp2359-Lfunc_begin0 - .quad Lset1495 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1496, Ltmp2359-Lfunc_begin0 - .quad Lset1496 -.set Lset1497, Ltmp2382-Lfunc_begin0 - .quad Lset1497 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1498, Ltmp2382-Lfunc_begin0 - .quad Lset1498 -.set Lset1499, Ltmp2387-Lfunc_begin0 - .quad Lset1499 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1500, Ltmp2387-Lfunc_begin0 - .quad Lset1500 -.set Lset1501, Ltmp2392-Lfunc_begin0 - .quad Lset1501 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1502, Ltmp2393-Lfunc_begin0 - .quad Lset1502 -.set Lset1503, Ltmp2400-Lfunc_begin0 - .quad Lset1503 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1504, Ltmp2400-Lfunc_begin0 - .quad Lset1504 -.set Lset1505, Ltmp2400-Lfunc_begin0 - .quad Lset1505 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1506, Ltmp2400-Lfunc_begin0 - .quad Lset1506 -.set Lset1507, Ltmp2401-Lfunc_begin0 - .quad Lset1507 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1508, Ltmp2401-Lfunc_begin0 - .quad Lset1508 -.set Lset1509, Ltmp2401-Lfunc_begin0 - .quad Lset1509 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1510, Ltmp2401-Lfunc_begin0 - .quad Lset1510 -.set Lset1511, Ltmp2402-Lfunc_begin0 - .quad Lset1511 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1512, Ltmp2402-Lfunc_begin0 - .quad Lset1512 -.set Lset1513, Ltmp2408-Lfunc_begin0 - .quad Lset1513 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1514, Ltmp2408-Lfunc_begin0 - .quad Lset1514 -.set Lset1515, Ltmp2425-Lfunc_begin0 - .quad Lset1515 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1516, Ltmp2425-Lfunc_begin0 - .quad Lset1516 -.set Lset1517, Ltmp2430-Lfunc_begin0 - .quad Lset1517 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1518, Ltmp2430-Lfunc_begin0 - .quad Lset1518 -.set Lset1519, Ltmp2436-Lfunc_begin0 - .quad Lset1519 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1520, Ltmp2437-Lfunc_begin0 - .quad Lset1520 -.set Lset1521, Ltmp2444-Lfunc_begin0 - .quad Lset1521 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1522, Ltmp2444-Lfunc_begin0 - .quad Lset1522 -.set Lset1523, Ltmp2444-Lfunc_begin0 - .quad Lset1523 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1524, Ltmp2444-Lfunc_begin0 - .quad Lset1524 -.set Lset1525, Ltmp2445-Lfunc_begin0 - .quad Lset1525 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1526, Ltmp2445-Lfunc_begin0 - .quad Lset1526 -.set Lset1527, Ltmp2445-Lfunc_begin0 - .quad Lset1527 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1528, Ltmp2445-Lfunc_begin0 - .quad Lset1528 -.set Lset1529, Ltmp2450-Lfunc_begin0 - .quad Lset1529 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1530, Ltmp2450-Lfunc_begin0 - .quad Lset1530 -.set Lset1531, Ltmp2456-Lfunc_begin0 - .quad Lset1531 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1532, Ltmp2456-Lfunc_begin0 - .quad Lset1532 -.set Lset1533, Ltmp2486-Lfunc_begin0 - .quad Lset1533 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1534, Ltmp2486-Lfunc_begin0 - .quad Lset1534 -.set Lset1535, Ltmp2491-Lfunc_begin0 - .quad Lset1535 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1536, Ltmp2492-Lfunc_begin0 - .quad Lset1536 -.set Lset1537, Ltmp2499-Lfunc_begin0 - .quad Lset1537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1538, Ltmp2499-Lfunc_begin0 - .quad Lset1538 -.set Lset1539, Ltmp2499-Lfunc_begin0 - .quad Lset1539 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1540, Ltmp2499-Lfunc_begin0 - .quad Lset1540 -.set Lset1541, Ltmp2500-Lfunc_begin0 - .quad Lset1541 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1542, Ltmp2500-Lfunc_begin0 - .quad Lset1542 -.set Lset1543, Ltmp2500-Lfunc_begin0 - .quad Lset1543 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1544, Ltmp2500-Lfunc_begin0 - .quad Lset1544 -.set Lset1545, Ltmp2505-Lfunc_begin0 - .quad Lset1545 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1546, Ltmp2505-Lfunc_begin0 - .quad Lset1546 -.set Lset1547, Ltmp2511-Lfunc_begin0 - .quad Lset1547 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1548, Ltmp2511-Lfunc_begin0 - .quad Lset1548 -.set Lset1549, Ltmp2541-Lfunc_begin0 - .quad Lset1549 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1550, Ltmp2541-Lfunc_begin0 - .quad Lset1550 -.set Lset1551, Ltmp2546-Lfunc_begin0 - .quad Lset1551 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1552, Ltmp2547-Lfunc_begin0 - .quad Lset1552 -.set Lset1553, Ltmp2554-Lfunc_begin0 - .quad Lset1553 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1554, Ltmp2554-Lfunc_begin0 - .quad Lset1554 -.set Lset1555, Ltmp2554-Lfunc_begin0 - .quad Lset1555 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1556, Ltmp2554-Lfunc_begin0 - .quad Lset1556 -.set Lset1557, Ltmp2555-Lfunc_begin0 - .quad Lset1557 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1558, Ltmp2555-Lfunc_begin0 - .quad Lset1558 -.set Lset1559, Ltmp2555-Lfunc_begin0 - .quad Lset1559 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1560, Ltmp2555-Lfunc_begin0 - .quad Lset1560 -.set Lset1561, Ltmp2560-Lfunc_begin0 - .quad Lset1561 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1562, Ltmp2560-Lfunc_begin0 - .quad Lset1562 -.set Lset1563, Ltmp2566-Lfunc_begin0 - .quad Lset1563 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1564, Ltmp2566-Lfunc_begin0 - .quad Lset1564 -.set Lset1565, Ltmp2596-Lfunc_begin0 - .quad Lset1565 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1566, Ltmp2596-Lfunc_begin0 - .quad Lset1566 -.set Lset1567, Ltmp2601-Lfunc_begin0 - .quad Lset1567 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1568, Ltmp2602-Lfunc_begin0 - .quad Lset1568 -.set Lset1569, Ltmp2609-Lfunc_begin0 - .quad Lset1569 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1570, Ltmp2609-Lfunc_begin0 - .quad Lset1570 -.set Lset1571, Ltmp2609-Lfunc_begin0 - .quad Lset1571 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1572, Ltmp2609-Lfunc_begin0 - .quad Lset1572 -.set Lset1573, Ltmp2610-Lfunc_begin0 - .quad Lset1573 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1574, Ltmp2610-Lfunc_begin0 - .quad Lset1574 -.set Lset1575, Ltmp2610-Lfunc_begin0 - .quad Lset1575 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1576, Ltmp2610-Lfunc_begin0 - .quad Lset1576 -.set Lset1577, Ltmp2621-Lfunc_begin0 - .quad Lset1577 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1578, Ltmp2621-Lfunc_begin0 - .quad Lset1578 -.set Lset1579, Ltmp2627-Lfunc_begin0 - .quad Lset1579 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1580, Ltmp2627-Lfunc_begin0 - .quad Lset1580 -.set Lset1581, Ltmp2660-Lfunc_begin0 - .quad Lset1581 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1582, Ltmp2660-Lfunc_begin0 - .quad Lset1582 -.set Lset1583, Ltmp2665-Lfunc_begin0 - .quad Lset1583 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1584, Ltmp2666-Lfunc_begin0 - .quad Lset1584 -.set Lset1585, Ltmp2673-Lfunc_begin0 - .quad Lset1585 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1586, Ltmp2673-Lfunc_begin0 - .quad Lset1586 -.set Lset1587, Ltmp2673-Lfunc_begin0 - .quad Lset1587 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1588, Ltmp2673-Lfunc_begin0 - .quad Lset1588 -.set Lset1589, Ltmp2674-Lfunc_begin0 - .quad Lset1589 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1590, Ltmp2674-Lfunc_begin0 - .quad Lset1590 -.set Lset1591, Ltmp2674-Lfunc_begin0 - .quad Lset1591 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1592, Ltmp2674-Lfunc_begin0 - .quad Lset1592 -.set Lset1593, Ltmp2686-Lfunc_begin0 - .quad Lset1593 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1594, Ltmp2686-Lfunc_begin0 - .quad Lset1594 -.set Lset1595, Ltmp2692-Lfunc_begin0 - .quad Lset1595 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1596, Ltmp2692-Lfunc_begin0 - .quad Lset1596 -.set Lset1597, Ltmp2725-Lfunc_begin0 - .quad Lset1597 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1598, Ltmp2725-Lfunc_begin0 - .quad Lset1598 -.set Lset1599, Ltmp2730-Lfunc_begin0 - .quad Lset1599 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1600, Ltmp2731-Lfunc_begin0 - .quad Lset1600 -.set Lset1601, Ltmp2738-Lfunc_begin0 - .quad Lset1601 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1602, Ltmp2738-Lfunc_begin0 - .quad Lset1602 -.set Lset1603, Ltmp2738-Lfunc_begin0 - .quad Lset1603 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1604, Ltmp2738-Lfunc_begin0 - .quad Lset1604 -.set Lset1605, Ltmp2739-Lfunc_begin0 - .quad Lset1605 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1606, Ltmp2739-Lfunc_begin0 - .quad Lset1606 -.set Lset1607, Ltmp2739-Lfunc_begin0 - .quad Lset1607 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1608, Ltmp2739-Lfunc_begin0 - .quad Lset1608 -.set Lset1609, Ltmp2740-Lfunc_begin0 - .quad Lset1609 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1610, Ltmp2740-Lfunc_begin0 - .quad Lset1610 -.set Lset1611, Ltmp2746-Lfunc_begin0 - .quad Lset1611 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1612, Ltmp2746-Lfunc_begin0 - .quad Lset1612 -.set Lset1613, Ltmp2772-Lfunc_begin0 - .quad Lset1613 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1614, Ltmp2772-Lfunc_begin0 - .quad Lset1614 -.set Lset1615, Ltmp2774-Lfunc_begin0 - .quad Lset1615 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1616, Ltmp2774-Lfunc_begin0 - .quad Lset1616 -.set Lset1617, Ltmp2777-Lfunc_begin0 - .quad Lset1617 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1618, Ltmp2777-Lfunc_begin0 - .quad Lset1618 -.set Lset1619, Ltmp2782-Lfunc_begin0 - .quad Lset1619 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1620, Ltmp2782-Lfunc_begin0 - .quad Lset1620 -.set Lset1621, Ltmp2787-Lfunc_begin0 - .quad Lset1621 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1622, Ltmp2787-Lfunc_begin0 - .quad Lset1622 -.set Lset1623, Ltmp2797-Lfunc_begin0 - .quad Lset1623 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1624, Ltmp2797-Lfunc_begin0 - .quad Lset1624 -.set Lset1625, Ltmp2803-Lfunc_begin0 - .quad Lset1625 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1626, Ltmp2804-Lfunc_begin0 - .quad Lset1626 -.set Lset1627, Ltmp2811-Lfunc_begin0 - .quad Lset1627 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1628, Ltmp2811-Lfunc_begin0 - .quad Lset1628 -.set Lset1629, Ltmp2811-Lfunc_begin0 - .quad Lset1629 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1630, Ltmp2811-Lfunc_begin0 - .quad Lset1630 -.set Lset1631, Ltmp2812-Lfunc_begin0 - .quad Lset1631 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1632, Ltmp2812-Lfunc_begin0 - .quad Lset1632 -.set Lset1633, Ltmp2812-Lfunc_begin0 - .quad Lset1633 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1634, Ltmp2812-Lfunc_begin0 - .quad Lset1634 -.set Lset1635, Ltmp2813-Lfunc_begin0 - .quad Lset1635 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1636, Ltmp2813-Lfunc_begin0 - .quad Lset1636 -.set Lset1637, Ltmp2819-Lfunc_begin0 - .quad Lset1637 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1638, Ltmp2819-Lfunc_begin0 - .quad Lset1638 -.set Lset1639, Ltmp2847-Lfunc_begin0 - .quad Lset1639 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1640, Ltmp2847-Lfunc_begin0 - .quad Lset1640 -.set Lset1641, Ltmp2852-Lfunc_begin0 - .quad Lset1641 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1642, Ltmp2852-Lfunc_begin0 - .quad Lset1642 -.set Lset1643, Ltmp2863-Lfunc_begin0 - .quad Lset1643 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1644, Ltmp2864-Lfunc_begin0 - .quad Lset1644 -.set Lset1645, Ltmp2871-Lfunc_begin0 - .quad Lset1645 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1646, Ltmp2871-Lfunc_begin0 - .quad Lset1646 -.set Lset1647, Ltmp2871-Lfunc_begin0 - .quad Lset1647 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1648, Ltmp2871-Lfunc_begin0 - .quad Lset1648 -.set Lset1649, Ltmp2872-Lfunc_begin0 - .quad Lset1649 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1650, Ltmp2872-Lfunc_begin0 - .quad Lset1650 -.set Lset1651, Ltmp2872-Lfunc_begin0 - .quad Lset1651 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1652, Ltmp2872-Lfunc_begin0 - .quad Lset1652 -.set Lset1653, Ltmp2873-Lfunc_begin0 - .quad Lset1653 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1654, Ltmp2873-Lfunc_begin0 - .quad Lset1654 -.set Lset1655, Ltmp2880-Lfunc_begin0 - .quad Lset1655 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1656, Ltmp2880-Lfunc_begin0 - .quad Lset1656 -.set Lset1657, Ltmp2895-Lfunc_begin0 - .quad Lset1657 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1658, Ltmp2895-Lfunc_begin0 - .quad Lset1658 -.set Lset1659, Ltmp2897-Lfunc_begin0 - .quad Lset1659 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1660, Ltmp2897-Lfunc_begin0 - .quad Lset1660 -.set Lset1661, Ltmp2900-Lfunc_begin0 - .quad Lset1661 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1662, Ltmp2900-Lfunc_begin0 - .quad Lset1662 -.set Lset1663, Ltmp2904-Lfunc_begin0 - .quad Lset1663 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1664, Ltmp2904-Lfunc_begin0 - .quad Lset1664 -.set Lset1665, Ltmp2910-Lfunc_begin0 - .quad Lset1665 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1666, Ltmp2910-Lfunc_begin0 - .quad Lset1666 -.set Lset1667, Ltmp2914-Lfunc_begin0 - .quad Lset1667 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1668, Ltmp2914-Lfunc_begin0 - .quad Lset1668 -.set Lset1669, Ltmp2922-Lfunc_begin0 - .quad Lset1669 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1670, Ltmp2922-Lfunc_begin0 - .quad Lset1670 -.set Lset1671, Ltmp2922-Lfunc_begin0 - .quad Lset1671 - .short 3 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1672, Ltmp2922-Lfunc_begin0 - .quad Lset1672 -.set Lset1673, Ltmp2923-Lfunc_begin0 - .quad Lset1673 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset1674, Ltmp2923-Lfunc_begin0 - .quad Lset1674 -.set Lset1675, Ltmp2923-Lfunc_begin0 - .quad Lset1675 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1676, Ltmp2923-Lfunc_begin0 - .quad Lset1676 -.set Lset1677, Ltmp2924-Lfunc_begin0 - .quad Lset1677 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1678, Ltmp2930-Lfunc_begin0 - .quad Lset1678 -.set Lset1679, Ltmp2946-Lfunc_begin0 - .quad Lset1679 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1680, Ltmp2946-Lfunc_begin0 - .quad Lset1680 -.set Lset1681, Ltmp2950-Lfunc_begin0 - .quad Lset1681 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1682, Ltmp2950-Lfunc_begin0 - .quad Lset1682 -.set Lset1683, Ltmp2951-Lfunc_begin0 - .quad Lset1683 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1684, Ltmp2957-Lfunc_begin0 - .quad Lset1684 -.set Lset1685, Ltmp2957-Lfunc_begin0 - .quad Lset1685 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1686, Ltmp2957-Lfunc_begin0 - .quad Lset1686 -.set Lset1687, Ltmp2962-Lfunc_begin0 - .quad Lset1687 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1688, Ltmp2962-Lfunc_begin0 - .quad Lset1688 -.set Lset1689, Ltmp2968-Lfunc_begin0 - .quad Lset1689 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1690, Ltmp2968-Lfunc_begin0 - .quad Lset1690 -.set Lset1691, Ltmp2985-Lfunc_begin0 - .quad Lset1691 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1692, Ltmp2985-Lfunc_begin0 - .quad Lset1692 -.set Lset1693, Ltmp2989-Lfunc_begin0 - .quad Lset1693 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1694, Ltmp2990-Lfunc_begin0 - .quad Lset1694 -.set Lset1695, Ltmp2997-Lfunc_begin0 - .quad Lset1695 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1696, Ltmp2997-Lfunc_begin0 - .quad Lset1696 -.set Lset1697, Ltmp2997-Lfunc_begin0 - .quad Lset1697 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1698, Ltmp2997-Lfunc_begin0 - .quad Lset1698 -.set Lset1699, Ltmp2998-Lfunc_begin0 - .quad Lset1699 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1700, Ltmp2998-Lfunc_begin0 - .quad Lset1700 -.set Lset1701, Ltmp2998-Lfunc_begin0 - .quad Lset1701 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1702, Ltmp2998-Lfunc_begin0 - .quad Lset1702 -.set Lset1703, Ltmp2999-Lfunc_begin0 - .quad Lset1703 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1704, Ltmp3006-Lfunc_begin0 - .quad Lset1704 -.set Lset1705, Ltmp3018-Lfunc_begin0 - .quad Lset1705 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1706, Ltmp3024-Lfunc_begin0 - .quad Lset1706 -.set Lset1707, Ltmp3024-Lfunc_begin0 - .quad Lset1707 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1708, Ltmp3024-Lfunc_begin0 - .quad Lset1708 -.set Lset1709, Ltmp3025-Lfunc_begin0 - .quad Lset1709 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1710, Ltmp3029-Lfunc_begin0 - .quad Lset1710 -.set Lset1711, Ltmp3034-Lfunc_begin0 - .quad Lset1711 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1712, Ltmp3034-Lfunc_begin0 - .quad Lset1712 -.set Lset1713, Ltmp3038-Lfunc_begin0 - .quad Lset1713 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1714, Ltmp3047-Lfunc_begin0 - .quad Lset1714 -.set Lset1715, Ltmp3047-Lfunc_begin0 - .quad Lset1715 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1716, Ltmp3047-Lfunc_begin0 - .quad Lset1716 -.set Lset1717, Ltmp3048-Lfunc_begin0 - .quad Lset1717 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1718, Ltmp3054-Lfunc_begin0 - .quad Lset1718 -.set Lset1719, Ltmp3062-Lfunc_begin0 - .quad Lset1719 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1720, Ltmp3088-Lfunc_begin0 - .quad Lset1720 -.set Lset1721, Ltmp3089-Lfunc_begin0 - .quad Lset1721 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1722, Ltmp3096-Lfunc_begin0 - .quad Lset1722 -.set Lset1723, Ltmp3096-Lfunc_begin0 - .quad Lset1723 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1724, Ltmp3096-Lfunc_begin0 - .quad Lset1724 -.set Lset1725, Ltmp3097-Lfunc_begin0 - .quad Lset1725 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1726, Ltmp3097-Lfunc_begin0 - .quad Lset1726 -.set Lset1727, Ltmp3101-Lfunc_begin0 - .quad Lset1727 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1728, Ltmp3101-Lfunc_begin0 - .quad Lset1728 -.set Lset1729, Ltmp3107-Lfunc_begin0 - .quad Lset1729 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1730, Ltmp3107-Lfunc_begin0 - .quad Lset1730 -.set Lset1731, Ltmp3110-Lfunc_begin0 - .quad Lset1731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1732, Ltmp3112-Lfunc_begin0 - .quad Lset1732 -.set Lset1733, Ltmp3120-Lfunc_begin0 - .quad Lset1733 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1734, Ltmp3120-Lfunc_begin0 - .quad Lset1734 -.set Lset1735, Ltmp3120-Lfunc_begin0 - .quad Lset1735 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1736, Ltmp3120-Lfunc_begin0 - .quad Lset1736 -.set Lset1737, Ltmp3121-Lfunc_begin0 - .quad Lset1737 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1738, Ltmp3121-Lfunc_begin0 - .quad Lset1738 -.set Lset1739, Ltmp3121-Lfunc_begin0 - .quad Lset1739 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1740, Ltmp3121-Lfunc_begin0 - .quad Lset1740 -.set Lset1741, Ltmp3122-Lfunc_begin0 - .quad Lset1741 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1742, Ltmp3122-Lfunc_begin0 - .quad Lset1742 -.set Lset1743, Ltmp3127-Lfunc_begin0 - .quad Lset1743 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1744, Ltmp3127-Lfunc_begin0 - .quad Lset1744 -.set Lset1745, Ltmp3135-Lfunc_begin0 - .quad Lset1745 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1746, Ltmp3135-Lfunc_begin0 - .quad Lset1746 -.set Lset1747, Ltmp3146-Lfunc_begin0 - .quad Lset1747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1748, Ltmp3151-Lfunc_begin0 - .quad Lset1748 -.set Lset1749, Ltmp3153-Lfunc_begin0 - .quad Lset1749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1750, Ltmp3154-Lfunc_begin0 - .quad Lset1750 -.set Lset1751, Ltmp3161-Lfunc_begin0 - .quad Lset1751 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1752, Ltmp3161-Lfunc_begin0 - .quad Lset1752 -.set Lset1753, Ltmp3161-Lfunc_begin0 - .quad Lset1753 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1754, Ltmp3161-Lfunc_begin0 - .quad Lset1754 -.set Lset1755, Ltmp3162-Lfunc_begin0 - .quad Lset1755 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1756, Ltmp3162-Lfunc_begin0 - .quad Lset1756 -.set Lset1757, Ltmp3162-Lfunc_begin0 - .quad Lset1757 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1758, Ltmp3162-Lfunc_begin0 - .quad Lset1758 -.set Lset1759, Ltmp3163-Lfunc_begin0 - .quad Lset1759 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1760, Ltmp3169-Lfunc_begin0 - .quad Lset1760 -.set Lset1761, Ltmp3179-Lfunc_begin0 - .quad Lset1761 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1762, Ltmp3179-Lfunc_begin0 - .quad Lset1762 -.set Lset1763, Ltmp3183-Lfunc_begin0 - .quad Lset1763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1764, Ltmp3183-Lfunc_begin0 - .quad Lset1764 -.set Lset1765, Ltmp3188-Lfunc_begin0 - .quad Lset1765 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1766, Ltmp3188-Lfunc_begin0 - .quad Lset1766 -.set Lset1767, Ltmp3197-Lfunc_begin0 - .quad Lset1767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1768, Ltmp3199-Lfunc_begin0 - .quad Lset1768 -.set Lset1769, Ltmp3203-Lfunc_begin0 - .quad Lset1769 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1770, Ltmp3220-Lfunc_begin0 - .quad Lset1770 -.set Lset1771, Ltmp3222-Lfunc_begin0 - .quad Lset1771 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1772, Ltmp3227-Lfunc_begin0 - .quad Lset1772 -.set Lset1773, Ltmp3227-Lfunc_begin0 - .quad Lset1773 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1774, Ltmp3227-Lfunc_begin0 - .quad Lset1774 -.set Lset1775, Ltmp3228-Lfunc_begin0 - .quad Lset1775 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1776, Ltmp3234-Lfunc_begin0 - .quad Lset1776 -.set Lset1777, Ltmp3244-Lfunc_begin0 - .quad Lset1777 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1778, Ltmp3244-Lfunc_begin0 - .quad Lset1778 -.set Lset1779, Ltmp3248-Lfunc_begin0 - .quad Lset1779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1780, Ltmp3248-Lfunc_begin0 - .quad Lset1780 -.set Lset1781, Ltmp3253-Lfunc_begin0 - .quad Lset1781 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1782, Ltmp3253-Lfunc_begin0 - .quad Lset1782 -.set Lset1783, Ltmp3262-Lfunc_begin0 - .quad Lset1783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1784, Ltmp3264-Lfunc_begin0 - .quad Lset1784 -.set Lset1785, Ltmp3268-Lfunc_begin0 - .quad Lset1785 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1786, Ltmp3285-Lfunc_begin0 - .quad Lset1786 -.set Lset1787, Ltmp3287-Lfunc_begin0 - .quad Lset1787 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1788, Ltmp3292-Lfunc_begin0 - .quad Lset1788 -.set Lset1789, Ltmp3292-Lfunc_begin0 - .quad Lset1789 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1790, Ltmp3292-Lfunc_begin0 - .quad Lset1790 -.set Lset1791, Ltmp3293-Lfunc_begin0 - .quad Lset1791 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1792, Ltmp3299-Lfunc_begin0 - .quad Lset1792 -.set Lset1793, Ltmp3317-Lfunc_begin0 - .quad Lset1793 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1794, Ltmp3317-Lfunc_begin0 - .quad Lset1794 -.set Lset1795, Ltmp3320-Lfunc_begin0 - .quad Lset1795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1796, Ltmp3322-Lfunc_begin0 - .quad Lset1796 -.set Lset1797, Ltmp3324-Lfunc_begin0 - .quad Lset1797 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1798, Ltmp3329-Lfunc_begin0 - .quad Lset1798 -.set Lset1799, Ltmp3329-Lfunc_begin0 - .quad Lset1799 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1800, Ltmp3329-Lfunc_begin0 - .quad Lset1800 -.set Lset1801, Ltmp3330-Lfunc_begin0 - .quad Lset1801 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1802, Ltmp3336-Lfunc_begin0 - .quad Lset1802 -.set Lset1803, Ltmp3362-Lfunc_begin0 - .quad Lset1803 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1804, Ltmp3362-Lfunc_begin0 - .quad Lset1804 -.set Lset1805, Ltmp3365-Lfunc_begin0 - .quad Lset1805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1806, Ltmp3367-Lfunc_begin0 - .quad Lset1806 -.set Lset1807, Ltmp3370-Lfunc_begin0 - .quad Lset1807 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1808, Ltmp3375-Lfunc_begin0 - .quad Lset1808 -.set Lset1809, Ltmp3375-Lfunc_begin0 - .quad Lset1809 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1810, Ltmp3375-Lfunc_begin0 - .quad Lset1810 -.set Lset1811, Ltmp3376-Lfunc_begin0 - .quad Lset1811 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1812, Ltmp3381-Lfunc_begin0 - .quad Lset1812 -.set Lset1813, Ltmp3390-Lfunc_begin0 - .quad Lset1813 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1814, Ltmp3399-Lfunc_begin0 - .quad Lset1814 -.set Lset1815, Ltmp3400-Lfunc_begin0 - .quad Lset1815 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1816, Ltmp3407-Lfunc_begin0 - .quad Lset1816 -.set Lset1817, Ltmp3407-Lfunc_begin0 - .quad Lset1817 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1818, Ltmp3407-Lfunc_begin0 - .quad Lset1818 -.set Lset1819, Ltmp3408-Lfunc_begin0 - .quad Lset1819 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1820, Ltmp3414-Lfunc_begin0 - .quad Lset1820 -.set Lset1821, Ltmp3422-Lfunc_begin0 - .quad Lset1821 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1822, Ltmp3422-Lfunc_begin0 - .quad Lset1822 -.set Lset1823, Ltmp3427-Lfunc_begin0 - .quad Lset1823 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1824, Ltmp3435-Lfunc_begin0 - .quad Lset1824 -.set Lset1825, Ltmp3435-Lfunc_begin0 - .quad Lset1825 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1826, Ltmp3435-Lfunc_begin0 - .quad Lset1826 -.set Lset1827, Ltmp3436-Lfunc_begin0 - .quad Lset1827 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1828, Ltmp3436-Lfunc_begin0 - .quad Lset1828 -.set Lset1829, Ltmp3438-Lfunc_begin0 - .quad Lset1829 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1830, Ltmp3465-Lfunc_begin0 - .quad Lset1830 -.set Lset1831, Ltmp3471-Lfunc_begin0 - .quad Lset1831 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1832, Ltmp3471-Lfunc_begin0 - .quad Lset1832 -.set Lset1833, Ltmp3473-Lfunc_begin0 - .quad Lset1833 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1834, Ltmp3489-Lfunc_begin0 - .quad Lset1834 -.set Lset1835, Ltmp3499-Lfunc_begin0 - .quad Lset1835 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1836, Ltmp3505-Lfunc_begin0 - .quad Lset1836 -.set Lset1837, Ltmp3531-Lfunc_begin0 - .quad Lset1837 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1838, Ltmp3537-Lfunc_begin0 - .quad Lset1838 -.set Lset1839, Ltmp3537-Lfunc_begin0 - .quad Lset1839 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1840, Ltmp3537-Lfunc_begin0 - .quad Lset1840 -.set Lset1841, Ltmp3538-Lfunc_begin0 - .quad Lset1841 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1842, Ltmp3538-Lfunc_begin0 - .quad Lset1842 -.set Lset1843, Ltmp3544-Lfunc_begin0 - .quad Lset1843 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1844, Ltmp3560-Lfunc_begin0 - .quad Lset1844 -.set Lset1845, Ltmp3573-Lfunc_begin0 - .quad Lset1845 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1846, Ltmp3573-Lfunc_begin0 - .quad Lset1846 -.set Lset1847, Ltmp3631-Lfunc_begin0 - .quad Lset1847 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset1848, Ltmp3631-Lfunc_begin0 - .quad Lset1848 -.set Lset1849, Ltmp3638-Lfunc_begin0 - .quad Lset1849 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1850, Ltmp3638-Lfunc_begin0 - .quad Lset1850 -.set Lset1851, Ltmp3638-Lfunc_begin0 - .quad Lset1851 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1852, Ltmp3638-Lfunc_begin0 - .quad Lset1852 -.set Lset1853, Ltmp3639-Lfunc_begin0 - .quad Lset1853 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1854, Ltmp3639-Lfunc_begin0 - .quad Lset1854 -.set Lset1855, Ltmp3639-Lfunc_begin0 - .quad Lset1855 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1856, Ltmp3639-Lfunc_begin0 - .quad Lset1856 -.set Lset1857, Ltmp3660-Lfunc_begin0 - .quad Lset1857 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1858, Ltmp3660-Lfunc_begin0 - .quad Lset1858 -.set Lset1859, Ltmp3667-Lfunc_begin0 - .quad Lset1859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1860, Ltmp3667-Lfunc_begin0 - .quad Lset1860 -.set Lset1861, Ltmp3679-Lfunc_begin0 - .quad Lset1861 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1862, Ltmp3685-Lfunc_begin0 - .quad Lset1862 -.set Lset1863, Ltmp3685-Lfunc_begin0 - .quad Lset1863 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1864, Ltmp3685-Lfunc_begin0 - .quad Lset1864 -.set Lset1865, Ltmp3686-Lfunc_begin0 - .quad Lset1865 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1866, Ltmp3698-Lfunc_begin0 - .quad Lset1866 -.set Lset1867, Ltmp3726-Lfunc_begin0 - .quad Lset1867 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1868, Ltmp3739-Lfunc_begin0 - .quad Lset1868 -.set Lset1869, Ltmp3748-Lfunc_begin0 - .quad Lset1869 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1870, Ltmp3755-Lfunc_begin0 - .quad Lset1870 -.set Lset1871, Ltmp3758-Lfunc_begin0 - .quad Lset1871 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1872, Ltmp3763-Lfunc_begin0 - .quad Lset1872 -.set Lset1873, Ltmp3774-Lfunc_begin0 - .quad Lset1873 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1874, Ltmp3775-Lfunc_begin0 - .quad Lset1874 -.set Lset1875, Ltmp3777-Lfunc_begin0 - .quad Lset1875 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1876, Ltmp3786-Lfunc_begin0 - .quad Lset1876 -.set Lset1877, Ltmp3799-Lfunc_begin0 - .quad Lset1877 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1878, Ltmp3800-Lfunc_begin0 - .quad Lset1878 -.set Lset1879, Ltmp3802-Lfunc_begin0 - .quad Lset1879 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1880, Ltmp3807-Lfunc_begin0 - .quad Lset1880 -.set Lset1881, Ltmp3807-Lfunc_begin0 - .quad Lset1881 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1882, Ltmp3807-Lfunc_begin0 - .quad Lset1882 -.set Lset1883, Ltmp3809-Lfunc_begin0 - .quad Lset1883 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1884, Ltmp3815-Lfunc_begin0 - .quad Lset1884 -.set Lset1885, Ltmp3840-Lfunc_begin0 - .quad Lset1885 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1886, Ltmp3841-Lfunc_begin0 - .quad Lset1886 -.set Lset1887, Ltmp3844-Lfunc_begin0 - .quad Lset1887 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1888, Ltmp3844-Lfunc_begin0 - .quad Lset1888 -.set Lset1889, Ltmp3846-Lfunc_begin0 - .quad Lset1889 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset1890, Ltmp3857-Lfunc_begin0 - .quad Lset1890 -.set Lset1891, Ltmp3858-Lfunc_begin0 - .quad Lset1891 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1892, Ltmp3864-Lfunc_begin0 - .quad Lset1892 -.set Lset1893, Ltmp3864-Lfunc_begin0 - .quad Lset1893 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1894, Ltmp3864-Lfunc_begin0 - .quad Lset1894 -.set Lset1895, Ltmp3870-Lfunc_begin0 - .quad Lset1895 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1896, Ltmp3870-Lfunc_begin0 - .quad Lset1896 -.set Lset1897, Ltmp3887-Lfunc_begin0 - .quad Lset1897 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset1898, Ltmp3887-Lfunc_begin0 - .quad Lset1898 -.set Lset1899, Ltmp3897-Lfunc_begin0 - .quad Lset1899 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1900, Ltmp3926-Lfunc_begin0 - .quad Lset1900 -.set Lset1901, Ltmp3927-Lfunc_begin0 - .quad Lset1901 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1902, Ltmp3933-Lfunc_begin0 - .quad Lset1902 -.set Lset1903, Ltmp3933-Lfunc_begin0 - .quad Lset1903 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1904, Ltmp3933-Lfunc_begin0 - .quad Lset1904 -.set Lset1905, Ltmp3934-Lfunc_begin0 - .quad Lset1905 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1906, Ltmp3941-Lfunc_begin0 - .quad Lset1906 -.set Lset1907, Ltmp3953-Lfunc_begin0 - .quad Lset1907 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1908, Ltmp3959-Lfunc_begin0 - .quad Lset1908 -.set Lset1909, Ltmp3959-Lfunc_begin0 - .quad Lset1909 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1910, Ltmp3959-Lfunc_begin0 - .quad Lset1910 -.set Lset1911, Ltmp3960-Lfunc_begin0 - .quad Lset1911 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1912, Ltmp3967-Lfunc_begin0 - .quad Lset1912 -.set Lset1913, Ltmp3979-Lfunc_begin0 - .quad Lset1913 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1914, Ltmp3985-Lfunc_begin0 - .quad Lset1914 -.set Lset1915, Ltmp3985-Lfunc_begin0 - .quad Lset1915 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1916, Ltmp3985-Lfunc_begin0 - .quad Lset1916 -.set Lset1917, Ltmp3986-Lfunc_begin0 - .quad Lset1917 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1918, Ltmp3993-Lfunc_begin0 - .quad Lset1918 -.set Lset1919, Ltmp4005-Lfunc_begin0 - .quad Lset1919 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1920, Ltmp4011-Lfunc_begin0 - .quad Lset1920 -.set Lset1921, Ltmp4011-Lfunc_begin0 - .quad Lset1921 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1922, Ltmp4011-Lfunc_begin0 - .quad Lset1922 -.set Lset1923, Ltmp4012-Lfunc_begin0 - .quad Lset1923 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1924, Ltmp4018-Lfunc_begin0 - .quad Lset1924 -.set Lset1925, Ltmp4040-Lfunc_begin0 - .quad Lset1925 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1926, Ltmp4046-Lfunc_begin0 - .quad Lset1926 -.set Lset1927, Ltmp4046-Lfunc_begin0 - .quad Lset1927 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1928, Ltmp4046-Lfunc_begin0 - .quad Lset1928 -.set Lset1929, Ltmp4047-Lfunc_begin0 - .quad Lset1929 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1930, Ltmp4054-Lfunc_begin0 - .quad Lset1930 -.set Lset1931, Ltmp4078-Lfunc_begin0 - .quad Lset1931 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1932, Ltmp4084-Lfunc_begin0 - .quad Lset1932 -.set Lset1933, Ltmp4084-Lfunc_begin0 - .quad Lset1933 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1934, Ltmp4084-Lfunc_begin0 - .quad Lset1934 -.set Lset1935, Ltmp4085-Lfunc_begin0 - .quad Lset1935 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1936, Ltmp4091-Lfunc_begin0 - .quad Lset1936 -.set Lset1937, Ltmp4100-Lfunc_begin0 - .quad Lset1937 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1938, Ltmp4106-Lfunc_begin0 - .quad Lset1938 -.set Lset1939, Ltmp4106-Lfunc_begin0 - .quad Lset1939 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1940, Ltmp4106-Lfunc_begin0 - .quad Lset1940 -.set Lset1941, Ltmp4107-Lfunc_begin0 - .quad Lset1941 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1942, Ltmp4113-Lfunc_begin0 - .quad Lset1942 -.set Lset1943, Ltmp4132-Lfunc_begin0 - .quad Lset1943 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1944, Ltmp4132-Lfunc_begin0 - .quad Lset1944 -.set Lset1945, Ltmp4135-Lfunc_begin0 - .quad Lset1945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1946, Ltmp4137-Lfunc_begin0 - .quad Lset1946 -.set Lset1947, Ltmp4141-Lfunc_begin0 - .quad Lset1947 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1948, Ltmp4146-Lfunc_begin0 - .quad Lset1948 -.set Lset1949, Ltmp4146-Lfunc_begin0 - .quad Lset1949 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1950, Ltmp4146-Lfunc_begin0 - .quad Lset1950 -.set Lset1951, Ltmp4147-Lfunc_begin0 - .quad Lset1951 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1952, Ltmp4153-Lfunc_begin0 - .quad Lset1952 -.set Lset1953, Ltmp4173-Lfunc_begin0 - .quad Lset1953 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1954, Ltmp4173-Lfunc_begin0 - .quad Lset1954 -.set Lset1955, Ltmp4176-Lfunc_begin0 - .quad Lset1955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1956, Ltmp4178-Lfunc_begin0 - .quad Lset1956 -.set Lset1957, Ltmp4182-Lfunc_begin0 - .quad Lset1957 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1958, Ltmp4187-Lfunc_begin0 - .quad Lset1958 -.set Lset1959, Ltmp4187-Lfunc_begin0 - .quad Lset1959 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1960, Ltmp4187-Lfunc_begin0 - .quad Lset1960 -.set Lset1961, Ltmp4188-Lfunc_begin0 - .quad Lset1961 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1962, Ltmp4194-Lfunc_begin0 - .quad Lset1962 -.set Lset1963, Ltmp4213-Lfunc_begin0 - .quad Lset1963 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1964, Ltmp4213-Lfunc_begin0 - .quad Lset1964 -.set Lset1965, Ltmp4216-Lfunc_begin0 - .quad Lset1965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1966, Ltmp4218-Lfunc_begin0 - .quad Lset1966 -.set Lset1967, Ltmp4222-Lfunc_begin0 - .quad Lset1967 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1968, Ltmp4227-Lfunc_begin0 - .quad Lset1968 -.set Lset1969, Ltmp4227-Lfunc_begin0 - .quad Lset1969 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1970, Ltmp4227-Lfunc_begin0 - .quad Lset1970 -.set Lset1971, Ltmp4228-Lfunc_begin0 - .quad Lset1971 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1972, Ltmp4234-Lfunc_begin0 - .quad Lset1972 -.set Lset1973, Ltmp4254-Lfunc_begin0 - .quad Lset1973 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1974, Ltmp4254-Lfunc_begin0 - .quad Lset1974 -.set Lset1975, Ltmp4257-Lfunc_begin0 - .quad Lset1975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1976, Ltmp4259-Lfunc_begin0 - .quad Lset1976 -.set Lset1977, Ltmp4263-Lfunc_begin0 - .quad Lset1977 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1978, Ltmp4268-Lfunc_begin0 - .quad Lset1978 -.set Lset1979, Ltmp4268-Lfunc_begin0 - .quad Lset1979 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1980, Ltmp4268-Lfunc_begin0 - .quad Lset1980 -.set Lset1981, Ltmp4269-Lfunc_begin0 - .quad Lset1981 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1982, Ltmp4275-Lfunc_begin0 - .quad Lset1982 -.set Lset1983, Ltmp4294-Lfunc_begin0 - .quad Lset1983 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1984, Ltmp4294-Lfunc_begin0 - .quad Lset1984 -.set Lset1985, Ltmp4297-Lfunc_begin0 - .quad Lset1985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1986, Ltmp4299-Lfunc_begin0 - .quad Lset1986 -.set Lset1987, Ltmp4303-Lfunc_begin0 - .quad Lset1987 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1988, Ltmp4308-Lfunc_begin0 - .quad Lset1988 -.set Lset1989, Ltmp4308-Lfunc_begin0 - .quad Lset1989 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset1990, Ltmp4308-Lfunc_begin0 - .quad Lset1990 -.set Lset1991, Ltmp4309-Lfunc_begin0 - .quad Lset1991 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1992, Ltmp4315-Lfunc_begin0 - .quad Lset1992 -.set Lset1993, Ltmp4335-Lfunc_begin0 - .quad Lset1993 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1994, Ltmp4335-Lfunc_begin0 - .quad Lset1994 -.set Lset1995, Ltmp4338-Lfunc_begin0 - .quad Lset1995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset1996, Ltmp4340-Lfunc_begin0 - .quad Lset1996 -.set Lset1997, Ltmp4344-Lfunc_begin0 - .quad Lset1997 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset1998, Ltmp4349-Lfunc_begin0 - .quad Lset1998 -.set Lset1999, Ltmp4349-Lfunc_begin0 - .quad Lset1999 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2000, Ltmp4349-Lfunc_begin0 - .quad Lset2000 -.set Lset2001, Ltmp4350-Lfunc_begin0 - .quad Lset2001 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2002, Ltmp4357-Lfunc_begin0 - .quad Lset2002 -.set Lset2003, Ltmp4374-Lfunc_begin0 - .quad Lset2003 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2004, Ltmp4380-Lfunc_begin0 - .quad Lset2004 -.set Lset2005, Ltmp4380-Lfunc_begin0 - .quad Lset2005 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2006, Ltmp4380-Lfunc_begin0 - .quad Lset2006 -.set Lset2007, Ltmp4383-Lfunc_begin0 - .quad Lset2007 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2008, Ltmp4383-Lfunc_begin0 - .quad Lset2008 -.set Lset2009, Ltmp4390-Lfunc_begin0 - .quad Lset2009 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2010, Ltmp4390-Lfunc_begin0 - .quad Lset2010 -.set Lset2011, Ltmp4405-Lfunc_begin0 - .quad Lset2011 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2012, Ltmp4405-Lfunc_begin0 - .quad Lset2012 -.set Lset2013, Ltmp4412-Lfunc_begin0 - .quad Lset2013 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2014, Ltmp4412-Lfunc_begin0 - .quad Lset2014 -.set Lset2015, Ltmp4412-Lfunc_begin0 - .quad Lset2015 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2016, Ltmp4412-Lfunc_begin0 - .quad Lset2016 -.set Lset2017, Ltmp4413-Lfunc_begin0 - .quad Lset2017 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2018, Ltmp4413-Lfunc_begin0 - .quad Lset2018 -.set Lset2019, Ltmp4413-Lfunc_begin0 - .quad Lset2019 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2020, Ltmp4413-Lfunc_begin0 - .quad Lset2020 -.set Lset2021, Ltmp4414-Lfunc_begin0 - .quad Lset2021 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2022, Ltmp4414-Lfunc_begin0 - .quad Lset2022 -.set Lset2023, Ltmp4423-Lfunc_begin0 - .quad Lset2023 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2024, Ltmp4423-Lfunc_begin0 - .quad Lset2024 -.set Lset2025, Ltmp4429-Lfunc_begin0 - .quad Lset2025 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2026, Ltmp4429-Lfunc_begin0 - .quad Lset2026 -.set Lset2027, Ltmp4448-Lfunc_begin0 - .quad Lset2027 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2028, Ltmp4448-Lfunc_begin0 - .quad Lset2028 -.set Lset2029, Ltmp4449-Lfunc_begin0 - .quad Lset2029 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2030, Ltmp4454-Lfunc_begin0 - .quad Lset2030 -.set Lset2031, Ltmp4454-Lfunc_begin0 - .quad Lset2031 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2032, Ltmp4454-Lfunc_begin0 - .quad Lset2032 -.set Lset2033, Ltmp4455-Lfunc_begin0 - .quad Lset2033 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2034, Ltmp4455-Lfunc_begin0 - .quad Lset2034 -.set Lset2035, Ltmp4464-Lfunc_begin0 - .quad Lset2035 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2036, Ltmp4464-Lfunc_begin0 - .quad Lset2036 -.set Lset2037, Ltmp4470-Lfunc_begin0 - .quad Lset2037 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2038, Ltmp4470-Lfunc_begin0 - .quad Lset2038 -.set Lset2039, Ltmp4489-Lfunc_begin0 - .quad Lset2039 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2040, Ltmp4489-Lfunc_begin0 - .quad Lset2040 -.set Lset2041, Ltmp4490-Lfunc_begin0 - .quad Lset2041 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2042, Ltmp4495-Lfunc_begin0 - .quad Lset2042 -.set Lset2043, Ltmp4495-Lfunc_begin0 - .quad Lset2043 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2044, Ltmp4495-Lfunc_begin0 - .quad Lset2044 -.set Lset2045, Ltmp4509-Lfunc_begin0 - .quad Lset2045 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2046, Ltmp4509-Lfunc_begin0 - .quad Lset2046 -.set Lset2047, Ltmp4515-Lfunc_begin0 - .quad Lset2047 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2048, Ltmp4515-Lfunc_begin0 - .quad Lset2048 -.set Lset2049, Ltmp4516-Lfunc_begin0 - .quad Lset2049 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2050, Ltmp4516-Lfunc_begin0 - .quad Lset2050 -.set Lset2051, Ltmp4523-Lfunc_begin0 - .quad Lset2051 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2052, Ltmp4523-Lfunc_begin0 - .quad Lset2052 -.set Lset2053, Ltmp4539-Lfunc_begin0 - .quad Lset2053 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2054, Ltmp4546-Lfunc_begin0 - .quad Lset2054 -.set Lset2055, Ltmp4563-Lfunc_begin0 - .quad Lset2055 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2056, Ltmp4572-Lfunc_begin0 - .quad Lset2056 -.set Lset2057, Ltmp4579-Lfunc_begin0 - .quad Lset2057 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2058, Ltmp4579-Lfunc_begin0 - .quad Lset2058 -.set Lset2059, Ltmp4579-Lfunc_begin0 - .quad Lset2059 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2060, Ltmp4579-Lfunc_begin0 - .quad Lset2060 -.set Lset2061, Ltmp4580-Lfunc_begin0 - .quad Lset2061 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2062, Ltmp4580-Lfunc_begin0 - .quad Lset2062 -.set Lset2063, Ltmp4580-Lfunc_begin0 - .quad Lset2063 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2064, Ltmp4580-Lfunc_begin0 - .quad Lset2064 -.set Lset2065, Ltmp4588-Lfunc_begin0 - .quad Lset2065 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2066, Ltmp4588-Lfunc_begin0 - .quad Lset2066 -.set Lset2067, Ltmp4599-Lfunc_begin0 - .quad Lset2067 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2068, Ltmp4605-Lfunc_begin0 - .quad Lset2068 -.set Lset2069, Ltmp4614-Lfunc_begin0 - .quad Lset2069 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2070, Ltmp4642-Lfunc_begin0 - .quad Lset2070 -.set Lset2071, Ltmp4649-Lfunc_begin0 - .quad Lset2071 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2072, Ltmp4649-Lfunc_begin0 - .quad Lset2072 -.set Lset2073, Ltmp4649-Lfunc_begin0 - .quad Lset2073 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2074, Ltmp4649-Lfunc_begin0 - .quad Lset2074 -.set Lset2075, Ltmp4650-Lfunc_begin0 - .quad Lset2075 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2076, Ltmp4650-Lfunc_begin0 - .quad Lset2076 -.set Lset2077, Ltmp4650-Lfunc_begin0 - .quad Lset2077 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2078, Ltmp4650-Lfunc_begin0 - .quad Lset2078 -.set Lset2079, Ltmp4656-Lfunc_begin0 - .quad Lset2079 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2080, Ltmp4656-Lfunc_begin0 - .quad Lset2080 -.set Lset2081, Ltmp4667-Lfunc_begin0 - .quad Lset2081 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2082, Ltmp4667-Lfunc_begin0 - .quad Lset2082 -.set Lset2083, Ltmp4669-Lfunc_begin0 - .quad Lset2083 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2084, Ltmp4669-Lfunc_begin0 - .quad Lset2084 -.set Lset2085, Ltmp4674-Lfunc_begin0 - .quad Lset2085 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2086, Ltmp4674-Lfunc_begin0 - .quad Lset2086 -.set Lset2087, Ltmp4709-Lfunc_begin0 - .quad Lset2087 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2088, Ltmp4710-Lfunc_begin0 - .quad Lset2088 -.set Lset2089, Ltmp4717-Lfunc_begin0 - .quad Lset2089 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2090, Ltmp4717-Lfunc_begin0 - .quad Lset2090 -.set Lset2091, Ltmp4717-Lfunc_begin0 - .quad Lset2091 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2092, Ltmp4717-Lfunc_begin0 - .quad Lset2092 -.set Lset2093, Ltmp4718-Lfunc_begin0 - .quad Lset2093 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2094, Ltmp4718-Lfunc_begin0 - .quad Lset2094 -.set Lset2095, Ltmp4718-Lfunc_begin0 - .quad Lset2095 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2096, Ltmp4718-Lfunc_begin0 - .quad Lset2096 -.set Lset2097, Ltmp4722-Lfunc_begin0 - .quad Lset2097 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2098, Ltmp4722-Lfunc_begin0 - .quad Lset2098 -.set Lset2099, Ltmp4727-Lfunc_begin0 - .quad Lset2099 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2100, Ltmp4733-Lfunc_begin0 - .quad Lset2100 -.set Lset2101, Ltmp4777-Lfunc_begin0 - .quad Lset2101 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2102, Ltmp4783-Lfunc_begin0 - .quad Lset2102 -.set Lset2103, Ltmp4783-Lfunc_begin0 - .quad Lset2103 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2104, Ltmp4783-Lfunc_begin0 - .quad Lset2104 -.set Lset2105, Ltmp4784-Lfunc_begin0 - .quad Lset2105 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2106, Ltmp4790-Lfunc_begin0 - .quad Lset2106 -.set Lset2107, Ltmp4807-Lfunc_begin0 - .quad Lset2107 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2108, Ltmp4813-Lfunc_begin0 - .quad Lset2108 -.set Lset2109, Ltmp4813-Lfunc_begin0 - .quad Lset2109 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2110, Ltmp4813-Lfunc_begin0 - .quad Lset2110 -.set Lset2111, Ltmp4814-Lfunc_begin0 - .quad Lset2111 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2112, Ltmp4820-Lfunc_begin0 - .quad Lset2112 -.set Lset2113, Ltmp4837-Lfunc_begin0 - .quad Lset2113 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2114, Ltmp4843-Lfunc_begin0 - .quad Lset2114 -.set Lset2115, Ltmp4843-Lfunc_begin0 - .quad Lset2115 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2116, Ltmp4843-Lfunc_begin0 - .quad Lset2116 -.set Lset2117, Ltmp4844-Lfunc_begin0 - .quad Lset2117 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2118, Ltmp4850-Lfunc_begin0 - .quad Lset2118 -.set Lset2119, Ltmp4877-Lfunc_begin0 - .quad Lset2119 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2120, Ltmp4877-Lfunc_begin0 - .quad Lset2120 -.set Lset2121, Ltmp4886-Lfunc_begin0 - .quad Lset2121 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2122, Ltmp4886-Lfunc_begin0 - .quad Lset2122 -.set Lset2123, Ltmp4890-Lfunc_begin0 - .quad Lset2123 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2124, Ltmp4890-Lfunc_begin0 - .quad Lset2124 -.set Lset2125, Ltmp4893-Lfunc_begin0 - .quad Lset2125 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2126, Ltmp4893-Lfunc_begin0 - .quad Lset2126 -.set Lset2127, Ltmp4896-Lfunc_begin0 - .quad Lset2127 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2128, Ltmp4896-Lfunc_begin0 - .quad Lset2128 -.set Lset2129, Ltmp4897-Lfunc_begin0 - .quad Lset2129 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2130, Ltmp4902-Lfunc_begin0 - .quad Lset2130 -.set Lset2131, Ltmp4902-Lfunc_begin0 - .quad Lset2131 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2132, Ltmp4902-Lfunc_begin0 - .quad Lset2132 -.set Lset2133, Ltmp4903-Lfunc_begin0 - .quad Lset2133 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2134, Ltmp4909-Lfunc_begin0 - .quad Lset2134 -.set Lset2135, Ltmp4934-Lfunc_begin0 - .quad Lset2135 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2136, Ltmp4934-Lfunc_begin0 - .quad Lset2136 -.set Lset2137, Ltmp4937-Lfunc_begin0 - .quad Lset2137 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2138, Ltmp4937-Lfunc_begin0 - .quad Lset2138 -.set Lset2139, Ltmp4938-Lfunc_begin0 - .quad Lset2139 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2140, Ltmp4943-Lfunc_begin0 - .quad Lset2140 -.set Lset2141, Ltmp4943-Lfunc_begin0 - .quad Lset2141 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2142, Ltmp4943-Lfunc_begin0 - .quad Lset2142 -.set Lset2143, Ltmp4944-Lfunc_begin0 - .quad Lset2143 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2144, Ltmp4950-Lfunc_begin0 - .quad Lset2144 -.set Lset2145, Ltmp4976-Lfunc_begin0 - .quad Lset2145 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2146, Ltmp4976-Lfunc_begin0 - .quad Lset2146 -.set Lset2147, Ltmp4984-Lfunc_begin0 - .quad Lset2147 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2148, Ltmp4984-Lfunc_begin0 - .quad Lset2148 -.set Lset2149, Ltmp4988-Lfunc_begin0 - .quad Lset2149 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2150, Ltmp4988-Lfunc_begin0 - .quad Lset2150 -.set Lset2151, Ltmp4991-Lfunc_begin0 - .quad Lset2151 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2152, Ltmp4991-Lfunc_begin0 - .quad Lset2152 -.set Lset2153, Ltmp4994-Lfunc_begin0 - .quad Lset2153 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2154, Ltmp4994-Lfunc_begin0 - .quad Lset2154 -.set Lset2155, Ltmp4995-Lfunc_begin0 - .quad Lset2155 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2156, Ltmp5000-Lfunc_begin0 - .quad Lset2156 -.set Lset2157, Ltmp5000-Lfunc_begin0 - .quad Lset2157 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2158, Ltmp5000-Lfunc_begin0 - .quad Lset2158 -.set Lset2159, Ltmp5001-Lfunc_begin0 - .quad Lset2159 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2160, Ltmp5007-Lfunc_begin0 - .quad Lset2160 -.set Lset2161, Ltmp5032-Lfunc_begin0 - .quad Lset2161 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2162, Ltmp5032-Lfunc_begin0 - .quad Lset2162 -.set Lset2163, Ltmp5034-Lfunc_begin0 - .quad Lset2163 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2164, Ltmp5034-Lfunc_begin0 - .quad Lset2164 -.set Lset2165, Ltmp5035-Lfunc_begin0 - .quad Lset2165 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2166, Ltmp5040-Lfunc_begin0 - .quad Lset2166 -.set Lset2167, Ltmp5040-Lfunc_begin0 - .quad Lset2167 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2168, Ltmp5040-Lfunc_begin0 - .quad Lset2168 -.set Lset2169, Ltmp5044-Lfunc_begin0 - .quad Lset2169 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2170, Ltmp5044-Lfunc_begin0 - .quad Lset2170 -.set Lset2171, Ltmp5050-Lfunc_begin0 - .quad Lset2171 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2172, Ltmp5056-Lfunc_begin0 - .quad Lset2172 -.set Lset2173, Ltmp5062-Lfunc_begin0 - .quad Lset2173 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2174, Ltmp5072-Lfunc_begin0 - .quad Lset2174 -.set Lset2175, Ltmp5073-Lfunc_begin0 - .quad Lset2175 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2176, Ltmp5078-Lfunc_begin0 - .quad Lset2176 -.set Lset2177, Ltmp5078-Lfunc_begin0 - .quad Lset2177 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2178, Ltmp5078-Lfunc_begin0 - .quad Lset2178 -.set Lset2179, Ltmp5082-Lfunc_begin0 - .quad Lset2179 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2180, Ltmp5082-Lfunc_begin0 - .quad Lset2180 -.set Lset2181, Ltmp5088-Lfunc_begin0 - .quad Lset2181 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2182, Ltmp5094-Lfunc_begin0 - .quad Lset2182 -.set Lset2183, Ltmp5099-Lfunc_begin0 - .quad Lset2183 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2184, Ltmp5108-Lfunc_begin0 - .quad Lset2184 -.set Lset2185, Ltmp5109-Lfunc_begin0 - .quad Lset2185 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2186, Ltmp5114-Lfunc_begin0 - .quad Lset2186 -.set Lset2187, Ltmp5114-Lfunc_begin0 - .quad Lset2187 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2188, Ltmp5114-Lfunc_begin0 - .quad Lset2188 -.set Lset2189, Ltmp5115-Lfunc_begin0 - .quad Lset2189 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2190, Ltmp5121-Lfunc_begin0 - .quad Lset2190 -.set Lset2191, Ltmp5136-Lfunc_begin0 - .quad Lset2191 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2192, Ltmp5136-Lfunc_begin0 - .quad Lset2192 -.set Lset2193, Ltmp5140-Lfunc_begin0 - .quad Lset2193 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2194, Ltmp5140-Lfunc_begin0 - .quad Lset2194 -.set Lset2195, Ltmp5141-Lfunc_begin0 - .quad Lset2195 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2196, Ltmp5146-Lfunc_begin0 - .quad Lset2196 -.set Lset2197, Ltmp5146-Lfunc_begin0 - .quad Lset2197 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2198, Ltmp5146-Lfunc_begin0 - .quad Lset2198 -.set Lset2199, Ltmp5147-Lfunc_begin0 - .quad Lset2199 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2200, Ltmp5153-Lfunc_begin0 - .quad Lset2200 -.set Lset2201, Ltmp5168-Lfunc_begin0 - .quad Lset2201 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2202, Ltmp5168-Lfunc_begin0 - .quad Lset2202 -.set Lset2203, Ltmp5172-Lfunc_begin0 - .quad Lset2203 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2204, Ltmp5172-Lfunc_begin0 - .quad Lset2204 -.set Lset2205, Ltmp5173-Lfunc_begin0 - .quad Lset2205 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2206, Ltmp5178-Lfunc_begin0 - .quad Lset2206 -.set Lset2207, Ltmp5178-Lfunc_begin0 - .quad Lset2207 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2208, Ltmp5178-Lfunc_begin0 - .quad Lset2208 -.set Lset2209, Ltmp5179-Lfunc_begin0 - .quad Lset2209 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2210, Ltmp5185-Lfunc_begin0 - .quad Lset2210 -.set Lset2211, Ltmp5200-Lfunc_begin0 - .quad Lset2211 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2212, Ltmp5200-Lfunc_begin0 - .quad Lset2212 -.set Lset2213, Ltmp5204-Lfunc_begin0 - .quad Lset2213 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2214, Ltmp5204-Lfunc_begin0 - .quad Lset2214 -.set Lset2215, Ltmp5205-Lfunc_begin0 - .quad Lset2215 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2216, Ltmp5210-Lfunc_begin0 - .quad Lset2216 -.set Lset2217, Ltmp5210-Lfunc_begin0 - .quad Lset2217 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2218, Ltmp5210-Lfunc_begin0 - .quad Lset2218 -.set Lset2219, Ltmp5211-Lfunc_begin0 - .quad Lset2219 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2220, Ltmp5218-Lfunc_begin0 - .quad Lset2220 -.set Lset2221, Ltmp5222-Lfunc_begin0 - .quad Lset2221 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2222, Ltmp5228-Lfunc_begin0 - .quad Lset2222 -.set Lset2223, Ltmp5228-Lfunc_begin0 - .quad Lset2223 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2224, Ltmp5228-Lfunc_begin0 - .quad Lset2224 -.set Lset2225, Ltmp5229-Lfunc_begin0 - .quad Lset2225 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2226, Ltmp5236-Lfunc_begin0 - .quad Lset2226 -.set Lset2227, Ltmp5240-Lfunc_begin0 - .quad Lset2227 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2228, Ltmp5246-Lfunc_begin0 - .quad Lset2228 -.set Lset2229, Ltmp5246-Lfunc_begin0 - .quad Lset2229 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2230, Ltmp5246-Lfunc_begin0 - .quad Lset2230 -.set Lset2231, Ltmp5247-Lfunc_begin0 - .quad Lset2231 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2232, Ltmp5254-Lfunc_begin0 - .quad Lset2232 -.set Lset2233, Ltmp5265-Lfunc_begin0 - .quad Lset2233 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2234, Ltmp5271-Lfunc_begin0 - .quad Lset2234 -.set Lset2235, Ltmp5271-Lfunc_begin0 - .quad Lset2235 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2236, Ltmp5271-Lfunc_begin0 - .quad Lset2236 -.set Lset2237, Ltmp5272-Lfunc_begin0 - .quad Lset2237 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2238, Ltmp5279-Lfunc_begin0 - .quad Lset2238 -.set Lset2239, Ltmp5290-Lfunc_begin0 - .quad Lset2239 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2240, Ltmp5296-Lfunc_begin0 - .quad Lset2240 -.set Lset2241, Ltmp5296-Lfunc_begin0 - .quad Lset2241 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2242, Ltmp5296-Lfunc_begin0 - .quad Lset2242 -.set Lset2243, Ltmp5297-Lfunc_begin0 - .quad Lset2243 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2244, Ltmp5304-Lfunc_begin0 - .quad Lset2244 -.set Lset2245, Ltmp5316-Lfunc_begin0 - .quad Lset2245 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2246, Ltmp5322-Lfunc_begin0 - .quad Lset2246 -.set Lset2247, Ltmp5322-Lfunc_begin0 - .quad Lset2247 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2248, Ltmp5322-Lfunc_begin0 - .quad Lset2248 -.set Lset2249, Ltmp5323-Lfunc_begin0 - .quad Lset2249 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2250, Ltmp5330-Lfunc_begin0 - .quad Lset2250 -.set Lset2251, Ltmp5341-Lfunc_begin0 - .quad Lset2251 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2252, Ltmp5347-Lfunc_begin0 - .quad Lset2252 -.set Lset2253, Ltmp5347-Lfunc_begin0 - .quad Lset2253 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2254, Ltmp5347-Lfunc_begin0 - .quad Lset2254 -.set Lset2255, Ltmp5348-Lfunc_begin0 - .quad Lset2255 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2256, Ltmp5355-Lfunc_begin0 - .quad Lset2256 -.set Lset2257, Ltmp5366-Lfunc_begin0 - .quad Lset2257 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2258, Ltmp5372-Lfunc_begin0 - .quad Lset2258 -.set Lset2259, Ltmp5372-Lfunc_begin0 - .quad Lset2259 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2260, Ltmp5372-Lfunc_begin0 - .quad Lset2260 -.set Lset2261, Ltmp5373-Lfunc_begin0 - .quad Lset2261 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2262, Ltmp5380-Lfunc_begin0 - .quad Lset2262 -.set Lset2263, Ltmp5391-Lfunc_begin0 - .quad Lset2263 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2264, Ltmp5397-Lfunc_begin0 - .quad Lset2264 -.set Lset2265, Ltmp5397-Lfunc_begin0 - .quad Lset2265 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2266, Ltmp5397-Lfunc_begin0 - .quad Lset2266 -.set Lset2267, Ltmp5398-Lfunc_begin0 - .quad Lset2267 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2268, Ltmp5404-Lfunc_begin0 - .quad Lset2268 -.set Lset2269, Ltmp5416-Lfunc_begin0 - .quad Lset2269 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2270, Ltmp5422-Lfunc_begin0 - .quad Lset2270 -.set Lset2271, Ltmp5422-Lfunc_begin0 - .quad Lset2271 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2272, Ltmp5422-Lfunc_begin0 - .quad Lset2272 -.set Lset2273, Ltmp5423-Lfunc_begin0 - .quad Lset2273 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2274, Ltmp5430-Lfunc_begin0 - .quad Lset2274 -.set Lset2275, Ltmp5441-Lfunc_begin0 - .quad Lset2275 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2276, Ltmp5447-Lfunc_begin0 - .quad Lset2276 -.set Lset2277, Ltmp5447-Lfunc_begin0 - .quad Lset2277 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2278, Ltmp5447-Lfunc_begin0 - .quad Lset2278 -.set Lset2279, Ltmp5448-Lfunc_begin0 - .quad Lset2279 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2280, Ltmp5455-Lfunc_begin0 - .quad Lset2280 -.set Lset2281, Ltmp5466-Lfunc_begin0 - .quad Lset2281 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2282, Ltmp5472-Lfunc_begin0 - .quad Lset2282 -.set Lset2283, Ltmp5472-Lfunc_begin0 - .quad Lset2283 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2284, Ltmp5472-Lfunc_begin0 - .quad Lset2284 -.set Lset2285, Ltmp5473-Lfunc_begin0 - .quad Lset2285 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2286, Ltmp5480-Lfunc_begin0 - .quad Lset2286 -.set Lset2287, Ltmp5492-Lfunc_begin0 - .quad Lset2287 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2288, Ltmp5498-Lfunc_begin0 - .quad Lset2288 -.set Lset2289, Ltmp5498-Lfunc_begin0 - .quad Lset2289 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2290, Ltmp5498-Lfunc_begin0 - .quad Lset2290 -.set Lset2291, Ltmp5499-Lfunc_begin0 - .quad Lset2291 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2292, Ltmp5506-Lfunc_begin0 - .quad Lset2292 -.set Lset2293, Ltmp5517-Lfunc_begin0 - .quad Lset2293 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2294, Ltmp5523-Lfunc_begin0 - .quad Lset2294 -.set Lset2295, Ltmp5523-Lfunc_begin0 - .quad Lset2295 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2296, Ltmp5523-Lfunc_begin0 - .quad Lset2296 -.set Lset2297, Ltmp5524-Lfunc_begin0 - .quad Lset2297 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2298, Ltmp5531-Lfunc_begin0 - .quad Lset2298 -.set Lset2299, Ltmp5542-Lfunc_begin0 - .quad Lset2299 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2300, Ltmp5548-Lfunc_begin0 - .quad Lset2300 -.set Lset2301, Ltmp5548-Lfunc_begin0 - .quad Lset2301 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2302, Ltmp5548-Lfunc_begin0 - .quad Lset2302 -.set Lset2303, Ltmp5549-Lfunc_begin0 - .quad Lset2303 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2304, Ltmp5556-Lfunc_begin0 - .quad Lset2304 -.set Lset2305, Ltmp5567-Lfunc_begin0 - .quad Lset2305 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2306, Ltmp5573-Lfunc_begin0 - .quad Lset2306 -.set Lset2307, Ltmp5573-Lfunc_begin0 - .quad Lset2307 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2308, Ltmp5573-Lfunc_begin0 - .quad Lset2308 -.set Lset2309, Ltmp5574-Lfunc_begin0 - .quad Lset2309 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2310, Ltmp5581-Lfunc_begin0 - .quad Lset2310 -.set Lset2311, Ltmp5592-Lfunc_begin0 - .quad Lset2311 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2312, Ltmp5598-Lfunc_begin0 - .quad Lset2312 -.set Lset2313, Ltmp5598-Lfunc_begin0 - .quad Lset2313 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2314, Ltmp5598-Lfunc_begin0 - .quad Lset2314 -.set Lset2315, Ltmp5602-Lfunc_begin0 - .quad Lset2315 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2316, Ltmp5602-Lfunc_begin0 - .quad Lset2316 -.set Lset2317, Ltmp5608-Lfunc_begin0 - .quad Lset2317 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2318, Ltmp5615-Lfunc_begin0 - .quad Lset2318 -.set Lset2319, Ltmp5623-Lfunc_begin0 - .quad Lset2319 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2320, Ltmp5624-Lfunc_begin0 - .quad Lset2320 -.set Lset2321, Ltmp5625-Lfunc_begin0 - .quad Lset2321 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2322, Ltmp5631-Lfunc_begin0 - .quad Lset2322 -.set Lset2323, Ltmp5631-Lfunc_begin0 - .quad Lset2323 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2324, Ltmp5631-Lfunc_begin0 - .quad Lset2324 -.set Lset2325, Ltmp5635-Lfunc_begin0 - .quad Lset2325 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2326, Ltmp5635-Lfunc_begin0 - .quad Lset2326 -.set Lset2327, Ltmp5641-Lfunc_begin0 - .quad Lset2327 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2328, Ltmp5647-Lfunc_begin0 - .quad Lset2328 -.set Lset2329, Ltmp5654-Lfunc_begin0 - .quad Lset2329 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2330, Ltmp5655-Lfunc_begin0 - .quad Lset2330 -.set Lset2331, Ltmp5656-Lfunc_begin0 - .quad Lset2331 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2332, Ltmp5662-Lfunc_begin0 - .quad Lset2332 -.set Lset2333, Ltmp5662-Lfunc_begin0 - .quad Lset2333 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2334, Ltmp5662-Lfunc_begin0 - .quad Lset2334 -.set Lset2335, Ltmp5663-Lfunc_begin0 - .quad Lset2335 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2336, Ltmp5669-Lfunc_begin0 - .quad Lset2336 -.set Lset2337, Ltmp5681-Lfunc_begin0 - .quad Lset2337 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2338, Ltmp5687-Lfunc_begin0 - .quad Lset2338 -.set Lset2339, Ltmp5687-Lfunc_begin0 - .quad Lset2339 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2340, Ltmp5687-Lfunc_begin0 - .quad Lset2340 -.set Lset2341, Ltmp5688-Lfunc_begin0 - .quad Lset2341 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2342, Ltmp5694-Lfunc_begin0 - .quad Lset2342 -.set Lset2343, Ltmp5706-Lfunc_begin0 - .quad Lset2343 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2344, Ltmp5712-Lfunc_begin0 - .quad Lset2344 -.set Lset2345, Ltmp5712-Lfunc_begin0 - .quad Lset2345 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2346, Ltmp5712-Lfunc_begin0 - .quad Lset2346 -.set Lset2347, Ltmp5713-Lfunc_begin0 - .quad Lset2347 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2348, Ltmp5719-Lfunc_begin0 - .quad Lset2348 -.set Lset2349, Ltmp5731-Lfunc_begin0 - .quad Lset2349 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2350, Ltmp5737-Lfunc_begin0 - .quad Lset2350 -.set Lset2351, Ltmp5737-Lfunc_begin0 - .quad Lset2351 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2352, Ltmp5737-Lfunc_begin0 - .quad Lset2352 -.set Lset2353, Ltmp5741-Lfunc_begin0 - .quad Lset2353 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2354, Ltmp5741-Lfunc_begin0 - .quad Lset2354 -.set Lset2355, Ltmp5747-Lfunc_begin0 - .quad Lset2355 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2356, Ltmp5754-Lfunc_begin0 - .quad Lset2356 -.set Lset2357, Ltmp5759-Lfunc_begin0 - .quad Lset2357 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2358, Ltmp5760-Lfunc_begin0 - .quad Lset2358 -.set Lset2359, Ltmp5761-Lfunc_begin0 - .quad Lset2359 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2360, Ltmp5767-Lfunc_begin0 - .quad Lset2360 -.set Lset2361, Ltmp5767-Lfunc_begin0 - .quad Lset2361 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2362, Ltmp5767-Lfunc_begin0 - .quad Lset2362 -.set Lset2363, Ltmp5771-Lfunc_begin0 - .quad Lset2363 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2364, Ltmp5771-Lfunc_begin0 - .quad Lset2364 -.set Lset2365, Ltmp5777-Lfunc_begin0 - .quad Lset2365 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2366, Ltmp5783-Lfunc_begin0 - .quad Lset2366 -.set Lset2367, Ltmp5787-Lfunc_begin0 - .quad Lset2367 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2368, Ltmp5788-Lfunc_begin0 - .quad Lset2368 -.set Lset2369, Ltmp5789-Lfunc_begin0 - .quad Lset2369 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2370, Ltmp5795-Lfunc_begin0 - .quad Lset2370 -.set Lset2371, Ltmp5795-Lfunc_begin0 - .quad Lset2371 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2372, Ltmp5795-Lfunc_begin0 - .quad Lset2372 -.set Lset2373, Ltmp5796-Lfunc_begin0 - .quad Lset2373 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2374, Ltmp5802-Lfunc_begin0 - .quad Lset2374 -.set Lset2375, Ltmp5808-Lfunc_begin0 - .quad Lset2375 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2376, Ltmp5814-Lfunc_begin0 - .quad Lset2376 -.set Lset2377, Ltmp5814-Lfunc_begin0 - .quad Lset2377 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2378, Ltmp5814-Lfunc_begin0 - .quad Lset2378 -.set Lset2379, Ltmp5815-Lfunc_begin0 - .quad Lset2379 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2380, Ltmp5821-Lfunc_begin0 - .quad Lset2380 -.set Lset2381, Ltmp5827-Lfunc_begin0 - .quad Lset2381 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2382, Ltmp5833-Lfunc_begin0 - .quad Lset2382 -.set Lset2383, Ltmp5833-Lfunc_begin0 - .quad Lset2383 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2384, Ltmp5833-Lfunc_begin0 - .quad Lset2384 -.set Lset2385, Ltmp5834-Lfunc_begin0 - .quad Lset2385 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2386, Ltmp5840-Lfunc_begin0 - .quad Lset2386 -.set Lset2387, Ltmp5846-Lfunc_begin0 - .quad Lset2387 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2388, Ltmp5852-Lfunc_begin0 - .quad Lset2388 -.set Lset2389, Ltmp5852-Lfunc_begin0 - .quad Lset2389 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2390, Ltmp5852-Lfunc_begin0 - .quad Lset2390 -.set Lset2391, Ltmp5853-Lfunc_begin0 - .quad Lset2391 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2392, Ltmp5859-Lfunc_begin0 - .quad Lset2392 -.set Lset2393, Ltmp5865-Lfunc_begin0 - .quad Lset2393 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2394, Ltmp5871-Lfunc_begin0 - .quad Lset2394 -.set Lset2395, Ltmp5871-Lfunc_begin0 - .quad Lset2395 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2396, Ltmp5871-Lfunc_begin0 - .quad Lset2396 -.set Lset2397, Ltmp5872-Lfunc_begin0 - .quad Lset2397 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2398, Ltmp5878-Lfunc_begin0 - .quad Lset2398 -.set Lset2399, Ltmp5884-Lfunc_begin0 - .quad Lset2399 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2400, Ltmp5890-Lfunc_begin0 - .quad Lset2400 -.set Lset2401, Ltmp5890-Lfunc_begin0 - .quad Lset2401 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2402, Ltmp5890-Lfunc_begin0 - .quad Lset2402 -.set Lset2403, Ltmp5891-Lfunc_begin0 - .quad Lset2403 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2404, Ltmp5897-Lfunc_begin0 - .quad Lset2404 -.set Lset2405, Ltmp5909-Lfunc_begin0 - .quad Lset2405 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2406, Ltmp5909-Lfunc_begin0 - .quad Lset2406 -.set Lset2407, Ltmp5913-Lfunc_begin0 - .quad Lset2407 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2408, Ltmp5913-Lfunc_begin0 - .quad Lset2408 -.set Lset2409, Ltmp5914-Lfunc_begin0 - .quad Lset2409 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2410, Ltmp5920-Lfunc_begin0 - .quad Lset2410 -.set Lset2411, Ltmp5920-Lfunc_begin0 - .quad Lset2411 - .short 3 ## Loc expr size - .byte 122 ## DW_OP_breg10 - .byte 4 ## 4 - .byte 159 ## DW_OP_stack_value -.set Lset2412, Ltmp5920-Lfunc_begin0 - .quad Lset2412 -.set Lset2413, Ltmp5923-Lfunc_begin0 - .quad Lset2413 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2414, Ltmp5926-Lfunc_begin0 - .quad Lset2414 -.set Lset2415, Ltmp5930-Lfunc_begin0 - .quad Lset2415 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2416, Ltmp5932-Lfunc_begin0 - .quad Lset2416 -.set Lset2417, Ltmp5934-Lfunc_begin0 - .quad Lset2417 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2418, Ltmp5935-Lfunc_begin0 - .quad Lset2418 -.set Lset2419, Ltmp5936-Lfunc_begin0 - .quad Lset2419 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2420, Ltmp5936-Lfunc_begin0 - .quad Lset2420 -.set Lset2421, Ltmp5938-Lfunc_begin0 - .quad Lset2421 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2422, Ltmp5938-Lfunc_begin0 - .quad Lset2422 -.set Lset2423, Ltmp5942-Lfunc_begin0 - .quad Lset2423 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2424, Ltmp5943-Lfunc_begin0 - .quad Lset2424 -.set Lset2425, Ltmp5945-Lfunc_begin0 - .quad Lset2425 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2426, Ltmp5945-Lfunc_begin0 - .quad Lset2426 -.set Lset2427, Ltmp5946-Lfunc_begin0 - .quad Lset2427 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2428, Ltmp5947-Lfunc_begin0 - .quad Lset2428 -.set Lset2429, Ltmp5961-Lfunc_begin0 - .quad Lset2429 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2430, Ltmp5965-Lfunc_begin0 - .quad Lset2430 -.set Lset2431, Ltmp5967-Lfunc_begin0 - .quad Lset2431 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2432, Ltmp5970-Lfunc_begin0 - .quad Lset2432 -.set Lset2433, Ltmp5989-Lfunc_begin0 - .quad Lset2433 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2434, Ltmp5989-Lfunc_begin0 - .quad Lset2434 -.set Lset2435, Ltmp5991-Lfunc_begin0 - .quad Lset2435 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2436, Ltmp5991-Lfunc_begin0 - .quad Lset2436 -.set Lset2437, Ltmp5996-Lfunc_begin0 - .quad Lset2437 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2438, Ltmp5997-Lfunc_begin0 - .quad Lset2438 -.set Lset2439, Ltmp6022-Lfunc_begin0 - .quad Lset2439 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2440, Ltmp6022-Lfunc_begin0 - .quad Lset2440 -.set Lset2441, Ltmp6023-Lfunc_begin0 - .quad Lset2441 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2442, Ltmp6023-Lfunc_begin0 - .quad Lset2442 -.set Lset2443, Ltmp6049-Lfunc_begin0 - .quad Lset2443 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2444, Ltmp6049-Lfunc_begin0 - .quad Lset2444 -.set Lset2445, Ltmp6050-Lfunc_begin0 - .quad Lset2445 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2446, Ltmp6050-Lfunc_begin0 - .quad Lset2446 -.set Lset2447, Ltmp6051-Lfunc_begin0 - .quad Lset2447 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2448, Ltmp6051-Lfunc_begin0 - .quad Lset2448 -.set Lset2449, Ltmp6052-Lfunc_begin0 - .quad Lset2449 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2450, Ltmp6055-Lfunc_begin0 - .quad Lset2450 -.set Lset2451, Ltmp6056-Lfunc_begin0 - .quad Lset2451 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2452, Ltmp6056-Lfunc_begin0 - .quad Lset2452 -.set Lset2453, Ltmp6071-Lfunc_begin0 - .quad Lset2453 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2454, Ltmp6071-Lfunc_begin0 - .quad Lset2454 -.set Lset2455, Ltmp6072-Lfunc_begin0 - .quad Lset2455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset2456, Ltmp6072-Lfunc_begin0 - .quad Lset2456 -.set Lset2457, Ltmp6088-Lfunc_begin0 - .quad Lset2457 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2458, Ltmp6094-Lfunc_begin0 - .quad Lset2458 -.set Lset2459, Ltmp6120-Lfunc_begin0 - .quad Lset2459 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2460, Ltmp6120-Lfunc_begin0 - .quad Lset2460 -.set Lset2461, Ltmp6121-Lfunc_begin0 - .quad Lset2461 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2462, Ltmp6121-Lfunc_begin0 - .quad Lset2462 -.set Lset2463, Ltmp6138-Lfunc_begin0 - .quad Lset2463 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2464, Ltmp6138-Lfunc_begin0 - .quad Lset2464 -.set Lset2465, Ltmp6139-Lfunc_begin0 - .quad Lset2465 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2466, Ltmp6139-Lfunc_begin0 - .quad Lset2466 -.set Lset2467, Ltmp6148-Lfunc_begin0 - .quad Lset2467 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2468, Ltmp6150-Lfunc_begin0 - .quad Lset2468 -.set Lset2469, Ltmp6168-Lfunc_begin0 - .quad Lset2469 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2470, Ltmp6169-Lfunc_begin0 - .quad Lset2470 -.set Lset2471, Ltmp6176-Lfunc_begin0 - .quad Lset2471 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2472, Ltmp6177-Lfunc_begin0 - .quad Lset2472 -.set Lset2473, Ltmp6199-Lfunc_begin0 - .quad Lset2473 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2474, Ltmp6199-Lfunc_begin0 - .quad Lset2474 -.set Lset2475, Ltmp6200-Lfunc_begin0 - .quad Lset2475 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2476, Ltmp6200-Lfunc_begin0 - .quad Lset2476 -.set Lset2477, Ltmp6216-Lfunc_begin0 - .quad Lset2477 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2478, Ltmp6217-Lfunc_begin0 - .quad Lset2478 -.set Lset2479, Ltmp6244-Lfunc_begin0 - .quad Lset2479 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2480, Ltmp6247-Lfunc_begin0 - .quad Lset2480 -.set Lset2481, Ltmp6265-Lfunc_begin0 - .quad Lset2481 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2482, Ltmp6265-Lfunc_begin0 - .quad Lset2482 -.set Lset2483, Ltmp6266-Lfunc_begin0 - .quad Lset2483 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2484, Ltmp6266-Lfunc_begin0 - .quad Lset2484 -.set Lset2485, Ltmp6295-Lfunc_begin0 - .quad Lset2485 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2486, Ltmp6295-Lfunc_begin0 - .quad Lset2486 -.set Lset2487, Ltmp6296-Lfunc_begin0 - .quad Lset2487 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2488, Ltmp6296-Lfunc_begin0 - .quad Lset2488 -.set Lset2489, Ltmp6304-Lfunc_begin0 - .quad Lset2489 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2490, Ltmp6307-Lfunc_begin0 - .quad Lset2490 -.set Lset2491, Ltmp6320-Lfunc_begin0 - .quad Lset2491 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2492, Ltmp6320-Lfunc_begin0 - .quad Lset2492 -.set Lset2493, Ltmp6323-Lfunc_begin0 - .quad Lset2493 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2494, Ltmp6323-Lfunc_begin0 - .quad Lset2494 -.set Lset2495, Ltmp6346-Lfunc_begin0 - .quad Lset2495 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2496, Ltmp6348-Lfunc_begin0 - .quad Lset2496 -.set Lset2497, Ltmp6349-Lfunc_begin0 - .quad Lset2497 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2498, Ltmp6350-Lfunc_begin0 - .quad Lset2498 -.set Lset2499, Ltmp6356-Lfunc_begin0 - .quad Lset2499 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2500, Ltmp6357-Lfunc_begin0 - .quad Lset2500 -.set Lset2501, Ltmp6376-Lfunc_begin0 - .quad Lset2501 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2502, Ltmp6376-Lfunc_begin0 - .quad Lset2502 -.set Lset2503, Ltmp6384-Lfunc_begin0 - .quad Lset2503 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset2504, Ltmp6384-Lfunc_begin0 - .quad Lset2504 -.set Lset2505, Ltmp6385-Lfunc_begin0 - .quad Lset2505 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2506, Ltmp6385-Lfunc_begin0 - .quad Lset2506 -.set Lset2507, Ltmp6412-Lfunc_begin0 - .quad Lset2507 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2508, Ltmp6412-Lfunc_begin0 - .quad Lset2508 -.set Lset2509, Ltmp6413-Lfunc_begin0 - .quad Lset2509 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset2510, Ltmp6413-Lfunc_begin0 - .quad Lset2510 -.set Lset2511, Ltmp6418-Lfunc_begin0 - .quad Lset2511 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 -.set Lset2512, Ltmp6418-Lfunc_begin0 - .quad Lset2512 -.set Lset2513, Ltmp6420-Lfunc_begin0 - .quad Lset2513 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc189: -.set Lset2514, Ltmp1176-Lfunc_begin0 - .quad Lset2514 -.set Lset2515, Ltmp1204-Lfunc_begin0 - .quad Lset2515 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2516, Ltmp1209-Lfunc_begin0 - .quad Lset2516 -.set Lset2517, Ltmp1224-Lfunc_begin0 - .quad Lset2517 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2518, Ltmp1231-Lfunc_begin0 - .quad Lset2518 -.set Lset2519, Ltmp1253-Lfunc_begin0 - .quad Lset2519 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2520, Ltmp1254-Lfunc_begin0 - .quad Lset2520 -.set Lset2521, Ltmp1274-Lfunc_begin0 - .quad Lset2521 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2522, Ltmp1275-Lfunc_begin0 - .quad Lset2522 -.set Lset2523, Ltmp1308-Lfunc_begin0 - .quad Lset2523 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2524, Ltmp1309-Lfunc_begin0 - .quad Lset2524 -.set Lset2525, Ltmp1323-Lfunc_begin0 - .quad Lset2525 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2526, Ltmp1332-Lfunc_begin0 - .quad Lset2526 -.set Lset2527, Ltmp1347-Lfunc_begin0 - .quad Lset2527 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2528, Ltmp1363-Lfunc_begin0 - .quad Lset2528 -.set Lset2529, Ltmp1400-Lfunc_begin0 - .quad Lset2529 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2530, Ltmp1406-Lfunc_begin0 - .quad Lset2530 -.set Lset2531, Ltmp1432-Lfunc_begin0 - .quad Lset2531 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2532, Ltmp1439-Lfunc_begin0 - .quad Lset2532 -.set Lset2533, Ltmp1442-Lfunc_begin0 - .quad Lset2533 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2534, Ltmp1456-Lfunc_begin0 - .quad Lset2534 -.set Lset2535, Ltmp1495-Lfunc_begin0 - .quad Lset2535 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2536, Ltmp1501-Lfunc_begin0 - .quad Lset2536 -.set Lset2537, Ltmp1527-Lfunc_begin0 - .quad Lset2537 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2538, Ltmp1534-Lfunc_begin0 - .quad Lset2538 -.set Lset2539, Ltmp1537-Lfunc_begin0 - .quad Lset2539 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2540, Ltmp1551-Lfunc_begin0 - .quad Lset2540 -.set Lset2541, Ltmp1590-Lfunc_begin0 - .quad Lset2541 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2542, Ltmp1599-Lfunc_begin0 - .quad Lset2542 -.set Lset2543, Ltmp1615-Lfunc_begin0 - .quad Lset2543 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2544, Ltmp1626-Lfunc_begin0 - .quad Lset2544 -.set Lset2545, Ltmp1628-Lfunc_begin0 - .quad Lset2545 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2546, Ltmp1640-Lfunc_begin0 - .quad Lset2546 -.set Lset2547, Ltmp1645-Lfunc_begin0 - .quad Lset2547 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2548, Ltmp1649-Lfunc_begin0 - .quad Lset2548 -.set Lset2549, Ltmp1653-Lfunc_begin0 - .quad Lset2549 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2550, Ltmp1658-Lfunc_begin0 - .quad Lset2550 -.set Lset2551, Ltmp1676-Lfunc_begin0 - .quad Lset2551 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2552, Ltmp1683-Lfunc_begin0 - .quad Lset2552 -.set Lset2553, Ltmp1687-Lfunc_begin0 - .quad Lset2553 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2554, Ltmp1708-Lfunc_begin0 - .quad Lset2554 -.set Lset2555, Ltmp1746-Lfunc_begin0 - .quad Lset2555 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2556, Ltmp1752-Lfunc_begin0 - .quad Lset2556 -.set Lset2557, Ltmp1767-Lfunc_begin0 - .quad Lset2557 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2558, Ltmp1778-Lfunc_begin0 - .quad Lset2558 -.set Lset2559, Ltmp1780-Lfunc_begin0 - .quad Lset2559 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2560, Ltmp1792-Lfunc_begin0 - .quad Lset2560 -.set Lset2561, Ltmp1797-Lfunc_begin0 - .quad Lset2561 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2562, Ltmp1801-Lfunc_begin0 - .quad Lset2562 -.set Lset2563, Ltmp1805-Lfunc_begin0 - .quad Lset2563 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2564, Ltmp1810-Lfunc_begin0 - .quad Lset2564 -.set Lset2565, Ltmp1828-Lfunc_begin0 - .quad Lset2565 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2566, Ltmp1835-Lfunc_begin0 - .quad Lset2566 -.set Lset2567, Ltmp1839-Lfunc_begin0 - .quad Lset2567 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2568, Ltmp1859-Lfunc_begin0 - .quad Lset2568 -.set Lset2569, Ltmp1899-Lfunc_begin0 - .quad Lset2569 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2570, Ltmp1910-Lfunc_begin0 - .quad Lset2570 -.set Lset2571, Ltmp1912-Lfunc_begin0 - .quad Lset2571 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2572, Ltmp1924-Lfunc_begin0 - .quad Lset2572 -.set Lset2573, Ltmp1929-Lfunc_begin0 - .quad Lset2573 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2574, Ltmp1933-Lfunc_begin0 - .quad Lset2574 -.set Lset2575, Ltmp1937-Lfunc_begin0 - .quad Lset2575 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2576, Ltmp1942-Lfunc_begin0 - .quad Lset2576 -.set Lset2577, Ltmp1953-Lfunc_begin0 - .quad Lset2577 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2578, Ltmp1971-Lfunc_begin0 - .quad Lset2578 -.set Lset2579, Ltmp1982-Lfunc_begin0 - .quad Lset2579 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2580, Ltmp1999-Lfunc_begin0 - .quad Lset2580 -.set Lset2581, Ltmp2034-Lfunc_begin0 - .quad Lset2581 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2582, Ltmp2069-Lfunc_begin0 - .quad Lset2582 -.set Lset2583, Ltmp2096-Lfunc_begin0 - .quad Lset2583 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2584, Ltmp2115-Lfunc_begin0 - .quad Lset2584 -.set Lset2585, Ltmp2137-Lfunc_begin0 - .quad Lset2585 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2586, Ltmp2144-Lfunc_begin0 - .quad Lset2586 -.set Lset2587, Ltmp2158-Lfunc_begin0 - .quad Lset2587 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2588, Ltmp2187-Lfunc_begin0 - .quad Lset2588 -.set Lset2589, Ltmp2195-Lfunc_begin0 - .quad Lset2589 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2590, Ltmp2200-Lfunc_begin0 - .quad Lset2590 -.set Lset2591, Ltmp2215-Lfunc_begin0 - .quad Lset2591 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2592, Ltmp2247-Lfunc_begin0 - .quad Lset2592 -.set Lset2593, Ltmp2771-Lfunc_begin0 - .quad Lset2593 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2594, Ltmp2774-Lfunc_begin0 - .quad Lset2594 -.set Lset2595, Ltmp2786-Lfunc_begin0 - .quad Lset2595 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2596, Ltmp2797-Lfunc_begin0 - .quad Lset2596 -.set Lset2597, Ltmp2803-Lfunc_begin0 - .quad Lset2597 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2598, Ltmp2805-Lfunc_begin0 - .quad Lset2598 -.set Lset2599, Ltmp2893-Lfunc_begin0 - .quad Lset2599 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2600, Ltmp2897-Lfunc_begin0 - .quad Lset2600 -.set Lset2601, Ltmp2908-Lfunc_begin0 - .quad Lset2601 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2602, Ltmp2915-Lfunc_begin0 - .quad Lset2602 -.set Lset2603, Ltmp2934-Lfunc_begin0 - .quad Lset2603 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2604, Ltmp2951-Lfunc_begin0 - .quad Lset2604 -.set Lset2605, Ltmp2958-Lfunc_begin0 - .quad Lset2605 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2606, Ltmp2962-Lfunc_begin0 - .quad Lset2606 -.set Lset2607, Ltmp2972-Lfunc_begin0 - .quad Lset2607 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2608, Ltmp2991-Lfunc_begin0 - .quad Lset2608 -.set Lset2609, Ltmp3010-Lfunc_begin0 - .quad Lset2609 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2610, Ltmp3018-Lfunc_begin0 - .quad Lset2610 -.set Lset2611, Ltmp3035-Lfunc_begin0 - .quad Lset2611 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2612, Ltmp3038-Lfunc_begin0 - .quad Lset2612 -.set Lset2613, Ltmp3065-Lfunc_begin0 - .quad Lset2613 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2614, Ltmp3089-Lfunc_begin0 - .quad Lset2614 -.set Lset2615, Ltmp3111-Lfunc_begin0 - .quad Lset2615 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2616, Ltmp3113-Lfunc_begin0 - .quad Lset2616 -.set Lset2617, Ltmp3138-Lfunc_begin0 - .quad Lset2617 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2618, Ltmp3141-Lfunc_begin0 - .quad Lset2618 -.set Lset2619, Ltmp3150-Lfunc_begin0 - .quad Lset2619 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2620, Ltmp3155-Lfunc_begin0 - .quad Lset2620 -.set Lset2621, Ltmp3181-Lfunc_begin0 - .quad Lset2621 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2622, Ltmp3183-Lfunc_begin0 - .quad Lset2622 -.set Lset2623, Ltmp3195-Lfunc_begin0 - .quad Lset2623 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2624, Ltmp3200-Lfunc_begin0 - .quad Lset2624 -.set Lset2625, Ltmp3207-Lfunc_begin0 - .quad Lset2625 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2626, Ltmp3211-Lfunc_begin0 - .quad Lset2626 -.set Lset2627, Ltmp3219-Lfunc_begin0 - .quad Lset2627 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2628, Ltmp3222-Lfunc_begin0 - .quad Lset2628 -.set Lset2629, Ltmp3246-Lfunc_begin0 - .quad Lset2629 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2630, Ltmp3248-Lfunc_begin0 - .quad Lset2630 -.set Lset2631, Ltmp3260-Lfunc_begin0 - .quad Lset2631 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2632, Ltmp3265-Lfunc_begin0 - .quad Lset2632 -.set Lset2633, Ltmp3272-Lfunc_begin0 - .quad Lset2633 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2634, Ltmp3276-Lfunc_begin0 - .quad Lset2634 -.set Lset2635, Ltmp3284-Lfunc_begin0 - .quad Lset2635 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2636, Ltmp3287-Lfunc_begin0 - .quad Lset2636 -.set Lset2637, Ltmp3313-Lfunc_begin0 - .quad Lset2637 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2638, Ltmp3313-Lfunc_begin0 - .quad Lset2638 -.set Lset2639, Ltmp3321-Lfunc_begin0 - .quad Lset2639 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2640, Ltmp3324-Lfunc_begin0 - .quad Lset2640 -.set Lset2641, Ltmp3358-Lfunc_begin0 - .quad Lset2641 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2642, Ltmp3358-Lfunc_begin0 - .quad Lset2642 -.set Lset2643, Ltmp3366-Lfunc_begin0 - .quad Lset2643 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2644, Ltmp3370-Lfunc_begin0 - .quad Lset2644 -.set Lset2645, Ltmp3384-Lfunc_begin0 - .quad Lset2645 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2646, Ltmp3400-Lfunc_begin0 - .quad Lset2646 -.set Lset2647, Ltmp3408-Lfunc_begin0 - .quad Lset2647 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2648, Ltmp3410-Lfunc_begin0 - .quad Lset2648 -.set Lset2649, Ltmp3420-Lfunc_begin0 - .quad Lset2649 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2650, Ltmp3427-Lfunc_begin0 - .quad Lset2650 -.set Lset2651, Ltmp3436-Lfunc_begin0 - .quad Lset2651 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2652, Ltmp3465-Lfunc_begin0 - .quad Lset2652 -.set Lset2653, Ltmp3467-Lfunc_begin0 - .quad Lset2653 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2654, Ltmp3489-Lfunc_begin0 - .quad Lset2654 -.set Lset2655, Ltmp3510-Lfunc_begin0 - .quad Lset2655 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2656, Ltmp3513-Lfunc_begin0 - .quad Lset2656 -.set Lset2657, Ltmp3527-Lfunc_begin0 - .quad Lset2657 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2658, Ltmp3531-Lfunc_begin0 - .quad Lset2658 -.set Lset2659, Ltmp3630-Lfunc_begin0 - .quad Lset2659 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2660, Ltmp3632-Lfunc_begin0 - .quad Lset2660 -.set Lset2661, Ltmp3659-Lfunc_begin0 - .quad Lset2661 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2662, Ltmp3667-Lfunc_begin0 - .quad Lset2662 -.set Lset2663, Ltmp3677-Lfunc_begin0 - .quad Lset2663 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2664, Ltmp3679-Lfunc_begin0 - .quad Lset2664 -.set Lset2665, Ltmp3701-Lfunc_begin0 - .quad Lset2665 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2666, Ltmp3802-Lfunc_begin0 - .quad Lset2666 -.set Lset2667, Ltmp3819-Lfunc_begin0 - .quad Lset2667 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2668, Ltmp3858-Lfunc_begin0 - .quad Lset2668 -.set Lset2669, Ltmp3876-Lfunc_begin0 - .quad Lset2669 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2670, Ltmp3881-Lfunc_begin0 - .quad Lset2670 -.set Lset2671, Ltmp3897-Lfunc_begin0 - .quad Lset2671 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2672, Ltmp3927-Lfunc_begin0 - .quad Lset2672 -.set Lset2673, Ltmp3952-Lfunc_begin0 - .quad Lset2673 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2674, Ltmp3953-Lfunc_begin0 - .quad Lset2674 -.set Lset2675, Ltmp3978-Lfunc_begin0 - .quad Lset2675 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2676, Ltmp3979-Lfunc_begin0 - .quad Lset2676 -.set Lset2677, Ltmp4004-Lfunc_begin0 - .quad Lset2677 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2678, Ltmp4005-Lfunc_begin0 - .quad Lset2678 -.set Lset2679, Ltmp4039-Lfunc_begin0 - .quad Lset2679 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2680, Ltmp4040-Lfunc_begin0 - .quad Lset2680 -.set Lset2681, Ltmp4077-Lfunc_begin0 - .quad Lset2681 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2682, Ltmp4078-Lfunc_begin0 - .quad Lset2682 -.set Lset2683, Ltmp4095-Lfunc_begin0 - .quad Lset2683 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2684, Ltmp4100-Lfunc_begin0 - .quad Lset2684 -.set Lset2685, Ltmp4124-Lfunc_begin0 - .quad Lset2685 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2686, Ltmp4127-Lfunc_begin0 - .quad Lset2686 -.set Lset2687, Ltmp4136-Lfunc_begin0 - .quad Lset2687 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2688, Ltmp4141-Lfunc_begin0 - .quad Lset2688 -.set Lset2689, Ltmp4164-Lfunc_begin0 - .quad Lset2689 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2690, Ltmp4167-Lfunc_begin0 - .quad Lset2690 -.set Lset2691, Ltmp4177-Lfunc_begin0 - .quad Lset2691 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2692, Ltmp4182-Lfunc_begin0 - .quad Lset2692 -.set Lset2693, Ltmp4205-Lfunc_begin0 - .quad Lset2693 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2694, Ltmp4208-Lfunc_begin0 - .quad Lset2694 -.set Lset2695, Ltmp4217-Lfunc_begin0 - .quad Lset2695 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2696, Ltmp4222-Lfunc_begin0 - .quad Lset2696 -.set Lset2697, Ltmp4245-Lfunc_begin0 - .quad Lset2697 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2698, Ltmp4248-Lfunc_begin0 - .quad Lset2698 -.set Lset2699, Ltmp4258-Lfunc_begin0 - .quad Lset2699 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2700, Ltmp4263-Lfunc_begin0 - .quad Lset2700 -.set Lset2701, Ltmp4286-Lfunc_begin0 - .quad Lset2701 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2702, Ltmp4289-Lfunc_begin0 - .quad Lset2702 -.set Lset2703, Ltmp4298-Lfunc_begin0 - .quad Lset2703 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2704, Ltmp4303-Lfunc_begin0 - .quad Lset2704 -.set Lset2705, Ltmp4326-Lfunc_begin0 - .quad Lset2705 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2706, Ltmp4329-Lfunc_begin0 - .quad Lset2706 -.set Lset2707, Ltmp4339-Lfunc_begin0 - .quad Lset2707 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset2708, Ltmp4344-Lfunc_begin0 - .quad Lset2708 -.set Lset2709, Ltmp4370-Lfunc_begin0 - .quad Lset2709 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2710, Ltmp4374-Lfunc_begin0 - .quad Lset2710 -.set Lset2711, Ltmp4404-Lfunc_begin0 - .quad Lset2711 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2712, Ltmp4406-Lfunc_begin0 - .quad Lset2712 -.set Lset2713, Ltmp4414-Lfunc_begin0 - .quad Lset2713 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2714, Ltmp4417-Lfunc_begin0 - .quad Lset2714 -.set Lset2715, Ltmp4425-Lfunc_begin0 - .quad Lset2715 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2716, Ltmp4449-Lfunc_begin0 - .quad Lset2716 -.set Lset2717, Ltmp4455-Lfunc_begin0 - .quad Lset2717 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2718, Ltmp4458-Lfunc_begin0 - .quad Lset2718 -.set Lset2719, Ltmp4466-Lfunc_begin0 - .quad Lset2719 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2720, Ltmp4490-Lfunc_begin0 - .quad Lset2720 -.set Lset2721, Ltmp4496-Lfunc_begin0 - .quad Lset2721 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2722, Ltmp4509-Lfunc_begin0 - .quad Lset2722 -.set Lset2723, Ltmp4515-Lfunc_begin0 - .quad Lset2723 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2724, Ltmp4546-Lfunc_begin0 - .quad Lset2724 -.set Lset2725, Ltmp4553-Lfunc_begin0 - .quad Lset2725 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2726, Ltmp4573-Lfunc_begin0 - .quad Lset2726 -.set Lset2727, Ltmp4581-Lfunc_begin0 - .quad Lset2727 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2728, Ltmp4593-Lfunc_begin0 - .quad Lset2728 -.set Lset2729, Ltmp4599-Lfunc_begin0 - .quad Lset2729 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2730, Ltmp4605-Lfunc_begin0 - .quad Lset2730 -.set Lset2731, Ltmp4610-Lfunc_begin0 - .quad Lset2731 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2732, Ltmp4643-Lfunc_begin0 - .quad Lset2732 -.set Lset2733, Ltmp4651-Lfunc_begin0 - .quad Lset2733 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2734, Ltmp4661-Lfunc_begin0 - .quad Lset2734 -.set Lset2735, Ltmp4667-Lfunc_begin0 - .quad Lset2735 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2736, Ltmp4674-Lfunc_begin0 - .quad Lset2736 -.set Lset2737, Ltmp4680-Lfunc_begin0 - .quad Lset2737 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2738, Ltmp4711-Lfunc_begin0 - .quad Lset2738 -.set Lset2739, Ltmp4719-Lfunc_begin0 - .quad Lset2739 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2740, Ltmp4727-Lfunc_begin0 - .quad Lset2740 -.set Lset2741, Ltmp4745-Lfunc_begin0 - .quad Lset2741 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2742, Ltmp4777-Lfunc_begin0 - .quad Lset2742 -.set Lset2743, Ltmp4797-Lfunc_begin0 - .quad Lset2743 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2744, Ltmp4807-Lfunc_begin0 - .quad Lset2744 -.set Lset2745, Ltmp4827-Lfunc_begin0 - .quad Lset2745 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2746, Ltmp4837-Lfunc_begin0 - .quad Lset2746 -.set Lset2747, Ltmp4877-Lfunc_begin0 - .quad Lset2747 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2748, Ltmp4886-Lfunc_begin0 - .quad Lset2748 -.set Lset2749, Ltmp4893-Lfunc_begin0 - .quad Lset2749 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2750, Ltmp4897-Lfunc_begin0 - .quad Lset2750 -.set Lset2751, Ltmp4932-Lfunc_begin0 - .quad Lset2751 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2752, Ltmp4938-Lfunc_begin0 - .quad Lset2752 -.set Lset2753, Ltmp4976-Lfunc_begin0 - .quad Lset2753 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2754, Ltmp4984-Lfunc_begin0 - .quad Lset2754 -.set Lset2755, Ltmp4991-Lfunc_begin0 - .quad Lset2755 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2756, Ltmp4995-Lfunc_begin0 - .quad Lset2756 -.set Lset2757, Ltmp5030-Lfunc_begin0 - .quad Lset2757 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2758, Ltmp5035-Lfunc_begin0 - .quad Lset2758 -.set Lset2759, Ltmp5063-Lfunc_begin0 - .quad Lset2759 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2760, Ltmp5073-Lfunc_begin0 - .quad Lset2760 -.set Lset2761, Ltmp5100-Lfunc_begin0 - .quad Lset2761 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2762, Ltmp5109-Lfunc_begin0 - .quad Lset2762 -.set Lset2763, Ltmp5126-Lfunc_begin0 - .quad Lset2763 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2764, Ltmp5141-Lfunc_begin0 - .quad Lset2764 -.set Lset2765, Ltmp5158-Lfunc_begin0 - .quad Lset2765 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2766, Ltmp5173-Lfunc_begin0 - .quad Lset2766 -.set Lset2767, Ltmp5190-Lfunc_begin0 - .quad Lset2767 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2768, Ltmp5205-Lfunc_begin0 - .quad Lset2768 -.set Lset2769, Ltmp5221-Lfunc_begin0 - .quad Lset2769 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2770, Ltmp5222-Lfunc_begin0 - .quad Lset2770 -.set Lset2771, Ltmp5239-Lfunc_begin0 - .quad Lset2771 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2772, Ltmp5240-Lfunc_begin0 - .quad Lset2772 -.set Lset2773, Ltmp5264-Lfunc_begin0 - .quad Lset2773 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2774, Ltmp5265-Lfunc_begin0 - .quad Lset2774 -.set Lset2775, Ltmp5289-Lfunc_begin0 - .quad Lset2775 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2776, Ltmp5290-Lfunc_begin0 - .quad Lset2776 -.set Lset2777, Ltmp5315-Lfunc_begin0 - .quad Lset2777 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2778, Ltmp5316-Lfunc_begin0 - .quad Lset2778 -.set Lset2779, Ltmp5340-Lfunc_begin0 - .quad Lset2779 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2780, Ltmp5341-Lfunc_begin0 - .quad Lset2780 -.set Lset2781, Ltmp5365-Lfunc_begin0 - .quad Lset2781 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2782, Ltmp5366-Lfunc_begin0 - .quad Lset2782 -.set Lset2783, Ltmp5390-Lfunc_begin0 - .quad Lset2783 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2784, Ltmp5391-Lfunc_begin0 - .quad Lset2784 -.set Lset2785, Ltmp5415-Lfunc_begin0 - .quad Lset2785 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2786, Ltmp5416-Lfunc_begin0 - .quad Lset2786 -.set Lset2787, Ltmp5440-Lfunc_begin0 - .quad Lset2787 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2788, Ltmp5441-Lfunc_begin0 - .quad Lset2788 -.set Lset2789, Ltmp5465-Lfunc_begin0 - .quad Lset2789 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2790, Ltmp5466-Lfunc_begin0 - .quad Lset2790 -.set Lset2791, Ltmp5491-Lfunc_begin0 - .quad Lset2791 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2792, Ltmp5492-Lfunc_begin0 - .quad Lset2792 -.set Lset2793, Ltmp5516-Lfunc_begin0 - .quad Lset2793 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2794, Ltmp5517-Lfunc_begin0 - .quad Lset2794 -.set Lset2795, Ltmp5541-Lfunc_begin0 - .quad Lset2795 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2796, Ltmp5542-Lfunc_begin0 - .quad Lset2796 -.set Lset2797, Ltmp5566-Lfunc_begin0 - .quad Lset2797 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2798, Ltmp5567-Lfunc_begin0 - .quad Lset2798 -.set Lset2799, Ltmp5591-Lfunc_begin0 - .quad Lset2799 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2800, Ltmp5592-Lfunc_begin0 - .quad Lset2800 -.set Lset2801, Ltmp5599-Lfunc_begin0 - .quad Lset2801 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2802, Ltmp5608-Lfunc_begin0 - .quad Lset2802 -.set Lset2803, Ltmp5619-Lfunc_begin0 - .quad Lset2803 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2804, Ltmp5625-Lfunc_begin0 - .quad Lset2804 -.set Lset2805, Ltmp5632-Lfunc_begin0 - .quad Lset2805 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2806, Ltmp5641-Lfunc_begin0 - .quad Lset2806 -.set Lset2807, Ltmp5651-Lfunc_begin0 - .quad Lset2807 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2808, Ltmp5656-Lfunc_begin0 - .quad Lset2808 -.set Lset2809, Ltmp5673-Lfunc_begin0 - .quad Lset2809 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2810, Ltmp5681-Lfunc_begin0 - .quad Lset2810 -.set Lset2811, Ltmp5698-Lfunc_begin0 - .quad Lset2811 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2812, Ltmp5706-Lfunc_begin0 - .quad Lset2812 -.set Lset2813, Ltmp5723-Lfunc_begin0 - .quad Lset2813 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2814, Ltmp5731-Lfunc_begin0 - .quad Lset2814 -.set Lset2815, Ltmp5740-Lfunc_begin0 - .quad Lset2815 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2816, Ltmp5747-Lfunc_begin0 - .quad Lset2816 -.set Lset2817, Ltmp5759-Lfunc_begin0 - .quad Lset2817 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2818, Ltmp5761-Lfunc_begin0 - .quad Lset2818 -.set Lset2819, Ltmp5770-Lfunc_begin0 - .quad Lset2819 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2820, Ltmp5777-Lfunc_begin0 - .quad Lset2820 -.set Lset2821, Ltmp5787-Lfunc_begin0 - .quad Lset2821 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2822, Ltmp5789-Lfunc_begin0 - .quad Lset2822 -.set Lset2823, Ltmp5807-Lfunc_begin0 - .quad Lset2823 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2824, Ltmp5808-Lfunc_begin0 - .quad Lset2824 -.set Lset2825, Ltmp5826-Lfunc_begin0 - .quad Lset2825 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2826, Ltmp5827-Lfunc_begin0 - .quad Lset2826 -.set Lset2827, Ltmp5845-Lfunc_begin0 - .quad Lset2827 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2828, Ltmp5846-Lfunc_begin0 - .quad Lset2828 -.set Lset2829, Ltmp5864-Lfunc_begin0 - .quad Lset2829 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2830, Ltmp5865-Lfunc_begin0 - .quad Lset2830 -.set Lset2831, Ltmp5883-Lfunc_begin0 - .quad Lset2831 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2832, Ltmp5884-Lfunc_begin0 - .quad Lset2832 -.set Lset2833, Ltmp5902-Lfunc_begin0 - .quad Lset2833 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2834, Ltmp5914-Lfunc_begin0 - .quad Lset2834 -.set Lset2835, Ltmp5923-Lfunc_begin0 - .quad Lset2835 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2836, Ltmp5926-Lfunc_begin0 - .quad Lset2836 -.set Lset2837, Ltmp5930-Lfunc_begin0 - .quad Lset2837 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2838, Ltmp5938-Lfunc_begin0 - .quad Lset2838 -.set Lset2839, Ltmp5939-Lfunc_begin0 - .quad Lset2839 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2840, Ltmp5941-Lfunc_begin0 - .quad Lset2840 -.set Lset2841, Ltmp5942-Lfunc_begin0 - .quad Lset2841 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2842, Ltmp5943-Lfunc_begin0 - .quad Lset2842 -.set Lset2843, Ltmp5945-Lfunc_begin0 - .quad Lset2843 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2844, Ltmp5949-Lfunc_begin0 - .quad Lset2844 -.set Lset2845, Ltmp5965-Lfunc_begin0 - .quad Lset2845 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2846, Ltmp5970-Lfunc_begin0 - .quad Lset2846 -.set Lset2847, Ltmp5989-Lfunc_begin0 - .quad Lset2847 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2848, Ltmp5991-Lfunc_begin0 - .quad Lset2848 -.set Lset2849, Ltmp5993-Lfunc_begin0 - .quad Lset2849 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2850, Ltmp5999-Lfunc_begin0 - .quad Lset2850 -.set Lset2851, Ltmp6045-Lfunc_begin0 - .quad Lset2851 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2852, Ltmp6046-Lfunc_begin0 - .quad Lset2852 -.set Lset2853, Ltmp6047-Lfunc_begin0 - .quad Lset2853 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2854, Ltmp6050-Lfunc_begin0 - .quad Lset2854 -.set Lset2855, Ltmp6051-Lfunc_begin0 - .quad Lset2855 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2856, Ltmp6055-Lfunc_begin0 - .quad Lset2856 -.set Lset2857, Ltmp6071-Lfunc_begin0 - .quad Lset2857 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2858, Ltmp6072-Lfunc_begin0 - .quad Lset2858 -.set Lset2859, Ltmp6074-Lfunc_begin0 - .quad Lset2859 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2860, Ltmp6075-Lfunc_begin0 - .quad Lset2860 -.set Lset2861, Ltmp6085-Lfunc_begin0 - .quad Lset2861 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2862, Ltmp6108-Lfunc_begin0 - .quad Lset2862 -.set Lset2863, Ltmp6111-Lfunc_begin0 - .quad Lset2863 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2864, Ltmp6116-Lfunc_begin0 - .quad Lset2864 -.set Lset2865, Ltmp6122-Lfunc_begin0 - .quad Lset2865 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2866, Ltmp6124-Lfunc_begin0 - .quad Lset2866 -.set Lset2867, Ltmp6138-Lfunc_begin0 - .quad Lset2867 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2868, Ltmp6139-Lfunc_begin0 - .quad Lset2868 -.set Lset2869, Ltmp6154-Lfunc_begin0 - .quad Lset2869 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2870, Ltmp6157-Lfunc_begin0 - .quad Lset2870 -.set Lset2871, Ltmp6165-Lfunc_begin0 - .quad Lset2871 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2872, Ltmp6169-Lfunc_begin0 - .quad Lset2872 -.set Lset2873, Ltmp6175-Lfunc_begin0 - .quad Lset2873 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2874, Ltmp6183-Lfunc_begin0 - .quad Lset2874 -.set Lset2875, Ltmp6190-Lfunc_begin0 - .quad Lset2875 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2876, Ltmp6200-Lfunc_begin0 - .quad Lset2876 -.set Lset2877, Ltmp6216-Lfunc_begin0 - .quad Lset2877 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2878, Ltmp6217-Lfunc_begin0 - .quad Lset2878 -.set Lset2879, Ltmp6244-Lfunc_begin0 - .quad Lset2879 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2880, Ltmp6249-Lfunc_begin0 - .quad Lset2880 -.set Lset2881, Ltmp6250-Lfunc_begin0 - .quad Lset2881 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2882, Ltmp6256-Lfunc_begin0 - .quad Lset2882 -.set Lset2883, Ltmp6265-Lfunc_begin0 - .quad Lset2883 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2884, Ltmp6266-Lfunc_begin0 - .quad Lset2884 -.set Lset2885, Ltmp6295-Lfunc_begin0 - .quad Lset2885 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2886, Ltmp6296-Lfunc_begin0 - .quad Lset2886 -.set Lset2887, Ltmp6297-Lfunc_begin0 - .quad Lset2887 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2888, Ltmp6299-Lfunc_begin0 - .quad Lset2888 -.set Lset2889, Ltmp6300-Lfunc_begin0 - .quad Lset2889 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2890, Ltmp6301-Lfunc_begin0 - .quad Lset2890 -.set Lset2891, Ltmp6304-Lfunc_begin0 - .quad Lset2891 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2892, Ltmp6307-Lfunc_begin0 - .quad Lset2892 -.set Lset2893, Ltmp6321-Lfunc_begin0 - .quad Lset2893 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2894, Ltmp6324-Lfunc_begin0 - .quad Lset2894 -.set Lset2895, Ltmp6329-Lfunc_begin0 - .quad Lset2895 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2896, Ltmp6333-Lfunc_begin0 - .quad Lset2896 -.set Lset2897, Ltmp6346-Lfunc_begin0 - .quad Lset2897 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2898, Ltmp6348-Lfunc_begin0 - .quad Lset2898 -.set Lset2899, Ltmp6349-Lfunc_begin0 - .quad Lset2899 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2900, Ltmp6350-Lfunc_begin0 - .quad Lset2900 -.set Lset2901, Ltmp6353-Lfunc_begin0 - .quad Lset2901 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2902, Ltmp6357-Lfunc_begin0 - .quad Lset2902 -.set Lset2903, Ltmp6376-Lfunc_begin0 - .quad Lset2903 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2904, Ltmp6385-Lfunc_begin0 - .quad Lset2904 -.set Lset2905, Ltmp6391-Lfunc_begin0 - .quad Lset2905 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2906, Ltmp6393-Lfunc_begin0 - .quad Lset2906 -.set Lset2907, Ltmp6394-Lfunc_begin0 - .quad Lset2907 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2908, Ltmp6396-Lfunc_begin0 - .quad Lset2908 -.set Lset2909, Ltmp6412-Lfunc_begin0 - .quad Lset2909 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset2910, Ltmp6413-Lfunc_begin0 - .quad Lset2910 -.set Lset2911, Ltmp6416-Lfunc_begin0 - .quad Lset2911 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc190: -.set Lset2912, Ltmp1180-Lfunc_begin0 - .quad Lset2912 -.set Lset2913, Ltmp1183-Lfunc_begin0 - .quad Lset2913 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2914, Ltmp1183-Lfunc_begin0 - .quad Lset2914 -.set Lset2915, Ltmp1187-Lfunc_begin0 - .quad Lset2915 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2916, Ltmp1194-Lfunc_begin0 - .quad Lset2916 -.set Lset2917, Ltmp1196-Lfunc_begin0 - .quad Lset2917 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2918, Ltmp1198-Lfunc_begin0 - .quad Lset2918 -.set Lset2919, Ltmp1218-Lfunc_begin0 - .quad Lset2919 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2920, Ltmp1220-Lfunc_begin0 - .quad Lset2920 -.set Lset2921, Ltmp1240-Lfunc_begin0 - .quad Lset2921 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2922, Ltmp1242-Lfunc_begin0 - .quad Lset2922 -.set Lset2923, Ltmp1263-Lfunc_begin0 - .quad Lset2923 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2924, Ltmp1265-Lfunc_begin0 - .quad Lset2924 -.set Lset2925, Ltmp1284-Lfunc_begin0 - .quad Lset2925 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2926, Ltmp1286-Lfunc_begin0 - .quad Lset2926 -.set Lset2927, Ltmp1317-Lfunc_begin0 - .quad Lset2927 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2928, Ltmp1319-Lfunc_begin0 - .quad Lset2928 -.set Lset2929, Ltmp1339-Lfunc_begin0 - .quad Lset2929 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2930, Ltmp1343-Lfunc_begin0 - .quad Lset2930 -.set Lset2931, Ltmp1360-Lfunc_begin0 - .quad Lset2931 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2932, Ltmp1360-Lfunc_begin0 - .quad Lset2932 -.set Lset2933, Ltmp1362-Lfunc_begin0 - .quad Lset2933 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset2934, Ltmp1366-Lfunc_begin0 - .quad Lset2934 -.set Lset2935, Ltmp1369-Lfunc_begin0 - .quad Lset2935 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2936, Ltmp1369-Lfunc_begin0 - .quad Lset2936 -.set Lset2937, Ltmp1381-Lfunc_begin0 - .quad Lset2937 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2938, Ltmp1381-Lfunc_begin0 - .quad Lset2938 -.set Lset2939, Ltmp1383-Lfunc_begin0 - .quad Lset2939 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2940, Ltmp1385-Lfunc_begin0 - .quad Lset2940 -.set Lset2941, Ltmp1387-Lfunc_begin0 - .quad Lset2941 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2942, Ltmp1387-Lfunc_begin0 - .quad Lset2942 -.set Lset2943, Ltmp1413-Lfunc_begin0 - .quad Lset2943 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2944, Ltmp1413-Lfunc_begin0 - .quad Lset2944 -.set Lset2945, Ltmp1417-Lfunc_begin0 - .quad Lset2945 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2946, Ltmp1417-Lfunc_begin0 - .quad Lset2946 -.set Lset2947, Ltmp1419-Lfunc_begin0 - .quad Lset2947 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset2948, Ltmp1419-Lfunc_begin0 - .quad Lset2948 -.set Lset2949, Ltmp1437-Lfunc_begin0 - .quad Lset2949 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2950, Ltmp1437-Lfunc_begin0 - .quad Lset2950 -.set Lset2951, Ltmp1439-Lfunc_begin0 - .quad Lset2951 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2952, Ltmp1439-Lfunc_begin0 - .quad Lset2952 -.set Lset2953, Ltmp1454-Lfunc_begin0 - .quad Lset2953 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2954, Ltmp1454-Lfunc_begin0 - .quad Lset2954 -.set Lset2955, Ltmp1464-Lfunc_begin0 - .quad Lset2955 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2956, Ltmp1476-Lfunc_begin0 - .quad Lset2956 -.set Lset2957, Ltmp1478-Lfunc_begin0 - .quad Lset2957 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2958, Ltmp1480-Lfunc_begin0 - .quad Lset2958 -.set Lset2959, Ltmp1482-Lfunc_begin0 - .quad Lset2959 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2960, Ltmp1507-Lfunc_begin0 - .quad Lset2960 -.set Lset2961, Ltmp1514-Lfunc_begin0 - .quad Lset2961 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2962, Ltmp1532-Lfunc_begin0 - .quad Lset2962 -.set Lset2963, Ltmp1534-Lfunc_begin0 - .quad Lset2963 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2964, Ltmp1549-Lfunc_begin0 - .quad Lset2964 -.set Lset2965, Ltmp1559-Lfunc_begin0 - .quad Lset2965 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2966, Ltmp1571-Lfunc_begin0 - .quad Lset2966 -.set Lset2967, Ltmp1573-Lfunc_begin0 - .quad Lset2967 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2968, Ltmp1575-Lfunc_begin0 - .quad Lset2968 -.set Lset2969, Ltmp1577-Lfunc_begin0 - .quad Lset2969 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2970, Ltmp1605-Lfunc_begin0 - .quad Lset2970 -.set Lset2971, Ltmp1608-Lfunc_begin0 - .quad Lset2971 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2972, Ltmp1658-Lfunc_begin0 - .quad Lset2972 -.set Lset2973, Ltmp1664-Lfunc_begin0 - .quad Lset2973 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2974, Ltmp1681-Lfunc_begin0 - .quad Lset2974 -.set Lset2975, Ltmp1683-Lfunc_begin0 - .quad Lset2975 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2976, Ltmp1706-Lfunc_begin0 - .quad Lset2976 -.set Lset2977, Ltmp1715-Lfunc_begin0 - .quad Lset2977 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2978, Ltmp1715-Lfunc_begin0 - .quad Lset2978 -.set Lset2979, Ltmp1727-Lfunc_begin0 - .quad Lset2979 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2980, Ltmp1727-Lfunc_begin0 - .quad Lset2980 -.set Lset2981, Ltmp1729-Lfunc_begin0 - .quad Lset2981 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2982, Ltmp1731-Lfunc_begin0 - .quad Lset2982 -.set Lset2983, Ltmp1733-Lfunc_begin0 - .quad Lset2983 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2984, Ltmp1733-Lfunc_begin0 - .quad Lset2984 -.set Lset2985, Ltmp1757-Lfunc_begin0 - .quad Lset2985 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2986, Ltmp1757-Lfunc_begin0 - .quad Lset2986 -.set Lset2987, Ltmp1760-Lfunc_begin0 - .quad Lset2987 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2988, Ltmp1760-Lfunc_begin0 - .quad Lset2988 -.set Lset2989, Ltmp1810-Lfunc_begin0 - .quad Lset2989 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2990, Ltmp1810-Lfunc_begin0 - .quad Lset2990 -.set Lset2991, Ltmp1816-Lfunc_begin0 - .quad Lset2991 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2992, Ltmp1816-Lfunc_begin0 - .quad Lset2992 -.set Lset2993, Ltmp1819-Lfunc_begin0 - .quad Lset2993 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset2994, Ltmp1819-Lfunc_begin0 - .quad Lset2994 -.set Lset2995, Ltmp1833-Lfunc_begin0 - .quad Lset2995 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset2996, Ltmp1833-Lfunc_begin0 - .quad Lset2996 -.set Lset2997, Ltmp1835-Lfunc_begin0 - .quad Lset2997 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset2998, Ltmp1835-Lfunc_begin0 - .quad Lset2998 -.set Lset2999, Ltmp1857-Lfunc_begin0 - .quad Lset2999 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3000, Ltmp1857-Lfunc_begin0 - .quad Lset3000 -.set Lset3001, Ltmp1868-Lfunc_begin0 - .quad Lset3001 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3002, Ltmp1870-Lfunc_begin0 - .quad Lset3002 -.set Lset3003, Ltmp1872-Lfunc_begin0 - .quad Lset3003 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3004, Ltmp1872-Lfunc_begin0 - .quad Lset3004 -.set Lset3005, Ltmp1888-Lfunc_begin0 - .quad Lset3005 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3006, Ltmp1888-Lfunc_begin0 - .quad Lset3006 -.set Lset3007, Ltmp1891-Lfunc_begin0 - .quad Lset3007 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3008, Ltmp1891-Lfunc_begin0 - .quad Lset3008 -.set Lset3009, Ltmp1942-Lfunc_begin0 - .quad Lset3009 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3010, Ltmp1942-Lfunc_begin0 - .quad Lset3010 -.set Lset3011, Ltmp1948-Lfunc_begin0 - .quad Lset3011 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3012, Ltmp1948-Lfunc_begin0 - .quad Lset3012 -.set Lset3013, Ltmp1951-Lfunc_begin0 - .quad Lset3013 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3014, Ltmp1951-Lfunc_begin0 - .quad Lset3014 -.set Lset3015, Ltmp1994-Lfunc_begin0 - .quad Lset3015 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3016, Ltmp1994-Lfunc_begin0 - .quad Lset3016 -.set Lset3017, Ltmp2010-Lfunc_begin0 - .quad Lset3017 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3018, Ltmp2014-Lfunc_begin0 - .quad Lset3018 -.set Lset3019, Ltmp2017-Lfunc_begin0 - .quad Lset3019 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3020, Ltmp2019-Lfunc_begin0 - .quad Lset3020 -.set Lset3021, Ltmp2034-Lfunc_begin0 - .quad Lset3021 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3022, Ltmp2034-Lfunc_begin0 - .quad Lset3022 -.set Lset3023, Ltmp2060-Lfunc_begin0 - .quad Lset3023 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3024, Ltmp2061-Lfunc_begin0 - .quad Lset3024 -.set Lset3025, Ltmp2066-Lfunc_begin0 - .quad Lset3025 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3026, Ltmp2066-Lfunc_begin0 - .quad Lset3026 -.set Lset3027, Ltmp2078-Lfunc_begin0 - .quad Lset3027 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3028, Ltmp2080-Lfunc_begin0 - .quad Lset3028 -.set Lset3029, Ltmp2084-Lfunc_begin0 - .quad Lset3029 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3030, Ltmp2084-Lfunc_begin0 - .quad Lset3030 -.set Lset3031, Ltmp2091-Lfunc_begin0 - .quad Lset3031 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3032, Ltmp2091-Lfunc_begin0 - .quad Lset3032 -.set Lset3033, Ltmp2092-Lfunc_begin0 - .quad Lset3033 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3034, Ltmp2092-Lfunc_begin0 - .quad Lset3034 -.set Lset3035, Ltmp2111-Lfunc_begin0 - .quad Lset3035 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3036, Ltmp2111-Lfunc_begin0 - .quad Lset3036 -.set Lset3037, Ltmp2125-Lfunc_begin0 - .quad Lset3037 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3038, Ltmp2129-Lfunc_begin0 - .quad Lset3038 -.set Lset3039, Ltmp2133-Lfunc_begin0 - .quad Lset3039 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3040, Ltmp2135-Lfunc_begin0 - .quad Lset3040 -.set Lset3041, Ltmp2137-Lfunc_begin0 - .quad Lset3041 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3042, Ltmp2137-Lfunc_begin0 - .quad Lset3042 -.set Lset3043, Ltmp2138-Lfunc_begin0 - .quad Lset3043 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3044, Ltmp2142-Lfunc_begin0 - .quad Lset3044 -.set Lset3045, Ltmp2163-Lfunc_begin0 - .quad Lset3045 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3046, Ltmp2163-Lfunc_begin0 - .quad Lset3046 -.set Lset3047, Ltmp2178-Lfunc_begin0 - .quad Lset3047 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3048, Ltmp2179-Lfunc_begin0 - .quad Lset3048 -.set Lset3049, Ltmp2182-Lfunc_begin0 - .quad Lset3049 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3050, Ltmp2185-Lfunc_begin0 - .quad Lset3050 -.set Lset3051, Ltmp2195-Lfunc_begin0 - .quad Lset3051 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3052, Ltmp2195-Lfunc_begin0 - .quad Lset3052 -.set Lset3053, Ltmp2200-Lfunc_begin0 - .quad Lset3053 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3054, Ltmp2200-Lfunc_begin0 - .quad Lset3054 -.set Lset3055, Ltmp2202-Lfunc_begin0 - .quad Lset3055 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3056, Ltmp2204-Lfunc_begin0 - .quad Lset3056 -.set Lset3057, Ltmp2217-Lfunc_begin0 - .quad Lset3057 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3058, Ltmp2217-Lfunc_begin0 - .quad Lset3058 -.set Lset3059, Ltmp2218-Lfunc_begin0 - .quad Lset3059 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3060, Ltmp2218-Lfunc_begin0 - .quad Lset3060 -.set Lset3061, Ltmp2242-Lfunc_begin0 - .quad Lset3061 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3062, Ltmp2242-Lfunc_begin0 - .quad Lset3062 -.set Lset3063, Ltmp2257-Lfunc_begin0 - .quad Lset3063 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3064, Ltmp2259-Lfunc_begin0 - .quad Lset3064 -.set Lset3065, Ltmp2283-Lfunc_begin0 - .quad Lset3065 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3066, Ltmp2287-Lfunc_begin0 - .quad Lset3066 -.set Lset3067, Ltmp2306-Lfunc_begin0 - .quad Lset3067 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3068, Ltmp2308-Lfunc_begin0 - .quad Lset3068 -.set Lset3069, Ltmp2332-Lfunc_begin0 - .quad Lset3069 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3070, Ltmp2336-Lfunc_begin0 - .quad Lset3070 -.set Lset3071, Ltmp2355-Lfunc_begin0 - .quad Lset3071 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3072, Ltmp2357-Lfunc_begin0 - .quad Lset3072 -.set Lset3073, Ltmp2381-Lfunc_begin0 - .quad Lset3073 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3074, Ltmp2385-Lfunc_begin0 - .quad Lset3074 -.set Lset3075, Ltmp2404-Lfunc_begin0 - .quad Lset3075 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3076, Ltmp2406-Lfunc_begin0 - .quad Lset3076 -.set Lset3077, Ltmp2424-Lfunc_begin0 - .quad Lset3077 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3078, Ltmp2428-Lfunc_begin0 - .quad Lset3078 -.set Lset3079, Ltmp2452-Lfunc_begin0 - .quad Lset3079 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3080, Ltmp2454-Lfunc_begin0 - .quad Lset3080 -.set Lset3081, Ltmp2485-Lfunc_begin0 - .quad Lset3081 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3082, Ltmp2489-Lfunc_begin0 - .quad Lset3082 -.set Lset3083, Ltmp2507-Lfunc_begin0 - .quad Lset3083 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3084, Ltmp2509-Lfunc_begin0 - .quad Lset3084 -.set Lset3085, Ltmp2540-Lfunc_begin0 - .quad Lset3085 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3086, Ltmp2544-Lfunc_begin0 - .quad Lset3086 -.set Lset3087, Ltmp2562-Lfunc_begin0 - .quad Lset3087 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3088, Ltmp2564-Lfunc_begin0 - .quad Lset3088 -.set Lset3089, Ltmp2595-Lfunc_begin0 - .quad Lset3089 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3090, Ltmp2599-Lfunc_begin0 - .quad Lset3090 -.set Lset3091, Ltmp2623-Lfunc_begin0 - .quad Lset3091 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3092, Ltmp2625-Lfunc_begin0 - .quad Lset3092 -.set Lset3093, Ltmp2659-Lfunc_begin0 - .quad Lset3093 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3094, Ltmp2663-Lfunc_begin0 - .quad Lset3094 -.set Lset3095, Ltmp2688-Lfunc_begin0 - .quad Lset3095 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3096, Ltmp2690-Lfunc_begin0 - .quad Lset3096 -.set Lset3097, Ltmp2724-Lfunc_begin0 - .quad Lset3097 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3098, Ltmp2728-Lfunc_begin0 - .quad Lset3098 -.set Lset3099, Ltmp2742-Lfunc_begin0 - .quad Lset3099 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3100, Ltmp2744-Lfunc_begin0 - .quad Lset3100 -.set Lset3101, Ltmp2770-Lfunc_begin0 - .quad Lset3101 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3102, Ltmp2770-Lfunc_begin0 - .quad Lset3102 -.set Lset3103, Ltmp2774-Lfunc_begin0 - .quad Lset3103 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3104, Ltmp2774-Lfunc_begin0 - .quad Lset3104 -.set Lset3105, Ltmp2776-Lfunc_begin0 - .quad Lset3105 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3106, Ltmp2780-Lfunc_begin0 - .quad Lset3106 -.set Lset3107, Ltmp2785-Lfunc_begin0 - .quad Lset3107 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3108, Ltmp2785-Lfunc_begin0 - .quad Lset3108 -.set Lset3109, Ltmp2796-Lfunc_begin0 - .quad Lset3109 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3110, Ltmp2797-Lfunc_begin0 - .quad Lset3110 -.set Lset3111, Ltmp2815-Lfunc_begin0 - .quad Lset3111 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3112, Ltmp2817-Lfunc_begin0 - .quad Lset3112 -.set Lset3113, Ltmp2846-Lfunc_begin0 - .quad Lset3113 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3114, Ltmp2850-Lfunc_begin0 - .quad Lset3114 -.set Lset3115, Ltmp2873-Lfunc_begin0 - .quad Lset3115 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3116, Ltmp2873-Lfunc_begin0 - .quad Lset3116 -.set Lset3117, Ltmp2880-Lfunc_begin0 - .quad Lset3117 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3118, Ltmp2880-Lfunc_begin0 - .quad Lset3118 -.set Lset3119, Ltmp2894-Lfunc_begin0 - .quad Lset3119 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3120, Ltmp2894-Lfunc_begin0 - .quad Lset3120 -.set Lset3121, Ltmp2897-Lfunc_begin0 - .quad Lset3121 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3122, Ltmp2897-Lfunc_begin0 - .quad Lset3122 -.set Lset3123, Ltmp2899-Lfunc_begin0 - .quad Lset3123 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3124, Ltmp2902-Lfunc_begin0 - .quad Lset3124 -.set Lset3125, Ltmp2904-Lfunc_begin0 - .quad Lset3125 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3126, Ltmp2904-Lfunc_begin0 - .quad Lset3126 -.set Lset3127, Ltmp2909-Lfunc_begin0 - .quad Lset3127 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3128, Ltmp2909-Lfunc_begin0 - .quad Lset3128 -.set Lset3129, Ltmp2921-Lfunc_begin0 - .quad Lset3129 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3130, Ltmp2921-Lfunc_begin0 - .quad Lset3130 -.set Lset3131, Ltmp2926-Lfunc_begin0 - .quad Lset3131 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3132, Ltmp2928-Lfunc_begin0 - .quad Lset3132 -.set Lset3133, Ltmp2945-Lfunc_begin0 - .quad Lset3133 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3134, Ltmp2949-Lfunc_begin0 - .quad Lset3134 -.set Lset3135, Ltmp2964-Lfunc_begin0 - .quad Lset3135 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3136, Ltmp2966-Lfunc_begin0 - .quad Lset3136 -.set Lset3137, Ltmp2984-Lfunc_begin0 - .quad Lset3137 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3138, Ltmp2988-Lfunc_begin0 - .quad Lset3138 -.set Lset3139, Ltmp3002-Lfunc_begin0 - .quad Lset3139 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3140, Ltmp3004-Lfunc_begin0 - .quad Lset3140 -.set Lset3141, Ltmp3025-Lfunc_begin0 - .quad Lset3141 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3142, Ltmp3029-Lfunc_begin0 - .quad Lset3142 -.set Lset3143, Ltmp3036-Lfunc_begin0 - .quad Lset3143 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3144, Ltmp3044-Lfunc_begin0 - .quad Lset3144 -.set Lset3145, Ltmp3048-Lfunc_begin0 - .quad Lset3145 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3146, Ltmp3048-Lfunc_begin0 - .quad Lset3146 -.set Lset3147, Ltmp3050-Lfunc_begin0 - .quad Lset3147 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset3148, Ltmp3053-Lfunc_begin0 - .quad Lset3148 -.set Lset3149, Ltmp3062-Lfunc_begin0 - .quad Lset3149 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3150, Ltmp3063-Lfunc_begin0 - .quad Lset3150 -.set Lset3151, Ltmp3067-Lfunc_begin0 - .quad Lset3151 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset3152, Ltmp3067-Lfunc_begin0 - .quad Lset3152 -.set Lset3153, Ltmp3079-Lfunc_begin0 - .quad Lset3153 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset3154, Ltmp3084-Lfunc_begin0 - .quad Lset3154 -.set Lset3155, Ltmp3092-Lfunc_begin0 - .quad Lset3155 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset3156, Ltmp3093-Lfunc_begin0 - .quad Lset3156 -.set Lset3157, Ltmp3097-Lfunc_begin0 - .quad Lset3157 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3158, Ltmp3100-Lfunc_begin0 - .quad Lset3158 -.set Lset3159, Ltmp3108-Lfunc_begin0 - .quad Lset3159 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3160, Ltmp3108-Lfunc_begin0 - .quad Lset3160 -.set Lset3161, Ltmp3110-Lfunc_begin0 - .quad Lset3161 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset3162, Ltmp3117-Lfunc_begin0 - .quad Lset3162 -.set Lset3163, Ltmp3122-Lfunc_begin0 - .quad Lset3163 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3164, Ltmp3126-Lfunc_begin0 - .quad Lset3164 -.set Lset3165, Ltmp3136-Lfunc_begin0 - .quad Lset3165 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3166, Ltmp3137-Lfunc_begin0 - .quad Lset3166 -.set Lset3167, Ltmp3147-Lfunc_begin0 - .quad Lset3167 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3168, Ltmp3147-Lfunc_begin0 - .quad Lset3168 -.set Lset3169, Ltmp3149-Lfunc_begin0 - .quad Lset3169 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3170, Ltmp3151-Lfunc_begin0 - .quad Lset3170 -.set Lset3171, Ltmp3153-Lfunc_begin0 - .quad Lset3171 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3172, Ltmp3158-Lfunc_begin0 - .quad Lset3172 -.set Lset3173, Ltmp3163-Lfunc_begin0 - .quad Lset3173 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3174, Ltmp3167-Lfunc_begin0 - .quad Lset3174 -.set Lset3175, Ltmp3191-Lfunc_begin0 - .quad Lset3175 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3176, Ltmp3191-Lfunc_begin0 - .quad Lset3176 -.set Lset3177, Ltmp3193-Lfunc_begin0 - .quad Lset3177 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3178, Ltmp3194-Lfunc_begin0 - .quad Lset3178 -.set Lset3179, Ltmp3203-Lfunc_begin0 - .quad Lset3179 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3180, Ltmp3205-Lfunc_begin0 - .quad Lset3180 -.set Lset3181, Ltmp3216-Lfunc_begin0 - .quad Lset3181 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3182, Ltmp3216-Lfunc_begin0 - .quad Lset3182 -.set Lset3183, Ltmp3218-Lfunc_begin0 - .quad Lset3183 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3184, Ltmp3225-Lfunc_begin0 - .quad Lset3184 -.set Lset3185, Ltmp3228-Lfunc_begin0 - .quad Lset3185 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3186, Ltmp3232-Lfunc_begin0 - .quad Lset3186 -.set Lset3187, Ltmp3256-Lfunc_begin0 - .quad Lset3187 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3188, Ltmp3256-Lfunc_begin0 - .quad Lset3188 -.set Lset3189, Ltmp3258-Lfunc_begin0 - .quad Lset3189 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3190, Ltmp3259-Lfunc_begin0 - .quad Lset3190 -.set Lset3191, Ltmp3268-Lfunc_begin0 - .quad Lset3191 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3192, Ltmp3270-Lfunc_begin0 - .quad Lset3192 -.set Lset3193, Ltmp3281-Lfunc_begin0 - .quad Lset3193 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3194, Ltmp3281-Lfunc_begin0 - .quad Lset3194 -.set Lset3195, Ltmp3283-Lfunc_begin0 - .quad Lset3195 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3196, Ltmp3290-Lfunc_begin0 - .quad Lset3196 -.set Lset3197, Ltmp3293-Lfunc_begin0 - .quad Lset3197 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3198, Ltmp3297-Lfunc_begin0 - .quad Lset3198 -.set Lset3199, Ltmp3318-Lfunc_begin0 - .quad Lset3199 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3200, Ltmp3318-Lfunc_begin0 - .quad Lset3200 -.set Lset3201, Ltmp3320-Lfunc_begin0 - .quad Lset3201 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3202, Ltmp3327-Lfunc_begin0 - .quad Lset3202 -.set Lset3203, Ltmp3330-Lfunc_begin0 - .quad Lset3203 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3204, Ltmp3334-Lfunc_begin0 - .quad Lset3204 -.set Lset3205, Ltmp3363-Lfunc_begin0 - .quad Lset3205 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3206, Ltmp3363-Lfunc_begin0 - .quad Lset3206 -.set Lset3207, Ltmp3365-Lfunc_begin0 - .quad Lset3207 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3208, Ltmp3373-Lfunc_begin0 - .quad Lset3208 -.set Lset3209, Ltmp3378-Lfunc_begin0 - .quad Lset3209 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3210, Ltmp3380-Lfunc_begin0 - .quad Lset3210 -.set Lset3211, Ltmp3390-Lfunc_begin0 - .quad Lset3211 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3212, Ltmp3393-Lfunc_begin0 - .quad Lset3212 -.set Lset3213, Ltmp3408-Lfunc_begin0 - .quad Lset3213 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3214, Ltmp3414-Lfunc_begin0 - .quad Lset3214 -.set Lset3215, Ltmp3423-Lfunc_begin0 - .quad Lset3215 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3216, Ltmp3432-Lfunc_begin0 - .quad Lset3216 -.set Lset3217, Ltmp3436-Lfunc_begin0 - .quad Lset3217 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3218, Ltmp3465-Lfunc_begin0 - .quad Lset3218 -.set Lset3219, Ltmp3472-Lfunc_begin0 - .quad Lset3219 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3220, Ltmp3489-Lfunc_begin0 - .quad Lset3220 -.set Lset3221, Ltmp3501-Lfunc_begin0 - .quad Lset3221 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3222, Ltmp3503-Lfunc_begin0 - .quad Lset3222 -.set Lset3223, Ltmp3538-Lfunc_begin0 - .quad Lset3223 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3224, Ltmp3542-Lfunc_begin0 - .quad Lset3224 -.set Lset3225, Ltmp3544-Lfunc_begin0 - .quad Lset3225 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3226, Ltmp3560-Lfunc_begin0 - .quad Lset3226 -.set Lset3227, Ltmp3566-Lfunc_begin0 - .quad Lset3227 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3228, Ltmp3566-Lfunc_begin0 - .quad Lset3228 -.set Lset3229, Ltmp3568-Lfunc_begin0 - .quad Lset3229 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3230, Ltmp3568-Lfunc_begin0 - .quad Lset3230 -.set Lset3231, Ltmp3635-Lfunc_begin0 - .quad Lset3231 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3232, Ltmp3635-Lfunc_begin0 - .quad Lset3232 -.set Lset3233, Ltmp3661-Lfunc_begin0 - .quad Lset3233 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3234, Ltmp3663-Lfunc_begin0 - .quad Lset3234 -.set Lset3235, Ltmp3688-Lfunc_begin0 - .quad Lset3235 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3236, Ltmp3690-Lfunc_begin0 - .quad Lset3236 -.set Lset3237, Ltmp3692-Lfunc_begin0 - .quad Lset3237 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3238, Ltmp3692-Lfunc_begin0 - .quad Lset3238 -.set Lset3239, Ltmp3696-Lfunc_begin0 - .quad Lset3239 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3240, Ltmp3696-Lfunc_begin0 - .quad Lset3240 -.set Lset3241, Ltmp3717-Lfunc_begin0 - .quad Lset3241 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3242, Ltmp3717-Lfunc_begin0 - .quad Lset3242 -.set Lset3243, Ltmp3719-Lfunc_begin0 - .quad Lset3243 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3244, Ltmp3719-Lfunc_begin0 - .quad Lset3244 -.set Lset3245, Ltmp3805-Lfunc_begin0 - .quad Lset3245 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3246, Ltmp3805-Lfunc_begin0 - .quad Lset3246 -.set Lset3247, Ltmp3811-Lfunc_begin0 - .quad Lset3247 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3248, Ltmp3813-Lfunc_begin0 - .quad Lset3248 -.set Lset3249, Ltmp3817-Lfunc_begin0 - .quad Lset3249 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3250, Ltmp3817-Lfunc_begin0 - .quad Lset3250 -.set Lset3251, Ltmp3847-Lfunc_begin0 - .quad Lset3251 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3252, Ltmp3854-Lfunc_begin0 - .quad Lset3252 -.set Lset3253, Ltmp3865-Lfunc_begin0 - .quad Lset3253 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3254, Ltmp3873-Lfunc_begin0 - .quad Lset3254 -.set Lset3255, Ltmp3877-Lfunc_begin0 - .quad Lset3255 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset3256, Ltmp3877-Lfunc_begin0 - .quad Lset3256 -.set Lset3257, Ltmp3881-Lfunc_begin0 - .quad Lset3257 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -.set Lset3258, Ltmp3885-Lfunc_begin0 - .quad Lset3258 -.set Lset3259, Ltmp3891-Lfunc_begin0 - .quad Lset3259 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3260, Ltmp3896-Lfunc_begin0 - .quad Lset3260 -.set Lset3261, Ltmp3913-Lfunc_begin0 - .quad Lset3261 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -.set Lset3262, Ltmp3913-Lfunc_begin0 - .quad Lset3262 -.set Lset3263, Ltmp3929-Lfunc_begin0 - .quad Lset3263 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3264, Ltmp3930-Lfunc_begin0 - .quad Lset3264 -.set Lset3265, Ltmp3937-Lfunc_begin0 - .quad Lset3265 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3266, Ltmp3939-Lfunc_begin0 - .quad Lset3266 -.set Lset3267, Ltmp3963-Lfunc_begin0 - .quad Lset3267 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3268, Ltmp3965-Lfunc_begin0 - .quad Lset3268 -.set Lset3269, Ltmp3989-Lfunc_begin0 - .quad Lset3269 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3270, Ltmp3991-Lfunc_begin0 - .quad Lset3270 -.set Lset3271, Ltmp4014-Lfunc_begin0 - .quad Lset3271 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3272, Ltmp4016-Lfunc_begin0 - .quad Lset3272 -.set Lset3273, Ltmp4050-Lfunc_begin0 - .quad Lset3273 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3274, Ltmp4052-Lfunc_begin0 - .quad Lset3274 -.set Lset3275, Ltmp4087-Lfunc_begin0 - .quad Lset3275 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3276, Ltmp4089-Lfunc_begin0 - .quad Lset3276 -.set Lset3277, Ltmp4107-Lfunc_begin0 - .quad Lset3277 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3278, Ltmp4111-Lfunc_begin0 - .quad Lset3278 -.set Lset3279, Ltmp4133-Lfunc_begin0 - .quad Lset3279 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3280, Ltmp4133-Lfunc_begin0 - .quad Lset3280 -.set Lset3281, Ltmp4135-Lfunc_begin0 - .quad Lset3281 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3282, Ltmp4139-Lfunc_begin0 - .quad Lset3282 -.set Lset3283, Ltmp4140-Lfunc_begin0 - .quad Lset3283 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3284, Ltmp4144-Lfunc_begin0 - .quad Lset3284 -.set Lset3285, Ltmp4147-Lfunc_begin0 - .quad Lset3285 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3286, Ltmp4151-Lfunc_begin0 - .quad Lset3286 -.set Lset3287, Ltmp4174-Lfunc_begin0 - .quad Lset3287 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3288, Ltmp4174-Lfunc_begin0 - .quad Lset3288 -.set Lset3289, Ltmp4176-Lfunc_begin0 - .quad Lset3289 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3290, Ltmp4180-Lfunc_begin0 - .quad Lset3290 -.set Lset3291, Ltmp4181-Lfunc_begin0 - .quad Lset3291 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3292, Ltmp4185-Lfunc_begin0 - .quad Lset3292 -.set Lset3293, Ltmp4188-Lfunc_begin0 - .quad Lset3293 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3294, Ltmp4192-Lfunc_begin0 - .quad Lset3294 -.set Lset3295, Ltmp4214-Lfunc_begin0 - .quad Lset3295 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3296, Ltmp4214-Lfunc_begin0 - .quad Lset3296 -.set Lset3297, Ltmp4216-Lfunc_begin0 - .quad Lset3297 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3298, Ltmp4220-Lfunc_begin0 - .quad Lset3298 -.set Lset3299, Ltmp4221-Lfunc_begin0 - .quad Lset3299 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3300, Ltmp4225-Lfunc_begin0 - .quad Lset3300 -.set Lset3301, Ltmp4228-Lfunc_begin0 - .quad Lset3301 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3302, Ltmp4232-Lfunc_begin0 - .quad Lset3302 -.set Lset3303, Ltmp4255-Lfunc_begin0 - .quad Lset3303 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3304, Ltmp4255-Lfunc_begin0 - .quad Lset3304 -.set Lset3305, Ltmp4257-Lfunc_begin0 - .quad Lset3305 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3306, Ltmp4261-Lfunc_begin0 - .quad Lset3306 -.set Lset3307, Ltmp4262-Lfunc_begin0 - .quad Lset3307 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3308, Ltmp4266-Lfunc_begin0 - .quad Lset3308 -.set Lset3309, Ltmp4269-Lfunc_begin0 - .quad Lset3309 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3310, Ltmp4273-Lfunc_begin0 - .quad Lset3310 -.set Lset3311, Ltmp4295-Lfunc_begin0 - .quad Lset3311 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3312, Ltmp4295-Lfunc_begin0 - .quad Lset3312 -.set Lset3313, Ltmp4297-Lfunc_begin0 - .quad Lset3313 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3314, Ltmp4301-Lfunc_begin0 - .quad Lset3314 -.set Lset3315, Ltmp4302-Lfunc_begin0 - .quad Lset3315 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3316, Ltmp4306-Lfunc_begin0 - .quad Lset3316 -.set Lset3317, Ltmp4309-Lfunc_begin0 - .quad Lset3317 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3318, Ltmp4313-Lfunc_begin0 - .quad Lset3318 -.set Lset3319, Ltmp4336-Lfunc_begin0 - .quad Lset3319 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3320, Ltmp4336-Lfunc_begin0 - .quad Lset3320 -.set Lset3321, Ltmp4338-Lfunc_begin0 - .quad Lset3321 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3322, Ltmp4342-Lfunc_begin0 - .quad Lset3322 -.set Lset3323, Ltmp4343-Lfunc_begin0 - .quad Lset3323 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3324, Ltmp4347-Lfunc_begin0 - .quad Lset3324 -.set Lset3325, Ltmp4353-Lfunc_begin0 - .quad Lset3325 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3326, Ltmp4355-Lfunc_begin0 - .quad Lset3326 -.set Lset3327, Ltmp4386-Lfunc_begin0 - .quad Lset3327 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3328, Ltmp4388-Lfunc_begin0 - .quad Lset3328 -.set Lset3329, Ltmp4414-Lfunc_begin0 - .quad Lset3329 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3330, Ltmp4417-Lfunc_begin0 - .quad Lset3330 -.set Lset3331, Ltmp4419-Lfunc_begin0 - .quad Lset3331 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3332, Ltmp4421-Lfunc_begin0 - .quad Lset3332 -.set Lset3333, Ltmp4426-Lfunc_begin0 - .quad Lset3333 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3334, Ltmp4426-Lfunc_begin0 - .quad Lset3334 -.set Lset3335, Ltmp4433-Lfunc_begin0 - .quad Lset3335 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3336, Ltmp4445-Lfunc_begin0 - .quad Lset3336 -.set Lset3337, Ltmp4455-Lfunc_begin0 - .quad Lset3337 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3338, Ltmp4458-Lfunc_begin0 - .quad Lset3338 -.set Lset3339, Ltmp4460-Lfunc_begin0 - .quad Lset3339 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3340, Ltmp4462-Lfunc_begin0 - .quad Lset3340 -.set Lset3341, Ltmp4467-Lfunc_begin0 - .quad Lset3341 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3342, Ltmp4467-Lfunc_begin0 - .quad Lset3342 -.set Lset3343, Ltmp4474-Lfunc_begin0 - .quad Lset3343 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3344, Ltmp4486-Lfunc_begin0 - .quad Lset3344 -.set Lset3345, Ltmp4505-Lfunc_begin0 - .quad Lset3345 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3346, Ltmp4509-Lfunc_begin0 - .quad Lset3346 -.set Lset3347, Ltmp4511-Lfunc_begin0 - .quad Lset3347 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3348, Ltmp4513-Lfunc_begin0 - .quad Lset3348 -.set Lset3349, Ltmp4518-Lfunc_begin0 - .quad Lset3349 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3350, Ltmp4523-Lfunc_begin0 - .quad Lset3350 -.set Lset3351, Ltmp4532-Lfunc_begin0 - .quad Lset3351 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3352, Ltmp4536-Lfunc_begin0 - .quad Lset3352 -.set Lset3353, Ltmp4538-Lfunc_begin0 - .quad Lset3353 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3354, Ltmp4543-Lfunc_begin0 - .quad Lset3354 -.set Lset3355, Ltmp4563-Lfunc_begin0 - .quad Lset3355 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3356, Ltmp4571-Lfunc_begin0 - .quad Lset3356 -.set Lset3357, Ltmp4586-Lfunc_begin0 - .quad Lset3357 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3358, Ltmp4591-Lfunc_begin0 - .quad Lset3358 -.set Lset3359, Ltmp4595-Lfunc_begin0 - .quad Lset3359 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3360, Ltmp4597-Lfunc_begin0 - .quad Lset3360 -.set Lset3361, Ltmp4599-Lfunc_begin0 - .quad Lset3361 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3362, Ltmp4599-Lfunc_begin0 - .quad Lset3362 -.set Lset3363, Ltmp4603-Lfunc_begin0 - .quad Lset3363 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3364, Ltmp4603-Lfunc_begin0 - .quad Lset3364 -.set Lset3365, Ltmp4622-Lfunc_begin0 - .quad Lset3365 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3366, Ltmp4622-Lfunc_begin0 - .quad Lset3366 -.set Lset3367, Ltmp4641-Lfunc_begin0 - .quad Lset3367 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3368, Ltmp4641-Lfunc_begin0 - .quad Lset3368 -.set Lset3369, Ltmp4655-Lfunc_begin0 - .quad Lset3369 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3370, Ltmp4659-Lfunc_begin0 - .quad Lset3370 -.set Lset3371, Ltmp4663-Lfunc_begin0 - .quad Lset3371 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3372, Ltmp4665-Lfunc_begin0 - .quad Lset3372 -.set Lset3373, Ltmp4667-Lfunc_begin0 - .quad Lset3373 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3374, Ltmp4667-Lfunc_begin0 - .quad Lset3374 -.set Lset3375, Ltmp4672-Lfunc_begin0 - .quad Lset3375 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3376, Ltmp4672-Lfunc_begin0 - .quad Lset3376 -.set Lset3377, Ltmp4689-Lfunc_begin0 - .quad Lset3377 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3378, Ltmp4689-Lfunc_begin0 - .quad Lset3378 -.set Lset3379, Ltmp4709-Lfunc_begin0 - .quad Lset3379 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3380, Ltmp4709-Lfunc_begin0 - .quad Lset3380 -.set Lset3381, Ltmp4719-Lfunc_begin0 - .quad Lset3381 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3382, Ltmp4725-Lfunc_begin0 - .quad Lset3382 -.set Lset3383, Ltmp4729-Lfunc_begin0 - .quad Lset3383 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3384, Ltmp4731-Lfunc_begin0 - .quad Lset3384 -.set Lset3385, Ltmp4755-Lfunc_begin0 - .quad Lset3385 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3386, Ltmp4776-Lfunc_begin0 - .quad Lset3386 -.set Lset3387, Ltmp4786-Lfunc_begin0 - .quad Lset3387 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3388, Ltmp4788-Lfunc_begin0 - .quad Lset3388 -.set Lset3389, Ltmp4816-Lfunc_begin0 - .quad Lset3389 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3390, Ltmp4818-Lfunc_begin0 - .quad Lset3390 -.set Lset3391, Ltmp4844-Lfunc_begin0 - .quad Lset3391 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3392, Ltmp4848-Lfunc_begin0 - .quad Lset3392 -.set Lset3393, Ltmp4862-Lfunc_begin0 - .quad Lset3393 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3394, Ltmp4862-Lfunc_begin0 - .quad Lset3394 -.set Lset3395, Ltmp4899-Lfunc_begin0 - .quad Lset3395 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3396, Ltmp4900-Lfunc_begin0 - .quad Lset3396 -.set Lset3397, Ltmp4903-Lfunc_begin0 - .quad Lset3397 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3398, Ltmp4907-Lfunc_begin0 - .quad Lset3398 -.set Lset3399, Ltmp4932-Lfunc_begin0 - .quad Lset3399 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3400, Ltmp4932-Lfunc_begin0 - .quad Lset3400 -.set Lset3401, Ltmp4937-Lfunc_begin0 - .quad Lset3401 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3402, Ltmp4941-Lfunc_begin0 - .quad Lset3402 -.set Lset3403, Ltmp4944-Lfunc_begin0 - .quad Lset3403 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3404, Ltmp4948-Lfunc_begin0 - .quad Lset3404 -.set Lset3405, Ltmp4962-Lfunc_begin0 - .quad Lset3405 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3406, Ltmp4962-Lfunc_begin0 - .quad Lset3406 -.set Lset3407, Ltmp4997-Lfunc_begin0 - .quad Lset3407 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3408, Ltmp4998-Lfunc_begin0 - .quad Lset3408 -.set Lset3409, Ltmp5001-Lfunc_begin0 - .quad Lset3409 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3410, Ltmp5005-Lfunc_begin0 - .quad Lset3410 -.set Lset3411, Ltmp5030-Lfunc_begin0 - .quad Lset3411 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3412, Ltmp5030-Lfunc_begin0 - .quad Lset3412 -.set Lset3413, Ltmp5034-Lfunc_begin0 - .quad Lset3413 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3414, Ltmp5038-Lfunc_begin0 - .quad Lset3414 -.set Lset3415, Ltmp5042-Lfunc_begin0 - .quad Lset3415 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3416, Ltmp5042-Lfunc_begin0 - .quad Lset3416 -.set Lset3417, Ltmp5048-Lfunc_begin0 - .quad Lset3417 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3418, Ltmp5048-Lfunc_begin0 - .quad Lset3418 -.set Lset3419, Ltmp5054-Lfunc_begin0 - .quad Lset3419 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3420, Ltmp5054-Lfunc_begin0 - .quad Lset3420 -.set Lset3421, Ltmp5062-Lfunc_begin0 - .quad Lset3421 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3422, Ltmp5076-Lfunc_begin0 - .quad Lset3422 -.set Lset3423, Ltmp5080-Lfunc_begin0 - .quad Lset3423 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3424, Ltmp5080-Lfunc_begin0 - .quad Lset3424 -.set Lset3425, Ltmp5086-Lfunc_begin0 - .quad Lset3425 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3426, Ltmp5086-Lfunc_begin0 - .quad Lset3426 -.set Lset3427, Ltmp5092-Lfunc_begin0 - .quad Lset3427 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3428, Ltmp5092-Lfunc_begin0 - .quad Lset3428 -.set Lset3429, Ltmp5099-Lfunc_begin0 - .quad Lset3429 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3430, Ltmp5112-Lfunc_begin0 - .quad Lset3430 -.set Lset3431, Ltmp5115-Lfunc_begin0 - .quad Lset3431 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3432, Ltmp5119-Lfunc_begin0 - .quad Lset3432 -.set Lset3433, Ltmp5138-Lfunc_begin0 - .quad Lset3433 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3434, Ltmp5138-Lfunc_begin0 - .quad Lset3434 -.set Lset3435, Ltmp5140-Lfunc_begin0 - .quad Lset3435 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3436, Ltmp5144-Lfunc_begin0 - .quad Lset3436 -.set Lset3437, Ltmp5147-Lfunc_begin0 - .quad Lset3437 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3438, Ltmp5151-Lfunc_begin0 - .quad Lset3438 -.set Lset3439, Ltmp5170-Lfunc_begin0 - .quad Lset3439 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3440, Ltmp5170-Lfunc_begin0 - .quad Lset3440 -.set Lset3441, Ltmp5172-Lfunc_begin0 - .quad Lset3441 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3442, Ltmp5176-Lfunc_begin0 - .quad Lset3442 -.set Lset3443, Ltmp5179-Lfunc_begin0 - .quad Lset3443 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3444, Ltmp5183-Lfunc_begin0 - .quad Lset3444 -.set Lset3445, Ltmp5202-Lfunc_begin0 - .quad Lset3445 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3446, Ltmp5202-Lfunc_begin0 - .quad Lset3446 -.set Lset3447, Ltmp5204-Lfunc_begin0 - .quad Lset3447 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3448, Ltmp5208-Lfunc_begin0 - .quad Lset3448 -.set Lset3449, Ltmp5214-Lfunc_begin0 - .quad Lset3449 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3450, Ltmp5216-Lfunc_begin0 - .quad Lset3450 -.set Lset3451, Ltmp5232-Lfunc_begin0 - .quad Lset3451 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3452, Ltmp5234-Lfunc_begin0 - .quad Lset3452 -.set Lset3453, Ltmp5250-Lfunc_begin0 - .quad Lset3453 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3454, Ltmp5252-Lfunc_begin0 - .quad Lset3454 -.set Lset3455, Ltmp5275-Lfunc_begin0 - .quad Lset3455 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3456, Ltmp5277-Lfunc_begin0 - .quad Lset3456 -.set Lset3457, Ltmp5300-Lfunc_begin0 - .quad Lset3457 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3458, Ltmp5302-Lfunc_begin0 - .quad Lset3458 -.set Lset3459, Ltmp5326-Lfunc_begin0 - .quad Lset3459 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3460, Ltmp5328-Lfunc_begin0 - .quad Lset3460 -.set Lset3461, Ltmp5351-Lfunc_begin0 - .quad Lset3461 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3462, Ltmp5353-Lfunc_begin0 - .quad Lset3462 -.set Lset3463, Ltmp5376-Lfunc_begin0 - .quad Lset3463 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3464, Ltmp5378-Lfunc_begin0 - .quad Lset3464 -.set Lset3465, Ltmp5400-Lfunc_begin0 - .quad Lset3465 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3466, Ltmp5402-Lfunc_begin0 - .quad Lset3466 -.set Lset3467, Ltmp5426-Lfunc_begin0 - .quad Lset3467 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3468, Ltmp5428-Lfunc_begin0 - .quad Lset3468 -.set Lset3469, Ltmp5451-Lfunc_begin0 - .quad Lset3469 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3470, Ltmp5453-Lfunc_begin0 - .quad Lset3470 -.set Lset3471, Ltmp5476-Lfunc_begin0 - .quad Lset3471 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3472, Ltmp5478-Lfunc_begin0 - .quad Lset3472 -.set Lset3473, Ltmp5502-Lfunc_begin0 - .quad Lset3473 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3474, Ltmp5504-Lfunc_begin0 - .quad Lset3474 -.set Lset3475, Ltmp5527-Lfunc_begin0 - .quad Lset3475 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3476, Ltmp5529-Lfunc_begin0 - .quad Lset3476 -.set Lset3477, Ltmp5552-Lfunc_begin0 - .quad Lset3477 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3478, Ltmp5554-Lfunc_begin0 - .quad Lset3478 -.set Lset3479, Ltmp5577-Lfunc_begin0 - .quad Lset3479 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3480, Ltmp5579-Lfunc_begin0 - .quad Lset3480 -.set Lset3481, Ltmp5600-Lfunc_begin0 - .quad Lset3481 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3482, Ltmp5600-Lfunc_begin0 - .quad Lset3482 -.set Lset3483, Ltmp5607-Lfunc_begin0 - .quad Lset3483 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3484, Ltmp5613-Lfunc_begin0 - .quad Lset3484 -.set Lset3485, Ltmp5623-Lfunc_begin0 - .quad Lset3485 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3486, Ltmp5628-Lfunc_begin0 - .quad Lset3486 -.set Lset3487, Ltmp5633-Lfunc_begin0 - .quad Lset3487 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3488, Ltmp5633-Lfunc_begin0 - .quad Lset3488 -.set Lset3489, Ltmp5640-Lfunc_begin0 - .quad Lset3489 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3490, Ltmp5645-Lfunc_begin0 - .quad Lset3490 -.set Lset3491, Ltmp5654-Lfunc_begin0 - .quad Lset3491 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3492, Ltmp5659-Lfunc_begin0 - .quad Lset3492 -.set Lset3493, Ltmp5665-Lfunc_begin0 - .quad Lset3493 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3494, Ltmp5667-Lfunc_begin0 - .quad Lset3494 -.set Lset3495, Ltmp5690-Lfunc_begin0 - .quad Lset3495 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3496, Ltmp5692-Lfunc_begin0 - .quad Lset3496 -.set Lset3497, Ltmp5715-Lfunc_begin0 - .quad Lset3497 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3498, Ltmp5717-Lfunc_begin0 - .quad Lset3498 -.set Lset3499, Ltmp5739-Lfunc_begin0 - .quad Lset3499 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3500, Ltmp5739-Lfunc_begin0 - .quad Lset3500 -.set Lset3501, Ltmp5746-Lfunc_begin0 - .quad Lset3501 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3502, Ltmp5752-Lfunc_begin0 - .quad Lset3502 -.set Lset3503, Ltmp5759-Lfunc_begin0 - .quad Lset3503 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3504, Ltmp5764-Lfunc_begin0 - .quad Lset3504 -.set Lset3505, Ltmp5769-Lfunc_begin0 - .quad Lset3505 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3506, Ltmp5769-Lfunc_begin0 - .quad Lset3506 -.set Lset3507, Ltmp5776-Lfunc_begin0 - .quad Lset3507 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3508, Ltmp5781-Lfunc_begin0 - .quad Lset3508 -.set Lset3509, Ltmp5787-Lfunc_begin0 - .quad Lset3509 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3510, Ltmp5792-Lfunc_begin0 - .quad Lset3510 -.set Lset3511, Ltmp5798-Lfunc_begin0 - .quad Lset3511 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3512, Ltmp5800-Lfunc_begin0 - .quad Lset3512 -.set Lset3513, Ltmp5817-Lfunc_begin0 - .quad Lset3513 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3514, Ltmp5819-Lfunc_begin0 - .quad Lset3514 -.set Lset3515, Ltmp5836-Lfunc_begin0 - .quad Lset3515 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3516, Ltmp5838-Lfunc_begin0 - .quad Lset3516 -.set Lset3517, Ltmp5855-Lfunc_begin0 - .quad Lset3517 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3518, Ltmp5857-Lfunc_begin0 - .quad Lset3518 -.set Lset3519, Ltmp5874-Lfunc_begin0 - .quad Lset3519 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3520, Ltmp5876-Lfunc_begin0 - .quad Lset3520 -.set Lset3521, Ltmp5891-Lfunc_begin0 - .quad Lset3521 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3522, Ltmp5895-Lfunc_begin0 - .quad Lset3522 -.set Lset3523, Ltmp5906-Lfunc_begin0 - .quad Lset3523 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3524, Ltmp5906-Lfunc_begin0 - .quad Lset3524 -.set Lset3525, Ltmp5907-Lfunc_begin0 - .quad Lset3525 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -80 - .byte 127 ## -.set Lset3526, Ltmp5907-Lfunc_begin0 - .quad Lset3526 -.set Lset3527, Ltmp5917-Lfunc_begin0 - .quad Lset3527 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3528, Ltmp5917-Lfunc_begin0 - .quad Lset3528 -.set Lset3529, Ltmp5923-Lfunc_begin0 - .quad Lset3529 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3530, Ltmp5926-Lfunc_begin0 - .quad Lset3530 -.set Lset3531, Ltmp5930-Lfunc_begin0 - .quad Lset3531 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3532, Ltmp5934-Lfunc_begin0 - .quad Lset3532 -.set Lset3533, Ltmp5935-Lfunc_begin0 - .quad Lset3533 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -.set Lset3534, Ltmp5935-Lfunc_begin0 - .quad Lset3534 -.set Lset3535, Ltmp5938-Lfunc_begin0 - .quad Lset3535 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3536, Ltmp5938-Lfunc_begin0 - .quad Lset3536 -.set Lset3537, Ltmp5941-Lfunc_begin0 - .quad Lset3537 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3538, Ltmp5943-Lfunc_begin0 - .quad Lset3538 -.set Lset3539, Ltmp5944-Lfunc_begin0 - .quad Lset3539 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3540, Ltmp5945-Lfunc_begin0 - .quad Lset3540 -.set Lset3541, Ltmp5949-Lfunc_begin0 - .quad Lset3541 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3542, Ltmp5949-Lfunc_begin0 - .quad Lset3542 -.set Lset3543, Ltmp5961-Lfunc_begin0 - .quad Lset3543 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3544, Ltmp5964-Lfunc_begin0 - .quad Lset3544 -.set Lset3545, Ltmp5965-Lfunc_begin0 - .quad Lset3545 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3546, Ltmp5965-Lfunc_begin0 - .quad Lset3546 -.set Lset3547, Ltmp5969-Lfunc_begin0 - .quad Lset3547 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3548, Ltmp5969-Lfunc_begin0 - .quad Lset3548 -.set Lset3549, Ltmp5989-Lfunc_begin0 - .quad Lset3549 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3550, Ltmp5989-Lfunc_begin0 - .quad Lset3550 -.set Lset3551, Ltmp5991-Lfunc_begin0 - .quad Lset3551 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3552, Ltmp5991-Lfunc_begin0 - .quad Lset3552 -.set Lset3553, Ltmp5997-Lfunc_begin0 - .quad Lset3553 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3554, Ltmp5997-Lfunc_begin0 - .quad Lset3554 -.set Lset3555, Ltmp5999-Lfunc_begin0 - .quad Lset3555 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3556, Ltmp5999-Lfunc_begin0 - .quad Lset3556 -.set Lset3557, Ltmp6022-Lfunc_begin0 - .quad Lset3557 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3558, Ltmp6022-Lfunc_begin0 - .quad Lset3558 -.set Lset3559, Ltmp6023-Lfunc_begin0 - .quad Lset3559 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3560, Ltmp6023-Lfunc_begin0 - .quad Lset3560 -.set Lset3561, Ltmp6049-Lfunc_begin0 - .quad Lset3561 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3562, Ltmp6049-Lfunc_begin0 - .quad Lset3562 -.set Lset3563, Ltmp6050-Lfunc_begin0 - .quad Lset3563 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3564, Ltmp6050-Lfunc_begin0 - .quad Lset3564 -.set Lset3565, Ltmp6051-Lfunc_begin0 - .quad Lset3565 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3566, Ltmp6052-Lfunc_begin0 - .quad Lset3566 -.set Lset3567, Ltmp6056-Lfunc_begin0 - .quad Lset3567 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3568, Ltmp6056-Lfunc_begin0 - .quad Lset3568 -.set Lset3569, Ltmp6105-Lfunc_begin0 - .quad Lset3569 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3570, Ltmp6107-Lfunc_begin0 - .quad Lset3570 -.set Lset3571, Ltmp6120-Lfunc_begin0 - .quad Lset3571 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3572, Ltmp6120-Lfunc_begin0 - .quad Lset3572 -.set Lset3573, Ltmp6121-Lfunc_begin0 - .quad Lset3573 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3574, Ltmp6121-Lfunc_begin0 - .quad Lset3574 -.set Lset3575, Ltmp6138-Lfunc_begin0 - .quad Lset3575 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3576, Ltmp6138-Lfunc_begin0 - .quad Lset3576 -.set Lset3577, Ltmp6139-Lfunc_begin0 - .quad Lset3577 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3578, Ltmp6139-Lfunc_begin0 - .quad Lset3578 -.set Lset3579, Ltmp6148-Lfunc_begin0 - .quad Lset3579 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3580, Ltmp6148-Lfunc_begin0 - .quad Lset3580 -.set Lset3581, Ltmp6150-Lfunc_begin0 - .quad Lset3581 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3582, Ltmp6150-Lfunc_begin0 - .quad Lset3582 -.set Lset3583, Ltmp6168-Lfunc_begin0 - .quad Lset3583 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3584, Ltmp6168-Lfunc_begin0 - .quad Lset3584 -.set Lset3585, Ltmp6171-Lfunc_begin0 - .quad Lset3585 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3586, Ltmp6171-Lfunc_begin0 - .quad Lset3586 -.set Lset3587, Ltmp6175-Lfunc_begin0 - .quad Lset3587 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3588, Ltmp6175-Lfunc_begin0 - .quad Lset3588 -.set Lset3589, Ltmp6177-Lfunc_begin0 - .quad Lset3589 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3590, Ltmp6177-Lfunc_begin0 - .quad Lset3590 -.set Lset3591, Ltmp6181-Lfunc_begin0 - .quad Lset3591 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3592, Ltmp6183-Lfunc_begin0 - .quad Lset3592 -.set Lset3593, Ltmp6199-Lfunc_begin0 - .quad Lset3593 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3594, Ltmp6199-Lfunc_begin0 - .quad Lset3594 -.set Lset3595, Ltmp6200-Lfunc_begin0 - .quad Lset3595 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3596, Ltmp6200-Lfunc_begin0 - .quad Lset3596 -.set Lset3597, Ltmp6216-Lfunc_begin0 - .quad Lset3597 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3598, Ltmp6216-Lfunc_begin0 - .quad Lset3598 -.set Lset3599, Ltmp6217-Lfunc_begin0 - .quad Lset3599 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3600, Ltmp6217-Lfunc_begin0 - .quad Lset3600 -.set Lset3601, Ltmp6244-Lfunc_begin0 - .quad Lset3601 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3602, Ltmp6245-Lfunc_begin0 - .quad Lset3602 -.set Lset3603, Ltmp6265-Lfunc_begin0 - .quad Lset3603 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3604, Ltmp6265-Lfunc_begin0 - .quad Lset3604 -.set Lset3605, Ltmp6266-Lfunc_begin0 - .quad Lset3605 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3606, Ltmp6266-Lfunc_begin0 - .quad Lset3606 -.set Lset3607, Ltmp6295-Lfunc_begin0 - .quad Lset3607 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3608, Ltmp6295-Lfunc_begin0 - .quad Lset3608 -.set Lset3609, Ltmp6296-Lfunc_begin0 - .quad Lset3609 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3610, Ltmp6296-Lfunc_begin0 - .quad Lset3610 -.set Lset3611, Ltmp6301-Lfunc_begin0 - .quad Lset3611 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3612, Ltmp6301-Lfunc_begin0 - .quad Lset3612 -.set Lset3613, Ltmp6307-Lfunc_begin0 - .quad Lset3613 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3614, Ltmp6307-Lfunc_begin0 - .quad Lset3614 -.set Lset3615, Ltmp6320-Lfunc_begin0 - .quad Lset3615 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3616, Ltmp6320-Lfunc_begin0 - .quad Lset3616 -.set Lset3617, Ltmp6321-Lfunc_begin0 - .quad Lset3617 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset3618, Ltmp6321-Lfunc_begin0 - .quad Lset3618 -.set Lset3619, Ltmp6329-Lfunc_begin0 - .quad Lset3619 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3620, Ltmp6329-Lfunc_begin0 - .quad Lset3620 -.set Lset3621, Ltmp6333-Lfunc_begin0 - .quad Lset3621 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3622, Ltmp6333-Lfunc_begin0 - .quad Lset3622 -.set Lset3623, Ltmp6346-Lfunc_begin0 - .quad Lset3623 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3624, Ltmp6346-Lfunc_begin0 - .quad Lset3624 -.set Lset3625, Ltmp6348-Lfunc_begin0 - .quad Lset3625 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset3626, Ltmp6348-Lfunc_begin0 - .quad Lset3626 -.set Lset3627, Ltmp6355-Lfunc_begin0 - .quad Lset3627 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3628, Ltmp6355-Lfunc_begin0 - .quad Lset3628 -.set Lset3629, Ltmp6357-Lfunc_begin0 - .quad Lset3629 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref -.set Lset3630, Ltmp6357-Lfunc_begin0 - .quad Lset3630 -.set Lset3631, Ltmp6376-Lfunc_begin0 - .quad Lset3631 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3632, Ltmp6377-Lfunc_begin0 - .quad Lset3632 -.set Lset3633, Ltmp6379-Lfunc_begin0 - .quad Lset3633 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3634, Ltmp6380-Lfunc_begin0 - .quad Lset3634 -.set Lset3635, Ltmp6382-Lfunc_begin0 - .quad Lset3635 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3636, Ltmp6382-Lfunc_begin0 - .quad Lset3636 -.set Lset3637, Ltmp6384-Lfunc_begin0 - .quad Lset3637 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset3638, Ltmp6384-Lfunc_begin0 - .quad Lset3638 -.set Lset3639, Ltmp6385-Lfunc_begin0 - .quad Lset3639 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3640, Ltmp6385-Lfunc_begin0 - .quad Lset3640 -.set Lset3641, Ltmp6412-Lfunc_begin0 - .quad Lset3641 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3642, Ltmp6412-Lfunc_begin0 - .quad Lset3642 -.set Lset3643, Ltmp6413-Lfunc_begin0 - .quad Lset3643 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset3644, Ltmp6413-Lfunc_begin0 - .quad Lset3644 -.set Lset3645, Ltmp6417-Lfunc_begin0 - .quad Lset3645 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset3646, Ltmp6417-Lfunc_begin0 - .quad Lset3646 -.set Lset3647, Lfunc_end21-Lfunc_begin0 - .quad Lset3647 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .byte 6 ## DW_OP_deref - .quad 0 - .quad 0 -Ldebug_loc191: -.set Lset3648, Ltmp1181-Lfunc_begin0 - .quad Lset3648 -.set Lset3649, Ltmp1187-Lfunc_begin0 - .quad Lset3649 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3650, Ltmp1199-Lfunc_begin0 - .quad Lset3650 -.set Lset3651, Ltmp1211-Lfunc_begin0 - .quad Lset3651 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3652, Ltmp1212-Lfunc_begin0 - .quad Lset3652 -.set Lset3653, Ltmp1216-Lfunc_begin0 - .quad Lset3653 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3654, Ltmp1221-Lfunc_begin0 - .quad Lset3654 -.set Lset3655, Ltmp1233-Lfunc_begin0 - .quad Lset3655 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3656, Ltmp1234-Lfunc_begin0 - .quad Lset3656 -.set Lset3657, Ltmp1238-Lfunc_begin0 - .quad Lset3657 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3658, Ltmp1243-Lfunc_begin0 - .quad Lset3658 -.set Lset3659, Ltmp1256-Lfunc_begin0 - .quad Lset3659 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3660, Ltmp1257-Lfunc_begin0 - .quad Lset3660 -.set Lset3661, Ltmp1261-Lfunc_begin0 - .quad Lset3661 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3662, Ltmp1266-Lfunc_begin0 - .quad Lset3662 -.set Lset3663, Ltmp1277-Lfunc_begin0 - .quad Lset3663 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3664, Ltmp1278-Lfunc_begin0 - .quad Lset3664 -.set Lset3665, Ltmp1282-Lfunc_begin0 - .quad Lset3665 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3666, Ltmp1287-Lfunc_begin0 - .quad Lset3666 -.set Lset3667, Ltmp1311-Lfunc_begin0 - .quad Lset3667 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3668, Ltmp1312-Lfunc_begin0 - .quad Lset3668 -.set Lset3669, Ltmp1315-Lfunc_begin0 - .quad Lset3669 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3670, Ltmp1320-Lfunc_begin0 - .quad Lset3670 -.set Lset3671, Ltmp1334-Lfunc_begin0 - .quad Lset3671 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3672, Ltmp1335-Lfunc_begin0 - .quad Lset3672 -.set Lset3673, Ltmp1339-Lfunc_begin0 - .quad Lset3673 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3674, Ltmp1344-Lfunc_begin0 - .quad Lset3674 -.set Lset3675, Ltmp1359-Lfunc_begin0 - .quad Lset3675 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3676, Ltmp1359-Lfunc_begin0 - .quad Lset3676 -.set Lset3677, Ltmp1362-Lfunc_begin0 - .quad Lset3677 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset3678, Ltmp1366-Lfunc_begin0 - .quad Lset3678 -.set Lset3679, Ltmp1381-Lfunc_begin0 - .quad Lset3679 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3680, Ltmp1386-Lfunc_begin0 - .quad Lset3680 -.set Lset3681, Ltmp1401-Lfunc_begin0 - .quad Lset3681 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3682, Ltmp1401-Lfunc_begin0 - .quad Lset3682 -.set Lset3683, Ltmp1406-Lfunc_begin0 - .quad Lset3683 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3684, Ltmp1406-Lfunc_begin0 - .quad Lset3684 -.set Lset3685, Ltmp1411-Lfunc_begin0 - .quad Lset3685 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3686, Ltmp1414-Lfunc_begin0 - .quad Lset3686 -.set Lset3687, Ltmp1432-Lfunc_begin0 - .quad Lset3687 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3688, Ltmp1438-Lfunc_begin0 - .quad Lset3688 -.set Lset3689, Ltmp1441-Lfunc_begin0 - .quad Lset3689 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3690, Ltmp1441-Lfunc_begin0 - .quad Lset3690 -.set Lset3691, Ltmp1447-Lfunc_begin0 - .quad Lset3691 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3692, Ltmp1454-Lfunc_begin0 - .quad Lset3692 -.set Lset3693, Ltmp1458-Lfunc_begin0 - .quad Lset3693 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3694, Ltmp1459-Lfunc_begin0 - .quad Lset3694 -.set Lset3695, Ltmp1476-Lfunc_begin0 - .quad Lset3695 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3696, Ltmp1481-Lfunc_begin0 - .quad Lset3696 -.set Lset3697, Ltmp1496-Lfunc_begin0 - .quad Lset3697 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3698, Ltmp1496-Lfunc_begin0 - .quad Lset3698 -.set Lset3699, Ltmp1501-Lfunc_begin0 - .quad Lset3699 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3700, Ltmp1501-Lfunc_begin0 - .quad Lset3700 -.set Lset3701, Ltmp1505-Lfunc_begin0 - .quad Lset3701 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3702, Ltmp1508-Lfunc_begin0 - .quad Lset3702 -.set Lset3703, Ltmp1527-Lfunc_begin0 - .quad Lset3703 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3704, Ltmp1533-Lfunc_begin0 - .quad Lset3704 -.set Lset3705, Ltmp1536-Lfunc_begin0 - .quad Lset3705 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3706, Ltmp1536-Lfunc_begin0 - .quad Lset3706 -.set Lset3707, Ltmp1542-Lfunc_begin0 - .quad Lset3707 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3708, Ltmp1549-Lfunc_begin0 - .quad Lset3708 -.set Lset3709, Ltmp1553-Lfunc_begin0 - .quad Lset3709 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3710, Ltmp1554-Lfunc_begin0 - .quad Lset3710 -.set Lset3711, Ltmp1571-Lfunc_begin0 - .quad Lset3711 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3712, Ltmp1576-Lfunc_begin0 - .quad Lset3712 -.set Lset3713, Ltmp1592-Lfunc_begin0 - .quad Lset3713 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3714, Ltmp1592-Lfunc_begin0 - .quad Lset3714 -.set Lset3715, Ltmp1597-Lfunc_begin0 - .quad Lset3715 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset3716, Ltmp1599-Lfunc_begin0 - .quad Lset3716 -.set Lset3717, Ltmp1603-Lfunc_begin0 - .quad Lset3717 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3718, Ltmp1606-Lfunc_begin0 - .quad Lset3718 -.set Lset3719, Ltmp1614-Lfunc_begin0 - .quad Lset3719 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3720, Ltmp1614-Lfunc_begin0 - .quad Lset3720 -.set Lset3721, Ltmp1626-Lfunc_begin0 - .quad Lset3721 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3722, Ltmp1626-Lfunc_begin0 - .quad Lset3722 -.set Lset3723, Ltmp1627-Lfunc_begin0 - .quad Lset3723 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3724, Ltmp1627-Lfunc_begin0 - .quad Lset3724 -.set Lset3725, Ltmp1640-Lfunc_begin0 - .quad Lset3725 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3726, Ltmp1640-Lfunc_begin0 - .quad Lset3726 -.set Lset3727, Ltmp1643-Lfunc_begin0 - .quad Lset3727 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3728, Ltmp1643-Lfunc_begin0 - .quad Lset3728 -.set Lset3729, Ltmp1645-Lfunc_begin0 - .quad Lset3729 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3730, Ltmp1645-Lfunc_begin0 - .quad Lset3730 -.set Lset3731, Ltmp1649-Lfunc_begin0 - .quad Lset3731 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3732, Ltmp1649-Lfunc_begin0 - .quad Lset3732 -.set Lset3733, Ltmp1651-Lfunc_begin0 - .quad Lset3733 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3734, Ltmp1651-Lfunc_begin0 - .quad Lset3734 -.set Lset3735, Ltmp1653-Lfunc_begin0 - .quad Lset3735 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3736, Ltmp1653-Lfunc_begin0 - .quad Lset3736 -.set Lset3737, Ltmp1658-Lfunc_begin0 - .quad Lset3737 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3738, Ltmp1658-Lfunc_begin0 - .quad Lset3738 -.set Lset3739, Ltmp1676-Lfunc_begin0 - .quad Lset3739 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3740, Ltmp1682-Lfunc_begin0 - .quad Lset3740 -.set Lset3741, Ltmp1686-Lfunc_begin0 - .quad Lset3741 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3742, Ltmp1686-Lfunc_begin0 - .quad Lset3742 -.set Lset3743, Ltmp1690-Lfunc_begin0 - .quad Lset3743 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset3744, Ltmp1706-Lfunc_begin0 - .quad Lset3744 -.set Lset3745, Ltmp1710-Lfunc_begin0 - .quad Lset3745 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3746, Ltmp1711-Lfunc_begin0 - .quad Lset3746 -.set Lset3747, Ltmp1727-Lfunc_begin0 - .quad Lset3747 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3748, Ltmp1732-Lfunc_begin0 - .quad Lset3748 -.set Lset3749, Ltmp1748-Lfunc_begin0 - .quad Lset3749 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3750, Ltmp1748-Lfunc_begin0 - .quad Lset3750 -.set Lset3751, Ltmp1750-Lfunc_begin0 - .quad Lset3751 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset3752, Ltmp1752-Lfunc_begin0 - .quad Lset3752 -.set Lset3753, Ltmp1755-Lfunc_begin0 - .quad Lset3753 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3754, Ltmp1758-Lfunc_begin0 - .quad Lset3754 -.set Lset3755, Ltmp1766-Lfunc_begin0 - .quad Lset3755 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3756, Ltmp1766-Lfunc_begin0 - .quad Lset3756 -.set Lset3757, Ltmp1778-Lfunc_begin0 - .quad Lset3757 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3758, Ltmp1778-Lfunc_begin0 - .quad Lset3758 -.set Lset3759, Ltmp1779-Lfunc_begin0 - .quad Lset3759 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3760, Ltmp1779-Lfunc_begin0 - .quad Lset3760 -.set Lset3761, Ltmp1792-Lfunc_begin0 - .quad Lset3761 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3762, Ltmp1792-Lfunc_begin0 - .quad Lset3762 -.set Lset3763, Ltmp1795-Lfunc_begin0 - .quad Lset3763 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3764, Ltmp1795-Lfunc_begin0 - .quad Lset3764 -.set Lset3765, Ltmp1797-Lfunc_begin0 - .quad Lset3765 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3766, Ltmp1797-Lfunc_begin0 - .quad Lset3766 -.set Lset3767, Ltmp1801-Lfunc_begin0 - .quad Lset3767 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3768, Ltmp1801-Lfunc_begin0 - .quad Lset3768 -.set Lset3769, Ltmp1803-Lfunc_begin0 - .quad Lset3769 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3770, Ltmp1803-Lfunc_begin0 - .quad Lset3770 -.set Lset3771, Ltmp1805-Lfunc_begin0 - .quad Lset3771 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3772, Ltmp1805-Lfunc_begin0 - .quad Lset3772 -.set Lset3773, Ltmp1810-Lfunc_begin0 - .quad Lset3773 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3774, Ltmp1810-Lfunc_begin0 - .quad Lset3774 -.set Lset3775, Ltmp1828-Lfunc_begin0 - .quad Lset3775 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3776, Ltmp1834-Lfunc_begin0 - .quad Lset3776 -.set Lset3777, Ltmp1838-Lfunc_begin0 - .quad Lset3777 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3778, Ltmp1838-Lfunc_begin0 - .quad Lset3778 -.set Lset3779, Ltmp1841-Lfunc_begin0 - .quad Lset3779 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset3780, Ltmp1857-Lfunc_begin0 - .quad Lset3780 -.set Lset3781, Ltmp1861-Lfunc_begin0 - .quad Lset3781 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3782, Ltmp1862-Lfunc_begin0 - .quad Lset3782 -.set Lset3783, Ltmp1866-Lfunc_begin0 - .quad Lset3783 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3784, Ltmp1871-Lfunc_begin0 - .quad Lset3784 -.set Lset3785, Ltmp1886-Lfunc_begin0 - .quad Lset3785 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3786, Ltmp1889-Lfunc_begin0 - .quad Lset3786 -.set Lset3787, Ltmp1898-Lfunc_begin0 - .quad Lset3787 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3788, Ltmp1898-Lfunc_begin0 - .quad Lset3788 -.set Lset3789, Ltmp1910-Lfunc_begin0 - .quad Lset3789 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3790, Ltmp1910-Lfunc_begin0 - .quad Lset3790 -.set Lset3791, Ltmp1911-Lfunc_begin0 - .quad Lset3791 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3792, Ltmp1911-Lfunc_begin0 - .quad Lset3792 -.set Lset3793, Ltmp1924-Lfunc_begin0 - .quad Lset3793 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3794, Ltmp1924-Lfunc_begin0 - .quad Lset3794 -.set Lset3795, Ltmp1927-Lfunc_begin0 - .quad Lset3795 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3796, Ltmp1927-Lfunc_begin0 - .quad Lset3796 -.set Lset3797, Ltmp1929-Lfunc_begin0 - .quad Lset3797 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3798, Ltmp1929-Lfunc_begin0 - .quad Lset3798 -.set Lset3799, Ltmp1933-Lfunc_begin0 - .quad Lset3799 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3800, Ltmp1933-Lfunc_begin0 - .quad Lset3800 -.set Lset3801, Ltmp1935-Lfunc_begin0 - .quad Lset3801 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3802, Ltmp1935-Lfunc_begin0 - .quad Lset3802 -.set Lset3803, Ltmp1937-Lfunc_begin0 - .quad Lset3803 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset3804, Ltmp1937-Lfunc_begin0 - .quad Lset3804 -.set Lset3805, Ltmp1942-Lfunc_begin0 - .quad Lset3805 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3806, Ltmp1942-Lfunc_begin0 - .quad Lset3806 -.set Lset3807, Ltmp1960-Lfunc_begin0 - .quad Lset3807 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3808, Ltmp1971-Lfunc_begin0 - .quad Lset3808 -.set Lset3809, Ltmp1984-Lfunc_begin0 - .quad Lset3809 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3810, Ltmp1984-Lfunc_begin0 - .quad Lset3810 -.set Lset3811, Ltmp1986-Lfunc_begin0 - .quad Lset3811 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset3812, Ltmp1995-Lfunc_begin0 - .quad Lset3812 -.set Lset3813, Ltmp2001-Lfunc_begin0 - .quad Lset3813 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3814, Ltmp2002-Lfunc_begin0 - .quad Lset3814 -.set Lset3815, Ltmp2012-Lfunc_begin0 - .quad Lset3815 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3816, Ltmp2020-Lfunc_begin0 - .quad Lset3816 -.set Lset3817, Ltmp2058-Lfunc_begin0 - .quad Lset3817 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3818, Ltmp2058-Lfunc_begin0 - .quad Lset3818 -.set Lset3819, Ltmp2060-Lfunc_begin0 - .quad Lset3819 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset3820, Ltmp2060-Lfunc_begin0 - .quad Lset3820 -.set Lset3821, Ltmp2064-Lfunc_begin0 - .quad Lset3821 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3822, Ltmp2067-Lfunc_begin0 - .quad Lset3822 -.set Lset3823, Ltmp2071-Lfunc_begin0 - .quad Lset3823 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3824, Ltmp2072-Lfunc_begin0 - .quad Lset3824 -.set Lset3825, Ltmp2076-Lfunc_begin0 - .quad Lset3825 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3826, Ltmp2076-Lfunc_begin0 - .quad Lset3826 -.set Lset3827, Ltmp2078-Lfunc_begin0 - .quad Lset3827 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset3828, Ltmp2081-Lfunc_begin0 - .quad Lset3828 -.set Lset3829, Ltmp2085-Lfunc_begin0 - .quad Lset3829 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3830, Ltmp2085-Lfunc_begin0 - .quad Lset3830 -.set Lset3831, Ltmp2112-Lfunc_begin0 - .quad Lset3831 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3832, Ltmp2112-Lfunc_begin0 - .quad Lset3832 -.set Lset3833, Ltmp2118-Lfunc_begin0 - .quad Lset3833 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset3834, Ltmp2118-Lfunc_begin0 - .quad Lset3834 -.set Lset3835, Ltmp2127-Lfunc_begin0 - .quad Lset3835 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3836, Ltmp2130-Lfunc_begin0 - .quad Lset3836 -.set Lset3837, Ltmp2131-Lfunc_begin0 - .quad Lset3837 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3838, Ltmp2136-Lfunc_begin0 - .quad Lset3838 -.set Lset3839, Ltmp2140-Lfunc_begin0 - .quad Lset3839 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3840, Ltmp2143-Lfunc_begin0 - .quad Lset3840 -.set Lset3841, Ltmp2189-Lfunc_begin0 - .quad Lset3841 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3842, Ltmp2190-Lfunc_begin0 - .quad Lset3842 -.set Lset3843, Ltmp2195-Lfunc_begin0 - .quad Lset3843 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3844, Ltmp2195-Lfunc_begin0 - .quad Lset3844 -.set Lset3845, Ltmp2200-Lfunc_begin0 - .quad Lset3845 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3846, Ltmp2200-Lfunc_begin0 - .quad Lset3846 -.set Lset3847, Ltmp2202-Lfunc_begin0 - .quad Lset3847 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset3848, Ltmp2205-Lfunc_begin0 - .quad Lset3848 -.set Lset3849, Ltmp2225-Lfunc_begin0 - .quad Lset3849 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3850, Ltmp2225-Lfunc_begin0 - .quad Lset3850 -.set Lset3851, Ltmp2235-Lfunc_begin0 - .quad Lset3851 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3852, Ltmp2235-Lfunc_begin0 - .quad Lset3852 -.set Lset3853, Ltmp2236-Lfunc_begin0 - .quad Lset3853 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3854, Ltmp2236-Lfunc_begin0 - .quad Lset3854 -.set Lset3855, Ltmp2243-Lfunc_begin0 - .quad Lset3855 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset3856, Ltmp2243-Lfunc_begin0 - .quad Lset3856 -.set Lset3857, Ltmp2250-Lfunc_begin0 - .quad Lset3857 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset3858, Ltmp2250-Lfunc_begin0 - .quad Lset3858 -.set Lset3859, Ltmp2255-Lfunc_begin0 - .quad Lset3859 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3860, Ltmp2260-Lfunc_begin0 - .quad Lset3860 -.set Lset3861, Ltmp2285-Lfunc_begin0 - .quad Lset3861 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3862, Ltmp2288-Lfunc_begin0 - .quad Lset3862 -.set Lset3863, Ltmp2298-Lfunc_begin0 - .quad Lset3863 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3864, Ltmp2299-Lfunc_begin0 - .quad Lset3864 -.set Lset3865, Ltmp2304-Lfunc_begin0 - .quad Lset3865 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3866, Ltmp2309-Lfunc_begin0 - .quad Lset3866 -.set Lset3867, Ltmp2334-Lfunc_begin0 - .quad Lset3867 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3868, Ltmp2337-Lfunc_begin0 - .quad Lset3868 -.set Lset3869, Ltmp2347-Lfunc_begin0 - .quad Lset3869 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3870, Ltmp2348-Lfunc_begin0 - .quad Lset3870 -.set Lset3871, Ltmp2353-Lfunc_begin0 - .quad Lset3871 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3872, Ltmp2358-Lfunc_begin0 - .quad Lset3872 -.set Lset3873, Ltmp2383-Lfunc_begin0 - .quad Lset3873 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3874, Ltmp2386-Lfunc_begin0 - .quad Lset3874 -.set Lset3875, Ltmp2396-Lfunc_begin0 - .quad Lset3875 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3876, Ltmp2397-Lfunc_begin0 - .quad Lset3876 -.set Lset3877, Ltmp2402-Lfunc_begin0 - .quad Lset3877 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3878, Ltmp2407-Lfunc_begin0 - .quad Lset3878 -.set Lset3879, Ltmp2426-Lfunc_begin0 - .quad Lset3879 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3880, Ltmp2429-Lfunc_begin0 - .quad Lset3880 -.set Lset3881, Ltmp2440-Lfunc_begin0 - .quad Lset3881 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3882, Ltmp2441-Lfunc_begin0 - .quad Lset3882 -.set Lset3883, Ltmp2450-Lfunc_begin0 - .quad Lset3883 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3884, Ltmp2455-Lfunc_begin0 - .quad Lset3884 -.set Lset3885, Ltmp2487-Lfunc_begin0 - .quad Lset3885 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3886, Ltmp2490-Lfunc_begin0 - .quad Lset3886 -.set Lset3887, Ltmp2495-Lfunc_begin0 - .quad Lset3887 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3888, Ltmp2496-Lfunc_begin0 - .quad Lset3888 -.set Lset3889, Ltmp2505-Lfunc_begin0 - .quad Lset3889 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3890, Ltmp2510-Lfunc_begin0 - .quad Lset3890 -.set Lset3891, Ltmp2542-Lfunc_begin0 - .quad Lset3891 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3892, Ltmp2545-Lfunc_begin0 - .quad Lset3892 -.set Lset3893, Ltmp2550-Lfunc_begin0 - .quad Lset3893 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3894, Ltmp2551-Lfunc_begin0 - .quad Lset3894 -.set Lset3895, Ltmp2560-Lfunc_begin0 - .quad Lset3895 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3896, Ltmp2565-Lfunc_begin0 - .quad Lset3896 -.set Lset3897, Ltmp2597-Lfunc_begin0 - .quad Lset3897 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3898, Ltmp2600-Lfunc_begin0 - .quad Lset3898 -.set Lset3899, Ltmp2605-Lfunc_begin0 - .quad Lset3899 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3900, Ltmp2606-Lfunc_begin0 - .quad Lset3900 -.set Lset3901, Ltmp2621-Lfunc_begin0 - .quad Lset3901 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3902, Ltmp2626-Lfunc_begin0 - .quad Lset3902 -.set Lset3903, Ltmp2661-Lfunc_begin0 - .quad Lset3903 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3904, Ltmp2664-Lfunc_begin0 - .quad Lset3904 -.set Lset3905, Ltmp2669-Lfunc_begin0 - .quad Lset3905 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3906, Ltmp2670-Lfunc_begin0 - .quad Lset3906 -.set Lset3907, Ltmp2686-Lfunc_begin0 - .quad Lset3907 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3908, Ltmp2691-Lfunc_begin0 - .quad Lset3908 -.set Lset3909, Ltmp2726-Lfunc_begin0 - .quad Lset3909 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3910, Ltmp2729-Lfunc_begin0 - .quad Lset3910 -.set Lset3911, Ltmp2734-Lfunc_begin0 - .quad Lset3911 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3912, Ltmp2735-Lfunc_begin0 - .quad Lset3912 -.set Lset3913, Ltmp2740-Lfunc_begin0 - .quad Lset3913 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3914, Ltmp2745-Lfunc_begin0 - .quad Lset3914 -.set Lset3915, Ltmp2771-Lfunc_begin0 - .quad Lset3915 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3916, Ltmp2771-Lfunc_begin0 - .quad Lset3916 -.set Lset3917, Ltmp2774-Lfunc_begin0 - .quad Lset3917 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset3918, Ltmp2774-Lfunc_begin0 - .quad Lset3918 -.set Lset3919, Ltmp2778-Lfunc_begin0 - .quad Lset3919 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3920, Ltmp2781-Lfunc_begin0 - .quad Lset3920 -.set Lset3921, Ltmp2786-Lfunc_begin0 - .quad Lset3921 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3922, Ltmp2786-Lfunc_begin0 - .quad Lset3922 -.set Lset3923, Ltmp2797-Lfunc_begin0 - .quad Lset3923 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset3924, Ltmp2797-Lfunc_begin0 - .quad Lset3924 -.set Lset3925, Ltmp2807-Lfunc_begin0 - .quad Lset3925 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3926, Ltmp2808-Lfunc_begin0 - .quad Lset3926 -.set Lset3927, Ltmp2813-Lfunc_begin0 - .quad Lset3927 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3928, Ltmp2818-Lfunc_begin0 - .quad Lset3928 -.set Lset3929, Ltmp2848-Lfunc_begin0 - .quad Lset3929 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3930, Ltmp2851-Lfunc_begin0 - .quad Lset3930 -.set Lset3931, Ltmp2867-Lfunc_begin0 - .quad Lset3931 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3932, Ltmp2868-Lfunc_begin0 - .quad Lset3932 -.set Lset3933, Ltmp2873-Lfunc_begin0 - .quad Lset3933 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3934, Ltmp2873-Lfunc_begin0 - .quad Lset3934 -.set Lset3935, Ltmp2874-Lfunc_begin0 - .quad Lset3935 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset3936, Ltmp2879-Lfunc_begin0 - .quad Lset3936 -.set Lset3937, Ltmp2893-Lfunc_begin0 - .quad Lset3937 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3938, Ltmp2893-Lfunc_begin0 - .quad Lset3938 -.set Lset3939, Ltmp2897-Lfunc_begin0 - .quad Lset3939 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset3940, Ltmp2897-Lfunc_begin0 - .quad Lset3940 -.set Lset3941, Ltmp2901-Lfunc_begin0 - .quad Lset3941 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3942, Ltmp2903-Lfunc_begin0 - .quad Lset3942 -.set Lset3943, Ltmp2904-Lfunc_begin0 - .quad Lset3943 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset3944, Ltmp2904-Lfunc_begin0 - .quad Lset3944 -.set Lset3945, Ltmp2908-Lfunc_begin0 - .quad Lset3945 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3946, Ltmp2908-Lfunc_begin0 - .quad Lset3946 -.set Lset3947, Ltmp2913-Lfunc_begin0 - .quad Lset3947 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset3948, Ltmp2913-Lfunc_begin0 - .quad Lset3948 -.set Lset3949, Ltmp2918-Lfunc_begin0 - .quad Lset3949 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset3950, Ltmp2918-Lfunc_begin0 - .quad Lset3950 -.set Lset3951, Ltmp2924-Lfunc_begin0 - .quad Lset3951 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3952, Ltmp2929-Lfunc_begin0 - .quad Lset3952 -.set Lset3953, Ltmp2947-Lfunc_begin0 - .quad Lset3953 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3954, Ltmp2950-Lfunc_begin0 - .quad Lset3954 -.set Lset3955, Ltmp2953-Lfunc_begin0 - .quad Lset3955 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3956, Ltmp2954-Lfunc_begin0 - .quad Lset3956 -.set Lset3957, Ltmp2962-Lfunc_begin0 - .quad Lset3957 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3958, Ltmp2967-Lfunc_begin0 - .quad Lset3958 -.set Lset3959, Ltmp2986-Lfunc_begin0 - .quad Lset3959 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3960, Ltmp2989-Lfunc_begin0 - .quad Lset3960 -.set Lset3961, Ltmp2993-Lfunc_begin0 - .quad Lset3961 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3962, Ltmp2994-Lfunc_begin0 - .quad Lset3962 -.set Lset3963, Ltmp2999-Lfunc_begin0 - .quad Lset3963 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3964, Ltmp3005-Lfunc_begin0 - .quad Lset3964 -.set Lset3965, Ltmp3020-Lfunc_begin0 - .quad Lset3965 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3966, Ltmp3021-Lfunc_begin0 - .quad Lset3966 -.set Lset3967, Ltmp3025-Lfunc_begin0 - .quad Lset3967 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3968, Ltmp3029-Lfunc_begin0 - .quad Lset3968 -.set Lset3969, Ltmp3037-Lfunc_begin0 - .quad Lset3969 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3970, Ltmp3043-Lfunc_begin0 - .quad Lset3970 -.set Lset3971, Ltmp3048-Lfunc_begin0 - .quad Lset3971 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3972, Ltmp3054-Lfunc_begin0 - .quad Lset3972 -.set Lset3973, Ltmp3062-Lfunc_begin0 - .quad Lset3973 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3974, Ltmp3094-Lfunc_begin0 - .quad Lset3974 -.set Lset3975, Ltmp3097-Lfunc_begin0 - .quad Lset3975 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3976, Ltmp3101-Lfunc_begin0 - .quad Lset3976 -.set Lset3977, Ltmp3109-Lfunc_begin0 - .quad Lset3977 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3978, Ltmp3118-Lfunc_begin0 - .quad Lset3978 -.set Lset3979, Ltmp3122-Lfunc_begin0 - .quad Lset3979 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3980, Ltmp3127-Lfunc_begin0 - .quad Lset3980 -.set Lset3981, Ltmp3136-Lfunc_begin0 - .quad Lset3981 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3982, Ltmp3159-Lfunc_begin0 - .quad Lset3982 -.set Lset3983, Ltmp3163-Lfunc_begin0 - .quad Lset3983 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3984, Ltmp3168-Lfunc_begin0 - .quad Lset3984 -.set Lset3985, Ltmp3190-Lfunc_begin0 - .quad Lset3985 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3986, Ltmp3190-Lfunc_begin0 - .quad Lset3986 -.set Lset3987, Ltmp3194-Lfunc_begin0 - .quad Lset3987 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset3988, Ltmp3194-Lfunc_begin0 - .quad Lset3988 -.set Lset3989, Ltmp3203-Lfunc_begin0 - .quad Lset3989 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3990, Ltmp3206-Lfunc_begin0 - .quad Lset3990 -.set Lset3991, Ltmp3217-Lfunc_begin0 - .quad Lset3991 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3992, Ltmp3221-Lfunc_begin0 - .quad Lset3992 -.set Lset3993, Ltmp3224-Lfunc_begin0 - .quad Lset3993 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3994, Ltmp3225-Lfunc_begin0 - .quad Lset3994 -.set Lset3995, Ltmp3228-Lfunc_begin0 - .quad Lset3995 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3996, Ltmp3233-Lfunc_begin0 - .quad Lset3996 -.set Lset3997, Ltmp3255-Lfunc_begin0 - .quad Lset3997 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset3998, Ltmp3255-Lfunc_begin0 - .quad Lset3998 -.set Lset3999, Ltmp3259-Lfunc_begin0 - .quad Lset3999 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset4000, Ltmp3259-Lfunc_begin0 - .quad Lset4000 -.set Lset4001, Ltmp3268-Lfunc_begin0 - .quad Lset4001 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4002, Ltmp3271-Lfunc_begin0 - .quad Lset4002 -.set Lset4003, Ltmp3282-Lfunc_begin0 - .quad Lset4003 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4004, Ltmp3286-Lfunc_begin0 - .quad Lset4004 -.set Lset4005, Ltmp3289-Lfunc_begin0 - .quad Lset4005 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4006, Ltmp3290-Lfunc_begin0 - .quad Lset4006 -.set Lset4007, Ltmp3293-Lfunc_begin0 - .quad Lset4007 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4008, Ltmp3298-Lfunc_begin0 - .quad Lset4008 -.set Lset4009, Ltmp3319-Lfunc_begin0 - .quad Lset4009 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4010, Ltmp3323-Lfunc_begin0 - .quad Lset4010 -.set Lset4011, Ltmp3326-Lfunc_begin0 - .quad Lset4011 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4012, Ltmp3327-Lfunc_begin0 - .quad Lset4012 -.set Lset4013, Ltmp3330-Lfunc_begin0 - .quad Lset4013 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4014, Ltmp3335-Lfunc_begin0 - .quad Lset4014 -.set Lset4015, Ltmp3364-Lfunc_begin0 - .quad Lset4015 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4016, Ltmp3368-Lfunc_begin0 - .quad Lset4016 -.set Lset4017, Ltmp3372-Lfunc_begin0 - .quad Lset4017 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4018, Ltmp3373-Lfunc_begin0 - .quad Lset4018 -.set Lset4019, Ltmp3376-Lfunc_begin0 - .quad Lset4019 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4020, Ltmp3381-Lfunc_begin0 - .quad Lset4020 -.set Lset4021, Ltmp3390-Lfunc_begin0 - .quad Lset4021 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4022, Ltmp3404-Lfunc_begin0 - .quad Lset4022 -.set Lset4023, Ltmp3408-Lfunc_begin0 - .quad Lset4023 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4024, Ltmp3414-Lfunc_begin0 - .quad Lset4024 -.set Lset4025, Ltmp3423-Lfunc_begin0 - .quad Lset4025 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4026, Ltmp3431-Lfunc_begin0 - .quad Lset4026 -.set Lset4027, Ltmp3436-Lfunc_begin0 - .quad Lset4027 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4028, Ltmp3465-Lfunc_begin0 - .quad Lset4028 -.set Lset4029, Ltmp3472-Lfunc_begin0 - .quad Lset4029 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4030, Ltmp3489-Lfunc_begin0 - .quad Lset4030 -.set Lset4031, Ltmp3499-Lfunc_begin0 - .quad Lset4031 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4032, Ltmp3504-Lfunc_begin0 - .quad Lset4032 -.set Lset4033, Ltmp3533-Lfunc_begin0 - .quad Lset4033 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4034, Ltmp3534-Lfunc_begin0 - .quad Lset4034 -.set Lset4035, Ltmp3538-Lfunc_begin0 - .quad Lset4035 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4036, Ltmp3543-Lfunc_begin0 - .quad Lset4036 -.set Lset4037, Ltmp3544-Lfunc_begin0 - .quad Lset4037 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4038, Ltmp3560-Lfunc_begin0 - .quad Lset4038 -.set Lset4039, Ltmp3574-Lfunc_begin0 - .quad Lset4039 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4040, Ltmp3574-Lfunc_begin0 - .quad Lset4040 -.set Lset4041, Ltmp3635-Lfunc_begin0 - .quad Lset4041 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4042, Ltmp3635-Lfunc_begin0 - .quad Lset4042 -.set Lset4043, Ltmp3661-Lfunc_begin0 - .quad Lset4043 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4044, Ltmp3666-Lfunc_begin0 - .quad Lset4044 -.set Lset4045, Ltmp3681-Lfunc_begin0 - .quad Lset4045 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4046, Ltmp3682-Lfunc_begin0 - .quad Lset4046 -.set Lset4047, Ltmp3686-Lfunc_begin0 - .quad Lset4047 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4048, Ltmp3691-Lfunc_begin0 - .quad Lset4048 -.set Lset4049, Ltmp3692-Lfunc_begin0 - .quad Lset4049 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4050, Ltmp3697-Lfunc_begin0 - .quad Lset4050 -.set Lset4051, Ltmp3726-Lfunc_begin0 - .quad Lset4051 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4052, Ltmp3739-Lfunc_begin0 - .quad Lset4052 -.set Lset4053, Ltmp3748-Lfunc_begin0 - .quad Lset4053 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4054, Ltmp3755-Lfunc_begin0 - .quad Lset4054 -.set Lset4055, Ltmp3758-Lfunc_begin0 - .quad Lset4055 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4056, Ltmp3763-Lfunc_begin0 - .quad Lset4056 -.set Lset4057, Ltmp3774-Lfunc_begin0 - .quad Lset4057 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4058, Ltmp3775-Lfunc_begin0 - .quad Lset4058 -.set Lset4059, Ltmp3777-Lfunc_begin0 - .quad Lset4059 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4060, Ltmp3786-Lfunc_begin0 - .quad Lset4060 -.set Lset4061, Ltmp3799-Lfunc_begin0 - .quad Lset4061 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4062, Ltmp3805-Lfunc_begin0 - .quad Lset4062 -.set Lset4063, Ltmp3809-Lfunc_begin0 - .quad Lset4063 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4064, Ltmp3814-Lfunc_begin0 - .quad Lset4064 -.set Lset4065, Ltmp3838-Lfunc_begin0 - .quad Lset4065 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4066, Ltmp3838-Lfunc_begin0 - .quad Lset4066 -.set Lset4067, Ltmp3841-Lfunc_begin0 - .quad Lset4067 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4068, Ltmp3841-Lfunc_begin0 - .quad Lset4068 -.set Lset4069, Ltmp3846-Lfunc_begin0 - .quad Lset4069 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4070, Ltmp3855-Lfunc_begin0 - .quad Lset4070 -.set Lset4071, Ltmp3860-Lfunc_begin0 - .quad Lset4071 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4072, Ltmp3862-Lfunc_begin0 - .quad Lset4072 -.set Lset4073, Ltmp3865-Lfunc_begin0 - .quad Lset4073 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4074, Ltmp3865-Lfunc_begin0 - .quad Lset4074 -.set Lset4075, Ltmp3874-Lfunc_begin0 - .quad Lset4075 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4076, Ltmp3874-Lfunc_begin0 - .quad Lset4076 -.set Lset4077, Ltmp3875-Lfunc_begin0 - .quad Lset4077 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset4078, Ltmp3875-Lfunc_begin0 - .quad Lset4078 -.set Lset4079, Ltmp3886-Lfunc_begin0 - .quad Lset4079 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4080, Ltmp3886-Lfunc_begin0 - .quad Lset4080 -.set Lset4081, Ltmp3889-Lfunc_begin0 - .quad Lset4081 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4082, Ltmp3889-Lfunc_begin0 - .quad Lset4082 -.set Lset4083, Ltmp3930-Lfunc_begin0 - .quad Lset4083 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4084, Ltmp3930-Lfunc_begin0 - .quad Lset4084 -.set Lset4085, Ltmp3934-Lfunc_begin0 - .quad Lset4085 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4086, Ltmp3940-Lfunc_begin0 - .quad Lset4086 -.set Lset4087, Ltmp3955-Lfunc_begin0 - .quad Lset4087 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4088, Ltmp3956-Lfunc_begin0 - .quad Lset4088 -.set Lset4089, Ltmp3960-Lfunc_begin0 - .quad Lset4089 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4090, Ltmp3966-Lfunc_begin0 - .quad Lset4090 -.set Lset4091, Ltmp3981-Lfunc_begin0 - .quad Lset4091 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4092, Ltmp3982-Lfunc_begin0 - .quad Lset4092 -.set Lset4093, Ltmp3986-Lfunc_begin0 - .quad Lset4093 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4094, Ltmp3992-Lfunc_begin0 - .quad Lset4094 -.set Lset4095, Ltmp4007-Lfunc_begin0 - .quad Lset4095 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4096, Ltmp4008-Lfunc_begin0 - .quad Lset4096 -.set Lset4097, Ltmp4012-Lfunc_begin0 - .quad Lset4097 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4098, Ltmp4017-Lfunc_begin0 - .quad Lset4098 -.set Lset4099, Ltmp4042-Lfunc_begin0 - .quad Lset4099 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4100, Ltmp4043-Lfunc_begin0 - .quad Lset4100 -.set Lset4101, Ltmp4047-Lfunc_begin0 - .quad Lset4101 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4102, Ltmp4053-Lfunc_begin0 - .quad Lset4102 -.set Lset4103, Ltmp4080-Lfunc_begin0 - .quad Lset4103 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4104, Ltmp4081-Lfunc_begin0 - .quad Lset4104 -.set Lset4105, Ltmp4085-Lfunc_begin0 - .quad Lset4105 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4106, Ltmp4090-Lfunc_begin0 - .quad Lset4106 -.set Lset4107, Ltmp4102-Lfunc_begin0 - .quad Lset4107 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4108, Ltmp4103-Lfunc_begin0 - .quad Lset4108 -.set Lset4109, Ltmp4107-Lfunc_begin0 - .quad Lset4109 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4110, Ltmp4112-Lfunc_begin0 - .quad Lset4110 -.set Lset4111, Ltmp4134-Lfunc_begin0 - .quad Lset4111 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4112, Ltmp4138-Lfunc_begin0 - .quad Lset4112 -.set Lset4113, Ltmp4143-Lfunc_begin0 - .quad Lset4113 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4114, Ltmp4144-Lfunc_begin0 - .quad Lset4114 -.set Lset4115, Ltmp4147-Lfunc_begin0 - .quad Lset4115 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4116, Ltmp4152-Lfunc_begin0 - .quad Lset4116 -.set Lset4117, Ltmp4175-Lfunc_begin0 - .quad Lset4117 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4118, Ltmp4179-Lfunc_begin0 - .quad Lset4118 -.set Lset4119, Ltmp4184-Lfunc_begin0 - .quad Lset4119 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4120, Ltmp4185-Lfunc_begin0 - .quad Lset4120 -.set Lset4121, Ltmp4188-Lfunc_begin0 - .quad Lset4121 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4122, Ltmp4193-Lfunc_begin0 - .quad Lset4122 -.set Lset4123, Ltmp4215-Lfunc_begin0 - .quad Lset4123 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4124, Ltmp4219-Lfunc_begin0 - .quad Lset4124 -.set Lset4125, Ltmp4224-Lfunc_begin0 - .quad Lset4125 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4126, Ltmp4225-Lfunc_begin0 - .quad Lset4126 -.set Lset4127, Ltmp4228-Lfunc_begin0 - .quad Lset4127 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4128, Ltmp4233-Lfunc_begin0 - .quad Lset4128 -.set Lset4129, Ltmp4256-Lfunc_begin0 - .quad Lset4129 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4130, Ltmp4260-Lfunc_begin0 - .quad Lset4130 -.set Lset4131, Ltmp4265-Lfunc_begin0 - .quad Lset4131 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4132, Ltmp4266-Lfunc_begin0 - .quad Lset4132 -.set Lset4133, Ltmp4269-Lfunc_begin0 - .quad Lset4133 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4134, Ltmp4274-Lfunc_begin0 - .quad Lset4134 -.set Lset4135, Ltmp4296-Lfunc_begin0 - .quad Lset4135 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4136, Ltmp4300-Lfunc_begin0 - .quad Lset4136 -.set Lset4137, Ltmp4305-Lfunc_begin0 - .quad Lset4137 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4138, Ltmp4306-Lfunc_begin0 - .quad Lset4138 -.set Lset4139, Ltmp4309-Lfunc_begin0 - .quad Lset4139 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4140, Ltmp4314-Lfunc_begin0 - .quad Lset4140 -.set Lset4141, Ltmp4337-Lfunc_begin0 - .quad Lset4141 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4142, Ltmp4341-Lfunc_begin0 - .quad Lset4142 -.set Lset4143, Ltmp4346-Lfunc_begin0 - .quad Lset4143 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4144, Ltmp4347-Lfunc_begin0 - .quad Lset4144 -.set Lset4145, Ltmp4350-Lfunc_begin0 - .quad Lset4145 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4146, Ltmp4356-Lfunc_begin0 - .quad Lset4146 -.set Lset4147, Ltmp4376-Lfunc_begin0 - .quad Lset4147 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4148, Ltmp4377-Lfunc_begin0 - .quad Lset4148 -.set Lset4149, Ltmp4383-Lfunc_begin0 - .quad Lset4149 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4150, Ltmp4389-Lfunc_begin0 - .quad Lset4150 -.set Lset4151, Ltmp4408-Lfunc_begin0 - .quad Lset4151 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4152, Ltmp4409-Lfunc_begin0 - .quad Lset4152 -.set Lset4153, Ltmp4414-Lfunc_begin0 - .quad Lset4153 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4154, Ltmp4417-Lfunc_begin0 - .quad Lset4154 -.set Lset4155, Ltmp4419-Lfunc_begin0 - .quad Lset4155 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4156, Ltmp4422-Lfunc_begin0 - .quad Lset4156 -.set Lset4157, Ltmp4427-Lfunc_begin0 - .quad Lset4157 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4158, Ltmp4427-Lfunc_begin0 - .quad Lset4158 -.set Lset4159, Ltmp4434-Lfunc_begin0 - .quad Lset4159 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset4160, Ltmp4446-Lfunc_begin0 - .quad Lset4160 -.set Lset4161, Ltmp4452-Lfunc_begin0 - .quad Lset4161 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4162, Ltmp4452-Lfunc_begin0 - .quad Lset4162 -.set Lset4163, Ltmp4455-Lfunc_begin0 - .quad Lset4163 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4164, Ltmp4458-Lfunc_begin0 - .quad Lset4164 -.set Lset4165, Ltmp4460-Lfunc_begin0 - .quad Lset4165 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4166, Ltmp4463-Lfunc_begin0 - .quad Lset4166 -.set Lset4167, Ltmp4468-Lfunc_begin0 - .quad Lset4167 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4168, Ltmp4468-Lfunc_begin0 - .quad Lset4168 -.set Lset4169, Ltmp4475-Lfunc_begin0 - .quad Lset4169 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset4170, Ltmp4487-Lfunc_begin0 - .quad Lset4170 -.set Lset4171, Ltmp4493-Lfunc_begin0 - .quad Lset4171 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4172, Ltmp4493-Lfunc_begin0 - .quad Lset4172 -.set Lset4173, Ltmp4509-Lfunc_begin0 - .quad Lset4173 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4174, Ltmp4514-Lfunc_begin0 - .quad Lset4174 -.set Lset4175, Ltmp4517-Lfunc_begin0 - .quad Lset4175 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4176, Ltmp4517-Lfunc_begin0 - .quad Lset4176 -.set Lset4177, Ltmp4523-Lfunc_begin0 - .quad Lset4177 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4178, Ltmp4523-Lfunc_begin0 - .quad Lset4178 -.set Lset4179, Ltmp4539-Lfunc_begin0 - .quad Lset4179 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4180, Ltmp4544-Lfunc_begin0 - .quad Lset4180 -.set Lset4181, Ltmp4563-Lfunc_begin0 - .quad Lset4181 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4182, Ltmp4571-Lfunc_begin0 - .quad Lset4182 -.set Lset4183, Ltmp4575-Lfunc_begin0 - .quad Lset4183 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4184, Ltmp4576-Lfunc_begin0 - .quad Lset4184 -.set Lset4185, Ltmp4589-Lfunc_begin0 - .quad Lset4185 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4186, Ltmp4592-Lfunc_begin0 - .quad Lset4186 -.set Lset4187, Ltmp4593-Lfunc_begin0 - .quad Lset4187 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4188, Ltmp4598-Lfunc_begin0 - .quad Lset4188 -.set Lset4189, Ltmp4599-Lfunc_begin0 - .quad Lset4189 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4190, Ltmp4604-Lfunc_begin0 - .quad Lset4190 -.set Lset4191, Ltmp4615-Lfunc_begin0 - .quad Lset4191 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4192, Ltmp4641-Lfunc_begin0 - .quad Lset4192 -.set Lset4193, Ltmp4645-Lfunc_begin0 - .quad Lset4193 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4194, Ltmp4646-Lfunc_begin0 - .quad Lset4194 -.set Lset4195, Ltmp4657-Lfunc_begin0 - .quad Lset4195 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4196, Ltmp4660-Lfunc_begin0 - .quad Lset4196 -.set Lset4197, Ltmp4661-Lfunc_begin0 - .quad Lset4197 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4198, Ltmp4666-Lfunc_begin0 - .quad Lset4198 -.set Lset4199, Ltmp4670-Lfunc_begin0 - .quad Lset4199 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4200, Ltmp4673-Lfunc_begin0 - .quad Lset4200 -.set Lset4201, Ltmp4713-Lfunc_begin0 - .quad Lset4201 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4202, Ltmp4714-Lfunc_begin0 - .quad Lset4202 -.set Lset4203, Ltmp4723-Lfunc_begin0 - .quad Lset4203 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4204, Ltmp4726-Lfunc_begin0 - .quad Lset4204 -.set Lset4205, Ltmp4727-Lfunc_begin0 - .quad Lset4205 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4206, Ltmp4732-Lfunc_begin0 - .quad Lset4206 -.set Lset4207, Ltmp4779-Lfunc_begin0 - .quad Lset4207 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4208, Ltmp4780-Lfunc_begin0 - .quad Lset4208 -.set Lset4209, Ltmp4784-Lfunc_begin0 - .quad Lset4209 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4210, Ltmp4789-Lfunc_begin0 - .quad Lset4210 -.set Lset4211, Ltmp4809-Lfunc_begin0 - .quad Lset4211 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4212, Ltmp4810-Lfunc_begin0 - .quad Lset4212 -.set Lset4213, Ltmp4814-Lfunc_begin0 - .quad Lset4213 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4214, Ltmp4819-Lfunc_begin0 - .quad Lset4214 -.set Lset4215, Ltmp4839-Lfunc_begin0 - .quad Lset4215 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4216, Ltmp4840-Lfunc_begin0 - .quad Lset4216 -.set Lset4217, Ltmp4844-Lfunc_begin0 - .quad Lset4217 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4218, Ltmp4849-Lfunc_begin0 - .quad Lset4218 -.set Lset4219, Ltmp4876-Lfunc_begin0 - .quad Lset4219 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4220, Ltmp4876-Lfunc_begin0 - .quad Lset4220 -.set Lset4221, Ltmp4886-Lfunc_begin0 - .quad Lset4221 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4222, Ltmp4886-Lfunc_begin0 - .quad Lset4222 -.set Lset4223, Ltmp4891-Lfunc_begin0 - .quad Lset4223 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4224, Ltmp4891-Lfunc_begin0 - .quad Lset4224 -.set Lset4225, Ltmp4893-Lfunc_begin0 - .quad Lset4225 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset4226, Ltmp4893-Lfunc_begin0 - .quad Lset4226 -.set Lset4227, Ltmp4900-Lfunc_begin0 - .quad Lset4227 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4228, Ltmp4900-Lfunc_begin0 - .quad Lset4228 -.set Lset4229, Ltmp4903-Lfunc_begin0 - .quad Lset4229 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4230, Ltmp4908-Lfunc_begin0 - .quad Lset4230 -.set Lset4231, Ltmp4933-Lfunc_begin0 - .quad Lset4231 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4232, Ltmp4933-Lfunc_begin0 - .quad Lset4232 -.set Lset4233, Ltmp4937-Lfunc_begin0 - .quad Lset4233 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset4234, Ltmp4941-Lfunc_begin0 - .quad Lset4234 -.set Lset4235, Ltmp4944-Lfunc_begin0 - .quad Lset4235 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4236, Ltmp4949-Lfunc_begin0 - .quad Lset4236 -.set Lset4237, Ltmp4975-Lfunc_begin0 - .quad Lset4237 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4238, Ltmp4975-Lfunc_begin0 - .quad Lset4238 -.set Lset4239, Ltmp4984-Lfunc_begin0 - .quad Lset4239 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4240, Ltmp4984-Lfunc_begin0 - .quad Lset4240 -.set Lset4241, Ltmp4989-Lfunc_begin0 - .quad Lset4241 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4242, Ltmp4989-Lfunc_begin0 - .quad Lset4242 -.set Lset4243, Ltmp4991-Lfunc_begin0 - .quad Lset4243 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset4244, Ltmp4991-Lfunc_begin0 - .quad Lset4244 -.set Lset4245, Ltmp4998-Lfunc_begin0 - .quad Lset4245 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4246, Ltmp4998-Lfunc_begin0 - .quad Lset4246 -.set Lset4247, Ltmp5001-Lfunc_begin0 - .quad Lset4247 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4248, Ltmp5006-Lfunc_begin0 - .quad Lset4248 -.set Lset4249, Ltmp5031-Lfunc_begin0 - .quad Lset4249 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4250, Ltmp5031-Lfunc_begin0 - .quad Lset4250 -.set Lset4251, Ltmp5034-Lfunc_begin0 - .quad Lset4251 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset4252, Ltmp5038-Lfunc_begin0 - .quad Lset4252 -.set Lset4253, Ltmp5043-Lfunc_begin0 - .quad Lset4253 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4254, Ltmp5043-Lfunc_begin0 - .quad Lset4254 -.set Lset4255, Ltmp5049-Lfunc_begin0 - .quad Lset4255 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset4256, Ltmp5055-Lfunc_begin0 - .quad Lset4256 -.set Lset4257, Ltmp5062-Lfunc_begin0 - .quad Lset4257 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4258, Ltmp5076-Lfunc_begin0 - .quad Lset4258 -.set Lset4259, Ltmp5081-Lfunc_begin0 - .quad Lset4259 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4260, Ltmp5081-Lfunc_begin0 - .quad Lset4260 -.set Lset4261, Ltmp5087-Lfunc_begin0 - .quad Lset4261 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset4262, Ltmp5093-Lfunc_begin0 - .quad Lset4262 -.set Lset4263, Ltmp5099-Lfunc_begin0 - .quad Lset4263 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4264, Ltmp5112-Lfunc_begin0 - .quad Lset4264 -.set Lset4265, Ltmp5115-Lfunc_begin0 - .quad Lset4265 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4266, Ltmp5120-Lfunc_begin0 - .quad Lset4266 -.set Lset4267, Ltmp5137-Lfunc_begin0 - .quad Lset4267 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4268, Ltmp5137-Lfunc_begin0 - .quad Lset4268 -.set Lset4269, Ltmp5140-Lfunc_begin0 - .quad Lset4269 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset4270, Ltmp5144-Lfunc_begin0 - .quad Lset4270 -.set Lset4271, Ltmp5147-Lfunc_begin0 - .quad Lset4271 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4272, Ltmp5152-Lfunc_begin0 - .quad Lset4272 -.set Lset4273, Ltmp5169-Lfunc_begin0 - .quad Lset4273 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4274, Ltmp5169-Lfunc_begin0 - .quad Lset4274 -.set Lset4275, Ltmp5172-Lfunc_begin0 - .quad Lset4275 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset4276, Ltmp5176-Lfunc_begin0 - .quad Lset4276 -.set Lset4277, Ltmp5179-Lfunc_begin0 - .quad Lset4277 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4278, Ltmp5184-Lfunc_begin0 - .quad Lset4278 -.set Lset4279, Ltmp5201-Lfunc_begin0 - .quad Lset4279 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4280, Ltmp5201-Lfunc_begin0 - .quad Lset4280 -.set Lset4281, Ltmp5204-Lfunc_begin0 - .quad Lset4281 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset4282, Ltmp5208-Lfunc_begin0 - .quad Lset4282 -.set Lset4283, Ltmp5211-Lfunc_begin0 - .quad Lset4283 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4284, Ltmp5217-Lfunc_begin0 - .quad Lset4284 -.set Lset4285, Ltmp5224-Lfunc_begin0 - .quad Lset4285 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4286, Ltmp5225-Lfunc_begin0 - .quad Lset4286 -.set Lset4287, Ltmp5229-Lfunc_begin0 - .quad Lset4287 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4288, Ltmp5235-Lfunc_begin0 - .quad Lset4288 -.set Lset4289, Ltmp5242-Lfunc_begin0 - .quad Lset4289 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4290, Ltmp5243-Lfunc_begin0 - .quad Lset4290 -.set Lset4291, Ltmp5247-Lfunc_begin0 - .quad Lset4291 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4292, Ltmp5253-Lfunc_begin0 - .quad Lset4292 -.set Lset4293, Ltmp5267-Lfunc_begin0 - .quad Lset4293 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4294, Ltmp5268-Lfunc_begin0 - .quad Lset4294 -.set Lset4295, Ltmp5272-Lfunc_begin0 - .quad Lset4295 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4296, Ltmp5278-Lfunc_begin0 - .quad Lset4296 -.set Lset4297, Ltmp5292-Lfunc_begin0 - .quad Lset4297 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4298, Ltmp5293-Lfunc_begin0 - .quad Lset4298 -.set Lset4299, Ltmp5297-Lfunc_begin0 - .quad Lset4299 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4300, Ltmp5303-Lfunc_begin0 - .quad Lset4300 -.set Lset4301, Ltmp5318-Lfunc_begin0 - .quad Lset4301 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4302, Ltmp5319-Lfunc_begin0 - .quad Lset4302 -.set Lset4303, Ltmp5323-Lfunc_begin0 - .quad Lset4303 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4304, Ltmp5329-Lfunc_begin0 - .quad Lset4304 -.set Lset4305, Ltmp5343-Lfunc_begin0 - .quad Lset4305 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4306, Ltmp5344-Lfunc_begin0 - .quad Lset4306 -.set Lset4307, Ltmp5348-Lfunc_begin0 - .quad Lset4307 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4308, Ltmp5354-Lfunc_begin0 - .quad Lset4308 -.set Lset4309, Ltmp5368-Lfunc_begin0 - .quad Lset4309 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4310, Ltmp5369-Lfunc_begin0 - .quad Lset4310 -.set Lset4311, Ltmp5373-Lfunc_begin0 - .quad Lset4311 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4312, Ltmp5379-Lfunc_begin0 - .quad Lset4312 -.set Lset4313, Ltmp5393-Lfunc_begin0 - .quad Lset4313 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4314, Ltmp5394-Lfunc_begin0 - .quad Lset4314 -.set Lset4315, Ltmp5398-Lfunc_begin0 - .quad Lset4315 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4316, Ltmp5403-Lfunc_begin0 - .quad Lset4316 -.set Lset4317, Ltmp5418-Lfunc_begin0 - .quad Lset4317 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4318, Ltmp5419-Lfunc_begin0 - .quad Lset4318 -.set Lset4319, Ltmp5423-Lfunc_begin0 - .quad Lset4319 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4320, Ltmp5429-Lfunc_begin0 - .quad Lset4320 -.set Lset4321, Ltmp5443-Lfunc_begin0 - .quad Lset4321 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4322, Ltmp5444-Lfunc_begin0 - .quad Lset4322 -.set Lset4323, Ltmp5448-Lfunc_begin0 - .quad Lset4323 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4324, Ltmp5454-Lfunc_begin0 - .quad Lset4324 -.set Lset4325, Ltmp5468-Lfunc_begin0 - .quad Lset4325 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4326, Ltmp5469-Lfunc_begin0 - .quad Lset4326 -.set Lset4327, Ltmp5473-Lfunc_begin0 - .quad Lset4327 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4328, Ltmp5479-Lfunc_begin0 - .quad Lset4328 -.set Lset4329, Ltmp5494-Lfunc_begin0 - .quad Lset4329 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4330, Ltmp5495-Lfunc_begin0 - .quad Lset4330 -.set Lset4331, Ltmp5499-Lfunc_begin0 - .quad Lset4331 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4332, Ltmp5505-Lfunc_begin0 - .quad Lset4332 -.set Lset4333, Ltmp5519-Lfunc_begin0 - .quad Lset4333 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4334, Ltmp5520-Lfunc_begin0 - .quad Lset4334 -.set Lset4335, Ltmp5524-Lfunc_begin0 - .quad Lset4335 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4336, Ltmp5530-Lfunc_begin0 - .quad Lset4336 -.set Lset4337, Ltmp5544-Lfunc_begin0 - .quad Lset4337 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4338, Ltmp5545-Lfunc_begin0 - .quad Lset4338 -.set Lset4339, Ltmp5549-Lfunc_begin0 - .quad Lset4339 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4340, Ltmp5555-Lfunc_begin0 - .quad Lset4340 -.set Lset4341, Ltmp5569-Lfunc_begin0 - .quad Lset4341 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4342, Ltmp5570-Lfunc_begin0 - .quad Lset4342 -.set Lset4343, Ltmp5574-Lfunc_begin0 - .quad Lset4343 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4344, Ltmp5580-Lfunc_begin0 - .quad Lset4344 -.set Lset4345, Ltmp5594-Lfunc_begin0 - .quad Lset4345 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4346, Ltmp5595-Lfunc_begin0 - .quad Lset4346 -.set Lset4347, Ltmp5601-Lfunc_begin0 - .quad Lset4347 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4348, Ltmp5601-Lfunc_begin0 - .quad Lset4348 -.set Lset4349, Ltmp5608-Lfunc_begin0 - .quad Lset4349 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4350, Ltmp5614-Lfunc_begin0 - .quad Lset4350 -.set Lset4351, Ltmp5623-Lfunc_begin0 - .quad Lset4351 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4352, Ltmp5628-Lfunc_begin0 - .quad Lset4352 -.set Lset4353, Ltmp5634-Lfunc_begin0 - .quad Lset4353 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4354, Ltmp5634-Lfunc_begin0 - .quad Lset4354 -.set Lset4355, Ltmp5641-Lfunc_begin0 - .quad Lset4355 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4356, Ltmp5646-Lfunc_begin0 - .quad Lset4356 -.set Lset4357, Ltmp5654-Lfunc_begin0 - .quad Lset4357 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4358, Ltmp5659-Lfunc_begin0 - .quad Lset4358 -.set Lset4359, Ltmp5663-Lfunc_begin0 - .quad Lset4359 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4360, Ltmp5668-Lfunc_begin0 - .quad Lset4360 -.set Lset4361, Ltmp5683-Lfunc_begin0 - .quad Lset4361 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4362, Ltmp5684-Lfunc_begin0 - .quad Lset4362 -.set Lset4363, Ltmp5688-Lfunc_begin0 - .quad Lset4363 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4364, Ltmp5693-Lfunc_begin0 - .quad Lset4364 -.set Lset4365, Ltmp5708-Lfunc_begin0 - .quad Lset4365 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4366, Ltmp5709-Lfunc_begin0 - .quad Lset4366 -.set Lset4367, Ltmp5713-Lfunc_begin0 - .quad Lset4367 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4368, Ltmp5718-Lfunc_begin0 - .quad Lset4368 -.set Lset4369, Ltmp5733-Lfunc_begin0 - .quad Lset4369 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4370, Ltmp5734-Lfunc_begin0 - .quad Lset4370 -.set Lset4371, Ltmp5740-Lfunc_begin0 - .quad Lset4371 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4372, Ltmp5740-Lfunc_begin0 - .quad Lset4372 -.set Lset4373, Ltmp5747-Lfunc_begin0 - .quad Lset4373 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4374, Ltmp5753-Lfunc_begin0 - .quad Lset4374 -.set Lset4375, Ltmp5759-Lfunc_begin0 - .quad Lset4375 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4376, Ltmp5764-Lfunc_begin0 - .quad Lset4376 -.set Lset4377, Ltmp5770-Lfunc_begin0 - .quad Lset4377 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4378, Ltmp5770-Lfunc_begin0 - .quad Lset4378 -.set Lset4379, Ltmp5777-Lfunc_begin0 - .quad Lset4379 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4380, Ltmp5782-Lfunc_begin0 - .quad Lset4380 -.set Lset4381, Ltmp5787-Lfunc_begin0 - .quad Lset4381 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4382, Ltmp5792-Lfunc_begin0 - .quad Lset4382 -.set Lset4383, Ltmp5796-Lfunc_begin0 - .quad Lset4383 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4384, Ltmp5801-Lfunc_begin0 - .quad Lset4384 -.set Lset4385, Ltmp5810-Lfunc_begin0 - .quad Lset4385 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4386, Ltmp5811-Lfunc_begin0 - .quad Lset4386 -.set Lset4387, Ltmp5815-Lfunc_begin0 - .quad Lset4387 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4388, Ltmp5820-Lfunc_begin0 - .quad Lset4388 -.set Lset4389, Ltmp5829-Lfunc_begin0 - .quad Lset4389 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4390, Ltmp5830-Lfunc_begin0 - .quad Lset4390 -.set Lset4391, Ltmp5834-Lfunc_begin0 - .quad Lset4391 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4392, Ltmp5839-Lfunc_begin0 - .quad Lset4392 -.set Lset4393, Ltmp5848-Lfunc_begin0 - .quad Lset4393 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4394, Ltmp5849-Lfunc_begin0 - .quad Lset4394 -.set Lset4395, Ltmp5853-Lfunc_begin0 - .quad Lset4395 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4396, Ltmp5858-Lfunc_begin0 - .quad Lset4396 -.set Lset4397, Ltmp5867-Lfunc_begin0 - .quad Lset4397 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4398, Ltmp5868-Lfunc_begin0 - .quad Lset4398 -.set Lset4399, Ltmp5872-Lfunc_begin0 - .quad Lset4399 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4400, Ltmp5877-Lfunc_begin0 - .quad Lset4400 -.set Lset4401, Ltmp5886-Lfunc_begin0 - .quad Lset4401 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4402, Ltmp5887-Lfunc_begin0 - .quad Lset4402 -.set Lset4403, Ltmp5891-Lfunc_begin0 - .quad Lset4403 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4404, Ltmp5896-Lfunc_begin0 - .quad Lset4404 -.set Lset4405, Ltmp5908-Lfunc_begin0 - .quad Lset4405 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4406, Ltmp5908-Lfunc_begin0 - .quad Lset4406 -.set Lset4407, Ltmp5911-Lfunc_begin0 - .quad Lset4407 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset4408, Ltmp5917-Lfunc_begin0 - .quad Lset4408 -.set Lset4409, Ltmp5923-Lfunc_begin0 - .quad Lset4409 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4410, Ltmp5926-Lfunc_begin0 - .quad Lset4410 -.set Lset4411, Ltmp5930-Lfunc_begin0 - .quad Lset4411 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4412, Ltmp5932-Lfunc_begin0 - .quad Lset4412 -.set Lset4413, Ltmp5934-Lfunc_begin0 - .quad Lset4413 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4414, Ltmp5934-Lfunc_begin0 - .quad Lset4414 -.set Lset4415, Ltmp5935-Lfunc_begin0 - .quad Lset4415 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4416, Ltmp5935-Lfunc_begin0 - .quad Lset4416 -.set Lset4417, Ltmp5936-Lfunc_begin0 - .quad Lset4417 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4418, Ltmp5936-Lfunc_begin0 - .quad Lset4418 -.set Lset4419, Ltmp5938-Lfunc_begin0 - .quad Lset4419 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4420, Ltmp5938-Lfunc_begin0 - .quad Lset4420 -.set Lset4421, Ltmp5942-Lfunc_begin0 - .quad Lset4421 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4422, Ltmp5943-Lfunc_begin0 - .quad Lset4422 -.set Lset4423, Ltmp5945-Lfunc_begin0 - .quad Lset4423 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4424, Ltmp5945-Lfunc_begin0 - .quad Lset4424 -.set Lset4425, Ltmp5947-Lfunc_begin0 - .quad Lset4425 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4426, Ltmp5947-Lfunc_begin0 - .quad Lset4426 -.set Lset4427, Ltmp5961-Lfunc_begin0 - .quad Lset4427 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4428, Ltmp5965-Lfunc_begin0 - .quad Lset4428 -.set Lset4429, Ltmp5989-Lfunc_begin0 - .quad Lset4429 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4430, Ltmp5989-Lfunc_begin0 - .quad Lset4430 -.set Lset4431, Ltmp5991-Lfunc_begin0 - .quad Lset4431 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset4432, Ltmp5991-Lfunc_begin0 - .quad Lset4432 -.set Lset4433, Ltmp5996-Lfunc_begin0 - .quad Lset4433 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4434, Ltmp5997-Lfunc_begin0 - .quad Lset4434 -.set Lset4435, Ltmp6022-Lfunc_begin0 - .quad Lset4435 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4436, Ltmp6022-Lfunc_begin0 - .quad Lset4436 -.set Lset4437, Ltmp6023-Lfunc_begin0 - .quad Lset4437 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset4438, Ltmp6023-Lfunc_begin0 - .quad Lset4438 -.set Lset4439, Ltmp6049-Lfunc_begin0 - .quad Lset4439 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4440, Ltmp6049-Lfunc_begin0 - .quad Lset4440 -.set Lset4441, Ltmp6050-Lfunc_begin0 - .quad Lset4441 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4442, Ltmp6050-Lfunc_begin0 - .quad Lset4442 -.set Lset4443, Ltmp6051-Lfunc_begin0 - .quad Lset4443 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4444, Ltmp6051-Lfunc_begin0 - .quad Lset4444 -.set Lset4445, Ltmp6056-Lfunc_begin0 - .quad Lset4445 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4446, Ltmp6056-Lfunc_begin0 - .quad Lset4446 -.set Lset4447, Ltmp6071-Lfunc_begin0 - .quad Lset4447 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4448, Ltmp6072-Lfunc_begin0 - .quad Lset4448 -.set Lset4449, Ltmp6088-Lfunc_begin0 - .quad Lset4449 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4450, Ltmp6094-Lfunc_begin0 - .quad Lset4450 -.set Lset4451, Ltmp6120-Lfunc_begin0 - .quad Lset4451 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4452, Ltmp6120-Lfunc_begin0 - .quad Lset4452 -.set Lset4453, Ltmp6121-Lfunc_begin0 - .quad Lset4453 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset4454, Ltmp6121-Lfunc_begin0 - .quad Lset4454 -.set Lset4455, Ltmp6138-Lfunc_begin0 - .quad Lset4455 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4456, Ltmp6138-Lfunc_begin0 - .quad Lset4456 -.set Lset4457, Ltmp6139-Lfunc_begin0 - .quad Lset4457 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4458, Ltmp6139-Lfunc_begin0 - .quad Lset4458 -.set Lset4459, Ltmp6148-Lfunc_begin0 - .quad Lset4459 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4460, Ltmp6150-Lfunc_begin0 - .quad Lset4460 -.set Lset4461, Ltmp6168-Lfunc_begin0 - .quad Lset4461 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4462, Ltmp6169-Lfunc_begin0 - .quad Lset4462 -.set Lset4463, Ltmp6176-Lfunc_begin0 - .quad Lset4463 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4464, Ltmp6177-Lfunc_begin0 - .quad Lset4464 -.set Lset4465, Ltmp6199-Lfunc_begin0 - .quad Lset4465 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4466, Ltmp6199-Lfunc_begin0 - .quad Lset4466 -.set Lset4467, Ltmp6200-Lfunc_begin0 - .quad Lset4467 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4468, Ltmp6200-Lfunc_begin0 - .quad Lset4468 -.set Lset4469, Ltmp6216-Lfunc_begin0 - .quad Lset4469 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4470, Ltmp6217-Lfunc_begin0 - .quad Lset4470 -.set Lset4471, Ltmp6244-Lfunc_begin0 - .quad Lset4471 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4472, Ltmp6247-Lfunc_begin0 - .quad Lset4472 -.set Lset4473, Ltmp6265-Lfunc_begin0 - .quad Lset4473 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4474, Ltmp6265-Lfunc_begin0 - .quad Lset4474 -.set Lset4475, Ltmp6266-Lfunc_begin0 - .quad Lset4475 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4476, Ltmp6266-Lfunc_begin0 - .quad Lset4476 -.set Lset4477, Ltmp6295-Lfunc_begin0 - .quad Lset4477 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4478, Ltmp6295-Lfunc_begin0 - .quad Lset4478 -.set Lset4479, Ltmp6296-Lfunc_begin0 - .quad Lset4479 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4480, Ltmp6296-Lfunc_begin0 - .quad Lset4480 -.set Lset4481, Ltmp6304-Lfunc_begin0 - .quad Lset4481 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4482, Ltmp6307-Lfunc_begin0 - .quad Lset4482 -.set Lset4483, Ltmp6320-Lfunc_begin0 - .quad Lset4483 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4484, Ltmp6320-Lfunc_begin0 - .quad Lset4484 -.set Lset4485, Ltmp6321-Lfunc_begin0 - .quad Lset4485 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4486, Ltmp6321-Lfunc_begin0 - .quad Lset4486 -.set Lset4487, Ltmp6322-Lfunc_begin0 - .quad Lset4487 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4488, Ltmp6323-Lfunc_begin0 - .quad Lset4488 -.set Lset4489, Ltmp6331-Lfunc_begin0 - .quad Lset4489 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4490, Ltmp6331-Lfunc_begin0 - .quad Lset4490 -.set Lset4491, Ltmp6333-Lfunc_begin0 - .quad Lset4491 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4492, Ltmp6333-Lfunc_begin0 - .quad Lset4492 -.set Lset4493, Ltmp6346-Lfunc_begin0 - .quad Lset4493 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4494, Ltmp6348-Lfunc_begin0 - .quad Lset4494 -.set Lset4495, Ltmp6349-Lfunc_begin0 - .quad Lset4495 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4496, Ltmp6350-Lfunc_begin0 - .quad Lset4496 -.set Lset4497, Ltmp6356-Lfunc_begin0 - .quad Lset4497 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4498, Ltmp6357-Lfunc_begin0 - .quad Lset4498 -.set Lset4499, Ltmp6376-Lfunc_begin0 - .quad Lset4499 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4500, Ltmp6377-Lfunc_begin0 - .quad Lset4500 -.set Lset4501, Ltmp6378-Lfunc_begin0 - .quad Lset4501 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4502, Ltmp6380-Lfunc_begin0 - .quad Lset4502 -.set Lset4503, Ltmp6381-Lfunc_begin0 - .quad Lset4503 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset4504, Ltmp6384-Lfunc_begin0 - .quad Lset4504 -.set Lset4505, Ltmp6385-Lfunc_begin0 - .quad Lset4505 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 188 ## -68 - .byte 127 ## -.set Lset4506, Ltmp6385-Lfunc_begin0 - .quad Lset4506 -.set Lset4507, Ltmp6412-Lfunc_begin0 - .quad Lset4507 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 -.set Lset4508, Ltmp6412-Lfunc_begin0 - .quad Lset4508 -.set Lset4509, Ltmp6413-Lfunc_begin0 - .quad Lset4509 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset4510, Ltmp6413-Lfunc_begin0 - .quad Lset4510 -.set Lset4511, Ltmp6418-Lfunc_begin0 - .quad Lset4511 - .short 1 ## Loc expr size - .byte 91 ## super-register DW_OP_reg11 - .quad 0 - .quad 0 -Ldebug_loc192: -.set Lset4512, Ltmp1184-Lfunc_begin0 - .quad Lset4512 -.set Lset4513, Ltmp1187-Lfunc_begin0 - .quad Lset4513 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4514, Ltmp1200-Lfunc_begin0 - .quad Lset4514 -.set Lset4515, Ltmp1202-Lfunc_begin0 - .quad Lset4515 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4516, Ltmp1213-Lfunc_begin0 - .quad Lset4516 -.set Lset4517, Ltmp1216-Lfunc_begin0 - .quad Lset4517 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4518, Ltmp1222-Lfunc_begin0 - .quad Lset4518 -.set Lset4519, Ltmp1226-Lfunc_begin0 - .quad Lset4519 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4520, Ltmp1235-Lfunc_begin0 - .quad Lset4520 -.set Lset4521, Ltmp1238-Lfunc_begin0 - .quad Lset4521 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4522, Ltmp1244-Lfunc_begin0 - .quad Lset4522 -.set Lset4523, Ltmp1248-Lfunc_begin0 - .quad Lset4523 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4524, Ltmp1258-Lfunc_begin0 - .quad Lset4524 -.set Lset4525, Ltmp1261-Lfunc_begin0 - .quad Lset4525 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4526, Ltmp1267-Lfunc_begin0 - .quad Lset4526 -.set Lset4527, Ltmp1269-Lfunc_begin0 - .quad Lset4527 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4528, Ltmp1279-Lfunc_begin0 - .quad Lset4528 -.set Lset4529, Ltmp1282-Lfunc_begin0 - .quad Lset4529 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4530, Ltmp1288-Lfunc_begin0 - .quad Lset4530 -.set Lset4531, Ltmp1290-Lfunc_begin0 - .quad Lset4531 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4532, Ltmp1313-Lfunc_begin0 - .quad Lset4532 -.set Lset4533, Ltmp1315-Lfunc_begin0 - .quad Lset4533 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4534, Ltmp1321-Lfunc_begin0 - .quad Lset4534 -.set Lset4535, Ltmp1324-Lfunc_begin0 - .quad Lset4535 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4536, Ltmp1336-Lfunc_begin0 - .quad Lset4536 -.set Lset4537, Ltmp1339-Lfunc_begin0 - .quad Lset4537 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4538, Ltmp1345-Lfunc_begin0 - .quad Lset4538 -.set Lset4539, Ltmp1348-Lfunc_begin0 - .quad Lset4539 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4540, Ltmp1367-Lfunc_begin0 - .quad Lset4540 -.set Lset4541, Ltmp1369-Lfunc_begin0 - .quad Lset4541 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4542, Ltmp1415-Lfunc_begin0 - .quad Lset4542 -.set Lset4543, Ltmp1418-Lfunc_begin0 - .quad Lset4543 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4544, Ltmp1460-Lfunc_begin0 - .quad Lset4544 -.set Lset4545, Ltmp1464-Lfunc_begin0 - .quad Lset4545 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4546, Ltmp1509-Lfunc_begin0 - .quad Lset4546 -.set Lset4547, Ltmp1511-Lfunc_begin0 - .quad Lset4547 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4548, Ltmp1555-Lfunc_begin0 - .quad Lset4548 -.set Lset4549, Ltmp1559-Lfunc_begin0 - .quad Lset4549 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4550, Ltmp1658-Lfunc_begin0 - .quad Lset4550 -.set Lset4551, Ltmp1660-Lfunc_begin0 - .quad Lset4551 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4552, Ltmp1712-Lfunc_begin0 - .quad Lset4552 -.set Lset4553, Ltmp1715-Lfunc_begin0 - .quad Lset4553 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4554, Ltmp1810-Lfunc_begin0 - .quad Lset4554 -.set Lset4555, Ltmp1812-Lfunc_begin0 - .quad Lset4555 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4556, Ltmp1863-Lfunc_begin0 - .quad Lset4556 -.set Lset4557, Ltmp1866-Lfunc_begin0 - .quad Lset4557 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4558, Ltmp1942-Lfunc_begin0 - .quad Lset4558 -.set Lset4559, Ltmp1944-Lfunc_begin0 - .quad Lset4559 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4560, Ltmp2003-Lfunc_begin0 - .quad Lset4560 -.set Lset4561, Ltmp2006-Lfunc_begin0 - .quad Lset4561 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4562, Ltmp2021-Lfunc_begin0 - .quad Lset4562 -.set Lset4563, Ltmp2023-Lfunc_begin0 - .quad Lset4563 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4564, Ltmp2073-Lfunc_begin0 - .quad Lset4564 -.set Lset4565, Ltmp2076-Lfunc_begin0 - .quad Lset4565 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4566, Ltmp2082-Lfunc_begin0 - .quad Lset4566 -.set Lset4567, Ltmp2086-Lfunc_begin0 - .quad Lset4567 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4568, Ltmp2119-Lfunc_begin0 - .quad Lset4568 -.set Lset4569, Ltmp2121-Lfunc_begin0 - .quad Lset4569 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4570, Ltmp2144-Lfunc_begin0 - .quad Lset4570 -.set Lset4571, Ltmp2146-Lfunc_begin0 - .quad Lset4571 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4572, Ltmp2191-Lfunc_begin0 - .quad Lset4572 -.set Lset4573, Ltmp2195-Lfunc_begin0 - .quad Lset4573 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4574, Ltmp2206-Lfunc_begin0 - .quad Lset4574 -.set Lset4575, Ltmp2208-Lfunc_begin0 - .quad Lset4575 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4576, Ltmp2251-Lfunc_begin0 - .quad Lset4576 -.set Lset4577, Ltmp2255-Lfunc_begin0 - .quad Lset4577 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4578, Ltmp2261-Lfunc_begin0 - .quad Lset4578 -.set Lset4579, Ltmp2263-Lfunc_begin0 - .quad Lset4579 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4580, Ltmp2300-Lfunc_begin0 - .quad Lset4580 -.set Lset4581, Ltmp2304-Lfunc_begin0 - .quad Lset4581 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4582, Ltmp2310-Lfunc_begin0 - .quad Lset4582 -.set Lset4583, Ltmp2312-Lfunc_begin0 - .quad Lset4583 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4584, Ltmp2349-Lfunc_begin0 - .quad Lset4584 -.set Lset4585, Ltmp2353-Lfunc_begin0 - .quad Lset4585 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4586, Ltmp2359-Lfunc_begin0 - .quad Lset4586 -.set Lset4587, Ltmp2361-Lfunc_begin0 - .quad Lset4587 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4588, Ltmp2398-Lfunc_begin0 - .quad Lset4588 -.set Lset4589, Ltmp2402-Lfunc_begin0 - .quad Lset4589 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4590, Ltmp2408-Lfunc_begin0 - .quad Lset4590 -.set Lset4591, Ltmp2410-Lfunc_begin0 - .quad Lset4591 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4592, Ltmp2442-Lfunc_begin0 - .quad Lset4592 -.set Lset4593, Ltmp2446-Lfunc_begin0 - .quad Lset4593 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4594, Ltmp2456-Lfunc_begin0 - .quad Lset4594 -.set Lset4595, Ltmp2458-Lfunc_begin0 - .quad Lset4595 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4596, Ltmp2497-Lfunc_begin0 - .quad Lset4596 -.set Lset4597, Ltmp2501-Lfunc_begin0 - .quad Lset4597 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4598, Ltmp2511-Lfunc_begin0 - .quad Lset4598 -.set Lset4599, Ltmp2513-Lfunc_begin0 - .quad Lset4599 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4600, Ltmp2552-Lfunc_begin0 - .quad Lset4600 -.set Lset4601, Ltmp2556-Lfunc_begin0 - .quad Lset4601 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4602, Ltmp2566-Lfunc_begin0 - .quad Lset4602 -.set Lset4603, Ltmp2568-Lfunc_begin0 - .quad Lset4603 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4604, Ltmp2607-Lfunc_begin0 - .quad Lset4604 -.set Lset4605, Ltmp2611-Lfunc_begin0 - .quad Lset4605 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4606, Ltmp2627-Lfunc_begin0 - .quad Lset4606 -.set Lset4607, Ltmp2629-Lfunc_begin0 - .quad Lset4607 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4608, Ltmp2671-Lfunc_begin0 - .quad Lset4608 -.set Lset4609, Ltmp2675-Lfunc_begin0 - .quad Lset4609 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4610, Ltmp2692-Lfunc_begin0 - .quad Lset4610 -.set Lset4611, Ltmp2694-Lfunc_begin0 - .quad Lset4611 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4612, Ltmp2736-Lfunc_begin0 - .quad Lset4612 -.set Lset4613, Ltmp2740-Lfunc_begin0 - .quad Lset4613 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4614, Ltmp2746-Lfunc_begin0 - .quad Lset4614 -.set Lset4615, Ltmp2748-Lfunc_begin0 - .quad Lset4615 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4616, Ltmp2809-Lfunc_begin0 - .quad Lset4616 -.set Lset4617, Ltmp2813-Lfunc_begin0 - .quad Lset4617 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4618, Ltmp2819-Lfunc_begin0 - .quad Lset4618 -.set Lset4619, Ltmp2821-Lfunc_begin0 - .quad Lset4619 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4620, Ltmp2869-Lfunc_begin0 - .quad Lset4620 -.set Lset4621, Ltmp2873-Lfunc_begin0 - .quad Lset4621 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4622, Ltmp2880-Lfunc_begin0 - .quad Lset4622 -.set Lset4623, Ltmp2882-Lfunc_begin0 - .quad Lset4623 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4624, Ltmp2919-Lfunc_begin0 - .quad Lset4624 -.set Lset4625, Ltmp2924-Lfunc_begin0 - .quad Lset4625 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4626, Ltmp2930-Lfunc_begin0 - .quad Lset4626 -.set Lset4627, Ltmp2932-Lfunc_begin0 - .quad Lset4627 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4628, Ltmp2955-Lfunc_begin0 - .quad Lset4628 -.set Lset4629, Ltmp2958-Lfunc_begin0 - .quad Lset4629 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4630, Ltmp2968-Lfunc_begin0 - .quad Lset4630 -.set Lset4631, Ltmp2970-Lfunc_begin0 - .quad Lset4631 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4632, Ltmp2995-Lfunc_begin0 - .quad Lset4632 -.set Lset4633, Ltmp2999-Lfunc_begin0 - .quad Lset4633 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4634, Ltmp3006-Lfunc_begin0 - .quad Lset4634 -.set Lset4635, Ltmp3008-Lfunc_begin0 - .quad Lset4635 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4636, Ltmp3022-Lfunc_begin0 - .quad Lset4636 -.set Lset4637, Ltmp3025-Lfunc_begin0 - .quad Lset4637 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4638, Ltmp3029-Lfunc_begin0 - .quad Lset4638 -.set Lset4639, Ltmp3031-Lfunc_begin0 - .quad Lset4639 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4640, Ltmp3045-Lfunc_begin0 - .quad Lset4640 -.set Lset4641, Ltmp3048-Lfunc_begin0 - .quad Lset4641 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4642, Ltmp3054-Lfunc_begin0 - .quad Lset4642 -.set Lset4643, Ltmp3057-Lfunc_begin0 - .quad Lset4643 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4644, Ltmp3095-Lfunc_begin0 - .quad Lset4644 -.set Lset4645, Ltmp3097-Lfunc_begin0 - .quad Lset4645 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4646, Ltmp3101-Lfunc_begin0 - .quad Lset4646 -.set Lset4647, Ltmp3103-Lfunc_begin0 - .quad Lset4647 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4648, Ltmp3119-Lfunc_begin0 - .quad Lset4648 -.set Lset4649, Ltmp3122-Lfunc_begin0 - .quad Lset4649 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4650, Ltmp3127-Lfunc_begin0 - .quad Lset4650 -.set Lset4651, Ltmp3129-Lfunc_begin0 - .quad Lset4651 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4652, Ltmp3160-Lfunc_begin0 - .quad Lset4652 -.set Lset4653, Ltmp3163-Lfunc_begin0 - .quad Lset4653 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4654, Ltmp3169-Lfunc_begin0 - .quad Lset4654 -.set Lset4655, Ltmp3171-Lfunc_begin0 - .quad Lset4655 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4656, Ltmp3226-Lfunc_begin0 - .quad Lset4656 -.set Lset4657, Ltmp3228-Lfunc_begin0 - .quad Lset4657 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4658, Ltmp3234-Lfunc_begin0 - .quad Lset4658 -.set Lset4659, Ltmp3236-Lfunc_begin0 - .quad Lset4659 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4660, Ltmp3291-Lfunc_begin0 - .quad Lset4660 -.set Lset4661, Ltmp3293-Lfunc_begin0 - .quad Lset4661 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4662, Ltmp3299-Lfunc_begin0 - .quad Lset4662 -.set Lset4663, Ltmp3301-Lfunc_begin0 - .quad Lset4663 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4664, Ltmp3328-Lfunc_begin0 - .quad Lset4664 -.set Lset4665, Ltmp3330-Lfunc_begin0 - .quad Lset4665 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4666, Ltmp3336-Lfunc_begin0 - .quad Lset4666 -.set Lset4667, Ltmp3338-Lfunc_begin0 - .quad Lset4667 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4668, Ltmp3374-Lfunc_begin0 - .quad Lset4668 -.set Lset4669, Ltmp3376-Lfunc_begin0 - .quad Lset4669 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4670, Ltmp3381-Lfunc_begin0 - .quad Lset4670 -.set Lset4671, Ltmp3383-Lfunc_begin0 - .quad Lset4671 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4672, Ltmp3405-Lfunc_begin0 - .quad Lset4672 -.set Lset4673, Ltmp3408-Lfunc_begin0 - .quad Lset4673 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4674, Ltmp3414-Lfunc_begin0 - .quad Lset4674 -.set Lset4675, Ltmp3416-Lfunc_begin0 - .quad Lset4675 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4676, Ltmp3433-Lfunc_begin0 - .quad Lset4676 -.set Lset4677, Ltmp3436-Lfunc_begin0 - .quad Lset4677 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4678, Ltmp3465-Lfunc_begin0 - .quad Lset4678 -.set Lset4679, Ltmp3468-Lfunc_begin0 - .quad Lset4679 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4680, Ltmp3513-Lfunc_begin0 - .quad Lset4680 -.set Lset4681, Ltmp3515-Lfunc_begin0 - .quad Lset4681 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4682, Ltmp3535-Lfunc_begin0 - .quad Lset4682 -.set Lset4683, Ltmp3538-Lfunc_begin0 - .quad Lset4683 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4684, Ltmp3560-Lfunc_begin0 - .quad Lset4684 -.set Lset4685, Ltmp3563-Lfunc_begin0 - .quad Lset4685 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4686, Ltmp3636-Lfunc_begin0 - .quad Lset4686 -.set Lset4687, Ltmp3642-Lfunc_begin0 - .quad Lset4687 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4688, Ltmp3683-Lfunc_begin0 - .quad Lset4688 -.set Lset4689, Ltmp3686-Lfunc_begin0 - .quad Lset4689 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4690, Ltmp3698-Lfunc_begin0 - .quad Lset4690 -.set Lset4691, Ltmp3702-Lfunc_begin0 - .quad Lset4691 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4692, Ltmp3806-Lfunc_begin0 - .quad Lset4692 -.set Lset4693, Ltmp3809-Lfunc_begin0 - .quad Lset4693 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4694, Ltmp3815-Lfunc_begin0 - .quad Lset4694 -.set Lset4695, Ltmp3818-Lfunc_begin0 - .quad Lset4695 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4696, Ltmp3863-Lfunc_begin0 - .quad Lset4696 -.set Lset4697, Ltmp3865-Lfunc_begin0 - .quad Lset4697 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4698, Ltmp3887-Lfunc_begin0 - .quad Lset4698 -.set Lset4699, Ltmp3890-Lfunc_begin0 - .quad Lset4699 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4700, Ltmp3931-Lfunc_begin0 - .quad Lset4700 -.set Lset4701, Ltmp3934-Lfunc_begin0 - .quad Lset4701 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4702, Ltmp3941-Lfunc_begin0 - .quad Lset4702 -.set Lset4703, Ltmp3943-Lfunc_begin0 - .quad Lset4703 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4704, Ltmp3957-Lfunc_begin0 - .quad Lset4704 -.set Lset4705, Ltmp3960-Lfunc_begin0 - .quad Lset4705 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4706, Ltmp3967-Lfunc_begin0 - .quad Lset4706 -.set Lset4707, Ltmp3969-Lfunc_begin0 - .quad Lset4707 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4708, Ltmp3983-Lfunc_begin0 - .quad Lset4708 -.set Lset4709, Ltmp3986-Lfunc_begin0 - .quad Lset4709 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4710, Ltmp3993-Lfunc_begin0 - .quad Lset4710 -.set Lset4711, Ltmp3995-Lfunc_begin0 - .quad Lset4711 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4712, Ltmp4009-Lfunc_begin0 - .quad Lset4712 -.set Lset4713, Ltmp4012-Lfunc_begin0 - .quad Lset4713 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4714, Ltmp4018-Lfunc_begin0 - .quad Lset4714 -.set Lset4715, Ltmp4020-Lfunc_begin0 - .quad Lset4715 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4716, Ltmp4044-Lfunc_begin0 - .quad Lset4716 -.set Lset4717, Ltmp4047-Lfunc_begin0 - .quad Lset4717 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4718, Ltmp4054-Lfunc_begin0 - .quad Lset4718 -.set Lset4719, Ltmp4056-Lfunc_begin0 - .quad Lset4719 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4720, Ltmp4082-Lfunc_begin0 - .quad Lset4720 -.set Lset4721, Ltmp4085-Lfunc_begin0 - .quad Lset4721 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4722, Ltmp4091-Lfunc_begin0 - .quad Lset4722 -.set Lset4723, Ltmp4093-Lfunc_begin0 - .quad Lset4723 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4724, Ltmp4104-Lfunc_begin0 - .quad Lset4724 -.set Lset4725, Ltmp4107-Lfunc_begin0 - .quad Lset4725 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4726, Ltmp4113-Lfunc_begin0 - .quad Lset4726 -.set Lset4727, Ltmp4115-Lfunc_begin0 - .quad Lset4727 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4728, Ltmp4145-Lfunc_begin0 - .quad Lset4728 -.set Lset4729, Ltmp4147-Lfunc_begin0 - .quad Lset4729 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4730, Ltmp4153-Lfunc_begin0 - .quad Lset4730 -.set Lset4731, Ltmp4155-Lfunc_begin0 - .quad Lset4731 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4732, Ltmp4186-Lfunc_begin0 - .quad Lset4732 -.set Lset4733, Ltmp4188-Lfunc_begin0 - .quad Lset4733 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4734, Ltmp4194-Lfunc_begin0 - .quad Lset4734 -.set Lset4735, Ltmp4196-Lfunc_begin0 - .quad Lset4735 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4736, Ltmp4226-Lfunc_begin0 - .quad Lset4736 -.set Lset4737, Ltmp4228-Lfunc_begin0 - .quad Lset4737 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4738, Ltmp4234-Lfunc_begin0 - .quad Lset4738 -.set Lset4739, Ltmp4236-Lfunc_begin0 - .quad Lset4739 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4740, Ltmp4267-Lfunc_begin0 - .quad Lset4740 -.set Lset4741, Ltmp4269-Lfunc_begin0 - .quad Lset4741 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4742, Ltmp4275-Lfunc_begin0 - .quad Lset4742 -.set Lset4743, Ltmp4277-Lfunc_begin0 - .quad Lset4743 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4744, Ltmp4307-Lfunc_begin0 - .quad Lset4744 -.set Lset4745, Ltmp4309-Lfunc_begin0 - .quad Lset4745 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4746, Ltmp4315-Lfunc_begin0 - .quad Lset4746 -.set Lset4747, Ltmp4317-Lfunc_begin0 - .quad Lset4747 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4748, Ltmp4348-Lfunc_begin0 - .quad Lset4748 -.set Lset4749, Ltmp4350-Lfunc_begin0 - .quad Lset4749 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4750, Ltmp4357-Lfunc_begin0 - .quad Lset4750 -.set Lset4751, Ltmp4360-Lfunc_begin0 - .quad Lset4751 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4752, Ltmp4361-Lfunc_begin0 - .quad Lset4752 -.set Lset4753, Ltmp4362-Lfunc_begin0 - .quad Lset4753 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4754, Ltmp4378-Lfunc_begin0 - .quad Lset4754 -.set Lset4755, Ltmp4383-Lfunc_begin0 - .quad Lset4755 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4756, Ltmp4390-Lfunc_begin0 - .quad Lset4756 -.set Lset4757, Ltmp4397-Lfunc_begin0 - .quad Lset4757 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4758, Ltmp4398-Lfunc_begin0 - .quad Lset4758 -.set Lset4759, Ltmp4399-Lfunc_begin0 - .quad Lset4759 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4760, Ltmp4410-Lfunc_begin0 - .quad Lset4760 -.set Lset4761, Ltmp4414-Lfunc_begin0 - .quad Lset4761 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4762, Ltmp4423-Lfunc_begin0 - .quad Lset4762 -.set Lset4763, Ltmp4428-Lfunc_begin0 - .quad Lset4763 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4764, Ltmp4453-Lfunc_begin0 - .quad Lset4764 -.set Lset4765, Ltmp4455-Lfunc_begin0 - .quad Lset4765 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4766, Ltmp4464-Lfunc_begin0 - .quad Lset4766 -.set Lset4767, Ltmp4469-Lfunc_begin0 - .quad Lset4767 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4768, Ltmp4494-Lfunc_begin0 - .quad Lset4768 -.set Lset4769, Ltmp4496-Lfunc_begin0 - .quad Lset4769 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4770, Ltmp4546-Lfunc_begin0 - .quad Lset4770 -.set Lset4771, Ltmp4548-Lfunc_begin0 - .quad Lset4771 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4772, Ltmp4577-Lfunc_begin0 - .quad Lset4772 -.set Lset4773, Ltmp4581-Lfunc_begin0 - .quad Lset4773 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4774, Ltmp4605-Lfunc_begin0 - .quad Lset4774 -.set Lset4775, Ltmp4608-Lfunc_begin0 - .quad Lset4775 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4776, Ltmp4647-Lfunc_begin0 - .quad Lset4776 -.set Lset4777, Ltmp4651-Lfunc_begin0 - .quad Lset4777 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4778, Ltmp4674-Lfunc_begin0 - .quad Lset4778 -.set Lset4779, Ltmp4676-Lfunc_begin0 - .quad Lset4779 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4780, Ltmp4715-Lfunc_begin0 - .quad Lset4780 -.set Lset4781, Ltmp4719-Lfunc_begin0 - .quad Lset4781 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4782, Ltmp4733-Lfunc_begin0 - .quad Lset4782 -.set Lset4783, Ltmp4739-Lfunc_begin0 - .quad Lset4783 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4784, Ltmp4781-Lfunc_begin0 - .quad Lset4784 -.set Lset4785, Ltmp4784-Lfunc_begin0 - .quad Lset4785 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4786, Ltmp4790-Lfunc_begin0 - .quad Lset4786 -.set Lset4787, Ltmp4792-Lfunc_begin0 - .quad Lset4787 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4788, Ltmp4811-Lfunc_begin0 - .quad Lset4788 -.set Lset4789, Ltmp4814-Lfunc_begin0 - .quad Lset4789 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4790, Ltmp4820-Lfunc_begin0 - .quad Lset4790 -.set Lset4791, Ltmp4822-Lfunc_begin0 - .quad Lset4791 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4792, Ltmp4841-Lfunc_begin0 - .quad Lset4792 -.set Lset4793, Ltmp4844-Lfunc_begin0 - .quad Lset4793 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4794, Ltmp4850-Lfunc_begin0 - .quad Lset4794 -.set Lset4795, Ltmp4852-Lfunc_begin0 - .quad Lset4795 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4796, Ltmp4901-Lfunc_begin0 - .quad Lset4796 -.set Lset4797, Ltmp4903-Lfunc_begin0 - .quad Lset4797 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4798, Ltmp4909-Lfunc_begin0 - .quad Lset4798 -.set Lset4799, Ltmp4911-Lfunc_begin0 - .quad Lset4799 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4800, Ltmp4942-Lfunc_begin0 - .quad Lset4800 -.set Lset4801, Ltmp4944-Lfunc_begin0 - .quad Lset4801 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4802, Ltmp4950-Lfunc_begin0 - .quad Lset4802 -.set Lset4803, Ltmp4952-Lfunc_begin0 - .quad Lset4803 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4804, Ltmp4999-Lfunc_begin0 - .quad Lset4804 -.set Lset4805, Ltmp5001-Lfunc_begin0 - .quad Lset4805 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4806, Ltmp5007-Lfunc_begin0 - .quad Lset4806 -.set Lset4807, Ltmp5009-Lfunc_begin0 - .quad Lset4807 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4808, Ltmp5039-Lfunc_begin0 - .quad Lset4808 -.set Lset4809, Ltmp5041-Lfunc_begin0 - .quad Lset4809 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4810, Ltmp5056-Lfunc_begin0 - .quad Lset4810 -.set Lset4811, Ltmp5058-Lfunc_begin0 - .quad Lset4811 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4812, Ltmp5077-Lfunc_begin0 - .quad Lset4812 -.set Lset4813, Ltmp5079-Lfunc_begin0 - .quad Lset4813 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4814, Ltmp5094-Lfunc_begin0 - .quad Lset4814 -.set Lset4815, Ltmp5096-Lfunc_begin0 - .quad Lset4815 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4816, Ltmp5113-Lfunc_begin0 - .quad Lset4816 -.set Lset4817, Ltmp5115-Lfunc_begin0 - .quad Lset4817 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4818, Ltmp5121-Lfunc_begin0 - .quad Lset4818 -.set Lset4819, Ltmp5123-Lfunc_begin0 - .quad Lset4819 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4820, Ltmp5145-Lfunc_begin0 - .quad Lset4820 -.set Lset4821, Ltmp5147-Lfunc_begin0 - .quad Lset4821 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4822, Ltmp5153-Lfunc_begin0 - .quad Lset4822 -.set Lset4823, Ltmp5155-Lfunc_begin0 - .quad Lset4823 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4824, Ltmp5177-Lfunc_begin0 - .quad Lset4824 -.set Lset4825, Ltmp5179-Lfunc_begin0 - .quad Lset4825 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4826, Ltmp5185-Lfunc_begin0 - .quad Lset4826 -.set Lset4827, Ltmp5187-Lfunc_begin0 - .quad Lset4827 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4828, Ltmp5209-Lfunc_begin0 - .quad Lset4828 -.set Lset4829, Ltmp5212-Lfunc_begin0 - .quad Lset4829 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4830, Ltmp5218-Lfunc_begin0 - .quad Lset4830 -.set Lset4831, Ltmp5225-Lfunc_begin0 - .quad Lset4831 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4832, Ltmp5226-Lfunc_begin0 - .quad Lset4832 -.set Lset4833, Ltmp5230-Lfunc_begin0 - .quad Lset4833 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4834, Ltmp5236-Lfunc_begin0 - .quad Lset4834 -.set Lset4835, Ltmp5243-Lfunc_begin0 - .quad Lset4835 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4836, Ltmp5244-Lfunc_begin0 - .quad Lset4836 -.set Lset4837, Ltmp5247-Lfunc_begin0 - .quad Lset4837 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4838, Ltmp5254-Lfunc_begin0 - .quad Lset4838 -.set Lset4839, Ltmp5256-Lfunc_begin0 - .quad Lset4839 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4840, Ltmp5269-Lfunc_begin0 - .quad Lset4840 -.set Lset4841, Ltmp5272-Lfunc_begin0 - .quad Lset4841 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4842, Ltmp5279-Lfunc_begin0 - .quad Lset4842 -.set Lset4843, Ltmp5281-Lfunc_begin0 - .quad Lset4843 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4844, Ltmp5294-Lfunc_begin0 - .quad Lset4844 -.set Lset4845, Ltmp5297-Lfunc_begin0 - .quad Lset4845 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4846, Ltmp5304-Lfunc_begin0 - .quad Lset4846 -.set Lset4847, Ltmp5306-Lfunc_begin0 - .quad Lset4847 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4848, Ltmp5320-Lfunc_begin0 - .quad Lset4848 -.set Lset4849, Ltmp5323-Lfunc_begin0 - .quad Lset4849 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4850, Ltmp5330-Lfunc_begin0 - .quad Lset4850 -.set Lset4851, Ltmp5332-Lfunc_begin0 - .quad Lset4851 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4852, Ltmp5345-Lfunc_begin0 - .quad Lset4852 -.set Lset4853, Ltmp5348-Lfunc_begin0 - .quad Lset4853 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4854, Ltmp5355-Lfunc_begin0 - .quad Lset4854 -.set Lset4855, Ltmp5357-Lfunc_begin0 - .quad Lset4855 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4856, Ltmp5370-Lfunc_begin0 - .quad Lset4856 -.set Lset4857, Ltmp5373-Lfunc_begin0 - .quad Lset4857 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4858, Ltmp5380-Lfunc_begin0 - .quad Lset4858 -.set Lset4859, Ltmp5382-Lfunc_begin0 - .quad Lset4859 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4860, Ltmp5395-Lfunc_begin0 - .quad Lset4860 -.set Lset4861, Ltmp5398-Lfunc_begin0 - .quad Lset4861 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4862, Ltmp5404-Lfunc_begin0 - .quad Lset4862 -.set Lset4863, Ltmp5406-Lfunc_begin0 - .quad Lset4863 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4864, Ltmp5420-Lfunc_begin0 - .quad Lset4864 -.set Lset4865, Ltmp5423-Lfunc_begin0 - .quad Lset4865 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4866, Ltmp5430-Lfunc_begin0 - .quad Lset4866 -.set Lset4867, Ltmp5432-Lfunc_begin0 - .quad Lset4867 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4868, Ltmp5445-Lfunc_begin0 - .quad Lset4868 -.set Lset4869, Ltmp5448-Lfunc_begin0 - .quad Lset4869 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4870, Ltmp5455-Lfunc_begin0 - .quad Lset4870 -.set Lset4871, Ltmp5457-Lfunc_begin0 - .quad Lset4871 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4872, Ltmp5470-Lfunc_begin0 - .quad Lset4872 -.set Lset4873, Ltmp5473-Lfunc_begin0 - .quad Lset4873 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4874, Ltmp5480-Lfunc_begin0 - .quad Lset4874 -.set Lset4875, Ltmp5482-Lfunc_begin0 - .quad Lset4875 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4876, Ltmp5496-Lfunc_begin0 - .quad Lset4876 -.set Lset4877, Ltmp5499-Lfunc_begin0 - .quad Lset4877 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4878, Ltmp5506-Lfunc_begin0 - .quad Lset4878 -.set Lset4879, Ltmp5508-Lfunc_begin0 - .quad Lset4879 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4880, Ltmp5521-Lfunc_begin0 - .quad Lset4880 -.set Lset4881, Ltmp5524-Lfunc_begin0 - .quad Lset4881 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4882, Ltmp5531-Lfunc_begin0 - .quad Lset4882 -.set Lset4883, Ltmp5533-Lfunc_begin0 - .quad Lset4883 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4884, Ltmp5546-Lfunc_begin0 - .quad Lset4884 -.set Lset4885, Ltmp5549-Lfunc_begin0 - .quad Lset4885 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4886, Ltmp5556-Lfunc_begin0 - .quad Lset4886 -.set Lset4887, Ltmp5558-Lfunc_begin0 - .quad Lset4887 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4888, Ltmp5571-Lfunc_begin0 - .quad Lset4888 -.set Lset4889, Ltmp5574-Lfunc_begin0 - .quad Lset4889 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4890, Ltmp5581-Lfunc_begin0 - .quad Lset4890 -.set Lset4891, Ltmp5583-Lfunc_begin0 - .quad Lset4891 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4892, Ltmp5596-Lfunc_begin0 - .quad Lset4892 -.set Lset4893, Ltmp5599-Lfunc_begin0 - .quad Lset4893 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4894, Ltmp5615-Lfunc_begin0 - .quad Lset4894 -.set Lset4895, Ltmp5617-Lfunc_begin0 - .quad Lset4895 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4896, Ltmp5629-Lfunc_begin0 - .quad Lset4896 -.set Lset4897, Ltmp5632-Lfunc_begin0 - .quad Lset4897 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4898, Ltmp5647-Lfunc_begin0 - .quad Lset4898 -.set Lset4899, Ltmp5649-Lfunc_begin0 - .quad Lset4899 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4900, Ltmp5660-Lfunc_begin0 - .quad Lset4900 -.set Lset4901, Ltmp5663-Lfunc_begin0 - .quad Lset4901 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4902, Ltmp5669-Lfunc_begin0 - .quad Lset4902 -.set Lset4903, Ltmp5671-Lfunc_begin0 - .quad Lset4903 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4904, Ltmp5685-Lfunc_begin0 - .quad Lset4904 -.set Lset4905, Ltmp5688-Lfunc_begin0 - .quad Lset4905 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4906, Ltmp5694-Lfunc_begin0 - .quad Lset4906 -.set Lset4907, Ltmp5696-Lfunc_begin0 - .quad Lset4907 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4908, Ltmp5710-Lfunc_begin0 - .quad Lset4908 -.set Lset4909, Ltmp5713-Lfunc_begin0 - .quad Lset4909 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4910, Ltmp5719-Lfunc_begin0 - .quad Lset4910 -.set Lset4911, Ltmp5721-Lfunc_begin0 - .quad Lset4911 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4912, Ltmp5735-Lfunc_begin0 - .quad Lset4912 -.set Lset4913, Ltmp5738-Lfunc_begin0 - .quad Lset4913 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4914, Ltmp5754-Lfunc_begin0 - .quad Lset4914 -.set Lset4915, Ltmp5756-Lfunc_begin0 - .quad Lset4915 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4916, Ltmp5765-Lfunc_begin0 - .quad Lset4916 -.set Lset4917, Ltmp5768-Lfunc_begin0 - .quad Lset4917 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4918, Ltmp5783-Lfunc_begin0 - .quad Lset4918 -.set Lset4919, Ltmp5785-Lfunc_begin0 - .quad Lset4919 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4920, Ltmp5793-Lfunc_begin0 - .quad Lset4920 -.set Lset4921, Ltmp5796-Lfunc_begin0 - .quad Lset4921 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4922, Ltmp5802-Lfunc_begin0 - .quad Lset4922 -.set Lset4923, Ltmp5804-Lfunc_begin0 - .quad Lset4923 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4924, Ltmp5812-Lfunc_begin0 - .quad Lset4924 -.set Lset4925, Ltmp5815-Lfunc_begin0 - .quad Lset4925 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4926, Ltmp5821-Lfunc_begin0 - .quad Lset4926 -.set Lset4927, Ltmp5823-Lfunc_begin0 - .quad Lset4927 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4928, Ltmp5831-Lfunc_begin0 - .quad Lset4928 -.set Lset4929, Ltmp5834-Lfunc_begin0 - .quad Lset4929 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4930, Ltmp5840-Lfunc_begin0 - .quad Lset4930 -.set Lset4931, Ltmp5842-Lfunc_begin0 - .quad Lset4931 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4932, Ltmp5850-Lfunc_begin0 - .quad Lset4932 -.set Lset4933, Ltmp5853-Lfunc_begin0 - .quad Lset4933 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4934, Ltmp5859-Lfunc_begin0 - .quad Lset4934 -.set Lset4935, Ltmp5861-Lfunc_begin0 - .quad Lset4935 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4936, Ltmp5869-Lfunc_begin0 - .quad Lset4936 -.set Lset4937, Ltmp5872-Lfunc_begin0 - .quad Lset4937 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4938, Ltmp5878-Lfunc_begin0 - .quad Lset4938 -.set Lset4939, Ltmp5880-Lfunc_begin0 - .quad Lset4939 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4940, Ltmp5888-Lfunc_begin0 - .quad Lset4940 -.set Lset4941, Ltmp5891-Lfunc_begin0 - .quad Lset4941 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4942, Ltmp5897-Lfunc_begin0 - .quad Lset4942 -.set Lset4943, Ltmp5903-Lfunc_begin0 - .quad Lset4943 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4944, Ltmp5918-Lfunc_begin0 - .quad Lset4944 -.set Lset4945, Ltmp5923-Lfunc_begin0 - .quad Lset4945 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4946, Ltmp5926-Lfunc_begin0 - .quad Lset4946 -.set Lset4947, Ltmp5930-Lfunc_begin0 - .quad Lset4947 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4948, Ltmp5991-Lfunc_begin0 - .quad Lset4948 -.set Lset4949, Ltmp5992-Lfunc_begin0 - .quad Lset4949 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4950, Ltmp5999-Lfunc_begin0 - .quad Lset4950 -.set Lset4951, Ltmp6000-Lfunc_begin0 - .quad Lset4951 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4952, Ltmp6143-Lfunc_begin0 - .quad Lset4952 -.set Lset4953, Ltmp6144-Lfunc_begin0 - .quad Lset4953 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset4954, Ltmp6371-Lfunc_begin0 - .quad Lset4954 -.set Lset4955, Ltmp6373-Lfunc_begin0 - .quad Lset4955 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc193: -.set Lset4956, Ltmp1185-Lfunc_begin0 - .quad Lset4956 -.set Lset4957, Ltmp1187-Lfunc_begin0 - .quad Lset4957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4958, Ltmp1194-Lfunc_begin0 - .quad Lset4958 -.set Lset4959, Ltmp1214-Lfunc_begin0 - .quad Lset4959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4960, Ltmp1215-Lfunc_begin0 - .quad Lset4960 -.set Lset4961, Ltmp1236-Lfunc_begin0 - .quad Lset4961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4962, Ltmp1237-Lfunc_begin0 - .quad Lset4962 -.set Lset4963, Ltmp1259-Lfunc_begin0 - .quad Lset4963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4964, Ltmp1260-Lfunc_begin0 - .quad Lset4964 -.set Lset4965, Ltmp1280-Lfunc_begin0 - .quad Lset4965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4966, Ltmp1281-Lfunc_begin0 - .quad Lset4966 -.set Lset4967, Ltmp1282-Lfunc_begin0 - .quad Lset4967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4968, Ltmp1288-Lfunc_begin0 - .quad Lset4968 -.set Lset4969, Ltmp1295-Lfunc_begin0 - .quad Lset4969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4970, Ltmp1314-Lfunc_begin0 - .quad Lset4970 -.set Lset4971, Ltmp1337-Lfunc_begin0 - .quad Lset4971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4972, Ltmp1338-Lfunc_begin0 - .quad Lset4972 -.set Lset4973, Ltmp1339-Lfunc_begin0 - .quad Lset4973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4974, Ltmp1345-Lfunc_begin0 - .quad Lset4974 -.set Lset4975, Ltmp1359-Lfunc_begin0 - .quad Lset4975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4976, Ltmp1368-Lfunc_begin0 - .quad Lset4976 -.set Lset4977, Ltmp1461-Lfunc_begin0 - .quad Lset4977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4978, Ltmp1462-Lfunc_begin0 - .quad Lset4978 -.set Lset4979, Ltmp1556-Lfunc_begin0 - .quad Lset4979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4980, Ltmp1557-Lfunc_begin0 - .quad Lset4980 -.set Lset4981, Ltmp1561-Lfunc_begin0 - .quad Lset4981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4982, Ltmp1577-Lfunc_begin0 - .quad Lset4982 -.set Lset4983, Ltmp1579-Lfunc_begin0 - .quad Lset4983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4984, Ltmp1589-Lfunc_begin0 - .quad Lset4984 -.set Lset4985, Ltmp1591-Lfunc_begin0 - .quad Lset4985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4986, Ltmp1599-Lfunc_begin0 - .quad Lset4986 -.set Lset4987, Ltmp1608-Lfunc_begin0 - .quad Lset4987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4988, Ltmp1658-Lfunc_begin0 - .quad Lset4988 -.set Lset4989, Ltmp1676-Lfunc_begin0 - .quad Lset4989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4990, Ltmp1683-Lfunc_begin0 - .quad Lset4990 -.set Lset4991, Ltmp1685-Lfunc_begin0 - .quad Lset4991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4992, Ltmp1713-Lfunc_begin0 - .quad Lset4992 -.set Lset4993, Ltmp1717-Lfunc_begin0 - .quad Lset4993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4994, Ltmp1733-Lfunc_begin0 - .quad Lset4994 -.set Lset4995, Ltmp1735-Lfunc_begin0 - .quad Lset4995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4996, Ltmp1745-Lfunc_begin0 - .quad Lset4996 -.set Lset4997, Ltmp1760-Lfunc_begin0 - .quad Lset4997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset4998, Ltmp1810-Lfunc_begin0 - .quad Lset4998 -.set Lset4999, Ltmp1856-Lfunc_begin0 - .quad Lset4999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5000, Ltmp1864-Lfunc_begin0 - .quad Lset5000 -.set Lset5001, Ltmp1866-Lfunc_begin0 - .quad Lset5001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5002, Ltmp1872-Lfunc_begin0 - .quad Lset5002 -.set Lset5003, Ltmp1874-Lfunc_begin0 - .quad Lset5003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5004, Ltmp1883-Lfunc_begin0 - .quad Lset5004 -.set Lset5005, Ltmp1891-Lfunc_begin0 - .quad Lset5005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5006, Ltmp1942-Lfunc_begin0 - .quad Lset5006 -.set Lset5007, Ltmp1970-Lfunc_begin0 - .quad Lset5007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5008, Ltmp1971-Lfunc_begin0 - .quad Lset5008 -.set Lset5009, Ltmp1973-Lfunc_begin0 - .quad Lset5009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5010, Ltmp1982-Lfunc_begin0 - .quad Lset5010 -.set Lset5011, Ltmp1997-Lfunc_begin0 - .quad Lset5011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5012, Ltmp2004-Lfunc_begin0 - .quad Lset5012 -.set Lset5013, Ltmp2015-Lfunc_begin0 - .quad Lset5013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5014, Ltmp2021-Lfunc_begin0 - .quad Lset5014 -.set Lset5015, Ltmp2058-Lfunc_begin0 - .quad Lset5015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5016, Ltmp2061-Lfunc_begin0 - .quad Lset5016 -.set Lset5017, Ltmp2067-Lfunc_begin0 - .quad Lset5017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5018, Ltmp2074-Lfunc_begin0 - .quad Lset5018 -.set Lset5019, Ltmp2076-Lfunc_begin0 - .quad Lset5019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5020, Ltmp2082-Lfunc_begin0 - .quad Lset5020 -.set Lset5021, Ltmp2106-Lfunc_begin0 - .quad Lset5021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5022, Ltmp2120-Lfunc_begin0 - .quad Lset5022 -.set Lset5023, Ltmp2192-Lfunc_begin0 - .quad Lset5023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5024, Ltmp2193-Lfunc_begin0 - .quad Lset5024 -.set Lset5025, Ltmp2252-Lfunc_begin0 - .quad Lset5025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5026, Ltmp2253-Lfunc_begin0 - .quad Lset5026 -.set Lset5027, Ltmp2301-Lfunc_begin0 - .quad Lset5027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5028, Ltmp2302-Lfunc_begin0 - .quad Lset5028 -.set Lset5029, Ltmp2350-Lfunc_begin0 - .quad Lset5029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5030, Ltmp2351-Lfunc_begin0 - .quad Lset5030 -.set Lset5031, Ltmp2399-Lfunc_begin0 - .quad Lset5031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5032, Ltmp2400-Lfunc_begin0 - .quad Lset5032 -.set Lset5033, Ltmp2443-Lfunc_begin0 - .quad Lset5033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5034, Ltmp2444-Lfunc_begin0 - .quad Lset5034 -.set Lset5035, Ltmp2498-Lfunc_begin0 - .quad Lset5035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5036, Ltmp2499-Lfunc_begin0 - .quad Lset5036 -.set Lset5037, Ltmp2553-Lfunc_begin0 - .quad Lset5037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5038, Ltmp2554-Lfunc_begin0 - .quad Lset5038 -.set Lset5039, Ltmp2608-Lfunc_begin0 - .quad Lset5039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5040, Ltmp2609-Lfunc_begin0 - .quad Lset5040 -.set Lset5041, Ltmp2672-Lfunc_begin0 - .quad Lset5041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5042, Ltmp2673-Lfunc_begin0 - .quad Lset5042 -.set Lset5043, Ltmp2737-Lfunc_begin0 - .quad Lset5043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5044, Ltmp2738-Lfunc_begin0 - .quad Lset5044 -.set Lset5045, Ltmp2810-Lfunc_begin0 - .quad Lset5045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5046, Ltmp2811-Lfunc_begin0 - .quad Lset5046 -.set Lset5047, Ltmp2870-Lfunc_begin0 - .quad Lset5047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5048, Ltmp2871-Lfunc_begin0 - .quad Lset5048 -.set Lset5049, Ltmp2920-Lfunc_begin0 - .quad Lset5049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5050, Ltmp2922-Lfunc_begin0 - .quad Lset5050 -.set Lset5051, Ltmp2956-Lfunc_begin0 - .quad Lset5051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5052, Ltmp2957-Lfunc_begin0 - .quad Lset5052 -.set Lset5053, Ltmp2996-Lfunc_begin0 - .quad Lset5053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5054, Ltmp2997-Lfunc_begin0 - .quad Lset5054 -.set Lset5055, Ltmp3023-Lfunc_begin0 - .quad Lset5055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5056, Ltmp3024-Lfunc_begin0 - .quad Lset5056 -.set Lset5057, Ltmp3046-Lfunc_begin0 - .quad Lset5057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5058, Ltmp3047-Lfunc_begin0 - .quad Lset5058 -.set Lset5059, Ltmp3048-Lfunc_begin0 - .quad Lset5059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5060, Ltmp3054-Lfunc_begin0 - .quad Lset5060 -.set Lset5061, Ltmp3056-Lfunc_begin0 - .quad Lset5061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5062, Ltmp3076-Lfunc_begin0 - .quad Lset5062 -.set Lset5063, Ltmp3078-Lfunc_begin0 - .quad Lset5063 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset5064, Ltmp3096-Lfunc_begin0 - .quad Lset5064 -.set Lset5065, Ltmp3097-Lfunc_begin0 - .quad Lset5065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5066, Ltmp3101-Lfunc_begin0 - .quad Lset5066 -.set Lset5067, Ltmp3107-Lfunc_begin0 - .quad Lset5067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5068, Ltmp3120-Lfunc_begin0 - .quad Lset5068 -.set Lset5069, Ltmp3122-Lfunc_begin0 - .quad Lset5069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5070, Ltmp3127-Lfunc_begin0 - .quad Lset5070 -.set Lset5071, Ltmp3135-Lfunc_begin0 - .quad Lset5071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5072, Ltmp3161-Lfunc_begin0 - .quad Lset5072 -.set Lset5073, Ltmp3163-Lfunc_begin0 - .quad Lset5073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5074, Ltmp3169-Lfunc_begin0 - .quad Lset5074 -.set Lset5075, Ltmp3179-Lfunc_begin0 - .quad Lset5075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5076, Ltmp3183-Lfunc_begin0 - .quad Lset5076 -.set Lset5077, Ltmp3188-Lfunc_begin0 - .quad Lset5077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5078, Ltmp3200-Lfunc_begin0 - .quad Lset5078 -.set Lset5079, Ltmp3201-Lfunc_begin0 - .quad Lset5079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5080, Ltmp3227-Lfunc_begin0 - .quad Lset5080 -.set Lset5081, Ltmp3228-Lfunc_begin0 - .quad Lset5081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5082, Ltmp3234-Lfunc_begin0 - .quad Lset5082 -.set Lset5083, Ltmp3244-Lfunc_begin0 - .quad Lset5083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5084, Ltmp3248-Lfunc_begin0 - .quad Lset5084 -.set Lset5085, Ltmp3253-Lfunc_begin0 - .quad Lset5085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5086, Ltmp3265-Lfunc_begin0 - .quad Lset5086 -.set Lset5087, Ltmp3266-Lfunc_begin0 - .quad Lset5087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5088, Ltmp3292-Lfunc_begin0 - .quad Lset5088 -.set Lset5089, Ltmp3293-Lfunc_begin0 - .quad Lset5089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5090, Ltmp3299-Lfunc_begin0 - .quad Lset5090 -.set Lset5091, Ltmp3317-Lfunc_begin0 - .quad Lset5091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5092, Ltmp3329-Lfunc_begin0 - .quad Lset5092 -.set Lset5093, Ltmp3330-Lfunc_begin0 - .quad Lset5093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5094, Ltmp3336-Lfunc_begin0 - .quad Lset5094 -.set Lset5095, Ltmp3362-Lfunc_begin0 - .quad Lset5095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5096, Ltmp3375-Lfunc_begin0 - .quad Lset5096 -.set Lset5097, Ltmp3406-Lfunc_begin0 - .quad Lset5097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5098, Ltmp3407-Lfunc_begin0 - .quad Lset5098 -.set Lset5099, Ltmp3434-Lfunc_begin0 - .quad Lset5099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5100, Ltmp3435-Lfunc_begin0 - .quad Lset5100 -.set Lset5101, Ltmp3442-Lfunc_begin0 - .quad Lset5101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5102, Ltmp3465-Lfunc_begin0 - .quad Lset5102 -.set Lset5103, Ltmp3488-Lfunc_begin0 - .quad Lset5103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5104, Ltmp3489-Lfunc_begin0 - .quad Lset5104 -.set Lset5105, Ltmp3536-Lfunc_begin0 - .quad Lset5105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5106, Ltmp3537-Lfunc_begin0 - .quad Lset5106 -.set Lset5107, Ltmp3637-Lfunc_begin0 - .quad Lset5107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5108, Ltmp3638-Lfunc_begin0 - .quad Lset5108 -.set Lset5109, Ltmp3656-Lfunc_begin0 - .quad Lset5109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5110, Ltmp3668-Lfunc_begin0 - .quad Lset5110 -.set Lset5111, Ltmp3684-Lfunc_begin0 - .quad Lset5111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5112, Ltmp3685-Lfunc_begin0 - .quad Lset5112 -.set Lset5113, Ltmp3692-Lfunc_begin0 - .quad Lset5113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5114, Ltmp3698-Lfunc_begin0 - .quad Lset5114 -.set Lset5115, Ltmp3731-Lfunc_begin0 - .quad Lset5115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5116, Ltmp3739-Lfunc_begin0 - .quad Lset5116 -.set Lset5117, Ltmp3799-Lfunc_begin0 - .quad Lset5117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5118, Ltmp3807-Lfunc_begin0 - .quad Lset5118 -.set Lset5119, Ltmp3809-Lfunc_begin0 - .quad Lset5119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5120, Ltmp3815-Lfunc_begin0 - .quad Lset5120 -.set Lset5121, Ltmp3849-Lfunc_begin0 - .quad Lset5121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5122, Ltmp3864-Lfunc_begin0 - .quad Lset5122 -.set Lset5123, Ltmp3867-Lfunc_begin0 - .quad Lset5123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5124, Ltmp3877-Lfunc_begin0 - .quad Lset5124 -.set Lset5125, Ltmp3880-Lfunc_begin0 - .quad Lset5125 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset5126, Ltmp3880-Lfunc_begin0 - .quad Lset5126 -.set Lset5127, Ltmp3932-Lfunc_begin0 - .quad Lset5127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5128, Ltmp3933-Lfunc_begin0 - .quad Lset5128 -.set Lset5129, Ltmp3958-Lfunc_begin0 - .quad Lset5129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5130, Ltmp3959-Lfunc_begin0 - .quad Lset5130 -.set Lset5131, Ltmp3984-Lfunc_begin0 - .quad Lset5131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5132, Ltmp3985-Lfunc_begin0 - .quad Lset5132 -.set Lset5133, Ltmp4010-Lfunc_begin0 - .quad Lset5133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5134, Ltmp4011-Lfunc_begin0 - .quad Lset5134 -.set Lset5135, Ltmp4045-Lfunc_begin0 - .quad Lset5135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5136, Ltmp4046-Lfunc_begin0 - .quad Lset5136 -.set Lset5137, Ltmp4083-Lfunc_begin0 - .quad Lset5137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5138, Ltmp4084-Lfunc_begin0 - .quad Lset5138 -.set Lset5139, Ltmp4105-Lfunc_begin0 - .quad Lset5139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5140, Ltmp4106-Lfunc_begin0 - .quad Lset5140 -.set Lset5141, Ltmp4107-Lfunc_begin0 - .quad Lset5141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5142, Ltmp4113-Lfunc_begin0 - .quad Lset5142 -.set Lset5143, Ltmp4132-Lfunc_begin0 - .quad Lset5143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5144, Ltmp4139-Lfunc_begin0 - .quad Lset5144 -.set Lset5145, Ltmp4140-Lfunc_begin0 - .quad Lset5145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5146, Ltmp4146-Lfunc_begin0 - .quad Lset5146 -.set Lset5147, Ltmp4147-Lfunc_begin0 - .quad Lset5147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5148, Ltmp4153-Lfunc_begin0 - .quad Lset5148 -.set Lset5149, Ltmp4173-Lfunc_begin0 - .quad Lset5149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5150, Ltmp4180-Lfunc_begin0 - .quad Lset5150 -.set Lset5151, Ltmp4181-Lfunc_begin0 - .quad Lset5151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5152, Ltmp4187-Lfunc_begin0 - .quad Lset5152 -.set Lset5153, Ltmp4188-Lfunc_begin0 - .quad Lset5153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5154, Ltmp4194-Lfunc_begin0 - .quad Lset5154 -.set Lset5155, Ltmp4213-Lfunc_begin0 - .quad Lset5155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5156, Ltmp4220-Lfunc_begin0 - .quad Lset5156 -.set Lset5157, Ltmp4221-Lfunc_begin0 - .quad Lset5157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5158, Ltmp4227-Lfunc_begin0 - .quad Lset5158 -.set Lset5159, Ltmp4228-Lfunc_begin0 - .quad Lset5159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5160, Ltmp4234-Lfunc_begin0 - .quad Lset5160 -.set Lset5161, Ltmp4254-Lfunc_begin0 - .quad Lset5161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5162, Ltmp4261-Lfunc_begin0 - .quad Lset5162 -.set Lset5163, Ltmp4262-Lfunc_begin0 - .quad Lset5163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5164, Ltmp4268-Lfunc_begin0 - .quad Lset5164 -.set Lset5165, Ltmp4269-Lfunc_begin0 - .quad Lset5165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5166, Ltmp4275-Lfunc_begin0 - .quad Lset5166 -.set Lset5167, Ltmp4294-Lfunc_begin0 - .quad Lset5167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5168, Ltmp4301-Lfunc_begin0 - .quad Lset5168 -.set Lset5169, Ltmp4302-Lfunc_begin0 - .quad Lset5169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5170, Ltmp4308-Lfunc_begin0 - .quad Lset5170 -.set Lset5171, Ltmp4309-Lfunc_begin0 - .quad Lset5171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5172, Ltmp4315-Lfunc_begin0 - .quad Lset5172 -.set Lset5173, Ltmp4335-Lfunc_begin0 - .quad Lset5173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5174, Ltmp4342-Lfunc_begin0 - .quad Lset5174 -.set Lset5175, Ltmp4343-Lfunc_begin0 - .quad Lset5175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5176, Ltmp4349-Lfunc_begin0 - .quad Lset5176 -.set Lset5177, Ltmp4379-Lfunc_begin0 - .quad Lset5177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5178, Ltmp4380-Lfunc_begin0 - .quad Lset5178 -.set Lset5179, Ltmp4411-Lfunc_begin0 - .quad Lset5179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5180, Ltmp4412-Lfunc_begin0 - .quad Lset5180 -.set Lset5181, Ltmp4417-Lfunc_begin0 - .quad Lset5181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5182, Ltmp4423-Lfunc_begin0 - .quad Lset5182 -.set Lset5183, Ltmp4440-Lfunc_begin0 - .quad Lset5183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5184, Ltmp4454-Lfunc_begin0 - .quad Lset5184 -.set Lset5185, Ltmp4458-Lfunc_begin0 - .quad Lset5185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5186, Ltmp4464-Lfunc_begin0 - .quad Lset5186 -.set Lset5187, Ltmp4481-Lfunc_begin0 - .quad Lset5187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5188, Ltmp4495-Lfunc_begin0 - .quad Lset5188 -.set Lset5189, Ltmp4578-Lfunc_begin0 - .quad Lset5189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5190, Ltmp4579-Lfunc_begin0 - .quad Lset5190 -.set Lset5191, Ltmp4648-Lfunc_begin0 - .quad Lset5191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5192, Ltmp4649-Lfunc_begin0 - .quad Lset5192 -.set Lset5193, Ltmp4716-Lfunc_begin0 - .quad Lset5193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5194, Ltmp4717-Lfunc_begin0 - .quad Lset5194 -.set Lset5195, Ltmp4782-Lfunc_begin0 - .quad Lset5195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5196, Ltmp4783-Lfunc_begin0 - .quad Lset5196 -.set Lset5197, Ltmp4812-Lfunc_begin0 - .quad Lset5197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5198, Ltmp4813-Lfunc_begin0 - .quad Lset5198 -.set Lset5199, Ltmp4842-Lfunc_begin0 - .quad Lset5199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5200, Ltmp4843-Lfunc_begin0 - .quad Lset5200 -.set Lset5201, Ltmp4844-Lfunc_begin0 - .quad Lset5201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5202, Ltmp4850-Lfunc_begin0 - .quad Lset5202 -.set Lset5203, Ltmp4861-Lfunc_begin0 - .quad Lset5203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5204, Ltmp4902-Lfunc_begin0 - .quad Lset5204 -.set Lset5205, Ltmp4903-Lfunc_begin0 - .quad Lset5205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5206, Ltmp4909-Lfunc_begin0 - .quad Lset5206 -.set Lset5207, Ltmp4933-Lfunc_begin0 - .quad Lset5207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5208, Ltmp4943-Lfunc_begin0 - .quad Lset5208 -.set Lset5209, Ltmp4944-Lfunc_begin0 - .quad Lset5209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5210, Ltmp4950-Lfunc_begin0 - .quad Lset5210 -.set Lset5211, Ltmp4961-Lfunc_begin0 - .quad Lset5211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5212, Ltmp5000-Lfunc_begin0 - .quad Lset5212 -.set Lset5213, Ltmp5001-Lfunc_begin0 - .quad Lset5213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5214, Ltmp5007-Lfunc_begin0 - .quad Lset5214 -.set Lset5215, Ltmp5031-Lfunc_begin0 - .quad Lset5215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5216, Ltmp5040-Lfunc_begin0 - .quad Lset5216 -.set Lset5217, Ltmp5050-Lfunc_begin0 - .quad Lset5217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5218, Ltmp5056-Lfunc_begin0 - .quad Lset5218 -.set Lset5219, Ltmp5070-Lfunc_begin0 - .quad Lset5219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5220, Ltmp5078-Lfunc_begin0 - .quad Lset5220 -.set Lset5221, Ltmp5088-Lfunc_begin0 - .quad Lset5221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5222, Ltmp5094-Lfunc_begin0 - .quad Lset5222 -.set Lset5223, Ltmp5106-Lfunc_begin0 - .quad Lset5223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5224, Ltmp5114-Lfunc_begin0 - .quad Lset5224 -.set Lset5225, Ltmp5115-Lfunc_begin0 - .quad Lset5225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5226, Ltmp5121-Lfunc_begin0 - .quad Lset5226 -.set Lset5227, Ltmp5137-Lfunc_begin0 - .quad Lset5227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5228, Ltmp5146-Lfunc_begin0 - .quad Lset5228 -.set Lset5229, Ltmp5147-Lfunc_begin0 - .quad Lset5229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5230, Ltmp5153-Lfunc_begin0 - .quad Lset5230 -.set Lset5231, Ltmp5169-Lfunc_begin0 - .quad Lset5231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5232, Ltmp5178-Lfunc_begin0 - .quad Lset5232 -.set Lset5233, Ltmp5179-Lfunc_begin0 - .quad Lset5233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5234, Ltmp5185-Lfunc_begin0 - .quad Lset5234 -.set Lset5235, Ltmp5201-Lfunc_begin0 - .quad Lset5235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5236, Ltmp5210-Lfunc_begin0 - .quad Lset5236 -.set Lset5237, Ltmp5227-Lfunc_begin0 - .quad Lset5237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5238, Ltmp5228-Lfunc_begin0 - .quad Lset5238 -.set Lset5239, Ltmp5245-Lfunc_begin0 - .quad Lset5239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5240, Ltmp5246-Lfunc_begin0 - .quad Lset5240 -.set Lset5241, Ltmp5270-Lfunc_begin0 - .quad Lset5241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5242, Ltmp5271-Lfunc_begin0 - .quad Lset5242 -.set Lset5243, Ltmp5295-Lfunc_begin0 - .quad Lset5243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5244, Ltmp5296-Lfunc_begin0 - .quad Lset5244 -.set Lset5245, Ltmp5321-Lfunc_begin0 - .quad Lset5245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5246, Ltmp5322-Lfunc_begin0 - .quad Lset5246 -.set Lset5247, Ltmp5346-Lfunc_begin0 - .quad Lset5247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5248, Ltmp5347-Lfunc_begin0 - .quad Lset5248 -.set Lset5249, Ltmp5371-Lfunc_begin0 - .quad Lset5249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5250, Ltmp5372-Lfunc_begin0 - .quad Lset5250 -.set Lset5251, Ltmp5396-Lfunc_begin0 - .quad Lset5251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5252, Ltmp5397-Lfunc_begin0 - .quad Lset5252 -.set Lset5253, Ltmp5421-Lfunc_begin0 - .quad Lset5253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5254, Ltmp5422-Lfunc_begin0 - .quad Lset5254 -.set Lset5255, Ltmp5446-Lfunc_begin0 - .quad Lset5255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5256, Ltmp5447-Lfunc_begin0 - .quad Lset5256 -.set Lset5257, Ltmp5471-Lfunc_begin0 - .quad Lset5257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5258, Ltmp5472-Lfunc_begin0 - .quad Lset5258 -.set Lset5259, Ltmp5497-Lfunc_begin0 - .quad Lset5259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5260, Ltmp5498-Lfunc_begin0 - .quad Lset5260 -.set Lset5261, Ltmp5522-Lfunc_begin0 - .quad Lset5261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5262, Ltmp5523-Lfunc_begin0 - .quad Lset5262 -.set Lset5263, Ltmp5547-Lfunc_begin0 - .quad Lset5263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5264, Ltmp5548-Lfunc_begin0 - .quad Lset5264 -.set Lset5265, Ltmp5572-Lfunc_begin0 - .quad Lset5265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5266, Ltmp5573-Lfunc_begin0 - .quad Lset5266 -.set Lset5267, Ltmp5597-Lfunc_begin0 - .quad Lset5267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5268, Ltmp5598-Lfunc_begin0 - .quad Lset5268 -.set Lset5269, Ltmp5630-Lfunc_begin0 - .quad Lset5269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5270, Ltmp5631-Lfunc_begin0 - .quad Lset5270 -.set Lset5271, Ltmp5661-Lfunc_begin0 - .quad Lset5271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5272, Ltmp5662-Lfunc_begin0 - .quad Lset5272 -.set Lset5273, Ltmp5686-Lfunc_begin0 - .quad Lset5273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5274, Ltmp5687-Lfunc_begin0 - .quad Lset5274 -.set Lset5275, Ltmp5711-Lfunc_begin0 - .quad Lset5275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5276, Ltmp5712-Lfunc_begin0 - .quad Lset5276 -.set Lset5277, Ltmp5736-Lfunc_begin0 - .quad Lset5277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5278, Ltmp5737-Lfunc_begin0 - .quad Lset5278 -.set Lset5279, Ltmp5766-Lfunc_begin0 - .quad Lset5279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5280, Ltmp5767-Lfunc_begin0 - .quad Lset5280 -.set Lset5281, Ltmp5794-Lfunc_begin0 - .quad Lset5281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5282, Ltmp5795-Lfunc_begin0 - .quad Lset5282 -.set Lset5283, Ltmp5813-Lfunc_begin0 - .quad Lset5283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5284, Ltmp5814-Lfunc_begin0 - .quad Lset5284 -.set Lset5285, Ltmp5832-Lfunc_begin0 - .quad Lset5285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5286, Ltmp5833-Lfunc_begin0 - .quad Lset5286 -.set Lset5287, Ltmp5851-Lfunc_begin0 - .quad Lset5287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5288, Ltmp5852-Lfunc_begin0 - .quad Lset5288 -.set Lset5289, Ltmp5870-Lfunc_begin0 - .quad Lset5289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5290, Ltmp5871-Lfunc_begin0 - .quad Lset5290 -.set Lset5291, Ltmp5889-Lfunc_begin0 - .quad Lset5291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5292, Ltmp5890-Lfunc_begin0 - .quad Lset5292 -.set Lset5293, Ltmp5919-Lfunc_begin0 - .quad Lset5293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5294, Ltmp5920-Lfunc_begin0 - .quad Lset5294 -.set Lset5295, Ltmp5925-Lfunc_begin0 - .quad Lset5295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5296, Ltmp5926-Lfunc_begin0 - .quad Lset5296 -.set Lset5297, Ltmp5936-Lfunc_begin0 - .quad Lset5297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5298, Ltmp5938-Lfunc_begin0 - .quad Lset5298 -.set Lset5299, Ltmp5944-Lfunc_begin0 - .quad Lset5299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5300, Ltmp5946-Lfunc_begin0 - .quad Lset5300 -.set Lset5301, Ltmp5969-Lfunc_begin0 - .quad Lset5301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5302, Ltmp5970-Lfunc_begin0 - .quad Lset5302 -.set Lset5303, Ltmp6051-Lfunc_begin0 - .quad Lset5303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5304, Ltmp6052-Lfunc_begin0 - .quad Lset5304 -.set Lset5305, Ltmp6054-Lfunc_begin0 - .quad Lset5305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5306, Ltmp6055-Lfunc_begin0 - .quad Lset5306 -.set Lset5307, Ltmp6071-Lfunc_begin0 - .quad Lset5307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5308, Ltmp6072-Lfunc_begin0 - .quad Lset5308 -.set Lset5309, Ltmp6175-Lfunc_begin0 - .quad Lset5309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5310, Ltmp6177-Lfunc_begin0 - .quad Lset5310 -.set Lset5311, Ltmp6265-Lfunc_begin0 - .quad Lset5311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5312, Ltmp6266-Lfunc_begin0 - .quad Lset5312 -.set Lset5313, Ltmp6304-Lfunc_begin0 - .quad Lset5313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5314, Ltmp6307-Lfunc_begin0 - .quad Lset5314 -.set Lset5315, Ltmp6321-Lfunc_begin0 - .quad Lset5315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5316, Ltmp6323-Lfunc_begin0 - .quad Lset5316 -.set Lset5317, Ltmp6346-Lfunc_begin0 - .quad Lset5317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5318, Ltmp6348-Lfunc_begin0 - .quad Lset5318 -.set Lset5319, Ltmp6377-Lfunc_begin0 - .quad Lset5319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5320, Ltmp6379-Lfunc_begin0 - .quad Lset5320 -.set Lset5321, Ltmp6380-Lfunc_begin0 - .quad Lset5321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5322, Ltmp6382-Lfunc_begin0 - .quad Lset5322 -.set Lset5323, Ltmp6384-Lfunc_begin0 - .quad Lset5323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5324, Ltmp6385-Lfunc_begin0 - .quad Lset5324 -.set Lset5325, Ltmp6420-Lfunc_begin0 - .quad Lset5325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5326, Ltmp6423-Lfunc_begin0 - .quad Lset5326 -.set Lset5327, Ltmp6425-Lfunc_begin0 - .quad Lset5327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5328, Ltmp6426-Lfunc_begin0 - .quad Lset5328 -.set Lset5329, Ltmp6429-Lfunc_begin0 - .quad Lset5329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc194: -.set Lset5330, Ltmp1186-Lfunc_begin0 - .quad Lset5330 -.set Lset5331, Ltmp1187-Lfunc_begin0 - .quad Lset5331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5332, Ltmp1215-Lfunc_begin0 - .quad Lset5332 -.set Lset5333, Ltmp1216-Lfunc_begin0 - .quad Lset5333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5334, Ltmp1237-Lfunc_begin0 - .quad Lset5334 -.set Lset5335, Ltmp1238-Lfunc_begin0 - .quad Lset5335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5336, Ltmp1260-Lfunc_begin0 - .quad Lset5336 -.set Lset5337, Ltmp1261-Lfunc_begin0 - .quad Lset5337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5338, Ltmp1281-Lfunc_begin0 - .quad Lset5338 -.set Lset5339, Ltmp1282-Lfunc_begin0 - .quad Lset5339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5340, Ltmp1314-Lfunc_begin0 - .quad Lset5340 -.set Lset5341, Ltmp1315-Lfunc_begin0 - .quad Lset5341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5342, Ltmp1338-Lfunc_begin0 - .quad Lset5342 -.set Lset5343, Ltmp1339-Lfunc_begin0 - .quad Lset5343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5344, Ltmp1368-Lfunc_begin0 - .quad Lset5344 -.set Lset5345, Ltmp1369-Lfunc_begin0 - .quad Lset5345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5346, Ltmp1462-Lfunc_begin0 - .quad Lset5346 -.set Lset5347, Ltmp1464-Lfunc_begin0 - .quad Lset5347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5348, Ltmp1557-Lfunc_begin0 - .quad Lset5348 -.set Lset5349, Ltmp1559-Lfunc_begin0 - .quad Lset5349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5350, Ltmp1713-Lfunc_begin0 - .quad Lset5350 -.set Lset5351, Ltmp1715-Lfunc_begin0 - .quad Lset5351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5352, Ltmp1864-Lfunc_begin0 - .quad Lset5352 -.set Lset5353, Ltmp1866-Lfunc_begin0 - .quad Lset5353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5354, Ltmp2004-Lfunc_begin0 - .quad Lset5354 -.set Lset5355, Ltmp2006-Lfunc_begin0 - .quad Lset5355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5356, Ltmp2074-Lfunc_begin0 - .quad Lset5356 -.set Lset5357, Ltmp2076-Lfunc_begin0 - .quad Lset5357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5358, Ltmp2120-Lfunc_begin0 - .quad Lset5358 -.set Lset5359, Ltmp2121-Lfunc_begin0 - .quad Lset5359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5360, Ltmp2193-Lfunc_begin0 - .quad Lset5360 -.set Lset5361, Ltmp2195-Lfunc_begin0 - .quad Lset5361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5362, Ltmp2253-Lfunc_begin0 - .quad Lset5362 -.set Lset5363, Ltmp2255-Lfunc_begin0 - .quad Lset5363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5364, Ltmp2302-Lfunc_begin0 - .quad Lset5364 -.set Lset5365, Ltmp2304-Lfunc_begin0 - .quad Lset5365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5366, Ltmp2351-Lfunc_begin0 - .quad Lset5366 -.set Lset5367, Ltmp2353-Lfunc_begin0 - .quad Lset5367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5368, Ltmp2400-Lfunc_begin0 - .quad Lset5368 -.set Lset5369, Ltmp2402-Lfunc_begin0 - .quad Lset5369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5370, Ltmp2444-Lfunc_begin0 - .quad Lset5370 -.set Lset5371, Ltmp2446-Lfunc_begin0 - .quad Lset5371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5372, Ltmp2499-Lfunc_begin0 - .quad Lset5372 -.set Lset5373, Ltmp2501-Lfunc_begin0 - .quad Lset5373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5374, Ltmp2554-Lfunc_begin0 - .quad Lset5374 -.set Lset5375, Ltmp2556-Lfunc_begin0 - .quad Lset5375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5376, Ltmp2609-Lfunc_begin0 - .quad Lset5376 -.set Lset5377, Ltmp2611-Lfunc_begin0 - .quad Lset5377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5378, Ltmp2673-Lfunc_begin0 - .quad Lset5378 -.set Lset5379, Ltmp2675-Lfunc_begin0 - .quad Lset5379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5380, Ltmp2738-Lfunc_begin0 - .quad Lset5380 -.set Lset5381, Ltmp2740-Lfunc_begin0 - .quad Lset5381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5382, Ltmp2811-Lfunc_begin0 - .quad Lset5382 -.set Lset5383, Ltmp2813-Lfunc_begin0 - .quad Lset5383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5384, Ltmp2871-Lfunc_begin0 - .quad Lset5384 -.set Lset5385, Ltmp2873-Lfunc_begin0 - .quad Lset5385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5386, Ltmp2922-Lfunc_begin0 - .quad Lset5386 -.set Lset5387, Ltmp2924-Lfunc_begin0 - .quad Lset5387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5388, Ltmp2957-Lfunc_begin0 - .quad Lset5388 -.set Lset5389, Ltmp2958-Lfunc_begin0 - .quad Lset5389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5390, Ltmp2997-Lfunc_begin0 - .quad Lset5390 -.set Lset5391, Ltmp2999-Lfunc_begin0 - .quad Lset5391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5392, Ltmp3024-Lfunc_begin0 - .quad Lset5392 -.set Lset5393, Ltmp3025-Lfunc_begin0 - .quad Lset5393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5394, Ltmp3047-Lfunc_begin0 - .quad Lset5394 -.set Lset5395, Ltmp3048-Lfunc_begin0 - .quad Lset5395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5396, Ltmp3096-Lfunc_begin0 - .quad Lset5396 -.set Lset5397, Ltmp3097-Lfunc_begin0 - .quad Lset5397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5398, Ltmp3120-Lfunc_begin0 - .quad Lset5398 -.set Lset5399, Ltmp3122-Lfunc_begin0 - .quad Lset5399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5400, Ltmp3161-Lfunc_begin0 - .quad Lset5400 -.set Lset5401, Ltmp3163-Lfunc_begin0 - .quad Lset5401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5402, Ltmp3227-Lfunc_begin0 - .quad Lset5402 -.set Lset5403, Ltmp3228-Lfunc_begin0 - .quad Lset5403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5404, Ltmp3292-Lfunc_begin0 - .quad Lset5404 -.set Lset5405, Ltmp3293-Lfunc_begin0 - .quad Lset5405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5406, Ltmp3329-Lfunc_begin0 - .quad Lset5406 -.set Lset5407, Ltmp3330-Lfunc_begin0 - .quad Lset5407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5408, Ltmp3375-Lfunc_begin0 - .quad Lset5408 -.set Lset5409, Ltmp3376-Lfunc_begin0 - .quad Lset5409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5410, Ltmp3407-Lfunc_begin0 - .quad Lset5410 -.set Lset5411, Ltmp3408-Lfunc_begin0 - .quad Lset5411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5412, Ltmp3435-Lfunc_begin0 - .quad Lset5412 -.set Lset5413, Ltmp3436-Lfunc_begin0 - .quad Lset5413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5414, Ltmp3537-Lfunc_begin0 - .quad Lset5414 -.set Lset5415, Ltmp3538-Lfunc_begin0 - .quad Lset5415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5416, Ltmp3638-Lfunc_begin0 - .quad Lset5416 -.set Lset5417, Ltmp3640-Lfunc_begin0 - .quad Lset5417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5418, Ltmp3685-Lfunc_begin0 - .quad Lset5418 -.set Lset5419, Ltmp3686-Lfunc_begin0 - .quad Lset5419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5420, Ltmp3807-Lfunc_begin0 - .quad Lset5420 -.set Lset5421, Ltmp3809-Lfunc_begin0 - .quad Lset5421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5422, Ltmp3864-Lfunc_begin0 - .quad Lset5422 -.set Lset5423, Ltmp3865-Lfunc_begin0 - .quad Lset5423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5424, Ltmp3933-Lfunc_begin0 - .quad Lset5424 -.set Lset5425, Ltmp3934-Lfunc_begin0 - .quad Lset5425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5426, Ltmp3959-Lfunc_begin0 - .quad Lset5426 -.set Lset5427, Ltmp3960-Lfunc_begin0 - .quad Lset5427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5428, Ltmp3985-Lfunc_begin0 - .quad Lset5428 -.set Lset5429, Ltmp3986-Lfunc_begin0 - .quad Lset5429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5430, Ltmp4011-Lfunc_begin0 - .quad Lset5430 -.set Lset5431, Ltmp4012-Lfunc_begin0 - .quad Lset5431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5432, Ltmp4046-Lfunc_begin0 - .quad Lset5432 -.set Lset5433, Ltmp4047-Lfunc_begin0 - .quad Lset5433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5434, Ltmp4084-Lfunc_begin0 - .quad Lset5434 -.set Lset5435, Ltmp4085-Lfunc_begin0 - .quad Lset5435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5436, Ltmp4106-Lfunc_begin0 - .quad Lset5436 -.set Lset5437, Ltmp4107-Lfunc_begin0 - .quad Lset5437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5438, Ltmp4146-Lfunc_begin0 - .quad Lset5438 -.set Lset5439, Ltmp4147-Lfunc_begin0 - .quad Lset5439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5440, Ltmp4187-Lfunc_begin0 - .quad Lset5440 -.set Lset5441, Ltmp4188-Lfunc_begin0 - .quad Lset5441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5442, Ltmp4227-Lfunc_begin0 - .quad Lset5442 -.set Lset5443, Ltmp4228-Lfunc_begin0 - .quad Lset5443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5444, Ltmp4268-Lfunc_begin0 - .quad Lset5444 -.set Lset5445, Ltmp4269-Lfunc_begin0 - .quad Lset5445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5446, Ltmp4308-Lfunc_begin0 - .quad Lset5446 -.set Lset5447, Ltmp4309-Lfunc_begin0 - .quad Lset5447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5448, Ltmp4349-Lfunc_begin0 - .quad Lset5448 -.set Lset5449, Ltmp4350-Lfunc_begin0 - .quad Lset5449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5450, Ltmp4380-Lfunc_begin0 - .quad Lset5450 -.set Lset5451, Ltmp4381-Lfunc_begin0 - .quad Lset5451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5452, Ltmp4412-Lfunc_begin0 - .quad Lset5452 -.set Lset5453, Ltmp4414-Lfunc_begin0 - .quad Lset5453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5454, Ltmp4454-Lfunc_begin0 - .quad Lset5454 -.set Lset5455, Ltmp4455-Lfunc_begin0 - .quad Lset5455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5456, Ltmp4495-Lfunc_begin0 - .quad Lset5456 -.set Lset5457, Ltmp4496-Lfunc_begin0 - .quad Lset5457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5458, Ltmp4579-Lfunc_begin0 - .quad Lset5458 -.set Lset5459, Ltmp4581-Lfunc_begin0 - .quad Lset5459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5460, Ltmp4649-Lfunc_begin0 - .quad Lset5460 -.set Lset5461, Ltmp4651-Lfunc_begin0 - .quad Lset5461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5462, Ltmp4717-Lfunc_begin0 - .quad Lset5462 -.set Lset5463, Ltmp4719-Lfunc_begin0 - .quad Lset5463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5464, Ltmp4783-Lfunc_begin0 - .quad Lset5464 -.set Lset5465, Ltmp4784-Lfunc_begin0 - .quad Lset5465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5466, Ltmp4813-Lfunc_begin0 - .quad Lset5466 -.set Lset5467, Ltmp4814-Lfunc_begin0 - .quad Lset5467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5468, Ltmp4843-Lfunc_begin0 - .quad Lset5468 -.set Lset5469, Ltmp4844-Lfunc_begin0 - .quad Lset5469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5470, Ltmp4902-Lfunc_begin0 - .quad Lset5470 -.set Lset5471, Ltmp4903-Lfunc_begin0 - .quad Lset5471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5472, Ltmp4943-Lfunc_begin0 - .quad Lset5472 -.set Lset5473, Ltmp4944-Lfunc_begin0 - .quad Lset5473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5474, Ltmp5000-Lfunc_begin0 - .quad Lset5474 -.set Lset5475, Ltmp5001-Lfunc_begin0 - .quad Lset5475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5476, Ltmp5040-Lfunc_begin0 - .quad Lset5476 -.set Lset5477, Ltmp5041-Lfunc_begin0 - .quad Lset5477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5478, Ltmp5078-Lfunc_begin0 - .quad Lset5478 -.set Lset5479, Ltmp5079-Lfunc_begin0 - .quad Lset5479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5480, Ltmp5114-Lfunc_begin0 - .quad Lset5480 -.set Lset5481, Ltmp5115-Lfunc_begin0 - .quad Lset5481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5482, Ltmp5146-Lfunc_begin0 - .quad Lset5482 -.set Lset5483, Ltmp5147-Lfunc_begin0 - .quad Lset5483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5484, Ltmp5178-Lfunc_begin0 - .quad Lset5484 -.set Lset5485, Ltmp5179-Lfunc_begin0 - .quad Lset5485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5486, Ltmp5210-Lfunc_begin0 - .quad Lset5486 -.set Lset5487, Ltmp5211-Lfunc_begin0 - .quad Lset5487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5488, Ltmp5228-Lfunc_begin0 - .quad Lset5488 -.set Lset5489, Ltmp5229-Lfunc_begin0 - .quad Lset5489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5490, Ltmp5246-Lfunc_begin0 - .quad Lset5490 -.set Lset5491, Ltmp5247-Lfunc_begin0 - .quad Lset5491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5492, Ltmp5271-Lfunc_begin0 - .quad Lset5492 -.set Lset5493, Ltmp5272-Lfunc_begin0 - .quad Lset5493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5494, Ltmp5296-Lfunc_begin0 - .quad Lset5494 -.set Lset5495, Ltmp5297-Lfunc_begin0 - .quad Lset5495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5496, Ltmp5322-Lfunc_begin0 - .quad Lset5496 -.set Lset5497, Ltmp5323-Lfunc_begin0 - .quad Lset5497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5498, Ltmp5347-Lfunc_begin0 - .quad Lset5498 -.set Lset5499, Ltmp5348-Lfunc_begin0 - .quad Lset5499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5500, Ltmp5372-Lfunc_begin0 - .quad Lset5500 -.set Lset5501, Ltmp5373-Lfunc_begin0 - .quad Lset5501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5502, Ltmp5397-Lfunc_begin0 - .quad Lset5502 -.set Lset5503, Ltmp5398-Lfunc_begin0 - .quad Lset5503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5504, Ltmp5422-Lfunc_begin0 - .quad Lset5504 -.set Lset5505, Ltmp5423-Lfunc_begin0 - .quad Lset5505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5506, Ltmp5447-Lfunc_begin0 - .quad Lset5506 -.set Lset5507, Ltmp5448-Lfunc_begin0 - .quad Lset5507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5508, Ltmp5472-Lfunc_begin0 - .quad Lset5508 -.set Lset5509, Ltmp5473-Lfunc_begin0 - .quad Lset5509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5510, Ltmp5498-Lfunc_begin0 - .quad Lset5510 -.set Lset5511, Ltmp5499-Lfunc_begin0 - .quad Lset5511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5512, Ltmp5523-Lfunc_begin0 - .quad Lset5512 -.set Lset5513, Ltmp5524-Lfunc_begin0 - .quad Lset5513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5514, Ltmp5548-Lfunc_begin0 - .quad Lset5514 -.set Lset5515, Ltmp5549-Lfunc_begin0 - .quad Lset5515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5516, Ltmp5573-Lfunc_begin0 - .quad Lset5516 -.set Lset5517, Ltmp5574-Lfunc_begin0 - .quad Lset5517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5518, Ltmp5598-Lfunc_begin0 - .quad Lset5518 -.set Lset5519, Ltmp5599-Lfunc_begin0 - .quad Lset5519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5520, Ltmp5631-Lfunc_begin0 - .quad Lset5520 -.set Lset5521, Ltmp5632-Lfunc_begin0 - .quad Lset5521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5522, Ltmp5662-Lfunc_begin0 - .quad Lset5522 -.set Lset5523, Ltmp5663-Lfunc_begin0 - .quad Lset5523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5524, Ltmp5687-Lfunc_begin0 - .quad Lset5524 -.set Lset5525, Ltmp5688-Lfunc_begin0 - .quad Lset5525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5526, Ltmp5712-Lfunc_begin0 - .quad Lset5526 -.set Lset5527, Ltmp5713-Lfunc_begin0 - .quad Lset5527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5528, Ltmp5737-Lfunc_begin0 - .quad Lset5528 -.set Lset5529, Ltmp5738-Lfunc_begin0 - .quad Lset5529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5530, Ltmp5767-Lfunc_begin0 - .quad Lset5530 -.set Lset5531, Ltmp5768-Lfunc_begin0 - .quad Lset5531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5532, Ltmp5795-Lfunc_begin0 - .quad Lset5532 -.set Lset5533, Ltmp5796-Lfunc_begin0 - .quad Lset5533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5534, Ltmp5814-Lfunc_begin0 - .quad Lset5534 -.set Lset5535, Ltmp5815-Lfunc_begin0 - .quad Lset5535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5536, Ltmp5833-Lfunc_begin0 - .quad Lset5536 -.set Lset5537, Ltmp5834-Lfunc_begin0 - .quad Lset5537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5538, Ltmp5852-Lfunc_begin0 - .quad Lset5538 -.set Lset5539, Ltmp5853-Lfunc_begin0 - .quad Lset5539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5540, Ltmp5871-Lfunc_begin0 - .quad Lset5540 -.set Lset5541, Ltmp5872-Lfunc_begin0 - .quad Lset5541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5542, Ltmp5890-Lfunc_begin0 - .quad Lset5542 -.set Lset5543, Ltmp5891-Lfunc_begin0 - .quad Lset5543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5544, Ltmp5920-Lfunc_begin0 - .quad Lset5544 -.set Lset5545, Ltmp5921-Lfunc_begin0 - .quad Lset5545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc195: -.set Lset5546, Ltmp1186-Lfunc_begin0 - .quad Lset5546 -.set Lset5547, Ltmp1187-Lfunc_begin0 - .quad Lset5547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5548, Ltmp1215-Lfunc_begin0 - .quad Lset5548 -.set Lset5549, Ltmp1216-Lfunc_begin0 - .quad Lset5549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5550, Ltmp1237-Lfunc_begin0 - .quad Lset5550 -.set Lset5551, Ltmp1238-Lfunc_begin0 - .quad Lset5551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5552, Ltmp1260-Lfunc_begin0 - .quad Lset5552 -.set Lset5553, Ltmp1261-Lfunc_begin0 - .quad Lset5553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5554, Ltmp1281-Lfunc_begin0 - .quad Lset5554 -.set Lset5555, Ltmp1282-Lfunc_begin0 - .quad Lset5555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5556, Ltmp1314-Lfunc_begin0 - .quad Lset5556 -.set Lset5557, Ltmp1315-Lfunc_begin0 - .quad Lset5557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5558, Ltmp1338-Lfunc_begin0 - .quad Lset5558 -.set Lset5559, Ltmp1339-Lfunc_begin0 - .quad Lset5559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5560, Ltmp1368-Lfunc_begin0 - .quad Lset5560 -.set Lset5561, Ltmp1369-Lfunc_begin0 - .quad Lset5561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5562, Ltmp1462-Lfunc_begin0 - .quad Lset5562 -.set Lset5563, Ltmp1464-Lfunc_begin0 - .quad Lset5563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5564, Ltmp1557-Lfunc_begin0 - .quad Lset5564 -.set Lset5565, Ltmp1559-Lfunc_begin0 - .quad Lset5565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5566, Ltmp1713-Lfunc_begin0 - .quad Lset5566 -.set Lset5567, Ltmp1715-Lfunc_begin0 - .quad Lset5567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5568, Ltmp1864-Lfunc_begin0 - .quad Lset5568 -.set Lset5569, Ltmp1866-Lfunc_begin0 - .quad Lset5569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5570, Ltmp2004-Lfunc_begin0 - .quad Lset5570 -.set Lset5571, Ltmp2006-Lfunc_begin0 - .quad Lset5571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5572, Ltmp2074-Lfunc_begin0 - .quad Lset5572 -.set Lset5573, Ltmp2076-Lfunc_begin0 - .quad Lset5573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5574, Ltmp2120-Lfunc_begin0 - .quad Lset5574 -.set Lset5575, Ltmp2121-Lfunc_begin0 - .quad Lset5575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5576, Ltmp2193-Lfunc_begin0 - .quad Lset5576 -.set Lset5577, Ltmp2195-Lfunc_begin0 - .quad Lset5577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5578, Ltmp2253-Lfunc_begin0 - .quad Lset5578 -.set Lset5579, Ltmp2255-Lfunc_begin0 - .quad Lset5579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5580, Ltmp2302-Lfunc_begin0 - .quad Lset5580 -.set Lset5581, Ltmp2304-Lfunc_begin0 - .quad Lset5581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5582, Ltmp2351-Lfunc_begin0 - .quad Lset5582 -.set Lset5583, Ltmp2353-Lfunc_begin0 - .quad Lset5583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5584, Ltmp2400-Lfunc_begin0 - .quad Lset5584 -.set Lset5585, Ltmp2402-Lfunc_begin0 - .quad Lset5585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5586, Ltmp2444-Lfunc_begin0 - .quad Lset5586 -.set Lset5587, Ltmp2446-Lfunc_begin0 - .quad Lset5587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5588, Ltmp2499-Lfunc_begin0 - .quad Lset5588 -.set Lset5589, Ltmp2501-Lfunc_begin0 - .quad Lset5589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5590, Ltmp2554-Lfunc_begin0 - .quad Lset5590 -.set Lset5591, Ltmp2556-Lfunc_begin0 - .quad Lset5591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5592, Ltmp2609-Lfunc_begin0 - .quad Lset5592 -.set Lset5593, Ltmp2611-Lfunc_begin0 - .quad Lset5593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5594, Ltmp2673-Lfunc_begin0 - .quad Lset5594 -.set Lset5595, Ltmp2675-Lfunc_begin0 - .quad Lset5595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5596, Ltmp2738-Lfunc_begin0 - .quad Lset5596 -.set Lset5597, Ltmp2740-Lfunc_begin0 - .quad Lset5597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5598, Ltmp2811-Lfunc_begin0 - .quad Lset5598 -.set Lset5599, Ltmp2813-Lfunc_begin0 - .quad Lset5599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5600, Ltmp2871-Lfunc_begin0 - .quad Lset5600 -.set Lset5601, Ltmp2873-Lfunc_begin0 - .quad Lset5601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5602, Ltmp2922-Lfunc_begin0 - .quad Lset5602 -.set Lset5603, Ltmp2924-Lfunc_begin0 - .quad Lset5603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5604, Ltmp2957-Lfunc_begin0 - .quad Lset5604 -.set Lset5605, Ltmp2958-Lfunc_begin0 - .quad Lset5605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5606, Ltmp2997-Lfunc_begin0 - .quad Lset5606 -.set Lset5607, Ltmp2999-Lfunc_begin0 - .quad Lset5607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5608, Ltmp3024-Lfunc_begin0 - .quad Lset5608 -.set Lset5609, Ltmp3025-Lfunc_begin0 - .quad Lset5609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5610, Ltmp3047-Lfunc_begin0 - .quad Lset5610 -.set Lset5611, Ltmp3048-Lfunc_begin0 - .quad Lset5611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5612, Ltmp3096-Lfunc_begin0 - .quad Lset5612 -.set Lset5613, Ltmp3097-Lfunc_begin0 - .quad Lset5613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5614, Ltmp3120-Lfunc_begin0 - .quad Lset5614 -.set Lset5615, Ltmp3122-Lfunc_begin0 - .quad Lset5615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5616, Ltmp3161-Lfunc_begin0 - .quad Lset5616 -.set Lset5617, Ltmp3163-Lfunc_begin0 - .quad Lset5617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5618, Ltmp3227-Lfunc_begin0 - .quad Lset5618 -.set Lset5619, Ltmp3228-Lfunc_begin0 - .quad Lset5619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5620, Ltmp3292-Lfunc_begin0 - .quad Lset5620 -.set Lset5621, Ltmp3293-Lfunc_begin0 - .quad Lset5621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5622, Ltmp3329-Lfunc_begin0 - .quad Lset5622 -.set Lset5623, Ltmp3330-Lfunc_begin0 - .quad Lset5623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5624, Ltmp3375-Lfunc_begin0 - .quad Lset5624 -.set Lset5625, Ltmp3376-Lfunc_begin0 - .quad Lset5625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5626, Ltmp3407-Lfunc_begin0 - .quad Lset5626 -.set Lset5627, Ltmp3408-Lfunc_begin0 - .quad Lset5627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5628, Ltmp3435-Lfunc_begin0 - .quad Lset5628 -.set Lset5629, Ltmp3436-Lfunc_begin0 - .quad Lset5629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5630, Ltmp3537-Lfunc_begin0 - .quad Lset5630 -.set Lset5631, Ltmp3538-Lfunc_begin0 - .quad Lset5631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5632, Ltmp3638-Lfunc_begin0 - .quad Lset5632 -.set Lset5633, Ltmp3640-Lfunc_begin0 - .quad Lset5633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5634, Ltmp3685-Lfunc_begin0 - .quad Lset5634 -.set Lset5635, Ltmp3686-Lfunc_begin0 - .quad Lset5635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5636, Ltmp3807-Lfunc_begin0 - .quad Lset5636 -.set Lset5637, Ltmp3809-Lfunc_begin0 - .quad Lset5637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5638, Ltmp3864-Lfunc_begin0 - .quad Lset5638 -.set Lset5639, Ltmp3865-Lfunc_begin0 - .quad Lset5639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5640, Ltmp3933-Lfunc_begin0 - .quad Lset5640 -.set Lset5641, Ltmp3934-Lfunc_begin0 - .quad Lset5641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5642, Ltmp3959-Lfunc_begin0 - .quad Lset5642 -.set Lset5643, Ltmp3960-Lfunc_begin0 - .quad Lset5643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5644, Ltmp3985-Lfunc_begin0 - .quad Lset5644 -.set Lset5645, Ltmp3986-Lfunc_begin0 - .quad Lset5645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5646, Ltmp4011-Lfunc_begin0 - .quad Lset5646 -.set Lset5647, Ltmp4012-Lfunc_begin0 - .quad Lset5647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5648, Ltmp4046-Lfunc_begin0 - .quad Lset5648 -.set Lset5649, Ltmp4047-Lfunc_begin0 - .quad Lset5649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5650, Ltmp4084-Lfunc_begin0 - .quad Lset5650 -.set Lset5651, Ltmp4085-Lfunc_begin0 - .quad Lset5651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5652, Ltmp4106-Lfunc_begin0 - .quad Lset5652 -.set Lset5653, Ltmp4107-Lfunc_begin0 - .quad Lset5653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5654, Ltmp4146-Lfunc_begin0 - .quad Lset5654 -.set Lset5655, Ltmp4147-Lfunc_begin0 - .quad Lset5655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5656, Ltmp4187-Lfunc_begin0 - .quad Lset5656 -.set Lset5657, Ltmp4188-Lfunc_begin0 - .quad Lset5657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5658, Ltmp4227-Lfunc_begin0 - .quad Lset5658 -.set Lset5659, Ltmp4228-Lfunc_begin0 - .quad Lset5659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5660, Ltmp4268-Lfunc_begin0 - .quad Lset5660 -.set Lset5661, Ltmp4269-Lfunc_begin0 - .quad Lset5661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5662, Ltmp4308-Lfunc_begin0 - .quad Lset5662 -.set Lset5663, Ltmp4309-Lfunc_begin0 - .quad Lset5663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5664, Ltmp4349-Lfunc_begin0 - .quad Lset5664 -.set Lset5665, Ltmp4350-Lfunc_begin0 - .quad Lset5665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5666, Ltmp4380-Lfunc_begin0 - .quad Lset5666 -.set Lset5667, Ltmp4381-Lfunc_begin0 - .quad Lset5667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5668, Ltmp4412-Lfunc_begin0 - .quad Lset5668 -.set Lset5669, Ltmp4414-Lfunc_begin0 - .quad Lset5669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5670, Ltmp4454-Lfunc_begin0 - .quad Lset5670 -.set Lset5671, Ltmp4455-Lfunc_begin0 - .quad Lset5671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5672, Ltmp4495-Lfunc_begin0 - .quad Lset5672 -.set Lset5673, Ltmp4496-Lfunc_begin0 - .quad Lset5673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5674, Ltmp4579-Lfunc_begin0 - .quad Lset5674 -.set Lset5675, Ltmp4581-Lfunc_begin0 - .quad Lset5675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5676, Ltmp4649-Lfunc_begin0 - .quad Lset5676 -.set Lset5677, Ltmp4651-Lfunc_begin0 - .quad Lset5677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5678, Ltmp4717-Lfunc_begin0 - .quad Lset5678 -.set Lset5679, Ltmp4719-Lfunc_begin0 - .quad Lset5679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5680, Ltmp4783-Lfunc_begin0 - .quad Lset5680 -.set Lset5681, Ltmp4784-Lfunc_begin0 - .quad Lset5681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5682, Ltmp4813-Lfunc_begin0 - .quad Lset5682 -.set Lset5683, Ltmp4814-Lfunc_begin0 - .quad Lset5683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5684, Ltmp4843-Lfunc_begin0 - .quad Lset5684 -.set Lset5685, Ltmp4844-Lfunc_begin0 - .quad Lset5685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5686, Ltmp4902-Lfunc_begin0 - .quad Lset5686 -.set Lset5687, Ltmp4903-Lfunc_begin0 - .quad Lset5687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5688, Ltmp4943-Lfunc_begin0 - .quad Lset5688 -.set Lset5689, Ltmp4944-Lfunc_begin0 - .quad Lset5689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5690, Ltmp5000-Lfunc_begin0 - .quad Lset5690 -.set Lset5691, Ltmp5001-Lfunc_begin0 - .quad Lset5691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5692, Ltmp5040-Lfunc_begin0 - .quad Lset5692 -.set Lset5693, Ltmp5041-Lfunc_begin0 - .quad Lset5693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5694, Ltmp5078-Lfunc_begin0 - .quad Lset5694 -.set Lset5695, Ltmp5079-Lfunc_begin0 - .quad Lset5695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5696, Ltmp5114-Lfunc_begin0 - .quad Lset5696 -.set Lset5697, Ltmp5115-Lfunc_begin0 - .quad Lset5697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5698, Ltmp5146-Lfunc_begin0 - .quad Lset5698 -.set Lset5699, Ltmp5147-Lfunc_begin0 - .quad Lset5699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5700, Ltmp5178-Lfunc_begin0 - .quad Lset5700 -.set Lset5701, Ltmp5179-Lfunc_begin0 - .quad Lset5701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5702, Ltmp5210-Lfunc_begin0 - .quad Lset5702 -.set Lset5703, Ltmp5211-Lfunc_begin0 - .quad Lset5703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5704, Ltmp5228-Lfunc_begin0 - .quad Lset5704 -.set Lset5705, Ltmp5229-Lfunc_begin0 - .quad Lset5705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5706, Ltmp5246-Lfunc_begin0 - .quad Lset5706 -.set Lset5707, Ltmp5247-Lfunc_begin0 - .quad Lset5707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5708, Ltmp5271-Lfunc_begin0 - .quad Lset5708 -.set Lset5709, Ltmp5272-Lfunc_begin0 - .quad Lset5709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5710, Ltmp5296-Lfunc_begin0 - .quad Lset5710 -.set Lset5711, Ltmp5297-Lfunc_begin0 - .quad Lset5711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5712, Ltmp5322-Lfunc_begin0 - .quad Lset5712 -.set Lset5713, Ltmp5323-Lfunc_begin0 - .quad Lset5713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5714, Ltmp5347-Lfunc_begin0 - .quad Lset5714 -.set Lset5715, Ltmp5348-Lfunc_begin0 - .quad Lset5715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5716, Ltmp5372-Lfunc_begin0 - .quad Lset5716 -.set Lset5717, Ltmp5373-Lfunc_begin0 - .quad Lset5717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5718, Ltmp5397-Lfunc_begin0 - .quad Lset5718 -.set Lset5719, Ltmp5398-Lfunc_begin0 - .quad Lset5719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5720, Ltmp5422-Lfunc_begin0 - .quad Lset5720 -.set Lset5721, Ltmp5423-Lfunc_begin0 - .quad Lset5721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5722, Ltmp5447-Lfunc_begin0 - .quad Lset5722 -.set Lset5723, Ltmp5448-Lfunc_begin0 - .quad Lset5723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5724, Ltmp5472-Lfunc_begin0 - .quad Lset5724 -.set Lset5725, Ltmp5473-Lfunc_begin0 - .quad Lset5725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5726, Ltmp5498-Lfunc_begin0 - .quad Lset5726 -.set Lset5727, Ltmp5499-Lfunc_begin0 - .quad Lset5727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5728, Ltmp5523-Lfunc_begin0 - .quad Lset5728 -.set Lset5729, Ltmp5524-Lfunc_begin0 - .quad Lset5729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5730, Ltmp5548-Lfunc_begin0 - .quad Lset5730 -.set Lset5731, Ltmp5549-Lfunc_begin0 - .quad Lset5731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5732, Ltmp5573-Lfunc_begin0 - .quad Lset5732 -.set Lset5733, Ltmp5574-Lfunc_begin0 - .quad Lset5733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5734, Ltmp5598-Lfunc_begin0 - .quad Lset5734 -.set Lset5735, Ltmp5599-Lfunc_begin0 - .quad Lset5735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5736, Ltmp5631-Lfunc_begin0 - .quad Lset5736 -.set Lset5737, Ltmp5632-Lfunc_begin0 - .quad Lset5737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5738, Ltmp5662-Lfunc_begin0 - .quad Lset5738 -.set Lset5739, Ltmp5663-Lfunc_begin0 - .quad Lset5739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5740, Ltmp5687-Lfunc_begin0 - .quad Lset5740 -.set Lset5741, Ltmp5688-Lfunc_begin0 - .quad Lset5741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5742, Ltmp5712-Lfunc_begin0 - .quad Lset5742 -.set Lset5743, Ltmp5713-Lfunc_begin0 - .quad Lset5743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5744, Ltmp5737-Lfunc_begin0 - .quad Lset5744 -.set Lset5745, Ltmp5738-Lfunc_begin0 - .quad Lset5745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5746, Ltmp5767-Lfunc_begin0 - .quad Lset5746 -.set Lset5747, Ltmp5768-Lfunc_begin0 - .quad Lset5747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5748, Ltmp5795-Lfunc_begin0 - .quad Lset5748 -.set Lset5749, Ltmp5796-Lfunc_begin0 - .quad Lset5749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5750, Ltmp5814-Lfunc_begin0 - .quad Lset5750 -.set Lset5751, Ltmp5815-Lfunc_begin0 - .quad Lset5751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5752, Ltmp5833-Lfunc_begin0 - .quad Lset5752 -.set Lset5753, Ltmp5834-Lfunc_begin0 - .quad Lset5753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5754, Ltmp5852-Lfunc_begin0 - .quad Lset5754 -.set Lset5755, Ltmp5853-Lfunc_begin0 - .quad Lset5755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5756, Ltmp5871-Lfunc_begin0 - .quad Lset5756 -.set Lset5757, Ltmp5872-Lfunc_begin0 - .quad Lset5757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5758, Ltmp5890-Lfunc_begin0 - .quad Lset5758 -.set Lset5759, Ltmp5891-Lfunc_begin0 - .quad Lset5759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5760, Ltmp5920-Lfunc_begin0 - .quad Lset5760 -.set Lset5761, Ltmp5921-Lfunc_begin0 - .quad Lset5761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc196: -.set Lset5762, Ltmp1186-Lfunc_begin0 - .quad Lset5762 -.set Lset5763, Ltmp1187-Lfunc_begin0 - .quad Lset5763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5764, Ltmp1215-Lfunc_begin0 - .quad Lset5764 -.set Lset5765, Ltmp1216-Lfunc_begin0 - .quad Lset5765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5766, Ltmp1237-Lfunc_begin0 - .quad Lset5766 -.set Lset5767, Ltmp1238-Lfunc_begin0 - .quad Lset5767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5768, Ltmp1260-Lfunc_begin0 - .quad Lset5768 -.set Lset5769, Ltmp1261-Lfunc_begin0 - .quad Lset5769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5770, Ltmp1281-Lfunc_begin0 - .quad Lset5770 -.set Lset5771, Ltmp1282-Lfunc_begin0 - .quad Lset5771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5772, Ltmp1314-Lfunc_begin0 - .quad Lset5772 -.set Lset5773, Ltmp1315-Lfunc_begin0 - .quad Lset5773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5774, Ltmp1338-Lfunc_begin0 - .quad Lset5774 -.set Lset5775, Ltmp1339-Lfunc_begin0 - .quad Lset5775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5776, Ltmp1368-Lfunc_begin0 - .quad Lset5776 -.set Lset5777, Ltmp1369-Lfunc_begin0 - .quad Lset5777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5778, Ltmp1462-Lfunc_begin0 - .quad Lset5778 -.set Lset5779, Ltmp1464-Lfunc_begin0 - .quad Lset5779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5780, Ltmp1557-Lfunc_begin0 - .quad Lset5780 -.set Lset5781, Ltmp1559-Lfunc_begin0 - .quad Lset5781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5782, Ltmp1713-Lfunc_begin0 - .quad Lset5782 -.set Lset5783, Ltmp1715-Lfunc_begin0 - .quad Lset5783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5784, Ltmp1864-Lfunc_begin0 - .quad Lset5784 -.set Lset5785, Ltmp1866-Lfunc_begin0 - .quad Lset5785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5786, Ltmp2004-Lfunc_begin0 - .quad Lset5786 -.set Lset5787, Ltmp2006-Lfunc_begin0 - .quad Lset5787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5788, Ltmp2074-Lfunc_begin0 - .quad Lset5788 -.set Lset5789, Ltmp2076-Lfunc_begin0 - .quad Lset5789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5790, Ltmp2120-Lfunc_begin0 - .quad Lset5790 -.set Lset5791, Ltmp2121-Lfunc_begin0 - .quad Lset5791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5792, Ltmp2193-Lfunc_begin0 - .quad Lset5792 -.set Lset5793, Ltmp2195-Lfunc_begin0 - .quad Lset5793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5794, Ltmp2253-Lfunc_begin0 - .quad Lset5794 -.set Lset5795, Ltmp2255-Lfunc_begin0 - .quad Lset5795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5796, Ltmp2302-Lfunc_begin0 - .quad Lset5796 -.set Lset5797, Ltmp2304-Lfunc_begin0 - .quad Lset5797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5798, Ltmp2351-Lfunc_begin0 - .quad Lset5798 -.set Lset5799, Ltmp2353-Lfunc_begin0 - .quad Lset5799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5800, Ltmp2400-Lfunc_begin0 - .quad Lset5800 -.set Lset5801, Ltmp2402-Lfunc_begin0 - .quad Lset5801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5802, Ltmp2444-Lfunc_begin0 - .quad Lset5802 -.set Lset5803, Ltmp2446-Lfunc_begin0 - .quad Lset5803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5804, Ltmp2499-Lfunc_begin0 - .quad Lset5804 -.set Lset5805, Ltmp2501-Lfunc_begin0 - .quad Lset5805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5806, Ltmp2554-Lfunc_begin0 - .quad Lset5806 -.set Lset5807, Ltmp2556-Lfunc_begin0 - .quad Lset5807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5808, Ltmp2609-Lfunc_begin0 - .quad Lset5808 -.set Lset5809, Ltmp2611-Lfunc_begin0 - .quad Lset5809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5810, Ltmp2673-Lfunc_begin0 - .quad Lset5810 -.set Lset5811, Ltmp2675-Lfunc_begin0 - .quad Lset5811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5812, Ltmp2738-Lfunc_begin0 - .quad Lset5812 -.set Lset5813, Ltmp2740-Lfunc_begin0 - .quad Lset5813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5814, Ltmp2811-Lfunc_begin0 - .quad Lset5814 -.set Lset5815, Ltmp2813-Lfunc_begin0 - .quad Lset5815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5816, Ltmp2871-Lfunc_begin0 - .quad Lset5816 -.set Lset5817, Ltmp2873-Lfunc_begin0 - .quad Lset5817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5818, Ltmp2922-Lfunc_begin0 - .quad Lset5818 -.set Lset5819, Ltmp2924-Lfunc_begin0 - .quad Lset5819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5820, Ltmp2957-Lfunc_begin0 - .quad Lset5820 -.set Lset5821, Ltmp2958-Lfunc_begin0 - .quad Lset5821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5822, Ltmp2997-Lfunc_begin0 - .quad Lset5822 -.set Lset5823, Ltmp2999-Lfunc_begin0 - .quad Lset5823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5824, Ltmp3024-Lfunc_begin0 - .quad Lset5824 -.set Lset5825, Ltmp3025-Lfunc_begin0 - .quad Lset5825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5826, Ltmp3047-Lfunc_begin0 - .quad Lset5826 -.set Lset5827, Ltmp3048-Lfunc_begin0 - .quad Lset5827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5828, Ltmp3096-Lfunc_begin0 - .quad Lset5828 -.set Lset5829, Ltmp3097-Lfunc_begin0 - .quad Lset5829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5830, Ltmp3120-Lfunc_begin0 - .quad Lset5830 -.set Lset5831, Ltmp3122-Lfunc_begin0 - .quad Lset5831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5832, Ltmp3161-Lfunc_begin0 - .quad Lset5832 -.set Lset5833, Ltmp3163-Lfunc_begin0 - .quad Lset5833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5834, Ltmp3227-Lfunc_begin0 - .quad Lset5834 -.set Lset5835, Ltmp3228-Lfunc_begin0 - .quad Lset5835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5836, Ltmp3292-Lfunc_begin0 - .quad Lset5836 -.set Lset5837, Ltmp3293-Lfunc_begin0 - .quad Lset5837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5838, Ltmp3329-Lfunc_begin0 - .quad Lset5838 -.set Lset5839, Ltmp3330-Lfunc_begin0 - .quad Lset5839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5840, Ltmp3375-Lfunc_begin0 - .quad Lset5840 -.set Lset5841, Ltmp3376-Lfunc_begin0 - .quad Lset5841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5842, Ltmp3407-Lfunc_begin0 - .quad Lset5842 -.set Lset5843, Ltmp3408-Lfunc_begin0 - .quad Lset5843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5844, Ltmp3435-Lfunc_begin0 - .quad Lset5844 -.set Lset5845, Ltmp3436-Lfunc_begin0 - .quad Lset5845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5846, Ltmp3537-Lfunc_begin0 - .quad Lset5846 -.set Lset5847, Ltmp3538-Lfunc_begin0 - .quad Lset5847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5848, Ltmp3638-Lfunc_begin0 - .quad Lset5848 -.set Lset5849, Ltmp3640-Lfunc_begin0 - .quad Lset5849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5850, Ltmp3685-Lfunc_begin0 - .quad Lset5850 -.set Lset5851, Ltmp3686-Lfunc_begin0 - .quad Lset5851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5852, Ltmp3807-Lfunc_begin0 - .quad Lset5852 -.set Lset5853, Ltmp3809-Lfunc_begin0 - .quad Lset5853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5854, Ltmp3864-Lfunc_begin0 - .quad Lset5854 -.set Lset5855, Ltmp3865-Lfunc_begin0 - .quad Lset5855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5856, Ltmp3933-Lfunc_begin0 - .quad Lset5856 -.set Lset5857, Ltmp3934-Lfunc_begin0 - .quad Lset5857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5858, Ltmp3959-Lfunc_begin0 - .quad Lset5858 -.set Lset5859, Ltmp3960-Lfunc_begin0 - .quad Lset5859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5860, Ltmp3985-Lfunc_begin0 - .quad Lset5860 -.set Lset5861, Ltmp3986-Lfunc_begin0 - .quad Lset5861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5862, Ltmp4011-Lfunc_begin0 - .quad Lset5862 -.set Lset5863, Ltmp4012-Lfunc_begin0 - .quad Lset5863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5864, Ltmp4046-Lfunc_begin0 - .quad Lset5864 -.set Lset5865, Ltmp4047-Lfunc_begin0 - .quad Lset5865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5866, Ltmp4084-Lfunc_begin0 - .quad Lset5866 -.set Lset5867, Ltmp4085-Lfunc_begin0 - .quad Lset5867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5868, Ltmp4106-Lfunc_begin0 - .quad Lset5868 -.set Lset5869, Ltmp4107-Lfunc_begin0 - .quad Lset5869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5870, Ltmp4146-Lfunc_begin0 - .quad Lset5870 -.set Lset5871, Ltmp4147-Lfunc_begin0 - .quad Lset5871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5872, Ltmp4187-Lfunc_begin0 - .quad Lset5872 -.set Lset5873, Ltmp4188-Lfunc_begin0 - .quad Lset5873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5874, Ltmp4227-Lfunc_begin0 - .quad Lset5874 -.set Lset5875, Ltmp4228-Lfunc_begin0 - .quad Lset5875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5876, Ltmp4268-Lfunc_begin0 - .quad Lset5876 -.set Lset5877, Ltmp4269-Lfunc_begin0 - .quad Lset5877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5878, Ltmp4308-Lfunc_begin0 - .quad Lset5878 -.set Lset5879, Ltmp4309-Lfunc_begin0 - .quad Lset5879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5880, Ltmp4349-Lfunc_begin0 - .quad Lset5880 -.set Lset5881, Ltmp4350-Lfunc_begin0 - .quad Lset5881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5882, Ltmp4380-Lfunc_begin0 - .quad Lset5882 -.set Lset5883, Ltmp4381-Lfunc_begin0 - .quad Lset5883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5884, Ltmp4412-Lfunc_begin0 - .quad Lset5884 -.set Lset5885, Ltmp4414-Lfunc_begin0 - .quad Lset5885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5886, Ltmp4454-Lfunc_begin0 - .quad Lset5886 -.set Lset5887, Ltmp4455-Lfunc_begin0 - .quad Lset5887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5888, Ltmp4495-Lfunc_begin0 - .quad Lset5888 -.set Lset5889, Ltmp4496-Lfunc_begin0 - .quad Lset5889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5890, Ltmp4579-Lfunc_begin0 - .quad Lset5890 -.set Lset5891, Ltmp4581-Lfunc_begin0 - .quad Lset5891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5892, Ltmp4649-Lfunc_begin0 - .quad Lset5892 -.set Lset5893, Ltmp4651-Lfunc_begin0 - .quad Lset5893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5894, Ltmp4717-Lfunc_begin0 - .quad Lset5894 -.set Lset5895, Ltmp4719-Lfunc_begin0 - .quad Lset5895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5896, Ltmp4783-Lfunc_begin0 - .quad Lset5896 -.set Lset5897, Ltmp4784-Lfunc_begin0 - .quad Lset5897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5898, Ltmp4813-Lfunc_begin0 - .quad Lset5898 -.set Lset5899, Ltmp4814-Lfunc_begin0 - .quad Lset5899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5900, Ltmp4843-Lfunc_begin0 - .quad Lset5900 -.set Lset5901, Ltmp4844-Lfunc_begin0 - .quad Lset5901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5902, Ltmp4902-Lfunc_begin0 - .quad Lset5902 -.set Lset5903, Ltmp4903-Lfunc_begin0 - .quad Lset5903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5904, Ltmp4943-Lfunc_begin0 - .quad Lset5904 -.set Lset5905, Ltmp4944-Lfunc_begin0 - .quad Lset5905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5906, Ltmp5000-Lfunc_begin0 - .quad Lset5906 -.set Lset5907, Ltmp5001-Lfunc_begin0 - .quad Lset5907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5908, Ltmp5040-Lfunc_begin0 - .quad Lset5908 -.set Lset5909, Ltmp5041-Lfunc_begin0 - .quad Lset5909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5910, Ltmp5078-Lfunc_begin0 - .quad Lset5910 -.set Lset5911, Ltmp5079-Lfunc_begin0 - .quad Lset5911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5912, Ltmp5114-Lfunc_begin0 - .quad Lset5912 -.set Lset5913, Ltmp5115-Lfunc_begin0 - .quad Lset5913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5914, Ltmp5146-Lfunc_begin0 - .quad Lset5914 -.set Lset5915, Ltmp5147-Lfunc_begin0 - .quad Lset5915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5916, Ltmp5178-Lfunc_begin0 - .quad Lset5916 -.set Lset5917, Ltmp5179-Lfunc_begin0 - .quad Lset5917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5918, Ltmp5210-Lfunc_begin0 - .quad Lset5918 -.set Lset5919, Ltmp5211-Lfunc_begin0 - .quad Lset5919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5920, Ltmp5228-Lfunc_begin0 - .quad Lset5920 -.set Lset5921, Ltmp5229-Lfunc_begin0 - .quad Lset5921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5922, Ltmp5246-Lfunc_begin0 - .quad Lset5922 -.set Lset5923, Ltmp5247-Lfunc_begin0 - .quad Lset5923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5924, Ltmp5271-Lfunc_begin0 - .quad Lset5924 -.set Lset5925, Ltmp5272-Lfunc_begin0 - .quad Lset5925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5926, Ltmp5296-Lfunc_begin0 - .quad Lset5926 -.set Lset5927, Ltmp5297-Lfunc_begin0 - .quad Lset5927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5928, Ltmp5322-Lfunc_begin0 - .quad Lset5928 -.set Lset5929, Ltmp5323-Lfunc_begin0 - .quad Lset5929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5930, Ltmp5347-Lfunc_begin0 - .quad Lset5930 -.set Lset5931, Ltmp5348-Lfunc_begin0 - .quad Lset5931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5932, Ltmp5372-Lfunc_begin0 - .quad Lset5932 -.set Lset5933, Ltmp5373-Lfunc_begin0 - .quad Lset5933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5934, Ltmp5397-Lfunc_begin0 - .quad Lset5934 -.set Lset5935, Ltmp5398-Lfunc_begin0 - .quad Lset5935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5936, Ltmp5422-Lfunc_begin0 - .quad Lset5936 -.set Lset5937, Ltmp5423-Lfunc_begin0 - .quad Lset5937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5938, Ltmp5447-Lfunc_begin0 - .quad Lset5938 -.set Lset5939, Ltmp5448-Lfunc_begin0 - .quad Lset5939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5940, Ltmp5472-Lfunc_begin0 - .quad Lset5940 -.set Lset5941, Ltmp5473-Lfunc_begin0 - .quad Lset5941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5942, Ltmp5498-Lfunc_begin0 - .quad Lset5942 -.set Lset5943, Ltmp5499-Lfunc_begin0 - .quad Lset5943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5944, Ltmp5523-Lfunc_begin0 - .quad Lset5944 -.set Lset5945, Ltmp5524-Lfunc_begin0 - .quad Lset5945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5946, Ltmp5548-Lfunc_begin0 - .quad Lset5946 -.set Lset5947, Ltmp5549-Lfunc_begin0 - .quad Lset5947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5948, Ltmp5573-Lfunc_begin0 - .quad Lset5948 -.set Lset5949, Ltmp5574-Lfunc_begin0 - .quad Lset5949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5950, Ltmp5598-Lfunc_begin0 - .quad Lset5950 -.set Lset5951, Ltmp5599-Lfunc_begin0 - .quad Lset5951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5952, Ltmp5631-Lfunc_begin0 - .quad Lset5952 -.set Lset5953, Ltmp5632-Lfunc_begin0 - .quad Lset5953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5954, Ltmp5662-Lfunc_begin0 - .quad Lset5954 -.set Lset5955, Ltmp5663-Lfunc_begin0 - .quad Lset5955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5956, Ltmp5687-Lfunc_begin0 - .quad Lset5956 -.set Lset5957, Ltmp5688-Lfunc_begin0 - .quad Lset5957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5958, Ltmp5712-Lfunc_begin0 - .quad Lset5958 -.set Lset5959, Ltmp5713-Lfunc_begin0 - .quad Lset5959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5960, Ltmp5737-Lfunc_begin0 - .quad Lset5960 -.set Lset5961, Ltmp5738-Lfunc_begin0 - .quad Lset5961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5962, Ltmp5767-Lfunc_begin0 - .quad Lset5962 -.set Lset5963, Ltmp5768-Lfunc_begin0 - .quad Lset5963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5964, Ltmp5795-Lfunc_begin0 - .quad Lset5964 -.set Lset5965, Ltmp5796-Lfunc_begin0 - .quad Lset5965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5966, Ltmp5814-Lfunc_begin0 - .quad Lset5966 -.set Lset5967, Ltmp5815-Lfunc_begin0 - .quad Lset5967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5968, Ltmp5833-Lfunc_begin0 - .quad Lset5968 -.set Lset5969, Ltmp5834-Lfunc_begin0 - .quad Lset5969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5970, Ltmp5852-Lfunc_begin0 - .quad Lset5970 -.set Lset5971, Ltmp5853-Lfunc_begin0 - .quad Lset5971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5972, Ltmp5871-Lfunc_begin0 - .quad Lset5972 -.set Lset5973, Ltmp5872-Lfunc_begin0 - .quad Lset5973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5974, Ltmp5890-Lfunc_begin0 - .quad Lset5974 -.set Lset5975, Ltmp5891-Lfunc_begin0 - .quad Lset5975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5976, Ltmp5920-Lfunc_begin0 - .quad Lset5976 -.set Lset5977, Ltmp5921-Lfunc_begin0 - .quad Lset5977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc197: -.set Lset5978, Ltmp1186-Lfunc_begin0 - .quad Lset5978 -.set Lset5979, Ltmp1187-Lfunc_begin0 - .quad Lset5979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5980, Ltmp1215-Lfunc_begin0 - .quad Lset5980 -.set Lset5981, Ltmp1216-Lfunc_begin0 - .quad Lset5981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5982, Ltmp1237-Lfunc_begin0 - .quad Lset5982 -.set Lset5983, Ltmp1238-Lfunc_begin0 - .quad Lset5983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5984, Ltmp1260-Lfunc_begin0 - .quad Lset5984 -.set Lset5985, Ltmp1261-Lfunc_begin0 - .quad Lset5985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5986, Ltmp1281-Lfunc_begin0 - .quad Lset5986 -.set Lset5987, Ltmp1282-Lfunc_begin0 - .quad Lset5987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5988, Ltmp1314-Lfunc_begin0 - .quad Lset5988 -.set Lset5989, Ltmp1315-Lfunc_begin0 - .quad Lset5989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5990, Ltmp1338-Lfunc_begin0 - .quad Lset5990 -.set Lset5991, Ltmp1339-Lfunc_begin0 - .quad Lset5991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5992, Ltmp1368-Lfunc_begin0 - .quad Lset5992 -.set Lset5993, Ltmp1369-Lfunc_begin0 - .quad Lset5993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5994, Ltmp1462-Lfunc_begin0 - .quad Lset5994 -.set Lset5995, Ltmp1464-Lfunc_begin0 - .quad Lset5995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5996, Ltmp1557-Lfunc_begin0 - .quad Lset5996 -.set Lset5997, Ltmp1559-Lfunc_begin0 - .quad Lset5997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset5998, Ltmp1713-Lfunc_begin0 - .quad Lset5998 -.set Lset5999, Ltmp1715-Lfunc_begin0 - .quad Lset5999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6000, Ltmp1864-Lfunc_begin0 - .quad Lset6000 -.set Lset6001, Ltmp1866-Lfunc_begin0 - .quad Lset6001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6002, Ltmp2004-Lfunc_begin0 - .quad Lset6002 -.set Lset6003, Ltmp2006-Lfunc_begin0 - .quad Lset6003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6004, Ltmp2074-Lfunc_begin0 - .quad Lset6004 -.set Lset6005, Ltmp2076-Lfunc_begin0 - .quad Lset6005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6006, Ltmp2120-Lfunc_begin0 - .quad Lset6006 -.set Lset6007, Ltmp2121-Lfunc_begin0 - .quad Lset6007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6008, Ltmp2193-Lfunc_begin0 - .quad Lset6008 -.set Lset6009, Ltmp2195-Lfunc_begin0 - .quad Lset6009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6010, Ltmp2253-Lfunc_begin0 - .quad Lset6010 -.set Lset6011, Ltmp2255-Lfunc_begin0 - .quad Lset6011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6012, Ltmp2302-Lfunc_begin0 - .quad Lset6012 -.set Lset6013, Ltmp2304-Lfunc_begin0 - .quad Lset6013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6014, Ltmp2351-Lfunc_begin0 - .quad Lset6014 -.set Lset6015, Ltmp2353-Lfunc_begin0 - .quad Lset6015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6016, Ltmp2400-Lfunc_begin0 - .quad Lset6016 -.set Lset6017, Ltmp2402-Lfunc_begin0 - .quad Lset6017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6018, Ltmp2444-Lfunc_begin0 - .quad Lset6018 -.set Lset6019, Ltmp2446-Lfunc_begin0 - .quad Lset6019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6020, Ltmp2499-Lfunc_begin0 - .quad Lset6020 -.set Lset6021, Ltmp2501-Lfunc_begin0 - .quad Lset6021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6022, Ltmp2554-Lfunc_begin0 - .quad Lset6022 -.set Lset6023, Ltmp2556-Lfunc_begin0 - .quad Lset6023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6024, Ltmp2609-Lfunc_begin0 - .quad Lset6024 -.set Lset6025, Ltmp2611-Lfunc_begin0 - .quad Lset6025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6026, Ltmp2673-Lfunc_begin0 - .quad Lset6026 -.set Lset6027, Ltmp2675-Lfunc_begin0 - .quad Lset6027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6028, Ltmp2738-Lfunc_begin0 - .quad Lset6028 -.set Lset6029, Ltmp2740-Lfunc_begin0 - .quad Lset6029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6030, Ltmp2811-Lfunc_begin0 - .quad Lset6030 -.set Lset6031, Ltmp2813-Lfunc_begin0 - .quad Lset6031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6032, Ltmp2871-Lfunc_begin0 - .quad Lset6032 -.set Lset6033, Ltmp2873-Lfunc_begin0 - .quad Lset6033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6034, Ltmp2922-Lfunc_begin0 - .quad Lset6034 -.set Lset6035, Ltmp2924-Lfunc_begin0 - .quad Lset6035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6036, Ltmp2957-Lfunc_begin0 - .quad Lset6036 -.set Lset6037, Ltmp2958-Lfunc_begin0 - .quad Lset6037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6038, Ltmp2997-Lfunc_begin0 - .quad Lset6038 -.set Lset6039, Ltmp2999-Lfunc_begin0 - .quad Lset6039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6040, Ltmp3024-Lfunc_begin0 - .quad Lset6040 -.set Lset6041, Ltmp3025-Lfunc_begin0 - .quad Lset6041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6042, Ltmp3047-Lfunc_begin0 - .quad Lset6042 -.set Lset6043, Ltmp3048-Lfunc_begin0 - .quad Lset6043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6044, Ltmp3096-Lfunc_begin0 - .quad Lset6044 -.set Lset6045, Ltmp3097-Lfunc_begin0 - .quad Lset6045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6046, Ltmp3120-Lfunc_begin0 - .quad Lset6046 -.set Lset6047, Ltmp3122-Lfunc_begin0 - .quad Lset6047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6048, Ltmp3161-Lfunc_begin0 - .quad Lset6048 -.set Lset6049, Ltmp3163-Lfunc_begin0 - .quad Lset6049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6050, Ltmp3227-Lfunc_begin0 - .quad Lset6050 -.set Lset6051, Ltmp3228-Lfunc_begin0 - .quad Lset6051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6052, Ltmp3292-Lfunc_begin0 - .quad Lset6052 -.set Lset6053, Ltmp3293-Lfunc_begin0 - .quad Lset6053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6054, Ltmp3329-Lfunc_begin0 - .quad Lset6054 -.set Lset6055, Ltmp3330-Lfunc_begin0 - .quad Lset6055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6056, Ltmp3375-Lfunc_begin0 - .quad Lset6056 -.set Lset6057, Ltmp3376-Lfunc_begin0 - .quad Lset6057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6058, Ltmp3407-Lfunc_begin0 - .quad Lset6058 -.set Lset6059, Ltmp3408-Lfunc_begin0 - .quad Lset6059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6060, Ltmp3435-Lfunc_begin0 - .quad Lset6060 -.set Lset6061, Ltmp3436-Lfunc_begin0 - .quad Lset6061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6062, Ltmp3537-Lfunc_begin0 - .quad Lset6062 -.set Lset6063, Ltmp3538-Lfunc_begin0 - .quad Lset6063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6064, Ltmp3638-Lfunc_begin0 - .quad Lset6064 -.set Lset6065, Ltmp3640-Lfunc_begin0 - .quad Lset6065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6066, Ltmp3685-Lfunc_begin0 - .quad Lset6066 -.set Lset6067, Ltmp3686-Lfunc_begin0 - .quad Lset6067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6068, Ltmp3807-Lfunc_begin0 - .quad Lset6068 -.set Lset6069, Ltmp3809-Lfunc_begin0 - .quad Lset6069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6070, Ltmp3864-Lfunc_begin0 - .quad Lset6070 -.set Lset6071, Ltmp3865-Lfunc_begin0 - .quad Lset6071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6072, Ltmp3933-Lfunc_begin0 - .quad Lset6072 -.set Lset6073, Ltmp3934-Lfunc_begin0 - .quad Lset6073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6074, Ltmp3959-Lfunc_begin0 - .quad Lset6074 -.set Lset6075, Ltmp3960-Lfunc_begin0 - .quad Lset6075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6076, Ltmp3985-Lfunc_begin0 - .quad Lset6076 -.set Lset6077, Ltmp3986-Lfunc_begin0 - .quad Lset6077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6078, Ltmp4011-Lfunc_begin0 - .quad Lset6078 -.set Lset6079, Ltmp4012-Lfunc_begin0 - .quad Lset6079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6080, Ltmp4046-Lfunc_begin0 - .quad Lset6080 -.set Lset6081, Ltmp4047-Lfunc_begin0 - .quad Lset6081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6082, Ltmp4084-Lfunc_begin0 - .quad Lset6082 -.set Lset6083, Ltmp4085-Lfunc_begin0 - .quad Lset6083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6084, Ltmp4106-Lfunc_begin0 - .quad Lset6084 -.set Lset6085, Ltmp4107-Lfunc_begin0 - .quad Lset6085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6086, Ltmp4146-Lfunc_begin0 - .quad Lset6086 -.set Lset6087, Ltmp4147-Lfunc_begin0 - .quad Lset6087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6088, Ltmp4187-Lfunc_begin0 - .quad Lset6088 -.set Lset6089, Ltmp4188-Lfunc_begin0 - .quad Lset6089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6090, Ltmp4227-Lfunc_begin0 - .quad Lset6090 -.set Lset6091, Ltmp4228-Lfunc_begin0 - .quad Lset6091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6092, Ltmp4268-Lfunc_begin0 - .quad Lset6092 -.set Lset6093, Ltmp4269-Lfunc_begin0 - .quad Lset6093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6094, Ltmp4308-Lfunc_begin0 - .quad Lset6094 -.set Lset6095, Ltmp4309-Lfunc_begin0 - .quad Lset6095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6096, Ltmp4349-Lfunc_begin0 - .quad Lset6096 -.set Lset6097, Ltmp4350-Lfunc_begin0 - .quad Lset6097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6098, Ltmp4380-Lfunc_begin0 - .quad Lset6098 -.set Lset6099, Ltmp4381-Lfunc_begin0 - .quad Lset6099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6100, Ltmp4412-Lfunc_begin0 - .quad Lset6100 -.set Lset6101, Ltmp4414-Lfunc_begin0 - .quad Lset6101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6102, Ltmp4454-Lfunc_begin0 - .quad Lset6102 -.set Lset6103, Ltmp4455-Lfunc_begin0 - .quad Lset6103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6104, Ltmp4495-Lfunc_begin0 - .quad Lset6104 -.set Lset6105, Ltmp4496-Lfunc_begin0 - .quad Lset6105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6106, Ltmp4579-Lfunc_begin0 - .quad Lset6106 -.set Lset6107, Ltmp4581-Lfunc_begin0 - .quad Lset6107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6108, Ltmp4649-Lfunc_begin0 - .quad Lset6108 -.set Lset6109, Ltmp4651-Lfunc_begin0 - .quad Lset6109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6110, Ltmp4717-Lfunc_begin0 - .quad Lset6110 -.set Lset6111, Ltmp4719-Lfunc_begin0 - .quad Lset6111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6112, Ltmp4783-Lfunc_begin0 - .quad Lset6112 -.set Lset6113, Ltmp4784-Lfunc_begin0 - .quad Lset6113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6114, Ltmp4813-Lfunc_begin0 - .quad Lset6114 -.set Lset6115, Ltmp4814-Lfunc_begin0 - .quad Lset6115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6116, Ltmp4843-Lfunc_begin0 - .quad Lset6116 -.set Lset6117, Ltmp4844-Lfunc_begin0 - .quad Lset6117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6118, Ltmp4902-Lfunc_begin0 - .quad Lset6118 -.set Lset6119, Ltmp4903-Lfunc_begin0 - .quad Lset6119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6120, Ltmp4943-Lfunc_begin0 - .quad Lset6120 -.set Lset6121, Ltmp4944-Lfunc_begin0 - .quad Lset6121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6122, Ltmp5000-Lfunc_begin0 - .quad Lset6122 -.set Lset6123, Ltmp5001-Lfunc_begin0 - .quad Lset6123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6124, Ltmp5040-Lfunc_begin0 - .quad Lset6124 -.set Lset6125, Ltmp5041-Lfunc_begin0 - .quad Lset6125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6126, Ltmp5078-Lfunc_begin0 - .quad Lset6126 -.set Lset6127, Ltmp5079-Lfunc_begin0 - .quad Lset6127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6128, Ltmp5114-Lfunc_begin0 - .quad Lset6128 -.set Lset6129, Ltmp5115-Lfunc_begin0 - .quad Lset6129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6130, Ltmp5146-Lfunc_begin0 - .quad Lset6130 -.set Lset6131, Ltmp5147-Lfunc_begin0 - .quad Lset6131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6132, Ltmp5178-Lfunc_begin0 - .quad Lset6132 -.set Lset6133, Ltmp5179-Lfunc_begin0 - .quad Lset6133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6134, Ltmp5210-Lfunc_begin0 - .quad Lset6134 -.set Lset6135, Ltmp5211-Lfunc_begin0 - .quad Lset6135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6136, Ltmp5228-Lfunc_begin0 - .quad Lset6136 -.set Lset6137, Ltmp5229-Lfunc_begin0 - .quad Lset6137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6138, Ltmp5246-Lfunc_begin0 - .quad Lset6138 -.set Lset6139, Ltmp5247-Lfunc_begin0 - .quad Lset6139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6140, Ltmp5271-Lfunc_begin0 - .quad Lset6140 -.set Lset6141, Ltmp5272-Lfunc_begin0 - .quad Lset6141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6142, Ltmp5296-Lfunc_begin0 - .quad Lset6142 -.set Lset6143, Ltmp5297-Lfunc_begin0 - .quad Lset6143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6144, Ltmp5322-Lfunc_begin0 - .quad Lset6144 -.set Lset6145, Ltmp5323-Lfunc_begin0 - .quad Lset6145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6146, Ltmp5347-Lfunc_begin0 - .quad Lset6146 -.set Lset6147, Ltmp5348-Lfunc_begin0 - .quad Lset6147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6148, Ltmp5372-Lfunc_begin0 - .quad Lset6148 -.set Lset6149, Ltmp5373-Lfunc_begin0 - .quad Lset6149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6150, Ltmp5397-Lfunc_begin0 - .quad Lset6150 -.set Lset6151, Ltmp5398-Lfunc_begin0 - .quad Lset6151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6152, Ltmp5422-Lfunc_begin0 - .quad Lset6152 -.set Lset6153, Ltmp5423-Lfunc_begin0 - .quad Lset6153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6154, Ltmp5447-Lfunc_begin0 - .quad Lset6154 -.set Lset6155, Ltmp5448-Lfunc_begin0 - .quad Lset6155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6156, Ltmp5472-Lfunc_begin0 - .quad Lset6156 -.set Lset6157, Ltmp5473-Lfunc_begin0 - .quad Lset6157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6158, Ltmp5498-Lfunc_begin0 - .quad Lset6158 -.set Lset6159, Ltmp5499-Lfunc_begin0 - .quad Lset6159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6160, Ltmp5523-Lfunc_begin0 - .quad Lset6160 -.set Lset6161, Ltmp5524-Lfunc_begin0 - .quad Lset6161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6162, Ltmp5548-Lfunc_begin0 - .quad Lset6162 -.set Lset6163, Ltmp5549-Lfunc_begin0 - .quad Lset6163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6164, Ltmp5573-Lfunc_begin0 - .quad Lset6164 -.set Lset6165, Ltmp5574-Lfunc_begin0 - .quad Lset6165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6166, Ltmp5598-Lfunc_begin0 - .quad Lset6166 -.set Lset6167, Ltmp5599-Lfunc_begin0 - .quad Lset6167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6168, Ltmp5631-Lfunc_begin0 - .quad Lset6168 -.set Lset6169, Ltmp5632-Lfunc_begin0 - .quad Lset6169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6170, Ltmp5662-Lfunc_begin0 - .quad Lset6170 -.set Lset6171, Ltmp5663-Lfunc_begin0 - .quad Lset6171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6172, Ltmp5687-Lfunc_begin0 - .quad Lset6172 -.set Lset6173, Ltmp5688-Lfunc_begin0 - .quad Lset6173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6174, Ltmp5712-Lfunc_begin0 - .quad Lset6174 -.set Lset6175, Ltmp5713-Lfunc_begin0 - .quad Lset6175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6176, Ltmp5737-Lfunc_begin0 - .quad Lset6176 -.set Lset6177, Ltmp5738-Lfunc_begin0 - .quad Lset6177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6178, Ltmp5767-Lfunc_begin0 - .quad Lset6178 -.set Lset6179, Ltmp5768-Lfunc_begin0 - .quad Lset6179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6180, Ltmp5795-Lfunc_begin0 - .quad Lset6180 -.set Lset6181, Ltmp5796-Lfunc_begin0 - .quad Lset6181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6182, Ltmp5814-Lfunc_begin0 - .quad Lset6182 -.set Lset6183, Ltmp5815-Lfunc_begin0 - .quad Lset6183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6184, Ltmp5833-Lfunc_begin0 - .quad Lset6184 -.set Lset6185, Ltmp5834-Lfunc_begin0 - .quad Lset6185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6186, Ltmp5852-Lfunc_begin0 - .quad Lset6186 -.set Lset6187, Ltmp5853-Lfunc_begin0 - .quad Lset6187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6188, Ltmp5871-Lfunc_begin0 - .quad Lset6188 -.set Lset6189, Ltmp5872-Lfunc_begin0 - .quad Lset6189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6190, Ltmp5890-Lfunc_begin0 - .quad Lset6190 -.set Lset6191, Ltmp5891-Lfunc_begin0 - .quad Lset6191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6192, Ltmp5920-Lfunc_begin0 - .quad Lset6192 -.set Lset6193, Ltmp5921-Lfunc_begin0 - .quad Lset6193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc198: -.set Lset6194, Ltmp1186-Lfunc_begin0 - .quad Lset6194 -.set Lset6195, Ltmp1187-Lfunc_begin0 - .quad Lset6195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6196, Ltmp1215-Lfunc_begin0 - .quad Lset6196 -.set Lset6197, Ltmp1216-Lfunc_begin0 - .quad Lset6197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6198, Ltmp1237-Lfunc_begin0 - .quad Lset6198 -.set Lset6199, Ltmp1238-Lfunc_begin0 - .quad Lset6199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6200, Ltmp1260-Lfunc_begin0 - .quad Lset6200 -.set Lset6201, Ltmp1261-Lfunc_begin0 - .quad Lset6201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6202, Ltmp1281-Lfunc_begin0 - .quad Lset6202 -.set Lset6203, Ltmp1282-Lfunc_begin0 - .quad Lset6203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6204, Ltmp1314-Lfunc_begin0 - .quad Lset6204 -.set Lset6205, Ltmp1315-Lfunc_begin0 - .quad Lset6205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6206, Ltmp1338-Lfunc_begin0 - .quad Lset6206 -.set Lset6207, Ltmp1339-Lfunc_begin0 - .quad Lset6207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6208, Ltmp1368-Lfunc_begin0 - .quad Lset6208 -.set Lset6209, Ltmp1369-Lfunc_begin0 - .quad Lset6209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6210, Ltmp1462-Lfunc_begin0 - .quad Lset6210 -.set Lset6211, Ltmp1464-Lfunc_begin0 - .quad Lset6211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6212, Ltmp1557-Lfunc_begin0 - .quad Lset6212 -.set Lset6213, Ltmp1559-Lfunc_begin0 - .quad Lset6213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6214, Ltmp1713-Lfunc_begin0 - .quad Lset6214 -.set Lset6215, Ltmp1715-Lfunc_begin0 - .quad Lset6215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6216, Ltmp1864-Lfunc_begin0 - .quad Lset6216 -.set Lset6217, Ltmp1866-Lfunc_begin0 - .quad Lset6217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6218, Ltmp2004-Lfunc_begin0 - .quad Lset6218 -.set Lset6219, Ltmp2006-Lfunc_begin0 - .quad Lset6219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6220, Ltmp2074-Lfunc_begin0 - .quad Lset6220 -.set Lset6221, Ltmp2076-Lfunc_begin0 - .quad Lset6221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6222, Ltmp2120-Lfunc_begin0 - .quad Lset6222 -.set Lset6223, Ltmp2121-Lfunc_begin0 - .quad Lset6223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6224, Ltmp2193-Lfunc_begin0 - .quad Lset6224 -.set Lset6225, Ltmp2195-Lfunc_begin0 - .quad Lset6225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6226, Ltmp2253-Lfunc_begin0 - .quad Lset6226 -.set Lset6227, Ltmp2255-Lfunc_begin0 - .quad Lset6227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6228, Ltmp2302-Lfunc_begin0 - .quad Lset6228 -.set Lset6229, Ltmp2304-Lfunc_begin0 - .quad Lset6229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6230, Ltmp2351-Lfunc_begin0 - .quad Lset6230 -.set Lset6231, Ltmp2353-Lfunc_begin0 - .quad Lset6231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6232, Ltmp2400-Lfunc_begin0 - .quad Lset6232 -.set Lset6233, Ltmp2402-Lfunc_begin0 - .quad Lset6233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6234, Ltmp2444-Lfunc_begin0 - .quad Lset6234 -.set Lset6235, Ltmp2446-Lfunc_begin0 - .quad Lset6235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6236, Ltmp2499-Lfunc_begin0 - .quad Lset6236 -.set Lset6237, Ltmp2501-Lfunc_begin0 - .quad Lset6237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6238, Ltmp2554-Lfunc_begin0 - .quad Lset6238 -.set Lset6239, Ltmp2556-Lfunc_begin0 - .quad Lset6239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6240, Ltmp2609-Lfunc_begin0 - .quad Lset6240 -.set Lset6241, Ltmp2611-Lfunc_begin0 - .quad Lset6241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6242, Ltmp2673-Lfunc_begin0 - .quad Lset6242 -.set Lset6243, Ltmp2675-Lfunc_begin0 - .quad Lset6243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6244, Ltmp2738-Lfunc_begin0 - .quad Lset6244 -.set Lset6245, Ltmp2740-Lfunc_begin0 - .quad Lset6245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6246, Ltmp2811-Lfunc_begin0 - .quad Lset6246 -.set Lset6247, Ltmp2813-Lfunc_begin0 - .quad Lset6247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6248, Ltmp2871-Lfunc_begin0 - .quad Lset6248 -.set Lset6249, Ltmp2873-Lfunc_begin0 - .quad Lset6249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6250, Ltmp2922-Lfunc_begin0 - .quad Lset6250 -.set Lset6251, Ltmp2924-Lfunc_begin0 - .quad Lset6251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6252, Ltmp2957-Lfunc_begin0 - .quad Lset6252 -.set Lset6253, Ltmp2958-Lfunc_begin0 - .quad Lset6253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6254, Ltmp2997-Lfunc_begin0 - .quad Lset6254 -.set Lset6255, Ltmp2999-Lfunc_begin0 - .quad Lset6255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6256, Ltmp3024-Lfunc_begin0 - .quad Lset6256 -.set Lset6257, Ltmp3025-Lfunc_begin0 - .quad Lset6257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6258, Ltmp3047-Lfunc_begin0 - .quad Lset6258 -.set Lset6259, Ltmp3048-Lfunc_begin0 - .quad Lset6259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6260, Ltmp3096-Lfunc_begin0 - .quad Lset6260 -.set Lset6261, Ltmp3097-Lfunc_begin0 - .quad Lset6261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6262, Ltmp3120-Lfunc_begin0 - .quad Lset6262 -.set Lset6263, Ltmp3122-Lfunc_begin0 - .quad Lset6263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6264, Ltmp3161-Lfunc_begin0 - .quad Lset6264 -.set Lset6265, Ltmp3163-Lfunc_begin0 - .quad Lset6265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6266, Ltmp3227-Lfunc_begin0 - .quad Lset6266 -.set Lset6267, Ltmp3228-Lfunc_begin0 - .quad Lset6267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6268, Ltmp3292-Lfunc_begin0 - .quad Lset6268 -.set Lset6269, Ltmp3293-Lfunc_begin0 - .quad Lset6269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6270, Ltmp3329-Lfunc_begin0 - .quad Lset6270 -.set Lset6271, Ltmp3330-Lfunc_begin0 - .quad Lset6271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6272, Ltmp3375-Lfunc_begin0 - .quad Lset6272 -.set Lset6273, Ltmp3376-Lfunc_begin0 - .quad Lset6273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6274, Ltmp3407-Lfunc_begin0 - .quad Lset6274 -.set Lset6275, Ltmp3408-Lfunc_begin0 - .quad Lset6275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6276, Ltmp3435-Lfunc_begin0 - .quad Lset6276 -.set Lset6277, Ltmp3436-Lfunc_begin0 - .quad Lset6277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6278, Ltmp3537-Lfunc_begin0 - .quad Lset6278 -.set Lset6279, Ltmp3538-Lfunc_begin0 - .quad Lset6279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6280, Ltmp3638-Lfunc_begin0 - .quad Lset6280 -.set Lset6281, Ltmp3640-Lfunc_begin0 - .quad Lset6281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6282, Ltmp3685-Lfunc_begin0 - .quad Lset6282 -.set Lset6283, Ltmp3686-Lfunc_begin0 - .quad Lset6283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6284, Ltmp3807-Lfunc_begin0 - .quad Lset6284 -.set Lset6285, Ltmp3809-Lfunc_begin0 - .quad Lset6285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6286, Ltmp3864-Lfunc_begin0 - .quad Lset6286 -.set Lset6287, Ltmp3865-Lfunc_begin0 - .quad Lset6287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6288, Ltmp3933-Lfunc_begin0 - .quad Lset6288 -.set Lset6289, Ltmp3934-Lfunc_begin0 - .quad Lset6289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6290, Ltmp3959-Lfunc_begin0 - .quad Lset6290 -.set Lset6291, Ltmp3960-Lfunc_begin0 - .quad Lset6291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6292, Ltmp3985-Lfunc_begin0 - .quad Lset6292 -.set Lset6293, Ltmp3986-Lfunc_begin0 - .quad Lset6293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6294, Ltmp4011-Lfunc_begin0 - .quad Lset6294 -.set Lset6295, Ltmp4012-Lfunc_begin0 - .quad Lset6295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6296, Ltmp4046-Lfunc_begin0 - .quad Lset6296 -.set Lset6297, Ltmp4047-Lfunc_begin0 - .quad Lset6297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6298, Ltmp4084-Lfunc_begin0 - .quad Lset6298 -.set Lset6299, Ltmp4085-Lfunc_begin0 - .quad Lset6299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6300, Ltmp4106-Lfunc_begin0 - .quad Lset6300 -.set Lset6301, Ltmp4107-Lfunc_begin0 - .quad Lset6301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6302, Ltmp4146-Lfunc_begin0 - .quad Lset6302 -.set Lset6303, Ltmp4147-Lfunc_begin0 - .quad Lset6303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6304, Ltmp4187-Lfunc_begin0 - .quad Lset6304 -.set Lset6305, Ltmp4188-Lfunc_begin0 - .quad Lset6305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6306, Ltmp4227-Lfunc_begin0 - .quad Lset6306 -.set Lset6307, Ltmp4228-Lfunc_begin0 - .quad Lset6307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6308, Ltmp4268-Lfunc_begin0 - .quad Lset6308 -.set Lset6309, Ltmp4269-Lfunc_begin0 - .quad Lset6309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6310, Ltmp4308-Lfunc_begin0 - .quad Lset6310 -.set Lset6311, Ltmp4309-Lfunc_begin0 - .quad Lset6311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6312, Ltmp4349-Lfunc_begin0 - .quad Lset6312 -.set Lset6313, Ltmp4350-Lfunc_begin0 - .quad Lset6313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6314, Ltmp4380-Lfunc_begin0 - .quad Lset6314 -.set Lset6315, Ltmp4381-Lfunc_begin0 - .quad Lset6315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6316, Ltmp4412-Lfunc_begin0 - .quad Lset6316 -.set Lset6317, Ltmp4414-Lfunc_begin0 - .quad Lset6317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6318, Ltmp4454-Lfunc_begin0 - .quad Lset6318 -.set Lset6319, Ltmp4455-Lfunc_begin0 - .quad Lset6319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6320, Ltmp4495-Lfunc_begin0 - .quad Lset6320 -.set Lset6321, Ltmp4496-Lfunc_begin0 - .quad Lset6321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6322, Ltmp4579-Lfunc_begin0 - .quad Lset6322 -.set Lset6323, Ltmp4581-Lfunc_begin0 - .quad Lset6323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6324, Ltmp4649-Lfunc_begin0 - .quad Lset6324 -.set Lset6325, Ltmp4651-Lfunc_begin0 - .quad Lset6325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6326, Ltmp4717-Lfunc_begin0 - .quad Lset6326 -.set Lset6327, Ltmp4719-Lfunc_begin0 - .quad Lset6327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6328, Ltmp4783-Lfunc_begin0 - .quad Lset6328 -.set Lset6329, Ltmp4784-Lfunc_begin0 - .quad Lset6329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6330, Ltmp4813-Lfunc_begin0 - .quad Lset6330 -.set Lset6331, Ltmp4814-Lfunc_begin0 - .quad Lset6331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6332, Ltmp4843-Lfunc_begin0 - .quad Lset6332 -.set Lset6333, Ltmp4844-Lfunc_begin0 - .quad Lset6333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6334, Ltmp4902-Lfunc_begin0 - .quad Lset6334 -.set Lset6335, Ltmp4903-Lfunc_begin0 - .quad Lset6335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6336, Ltmp4943-Lfunc_begin0 - .quad Lset6336 -.set Lset6337, Ltmp4944-Lfunc_begin0 - .quad Lset6337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6338, Ltmp5000-Lfunc_begin0 - .quad Lset6338 -.set Lset6339, Ltmp5001-Lfunc_begin0 - .quad Lset6339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6340, Ltmp5040-Lfunc_begin0 - .quad Lset6340 -.set Lset6341, Ltmp5041-Lfunc_begin0 - .quad Lset6341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6342, Ltmp5078-Lfunc_begin0 - .quad Lset6342 -.set Lset6343, Ltmp5079-Lfunc_begin0 - .quad Lset6343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6344, Ltmp5114-Lfunc_begin0 - .quad Lset6344 -.set Lset6345, Ltmp5115-Lfunc_begin0 - .quad Lset6345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6346, Ltmp5146-Lfunc_begin0 - .quad Lset6346 -.set Lset6347, Ltmp5147-Lfunc_begin0 - .quad Lset6347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6348, Ltmp5178-Lfunc_begin0 - .quad Lset6348 -.set Lset6349, Ltmp5179-Lfunc_begin0 - .quad Lset6349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6350, Ltmp5210-Lfunc_begin0 - .quad Lset6350 -.set Lset6351, Ltmp5211-Lfunc_begin0 - .quad Lset6351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6352, Ltmp5228-Lfunc_begin0 - .quad Lset6352 -.set Lset6353, Ltmp5229-Lfunc_begin0 - .quad Lset6353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6354, Ltmp5246-Lfunc_begin0 - .quad Lset6354 -.set Lset6355, Ltmp5247-Lfunc_begin0 - .quad Lset6355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6356, Ltmp5271-Lfunc_begin0 - .quad Lset6356 -.set Lset6357, Ltmp5272-Lfunc_begin0 - .quad Lset6357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6358, Ltmp5296-Lfunc_begin0 - .quad Lset6358 -.set Lset6359, Ltmp5297-Lfunc_begin0 - .quad Lset6359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6360, Ltmp5322-Lfunc_begin0 - .quad Lset6360 -.set Lset6361, Ltmp5323-Lfunc_begin0 - .quad Lset6361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6362, Ltmp5347-Lfunc_begin0 - .quad Lset6362 -.set Lset6363, Ltmp5348-Lfunc_begin0 - .quad Lset6363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6364, Ltmp5372-Lfunc_begin0 - .quad Lset6364 -.set Lset6365, Ltmp5373-Lfunc_begin0 - .quad Lset6365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6366, Ltmp5397-Lfunc_begin0 - .quad Lset6366 -.set Lset6367, Ltmp5398-Lfunc_begin0 - .quad Lset6367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6368, Ltmp5422-Lfunc_begin0 - .quad Lset6368 -.set Lset6369, Ltmp5423-Lfunc_begin0 - .quad Lset6369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6370, Ltmp5447-Lfunc_begin0 - .quad Lset6370 -.set Lset6371, Ltmp5448-Lfunc_begin0 - .quad Lset6371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6372, Ltmp5472-Lfunc_begin0 - .quad Lset6372 -.set Lset6373, Ltmp5473-Lfunc_begin0 - .quad Lset6373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6374, Ltmp5498-Lfunc_begin0 - .quad Lset6374 -.set Lset6375, Ltmp5499-Lfunc_begin0 - .quad Lset6375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6376, Ltmp5523-Lfunc_begin0 - .quad Lset6376 -.set Lset6377, Ltmp5524-Lfunc_begin0 - .quad Lset6377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6378, Ltmp5548-Lfunc_begin0 - .quad Lset6378 -.set Lset6379, Ltmp5549-Lfunc_begin0 - .quad Lset6379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6380, Ltmp5573-Lfunc_begin0 - .quad Lset6380 -.set Lset6381, Ltmp5574-Lfunc_begin0 - .quad Lset6381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6382, Ltmp5598-Lfunc_begin0 - .quad Lset6382 -.set Lset6383, Ltmp5599-Lfunc_begin0 - .quad Lset6383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6384, Ltmp5631-Lfunc_begin0 - .quad Lset6384 -.set Lset6385, Ltmp5632-Lfunc_begin0 - .quad Lset6385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6386, Ltmp5662-Lfunc_begin0 - .quad Lset6386 -.set Lset6387, Ltmp5663-Lfunc_begin0 - .quad Lset6387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6388, Ltmp5687-Lfunc_begin0 - .quad Lset6388 -.set Lset6389, Ltmp5688-Lfunc_begin0 - .quad Lset6389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6390, Ltmp5712-Lfunc_begin0 - .quad Lset6390 -.set Lset6391, Ltmp5713-Lfunc_begin0 - .quad Lset6391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6392, Ltmp5737-Lfunc_begin0 - .quad Lset6392 -.set Lset6393, Ltmp5738-Lfunc_begin0 - .quad Lset6393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6394, Ltmp5767-Lfunc_begin0 - .quad Lset6394 -.set Lset6395, Ltmp5768-Lfunc_begin0 - .quad Lset6395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6396, Ltmp5795-Lfunc_begin0 - .quad Lset6396 -.set Lset6397, Ltmp5796-Lfunc_begin0 - .quad Lset6397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6398, Ltmp5814-Lfunc_begin0 - .quad Lset6398 -.set Lset6399, Ltmp5815-Lfunc_begin0 - .quad Lset6399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6400, Ltmp5833-Lfunc_begin0 - .quad Lset6400 -.set Lset6401, Ltmp5834-Lfunc_begin0 - .quad Lset6401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6402, Ltmp5852-Lfunc_begin0 - .quad Lset6402 -.set Lset6403, Ltmp5853-Lfunc_begin0 - .quad Lset6403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6404, Ltmp5871-Lfunc_begin0 - .quad Lset6404 -.set Lset6405, Ltmp5872-Lfunc_begin0 - .quad Lset6405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6406, Ltmp5890-Lfunc_begin0 - .quad Lset6406 -.set Lset6407, Ltmp5891-Lfunc_begin0 - .quad Lset6407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6408, Ltmp5920-Lfunc_begin0 - .quad Lset6408 -.set Lset6409, Ltmp5921-Lfunc_begin0 - .quad Lset6409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc199: -.set Lset6410, Ltmp1186-Lfunc_begin0 - .quad Lset6410 -.set Lset6411, Ltmp1187-Lfunc_begin0 - .quad Lset6411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6412, Ltmp1215-Lfunc_begin0 - .quad Lset6412 -.set Lset6413, Ltmp1216-Lfunc_begin0 - .quad Lset6413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6414, Ltmp1237-Lfunc_begin0 - .quad Lset6414 -.set Lset6415, Ltmp1238-Lfunc_begin0 - .quad Lset6415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6416, Ltmp1260-Lfunc_begin0 - .quad Lset6416 -.set Lset6417, Ltmp1261-Lfunc_begin0 - .quad Lset6417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6418, Ltmp1281-Lfunc_begin0 - .quad Lset6418 -.set Lset6419, Ltmp1282-Lfunc_begin0 - .quad Lset6419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6420, Ltmp1314-Lfunc_begin0 - .quad Lset6420 -.set Lset6421, Ltmp1315-Lfunc_begin0 - .quad Lset6421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6422, Ltmp1338-Lfunc_begin0 - .quad Lset6422 -.set Lset6423, Ltmp1339-Lfunc_begin0 - .quad Lset6423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6424, Ltmp1368-Lfunc_begin0 - .quad Lset6424 -.set Lset6425, Ltmp1369-Lfunc_begin0 - .quad Lset6425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6426, Ltmp1462-Lfunc_begin0 - .quad Lset6426 -.set Lset6427, Ltmp1464-Lfunc_begin0 - .quad Lset6427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6428, Ltmp1557-Lfunc_begin0 - .quad Lset6428 -.set Lset6429, Ltmp1559-Lfunc_begin0 - .quad Lset6429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6430, Ltmp1713-Lfunc_begin0 - .quad Lset6430 -.set Lset6431, Ltmp1715-Lfunc_begin0 - .quad Lset6431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6432, Ltmp1864-Lfunc_begin0 - .quad Lset6432 -.set Lset6433, Ltmp1866-Lfunc_begin0 - .quad Lset6433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6434, Ltmp2004-Lfunc_begin0 - .quad Lset6434 -.set Lset6435, Ltmp2006-Lfunc_begin0 - .quad Lset6435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6436, Ltmp2074-Lfunc_begin0 - .quad Lset6436 -.set Lset6437, Ltmp2076-Lfunc_begin0 - .quad Lset6437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6438, Ltmp2120-Lfunc_begin0 - .quad Lset6438 -.set Lset6439, Ltmp2121-Lfunc_begin0 - .quad Lset6439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6440, Ltmp2193-Lfunc_begin0 - .quad Lset6440 -.set Lset6441, Ltmp2195-Lfunc_begin0 - .quad Lset6441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6442, Ltmp2253-Lfunc_begin0 - .quad Lset6442 -.set Lset6443, Ltmp2255-Lfunc_begin0 - .quad Lset6443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6444, Ltmp2302-Lfunc_begin0 - .quad Lset6444 -.set Lset6445, Ltmp2304-Lfunc_begin0 - .quad Lset6445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6446, Ltmp2351-Lfunc_begin0 - .quad Lset6446 -.set Lset6447, Ltmp2353-Lfunc_begin0 - .quad Lset6447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6448, Ltmp2400-Lfunc_begin0 - .quad Lset6448 -.set Lset6449, Ltmp2402-Lfunc_begin0 - .quad Lset6449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6450, Ltmp2444-Lfunc_begin0 - .quad Lset6450 -.set Lset6451, Ltmp2446-Lfunc_begin0 - .quad Lset6451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6452, Ltmp2499-Lfunc_begin0 - .quad Lset6452 -.set Lset6453, Ltmp2501-Lfunc_begin0 - .quad Lset6453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6454, Ltmp2554-Lfunc_begin0 - .quad Lset6454 -.set Lset6455, Ltmp2556-Lfunc_begin0 - .quad Lset6455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6456, Ltmp2609-Lfunc_begin0 - .quad Lset6456 -.set Lset6457, Ltmp2611-Lfunc_begin0 - .quad Lset6457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6458, Ltmp2673-Lfunc_begin0 - .quad Lset6458 -.set Lset6459, Ltmp2675-Lfunc_begin0 - .quad Lset6459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6460, Ltmp2738-Lfunc_begin0 - .quad Lset6460 -.set Lset6461, Ltmp2740-Lfunc_begin0 - .quad Lset6461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6462, Ltmp2811-Lfunc_begin0 - .quad Lset6462 -.set Lset6463, Ltmp2813-Lfunc_begin0 - .quad Lset6463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6464, Ltmp2871-Lfunc_begin0 - .quad Lset6464 -.set Lset6465, Ltmp2873-Lfunc_begin0 - .quad Lset6465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6466, Ltmp2922-Lfunc_begin0 - .quad Lset6466 -.set Lset6467, Ltmp2924-Lfunc_begin0 - .quad Lset6467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6468, Ltmp2957-Lfunc_begin0 - .quad Lset6468 -.set Lset6469, Ltmp2958-Lfunc_begin0 - .quad Lset6469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6470, Ltmp2997-Lfunc_begin0 - .quad Lset6470 -.set Lset6471, Ltmp2999-Lfunc_begin0 - .quad Lset6471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6472, Ltmp3024-Lfunc_begin0 - .quad Lset6472 -.set Lset6473, Ltmp3025-Lfunc_begin0 - .quad Lset6473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6474, Ltmp3047-Lfunc_begin0 - .quad Lset6474 -.set Lset6475, Ltmp3048-Lfunc_begin0 - .quad Lset6475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6476, Ltmp3096-Lfunc_begin0 - .quad Lset6476 -.set Lset6477, Ltmp3097-Lfunc_begin0 - .quad Lset6477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6478, Ltmp3120-Lfunc_begin0 - .quad Lset6478 -.set Lset6479, Ltmp3122-Lfunc_begin0 - .quad Lset6479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6480, Ltmp3161-Lfunc_begin0 - .quad Lset6480 -.set Lset6481, Ltmp3163-Lfunc_begin0 - .quad Lset6481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6482, Ltmp3227-Lfunc_begin0 - .quad Lset6482 -.set Lset6483, Ltmp3228-Lfunc_begin0 - .quad Lset6483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6484, Ltmp3292-Lfunc_begin0 - .quad Lset6484 -.set Lset6485, Ltmp3293-Lfunc_begin0 - .quad Lset6485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6486, Ltmp3329-Lfunc_begin0 - .quad Lset6486 -.set Lset6487, Ltmp3330-Lfunc_begin0 - .quad Lset6487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6488, Ltmp3375-Lfunc_begin0 - .quad Lset6488 -.set Lset6489, Ltmp3376-Lfunc_begin0 - .quad Lset6489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6490, Ltmp3407-Lfunc_begin0 - .quad Lset6490 -.set Lset6491, Ltmp3408-Lfunc_begin0 - .quad Lset6491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6492, Ltmp3435-Lfunc_begin0 - .quad Lset6492 -.set Lset6493, Ltmp3436-Lfunc_begin0 - .quad Lset6493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6494, Ltmp3537-Lfunc_begin0 - .quad Lset6494 -.set Lset6495, Ltmp3538-Lfunc_begin0 - .quad Lset6495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6496, Ltmp3638-Lfunc_begin0 - .quad Lset6496 -.set Lset6497, Ltmp3640-Lfunc_begin0 - .quad Lset6497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6498, Ltmp3685-Lfunc_begin0 - .quad Lset6498 -.set Lset6499, Ltmp3686-Lfunc_begin0 - .quad Lset6499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6500, Ltmp3807-Lfunc_begin0 - .quad Lset6500 -.set Lset6501, Ltmp3809-Lfunc_begin0 - .quad Lset6501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6502, Ltmp3864-Lfunc_begin0 - .quad Lset6502 -.set Lset6503, Ltmp3865-Lfunc_begin0 - .quad Lset6503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6504, Ltmp3933-Lfunc_begin0 - .quad Lset6504 -.set Lset6505, Ltmp3934-Lfunc_begin0 - .quad Lset6505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6506, Ltmp3959-Lfunc_begin0 - .quad Lset6506 -.set Lset6507, Ltmp3960-Lfunc_begin0 - .quad Lset6507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6508, Ltmp3985-Lfunc_begin0 - .quad Lset6508 -.set Lset6509, Ltmp3986-Lfunc_begin0 - .quad Lset6509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6510, Ltmp4011-Lfunc_begin0 - .quad Lset6510 -.set Lset6511, Ltmp4012-Lfunc_begin0 - .quad Lset6511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6512, Ltmp4046-Lfunc_begin0 - .quad Lset6512 -.set Lset6513, Ltmp4047-Lfunc_begin0 - .quad Lset6513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6514, Ltmp4084-Lfunc_begin0 - .quad Lset6514 -.set Lset6515, Ltmp4085-Lfunc_begin0 - .quad Lset6515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6516, Ltmp4106-Lfunc_begin0 - .quad Lset6516 -.set Lset6517, Ltmp4107-Lfunc_begin0 - .quad Lset6517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6518, Ltmp4146-Lfunc_begin0 - .quad Lset6518 -.set Lset6519, Ltmp4147-Lfunc_begin0 - .quad Lset6519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6520, Ltmp4187-Lfunc_begin0 - .quad Lset6520 -.set Lset6521, Ltmp4188-Lfunc_begin0 - .quad Lset6521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6522, Ltmp4227-Lfunc_begin0 - .quad Lset6522 -.set Lset6523, Ltmp4228-Lfunc_begin0 - .quad Lset6523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6524, Ltmp4268-Lfunc_begin0 - .quad Lset6524 -.set Lset6525, Ltmp4269-Lfunc_begin0 - .quad Lset6525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6526, Ltmp4308-Lfunc_begin0 - .quad Lset6526 -.set Lset6527, Ltmp4309-Lfunc_begin0 - .quad Lset6527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6528, Ltmp4349-Lfunc_begin0 - .quad Lset6528 -.set Lset6529, Ltmp4350-Lfunc_begin0 - .quad Lset6529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6530, Ltmp4380-Lfunc_begin0 - .quad Lset6530 -.set Lset6531, Ltmp4381-Lfunc_begin0 - .quad Lset6531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6532, Ltmp4412-Lfunc_begin0 - .quad Lset6532 -.set Lset6533, Ltmp4414-Lfunc_begin0 - .quad Lset6533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6534, Ltmp4454-Lfunc_begin0 - .quad Lset6534 -.set Lset6535, Ltmp4455-Lfunc_begin0 - .quad Lset6535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6536, Ltmp4495-Lfunc_begin0 - .quad Lset6536 -.set Lset6537, Ltmp4496-Lfunc_begin0 - .quad Lset6537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6538, Ltmp4579-Lfunc_begin0 - .quad Lset6538 -.set Lset6539, Ltmp4581-Lfunc_begin0 - .quad Lset6539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6540, Ltmp4649-Lfunc_begin0 - .quad Lset6540 -.set Lset6541, Ltmp4651-Lfunc_begin0 - .quad Lset6541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6542, Ltmp4717-Lfunc_begin0 - .quad Lset6542 -.set Lset6543, Ltmp4719-Lfunc_begin0 - .quad Lset6543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6544, Ltmp4783-Lfunc_begin0 - .quad Lset6544 -.set Lset6545, Ltmp4784-Lfunc_begin0 - .quad Lset6545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6546, Ltmp4813-Lfunc_begin0 - .quad Lset6546 -.set Lset6547, Ltmp4814-Lfunc_begin0 - .quad Lset6547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6548, Ltmp4843-Lfunc_begin0 - .quad Lset6548 -.set Lset6549, Ltmp4844-Lfunc_begin0 - .quad Lset6549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6550, Ltmp4902-Lfunc_begin0 - .quad Lset6550 -.set Lset6551, Ltmp4903-Lfunc_begin0 - .quad Lset6551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6552, Ltmp4943-Lfunc_begin0 - .quad Lset6552 -.set Lset6553, Ltmp4944-Lfunc_begin0 - .quad Lset6553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6554, Ltmp5000-Lfunc_begin0 - .quad Lset6554 -.set Lset6555, Ltmp5001-Lfunc_begin0 - .quad Lset6555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6556, Ltmp5040-Lfunc_begin0 - .quad Lset6556 -.set Lset6557, Ltmp5041-Lfunc_begin0 - .quad Lset6557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6558, Ltmp5078-Lfunc_begin0 - .quad Lset6558 -.set Lset6559, Ltmp5079-Lfunc_begin0 - .quad Lset6559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6560, Ltmp5114-Lfunc_begin0 - .quad Lset6560 -.set Lset6561, Ltmp5115-Lfunc_begin0 - .quad Lset6561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6562, Ltmp5146-Lfunc_begin0 - .quad Lset6562 -.set Lset6563, Ltmp5147-Lfunc_begin0 - .quad Lset6563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6564, Ltmp5178-Lfunc_begin0 - .quad Lset6564 -.set Lset6565, Ltmp5179-Lfunc_begin0 - .quad Lset6565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6566, Ltmp5210-Lfunc_begin0 - .quad Lset6566 -.set Lset6567, Ltmp5211-Lfunc_begin0 - .quad Lset6567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6568, Ltmp5228-Lfunc_begin0 - .quad Lset6568 -.set Lset6569, Ltmp5229-Lfunc_begin0 - .quad Lset6569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6570, Ltmp5246-Lfunc_begin0 - .quad Lset6570 -.set Lset6571, Ltmp5247-Lfunc_begin0 - .quad Lset6571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6572, Ltmp5271-Lfunc_begin0 - .quad Lset6572 -.set Lset6573, Ltmp5272-Lfunc_begin0 - .quad Lset6573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6574, Ltmp5296-Lfunc_begin0 - .quad Lset6574 -.set Lset6575, Ltmp5297-Lfunc_begin0 - .quad Lset6575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6576, Ltmp5322-Lfunc_begin0 - .quad Lset6576 -.set Lset6577, Ltmp5323-Lfunc_begin0 - .quad Lset6577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6578, Ltmp5347-Lfunc_begin0 - .quad Lset6578 -.set Lset6579, Ltmp5348-Lfunc_begin0 - .quad Lset6579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6580, Ltmp5372-Lfunc_begin0 - .quad Lset6580 -.set Lset6581, Ltmp5373-Lfunc_begin0 - .quad Lset6581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6582, Ltmp5397-Lfunc_begin0 - .quad Lset6582 -.set Lset6583, Ltmp5398-Lfunc_begin0 - .quad Lset6583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6584, Ltmp5422-Lfunc_begin0 - .quad Lset6584 -.set Lset6585, Ltmp5423-Lfunc_begin0 - .quad Lset6585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6586, Ltmp5447-Lfunc_begin0 - .quad Lset6586 -.set Lset6587, Ltmp5448-Lfunc_begin0 - .quad Lset6587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6588, Ltmp5472-Lfunc_begin0 - .quad Lset6588 -.set Lset6589, Ltmp5473-Lfunc_begin0 - .quad Lset6589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6590, Ltmp5498-Lfunc_begin0 - .quad Lset6590 -.set Lset6591, Ltmp5499-Lfunc_begin0 - .quad Lset6591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6592, Ltmp5523-Lfunc_begin0 - .quad Lset6592 -.set Lset6593, Ltmp5524-Lfunc_begin0 - .quad Lset6593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6594, Ltmp5548-Lfunc_begin0 - .quad Lset6594 -.set Lset6595, Ltmp5549-Lfunc_begin0 - .quad Lset6595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6596, Ltmp5573-Lfunc_begin0 - .quad Lset6596 -.set Lset6597, Ltmp5574-Lfunc_begin0 - .quad Lset6597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6598, Ltmp5598-Lfunc_begin0 - .quad Lset6598 -.set Lset6599, Ltmp5599-Lfunc_begin0 - .quad Lset6599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6600, Ltmp5631-Lfunc_begin0 - .quad Lset6600 -.set Lset6601, Ltmp5632-Lfunc_begin0 - .quad Lset6601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6602, Ltmp5662-Lfunc_begin0 - .quad Lset6602 -.set Lset6603, Ltmp5663-Lfunc_begin0 - .quad Lset6603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6604, Ltmp5687-Lfunc_begin0 - .quad Lset6604 -.set Lset6605, Ltmp5688-Lfunc_begin0 - .quad Lset6605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6606, Ltmp5712-Lfunc_begin0 - .quad Lset6606 -.set Lset6607, Ltmp5713-Lfunc_begin0 - .quad Lset6607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6608, Ltmp5737-Lfunc_begin0 - .quad Lset6608 -.set Lset6609, Ltmp5738-Lfunc_begin0 - .quad Lset6609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6610, Ltmp5767-Lfunc_begin0 - .quad Lset6610 -.set Lset6611, Ltmp5768-Lfunc_begin0 - .quad Lset6611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6612, Ltmp5795-Lfunc_begin0 - .quad Lset6612 -.set Lset6613, Ltmp5796-Lfunc_begin0 - .quad Lset6613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6614, Ltmp5814-Lfunc_begin0 - .quad Lset6614 -.set Lset6615, Ltmp5815-Lfunc_begin0 - .quad Lset6615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6616, Ltmp5833-Lfunc_begin0 - .quad Lset6616 -.set Lset6617, Ltmp5834-Lfunc_begin0 - .quad Lset6617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6618, Ltmp5852-Lfunc_begin0 - .quad Lset6618 -.set Lset6619, Ltmp5853-Lfunc_begin0 - .quad Lset6619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6620, Ltmp5871-Lfunc_begin0 - .quad Lset6620 -.set Lset6621, Ltmp5872-Lfunc_begin0 - .quad Lset6621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6622, Ltmp5890-Lfunc_begin0 - .quad Lset6622 -.set Lset6623, Ltmp5891-Lfunc_begin0 - .quad Lset6623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6624, Ltmp5920-Lfunc_begin0 - .quad Lset6624 -.set Lset6625, Ltmp5921-Lfunc_begin0 - .quad Lset6625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc200: -.set Lset6626, Ltmp1186-Lfunc_begin0 - .quad Lset6626 -.set Lset6627, Ltmp1187-Lfunc_begin0 - .quad Lset6627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6628, Ltmp1215-Lfunc_begin0 - .quad Lset6628 -.set Lset6629, Ltmp1216-Lfunc_begin0 - .quad Lset6629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6630, Ltmp1237-Lfunc_begin0 - .quad Lset6630 -.set Lset6631, Ltmp1238-Lfunc_begin0 - .quad Lset6631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6632, Ltmp1260-Lfunc_begin0 - .quad Lset6632 -.set Lset6633, Ltmp1261-Lfunc_begin0 - .quad Lset6633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6634, Ltmp1281-Lfunc_begin0 - .quad Lset6634 -.set Lset6635, Ltmp1282-Lfunc_begin0 - .quad Lset6635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6636, Ltmp1314-Lfunc_begin0 - .quad Lset6636 -.set Lset6637, Ltmp1315-Lfunc_begin0 - .quad Lset6637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6638, Ltmp1338-Lfunc_begin0 - .quad Lset6638 -.set Lset6639, Ltmp1339-Lfunc_begin0 - .quad Lset6639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6640, Ltmp1368-Lfunc_begin0 - .quad Lset6640 -.set Lset6641, Ltmp1369-Lfunc_begin0 - .quad Lset6641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6642, Ltmp1462-Lfunc_begin0 - .quad Lset6642 -.set Lset6643, Ltmp1464-Lfunc_begin0 - .quad Lset6643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6644, Ltmp1557-Lfunc_begin0 - .quad Lset6644 -.set Lset6645, Ltmp1559-Lfunc_begin0 - .quad Lset6645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6646, Ltmp1713-Lfunc_begin0 - .quad Lset6646 -.set Lset6647, Ltmp1715-Lfunc_begin0 - .quad Lset6647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6648, Ltmp1864-Lfunc_begin0 - .quad Lset6648 -.set Lset6649, Ltmp1866-Lfunc_begin0 - .quad Lset6649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6650, Ltmp2004-Lfunc_begin0 - .quad Lset6650 -.set Lset6651, Ltmp2006-Lfunc_begin0 - .quad Lset6651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6652, Ltmp2074-Lfunc_begin0 - .quad Lset6652 -.set Lset6653, Ltmp2076-Lfunc_begin0 - .quad Lset6653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6654, Ltmp2120-Lfunc_begin0 - .quad Lset6654 -.set Lset6655, Ltmp2121-Lfunc_begin0 - .quad Lset6655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6656, Ltmp2193-Lfunc_begin0 - .quad Lset6656 -.set Lset6657, Ltmp2195-Lfunc_begin0 - .quad Lset6657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6658, Ltmp2253-Lfunc_begin0 - .quad Lset6658 -.set Lset6659, Ltmp2255-Lfunc_begin0 - .quad Lset6659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6660, Ltmp2302-Lfunc_begin0 - .quad Lset6660 -.set Lset6661, Ltmp2304-Lfunc_begin0 - .quad Lset6661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6662, Ltmp2351-Lfunc_begin0 - .quad Lset6662 -.set Lset6663, Ltmp2353-Lfunc_begin0 - .quad Lset6663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6664, Ltmp2400-Lfunc_begin0 - .quad Lset6664 -.set Lset6665, Ltmp2402-Lfunc_begin0 - .quad Lset6665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6666, Ltmp2444-Lfunc_begin0 - .quad Lset6666 -.set Lset6667, Ltmp2446-Lfunc_begin0 - .quad Lset6667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6668, Ltmp2499-Lfunc_begin0 - .quad Lset6668 -.set Lset6669, Ltmp2501-Lfunc_begin0 - .quad Lset6669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6670, Ltmp2554-Lfunc_begin0 - .quad Lset6670 -.set Lset6671, Ltmp2556-Lfunc_begin0 - .quad Lset6671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6672, Ltmp2609-Lfunc_begin0 - .quad Lset6672 -.set Lset6673, Ltmp2611-Lfunc_begin0 - .quad Lset6673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6674, Ltmp2673-Lfunc_begin0 - .quad Lset6674 -.set Lset6675, Ltmp2675-Lfunc_begin0 - .quad Lset6675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6676, Ltmp2738-Lfunc_begin0 - .quad Lset6676 -.set Lset6677, Ltmp2740-Lfunc_begin0 - .quad Lset6677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6678, Ltmp2811-Lfunc_begin0 - .quad Lset6678 -.set Lset6679, Ltmp2813-Lfunc_begin0 - .quad Lset6679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6680, Ltmp2871-Lfunc_begin0 - .quad Lset6680 -.set Lset6681, Ltmp2873-Lfunc_begin0 - .quad Lset6681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6682, Ltmp2922-Lfunc_begin0 - .quad Lset6682 -.set Lset6683, Ltmp2924-Lfunc_begin0 - .quad Lset6683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6684, Ltmp2957-Lfunc_begin0 - .quad Lset6684 -.set Lset6685, Ltmp2958-Lfunc_begin0 - .quad Lset6685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6686, Ltmp2997-Lfunc_begin0 - .quad Lset6686 -.set Lset6687, Ltmp2999-Lfunc_begin0 - .quad Lset6687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6688, Ltmp3024-Lfunc_begin0 - .quad Lset6688 -.set Lset6689, Ltmp3025-Lfunc_begin0 - .quad Lset6689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6690, Ltmp3047-Lfunc_begin0 - .quad Lset6690 -.set Lset6691, Ltmp3048-Lfunc_begin0 - .quad Lset6691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6692, Ltmp3096-Lfunc_begin0 - .quad Lset6692 -.set Lset6693, Ltmp3097-Lfunc_begin0 - .quad Lset6693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6694, Ltmp3120-Lfunc_begin0 - .quad Lset6694 -.set Lset6695, Ltmp3122-Lfunc_begin0 - .quad Lset6695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6696, Ltmp3161-Lfunc_begin0 - .quad Lset6696 -.set Lset6697, Ltmp3163-Lfunc_begin0 - .quad Lset6697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6698, Ltmp3227-Lfunc_begin0 - .quad Lset6698 -.set Lset6699, Ltmp3228-Lfunc_begin0 - .quad Lset6699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6700, Ltmp3292-Lfunc_begin0 - .quad Lset6700 -.set Lset6701, Ltmp3293-Lfunc_begin0 - .quad Lset6701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6702, Ltmp3329-Lfunc_begin0 - .quad Lset6702 -.set Lset6703, Ltmp3330-Lfunc_begin0 - .quad Lset6703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6704, Ltmp3375-Lfunc_begin0 - .quad Lset6704 -.set Lset6705, Ltmp3376-Lfunc_begin0 - .quad Lset6705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6706, Ltmp3407-Lfunc_begin0 - .quad Lset6706 -.set Lset6707, Ltmp3408-Lfunc_begin0 - .quad Lset6707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6708, Ltmp3435-Lfunc_begin0 - .quad Lset6708 -.set Lset6709, Ltmp3436-Lfunc_begin0 - .quad Lset6709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6710, Ltmp3537-Lfunc_begin0 - .quad Lset6710 -.set Lset6711, Ltmp3538-Lfunc_begin0 - .quad Lset6711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6712, Ltmp3638-Lfunc_begin0 - .quad Lset6712 -.set Lset6713, Ltmp3640-Lfunc_begin0 - .quad Lset6713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6714, Ltmp3685-Lfunc_begin0 - .quad Lset6714 -.set Lset6715, Ltmp3686-Lfunc_begin0 - .quad Lset6715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6716, Ltmp3807-Lfunc_begin0 - .quad Lset6716 -.set Lset6717, Ltmp3809-Lfunc_begin0 - .quad Lset6717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6718, Ltmp3864-Lfunc_begin0 - .quad Lset6718 -.set Lset6719, Ltmp3865-Lfunc_begin0 - .quad Lset6719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6720, Ltmp3933-Lfunc_begin0 - .quad Lset6720 -.set Lset6721, Ltmp3934-Lfunc_begin0 - .quad Lset6721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6722, Ltmp3959-Lfunc_begin0 - .quad Lset6722 -.set Lset6723, Ltmp3960-Lfunc_begin0 - .quad Lset6723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6724, Ltmp3985-Lfunc_begin0 - .quad Lset6724 -.set Lset6725, Ltmp3986-Lfunc_begin0 - .quad Lset6725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6726, Ltmp4011-Lfunc_begin0 - .quad Lset6726 -.set Lset6727, Ltmp4012-Lfunc_begin0 - .quad Lset6727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6728, Ltmp4046-Lfunc_begin0 - .quad Lset6728 -.set Lset6729, Ltmp4047-Lfunc_begin0 - .quad Lset6729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6730, Ltmp4084-Lfunc_begin0 - .quad Lset6730 -.set Lset6731, Ltmp4085-Lfunc_begin0 - .quad Lset6731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6732, Ltmp4106-Lfunc_begin0 - .quad Lset6732 -.set Lset6733, Ltmp4107-Lfunc_begin0 - .quad Lset6733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6734, Ltmp4146-Lfunc_begin0 - .quad Lset6734 -.set Lset6735, Ltmp4147-Lfunc_begin0 - .quad Lset6735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6736, Ltmp4187-Lfunc_begin0 - .quad Lset6736 -.set Lset6737, Ltmp4188-Lfunc_begin0 - .quad Lset6737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6738, Ltmp4227-Lfunc_begin0 - .quad Lset6738 -.set Lset6739, Ltmp4228-Lfunc_begin0 - .quad Lset6739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6740, Ltmp4268-Lfunc_begin0 - .quad Lset6740 -.set Lset6741, Ltmp4269-Lfunc_begin0 - .quad Lset6741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6742, Ltmp4308-Lfunc_begin0 - .quad Lset6742 -.set Lset6743, Ltmp4309-Lfunc_begin0 - .quad Lset6743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6744, Ltmp4349-Lfunc_begin0 - .quad Lset6744 -.set Lset6745, Ltmp4350-Lfunc_begin0 - .quad Lset6745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6746, Ltmp4380-Lfunc_begin0 - .quad Lset6746 -.set Lset6747, Ltmp4381-Lfunc_begin0 - .quad Lset6747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6748, Ltmp4412-Lfunc_begin0 - .quad Lset6748 -.set Lset6749, Ltmp4414-Lfunc_begin0 - .quad Lset6749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6750, Ltmp4454-Lfunc_begin0 - .quad Lset6750 -.set Lset6751, Ltmp4455-Lfunc_begin0 - .quad Lset6751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6752, Ltmp4495-Lfunc_begin0 - .quad Lset6752 -.set Lset6753, Ltmp4496-Lfunc_begin0 - .quad Lset6753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6754, Ltmp4579-Lfunc_begin0 - .quad Lset6754 -.set Lset6755, Ltmp4581-Lfunc_begin0 - .quad Lset6755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6756, Ltmp4649-Lfunc_begin0 - .quad Lset6756 -.set Lset6757, Ltmp4651-Lfunc_begin0 - .quad Lset6757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6758, Ltmp4717-Lfunc_begin0 - .quad Lset6758 -.set Lset6759, Ltmp4719-Lfunc_begin0 - .quad Lset6759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6760, Ltmp4783-Lfunc_begin0 - .quad Lset6760 -.set Lset6761, Ltmp4784-Lfunc_begin0 - .quad Lset6761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6762, Ltmp4813-Lfunc_begin0 - .quad Lset6762 -.set Lset6763, Ltmp4814-Lfunc_begin0 - .quad Lset6763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6764, Ltmp4843-Lfunc_begin0 - .quad Lset6764 -.set Lset6765, Ltmp4844-Lfunc_begin0 - .quad Lset6765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6766, Ltmp4902-Lfunc_begin0 - .quad Lset6766 -.set Lset6767, Ltmp4903-Lfunc_begin0 - .quad Lset6767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6768, Ltmp4943-Lfunc_begin0 - .quad Lset6768 -.set Lset6769, Ltmp4944-Lfunc_begin0 - .quad Lset6769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6770, Ltmp5000-Lfunc_begin0 - .quad Lset6770 -.set Lset6771, Ltmp5001-Lfunc_begin0 - .quad Lset6771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6772, Ltmp5040-Lfunc_begin0 - .quad Lset6772 -.set Lset6773, Ltmp5041-Lfunc_begin0 - .quad Lset6773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6774, Ltmp5078-Lfunc_begin0 - .quad Lset6774 -.set Lset6775, Ltmp5079-Lfunc_begin0 - .quad Lset6775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6776, Ltmp5114-Lfunc_begin0 - .quad Lset6776 -.set Lset6777, Ltmp5115-Lfunc_begin0 - .quad Lset6777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6778, Ltmp5146-Lfunc_begin0 - .quad Lset6778 -.set Lset6779, Ltmp5147-Lfunc_begin0 - .quad Lset6779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6780, Ltmp5178-Lfunc_begin0 - .quad Lset6780 -.set Lset6781, Ltmp5179-Lfunc_begin0 - .quad Lset6781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6782, Ltmp5210-Lfunc_begin0 - .quad Lset6782 -.set Lset6783, Ltmp5211-Lfunc_begin0 - .quad Lset6783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6784, Ltmp5228-Lfunc_begin0 - .quad Lset6784 -.set Lset6785, Ltmp5229-Lfunc_begin0 - .quad Lset6785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6786, Ltmp5246-Lfunc_begin0 - .quad Lset6786 -.set Lset6787, Ltmp5247-Lfunc_begin0 - .quad Lset6787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6788, Ltmp5271-Lfunc_begin0 - .quad Lset6788 -.set Lset6789, Ltmp5272-Lfunc_begin0 - .quad Lset6789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6790, Ltmp5296-Lfunc_begin0 - .quad Lset6790 -.set Lset6791, Ltmp5297-Lfunc_begin0 - .quad Lset6791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6792, Ltmp5322-Lfunc_begin0 - .quad Lset6792 -.set Lset6793, Ltmp5323-Lfunc_begin0 - .quad Lset6793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6794, Ltmp5347-Lfunc_begin0 - .quad Lset6794 -.set Lset6795, Ltmp5348-Lfunc_begin0 - .quad Lset6795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6796, Ltmp5372-Lfunc_begin0 - .quad Lset6796 -.set Lset6797, Ltmp5373-Lfunc_begin0 - .quad Lset6797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6798, Ltmp5397-Lfunc_begin0 - .quad Lset6798 -.set Lset6799, Ltmp5398-Lfunc_begin0 - .quad Lset6799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6800, Ltmp5422-Lfunc_begin0 - .quad Lset6800 -.set Lset6801, Ltmp5423-Lfunc_begin0 - .quad Lset6801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6802, Ltmp5447-Lfunc_begin0 - .quad Lset6802 -.set Lset6803, Ltmp5448-Lfunc_begin0 - .quad Lset6803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6804, Ltmp5472-Lfunc_begin0 - .quad Lset6804 -.set Lset6805, Ltmp5473-Lfunc_begin0 - .quad Lset6805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6806, Ltmp5498-Lfunc_begin0 - .quad Lset6806 -.set Lset6807, Ltmp5499-Lfunc_begin0 - .quad Lset6807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6808, Ltmp5523-Lfunc_begin0 - .quad Lset6808 -.set Lset6809, Ltmp5524-Lfunc_begin0 - .quad Lset6809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6810, Ltmp5548-Lfunc_begin0 - .quad Lset6810 -.set Lset6811, Ltmp5549-Lfunc_begin0 - .quad Lset6811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6812, Ltmp5573-Lfunc_begin0 - .quad Lset6812 -.set Lset6813, Ltmp5574-Lfunc_begin0 - .quad Lset6813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6814, Ltmp5598-Lfunc_begin0 - .quad Lset6814 -.set Lset6815, Ltmp5599-Lfunc_begin0 - .quad Lset6815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6816, Ltmp5631-Lfunc_begin0 - .quad Lset6816 -.set Lset6817, Ltmp5632-Lfunc_begin0 - .quad Lset6817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6818, Ltmp5662-Lfunc_begin0 - .quad Lset6818 -.set Lset6819, Ltmp5663-Lfunc_begin0 - .quad Lset6819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6820, Ltmp5687-Lfunc_begin0 - .quad Lset6820 -.set Lset6821, Ltmp5688-Lfunc_begin0 - .quad Lset6821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6822, Ltmp5712-Lfunc_begin0 - .quad Lset6822 -.set Lset6823, Ltmp5713-Lfunc_begin0 - .quad Lset6823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6824, Ltmp5737-Lfunc_begin0 - .quad Lset6824 -.set Lset6825, Ltmp5738-Lfunc_begin0 - .quad Lset6825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6826, Ltmp5767-Lfunc_begin0 - .quad Lset6826 -.set Lset6827, Ltmp5768-Lfunc_begin0 - .quad Lset6827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6828, Ltmp5795-Lfunc_begin0 - .quad Lset6828 -.set Lset6829, Ltmp5796-Lfunc_begin0 - .quad Lset6829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6830, Ltmp5814-Lfunc_begin0 - .quad Lset6830 -.set Lset6831, Ltmp5815-Lfunc_begin0 - .quad Lset6831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6832, Ltmp5833-Lfunc_begin0 - .quad Lset6832 -.set Lset6833, Ltmp5834-Lfunc_begin0 - .quad Lset6833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6834, Ltmp5852-Lfunc_begin0 - .quad Lset6834 -.set Lset6835, Ltmp5853-Lfunc_begin0 - .quad Lset6835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6836, Ltmp5871-Lfunc_begin0 - .quad Lset6836 -.set Lset6837, Ltmp5872-Lfunc_begin0 - .quad Lset6837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6838, Ltmp5890-Lfunc_begin0 - .quad Lset6838 -.set Lset6839, Ltmp5891-Lfunc_begin0 - .quad Lset6839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6840, Ltmp5920-Lfunc_begin0 - .quad Lset6840 -.set Lset6841, Ltmp5921-Lfunc_begin0 - .quad Lset6841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc201: -.set Lset6842, Ltmp1186-Lfunc_begin0 - .quad Lset6842 -.set Lset6843, Ltmp1187-Lfunc_begin0 - .quad Lset6843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6844, Ltmp1215-Lfunc_begin0 - .quad Lset6844 -.set Lset6845, Ltmp1216-Lfunc_begin0 - .quad Lset6845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6846, Ltmp1237-Lfunc_begin0 - .quad Lset6846 -.set Lset6847, Ltmp1238-Lfunc_begin0 - .quad Lset6847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6848, Ltmp1260-Lfunc_begin0 - .quad Lset6848 -.set Lset6849, Ltmp1261-Lfunc_begin0 - .quad Lset6849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6850, Ltmp1281-Lfunc_begin0 - .quad Lset6850 -.set Lset6851, Ltmp1282-Lfunc_begin0 - .quad Lset6851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6852, Ltmp1314-Lfunc_begin0 - .quad Lset6852 -.set Lset6853, Ltmp1315-Lfunc_begin0 - .quad Lset6853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6854, Ltmp1338-Lfunc_begin0 - .quad Lset6854 -.set Lset6855, Ltmp1339-Lfunc_begin0 - .quad Lset6855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6856, Ltmp1368-Lfunc_begin0 - .quad Lset6856 -.set Lset6857, Ltmp1369-Lfunc_begin0 - .quad Lset6857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6858, Ltmp1462-Lfunc_begin0 - .quad Lset6858 -.set Lset6859, Ltmp1464-Lfunc_begin0 - .quad Lset6859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6860, Ltmp1557-Lfunc_begin0 - .quad Lset6860 -.set Lset6861, Ltmp1559-Lfunc_begin0 - .quad Lset6861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6862, Ltmp1713-Lfunc_begin0 - .quad Lset6862 -.set Lset6863, Ltmp1715-Lfunc_begin0 - .quad Lset6863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6864, Ltmp1864-Lfunc_begin0 - .quad Lset6864 -.set Lset6865, Ltmp1866-Lfunc_begin0 - .quad Lset6865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6866, Ltmp2004-Lfunc_begin0 - .quad Lset6866 -.set Lset6867, Ltmp2006-Lfunc_begin0 - .quad Lset6867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6868, Ltmp2074-Lfunc_begin0 - .quad Lset6868 -.set Lset6869, Ltmp2076-Lfunc_begin0 - .quad Lset6869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6870, Ltmp2120-Lfunc_begin0 - .quad Lset6870 -.set Lset6871, Ltmp2121-Lfunc_begin0 - .quad Lset6871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6872, Ltmp2193-Lfunc_begin0 - .quad Lset6872 -.set Lset6873, Ltmp2195-Lfunc_begin0 - .quad Lset6873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6874, Ltmp2253-Lfunc_begin0 - .quad Lset6874 -.set Lset6875, Ltmp2255-Lfunc_begin0 - .quad Lset6875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6876, Ltmp2302-Lfunc_begin0 - .quad Lset6876 -.set Lset6877, Ltmp2304-Lfunc_begin0 - .quad Lset6877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6878, Ltmp2351-Lfunc_begin0 - .quad Lset6878 -.set Lset6879, Ltmp2353-Lfunc_begin0 - .quad Lset6879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6880, Ltmp2400-Lfunc_begin0 - .quad Lset6880 -.set Lset6881, Ltmp2402-Lfunc_begin0 - .quad Lset6881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6882, Ltmp2444-Lfunc_begin0 - .quad Lset6882 -.set Lset6883, Ltmp2446-Lfunc_begin0 - .quad Lset6883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6884, Ltmp2499-Lfunc_begin0 - .quad Lset6884 -.set Lset6885, Ltmp2501-Lfunc_begin0 - .quad Lset6885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6886, Ltmp2554-Lfunc_begin0 - .quad Lset6886 -.set Lset6887, Ltmp2556-Lfunc_begin0 - .quad Lset6887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6888, Ltmp2609-Lfunc_begin0 - .quad Lset6888 -.set Lset6889, Ltmp2611-Lfunc_begin0 - .quad Lset6889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6890, Ltmp2673-Lfunc_begin0 - .quad Lset6890 -.set Lset6891, Ltmp2675-Lfunc_begin0 - .quad Lset6891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6892, Ltmp2738-Lfunc_begin0 - .quad Lset6892 -.set Lset6893, Ltmp2740-Lfunc_begin0 - .quad Lset6893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6894, Ltmp2811-Lfunc_begin0 - .quad Lset6894 -.set Lset6895, Ltmp2813-Lfunc_begin0 - .quad Lset6895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6896, Ltmp2871-Lfunc_begin0 - .quad Lset6896 -.set Lset6897, Ltmp2873-Lfunc_begin0 - .quad Lset6897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6898, Ltmp2922-Lfunc_begin0 - .quad Lset6898 -.set Lset6899, Ltmp2924-Lfunc_begin0 - .quad Lset6899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6900, Ltmp2957-Lfunc_begin0 - .quad Lset6900 -.set Lset6901, Ltmp2958-Lfunc_begin0 - .quad Lset6901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6902, Ltmp2997-Lfunc_begin0 - .quad Lset6902 -.set Lset6903, Ltmp2999-Lfunc_begin0 - .quad Lset6903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6904, Ltmp3024-Lfunc_begin0 - .quad Lset6904 -.set Lset6905, Ltmp3025-Lfunc_begin0 - .quad Lset6905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6906, Ltmp3047-Lfunc_begin0 - .quad Lset6906 -.set Lset6907, Ltmp3048-Lfunc_begin0 - .quad Lset6907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6908, Ltmp3096-Lfunc_begin0 - .quad Lset6908 -.set Lset6909, Ltmp3097-Lfunc_begin0 - .quad Lset6909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6910, Ltmp3120-Lfunc_begin0 - .quad Lset6910 -.set Lset6911, Ltmp3122-Lfunc_begin0 - .quad Lset6911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6912, Ltmp3161-Lfunc_begin0 - .quad Lset6912 -.set Lset6913, Ltmp3163-Lfunc_begin0 - .quad Lset6913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6914, Ltmp3227-Lfunc_begin0 - .quad Lset6914 -.set Lset6915, Ltmp3228-Lfunc_begin0 - .quad Lset6915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6916, Ltmp3292-Lfunc_begin0 - .quad Lset6916 -.set Lset6917, Ltmp3293-Lfunc_begin0 - .quad Lset6917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6918, Ltmp3329-Lfunc_begin0 - .quad Lset6918 -.set Lset6919, Ltmp3330-Lfunc_begin0 - .quad Lset6919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6920, Ltmp3375-Lfunc_begin0 - .quad Lset6920 -.set Lset6921, Ltmp3376-Lfunc_begin0 - .quad Lset6921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6922, Ltmp3407-Lfunc_begin0 - .quad Lset6922 -.set Lset6923, Ltmp3408-Lfunc_begin0 - .quad Lset6923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6924, Ltmp3435-Lfunc_begin0 - .quad Lset6924 -.set Lset6925, Ltmp3436-Lfunc_begin0 - .quad Lset6925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6926, Ltmp3537-Lfunc_begin0 - .quad Lset6926 -.set Lset6927, Ltmp3538-Lfunc_begin0 - .quad Lset6927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6928, Ltmp3638-Lfunc_begin0 - .quad Lset6928 -.set Lset6929, Ltmp3640-Lfunc_begin0 - .quad Lset6929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6930, Ltmp3685-Lfunc_begin0 - .quad Lset6930 -.set Lset6931, Ltmp3686-Lfunc_begin0 - .quad Lset6931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6932, Ltmp3807-Lfunc_begin0 - .quad Lset6932 -.set Lset6933, Ltmp3809-Lfunc_begin0 - .quad Lset6933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6934, Ltmp3864-Lfunc_begin0 - .quad Lset6934 -.set Lset6935, Ltmp3865-Lfunc_begin0 - .quad Lset6935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6936, Ltmp3933-Lfunc_begin0 - .quad Lset6936 -.set Lset6937, Ltmp3934-Lfunc_begin0 - .quad Lset6937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6938, Ltmp3959-Lfunc_begin0 - .quad Lset6938 -.set Lset6939, Ltmp3960-Lfunc_begin0 - .quad Lset6939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6940, Ltmp3985-Lfunc_begin0 - .quad Lset6940 -.set Lset6941, Ltmp3986-Lfunc_begin0 - .quad Lset6941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6942, Ltmp4011-Lfunc_begin0 - .quad Lset6942 -.set Lset6943, Ltmp4012-Lfunc_begin0 - .quad Lset6943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6944, Ltmp4046-Lfunc_begin0 - .quad Lset6944 -.set Lset6945, Ltmp4047-Lfunc_begin0 - .quad Lset6945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6946, Ltmp4084-Lfunc_begin0 - .quad Lset6946 -.set Lset6947, Ltmp4085-Lfunc_begin0 - .quad Lset6947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6948, Ltmp4106-Lfunc_begin0 - .quad Lset6948 -.set Lset6949, Ltmp4107-Lfunc_begin0 - .quad Lset6949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6950, Ltmp4146-Lfunc_begin0 - .quad Lset6950 -.set Lset6951, Ltmp4147-Lfunc_begin0 - .quad Lset6951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6952, Ltmp4187-Lfunc_begin0 - .quad Lset6952 -.set Lset6953, Ltmp4188-Lfunc_begin0 - .quad Lset6953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6954, Ltmp4227-Lfunc_begin0 - .quad Lset6954 -.set Lset6955, Ltmp4228-Lfunc_begin0 - .quad Lset6955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6956, Ltmp4268-Lfunc_begin0 - .quad Lset6956 -.set Lset6957, Ltmp4269-Lfunc_begin0 - .quad Lset6957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6958, Ltmp4308-Lfunc_begin0 - .quad Lset6958 -.set Lset6959, Ltmp4309-Lfunc_begin0 - .quad Lset6959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6960, Ltmp4349-Lfunc_begin0 - .quad Lset6960 -.set Lset6961, Ltmp4350-Lfunc_begin0 - .quad Lset6961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6962, Ltmp4380-Lfunc_begin0 - .quad Lset6962 -.set Lset6963, Ltmp4381-Lfunc_begin0 - .quad Lset6963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6964, Ltmp4412-Lfunc_begin0 - .quad Lset6964 -.set Lset6965, Ltmp4414-Lfunc_begin0 - .quad Lset6965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6966, Ltmp4454-Lfunc_begin0 - .quad Lset6966 -.set Lset6967, Ltmp4455-Lfunc_begin0 - .quad Lset6967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6968, Ltmp4495-Lfunc_begin0 - .quad Lset6968 -.set Lset6969, Ltmp4496-Lfunc_begin0 - .quad Lset6969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6970, Ltmp4579-Lfunc_begin0 - .quad Lset6970 -.set Lset6971, Ltmp4581-Lfunc_begin0 - .quad Lset6971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6972, Ltmp4649-Lfunc_begin0 - .quad Lset6972 -.set Lset6973, Ltmp4651-Lfunc_begin0 - .quad Lset6973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6974, Ltmp4717-Lfunc_begin0 - .quad Lset6974 -.set Lset6975, Ltmp4719-Lfunc_begin0 - .quad Lset6975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6976, Ltmp4783-Lfunc_begin0 - .quad Lset6976 -.set Lset6977, Ltmp4784-Lfunc_begin0 - .quad Lset6977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6978, Ltmp4813-Lfunc_begin0 - .quad Lset6978 -.set Lset6979, Ltmp4814-Lfunc_begin0 - .quad Lset6979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6980, Ltmp4843-Lfunc_begin0 - .quad Lset6980 -.set Lset6981, Ltmp4844-Lfunc_begin0 - .quad Lset6981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6982, Ltmp4902-Lfunc_begin0 - .quad Lset6982 -.set Lset6983, Ltmp4903-Lfunc_begin0 - .quad Lset6983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6984, Ltmp4943-Lfunc_begin0 - .quad Lset6984 -.set Lset6985, Ltmp4944-Lfunc_begin0 - .quad Lset6985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6986, Ltmp5000-Lfunc_begin0 - .quad Lset6986 -.set Lset6987, Ltmp5001-Lfunc_begin0 - .quad Lset6987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6988, Ltmp5040-Lfunc_begin0 - .quad Lset6988 -.set Lset6989, Ltmp5041-Lfunc_begin0 - .quad Lset6989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6990, Ltmp5078-Lfunc_begin0 - .quad Lset6990 -.set Lset6991, Ltmp5079-Lfunc_begin0 - .quad Lset6991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6992, Ltmp5114-Lfunc_begin0 - .quad Lset6992 -.set Lset6993, Ltmp5115-Lfunc_begin0 - .quad Lset6993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6994, Ltmp5146-Lfunc_begin0 - .quad Lset6994 -.set Lset6995, Ltmp5147-Lfunc_begin0 - .quad Lset6995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6996, Ltmp5178-Lfunc_begin0 - .quad Lset6996 -.set Lset6997, Ltmp5179-Lfunc_begin0 - .quad Lset6997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset6998, Ltmp5210-Lfunc_begin0 - .quad Lset6998 -.set Lset6999, Ltmp5211-Lfunc_begin0 - .quad Lset6999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7000, Ltmp5228-Lfunc_begin0 - .quad Lset7000 -.set Lset7001, Ltmp5229-Lfunc_begin0 - .quad Lset7001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7002, Ltmp5246-Lfunc_begin0 - .quad Lset7002 -.set Lset7003, Ltmp5247-Lfunc_begin0 - .quad Lset7003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7004, Ltmp5271-Lfunc_begin0 - .quad Lset7004 -.set Lset7005, Ltmp5272-Lfunc_begin0 - .quad Lset7005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7006, Ltmp5296-Lfunc_begin0 - .quad Lset7006 -.set Lset7007, Ltmp5297-Lfunc_begin0 - .quad Lset7007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7008, Ltmp5322-Lfunc_begin0 - .quad Lset7008 -.set Lset7009, Ltmp5323-Lfunc_begin0 - .quad Lset7009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7010, Ltmp5347-Lfunc_begin0 - .quad Lset7010 -.set Lset7011, Ltmp5348-Lfunc_begin0 - .quad Lset7011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7012, Ltmp5372-Lfunc_begin0 - .quad Lset7012 -.set Lset7013, Ltmp5373-Lfunc_begin0 - .quad Lset7013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7014, Ltmp5397-Lfunc_begin0 - .quad Lset7014 -.set Lset7015, Ltmp5398-Lfunc_begin0 - .quad Lset7015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7016, Ltmp5422-Lfunc_begin0 - .quad Lset7016 -.set Lset7017, Ltmp5423-Lfunc_begin0 - .quad Lset7017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7018, Ltmp5447-Lfunc_begin0 - .quad Lset7018 -.set Lset7019, Ltmp5448-Lfunc_begin0 - .quad Lset7019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7020, Ltmp5472-Lfunc_begin0 - .quad Lset7020 -.set Lset7021, Ltmp5473-Lfunc_begin0 - .quad Lset7021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7022, Ltmp5498-Lfunc_begin0 - .quad Lset7022 -.set Lset7023, Ltmp5499-Lfunc_begin0 - .quad Lset7023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7024, Ltmp5523-Lfunc_begin0 - .quad Lset7024 -.set Lset7025, Ltmp5524-Lfunc_begin0 - .quad Lset7025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7026, Ltmp5548-Lfunc_begin0 - .quad Lset7026 -.set Lset7027, Ltmp5549-Lfunc_begin0 - .quad Lset7027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7028, Ltmp5573-Lfunc_begin0 - .quad Lset7028 -.set Lset7029, Ltmp5574-Lfunc_begin0 - .quad Lset7029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7030, Ltmp5598-Lfunc_begin0 - .quad Lset7030 -.set Lset7031, Ltmp5599-Lfunc_begin0 - .quad Lset7031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7032, Ltmp5631-Lfunc_begin0 - .quad Lset7032 -.set Lset7033, Ltmp5632-Lfunc_begin0 - .quad Lset7033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7034, Ltmp5662-Lfunc_begin0 - .quad Lset7034 -.set Lset7035, Ltmp5663-Lfunc_begin0 - .quad Lset7035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7036, Ltmp5687-Lfunc_begin0 - .quad Lset7036 -.set Lset7037, Ltmp5688-Lfunc_begin0 - .quad Lset7037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7038, Ltmp5712-Lfunc_begin0 - .quad Lset7038 -.set Lset7039, Ltmp5713-Lfunc_begin0 - .quad Lset7039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7040, Ltmp5737-Lfunc_begin0 - .quad Lset7040 -.set Lset7041, Ltmp5738-Lfunc_begin0 - .quad Lset7041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7042, Ltmp5767-Lfunc_begin0 - .quad Lset7042 -.set Lset7043, Ltmp5768-Lfunc_begin0 - .quad Lset7043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7044, Ltmp5795-Lfunc_begin0 - .quad Lset7044 -.set Lset7045, Ltmp5796-Lfunc_begin0 - .quad Lset7045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7046, Ltmp5814-Lfunc_begin0 - .quad Lset7046 -.set Lset7047, Ltmp5815-Lfunc_begin0 - .quad Lset7047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7048, Ltmp5833-Lfunc_begin0 - .quad Lset7048 -.set Lset7049, Ltmp5834-Lfunc_begin0 - .quad Lset7049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7050, Ltmp5852-Lfunc_begin0 - .quad Lset7050 -.set Lset7051, Ltmp5853-Lfunc_begin0 - .quad Lset7051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7052, Ltmp5871-Lfunc_begin0 - .quad Lset7052 -.set Lset7053, Ltmp5872-Lfunc_begin0 - .quad Lset7053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7054, Ltmp5890-Lfunc_begin0 - .quad Lset7054 -.set Lset7055, Ltmp5891-Lfunc_begin0 - .quad Lset7055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7056, Ltmp5920-Lfunc_begin0 - .quad Lset7056 -.set Lset7057, Ltmp5921-Lfunc_begin0 - .quad Lset7057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc202: -.set Lset7058, Ltmp1186-Lfunc_begin0 - .quad Lset7058 -.set Lset7059, Ltmp1187-Lfunc_begin0 - .quad Lset7059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7060, Ltmp1215-Lfunc_begin0 - .quad Lset7060 -.set Lset7061, Ltmp1216-Lfunc_begin0 - .quad Lset7061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7062, Ltmp1237-Lfunc_begin0 - .quad Lset7062 -.set Lset7063, Ltmp1238-Lfunc_begin0 - .quad Lset7063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7064, Ltmp1260-Lfunc_begin0 - .quad Lset7064 -.set Lset7065, Ltmp1261-Lfunc_begin0 - .quad Lset7065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7066, Ltmp1281-Lfunc_begin0 - .quad Lset7066 -.set Lset7067, Ltmp1282-Lfunc_begin0 - .quad Lset7067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7068, Ltmp1314-Lfunc_begin0 - .quad Lset7068 -.set Lset7069, Ltmp1315-Lfunc_begin0 - .quad Lset7069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7070, Ltmp1338-Lfunc_begin0 - .quad Lset7070 -.set Lset7071, Ltmp1339-Lfunc_begin0 - .quad Lset7071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7072, Ltmp1368-Lfunc_begin0 - .quad Lset7072 -.set Lset7073, Ltmp1369-Lfunc_begin0 - .quad Lset7073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7074, Ltmp1462-Lfunc_begin0 - .quad Lset7074 -.set Lset7075, Ltmp1464-Lfunc_begin0 - .quad Lset7075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7076, Ltmp1557-Lfunc_begin0 - .quad Lset7076 -.set Lset7077, Ltmp1559-Lfunc_begin0 - .quad Lset7077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7078, Ltmp1713-Lfunc_begin0 - .quad Lset7078 -.set Lset7079, Ltmp1715-Lfunc_begin0 - .quad Lset7079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7080, Ltmp1864-Lfunc_begin0 - .quad Lset7080 -.set Lset7081, Ltmp1866-Lfunc_begin0 - .quad Lset7081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7082, Ltmp2004-Lfunc_begin0 - .quad Lset7082 -.set Lset7083, Ltmp2006-Lfunc_begin0 - .quad Lset7083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7084, Ltmp2074-Lfunc_begin0 - .quad Lset7084 -.set Lset7085, Ltmp2076-Lfunc_begin0 - .quad Lset7085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7086, Ltmp2120-Lfunc_begin0 - .quad Lset7086 -.set Lset7087, Ltmp2121-Lfunc_begin0 - .quad Lset7087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7088, Ltmp2193-Lfunc_begin0 - .quad Lset7088 -.set Lset7089, Ltmp2195-Lfunc_begin0 - .quad Lset7089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7090, Ltmp2253-Lfunc_begin0 - .quad Lset7090 -.set Lset7091, Ltmp2255-Lfunc_begin0 - .quad Lset7091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7092, Ltmp2302-Lfunc_begin0 - .quad Lset7092 -.set Lset7093, Ltmp2304-Lfunc_begin0 - .quad Lset7093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7094, Ltmp2351-Lfunc_begin0 - .quad Lset7094 -.set Lset7095, Ltmp2353-Lfunc_begin0 - .quad Lset7095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7096, Ltmp2400-Lfunc_begin0 - .quad Lset7096 -.set Lset7097, Ltmp2402-Lfunc_begin0 - .quad Lset7097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7098, Ltmp2444-Lfunc_begin0 - .quad Lset7098 -.set Lset7099, Ltmp2446-Lfunc_begin0 - .quad Lset7099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7100, Ltmp2499-Lfunc_begin0 - .quad Lset7100 -.set Lset7101, Ltmp2501-Lfunc_begin0 - .quad Lset7101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7102, Ltmp2554-Lfunc_begin0 - .quad Lset7102 -.set Lset7103, Ltmp2556-Lfunc_begin0 - .quad Lset7103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7104, Ltmp2609-Lfunc_begin0 - .quad Lset7104 -.set Lset7105, Ltmp2611-Lfunc_begin0 - .quad Lset7105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7106, Ltmp2673-Lfunc_begin0 - .quad Lset7106 -.set Lset7107, Ltmp2675-Lfunc_begin0 - .quad Lset7107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7108, Ltmp2738-Lfunc_begin0 - .quad Lset7108 -.set Lset7109, Ltmp2740-Lfunc_begin0 - .quad Lset7109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7110, Ltmp2811-Lfunc_begin0 - .quad Lset7110 -.set Lset7111, Ltmp2813-Lfunc_begin0 - .quad Lset7111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7112, Ltmp2871-Lfunc_begin0 - .quad Lset7112 -.set Lset7113, Ltmp2873-Lfunc_begin0 - .quad Lset7113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7114, Ltmp2922-Lfunc_begin0 - .quad Lset7114 -.set Lset7115, Ltmp2924-Lfunc_begin0 - .quad Lset7115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7116, Ltmp2957-Lfunc_begin0 - .quad Lset7116 -.set Lset7117, Ltmp2958-Lfunc_begin0 - .quad Lset7117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7118, Ltmp2997-Lfunc_begin0 - .quad Lset7118 -.set Lset7119, Ltmp2999-Lfunc_begin0 - .quad Lset7119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7120, Ltmp3024-Lfunc_begin0 - .quad Lset7120 -.set Lset7121, Ltmp3025-Lfunc_begin0 - .quad Lset7121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7122, Ltmp3047-Lfunc_begin0 - .quad Lset7122 -.set Lset7123, Ltmp3048-Lfunc_begin0 - .quad Lset7123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7124, Ltmp3096-Lfunc_begin0 - .quad Lset7124 -.set Lset7125, Ltmp3097-Lfunc_begin0 - .quad Lset7125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7126, Ltmp3120-Lfunc_begin0 - .quad Lset7126 -.set Lset7127, Ltmp3122-Lfunc_begin0 - .quad Lset7127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7128, Ltmp3161-Lfunc_begin0 - .quad Lset7128 -.set Lset7129, Ltmp3163-Lfunc_begin0 - .quad Lset7129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7130, Ltmp3227-Lfunc_begin0 - .quad Lset7130 -.set Lset7131, Ltmp3228-Lfunc_begin0 - .quad Lset7131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7132, Ltmp3292-Lfunc_begin0 - .quad Lset7132 -.set Lset7133, Ltmp3293-Lfunc_begin0 - .quad Lset7133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7134, Ltmp3329-Lfunc_begin0 - .quad Lset7134 -.set Lset7135, Ltmp3330-Lfunc_begin0 - .quad Lset7135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7136, Ltmp3375-Lfunc_begin0 - .quad Lset7136 -.set Lset7137, Ltmp3376-Lfunc_begin0 - .quad Lset7137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7138, Ltmp3407-Lfunc_begin0 - .quad Lset7138 -.set Lset7139, Ltmp3408-Lfunc_begin0 - .quad Lset7139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7140, Ltmp3435-Lfunc_begin0 - .quad Lset7140 -.set Lset7141, Ltmp3436-Lfunc_begin0 - .quad Lset7141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7142, Ltmp3537-Lfunc_begin0 - .quad Lset7142 -.set Lset7143, Ltmp3538-Lfunc_begin0 - .quad Lset7143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7144, Ltmp3638-Lfunc_begin0 - .quad Lset7144 -.set Lset7145, Ltmp3640-Lfunc_begin0 - .quad Lset7145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7146, Ltmp3685-Lfunc_begin0 - .quad Lset7146 -.set Lset7147, Ltmp3686-Lfunc_begin0 - .quad Lset7147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7148, Ltmp3807-Lfunc_begin0 - .quad Lset7148 -.set Lset7149, Ltmp3809-Lfunc_begin0 - .quad Lset7149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7150, Ltmp3864-Lfunc_begin0 - .quad Lset7150 -.set Lset7151, Ltmp3865-Lfunc_begin0 - .quad Lset7151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7152, Ltmp3933-Lfunc_begin0 - .quad Lset7152 -.set Lset7153, Ltmp3934-Lfunc_begin0 - .quad Lset7153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7154, Ltmp3959-Lfunc_begin0 - .quad Lset7154 -.set Lset7155, Ltmp3960-Lfunc_begin0 - .quad Lset7155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7156, Ltmp3985-Lfunc_begin0 - .quad Lset7156 -.set Lset7157, Ltmp3986-Lfunc_begin0 - .quad Lset7157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7158, Ltmp4011-Lfunc_begin0 - .quad Lset7158 -.set Lset7159, Ltmp4012-Lfunc_begin0 - .quad Lset7159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7160, Ltmp4046-Lfunc_begin0 - .quad Lset7160 -.set Lset7161, Ltmp4047-Lfunc_begin0 - .quad Lset7161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7162, Ltmp4084-Lfunc_begin0 - .quad Lset7162 -.set Lset7163, Ltmp4085-Lfunc_begin0 - .quad Lset7163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7164, Ltmp4106-Lfunc_begin0 - .quad Lset7164 -.set Lset7165, Ltmp4107-Lfunc_begin0 - .quad Lset7165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7166, Ltmp4146-Lfunc_begin0 - .quad Lset7166 -.set Lset7167, Ltmp4147-Lfunc_begin0 - .quad Lset7167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7168, Ltmp4187-Lfunc_begin0 - .quad Lset7168 -.set Lset7169, Ltmp4188-Lfunc_begin0 - .quad Lset7169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7170, Ltmp4227-Lfunc_begin0 - .quad Lset7170 -.set Lset7171, Ltmp4228-Lfunc_begin0 - .quad Lset7171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7172, Ltmp4268-Lfunc_begin0 - .quad Lset7172 -.set Lset7173, Ltmp4269-Lfunc_begin0 - .quad Lset7173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7174, Ltmp4308-Lfunc_begin0 - .quad Lset7174 -.set Lset7175, Ltmp4309-Lfunc_begin0 - .quad Lset7175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7176, Ltmp4349-Lfunc_begin0 - .quad Lset7176 -.set Lset7177, Ltmp4350-Lfunc_begin0 - .quad Lset7177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7178, Ltmp4380-Lfunc_begin0 - .quad Lset7178 -.set Lset7179, Ltmp4381-Lfunc_begin0 - .quad Lset7179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7180, Ltmp4412-Lfunc_begin0 - .quad Lset7180 -.set Lset7181, Ltmp4414-Lfunc_begin0 - .quad Lset7181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7182, Ltmp4454-Lfunc_begin0 - .quad Lset7182 -.set Lset7183, Ltmp4455-Lfunc_begin0 - .quad Lset7183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7184, Ltmp4495-Lfunc_begin0 - .quad Lset7184 -.set Lset7185, Ltmp4496-Lfunc_begin0 - .quad Lset7185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7186, Ltmp4579-Lfunc_begin0 - .quad Lset7186 -.set Lset7187, Ltmp4581-Lfunc_begin0 - .quad Lset7187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7188, Ltmp4649-Lfunc_begin0 - .quad Lset7188 -.set Lset7189, Ltmp4651-Lfunc_begin0 - .quad Lset7189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7190, Ltmp4717-Lfunc_begin0 - .quad Lset7190 -.set Lset7191, Ltmp4719-Lfunc_begin0 - .quad Lset7191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7192, Ltmp4783-Lfunc_begin0 - .quad Lset7192 -.set Lset7193, Ltmp4784-Lfunc_begin0 - .quad Lset7193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7194, Ltmp4813-Lfunc_begin0 - .quad Lset7194 -.set Lset7195, Ltmp4814-Lfunc_begin0 - .quad Lset7195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7196, Ltmp4843-Lfunc_begin0 - .quad Lset7196 -.set Lset7197, Ltmp4844-Lfunc_begin0 - .quad Lset7197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7198, Ltmp4902-Lfunc_begin0 - .quad Lset7198 -.set Lset7199, Ltmp4903-Lfunc_begin0 - .quad Lset7199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7200, Ltmp4943-Lfunc_begin0 - .quad Lset7200 -.set Lset7201, Ltmp4944-Lfunc_begin0 - .quad Lset7201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7202, Ltmp5000-Lfunc_begin0 - .quad Lset7202 -.set Lset7203, Ltmp5001-Lfunc_begin0 - .quad Lset7203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7204, Ltmp5040-Lfunc_begin0 - .quad Lset7204 -.set Lset7205, Ltmp5041-Lfunc_begin0 - .quad Lset7205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7206, Ltmp5078-Lfunc_begin0 - .quad Lset7206 -.set Lset7207, Ltmp5079-Lfunc_begin0 - .quad Lset7207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7208, Ltmp5114-Lfunc_begin0 - .quad Lset7208 -.set Lset7209, Ltmp5115-Lfunc_begin0 - .quad Lset7209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7210, Ltmp5146-Lfunc_begin0 - .quad Lset7210 -.set Lset7211, Ltmp5147-Lfunc_begin0 - .quad Lset7211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7212, Ltmp5178-Lfunc_begin0 - .quad Lset7212 -.set Lset7213, Ltmp5179-Lfunc_begin0 - .quad Lset7213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7214, Ltmp5210-Lfunc_begin0 - .quad Lset7214 -.set Lset7215, Ltmp5211-Lfunc_begin0 - .quad Lset7215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7216, Ltmp5228-Lfunc_begin0 - .quad Lset7216 -.set Lset7217, Ltmp5229-Lfunc_begin0 - .quad Lset7217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7218, Ltmp5246-Lfunc_begin0 - .quad Lset7218 -.set Lset7219, Ltmp5247-Lfunc_begin0 - .quad Lset7219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7220, Ltmp5271-Lfunc_begin0 - .quad Lset7220 -.set Lset7221, Ltmp5272-Lfunc_begin0 - .quad Lset7221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7222, Ltmp5296-Lfunc_begin0 - .quad Lset7222 -.set Lset7223, Ltmp5297-Lfunc_begin0 - .quad Lset7223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7224, Ltmp5322-Lfunc_begin0 - .quad Lset7224 -.set Lset7225, Ltmp5323-Lfunc_begin0 - .quad Lset7225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7226, Ltmp5347-Lfunc_begin0 - .quad Lset7226 -.set Lset7227, Ltmp5348-Lfunc_begin0 - .quad Lset7227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7228, Ltmp5372-Lfunc_begin0 - .quad Lset7228 -.set Lset7229, Ltmp5373-Lfunc_begin0 - .quad Lset7229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7230, Ltmp5397-Lfunc_begin0 - .quad Lset7230 -.set Lset7231, Ltmp5398-Lfunc_begin0 - .quad Lset7231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7232, Ltmp5422-Lfunc_begin0 - .quad Lset7232 -.set Lset7233, Ltmp5423-Lfunc_begin0 - .quad Lset7233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7234, Ltmp5447-Lfunc_begin0 - .quad Lset7234 -.set Lset7235, Ltmp5448-Lfunc_begin0 - .quad Lset7235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7236, Ltmp5472-Lfunc_begin0 - .quad Lset7236 -.set Lset7237, Ltmp5473-Lfunc_begin0 - .quad Lset7237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7238, Ltmp5498-Lfunc_begin0 - .quad Lset7238 -.set Lset7239, Ltmp5499-Lfunc_begin0 - .quad Lset7239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7240, Ltmp5523-Lfunc_begin0 - .quad Lset7240 -.set Lset7241, Ltmp5524-Lfunc_begin0 - .quad Lset7241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7242, Ltmp5548-Lfunc_begin0 - .quad Lset7242 -.set Lset7243, Ltmp5549-Lfunc_begin0 - .quad Lset7243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7244, Ltmp5573-Lfunc_begin0 - .quad Lset7244 -.set Lset7245, Ltmp5574-Lfunc_begin0 - .quad Lset7245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7246, Ltmp5598-Lfunc_begin0 - .quad Lset7246 -.set Lset7247, Ltmp5599-Lfunc_begin0 - .quad Lset7247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7248, Ltmp5631-Lfunc_begin0 - .quad Lset7248 -.set Lset7249, Ltmp5632-Lfunc_begin0 - .quad Lset7249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7250, Ltmp5662-Lfunc_begin0 - .quad Lset7250 -.set Lset7251, Ltmp5663-Lfunc_begin0 - .quad Lset7251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7252, Ltmp5687-Lfunc_begin0 - .quad Lset7252 -.set Lset7253, Ltmp5688-Lfunc_begin0 - .quad Lset7253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7254, Ltmp5712-Lfunc_begin0 - .quad Lset7254 -.set Lset7255, Ltmp5713-Lfunc_begin0 - .quad Lset7255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7256, Ltmp5737-Lfunc_begin0 - .quad Lset7256 -.set Lset7257, Ltmp5738-Lfunc_begin0 - .quad Lset7257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7258, Ltmp5767-Lfunc_begin0 - .quad Lset7258 -.set Lset7259, Ltmp5768-Lfunc_begin0 - .quad Lset7259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7260, Ltmp5795-Lfunc_begin0 - .quad Lset7260 -.set Lset7261, Ltmp5796-Lfunc_begin0 - .quad Lset7261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7262, Ltmp5814-Lfunc_begin0 - .quad Lset7262 -.set Lset7263, Ltmp5815-Lfunc_begin0 - .quad Lset7263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7264, Ltmp5833-Lfunc_begin0 - .quad Lset7264 -.set Lset7265, Ltmp5834-Lfunc_begin0 - .quad Lset7265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7266, Ltmp5852-Lfunc_begin0 - .quad Lset7266 -.set Lset7267, Ltmp5853-Lfunc_begin0 - .quad Lset7267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7268, Ltmp5871-Lfunc_begin0 - .quad Lset7268 -.set Lset7269, Ltmp5872-Lfunc_begin0 - .quad Lset7269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7270, Ltmp5890-Lfunc_begin0 - .quad Lset7270 -.set Lset7271, Ltmp5891-Lfunc_begin0 - .quad Lset7271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7272, Ltmp5920-Lfunc_begin0 - .quad Lset7272 -.set Lset7273, Ltmp5921-Lfunc_begin0 - .quad Lset7273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc203: -.set Lset7274, Ltmp1186-Lfunc_begin0 - .quad Lset7274 -.set Lset7275, Ltmp1187-Lfunc_begin0 - .quad Lset7275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7276, Ltmp1215-Lfunc_begin0 - .quad Lset7276 -.set Lset7277, Ltmp1216-Lfunc_begin0 - .quad Lset7277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7278, Ltmp1237-Lfunc_begin0 - .quad Lset7278 -.set Lset7279, Ltmp1238-Lfunc_begin0 - .quad Lset7279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7280, Ltmp1260-Lfunc_begin0 - .quad Lset7280 -.set Lset7281, Ltmp1261-Lfunc_begin0 - .quad Lset7281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7282, Ltmp1281-Lfunc_begin0 - .quad Lset7282 -.set Lset7283, Ltmp1282-Lfunc_begin0 - .quad Lset7283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7284, Ltmp1314-Lfunc_begin0 - .quad Lset7284 -.set Lset7285, Ltmp1315-Lfunc_begin0 - .quad Lset7285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7286, Ltmp1338-Lfunc_begin0 - .quad Lset7286 -.set Lset7287, Ltmp1339-Lfunc_begin0 - .quad Lset7287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7288, Ltmp1368-Lfunc_begin0 - .quad Lset7288 -.set Lset7289, Ltmp1369-Lfunc_begin0 - .quad Lset7289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7290, Ltmp1462-Lfunc_begin0 - .quad Lset7290 -.set Lset7291, Ltmp1464-Lfunc_begin0 - .quad Lset7291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7292, Ltmp1557-Lfunc_begin0 - .quad Lset7292 -.set Lset7293, Ltmp1559-Lfunc_begin0 - .quad Lset7293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7294, Ltmp1713-Lfunc_begin0 - .quad Lset7294 -.set Lset7295, Ltmp1715-Lfunc_begin0 - .quad Lset7295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7296, Ltmp1864-Lfunc_begin0 - .quad Lset7296 -.set Lset7297, Ltmp1866-Lfunc_begin0 - .quad Lset7297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7298, Ltmp2004-Lfunc_begin0 - .quad Lset7298 -.set Lset7299, Ltmp2006-Lfunc_begin0 - .quad Lset7299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7300, Ltmp2074-Lfunc_begin0 - .quad Lset7300 -.set Lset7301, Ltmp2076-Lfunc_begin0 - .quad Lset7301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7302, Ltmp2120-Lfunc_begin0 - .quad Lset7302 -.set Lset7303, Ltmp2121-Lfunc_begin0 - .quad Lset7303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7304, Ltmp2193-Lfunc_begin0 - .quad Lset7304 -.set Lset7305, Ltmp2195-Lfunc_begin0 - .quad Lset7305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7306, Ltmp2253-Lfunc_begin0 - .quad Lset7306 -.set Lset7307, Ltmp2255-Lfunc_begin0 - .quad Lset7307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7308, Ltmp2302-Lfunc_begin0 - .quad Lset7308 -.set Lset7309, Ltmp2304-Lfunc_begin0 - .quad Lset7309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7310, Ltmp2351-Lfunc_begin0 - .quad Lset7310 -.set Lset7311, Ltmp2353-Lfunc_begin0 - .quad Lset7311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7312, Ltmp2400-Lfunc_begin0 - .quad Lset7312 -.set Lset7313, Ltmp2402-Lfunc_begin0 - .quad Lset7313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7314, Ltmp2444-Lfunc_begin0 - .quad Lset7314 -.set Lset7315, Ltmp2446-Lfunc_begin0 - .quad Lset7315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7316, Ltmp2499-Lfunc_begin0 - .quad Lset7316 -.set Lset7317, Ltmp2501-Lfunc_begin0 - .quad Lset7317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7318, Ltmp2554-Lfunc_begin0 - .quad Lset7318 -.set Lset7319, Ltmp2556-Lfunc_begin0 - .quad Lset7319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7320, Ltmp2609-Lfunc_begin0 - .quad Lset7320 -.set Lset7321, Ltmp2611-Lfunc_begin0 - .quad Lset7321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7322, Ltmp2673-Lfunc_begin0 - .quad Lset7322 -.set Lset7323, Ltmp2675-Lfunc_begin0 - .quad Lset7323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7324, Ltmp2738-Lfunc_begin0 - .quad Lset7324 -.set Lset7325, Ltmp2740-Lfunc_begin0 - .quad Lset7325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7326, Ltmp2811-Lfunc_begin0 - .quad Lset7326 -.set Lset7327, Ltmp2813-Lfunc_begin0 - .quad Lset7327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7328, Ltmp2871-Lfunc_begin0 - .quad Lset7328 -.set Lset7329, Ltmp2873-Lfunc_begin0 - .quad Lset7329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7330, Ltmp2922-Lfunc_begin0 - .quad Lset7330 -.set Lset7331, Ltmp2924-Lfunc_begin0 - .quad Lset7331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7332, Ltmp2957-Lfunc_begin0 - .quad Lset7332 -.set Lset7333, Ltmp2958-Lfunc_begin0 - .quad Lset7333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7334, Ltmp2997-Lfunc_begin0 - .quad Lset7334 -.set Lset7335, Ltmp2999-Lfunc_begin0 - .quad Lset7335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7336, Ltmp3024-Lfunc_begin0 - .quad Lset7336 -.set Lset7337, Ltmp3025-Lfunc_begin0 - .quad Lset7337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7338, Ltmp3047-Lfunc_begin0 - .quad Lset7338 -.set Lset7339, Ltmp3048-Lfunc_begin0 - .quad Lset7339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7340, Ltmp3096-Lfunc_begin0 - .quad Lset7340 -.set Lset7341, Ltmp3097-Lfunc_begin0 - .quad Lset7341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7342, Ltmp3120-Lfunc_begin0 - .quad Lset7342 -.set Lset7343, Ltmp3122-Lfunc_begin0 - .quad Lset7343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7344, Ltmp3161-Lfunc_begin0 - .quad Lset7344 -.set Lset7345, Ltmp3163-Lfunc_begin0 - .quad Lset7345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7346, Ltmp3227-Lfunc_begin0 - .quad Lset7346 -.set Lset7347, Ltmp3228-Lfunc_begin0 - .quad Lset7347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7348, Ltmp3292-Lfunc_begin0 - .quad Lset7348 -.set Lset7349, Ltmp3293-Lfunc_begin0 - .quad Lset7349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7350, Ltmp3329-Lfunc_begin0 - .quad Lset7350 -.set Lset7351, Ltmp3330-Lfunc_begin0 - .quad Lset7351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7352, Ltmp3375-Lfunc_begin0 - .quad Lset7352 -.set Lset7353, Ltmp3376-Lfunc_begin0 - .quad Lset7353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7354, Ltmp3407-Lfunc_begin0 - .quad Lset7354 -.set Lset7355, Ltmp3408-Lfunc_begin0 - .quad Lset7355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7356, Ltmp3435-Lfunc_begin0 - .quad Lset7356 -.set Lset7357, Ltmp3436-Lfunc_begin0 - .quad Lset7357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7358, Ltmp3537-Lfunc_begin0 - .quad Lset7358 -.set Lset7359, Ltmp3538-Lfunc_begin0 - .quad Lset7359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7360, Ltmp3638-Lfunc_begin0 - .quad Lset7360 -.set Lset7361, Ltmp3640-Lfunc_begin0 - .quad Lset7361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7362, Ltmp3685-Lfunc_begin0 - .quad Lset7362 -.set Lset7363, Ltmp3686-Lfunc_begin0 - .quad Lset7363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7364, Ltmp3807-Lfunc_begin0 - .quad Lset7364 -.set Lset7365, Ltmp3809-Lfunc_begin0 - .quad Lset7365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7366, Ltmp3864-Lfunc_begin0 - .quad Lset7366 -.set Lset7367, Ltmp3865-Lfunc_begin0 - .quad Lset7367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7368, Ltmp3933-Lfunc_begin0 - .quad Lset7368 -.set Lset7369, Ltmp3934-Lfunc_begin0 - .quad Lset7369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7370, Ltmp3959-Lfunc_begin0 - .quad Lset7370 -.set Lset7371, Ltmp3960-Lfunc_begin0 - .quad Lset7371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7372, Ltmp3985-Lfunc_begin0 - .quad Lset7372 -.set Lset7373, Ltmp3986-Lfunc_begin0 - .quad Lset7373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7374, Ltmp4011-Lfunc_begin0 - .quad Lset7374 -.set Lset7375, Ltmp4012-Lfunc_begin0 - .quad Lset7375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7376, Ltmp4046-Lfunc_begin0 - .quad Lset7376 -.set Lset7377, Ltmp4047-Lfunc_begin0 - .quad Lset7377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7378, Ltmp4084-Lfunc_begin0 - .quad Lset7378 -.set Lset7379, Ltmp4085-Lfunc_begin0 - .quad Lset7379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7380, Ltmp4106-Lfunc_begin0 - .quad Lset7380 -.set Lset7381, Ltmp4107-Lfunc_begin0 - .quad Lset7381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7382, Ltmp4146-Lfunc_begin0 - .quad Lset7382 -.set Lset7383, Ltmp4147-Lfunc_begin0 - .quad Lset7383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7384, Ltmp4187-Lfunc_begin0 - .quad Lset7384 -.set Lset7385, Ltmp4188-Lfunc_begin0 - .quad Lset7385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7386, Ltmp4227-Lfunc_begin0 - .quad Lset7386 -.set Lset7387, Ltmp4228-Lfunc_begin0 - .quad Lset7387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7388, Ltmp4268-Lfunc_begin0 - .quad Lset7388 -.set Lset7389, Ltmp4269-Lfunc_begin0 - .quad Lset7389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7390, Ltmp4308-Lfunc_begin0 - .quad Lset7390 -.set Lset7391, Ltmp4309-Lfunc_begin0 - .quad Lset7391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7392, Ltmp4349-Lfunc_begin0 - .quad Lset7392 -.set Lset7393, Ltmp4350-Lfunc_begin0 - .quad Lset7393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7394, Ltmp4380-Lfunc_begin0 - .quad Lset7394 -.set Lset7395, Ltmp4381-Lfunc_begin0 - .quad Lset7395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7396, Ltmp4412-Lfunc_begin0 - .quad Lset7396 -.set Lset7397, Ltmp4414-Lfunc_begin0 - .quad Lset7397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7398, Ltmp4454-Lfunc_begin0 - .quad Lset7398 -.set Lset7399, Ltmp4455-Lfunc_begin0 - .quad Lset7399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7400, Ltmp4495-Lfunc_begin0 - .quad Lset7400 -.set Lset7401, Ltmp4496-Lfunc_begin0 - .quad Lset7401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7402, Ltmp4579-Lfunc_begin0 - .quad Lset7402 -.set Lset7403, Ltmp4581-Lfunc_begin0 - .quad Lset7403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7404, Ltmp4649-Lfunc_begin0 - .quad Lset7404 -.set Lset7405, Ltmp4651-Lfunc_begin0 - .quad Lset7405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7406, Ltmp4717-Lfunc_begin0 - .quad Lset7406 -.set Lset7407, Ltmp4719-Lfunc_begin0 - .quad Lset7407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7408, Ltmp4783-Lfunc_begin0 - .quad Lset7408 -.set Lset7409, Ltmp4784-Lfunc_begin0 - .quad Lset7409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7410, Ltmp4813-Lfunc_begin0 - .quad Lset7410 -.set Lset7411, Ltmp4814-Lfunc_begin0 - .quad Lset7411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7412, Ltmp4843-Lfunc_begin0 - .quad Lset7412 -.set Lset7413, Ltmp4844-Lfunc_begin0 - .quad Lset7413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7414, Ltmp4902-Lfunc_begin0 - .quad Lset7414 -.set Lset7415, Ltmp4903-Lfunc_begin0 - .quad Lset7415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7416, Ltmp4943-Lfunc_begin0 - .quad Lset7416 -.set Lset7417, Ltmp4944-Lfunc_begin0 - .quad Lset7417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7418, Ltmp5000-Lfunc_begin0 - .quad Lset7418 -.set Lset7419, Ltmp5001-Lfunc_begin0 - .quad Lset7419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7420, Ltmp5040-Lfunc_begin0 - .quad Lset7420 -.set Lset7421, Ltmp5041-Lfunc_begin0 - .quad Lset7421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7422, Ltmp5078-Lfunc_begin0 - .quad Lset7422 -.set Lset7423, Ltmp5079-Lfunc_begin0 - .quad Lset7423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7424, Ltmp5114-Lfunc_begin0 - .quad Lset7424 -.set Lset7425, Ltmp5115-Lfunc_begin0 - .quad Lset7425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7426, Ltmp5146-Lfunc_begin0 - .quad Lset7426 -.set Lset7427, Ltmp5147-Lfunc_begin0 - .quad Lset7427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7428, Ltmp5178-Lfunc_begin0 - .quad Lset7428 -.set Lset7429, Ltmp5179-Lfunc_begin0 - .quad Lset7429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7430, Ltmp5210-Lfunc_begin0 - .quad Lset7430 -.set Lset7431, Ltmp5211-Lfunc_begin0 - .quad Lset7431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7432, Ltmp5228-Lfunc_begin0 - .quad Lset7432 -.set Lset7433, Ltmp5229-Lfunc_begin0 - .quad Lset7433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7434, Ltmp5246-Lfunc_begin0 - .quad Lset7434 -.set Lset7435, Ltmp5247-Lfunc_begin0 - .quad Lset7435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7436, Ltmp5271-Lfunc_begin0 - .quad Lset7436 -.set Lset7437, Ltmp5272-Lfunc_begin0 - .quad Lset7437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7438, Ltmp5296-Lfunc_begin0 - .quad Lset7438 -.set Lset7439, Ltmp5297-Lfunc_begin0 - .quad Lset7439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7440, Ltmp5322-Lfunc_begin0 - .quad Lset7440 -.set Lset7441, Ltmp5323-Lfunc_begin0 - .quad Lset7441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7442, Ltmp5347-Lfunc_begin0 - .quad Lset7442 -.set Lset7443, Ltmp5348-Lfunc_begin0 - .quad Lset7443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7444, Ltmp5372-Lfunc_begin0 - .quad Lset7444 -.set Lset7445, Ltmp5373-Lfunc_begin0 - .quad Lset7445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7446, Ltmp5397-Lfunc_begin0 - .quad Lset7446 -.set Lset7447, Ltmp5398-Lfunc_begin0 - .quad Lset7447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7448, Ltmp5422-Lfunc_begin0 - .quad Lset7448 -.set Lset7449, Ltmp5423-Lfunc_begin0 - .quad Lset7449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7450, Ltmp5447-Lfunc_begin0 - .quad Lset7450 -.set Lset7451, Ltmp5448-Lfunc_begin0 - .quad Lset7451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7452, Ltmp5472-Lfunc_begin0 - .quad Lset7452 -.set Lset7453, Ltmp5473-Lfunc_begin0 - .quad Lset7453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7454, Ltmp5498-Lfunc_begin0 - .quad Lset7454 -.set Lset7455, Ltmp5499-Lfunc_begin0 - .quad Lset7455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7456, Ltmp5523-Lfunc_begin0 - .quad Lset7456 -.set Lset7457, Ltmp5524-Lfunc_begin0 - .quad Lset7457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7458, Ltmp5548-Lfunc_begin0 - .quad Lset7458 -.set Lset7459, Ltmp5549-Lfunc_begin0 - .quad Lset7459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7460, Ltmp5573-Lfunc_begin0 - .quad Lset7460 -.set Lset7461, Ltmp5574-Lfunc_begin0 - .quad Lset7461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7462, Ltmp5598-Lfunc_begin0 - .quad Lset7462 -.set Lset7463, Ltmp5599-Lfunc_begin0 - .quad Lset7463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7464, Ltmp5631-Lfunc_begin0 - .quad Lset7464 -.set Lset7465, Ltmp5632-Lfunc_begin0 - .quad Lset7465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7466, Ltmp5662-Lfunc_begin0 - .quad Lset7466 -.set Lset7467, Ltmp5663-Lfunc_begin0 - .quad Lset7467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7468, Ltmp5687-Lfunc_begin0 - .quad Lset7468 -.set Lset7469, Ltmp5688-Lfunc_begin0 - .quad Lset7469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7470, Ltmp5712-Lfunc_begin0 - .quad Lset7470 -.set Lset7471, Ltmp5713-Lfunc_begin0 - .quad Lset7471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7472, Ltmp5737-Lfunc_begin0 - .quad Lset7472 -.set Lset7473, Ltmp5738-Lfunc_begin0 - .quad Lset7473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7474, Ltmp5767-Lfunc_begin0 - .quad Lset7474 -.set Lset7475, Ltmp5768-Lfunc_begin0 - .quad Lset7475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7476, Ltmp5795-Lfunc_begin0 - .quad Lset7476 -.set Lset7477, Ltmp5796-Lfunc_begin0 - .quad Lset7477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7478, Ltmp5814-Lfunc_begin0 - .quad Lset7478 -.set Lset7479, Ltmp5815-Lfunc_begin0 - .quad Lset7479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7480, Ltmp5833-Lfunc_begin0 - .quad Lset7480 -.set Lset7481, Ltmp5834-Lfunc_begin0 - .quad Lset7481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7482, Ltmp5852-Lfunc_begin0 - .quad Lset7482 -.set Lset7483, Ltmp5853-Lfunc_begin0 - .quad Lset7483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7484, Ltmp5871-Lfunc_begin0 - .quad Lset7484 -.set Lset7485, Ltmp5872-Lfunc_begin0 - .quad Lset7485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7486, Ltmp5890-Lfunc_begin0 - .quad Lset7486 -.set Lset7487, Ltmp5891-Lfunc_begin0 - .quad Lset7487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7488, Ltmp5920-Lfunc_begin0 - .quad Lset7488 -.set Lset7489, Ltmp5921-Lfunc_begin0 - .quad Lset7489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc204: -.set Lset7490, Ltmp1186-Lfunc_begin0 - .quad Lset7490 -.set Lset7491, Ltmp1187-Lfunc_begin0 - .quad Lset7491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7492, Ltmp1215-Lfunc_begin0 - .quad Lset7492 -.set Lset7493, Ltmp1216-Lfunc_begin0 - .quad Lset7493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7494, Ltmp1237-Lfunc_begin0 - .quad Lset7494 -.set Lset7495, Ltmp1238-Lfunc_begin0 - .quad Lset7495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7496, Ltmp1260-Lfunc_begin0 - .quad Lset7496 -.set Lset7497, Ltmp1261-Lfunc_begin0 - .quad Lset7497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7498, Ltmp1281-Lfunc_begin0 - .quad Lset7498 -.set Lset7499, Ltmp1282-Lfunc_begin0 - .quad Lset7499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7500, Ltmp1314-Lfunc_begin0 - .quad Lset7500 -.set Lset7501, Ltmp1315-Lfunc_begin0 - .quad Lset7501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7502, Ltmp1338-Lfunc_begin0 - .quad Lset7502 -.set Lset7503, Ltmp1339-Lfunc_begin0 - .quad Lset7503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7504, Ltmp1368-Lfunc_begin0 - .quad Lset7504 -.set Lset7505, Ltmp1369-Lfunc_begin0 - .quad Lset7505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7506, Ltmp1462-Lfunc_begin0 - .quad Lset7506 -.set Lset7507, Ltmp1464-Lfunc_begin0 - .quad Lset7507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7508, Ltmp1557-Lfunc_begin0 - .quad Lset7508 -.set Lset7509, Ltmp1559-Lfunc_begin0 - .quad Lset7509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7510, Ltmp1713-Lfunc_begin0 - .quad Lset7510 -.set Lset7511, Ltmp1715-Lfunc_begin0 - .quad Lset7511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7512, Ltmp1864-Lfunc_begin0 - .quad Lset7512 -.set Lset7513, Ltmp1866-Lfunc_begin0 - .quad Lset7513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7514, Ltmp2004-Lfunc_begin0 - .quad Lset7514 -.set Lset7515, Ltmp2006-Lfunc_begin0 - .quad Lset7515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7516, Ltmp2074-Lfunc_begin0 - .quad Lset7516 -.set Lset7517, Ltmp2076-Lfunc_begin0 - .quad Lset7517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7518, Ltmp2120-Lfunc_begin0 - .quad Lset7518 -.set Lset7519, Ltmp2121-Lfunc_begin0 - .quad Lset7519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7520, Ltmp2193-Lfunc_begin0 - .quad Lset7520 -.set Lset7521, Ltmp2195-Lfunc_begin0 - .quad Lset7521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7522, Ltmp2253-Lfunc_begin0 - .quad Lset7522 -.set Lset7523, Ltmp2255-Lfunc_begin0 - .quad Lset7523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7524, Ltmp2302-Lfunc_begin0 - .quad Lset7524 -.set Lset7525, Ltmp2304-Lfunc_begin0 - .quad Lset7525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7526, Ltmp2351-Lfunc_begin0 - .quad Lset7526 -.set Lset7527, Ltmp2353-Lfunc_begin0 - .quad Lset7527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7528, Ltmp2400-Lfunc_begin0 - .quad Lset7528 -.set Lset7529, Ltmp2402-Lfunc_begin0 - .quad Lset7529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7530, Ltmp2444-Lfunc_begin0 - .quad Lset7530 -.set Lset7531, Ltmp2446-Lfunc_begin0 - .quad Lset7531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7532, Ltmp2499-Lfunc_begin0 - .quad Lset7532 -.set Lset7533, Ltmp2501-Lfunc_begin0 - .quad Lset7533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7534, Ltmp2554-Lfunc_begin0 - .quad Lset7534 -.set Lset7535, Ltmp2556-Lfunc_begin0 - .quad Lset7535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7536, Ltmp2609-Lfunc_begin0 - .quad Lset7536 -.set Lset7537, Ltmp2611-Lfunc_begin0 - .quad Lset7537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7538, Ltmp2673-Lfunc_begin0 - .quad Lset7538 -.set Lset7539, Ltmp2675-Lfunc_begin0 - .quad Lset7539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7540, Ltmp2738-Lfunc_begin0 - .quad Lset7540 -.set Lset7541, Ltmp2740-Lfunc_begin0 - .quad Lset7541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7542, Ltmp2811-Lfunc_begin0 - .quad Lset7542 -.set Lset7543, Ltmp2813-Lfunc_begin0 - .quad Lset7543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7544, Ltmp2871-Lfunc_begin0 - .quad Lset7544 -.set Lset7545, Ltmp2873-Lfunc_begin0 - .quad Lset7545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7546, Ltmp2922-Lfunc_begin0 - .quad Lset7546 -.set Lset7547, Ltmp2924-Lfunc_begin0 - .quad Lset7547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7548, Ltmp2957-Lfunc_begin0 - .quad Lset7548 -.set Lset7549, Ltmp2958-Lfunc_begin0 - .quad Lset7549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7550, Ltmp2997-Lfunc_begin0 - .quad Lset7550 -.set Lset7551, Ltmp2999-Lfunc_begin0 - .quad Lset7551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7552, Ltmp3024-Lfunc_begin0 - .quad Lset7552 -.set Lset7553, Ltmp3025-Lfunc_begin0 - .quad Lset7553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7554, Ltmp3047-Lfunc_begin0 - .quad Lset7554 -.set Lset7555, Ltmp3048-Lfunc_begin0 - .quad Lset7555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7556, Ltmp3096-Lfunc_begin0 - .quad Lset7556 -.set Lset7557, Ltmp3097-Lfunc_begin0 - .quad Lset7557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7558, Ltmp3120-Lfunc_begin0 - .quad Lset7558 -.set Lset7559, Ltmp3122-Lfunc_begin0 - .quad Lset7559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7560, Ltmp3161-Lfunc_begin0 - .quad Lset7560 -.set Lset7561, Ltmp3163-Lfunc_begin0 - .quad Lset7561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7562, Ltmp3227-Lfunc_begin0 - .quad Lset7562 -.set Lset7563, Ltmp3228-Lfunc_begin0 - .quad Lset7563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7564, Ltmp3292-Lfunc_begin0 - .quad Lset7564 -.set Lset7565, Ltmp3293-Lfunc_begin0 - .quad Lset7565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7566, Ltmp3329-Lfunc_begin0 - .quad Lset7566 -.set Lset7567, Ltmp3330-Lfunc_begin0 - .quad Lset7567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7568, Ltmp3375-Lfunc_begin0 - .quad Lset7568 -.set Lset7569, Ltmp3376-Lfunc_begin0 - .quad Lset7569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7570, Ltmp3407-Lfunc_begin0 - .quad Lset7570 -.set Lset7571, Ltmp3408-Lfunc_begin0 - .quad Lset7571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7572, Ltmp3435-Lfunc_begin0 - .quad Lset7572 -.set Lset7573, Ltmp3436-Lfunc_begin0 - .quad Lset7573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7574, Ltmp3537-Lfunc_begin0 - .quad Lset7574 -.set Lset7575, Ltmp3538-Lfunc_begin0 - .quad Lset7575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7576, Ltmp3638-Lfunc_begin0 - .quad Lset7576 -.set Lset7577, Ltmp3640-Lfunc_begin0 - .quad Lset7577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7578, Ltmp3685-Lfunc_begin0 - .quad Lset7578 -.set Lset7579, Ltmp3686-Lfunc_begin0 - .quad Lset7579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7580, Ltmp3807-Lfunc_begin0 - .quad Lset7580 -.set Lset7581, Ltmp3809-Lfunc_begin0 - .quad Lset7581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7582, Ltmp3864-Lfunc_begin0 - .quad Lset7582 -.set Lset7583, Ltmp3865-Lfunc_begin0 - .quad Lset7583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7584, Ltmp3933-Lfunc_begin0 - .quad Lset7584 -.set Lset7585, Ltmp3934-Lfunc_begin0 - .quad Lset7585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7586, Ltmp3959-Lfunc_begin0 - .quad Lset7586 -.set Lset7587, Ltmp3960-Lfunc_begin0 - .quad Lset7587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7588, Ltmp3985-Lfunc_begin0 - .quad Lset7588 -.set Lset7589, Ltmp3986-Lfunc_begin0 - .quad Lset7589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7590, Ltmp4011-Lfunc_begin0 - .quad Lset7590 -.set Lset7591, Ltmp4012-Lfunc_begin0 - .quad Lset7591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7592, Ltmp4046-Lfunc_begin0 - .quad Lset7592 -.set Lset7593, Ltmp4047-Lfunc_begin0 - .quad Lset7593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7594, Ltmp4084-Lfunc_begin0 - .quad Lset7594 -.set Lset7595, Ltmp4085-Lfunc_begin0 - .quad Lset7595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7596, Ltmp4106-Lfunc_begin0 - .quad Lset7596 -.set Lset7597, Ltmp4107-Lfunc_begin0 - .quad Lset7597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7598, Ltmp4146-Lfunc_begin0 - .quad Lset7598 -.set Lset7599, Ltmp4147-Lfunc_begin0 - .quad Lset7599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7600, Ltmp4187-Lfunc_begin0 - .quad Lset7600 -.set Lset7601, Ltmp4188-Lfunc_begin0 - .quad Lset7601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7602, Ltmp4227-Lfunc_begin0 - .quad Lset7602 -.set Lset7603, Ltmp4228-Lfunc_begin0 - .quad Lset7603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7604, Ltmp4268-Lfunc_begin0 - .quad Lset7604 -.set Lset7605, Ltmp4269-Lfunc_begin0 - .quad Lset7605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7606, Ltmp4308-Lfunc_begin0 - .quad Lset7606 -.set Lset7607, Ltmp4309-Lfunc_begin0 - .quad Lset7607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7608, Ltmp4349-Lfunc_begin0 - .quad Lset7608 -.set Lset7609, Ltmp4350-Lfunc_begin0 - .quad Lset7609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7610, Ltmp4380-Lfunc_begin0 - .quad Lset7610 -.set Lset7611, Ltmp4381-Lfunc_begin0 - .quad Lset7611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7612, Ltmp4412-Lfunc_begin0 - .quad Lset7612 -.set Lset7613, Ltmp4414-Lfunc_begin0 - .quad Lset7613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7614, Ltmp4454-Lfunc_begin0 - .quad Lset7614 -.set Lset7615, Ltmp4455-Lfunc_begin0 - .quad Lset7615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7616, Ltmp4495-Lfunc_begin0 - .quad Lset7616 -.set Lset7617, Ltmp4496-Lfunc_begin0 - .quad Lset7617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7618, Ltmp4579-Lfunc_begin0 - .quad Lset7618 -.set Lset7619, Ltmp4581-Lfunc_begin0 - .quad Lset7619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7620, Ltmp4649-Lfunc_begin0 - .quad Lset7620 -.set Lset7621, Ltmp4651-Lfunc_begin0 - .quad Lset7621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7622, Ltmp4717-Lfunc_begin0 - .quad Lset7622 -.set Lset7623, Ltmp4719-Lfunc_begin0 - .quad Lset7623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7624, Ltmp4783-Lfunc_begin0 - .quad Lset7624 -.set Lset7625, Ltmp4784-Lfunc_begin0 - .quad Lset7625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7626, Ltmp4813-Lfunc_begin0 - .quad Lset7626 -.set Lset7627, Ltmp4814-Lfunc_begin0 - .quad Lset7627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7628, Ltmp4843-Lfunc_begin0 - .quad Lset7628 -.set Lset7629, Ltmp4844-Lfunc_begin0 - .quad Lset7629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7630, Ltmp4902-Lfunc_begin0 - .quad Lset7630 -.set Lset7631, Ltmp4903-Lfunc_begin0 - .quad Lset7631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7632, Ltmp4943-Lfunc_begin0 - .quad Lset7632 -.set Lset7633, Ltmp4944-Lfunc_begin0 - .quad Lset7633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7634, Ltmp5000-Lfunc_begin0 - .quad Lset7634 -.set Lset7635, Ltmp5001-Lfunc_begin0 - .quad Lset7635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7636, Ltmp5040-Lfunc_begin0 - .quad Lset7636 -.set Lset7637, Ltmp5041-Lfunc_begin0 - .quad Lset7637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7638, Ltmp5078-Lfunc_begin0 - .quad Lset7638 -.set Lset7639, Ltmp5079-Lfunc_begin0 - .quad Lset7639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7640, Ltmp5114-Lfunc_begin0 - .quad Lset7640 -.set Lset7641, Ltmp5115-Lfunc_begin0 - .quad Lset7641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7642, Ltmp5146-Lfunc_begin0 - .quad Lset7642 -.set Lset7643, Ltmp5147-Lfunc_begin0 - .quad Lset7643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7644, Ltmp5178-Lfunc_begin0 - .quad Lset7644 -.set Lset7645, Ltmp5179-Lfunc_begin0 - .quad Lset7645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7646, Ltmp5210-Lfunc_begin0 - .quad Lset7646 -.set Lset7647, Ltmp5211-Lfunc_begin0 - .quad Lset7647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7648, Ltmp5228-Lfunc_begin0 - .quad Lset7648 -.set Lset7649, Ltmp5229-Lfunc_begin0 - .quad Lset7649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7650, Ltmp5246-Lfunc_begin0 - .quad Lset7650 -.set Lset7651, Ltmp5247-Lfunc_begin0 - .quad Lset7651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7652, Ltmp5271-Lfunc_begin0 - .quad Lset7652 -.set Lset7653, Ltmp5272-Lfunc_begin0 - .quad Lset7653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7654, Ltmp5296-Lfunc_begin0 - .quad Lset7654 -.set Lset7655, Ltmp5297-Lfunc_begin0 - .quad Lset7655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7656, Ltmp5322-Lfunc_begin0 - .quad Lset7656 -.set Lset7657, Ltmp5323-Lfunc_begin0 - .quad Lset7657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7658, Ltmp5347-Lfunc_begin0 - .quad Lset7658 -.set Lset7659, Ltmp5348-Lfunc_begin0 - .quad Lset7659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7660, Ltmp5372-Lfunc_begin0 - .quad Lset7660 -.set Lset7661, Ltmp5373-Lfunc_begin0 - .quad Lset7661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7662, Ltmp5397-Lfunc_begin0 - .quad Lset7662 -.set Lset7663, Ltmp5398-Lfunc_begin0 - .quad Lset7663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7664, Ltmp5422-Lfunc_begin0 - .quad Lset7664 -.set Lset7665, Ltmp5423-Lfunc_begin0 - .quad Lset7665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7666, Ltmp5447-Lfunc_begin0 - .quad Lset7666 -.set Lset7667, Ltmp5448-Lfunc_begin0 - .quad Lset7667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7668, Ltmp5472-Lfunc_begin0 - .quad Lset7668 -.set Lset7669, Ltmp5473-Lfunc_begin0 - .quad Lset7669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7670, Ltmp5498-Lfunc_begin0 - .quad Lset7670 -.set Lset7671, Ltmp5499-Lfunc_begin0 - .quad Lset7671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7672, Ltmp5523-Lfunc_begin0 - .quad Lset7672 -.set Lset7673, Ltmp5524-Lfunc_begin0 - .quad Lset7673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7674, Ltmp5548-Lfunc_begin0 - .quad Lset7674 -.set Lset7675, Ltmp5549-Lfunc_begin0 - .quad Lset7675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7676, Ltmp5573-Lfunc_begin0 - .quad Lset7676 -.set Lset7677, Ltmp5574-Lfunc_begin0 - .quad Lset7677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7678, Ltmp5598-Lfunc_begin0 - .quad Lset7678 -.set Lset7679, Ltmp5599-Lfunc_begin0 - .quad Lset7679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7680, Ltmp5631-Lfunc_begin0 - .quad Lset7680 -.set Lset7681, Ltmp5632-Lfunc_begin0 - .quad Lset7681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7682, Ltmp5662-Lfunc_begin0 - .quad Lset7682 -.set Lset7683, Ltmp5663-Lfunc_begin0 - .quad Lset7683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7684, Ltmp5687-Lfunc_begin0 - .quad Lset7684 -.set Lset7685, Ltmp5688-Lfunc_begin0 - .quad Lset7685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7686, Ltmp5712-Lfunc_begin0 - .quad Lset7686 -.set Lset7687, Ltmp5713-Lfunc_begin0 - .quad Lset7687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7688, Ltmp5737-Lfunc_begin0 - .quad Lset7688 -.set Lset7689, Ltmp5738-Lfunc_begin0 - .quad Lset7689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7690, Ltmp5767-Lfunc_begin0 - .quad Lset7690 -.set Lset7691, Ltmp5768-Lfunc_begin0 - .quad Lset7691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7692, Ltmp5795-Lfunc_begin0 - .quad Lset7692 -.set Lset7693, Ltmp5796-Lfunc_begin0 - .quad Lset7693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7694, Ltmp5814-Lfunc_begin0 - .quad Lset7694 -.set Lset7695, Ltmp5815-Lfunc_begin0 - .quad Lset7695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7696, Ltmp5833-Lfunc_begin0 - .quad Lset7696 -.set Lset7697, Ltmp5834-Lfunc_begin0 - .quad Lset7697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7698, Ltmp5852-Lfunc_begin0 - .quad Lset7698 -.set Lset7699, Ltmp5853-Lfunc_begin0 - .quad Lset7699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7700, Ltmp5871-Lfunc_begin0 - .quad Lset7700 -.set Lset7701, Ltmp5872-Lfunc_begin0 - .quad Lset7701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7702, Ltmp5890-Lfunc_begin0 - .quad Lset7702 -.set Lset7703, Ltmp5891-Lfunc_begin0 - .quad Lset7703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7704, Ltmp5920-Lfunc_begin0 - .quad Lset7704 -.set Lset7705, Ltmp5921-Lfunc_begin0 - .quad Lset7705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc205: -.set Lset7706, Ltmp1186-Lfunc_begin0 - .quad Lset7706 -.set Lset7707, Ltmp1187-Lfunc_begin0 - .quad Lset7707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7708, Ltmp1215-Lfunc_begin0 - .quad Lset7708 -.set Lset7709, Ltmp1216-Lfunc_begin0 - .quad Lset7709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7710, Ltmp1237-Lfunc_begin0 - .quad Lset7710 -.set Lset7711, Ltmp1238-Lfunc_begin0 - .quad Lset7711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7712, Ltmp1260-Lfunc_begin0 - .quad Lset7712 -.set Lset7713, Ltmp1261-Lfunc_begin0 - .quad Lset7713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7714, Ltmp1281-Lfunc_begin0 - .quad Lset7714 -.set Lset7715, Ltmp1282-Lfunc_begin0 - .quad Lset7715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7716, Ltmp1314-Lfunc_begin0 - .quad Lset7716 -.set Lset7717, Ltmp1315-Lfunc_begin0 - .quad Lset7717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7718, Ltmp1338-Lfunc_begin0 - .quad Lset7718 -.set Lset7719, Ltmp1339-Lfunc_begin0 - .quad Lset7719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7720, Ltmp1368-Lfunc_begin0 - .quad Lset7720 -.set Lset7721, Ltmp1369-Lfunc_begin0 - .quad Lset7721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7722, Ltmp1462-Lfunc_begin0 - .quad Lset7722 -.set Lset7723, Ltmp1464-Lfunc_begin0 - .quad Lset7723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7724, Ltmp1557-Lfunc_begin0 - .quad Lset7724 -.set Lset7725, Ltmp1559-Lfunc_begin0 - .quad Lset7725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7726, Ltmp1713-Lfunc_begin0 - .quad Lset7726 -.set Lset7727, Ltmp1715-Lfunc_begin0 - .quad Lset7727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7728, Ltmp1864-Lfunc_begin0 - .quad Lset7728 -.set Lset7729, Ltmp1866-Lfunc_begin0 - .quad Lset7729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7730, Ltmp2004-Lfunc_begin0 - .quad Lset7730 -.set Lset7731, Ltmp2006-Lfunc_begin0 - .quad Lset7731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7732, Ltmp2074-Lfunc_begin0 - .quad Lset7732 -.set Lset7733, Ltmp2076-Lfunc_begin0 - .quad Lset7733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7734, Ltmp2120-Lfunc_begin0 - .quad Lset7734 -.set Lset7735, Ltmp2121-Lfunc_begin0 - .quad Lset7735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7736, Ltmp2193-Lfunc_begin0 - .quad Lset7736 -.set Lset7737, Ltmp2195-Lfunc_begin0 - .quad Lset7737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7738, Ltmp2253-Lfunc_begin0 - .quad Lset7738 -.set Lset7739, Ltmp2255-Lfunc_begin0 - .quad Lset7739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7740, Ltmp2302-Lfunc_begin0 - .quad Lset7740 -.set Lset7741, Ltmp2304-Lfunc_begin0 - .quad Lset7741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7742, Ltmp2351-Lfunc_begin0 - .quad Lset7742 -.set Lset7743, Ltmp2353-Lfunc_begin0 - .quad Lset7743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7744, Ltmp2400-Lfunc_begin0 - .quad Lset7744 -.set Lset7745, Ltmp2402-Lfunc_begin0 - .quad Lset7745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7746, Ltmp2444-Lfunc_begin0 - .quad Lset7746 -.set Lset7747, Ltmp2446-Lfunc_begin0 - .quad Lset7747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7748, Ltmp2499-Lfunc_begin0 - .quad Lset7748 -.set Lset7749, Ltmp2501-Lfunc_begin0 - .quad Lset7749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7750, Ltmp2554-Lfunc_begin0 - .quad Lset7750 -.set Lset7751, Ltmp2556-Lfunc_begin0 - .quad Lset7751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7752, Ltmp2609-Lfunc_begin0 - .quad Lset7752 -.set Lset7753, Ltmp2611-Lfunc_begin0 - .quad Lset7753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7754, Ltmp2673-Lfunc_begin0 - .quad Lset7754 -.set Lset7755, Ltmp2675-Lfunc_begin0 - .quad Lset7755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7756, Ltmp2738-Lfunc_begin0 - .quad Lset7756 -.set Lset7757, Ltmp2740-Lfunc_begin0 - .quad Lset7757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7758, Ltmp2811-Lfunc_begin0 - .quad Lset7758 -.set Lset7759, Ltmp2813-Lfunc_begin0 - .quad Lset7759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7760, Ltmp2871-Lfunc_begin0 - .quad Lset7760 -.set Lset7761, Ltmp2873-Lfunc_begin0 - .quad Lset7761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7762, Ltmp2922-Lfunc_begin0 - .quad Lset7762 -.set Lset7763, Ltmp2924-Lfunc_begin0 - .quad Lset7763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7764, Ltmp2957-Lfunc_begin0 - .quad Lset7764 -.set Lset7765, Ltmp2958-Lfunc_begin0 - .quad Lset7765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7766, Ltmp2997-Lfunc_begin0 - .quad Lset7766 -.set Lset7767, Ltmp2999-Lfunc_begin0 - .quad Lset7767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7768, Ltmp3024-Lfunc_begin0 - .quad Lset7768 -.set Lset7769, Ltmp3025-Lfunc_begin0 - .quad Lset7769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7770, Ltmp3047-Lfunc_begin0 - .quad Lset7770 -.set Lset7771, Ltmp3048-Lfunc_begin0 - .quad Lset7771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7772, Ltmp3096-Lfunc_begin0 - .quad Lset7772 -.set Lset7773, Ltmp3097-Lfunc_begin0 - .quad Lset7773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7774, Ltmp3120-Lfunc_begin0 - .quad Lset7774 -.set Lset7775, Ltmp3122-Lfunc_begin0 - .quad Lset7775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7776, Ltmp3161-Lfunc_begin0 - .quad Lset7776 -.set Lset7777, Ltmp3163-Lfunc_begin0 - .quad Lset7777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7778, Ltmp3227-Lfunc_begin0 - .quad Lset7778 -.set Lset7779, Ltmp3228-Lfunc_begin0 - .quad Lset7779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7780, Ltmp3292-Lfunc_begin0 - .quad Lset7780 -.set Lset7781, Ltmp3293-Lfunc_begin0 - .quad Lset7781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7782, Ltmp3329-Lfunc_begin0 - .quad Lset7782 -.set Lset7783, Ltmp3330-Lfunc_begin0 - .quad Lset7783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7784, Ltmp3375-Lfunc_begin0 - .quad Lset7784 -.set Lset7785, Ltmp3376-Lfunc_begin0 - .quad Lset7785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7786, Ltmp3407-Lfunc_begin0 - .quad Lset7786 -.set Lset7787, Ltmp3408-Lfunc_begin0 - .quad Lset7787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7788, Ltmp3435-Lfunc_begin0 - .quad Lset7788 -.set Lset7789, Ltmp3436-Lfunc_begin0 - .quad Lset7789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7790, Ltmp3537-Lfunc_begin0 - .quad Lset7790 -.set Lset7791, Ltmp3538-Lfunc_begin0 - .quad Lset7791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7792, Ltmp3638-Lfunc_begin0 - .quad Lset7792 -.set Lset7793, Ltmp3640-Lfunc_begin0 - .quad Lset7793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7794, Ltmp3685-Lfunc_begin0 - .quad Lset7794 -.set Lset7795, Ltmp3686-Lfunc_begin0 - .quad Lset7795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7796, Ltmp3807-Lfunc_begin0 - .quad Lset7796 -.set Lset7797, Ltmp3809-Lfunc_begin0 - .quad Lset7797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7798, Ltmp3864-Lfunc_begin0 - .quad Lset7798 -.set Lset7799, Ltmp3865-Lfunc_begin0 - .quad Lset7799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7800, Ltmp3933-Lfunc_begin0 - .quad Lset7800 -.set Lset7801, Ltmp3934-Lfunc_begin0 - .quad Lset7801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7802, Ltmp3959-Lfunc_begin0 - .quad Lset7802 -.set Lset7803, Ltmp3960-Lfunc_begin0 - .quad Lset7803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7804, Ltmp3985-Lfunc_begin0 - .quad Lset7804 -.set Lset7805, Ltmp3986-Lfunc_begin0 - .quad Lset7805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7806, Ltmp4011-Lfunc_begin0 - .quad Lset7806 -.set Lset7807, Ltmp4012-Lfunc_begin0 - .quad Lset7807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7808, Ltmp4046-Lfunc_begin0 - .quad Lset7808 -.set Lset7809, Ltmp4047-Lfunc_begin0 - .quad Lset7809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7810, Ltmp4084-Lfunc_begin0 - .quad Lset7810 -.set Lset7811, Ltmp4085-Lfunc_begin0 - .quad Lset7811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7812, Ltmp4106-Lfunc_begin0 - .quad Lset7812 -.set Lset7813, Ltmp4107-Lfunc_begin0 - .quad Lset7813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7814, Ltmp4146-Lfunc_begin0 - .quad Lset7814 -.set Lset7815, Ltmp4147-Lfunc_begin0 - .quad Lset7815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7816, Ltmp4187-Lfunc_begin0 - .quad Lset7816 -.set Lset7817, Ltmp4188-Lfunc_begin0 - .quad Lset7817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7818, Ltmp4227-Lfunc_begin0 - .quad Lset7818 -.set Lset7819, Ltmp4228-Lfunc_begin0 - .quad Lset7819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7820, Ltmp4268-Lfunc_begin0 - .quad Lset7820 -.set Lset7821, Ltmp4269-Lfunc_begin0 - .quad Lset7821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7822, Ltmp4308-Lfunc_begin0 - .quad Lset7822 -.set Lset7823, Ltmp4309-Lfunc_begin0 - .quad Lset7823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7824, Ltmp4349-Lfunc_begin0 - .quad Lset7824 -.set Lset7825, Ltmp4350-Lfunc_begin0 - .quad Lset7825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7826, Ltmp4380-Lfunc_begin0 - .quad Lset7826 -.set Lset7827, Ltmp4381-Lfunc_begin0 - .quad Lset7827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7828, Ltmp4412-Lfunc_begin0 - .quad Lset7828 -.set Lset7829, Ltmp4414-Lfunc_begin0 - .quad Lset7829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7830, Ltmp4454-Lfunc_begin0 - .quad Lset7830 -.set Lset7831, Ltmp4455-Lfunc_begin0 - .quad Lset7831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7832, Ltmp4495-Lfunc_begin0 - .quad Lset7832 -.set Lset7833, Ltmp4496-Lfunc_begin0 - .quad Lset7833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7834, Ltmp4579-Lfunc_begin0 - .quad Lset7834 -.set Lset7835, Ltmp4581-Lfunc_begin0 - .quad Lset7835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7836, Ltmp4649-Lfunc_begin0 - .quad Lset7836 -.set Lset7837, Ltmp4651-Lfunc_begin0 - .quad Lset7837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7838, Ltmp4717-Lfunc_begin0 - .quad Lset7838 -.set Lset7839, Ltmp4719-Lfunc_begin0 - .quad Lset7839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7840, Ltmp4783-Lfunc_begin0 - .quad Lset7840 -.set Lset7841, Ltmp4784-Lfunc_begin0 - .quad Lset7841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7842, Ltmp4813-Lfunc_begin0 - .quad Lset7842 -.set Lset7843, Ltmp4814-Lfunc_begin0 - .quad Lset7843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7844, Ltmp4843-Lfunc_begin0 - .quad Lset7844 -.set Lset7845, Ltmp4844-Lfunc_begin0 - .quad Lset7845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7846, Ltmp4902-Lfunc_begin0 - .quad Lset7846 -.set Lset7847, Ltmp4903-Lfunc_begin0 - .quad Lset7847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7848, Ltmp4943-Lfunc_begin0 - .quad Lset7848 -.set Lset7849, Ltmp4944-Lfunc_begin0 - .quad Lset7849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7850, Ltmp5000-Lfunc_begin0 - .quad Lset7850 -.set Lset7851, Ltmp5001-Lfunc_begin0 - .quad Lset7851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7852, Ltmp5040-Lfunc_begin0 - .quad Lset7852 -.set Lset7853, Ltmp5041-Lfunc_begin0 - .quad Lset7853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7854, Ltmp5078-Lfunc_begin0 - .quad Lset7854 -.set Lset7855, Ltmp5079-Lfunc_begin0 - .quad Lset7855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7856, Ltmp5114-Lfunc_begin0 - .quad Lset7856 -.set Lset7857, Ltmp5115-Lfunc_begin0 - .quad Lset7857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7858, Ltmp5146-Lfunc_begin0 - .quad Lset7858 -.set Lset7859, Ltmp5147-Lfunc_begin0 - .quad Lset7859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7860, Ltmp5178-Lfunc_begin0 - .quad Lset7860 -.set Lset7861, Ltmp5179-Lfunc_begin0 - .quad Lset7861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7862, Ltmp5210-Lfunc_begin0 - .quad Lset7862 -.set Lset7863, Ltmp5211-Lfunc_begin0 - .quad Lset7863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7864, Ltmp5228-Lfunc_begin0 - .quad Lset7864 -.set Lset7865, Ltmp5229-Lfunc_begin0 - .quad Lset7865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7866, Ltmp5246-Lfunc_begin0 - .quad Lset7866 -.set Lset7867, Ltmp5247-Lfunc_begin0 - .quad Lset7867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7868, Ltmp5271-Lfunc_begin0 - .quad Lset7868 -.set Lset7869, Ltmp5272-Lfunc_begin0 - .quad Lset7869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7870, Ltmp5296-Lfunc_begin0 - .quad Lset7870 -.set Lset7871, Ltmp5297-Lfunc_begin0 - .quad Lset7871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7872, Ltmp5322-Lfunc_begin0 - .quad Lset7872 -.set Lset7873, Ltmp5323-Lfunc_begin0 - .quad Lset7873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7874, Ltmp5347-Lfunc_begin0 - .quad Lset7874 -.set Lset7875, Ltmp5348-Lfunc_begin0 - .quad Lset7875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7876, Ltmp5372-Lfunc_begin0 - .quad Lset7876 -.set Lset7877, Ltmp5373-Lfunc_begin0 - .quad Lset7877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7878, Ltmp5397-Lfunc_begin0 - .quad Lset7878 -.set Lset7879, Ltmp5398-Lfunc_begin0 - .quad Lset7879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7880, Ltmp5422-Lfunc_begin0 - .quad Lset7880 -.set Lset7881, Ltmp5423-Lfunc_begin0 - .quad Lset7881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7882, Ltmp5447-Lfunc_begin0 - .quad Lset7882 -.set Lset7883, Ltmp5448-Lfunc_begin0 - .quad Lset7883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7884, Ltmp5472-Lfunc_begin0 - .quad Lset7884 -.set Lset7885, Ltmp5473-Lfunc_begin0 - .quad Lset7885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7886, Ltmp5498-Lfunc_begin0 - .quad Lset7886 -.set Lset7887, Ltmp5499-Lfunc_begin0 - .quad Lset7887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7888, Ltmp5523-Lfunc_begin0 - .quad Lset7888 -.set Lset7889, Ltmp5524-Lfunc_begin0 - .quad Lset7889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7890, Ltmp5548-Lfunc_begin0 - .quad Lset7890 -.set Lset7891, Ltmp5549-Lfunc_begin0 - .quad Lset7891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7892, Ltmp5573-Lfunc_begin0 - .quad Lset7892 -.set Lset7893, Ltmp5574-Lfunc_begin0 - .quad Lset7893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7894, Ltmp5598-Lfunc_begin0 - .quad Lset7894 -.set Lset7895, Ltmp5599-Lfunc_begin0 - .quad Lset7895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7896, Ltmp5631-Lfunc_begin0 - .quad Lset7896 -.set Lset7897, Ltmp5632-Lfunc_begin0 - .quad Lset7897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7898, Ltmp5662-Lfunc_begin0 - .quad Lset7898 -.set Lset7899, Ltmp5663-Lfunc_begin0 - .quad Lset7899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7900, Ltmp5687-Lfunc_begin0 - .quad Lset7900 -.set Lset7901, Ltmp5688-Lfunc_begin0 - .quad Lset7901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7902, Ltmp5712-Lfunc_begin0 - .quad Lset7902 -.set Lset7903, Ltmp5713-Lfunc_begin0 - .quad Lset7903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7904, Ltmp5737-Lfunc_begin0 - .quad Lset7904 -.set Lset7905, Ltmp5738-Lfunc_begin0 - .quad Lset7905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7906, Ltmp5767-Lfunc_begin0 - .quad Lset7906 -.set Lset7907, Ltmp5768-Lfunc_begin0 - .quad Lset7907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7908, Ltmp5795-Lfunc_begin0 - .quad Lset7908 -.set Lset7909, Ltmp5796-Lfunc_begin0 - .quad Lset7909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7910, Ltmp5814-Lfunc_begin0 - .quad Lset7910 -.set Lset7911, Ltmp5815-Lfunc_begin0 - .quad Lset7911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7912, Ltmp5833-Lfunc_begin0 - .quad Lset7912 -.set Lset7913, Ltmp5834-Lfunc_begin0 - .quad Lset7913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7914, Ltmp5852-Lfunc_begin0 - .quad Lset7914 -.set Lset7915, Ltmp5853-Lfunc_begin0 - .quad Lset7915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7916, Ltmp5871-Lfunc_begin0 - .quad Lset7916 -.set Lset7917, Ltmp5872-Lfunc_begin0 - .quad Lset7917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7918, Ltmp5890-Lfunc_begin0 - .quad Lset7918 -.set Lset7919, Ltmp5891-Lfunc_begin0 - .quad Lset7919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7920, Ltmp5920-Lfunc_begin0 - .quad Lset7920 -.set Lset7921, Ltmp5921-Lfunc_begin0 - .quad Lset7921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc206: -.set Lset7922, Ltmp1186-Lfunc_begin0 - .quad Lset7922 -.set Lset7923, Ltmp1187-Lfunc_begin0 - .quad Lset7923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7924, Ltmp1215-Lfunc_begin0 - .quad Lset7924 -.set Lset7925, Ltmp1216-Lfunc_begin0 - .quad Lset7925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7926, Ltmp1237-Lfunc_begin0 - .quad Lset7926 -.set Lset7927, Ltmp1238-Lfunc_begin0 - .quad Lset7927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7928, Ltmp1260-Lfunc_begin0 - .quad Lset7928 -.set Lset7929, Ltmp1261-Lfunc_begin0 - .quad Lset7929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7930, Ltmp1281-Lfunc_begin0 - .quad Lset7930 -.set Lset7931, Ltmp1282-Lfunc_begin0 - .quad Lset7931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7932, Ltmp1314-Lfunc_begin0 - .quad Lset7932 -.set Lset7933, Ltmp1315-Lfunc_begin0 - .quad Lset7933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7934, Ltmp1338-Lfunc_begin0 - .quad Lset7934 -.set Lset7935, Ltmp1339-Lfunc_begin0 - .quad Lset7935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7936, Ltmp1368-Lfunc_begin0 - .quad Lset7936 -.set Lset7937, Ltmp1369-Lfunc_begin0 - .quad Lset7937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7938, Ltmp1462-Lfunc_begin0 - .quad Lset7938 -.set Lset7939, Ltmp1464-Lfunc_begin0 - .quad Lset7939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7940, Ltmp1557-Lfunc_begin0 - .quad Lset7940 -.set Lset7941, Ltmp1559-Lfunc_begin0 - .quad Lset7941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7942, Ltmp1713-Lfunc_begin0 - .quad Lset7942 -.set Lset7943, Ltmp1715-Lfunc_begin0 - .quad Lset7943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7944, Ltmp1864-Lfunc_begin0 - .quad Lset7944 -.set Lset7945, Ltmp1866-Lfunc_begin0 - .quad Lset7945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7946, Ltmp2004-Lfunc_begin0 - .quad Lset7946 -.set Lset7947, Ltmp2006-Lfunc_begin0 - .quad Lset7947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7948, Ltmp2074-Lfunc_begin0 - .quad Lset7948 -.set Lset7949, Ltmp2076-Lfunc_begin0 - .quad Lset7949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7950, Ltmp2120-Lfunc_begin0 - .quad Lset7950 -.set Lset7951, Ltmp2121-Lfunc_begin0 - .quad Lset7951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7952, Ltmp2193-Lfunc_begin0 - .quad Lset7952 -.set Lset7953, Ltmp2195-Lfunc_begin0 - .quad Lset7953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7954, Ltmp2253-Lfunc_begin0 - .quad Lset7954 -.set Lset7955, Ltmp2255-Lfunc_begin0 - .quad Lset7955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7956, Ltmp2302-Lfunc_begin0 - .quad Lset7956 -.set Lset7957, Ltmp2304-Lfunc_begin0 - .quad Lset7957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7958, Ltmp2351-Lfunc_begin0 - .quad Lset7958 -.set Lset7959, Ltmp2353-Lfunc_begin0 - .quad Lset7959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7960, Ltmp2400-Lfunc_begin0 - .quad Lset7960 -.set Lset7961, Ltmp2402-Lfunc_begin0 - .quad Lset7961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7962, Ltmp2444-Lfunc_begin0 - .quad Lset7962 -.set Lset7963, Ltmp2446-Lfunc_begin0 - .quad Lset7963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7964, Ltmp2499-Lfunc_begin0 - .quad Lset7964 -.set Lset7965, Ltmp2501-Lfunc_begin0 - .quad Lset7965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7966, Ltmp2554-Lfunc_begin0 - .quad Lset7966 -.set Lset7967, Ltmp2556-Lfunc_begin0 - .quad Lset7967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7968, Ltmp2609-Lfunc_begin0 - .quad Lset7968 -.set Lset7969, Ltmp2611-Lfunc_begin0 - .quad Lset7969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7970, Ltmp2673-Lfunc_begin0 - .quad Lset7970 -.set Lset7971, Ltmp2675-Lfunc_begin0 - .quad Lset7971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7972, Ltmp2738-Lfunc_begin0 - .quad Lset7972 -.set Lset7973, Ltmp2740-Lfunc_begin0 - .quad Lset7973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7974, Ltmp2811-Lfunc_begin0 - .quad Lset7974 -.set Lset7975, Ltmp2813-Lfunc_begin0 - .quad Lset7975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7976, Ltmp2871-Lfunc_begin0 - .quad Lset7976 -.set Lset7977, Ltmp2873-Lfunc_begin0 - .quad Lset7977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7978, Ltmp2922-Lfunc_begin0 - .quad Lset7978 -.set Lset7979, Ltmp2924-Lfunc_begin0 - .quad Lset7979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7980, Ltmp2957-Lfunc_begin0 - .quad Lset7980 -.set Lset7981, Ltmp2958-Lfunc_begin0 - .quad Lset7981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7982, Ltmp2997-Lfunc_begin0 - .quad Lset7982 -.set Lset7983, Ltmp2999-Lfunc_begin0 - .quad Lset7983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7984, Ltmp3024-Lfunc_begin0 - .quad Lset7984 -.set Lset7985, Ltmp3025-Lfunc_begin0 - .quad Lset7985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7986, Ltmp3047-Lfunc_begin0 - .quad Lset7986 -.set Lset7987, Ltmp3048-Lfunc_begin0 - .quad Lset7987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7988, Ltmp3096-Lfunc_begin0 - .quad Lset7988 -.set Lset7989, Ltmp3097-Lfunc_begin0 - .quad Lset7989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7990, Ltmp3120-Lfunc_begin0 - .quad Lset7990 -.set Lset7991, Ltmp3122-Lfunc_begin0 - .quad Lset7991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7992, Ltmp3161-Lfunc_begin0 - .quad Lset7992 -.set Lset7993, Ltmp3163-Lfunc_begin0 - .quad Lset7993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7994, Ltmp3227-Lfunc_begin0 - .quad Lset7994 -.set Lset7995, Ltmp3228-Lfunc_begin0 - .quad Lset7995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7996, Ltmp3292-Lfunc_begin0 - .quad Lset7996 -.set Lset7997, Ltmp3293-Lfunc_begin0 - .quad Lset7997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset7998, Ltmp3329-Lfunc_begin0 - .quad Lset7998 -.set Lset7999, Ltmp3330-Lfunc_begin0 - .quad Lset7999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8000, Ltmp3375-Lfunc_begin0 - .quad Lset8000 -.set Lset8001, Ltmp3376-Lfunc_begin0 - .quad Lset8001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8002, Ltmp3407-Lfunc_begin0 - .quad Lset8002 -.set Lset8003, Ltmp3408-Lfunc_begin0 - .quad Lset8003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8004, Ltmp3435-Lfunc_begin0 - .quad Lset8004 -.set Lset8005, Ltmp3436-Lfunc_begin0 - .quad Lset8005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8006, Ltmp3537-Lfunc_begin0 - .quad Lset8006 -.set Lset8007, Ltmp3538-Lfunc_begin0 - .quad Lset8007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8008, Ltmp3638-Lfunc_begin0 - .quad Lset8008 -.set Lset8009, Ltmp3640-Lfunc_begin0 - .quad Lset8009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8010, Ltmp3685-Lfunc_begin0 - .quad Lset8010 -.set Lset8011, Ltmp3686-Lfunc_begin0 - .quad Lset8011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8012, Ltmp3807-Lfunc_begin0 - .quad Lset8012 -.set Lset8013, Ltmp3809-Lfunc_begin0 - .quad Lset8013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8014, Ltmp3864-Lfunc_begin0 - .quad Lset8014 -.set Lset8015, Ltmp3865-Lfunc_begin0 - .quad Lset8015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8016, Ltmp3933-Lfunc_begin0 - .quad Lset8016 -.set Lset8017, Ltmp3934-Lfunc_begin0 - .quad Lset8017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8018, Ltmp3959-Lfunc_begin0 - .quad Lset8018 -.set Lset8019, Ltmp3960-Lfunc_begin0 - .quad Lset8019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8020, Ltmp3985-Lfunc_begin0 - .quad Lset8020 -.set Lset8021, Ltmp3986-Lfunc_begin0 - .quad Lset8021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8022, Ltmp4011-Lfunc_begin0 - .quad Lset8022 -.set Lset8023, Ltmp4012-Lfunc_begin0 - .quad Lset8023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8024, Ltmp4046-Lfunc_begin0 - .quad Lset8024 -.set Lset8025, Ltmp4047-Lfunc_begin0 - .quad Lset8025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8026, Ltmp4084-Lfunc_begin0 - .quad Lset8026 -.set Lset8027, Ltmp4085-Lfunc_begin0 - .quad Lset8027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8028, Ltmp4106-Lfunc_begin0 - .quad Lset8028 -.set Lset8029, Ltmp4107-Lfunc_begin0 - .quad Lset8029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8030, Ltmp4146-Lfunc_begin0 - .quad Lset8030 -.set Lset8031, Ltmp4147-Lfunc_begin0 - .quad Lset8031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8032, Ltmp4187-Lfunc_begin0 - .quad Lset8032 -.set Lset8033, Ltmp4188-Lfunc_begin0 - .quad Lset8033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8034, Ltmp4227-Lfunc_begin0 - .quad Lset8034 -.set Lset8035, Ltmp4228-Lfunc_begin0 - .quad Lset8035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8036, Ltmp4268-Lfunc_begin0 - .quad Lset8036 -.set Lset8037, Ltmp4269-Lfunc_begin0 - .quad Lset8037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8038, Ltmp4308-Lfunc_begin0 - .quad Lset8038 -.set Lset8039, Ltmp4309-Lfunc_begin0 - .quad Lset8039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8040, Ltmp4349-Lfunc_begin0 - .quad Lset8040 -.set Lset8041, Ltmp4350-Lfunc_begin0 - .quad Lset8041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8042, Ltmp4380-Lfunc_begin0 - .quad Lset8042 -.set Lset8043, Ltmp4381-Lfunc_begin0 - .quad Lset8043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8044, Ltmp4412-Lfunc_begin0 - .quad Lset8044 -.set Lset8045, Ltmp4414-Lfunc_begin0 - .quad Lset8045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8046, Ltmp4454-Lfunc_begin0 - .quad Lset8046 -.set Lset8047, Ltmp4455-Lfunc_begin0 - .quad Lset8047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8048, Ltmp4495-Lfunc_begin0 - .quad Lset8048 -.set Lset8049, Ltmp4496-Lfunc_begin0 - .quad Lset8049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8050, Ltmp4579-Lfunc_begin0 - .quad Lset8050 -.set Lset8051, Ltmp4581-Lfunc_begin0 - .quad Lset8051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8052, Ltmp4649-Lfunc_begin0 - .quad Lset8052 -.set Lset8053, Ltmp4651-Lfunc_begin0 - .quad Lset8053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8054, Ltmp4717-Lfunc_begin0 - .quad Lset8054 -.set Lset8055, Ltmp4719-Lfunc_begin0 - .quad Lset8055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8056, Ltmp4783-Lfunc_begin0 - .quad Lset8056 -.set Lset8057, Ltmp4784-Lfunc_begin0 - .quad Lset8057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8058, Ltmp4813-Lfunc_begin0 - .quad Lset8058 -.set Lset8059, Ltmp4814-Lfunc_begin0 - .quad Lset8059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8060, Ltmp4843-Lfunc_begin0 - .quad Lset8060 -.set Lset8061, Ltmp4844-Lfunc_begin0 - .quad Lset8061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8062, Ltmp4902-Lfunc_begin0 - .quad Lset8062 -.set Lset8063, Ltmp4903-Lfunc_begin0 - .quad Lset8063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8064, Ltmp4943-Lfunc_begin0 - .quad Lset8064 -.set Lset8065, Ltmp4944-Lfunc_begin0 - .quad Lset8065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8066, Ltmp5000-Lfunc_begin0 - .quad Lset8066 -.set Lset8067, Ltmp5001-Lfunc_begin0 - .quad Lset8067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8068, Ltmp5040-Lfunc_begin0 - .quad Lset8068 -.set Lset8069, Ltmp5041-Lfunc_begin0 - .quad Lset8069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8070, Ltmp5078-Lfunc_begin0 - .quad Lset8070 -.set Lset8071, Ltmp5079-Lfunc_begin0 - .quad Lset8071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8072, Ltmp5114-Lfunc_begin0 - .quad Lset8072 -.set Lset8073, Ltmp5115-Lfunc_begin0 - .quad Lset8073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8074, Ltmp5146-Lfunc_begin0 - .quad Lset8074 -.set Lset8075, Ltmp5147-Lfunc_begin0 - .quad Lset8075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8076, Ltmp5178-Lfunc_begin0 - .quad Lset8076 -.set Lset8077, Ltmp5179-Lfunc_begin0 - .quad Lset8077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8078, Ltmp5210-Lfunc_begin0 - .quad Lset8078 -.set Lset8079, Ltmp5211-Lfunc_begin0 - .quad Lset8079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8080, Ltmp5228-Lfunc_begin0 - .quad Lset8080 -.set Lset8081, Ltmp5229-Lfunc_begin0 - .quad Lset8081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8082, Ltmp5246-Lfunc_begin0 - .quad Lset8082 -.set Lset8083, Ltmp5247-Lfunc_begin0 - .quad Lset8083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8084, Ltmp5271-Lfunc_begin0 - .quad Lset8084 -.set Lset8085, Ltmp5272-Lfunc_begin0 - .quad Lset8085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8086, Ltmp5296-Lfunc_begin0 - .quad Lset8086 -.set Lset8087, Ltmp5297-Lfunc_begin0 - .quad Lset8087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8088, Ltmp5322-Lfunc_begin0 - .quad Lset8088 -.set Lset8089, Ltmp5323-Lfunc_begin0 - .quad Lset8089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8090, Ltmp5347-Lfunc_begin0 - .quad Lset8090 -.set Lset8091, Ltmp5348-Lfunc_begin0 - .quad Lset8091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8092, Ltmp5372-Lfunc_begin0 - .quad Lset8092 -.set Lset8093, Ltmp5373-Lfunc_begin0 - .quad Lset8093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8094, Ltmp5397-Lfunc_begin0 - .quad Lset8094 -.set Lset8095, Ltmp5398-Lfunc_begin0 - .quad Lset8095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8096, Ltmp5422-Lfunc_begin0 - .quad Lset8096 -.set Lset8097, Ltmp5423-Lfunc_begin0 - .quad Lset8097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8098, Ltmp5447-Lfunc_begin0 - .quad Lset8098 -.set Lset8099, Ltmp5448-Lfunc_begin0 - .quad Lset8099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8100, Ltmp5472-Lfunc_begin0 - .quad Lset8100 -.set Lset8101, Ltmp5473-Lfunc_begin0 - .quad Lset8101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8102, Ltmp5498-Lfunc_begin0 - .quad Lset8102 -.set Lset8103, Ltmp5499-Lfunc_begin0 - .quad Lset8103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8104, Ltmp5523-Lfunc_begin0 - .quad Lset8104 -.set Lset8105, Ltmp5524-Lfunc_begin0 - .quad Lset8105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8106, Ltmp5548-Lfunc_begin0 - .quad Lset8106 -.set Lset8107, Ltmp5549-Lfunc_begin0 - .quad Lset8107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8108, Ltmp5573-Lfunc_begin0 - .quad Lset8108 -.set Lset8109, Ltmp5574-Lfunc_begin0 - .quad Lset8109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8110, Ltmp5598-Lfunc_begin0 - .quad Lset8110 -.set Lset8111, Ltmp5599-Lfunc_begin0 - .quad Lset8111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8112, Ltmp5631-Lfunc_begin0 - .quad Lset8112 -.set Lset8113, Ltmp5632-Lfunc_begin0 - .quad Lset8113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8114, Ltmp5662-Lfunc_begin0 - .quad Lset8114 -.set Lset8115, Ltmp5663-Lfunc_begin0 - .quad Lset8115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8116, Ltmp5687-Lfunc_begin0 - .quad Lset8116 -.set Lset8117, Ltmp5688-Lfunc_begin0 - .quad Lset8117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8118, Ltmp5712-Lfunc_begin0 - .quad Lset8118 -.set Lset8119, Ltmp5713-Lfunc_begin0 - .quad Lset8119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8120, Ltmp5737-Lfunc_begin0 - .quad Lset8120 -.set Lset8121, Ltmp5738-Lfunc_begin0 - .quad Lset8121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8122, Ltmp5767-Lfunc_begin0 - .quad Lset8122 -.set Lset8123, Ltmp5768-Lfunc_begin0 - .quad Lset8123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8124, Ltmp5795-Lfunc_begin0 - .quad Lset8124 -.set Lset8125, Ltmp5796-Lfunc_begin0 - .quad Lset8125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8126, Ltmp5814-Lfunc_begin0 - .quad Lset8126 -.set Lset8127, Ltmp5815-Lfunc_begin0 - .quad Lset8127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8128, Ltmp5833-Lfunc_begin0 - .quad Lset8128 -.set Lset8129, Ltmp5834-Lfunc_begin0 - .quad Lset8129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8130, Ltmp5852-Lfunc_begin0 - .quad Lset8130 -.set Lset8131, Ltmp5853-Lfunc_begin0 - .quad Lset8131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8132, Ltmp5871-Lfunc_begin0 - .quad Lset8132 -.set Lset8133, Ltmp5872-Lfunc_begin0 - .quad Lset8133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8134, Ltmp5890-Lfunc_begin0 - .quad Lset8134 -.set Lset8135, Ltmp5891-Lfunc_begin0 - .quad Lset8135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8136, Ltmp5920-Lfunc_begin0 - .quad Lset8136 -.set Lset8137, Ltmp5921-Lfunc_begin0 - .quad Lset8137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc207: -.set Lset8138, Ltmp1186-Lfunc_begin0 - .quad Lset8138 -.set Lset8139, Ltmp1187-Lfunc_begin0 - .quad Lset8139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8140, Ltmp1215-Lfunc_begin0 - .quad Lset8140 -.set Lset8141, Ltmp1216-Lfunc_begin0 - .quad Lset8141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8142, Ltmp1237-Lfunc_begin0 - .quad Lset8142 -.set Lset8143, Ltmp1238-Lfunc_begin0 - .quad Lset8143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8144, Ltmp1260-Lfunc_begin0 - .quad Lset8144 -.set Lset8145, Ltmp1261-Lfunc_begin0 - .quad Lset8145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8146, Ltmp1281-Lfunc_begin0 - .quad Lset8146 -.set Lset8147, Ltmp1282-Lfunc_begin0 - .quad Lset8147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8148, Ltmp1314-Lfunc_begin0 - .quad Lset8148 -.set Lset8149, Ltmp1315-Lfunc_begin0 - .quad Lset8149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8150, Ltmp1338-Lfunc_begin0 - .quad Lset8150 -.set Lset8151, Ltmp1339-Lfunc_begin0 - .quad Lset8151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8152, Ltmp1368-Lfunc_begin0 - .quad Lset8152 -.set Lset8153, Ltmp1369-Lfunc_begin0 - .quad Lset8153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8154, Ltmp1462-Lfunc_begin0 - .quad Lset8154 -.set Lset8155, Ltmp1464-Lfunc_begin0 - .quad Lset8155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8156, Ltmp1557-Lfunc_begin0 - .quad Lset8156 -.set Lset8157, Ltmp1559-Lfunc_begin0 - .quad Lset8157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8158, Ltmp1713-Lfunc_begin0 - .quad Lset8158 -.set Lset8159, Ltmp1715-Lfunc_begin0 - .quad Lset8159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8160, Ltmp1864-Lfunc_begin0 - .quad Lset8160 -.set Lset8161, Ltmp1866-Lfunc_begin0 - .quad Lset8161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8162, Ltmp2004-Lfunc_begin0 - .quad Lset8162 -.set Lset8163, Ltmp2006-Lfunc_begin0 - .quad Lset8163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8164, Ltmp2074-Lfunc_begin0 - .quad Lset8164 -.set Lset8165, Ltmp2076-Lfunc_begin0 - .quad Lset8165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8166, Ltmp2120-Lfunc_begin0 - .quad Lset8166 -.set Lset8167, Ltmp2121-Lfunc_begin0 - .quad Lset8167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8168, Ltmp2193-Lfunc_begin0 - .quad Lset8168 -.set Lset8169, Ltmp2195-Lfunc_begin0 - .quad Lset8169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8170, Ltmp2253-Lfunc_begin0 - .quad Lset8170 -.set Lset8171, Ltmp2255-Lfunc_begin0 - .quad Lset8171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8172, Ltmp2302-Lfunc_begin0 - .quad Lset8172 -.set Lset8173, Ltmp2304-Lfunc_begin0 - .quad Lset8173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8174, Ltmp2351-Lfunc_begin0 - .quad Lset8174 -.set Lset8175, Ltmp2353-Lfunc_begin0 - .quad Lset8175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8176, Ltmp2400-Lfunc_begin0 - .quad Lset8176 -.set Lset8177, Ltmp2402-Lfunc_begin0 - .quad Lset8177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8178, Ltmp2444-Lfunc_begin0 - .quad Lset8178 -.set Lset8179, Ltmp2446-Lfunc_begin0 - .quad Lset8179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8180, Ltmp2499-Lfunc_begin0 - .quad Lset8180 -.set Lset8181, Ltmp2501-Lfunc_begin0 - .quad Lset8181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8182, Ltmp2554-Lfunc_begin0 - .quad Lset8182 -.set Lset8183, Ltmp2556-Lfunc_begin0 - .quad Lset8183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8184, Ltmp2609-Lfunc_begin0 - .quad Lset8184 -.set Lset8185, Ltmp2611-Lfunc_begin0 - .quad Lset8185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8186, Ltmp2673-Lfunc_begin0 - .quad Lset8186 -.set Lset8187, Ltmp2675-Lfunc_begin0 - .quad Lset8187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8188, Ltmp2738-Lfunc_begin0 - .quad Lset8188 -.set Lset8189, Ltmp2740-Lfunc_begin0 - .quad Lset8189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8190, Ltmp2811-Lfunc_begin0 - .quad Lset8190 -.set Lset8191, Ltmp2813-Lfunc_begin0 - .quad Lset8191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8192, Ltmp2871-Lfunc_begin0 - .quad Lset8192 -.set Lset8193, Ltmp2873-Lfunc_begin0 - .quad Lset8193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8194, Ltmp2922-Lfunc_begin0 - .quad Lset8194 -.set Lset8195, Ltmp2924-Lfunc_begin0 - .quad Lset8195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8196, Ltmp2957-Lfunc_begin0 - .quad Lset8196 -.set Lset8197, Ltmp2958-Lfunc_begin0 - .quad Lset8197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8198, Ltmp2997-Lfunc_begin0 - .quad Lset8198 -.set Lset8199, Ltmp2999-Lfunc_begin0 - .quad Lset8199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8200, Ltmp3024-Lfunc_begin0 - .quad Lset8200 -.set Lset8201, Ltmp3025-Lfunc_begin0 - .quad Lset8201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8202, Ltmp3047-Lfunc_begin0 - .quad Lset8202 -.set Lset8203, Ltmp3048-Lfunc_begin0 - .quad Lset8203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8204, Ltmp3096-Lfunc_begin0 - .quad Lset8204 -.set Lset8205, Ltmp3097-Lfunc_begin0 - .quad Lset8205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8206, Ltmp3120-Lfunc_begin0 - .quad Lset8206 -.set Lset8207, Ltmp3122-Lfunc_begin0 - .quad Lset8207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8208, Ltmp3161-Lfunc_begin0 - .quad Lset8208 -.set Lset8209, Ltmp3163-Lfunc_begin0 - .quad Lset8209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8210, Ltmp3227-Lfunc_begin0 - .quad Lset8210 -.set Lset8211, Ltmp3228-Lfunc_begin0 - .quad Lset8211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8212, Ltmp3292-Lfunc_begin0 - .quad Lset8212 -.set Lset8213, Ltmp3293-Lfunc_begin0 - .quad Lset8213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8214, Ltmp3329-Lfunc_begin0 - .quad Lset8214 -.set Lset8215, Ltmp3330-Lfunc_begin0 - .quad Lset8215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8216, Ltmp3375-Lfunc_begin0 - .quad Lset8216 -.set Lset8217, Ltmp3376-Lfunc_begin0 - .quad Lset8217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8218, Ltmp3407-Lfunc_begin0 - .quad Lset8218 -.set Lset8219, Ltmp3408-Lfunc_begin0 - .quad Lset8219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8220, Ltmp3435-Lfunc_begin0 - .quad Lset8220 -.set Lset8221, Ltmp3436-Lfunc_begin0 - .quad Lset8221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8222, Ltmp3537-Lfunc_begin0 - .quad Lset8222 -.set Lset8223, Ltmp3538-Lfunc_begin0 - .quad Lset8223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8224, Ltmp3638-Lfunc_begin0 - .quad Lset8224 -.set Lset8225, Ltmp3640-Lfunc_begin0 - .quad Lset8225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8226, Ltmp3685-Lfunc_begin0 - .quad Lset8226 -.set Lset8227, Ltmp3686-Lfunc_begin0 - .quad Lset8227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8228, Ltmp3807-Lfunc_begin0 - .quad Lset8228 -.set Lset8229, Ltmp3809-Lfunc_begin0 - .quad Lset8229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8230, Ltmp3864-Lfunc_begin0 - .quad Lset8230 -.set Lset8231, Ltmp3865-Lfunc_begin0 - .quad Lset8231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8232, Ltmp3933-Lfunc_begin0 - .quad Lset8232 -.set Lset8233, Ltmp3934-Lfunc_begin0 - .quad Lset8233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8234, Ltmp3959-Lfunc_begin0 - .quad Lset8234 -.set Lset8235, Ltmp3960-Lfunc_begin0 - .quad Lset8235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8236, Ltmp3985-Lfunc_begin0 - .quad Lset8236 -.set Lset8237, Ltmp3986-Lfunc_begin0 - .quad Lset8237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8238, Ltmp4011-Lfunc_begin0 - .quad Lset8238 -.set Lset8239, Ltmp4012-Lfunc_begin0 - .quad Lset8239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8240, Ltmp4046-Lfunc_begin0 - .quad Lset8240 -.set Lset8241, Ltmp4047-Lfunc_begin0 - .quad Lset8241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8242, Ltmp4084-Lfunc_begin0 - .quad Lset8242 -.set Lset8243, Ltmp4085-Lfunc_begin0 - .quad Lset8243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8244, Ltmp4106-Lfunc_begin0 - .quad Lset8244 -.set Lset8245, Ltmp4107-Lfunc_begin0 - .quad Lset8245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8246, Ltmp4146-Lfunc_begin0 - .quad Lset8246 -.set Lset8247, Ltmp4147-Lfunc_begin0 - .quad Lset8247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8248, Ltmp4187-Lfunc_begin0 - .quad Lset8248 -.set Lset8249, Ltmp4188-Lfunc_begin0 - .quad Lset8249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8250, Ltmp4227-Lfunc_begin0 - .quad Lset8250 -.set Lset8251, Ltmp4228-Lfunc_begin0 - .quad Lset8251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8252, Ltmp4268-Lfunc_begin0 - .quad Lset8252 -.set Lset8253, Ltmp4269-Lfunc_begin0 - .quad Lset8253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8254, Ltmp4308-Lfunc_begin0 - .quad Lset8254 -.set Lset8255, Ltmp4309-Lfunc_begin0 - .quad Lset8255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8256, Ltmp4349-Lfunc_begin0 - .quad Lset8256 -.set Lset8257, Ltmp4350-Lfunc_begin0 - .quad Lset8257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8258, Ltmp4380-Lfunc_begin0 - .quad Lset8258 -.set Lset8259, Ltmp4381-Lfunc_begin0 - .quad Lset8259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8260, Ltmp4412-Lfunc_begin0 - .quad Lset8260 -.set Lset8261, Ltmp4414-Lfunc_begin0 - .quad Lset8261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8262, Ltmp4454-Lfunc_begin0 - .quad Lset8262 -.set Lset8263, Ltmp4455-Lfunc_begin0 - .quad Lset8263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8264, Ltmp4495-Lfunc_begin0 - .quad Lset8264 -.set Lset8265, Ltmp4496-Lfunc_begin0 - .quad Lset8265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8266, Ltmp4579-Lfunc_begin0 - .quad Lset8266 -.set Lset8267, Ltmp4581-Lfunc_begin0 - .quad Lset8267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8268, Ltmp4649-Lfunc_begin0 - .quad Lset8268 -.set Lset8269, Ltmp4651-Lfunc_begin0 - .quad Lset8269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8270, Ltmp4717-Lfunc_begin0 - .quad Lset8270 -.set Lset8271, Ltmp4719-Lfunc_begin0 - .quad Lset8271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8272, Ltmp4783-Lfunc_begin0 - .quad Lset8272 -.set Lset8273, Ltmp4784-Lfunc_begin0 - .quad Lset8273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8274, Ltmp4813-Lfunc_begin0 - .quad Lset8274 -.set Lset8275, Ltmp4814-Lfunc_begin0 - .quad Lset8275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8276, Ltmp4843-Lfunc_begin0 - .quad Lset8276 -.set Lset8277, Ltmp4844-Lfunc_begin0 - .quad Lset8277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8278, Ltmp4902-Lfunc_begin0 - .quad Lset8278 -.set Lset8279, Ltmp4903-Lfunc_begin0 - .quad Lset8279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8280, Ltmp4943-Lfunc_begin0 - .quad Lset8280 -.set Lset8281, Ltmp4944-Lfunc_begin0 - .quad Lset8281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8282, Ltmp5000-Lfunc_begin0 - .quad Lset8282 -.set Lset8283, Ltmp5001-Lfunc_begin0 - .quad Lset8283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8284, Ltmp5040-Lfunc_begin0 - .quad Lset8284 -.set Lset8285, Ltmp5041-Lfunc_begin0 - .quad Lset8285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8286, Ltmp5078-Lfunc_begin0 - .quad Lset8286 -.set Lset8287, Ltmp5079-Lfunc_begin0 - .quad Lset8287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8288, Ltmp5114-Lfunc_begin0 - .quad Lset8288 -.set Lset8289, Ltmp5115-Lfunc_begin0 - .quad Lset8289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8290, Ltmp5146-Lfunc_begin0 - .quad Lset8290 -.set Lset8291, Ltmp5147-Lfunc_begin0 - .quad Lset8291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8292, Ltmp5178-Lfunc_begin0 - .quad Lset8292 -.set Lset8293, Ltmp5179-Lfunc_begin0 - .quad Lset8293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8294, Ltmp5210-Lfunc_begin0 - .quad Lset8294 -.set Lset8295, Ltmp5211-Lfunc_begin0 - .quad Lset8295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8296, Ltmp5228-Lfunc_begin0 - .quad Lset8296 -.set Lset8297, Ltmp5229-Lfunc_begin0 - .quad Lset8297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8298, Ltmp5246-Lfunc_begin0 - .quad Lset8298 -.set Lset8299, Ltmp5247-Lfunc_begin0 - .quad Lset8299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8300, Ltmp5271-Lfunc_begin0 - .quad Lset8300 -.set Lset8301, Ltmp5272-Lfunc_begin0 - .quad Lset8301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8302, Ltmp5296-Lfunc_begin0 - .quad Lset8302 -.set Lset8303, Ltmp5297-Lfunc_begin0 - .quad Lset8303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8304, Ltmp5322-Lfunc_begin0 - .quad Lset8304 -.set Lset8305, Ltmp5323-Lfunc_begin0 - .quad Lset8305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8306, Ltmp5347-Lfunc_begin0 - .quad Lset8306 -.set Lset8307, Ltmp5348-Lfunc_begin0 - .quad Lset8307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8308, Ltmp5372-Lfunc_begin0 - .quad Lset8308 -.set Lset8309, Ltmp5373-Lfunc_begin0 - .quad Lset8309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8310, Ltmp5397-Lfunc_begin0 - .quad Lset8310 -.set Lset8311, Ltmp5398-Lfunc_begin0 - .quad Lset8311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8312, Ltmp5422-Lfunc_begin0 - .quad Lset8312 -.set Lset8313, Ltmp5423-Lfunc_begin0 - .quad Lset8313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8314, Ltmp5447-Lfunc_begin0 - .quad Lset8314 -.set Lset8315, Ltmp5448-Lfunc_begin0 - .quad Lset8315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8316, Ltmp5472-Lfunc_begin0 - .quad Lset8316 -.set Lset8317, Ltmp5473-Lfunc_begin0 - .quad Lset8317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8318, Ltmp5498-Lfunc_begin0 - .quad Lset8318 -.set Lset8319, Ltmp5499-Lfunc_begin0 - .quad Lset8319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8320, Ltmp5523-Lfunc_begin0 - .quad Lset8320 -.set Lset8321, Ltmp5524-Lfunc_begin0 - .quad Lset8321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8322, Ltmp5548-Lfunc_begin0 - .quad Lset8322 -.set Lset8323, Ltmp5549-Lfunc_begin0 - .quad Lset8323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8324, Ltmp5573-Lfunc_begin0 - .quad Lset8324 -.set Lset8325, Ltmp5574-Lfunc_begin0 - .quad Lset8325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8326, Ltmp5598-Lfunc_begin0 - .quad Lset8326 -.set Lset8327, Ltmp5599-Lfunc_begin0 - .quad Lset8327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8328, Ltmp5631-Lfunc_begin0 - .quad Lset8328 -.set Lset8329, Ltmp5632-Lfunc_begin0 - .quad Lset8329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8330, Ltmp5662-Lfunc_begin0 - .quad Lset8330 -.set Lset8331, Ltmp5663-Lfunc_begin0 - .quad Lset8331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8332, Ltmp5687-Lfunc_begin0 - .quad Lset8332 -.set Lset8333, Ltmp5688-Lfunc_begin0 - .quad Lset8333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8334, Ltmp5712-Lfunc_begin0 - .quad Lset8334 -.set Lset8335, Ltmp5713-Lfunc_begin0 - .quad Lset8335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8336, Ltmp5737-Lfunc_begin0 - .quad Lset8336 -.set Lset8337, Ltmp5738-Lfunc_begin0 - .quad Lset8337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8338, Ltmp5767-Lfunc_begin0 - .quad Lset8338 -.set Lset8339, Ltmp5768-Lfunc_begin0 - .quad Lset8339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8340, Ltmp5795-Lfunc_begin0 - .quad Lset8340 -.set Lset8341, Ltmp5796-Lfunc_begin0 - .quad Lset8341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8342, Ltmp5814-Lfunc_begin0 - .quad Lset8342 -.set Lset8343, Ltmp5815-Lfunc_begin0 - .quad Lset8343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8344, Ltmp5833-Lfunc_begin0 - .quad Lset8344 -.set Lset8345, Ltmp5834-Lfunc_begin0 - .quad Lset8345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8346, Ltmp5852-Lfunc_begin0 - .quad Lset8346 -.set Lset8347, Ltmp5853-Lfunc_begin0 - .quad Lset8347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8348, Ltmp5871-Lfunc_begin0 - .quad Lset8348 -.set Lset8349, Ltmp5872-Lfunc_begin0 - .quad Lset8349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8350, Ltmp5890-Lfunc_begin0 - .quad Lset8350 -.set Lset8351, Ltmp5891-Lfunc_begin0 - .quad Lset8351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8352, Ltmp5920-Lfunc_begin0 - .quad Lset8352 -.set Lset8353, Ltmp5921-Lfunc_begin0 - .quad Lset8353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc208: -.set Lset8354, Ltmp1186-Lfunc_begin0 - .quad Lset8354 -.set Lset8355, Ltmp1187-Lfunc_begin0 - .quad Lset8355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8356, Ltmp1215-Lfunc_begin0 - .quad Lset8356 -.set Lset8357, Ltmp1216-Lfunc_begin0 - .quad Lset8357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8358, Ltmp1237-Lfunc_begin0 - .quad Lset8358 -.set Lset8359, Ltmp1238-Lfunc_begin0 - .quad Lset8359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8360, Ltmp1260-Lfunc_begin0 - .quad Lset8360 -.set Lset8361, Ltmp1261-Lfunc_begin0 - .quad Lset8361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8362, Ltmp1281-Lfunc_begin0 - .quad Lset8362 -.set Lset8363, Ltmp1282-Lfunc_begin0 - .quad Lset8363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8364, Ltmp1314-Lfunc_begin0 - .quad Lset8364 -.set Lset8365, Ltmp1315-Lfunc_begin0 - .quad Lset8365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8366, Ltmp1338-Lfunc_begin0 - .quad Lset8366 -.set Lset8367, Ltmp1339-Lfunc_begin0 - .quad Lset8367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8368, Ltmp1368-Lfunc_begin0 - .quad Lset8368 -.set Lset8369, Ltmp1369-Lfunc_begin0 - .quad Lset8369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8370, Ltmp1462-Lfunc_begin0 - .quad Lset8370 -.set Lset8371, Ltmp1464-Lfunc_begin0 - .quad Lset8371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8372, Ltmp1557-Lfunc_begin0 - .quad Lset8372 -.set Lset8373, Ltmp1559-Lfunc_begin0 - .quad Lset8373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8374, Ltmp1713-Lfunc_begin0 - .quad Lset8374 -.set Lset8375, Ltmp1715-Lfunc_begin0 - .quad Lset8375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8376, Ltmp1864-Lfunc_begin0 - .quad Lset8376 -.set Lset8377, Ltmp1866-Lfunc_begin0 - .quad Lset8377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8378, Ltmp2004-Lfunc_begin0 - .quad Lset8378 -.set Lset8379, Ltmp2006-Lfunc_begin0 - .quad Lset8379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8380, Ltmp2074-Lfunc_begin0 - .quad Lset8380 -.set Lset8381, Ltmp2076-Lfunc_begin0 - .quad Lset8381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8382, Ltmp2120-Lfunc_begin0 - .quad Lset8382 -.set Lset8383, Ltmp2121-Lfunc_begin0 - .quad Lset8383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8384, Ltmp2193-Lfunc_begin0 - .quad Lset8384 -.set Lset8385, Ltmp2195-Lfunc_begin0 - .quad Lset8385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8386, Ltmp2253-Lfunc_begin0 - .quad Lset8386 -.set Lset8387, Ltmp2255-Lfunc_begin0 - .quad Lset8387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8388, Ltmp2302-Lfunc_begin0 - .quad Lset8388 -.set Lset8389, Ltmp2304-Lfunc_begin0 - .quad Lset8389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8390, Ltmp2351-Lfunc_begin0 - .quad Lset8390 -.set Lset8391, Ltmp2353-Lfunc_begin0 - .quad Lset8391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8392, Ltmp2400-Lfunc_begin0 - .quad Lset8392 -.set Lset8393, Ltmp2402-Lfunc_begin0 - .quad Lset8393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8394, Ltmp2444-Lfunc_begin0 - .quad Lset8394 -.set Lset8395, Ltmp2446-Lfunc_begin0 - .quad Lset8395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8396, Ltmp2499-Lfunc_begin0 - .quad Lset8396 -.set Lset8397, Ltmp2501-Lfunc_begin0 - .quad Lset8397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8398, Ltmp2554-Lfunc_begin0 - .quad Lset8398 -.set Lset8399, Ltmp2556-Lfunc_begin0 - .quad Lset8399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8400, Ltmp2609-Lfunc_begin0 - .quad Lset8400 -.set Lset8401, Ltmp2611-Lfunc_begin0 - .quad Lset8401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8402, Ltmp2673-Lfunc_begin0 - .quad Lset8402 -.set Lset8403, Ltmp2675-Lfunc_begin0 - .quad Lset8403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8404, Ltmp2738-Lfunc_begin0 - .quad Lset8404 -.set Lset8405, Ltmp2740-Lfunc_begin0 - .quad Lset8405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8406, Ltmp2811-Lfunc_begin0 - .quad Lset8406 -.set Lset8407, Ltmp2813-Lfunc_begin0 - .quad Lset8407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8408, Ltmp2871-Lfunc_begin0 - .quad Lset8408 -.set Lset8409, Ltmp2873-Lfunc_begin0 - .quad Lset8409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8410, Ltmp2922-Lfunc_begin0 - .quad Lset8410 -.set Lset8411, Ltmp2924-Lfunc_begin0 - .quad Lset8411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8412, Ltmp2957-Lfunc_begin0 - .quad Lset8412 -.set Lset8413, Ltmp2958-Lfunc_begin0 - .quad Lset8413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8414, Ltmp2997-Lfunc_begin0 - .quad Lset8414 -.set Lset8415, Ltmp2999-Lfunc_begin0 - .quad Lset8415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8416, Ltmp3024-Lfunc_begin0 - .quad Lset8416 -.set Lset8417, Ltmp3025-Lfunc_begin0 - .quad Lset8417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8418, Ltmp3047-Lfunc_begin0 - .quad Lset8418 -.set Lset8419, Ltmp3048-Lfunc_begin0 - .quad Lset8419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8420, Ltmp3096-Lfunc_begin0 - .quad Lset8420 -.set Lset8421, Ltmp3097-Lfunc_begin0 - .quad Lset8421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8422, Ltmp3120-Lfunc_begin0 - .quad Lset8422 -.set Lset8423, Ltmp3122-Lfunc_begin0 - .quad Lset8423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8424, Ltmp3161-Lfunc_begin0 - .quad Lset8424 -.set Lset8425, Ltmp3163-Lfunc_begin0 - .quad Lset8425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8426, Ltmp3227-Lfunc_begin0 - .quad Lset8426 -.set Lset8427, Ltmp3228-Lfunc_begin0 - .quad Lset8427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8428, Ltmp3292-Lfunc_begin0 - .quad Lset8428 -.set Lset8429, Ltmp3293-Lfunc_begin0 - .quad Lset8429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8430, Ltmp3329-Lfunc_begin0 - .quad Lset8430 -.set Lset8431, Ltmp3330-Lfunc_begin0 - .quad Lset8431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8432, Ltmp3375-Lfunc_begin0 - .quad Lset8432 -.set Lset8433, Ltmp3376-Lfunc_begin0 - .quad Lset8433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8434, Ltmp3407-Lfunc_begin0 - .quad Lset8434 -.set Lset8435, Ltmp3408-Lfunc_begin0 - .quad Lset8435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8436, Ltmp3435-Lfunc_begin0 - .quad Lset8436 -.set Lset8437, Ltmp3436-Lfunc_begin0 - .quad Lset8437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8438, Ltmp3537-Lfunc_begin0 - .quad Lset8438 -.set Lset8439, Ltmp3538-Lfunc_begin0 - .quad Lset8439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8440, Ltmp3638-Lfunc_begin0 - .quad Lset8440 -.set Lset8441, Ltmp3640-Lfunc_begin0 - .quad Lset8441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8442, Ltmp3685-Lfunc_begin0 - .quad Lset8442 -.set Lset8443, Ltmp3686-Lfunc_begin0 - .quad Lset8443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8444, Ltmp3807-Lfunc_begin0 - .quad Lset8444 -.set Lset8445, Ltmp3809-Lfunc_begin0 - .quad Lset8445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8446, Ltmp3864-Lfunc_begin0 - .quad Lset8446 -.set Lset8447, Ltmp3865-Lfunc_begin0 - .quad Lset8447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8448, Ltmp3933-Lfunc_begin0 - .quad Lset8448 -.set Lset8449, Ltmp3934-Lfunc_begin0 - .quad Lset8449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8450, Ltmp3959-Lfunc_begin0 - .quad Lset8450 -.set Lset8451, Ltmp3960-Lfunc_begin0 - .quad Lset8451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8452, Ltmp3985-Lfunc_begin0 - .quad Lset8452 -.set Lset8453, Ltmp3986-Lfunc_begin0 - .quad Lset8453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8454, Ltmp4011-Lfunc_begin0 - .quad Lset8454 -.set Lset8455, Ltmp4012-Lfunc_begin0 - .quad Lset8455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8456, Ltmp4046-Lfunc_begin0 - .quad Lset8456 -.set Lset8457, Ltmp4047-Lfunc_begin0 - .quad Lset8457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8458, Ltmp4084-Lfunc_begin0 - .quad Lset8458 -.set Lset8459, Ltmp4085-Lfunc_begin0 - .quad Lset8459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8460, Ltmp4106-Lfunc_begin0 - .quad Lset8460 -.set Lset8461, Ltmp4107-Lfunc_begin0 - .quad Lset8461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8462, Ltmp4146-Lfunc_begin0 - .quad Lset8462 -.set Lset8463, Ltmp4147-Lfunc_begin0 - .quad Lset8463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8464, Ltmp4187-Lfunc_begin0 - .quad Lset8464 -.set Lset8465, Ltmp4188-Lfunc_begin0 - .quad Lset8465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8466, Ltmp4227-Lfunc_begin0 - .quad Lset8466 -.set Lset8467, Ltmp4228-Lfunc_begin0 - .quad Lset8467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8468, Ltmp4268-Lfunc_begin0 - .quad Lset8468 -.set Lset8469, Ltmp4269-Lfunc_begin0 - .quad Lset8469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8470, Ltmp4308-Lfunc_begin0 - .quad Lset8470 -.set Lset8471, Ltmp4309-Lfunc_begin0 - .quad Lset8471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8472, Ltmp4349-Lfunc_begin0 - .quad Lset8472 -.set Lset8473, Ltmp4350-Lfunc_begin0 - .quad Lset8473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8474, Ltmp4380-Lfunc_begin0 - .quad Lset8474 -.set Lset8475, Ltmp4381-Lfunc_begin0 - .quad Lset8475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8476, Ltmp4412-Lfunc_begin0 - .quad Lset8476 -.set Lset8477, Ltmp4414-Lfunc_begin0 - .quad Lset8477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8478, Ltmp4454-Lfunc_begin0 - .quad Lset8478 -.set Lset8479, Ltmp4455-Lfunc_begin0 - .quad Lset8479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8480, Ltmp4495-Lfunc_begin0 - .quad Lset8480 -.set Lset8481, Ltmp4496-Lfunc_begin0 - .quad Lset8481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8482, Ltmp4579-Lfunc_begin0 - .quad Lset8482 -.set Lset8483, Ltmp4581-Lfunc_begin0 - .quad Lset8483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8484, Ltmp4649-Lfunc_begin0 - .quad Lset8484 -.set Lset8485, Ltmp4651-Lfunc_begin0 - .quad Lset8485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8486, Ltmp4717-Lfunc_begin0 - .quad Lset8486 -.set Lset8487, Ltmp4719-Lfunc_begin0 - .quad Lset8487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8488, Ltmp4783-Lfunc_begin0 - .quad Lset8488 -.set Lset8489, Ltmp4784-Lfunc_begin0 - .quad Lset8489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8490, Ltmp4813-Lfunc_begin0 - .quad Lset8490 -.set Lset8491, Ltmp4814-Lfunc_begin0 - .quad Lset8491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8492, Ltmp4843-Lfunc_begin0 - .quad Lset8492 -.set Lset8493, Ltmp4844-Lfunc_begin0 - .quad Lset8493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8494, Ltmp4902-Lfunc_begin0 - .quad Lset8494 -.set Lset8495, Ltmp4903-Lfunc_begin0 - .quad Lset8495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8496, Ltmp4943-Lfunc_begin0 - .quad Lset8496 -.set Lset8497, Ltmp4944-Lfunc_begin0 - .quad Lset8497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8498, Ltmp5000-Lfunc_begin0 - .quad Lset8498 -.set Lset8499, Ltmp5001-Lfunc_begin0 - .quad Lset8499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8500, Ltmp5040-Lfunc_begin0 - .quad Lset8500 -.set Lset8501, Ltmp5041-Lfunc_begin0 - .quad Lset8501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8502, Ltmp5078-Lfunc_begin0 - .quad Lset8502 -.set Lset8503, Ltmp5079-Lfunc_begin0 - .quad Lset8503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8504, Ltmp5114-Lfunc_begin0 - .quad Lset8504 -.set Lset8505, Ltmp5115-Lfunc_begin0 - .quad Lset8505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8506, Ltmp5146-Lfunc_begin0 - .quad Lset8506 -.set Lset8507, Ltmp5147-Lfunc_begin0 - .quad Lset8507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8508, Ltmp5178-Lfunc_begin0 - .quad Lset8508 -.set Lset8509, Ltmp5179-Lfunc_begin0 - .quad Lset8509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8510, Ltmp5210-Lfunc_begin0 - .quad Lset8510 -.set Lset8511, Ltmp5211-Lfunc_begin0 - .quad Lset8511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8512, Ltmp5228-Lfunc_begin0 - .quad Lset8512 -.set Lset8513, Ltmp5229-Lfunc_begin0 - .quad Lset8513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8514, Ltmp5246-Lfunc_begin0 - .quad Lset8514 -.set Lset8515, Ltmp5247-Lfunc_begin0 - .quad Lset8515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8516, Ltmp5271-Lfunc_begin0 - .quad Lset8516 -.set Lset8517, Ltmp5272-Lfunc_begin0 - .quad Lset8517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8518, Ltmp5296-Lfunc_begin0 - .quad Lset8518 -.set Lset8519, Ltmp5297-Lfunc_begin0 - .quad Lset8519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8520, Ltmp5322-Lfunc_begin0 - .quad Lset8520 -.set Lset8521, Ltmp5323-Lfunc_begin0 - .quad Lset8521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8522, Ltmp5347-Lfunc_begin0 - .quad Lset8522 -.set Lset8523, Ltmp5348-Lfunc_begin0 - .quad Lset8523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8524, Ltmp5372-Lfunc_begin0 - .quad Lset8524 -.set Lset8525, Ltmp5373-Lfunc_begin0 - .quad Lset8525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8526, Ltmp5397-Lfunc_begin0 - .quad Lset8526 -.set Lset8527, Ltmp5398-Lfunc_begin0 - .quad Lset8527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8528, Ltmp5422-Lfunc_begin0 - .quad Lset8528 -.set Lset8529, Ltmp5423-Lfunc_begin0 - .quad Lset8529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8530, Ltmp5447-Lfunc_begin0 - .quad Lset8530 -.set Lset8531, Ltmp5448-Lfunc_begin0 - .quad Lset8531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8532, Ltmp5472-Lfunc_begin0 - .quad Lset8532 -.set Lset8533, Ltmp5473-Lfunc_begin0 - .quad Lset8533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8534, Ltmp5498-Lfunc_begin0 - .quad Lset8534 -.set Lset8535, Ltmp5499-Lfunc_begin0 - .quad Lset8535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8536, Ltmp5523-Lfunc_begin0 - .quad Lset8536 -.set Lset8537, Ltmp5524-Lfunc_begin0 - .quad Lset8537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8538, Ltmp5548-Lfunc_begin0 - .quad Lset8538 -.set Lset8539, Ltmp5549-Lfunc_begin0 - .quad Lset8539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8540, Ltmp5573-Lfunc_begin0 - .quad Lset8540 -.set Lset8541, Ltmp5574-Lfunc_begin0 - .quad Lset8541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8542, Ltmp5598-Lfunc_begin0 - .quad Lset8542 -.set Lset8543, Ltmp5599-Lfunc_begin0 - .quad Lset8543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8544, Ltmp5631-Lfunc_begin0 - .quad Lset8544 -.set Lset8545, Ltmp5632-Lfunc_begin0 - .quad Lset8545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8546, Ltmp5662-Lfunc_begin0 - .quad Lset8546 -.set Lset8547, Ltmp5663-Lfunc_begin0 - .quad Lset8547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8548, Ltmp5687-Lfunc_begin0 - .quad Lset8548 -.set Lset8549, Ltmp5688-Lfunc_begin0 - .quad Lset8549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8550, Ltmp5712-Lfunc_begin0 - .quad Lset8550 -.set Lset8551, Ltmp5713-Lfunc_begin0 - .quad Lset8551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8552, Ltmp5737-Lfunc_begin0 - .quad Lset8552 -.set Lset8553, Ltmp5738-Lfunc_begin0 - .quad Lset8553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8554, Ltmp5767-Lfunc_begin0 - .quad Lset8554 -.set Lset8555, Ltmp5768-Lfunc_begin0 - .quad Lset8555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8556, Ltmp5795-Lfunc_begin0 - .quad Lset8556 -.set Lset8557, Ltmp5796-Lfunc_begin0 - .quad Lset8557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8558, Ltmp5814-Lfunc_begin0 - .quad Lset8558 -.set Lset8559, Ltmp5815-Lfunc_begin0 - .quad Lset8559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8560, Ltmp5833-Lfunc_begin0 - .quad Lset8560 -.set Lset8561, Ltmp5834-Lfunc_begin0 - .quad Lset8561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8562, Ltmp5852-Lfunc_begin0 - .quad Lset8562 -.set Lset8563, Ltmp5853-Lfunc_begin0 - .quad Lset8563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8564, Ltmp5871-Lfunc_begin0 - .quad Lset8564 -.set Lset8565, Ltmp5872-Lfunc_begin0 - .quad Lset8565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8566, Ltmp5890-Lfunc_begin0 - .quad Lset8566 -.set Lset8567, Ltmp5891-Lfunc_begin0 - .quad Lset8567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8568, Ltmp5920-Lfunc_begin0 - .quad Lset8568 -.set Lset8569, Ltmp5921-Lfunc_begin0 - .quad Lset8569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc209: -.set Lset8570, Ltmp1186-Lfunc_begin0 - .quad Lset8570 -.set Lset8571, Ltmp1187-Lfunc_begin0 - .quad Lset8571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8572, Ltmp1215-Lfunc_begin0 - .quad Lset8572 -.set Lset8573, Ltmp1216-Lfunc_begin0 - .quad Lset8573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8574, Ltmp1237-Lfunc_begin0 - .quad Lset8574 -.set Lset8575, Ltmp1238-Lfunc_begin0 - .quad Lset8575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8576, Ltmp1260-Lfunc_begin0 - .quad Lset8576 -.set Lset8577, Ltmp1261-Lfunc_begin0 - .quad Lset8577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8578, Ltmp1281-Lfunc_begin0 - .quad Lset8578 -.set Lset8579, Ltmp1282-Lfunc_begin0 - .quad Lset8579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8580, Ltmp1314-Lfunc_begin0 - .quad Lset8580 -.set Lset8581, Ltmp1315-Lfunc_begin0 - .quad Lset8581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8582, Ltmp1338-Lfunc_begin0 - .quad Lset8582 -.set Lset8583, Ltmp1339-Lfunc_begin0 - .quad Lset8583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8584, Ltmp1368-Lfunc_begin0 - .quad Lset8584 -.set Lset8585, Ltmp1369-Lfunc_begin0 - .quad Lset8585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8586, Ltmp1462-Lfunc_begin0 - .quad Lset8586 -.set Lset8587, Ltmp1464-Lfunc_begin0 - .quad Lset8587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8588, Ltmp1557-Lfunc_begin0 - .quad Lset8588 -.set Lset8589, Ltmp1559-Lfunc_begin0 - .quad Lset8589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8590, Ltmp1713-Lfunc_begin0 - .quad Lset8590 -.set Lset8591, Ltmp1715-Lfunc_begin0 - .quad Lset8591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8592, Ltmp1864-Lfunc_begin0 - .quad Lset8592 -.set Lset8593, Ltmp1866-Lfunc_begin0 - .quad Lset8593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8594, Ltmp2004-Lfunc_begin0 - .quad Lset8594 -.set Lset8595, Ltmp2006-Lfunc_begin0 - .quad Lset8595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8596, Ltmp2074-Lfunc_begin0 - .quad Lset8596 -.set Lset8597, Ltmp2076-Lfunc_begin0 - .quad Lset8597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8598, Ltmp2120-Lfunc_begin0 - .quad Lset8598 -.set Lset8599, Ltmp2121-Lfunc_begin0 - .quad Lset8599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8600, Ltmp2193-Lfunc_begin0 - .quad Lset8600 -.set Lset8601, Ltmp2195-Lfunc_begin0 - .quad Lset8601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8602, Ltmp2253-Lfunc_begin0 - .quad Lset8602 -.set Lset8603, Ltmp2255-Lfunc_begin0 - .quad Lset8603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8604, Ltmp2302-Lfunc_begin0 - .quad Lset8604 -.set Lset8605, Ltmp2304-Lfunc_begin0 - .quad Lset8605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8606, Ltmp2351-Lfunc_begin0 - .quad Lset8606 -.set Lset8607, Ltmp2353-Lfunc_begin0 - .quad Lset8607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8608, Ltmp2400-Lfunc_begin0 - .quad Lset8608 -.set Lset8609, Ltmp2402-Lfunc_begin0 - .quad Lset8609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8610, Ltmp2444-Lfunc_begin0 - .quad Lset8610 -.set Lset8611, Ltmp2446-Lfunc_begin0 - .quad Lset8611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8612, Ltmp2499-Lfunc_begin0 - .quad Lset8612 -.set Lset8613, Ltmp2501-Lfunc_begin0 - .quad Lset8613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8614, Ltmp2554-Lfunc_begin0 - .quad Lset8614 -.set Lset8615, Ltmp2556-Lfunc_begin0 - .quad Lset8615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8616, Ltmp2609-Lfunc_begin0 - .quad Lset8616 -.set Lset8617, Ltmp2611-Lfunc_begin0 - .quad Lset8617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8618, Ltmp2673-Lfunc_begin0 - .quad Lset8618 -.set Lset8619, Ltmp2675-Lfunc_begin0 - .quad Lset8619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8620, Ltmp2738-Lfunc_begin0 - .quad Lset8620 -.set Lset8621, Ltmp2740-Lfunc_begin0 - .quad Lset8621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8622, Ltmp2811-Lfunc_begin0 - .quad Lset8622 -.set Lset8623, Ltmp2813-Lfunc_begin0 - .quad Lset8623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8624, Ltmp2871-Lfunc_begin0 - .quad Lset8624 -.set Lset8625, Ltmp2873-Lfunc_begin0 - .quad Lset8625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8626, Ltmp2922-Lfunc_begin0 - .quad Lset8626 -.set Lset8627, Ltmp2924-Lfunc_begin0 - .quad Lset8627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8628, Ltmp2957-Lfunc_begin0 - .quad Lset8628 -.set Lset8629, Ltmp2958-Lfunc_begin0 - .quad Lset8629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8630, Ltmp2997-Lfunc_begin0 - .quad Lset8630 -.set Lset8631, Ltmp2999-Lfunc_begin0 - .quad Lset8631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8632, Ltmp3024-Lfunc_begin0 - .quad Lset8632 -.set Lset8633, Ltmp3025-Lfunc_begin0 - .quad Lset8633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8634, Ltmp3047-Lfunc_begin0 - .quad Lset8634 -.set Lset8635, Ltmp3048-Lfunc_begin0 - .quad Lset8635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8636, Ltmp3096-Lfunc_begin0 - .quad Lset8636 -.set Lset8637, Ltmp3097-Lfunc_begin0 - .quad Lset8637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8638, Ltmp3120-Lfunc_begin0 - .quad Lset8638 -.set Lset8639, Ltmp3122-Lfunc_begin0 - .quad Lset8639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8640, Ltmp3161-Lfunc_begin0 - .quad Lset8640 -.set Lset8641, Ltmp3163-Lfunc_begin0 - .quad Lset8641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8642, Ltmp3227-Lfunc_begin0 - .quad Lset8642 -.set Lset8643, Ltmp3228-Lfunc_begin0 - .quad Lset8643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8644, Ltmp3292-Lfunc_begin0 - .quad Lset8644 -.set Lset8645, Ltmp3293-Lfunc_begin0 - .quad Lset8645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8646, Ltmp3329-Lfunc_begin0 - .quad Lset8646 -.set Lset8647, Ltmp3330-Lfunc_begin0 - .quad Lset8647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8648, Ltmp3375-Lfunc_begin0 - .quad Lset8648 -.set Lset8649, Ltmp3376-Lfunc_begin0 - .quad Lset8649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8650, Ltmp3407-Lfunc_begin0 - .quad Lset8650 -.set Lset8651, Ltmp3408-Lfunc_begin0 - .quad Lset8651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8652, Ltmp3435-Lfunc_begin0 - .quad Lset8652 -.set Lset8653, Ltmp3436-Lfunc_begin0 - .quad Lset8653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8654, Ltmp3537-Lfunc_begin0 - .quad Lset8654 -.set Lset8655, Ltmp3538-Lfunc_begin0 - .quad Lset8655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8656, Ltmp3638-Lfunc_begin0 - .quad Lset8656 -.set Lset8657, Ltmp3640-Lfunc_begin0 - .quad Lset8657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8658, Ltmp3685-Lfunc_begin0 - .quad Lset8658 -.set Lset8659, Ltmp3686-Lfunc_begin0 - .quad Lset8659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8660, Ltmp3807-Lfunc_begin0 - .quad Lset8660 -.set Lset8661, Ltmp3809-Lfunc_begin0 - .quad Lset8661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8662, Ltmp3864-Lfunc_begin0 - .quad Lset8662 -.set Lset8663, Ltmp3865-Lfunc_begin0 - .quad Lset8663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8664, Ltmp3933-Lfunc_begin0 - .quad Lset8664 -.set Lset8665, Ltmp3934-Lfunc_begin0 - .quad Lset8665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8666, Ltmp3959-Lfunc_begin0 - .quad Lset8666 -.set Lset8667, Ltmp3960-Lfunc_begin0 - .quad Lset8667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8668, Ltmp3985-Lfunc_begin0 - .quad Lset8668 -.set Lset8669, Ltmp3986-Lfunc_begin0 - .quad Lset8669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8670, Ltmp4011-Lfunc_begin0 - .quad Lset8670 -.set Lset8671, Ltmp4012-Lfunc_begin0 - .quad Lset8671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8672, Ltmp4046-Lfunc_begin0 - .quad Lset8672 -.set Lset8673, Ltmp4047-Lfunc_begin0 - .quad Lset8673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8674, Ltmp4084-Lfunc_begin0 - .quad Lset8674 -.set Lset8675, Ltmp4085-Lfunc_begin0 - .quad Lset8675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8676, Ltmp4106-Lfunc_begin0 - .quad Lset8676 -.set Lset8677, Ltmp4107-Lfunc_begin0 - .quad Lset8677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8678, Ltmp4146-Lfunc_begin0 - .quad Lset8678 -.set Lset8679, Ltmp4147-Lfunc_begin0 - .quad Lset8679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8680, Ltmp4187-Lfunc_begin0 - .quad Lset8680 -.set Lset8681, Ltmp4188-Lfunc_begin0 - .quad Lset8681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8682, Ltmp4227-Lfunc_begin0 - .quad Lset8682 -.set Lset8683, Ltmp4228-Lfunc_begin0 - .quad Lset8683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8684, Ltmp4268-Lfunc_begin0 - .quad Lset8684 -.set Lset8685, Ltmp4269-Lfunc_begin0 - .quad Lset8685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8686, Ltmp4308-Lfunc_begin0 - .quad Lset8686 -.set Lset8687, Ltmp4309-Lfunc_begin0 - .quad Lset8687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8688, Ltmp4349-Lfunc_begin0 - .quad Lset8688 -.set Lset8689, Ltmp4350-Lfunc_begin0 - .quad Lset8689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8690, Ltmp4380-Lfunc_begin0 - .quad Lset8690 -.set Lset8691, Ltmp4381-Lfunc_begin0 - .quad Lset8691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8692, Ltmp4412-Lfunc_begin0 - .quad Lset8692 -.set Lset8693, Ltmp4414-Lfunc_begin0 - .quad Lset8693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8694, Ltmp4454-Lfunc_begin0 - .quad Lset8694 -.set Lset8695, Ltmp4455-Lfunc_begin0 - .quad Lset8695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8696, Ltmp4495-Lfunc_begin0 - .quad Lset8696 -.set Lset8697, Ltmp4496-Lfunc_begin0 - .quad Lset8697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8698, Ltmp4579-Lfunc_begin0 - .quad Lset8698 -.set Lset8699, Ltmp4581-Lfunc_begin0 - .quad Lset8699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8700, Ltmp4649-Lfunc_begin0 - .quad Lset8700 -.set Lset8701, Ltmp4651-Lfunc_begin0 - .quad Lset8701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8702, Ltmp4717-Lfunc_begin0 - .quad Lset8702 -.set Lset8703, Ltmp4719-Lfunc_begin0 - .quad Lset8703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8704, Ltmp4783-Lfunc_begin0 - .quad Lset8704 -.set Lset8705, Ltmp4784-Lfunc_begin0 - .quad Lset8705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8706, Ltmp4813-Lfunc_begin0 - .quad Lset8706 -.set Lset8707, Ltmp4814-Lfunc_begin0 - .quad Lset8707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8708, Ltmp4843-Lfunc_begin0 - .quad Lset8708 -.set Lset8709, Ltmp4844-Lfunc_begin0 - .quad Lset8709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8710, Ltmp4902-Lfunc_begin0 - .quad Lset8710 -.set Lset8711, Ltmp4903-Lfunc_begin0 - .quad Lset8711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8712, Ltmp4943-Lfunc_begin0 - .quad Lset8712 -.set Lset8713, Ltmp4944-Lfunc_begin0 - .quad Lset8713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8714, Ltmp5000-Lfunc_begin0 - .quad Lset8714 -.set Lset8715, Ltmp5001-Lfunc_begin0 - .quad Lset8715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8716, Ltmp5040-Lfunc_begin0 - .quad Lset8716 -.set Lset8717, Ltmp5041-Lfunc_begin0 - .quad Lset8717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8718, Ltmp5078-Lfunc_begin0 - .quad Lset8718 -.set Lset8719, Ltmp5079-Lfunc_begin0 - .quad Lset8719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8720, Ltmp5114-Lfunc_begin0 - .quad Lset8720 -.set Lset8721, Ltmp5115-Lfunc_begin0 - .quad Lset8721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8722, Ltmp5146-Lfunc_begin0 - .quad Lset8722 -.set Lset8723, Ltmp5147-Lfunc_begin0 - .quad Lset8723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8724, Ltmp5178-Lfunc_begin0 - .quad Lset8724 -.set Lset8725, Ltmp5179-Lfunc_begin0 - .quad Lset8725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8726, Ltmp5210-Lfunc_begin0 - .quad Lset8726 -.set Lset8727, Ltmp5211-Lfunc_begin0 - .quad Lset8727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8728, Ltmp5228-Lfunc_begin0 - .quad Lset8728 -.set Lset8729, Ltmp5229-Lfunc_begin0 - .quad Lset8729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8730, Ltmp5246-Lfunc_begin0 - .quad Lset8730 -.set Lset8731, Ltmp5247-Lfunc_begin0 - .quad Lset8731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8732, Ltmp5271-Lfunc_begin0 - .quad Lset8732 -.set Lset8733, Ltmp5272-Lfunc_begin0 - .quad Lset8733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8734, Ltmp5296-Lfunc_begin0 - .quad Lset8734 -.set Lset8735, Ltmp5297-Lfunc_begin0 - .quad Lset8735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8736, Ltmp5322-Lfunc_begin0 - .quad Lset8736 -.set Lset8737, Ltmp5323-Lfunc_begin0 - .quad Lset8737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8738, Ltmp5347-Lfunc_begin0 - .quad Lset8738 -.set Lset8739, Ltmp5348-Lfunc_begin0 - .quad Lset8739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8740, Ltmp5372-Lfunc_begin0 - .quad Lset8740 -.set Lset8741, Ltmp5373-Lfunc_begin0 - .quad Lset8741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8742, Ltmp5397-Lfunc_begin0 - .quad Lset8742 -.set Lset8743, Ltmp5398-Lfunc_begin0 - .quad Lset8743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8744, Ltmp5422-Lfunc_begin0 - .quad Lset8744 -.set Lset8745, Ltmp5423-Lfunc_begin0 - .quad Lset8745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8746, Ltmp5447-Lfunc_begin0 - .quad Lset8746 -.set Lset8747, Ltmp5448-Lfunc_begin0 - .quad Lset8747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8748, Ltmp5472-Lfunc_begin0 - .quad Lset8748 -.set Lset8749, Ltmp5473-Lfunc_begin0 - .quad Lset8749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8750, Ltmp5498-Lfunc_begin0 - .quad Lset8750 -.set Lset8751, Ltmp5499-Lfunc_begin0 - .quad Lset8751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8752, Ltmp5523-Lfunc_begin0 - .quad Lset8752 -.set Lset8753, Ltmp5524-Lfunc_begin0 - .quad Lset8753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8754, Ltmp5548-Lfunc_begin0 - .quad Lset8754 -.set Lset8755, Ltmp5549-Lfunc_begin0 - .quad Lset8755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8756, Ltmp5573-Lfunc_begin0 - .quad Lset8756 -.set Lset8757, Ltmp5574-Lfunc_begin0 - .quad Lset8757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8758, Ltmp5598-Lfunc_begin0 - .quad Lset8758 -.set Lset8759, Ltmp5599-Lfunc_begin0 - .quad Lset8759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8760, Ltmp5631-Lfunc_begin0 - .quad Lset8760 -.set Lset8761, Ltmp5632-Lfunc_begin0 - .quad Lset8761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8762, Ltmp5662-Lfunc_begin0 - .quad Lset8762 -.set Lset8763, Ltmp5663-Lfunc_begin0 - .quad Lset8763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8764, Ltmp5687-Lfunc_begin0 - .quad Lset8764 -.set Lset8765, Ltmp5688-Lfunc_begin0 - .quad Lset8765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8766, Ltmp5712-Lfunc_begin0 - .quad Lset8766 -.set Lset8767, Ltmp5713-Lfunc_begin0 - .quad Lset8767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8768, Ltmp5737-Lfunc_begin0 - .quad Lset8768 -.set Lset8769, Ltmp5738-Lfunc_begin0 - .quad Lset8769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8770, Ltmp5767-Lfunc_begin0 - .quad Lset8770 -.set Lset8771, Ltmp5768-Lfunc_begin0 - .quad Lset8771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8772, Ltmp5795-Lfunc_begin0 - .quad Lset8772 -.set Lset8773, Ltmp5796-Lfunc_begin0 - .quad Lset8773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8774, Ltmp5814-Lfunc_begin0 - .quad Lset8774 -.set Lset8775, Ltmp5815-Lfunc_begin0 - .quad Lset8775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8776, Ltmp5833-Lfunc_begin0 - .quad Lset8776 -.set Lset8777, Ltmp5834-Lfunc_begin0 - .quad Lset8777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8778, Ltmp5852-Lfunc_begin0 - .quad Lset8778 -.set Lset8779, Ltmp5853-Lfunc_begin0 - .quad Lset8779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8780, Ltmp5871-Lfunc_begin0 - .quad Lset8780 -.set Lset8781, Ltmp5872-Lfunc_begin0 - .quad Lset8781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8782, Ltmp5890-Lfunc_begin0 - .quad Lset8782 -.set Lset8783, Ltmp5891-Lfunc_begin0 - .quad Lset8783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8784, Ltmp5920-Lfunc_begin0 - .quad Lset8784 -.set Lset8785, Ltmp5921-Lfunc_begin0 - .quad Lset8785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc210: -.set Lset8786, Ltmp1186-Lfunc_begin0 - .quad Lset8786 -.set Lset8787, Ltmp1187-Lfunc_begin0 - .quad Lset8787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8788, Ltmp1215-Lfunc_begin0 - .quad Lset8788 -.set Lset8789, Ltmp1216-Lfunc_begin0 - .quad Lset8789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8790, Ltmp1237-Lfunc_begin0 - .quad Lset8790 -.set Lset8791, Ltmp1238-Lfunc_begin0 - .quad Lset8791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8792, Ltmp1260-Lfunc_begin0 - .quad Lset8792 -.set Lset8793, Ltmp1261-Lfunc_begin0 - .quad Lset8793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8794, Ltmp1281-Lfunc_begin0 - .quad Lset8794 -.set Lset8795, Ltmp1282-Lfunc_begin0 - .quad Lset8795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8796, Ltmp1314-Lfunc_begin0 - .quad Lset8796 -.set Lset8797, Ltmp1315-Lfunc_begin0 - .quad Lset8797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8798, Ltmp1338-Lfunc_begin0 - .quad Lset8798 -.set Lset8799, Ltmp1339-Lfunc_begin0 - .quad Lset8799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8800, Ltmp1368-Lfunc_begin0 - .quad Lset8800 -.set Lset8801, Ltmp1369-Lfunc_begin0 - .quad Lset8801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8802, Ltmp1462-Lfunc_begin0 - .quad Lset8802 -.set Lset8803, Ltmp1464-Lfunc_begin0 - .quad Lset8803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8804, Ltmp1557-Lfunc_begin0 - .quad Lset8804 -.set Lset8805, Ltmp1559-Lfunc_begin0 - .quad Lset8805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8806, Ltmp1713-Lfunc_begin0 - .quad Lset8806 -.set Lset8807, Ltmp1715-Lfunc_begin0 - .quad Lset8807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8808, Ltmp1864-Lfunc_begin0 - .quad Lset8808 -.set Lset8809, Ltmp1866-Lfunc_begin0 - .quad Lset8809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8810, Ltmp2004-Lfunc_begin0 - .quad Lset8810 -.set Lset8811, Ltmp2006-Lfunc_begin0 - .quad Lset8811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8812, Ltmp2074-Lfunc_begin0 - .quad Lset8812 -.set Lset8813, Ltmp2076-Lfunc_begin0 - .quad Lset8813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8814, Ltmp2120-Lfunc_begin0 - .quad Lset8814 -.set Lset8815, Ltmp2121-Lfunc_begin0 - .quad Lset8815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8816, Ltmp2193-Lfunc_begin0 - .quad Lset8816 -.set Lset8817, Ltmp2195-Lfunc_begin0 - .quad Lset8817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8818, Ltmp2253-Lfunc_begin0 - .quad Lset8818 -.set Lset8819, Ltmp2255-Lfunc_begin0 - .quad Lset8819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8820, Ltmp2302-Lfunc_begin0 - .quad Lset8820 -.set Lset8821, Ltmp2304-Lfunc_begin0 - .quad Lset8821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8822, Ltmp2351-Lfunc_begin0 - .quad Lset8822 -.set Lset8823, Ltmp2353-Lfunc_begin0 - .quad Lset8823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8824, Ltmp2400-Lfunc_begin0 - .quad Lset8824 -.set Lset8825, Ltmp2402-Lfunc_begin0 - .quad Lset8825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8826, Ltmp2444-Lfunc_begin0 - .quad Lset8826 -.set Lset8827, Ltmp2446-Lfunc_begin0 - .quad Lset8827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8828, Ltmp2499-Lfunc_begin0 - .quad Lset8828 -.set Lset8829, Ltmp2501-Lfunc_begin0 - .quad Lset8829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8830, Ltmp2554-Lfunc_begin0 - .quad Lset8830 -.set Lset8831, Ltmp2556-Lfunc_begin0 - .quad Lset8831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8832, Ltmp2609-Lfunc_begin0 - .quad Lset8832 -.set Lset8833, Ltmp2611-Lfunc_begin0 - .quad Lset8833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8834, Ltmp2673-Lfunc_begin0 - .quad Lset8834 -.set Lset8835, Ltmp2675-Lfunc_begin0 - .quad Lset8835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8836, Ltmp2738-Lfunc_begin0 - .quad Lset8836 -.set Lset8837, Ltmp2740-Lfunc_begin0 - .quad Lset8837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8838, Ltmp2811-Lfunc_begin0 - .quad Lset8838 -.set Lset8839, Ltmp2813-Lfunc_begin0 - .quad Lset8839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8840, Ltmp2871-Lfunc_begin0 - .quad Lset8840 -.set Lset8841, Ltmp2873-Lfunc_begin0 - .quad Lset8841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8842, Ltmp2922-Lfunc_begin0 - .quad Lset8842 -.set Lset8843, Ltmp2924-Lfunc_begin0 - .quad Lset8843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8844, Ltmp2957-Lfunc_begin0 - .quad Lset8844 -.set Lset8845, Ltmp2958-Lfunc_begin0 - .quad Lset8845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8846, Ltmp2997-Lfunc_begin0 - .quad Lset8846 -.set Lset8847, Ltmp2999-Lfunc_begin0 - .quad Lset8847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8848, Ltmp3024-Lfunc_begin0 - .quad Lset8848 -.set Lset8849, Ltmp3025-Lfunc_begin0 - .quad Lset8849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8850, Ltmp3047-Lfunc_begin0 - .quad Lset8850 -.set Lset8851, Ltmp3048-Lfunc_begin0 - .quad Lset8851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8852, Ltmp3096-Lfunc_begin0 - .quad Lset8852 -.set Lset8853, Ltmp3097-Lfunc_begin0 - .quad Lset8853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8854, Ltmp3120-Lfunc_begin0 - .quad Lset8854 -.set Lset8855, Ltmp3122-Lfunc_begin0 - .quad Lset8855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8856, Ltmp3161-Lfunc_begin0 - .quad Lset8856 -.set Lset8857, Ltmp3163-Lfunc_begin0 - .quad Lset8857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8858, Ltmp3227-Lfunc_begin0 - .quad Lset8858 -.set Lset8859, Ltmp3228-Lfunc_begin0 - .quad Lset8859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8860, Ltmp3292-Lfunc_begin0 - .quad Lset8860 -.set Lset8861, Ltmp3293-Lfunc_begin0 - .quad Lset8861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8862, Ltmp3329-Lfunc_begin0 - .quad Lset8862 -.set Lset8863, Ltmp3330-Lfunc_begin0 - .quad Lset8863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8864, Ltmp3375-Lfunc_begin0 - .quad Lset8864 -.set Lset8865, Ltmp3376-Lfunc_begin0 - .quad Lset8865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8866, Ltmp3407-Lfunc_begin0 - .quad Lset8866 -.set Lset8867, Ltmp3408-Lfunc_begin0 - .quad Lset8867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8868, Ltmp3435-Lfunc_begin0 - .quad Lset8868 -.set Lset8869, Ltmp3436-Lfunc_begin0 - .quad Lset8869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8870, Ltmp3537-Lfunc_begin0 - .quad Lset8870 -.set Lset8871, Ltmp3538-Lfunc_begin0 - .quad Lset8871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8872, Ltmp3638-Lfunc_begin0 - .quad Lset8872 -.set Lset8873, Ltmp3640-Lfunc_begin0 - .quad Lset8873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8874, Ltmp3685-Lfunc_begin0 - .quad Lset8874 -.set Lset8875, Ltmp3686-Lfunc_begin0 - .quad Lset8875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8876, Ltmp3807-Lfunc_begin0 - .quad Lset8876 -.set Lset8877, Ltmp3809-Lfunc_begin0 - .quad Lset8877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8878, Ltmp3864-Lfunc_begin0 - .quad Lset8878 -.set Lset8879, Ltmp3865-Lfunc_begin0 - .quad Lset8879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8880, Ltmp3933-Lfunc_begin0 - .quad Lset8880 -.set Lset8881, Ltmp3934-Lfunc_begin0 - .quad Lset8881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8882, Ltmp3959-Lfunc_begin0 - .quad Lset8882 -.set Lset8883, Ltmp3960-Lfunc_begin0 - .quad Lset8883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8884, Ltmp3985-Lfunc_begin0 - .quad Lset8884 -.set Lset8885, Ltmp3986-Lfunc_begin0 - .quad Lset8885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8886, Ltmp4011-Lfunc_begin0 - .quad Lset8886 -.set Lset8887, Ltmp4012-Lfunc_begin0 - .quad Lset8887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8888, Ltmp4046-Lfunc_begin0 - .quad Lset8888 -.set Lset8889, Ltmp4047-Lfunc_begin0 - .quad Lset8889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8890, Ltmp4084-Lfunc_begin0 - .quad Lset8890 -.set Lset8891, Ltmp4085-Lfunc_begin0 - .quad Lset8891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8892, Ltmp4106-Lfunc_begin0 - .quad Lset8892 -.set Lset8893, Ltmp4107-Lfunc_begin0 - .quad Lset8893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8894, Ltmp4146-Lfunc_begin0 - .quad Lset8894 -.set Lset8895, Ltmp4147-Lfunc_begin0 - .quad Lset8895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8896, Ltmp4187-Lfunc_begin0 - .quad Lset8896 -.set Lset8897, Ltmp4188-Lfunc_begin0 - .quad Lset8897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8898, Ltmp4227-Lfunc_begin0 - .quad Lset8898 -.set Lset8899, Ltmp4228-Lfunc_begin0 - .quad Lset8899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8900, Ltmp4268-Lfunc_begin0 - .quad Lset8900 -.set Lset8901, Ltmp4269-Lfunc_begin0 - .quad Lset8901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8902, Ltmp4308-Lfunc_begin0 - .quad Lset8902 -.set Lset8903, Ltmp4309-Lfunc_begin0 - .quad Lset8903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8904, Ltmp4349-Lfunc_begin0 - .quad Lset8904 -.set Lset8905, Ltmp4350-Lfunc_begin0 - .quad Lset8905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8906, Ltmp4380-Lfunc_begin0 - .quad Lset8906 -.set Lset8907, Ltmp4381-Lfunc_begin0 - .quad Lset8907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8908, Ltmp4412-Lfunc_begin0 - .quad Lset8908 -.set Lset8909, Ltmp4414-Lfunc_begin0 - .quad Lset8909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8910, Ltmp4454-Lfunc_begin0 - .quad Lset8910 -.set Lset8911, Ltmp4455-Lfunc_begin0 - .quad Lset8911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8912, Ltmp4495-Lfunc_begin0 - .quad Lset8912 -.set Lset8913, Ltmp4496-Lfunc_begin0 - .quad Lset8913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8914, Ltmp4579-Lfunc_begin0 - .quad Lset8914 -.set Lset8915, Ltmp4581-Lfunc_begin0 - .quad Lset8915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8916, Ltmp4649-Lfunc_begin0 - .quad Lset8916 -.set Lset8917, Ltmp4651-Lfunc_begin0 - .quad Lset8917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8918, Ltmp4717-Lfunc_begin0 - .quad Lset8918 -.set Lset8919, Ltmp4719-Lfunc_begin0 - .quad Lset8919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8920, Ltmp4783-Lfunc_begin0 - .quad Lset8920 -.set Lset8921, Ltmp4784-Lfunc_begin0 - .quad Lset8921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8922, Ltmp4813-Lfunc_begin0 - .quad Lset8922 -.set Lset8923, Ltmp4814-Lfunc_begin0 - .quad Lset8923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8924, Ltmp4843-Lfunc_begin0 - .quad Lset8924 -.set Lset8925, Ltmp4844-Lfunc_begin0 - .quad Lset8925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8926, Ltmp4902-Lfunc_begin0 - .quad Lset8926 -.set Lset8927, Ltmp4903-Lfunc_begin0 - .quad Lset8927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8928, Ltmp4943-Lfunc_begin0 - .quad Lset8928 -.set Lset8929, Ltmp4944-Lfunc_begin0 - .quad Lset8929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8930, Ltmp5000-Lfunc_begin0 - .quad Lset8930 -.set Lset8931, Ltmp5001-Lfunc_begin0 - .quad Lset8931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8932, Ltmp5040-Lfunc_begin0 - .quad Lset8932 -.set Lset8933, Ltmp5041-Lfunc_begin0 - .quad Lset8933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8934, Ltmp5078-Lfunc_begin0 - .quad Lset8934 -.set Lset8935, Ltmp5079-Lfunc_begin0 - .quad Lset8935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8936, Ltmp5114-Lfunc_begin0 - .quad Lset8936 -.set Lset8937, Ltmp5115-Lfunc_begin0 - .quad Lset8937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8938, Ltmp5146-Lfunc_begin0 - .quad Lset8938 -.set Lset8939, Ltmp5147-Lfunc_begin0 - .quad Lset8939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8940, Ltmp5178-Lfunc_begin0 - .quad Lset8940 -.set Lset8941, Ltmp5179-Lfunc_begin0 - .quad Lset8941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8942, Ltmp5210-Lfunc_begin0 - .quad Lset8942 -.set Lset8943, Ltmp5211-Lfunc_begin0 - .quad Lset8943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8944, Ltmp5228-Lfunc_begin0 - .quad Lset8944 -.set Lset8945, Ltmp5229-Lfunc_begin0 - .quad Lset8945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8946, Ltmp5246-Lfunc_begin0 - .quad Lset8946 -.set Lset8947, Ltmp5247-Lfunc_begin0 - .quad Lset8947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8948, Ltmp5271-Lfunc_begin0 - .quad Lset8948 -.set Lset8949, Ltmp5272-Lfunc_begin0 - .quad Lset8949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8950, Ltmp5296-Lfunc_begin0 - .quad Lset8950 -.set Lset8951, Ltmp5297-Lfunc_begin0 - .quad Lset8951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8952, Ltmp5322-Lfunc_begin0 - .quad Lset8952 -.set Lset8953, Ltmp5323-Lfunc_begin0 - .quad Lset8953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8954, Ltmp5347-Lfunc_begin0 - .quad Lset8954 -.set Lset8955, Ltmp5348-Lfunc_begin0 - .quad Lset8955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8956, Ltmp5372-Lfunc_begin0 - .quad Lset8956 -.set Lset8957, Ltmp5373-Lfunc_begin0 - .quad Lset8957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8958, Ltmp5397-Lfunc_begin0 - .quad Lset8958 -.set Lset8959, Ltmp5398-Lfunc_begin0 - .quad Lset8959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8960, Ltmp5422-Lfunc_begin0 - .quad Lset8960 -.set Lset8961, Ltmp5423-Lfunc_begin0 - .quad Lset8961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8962, Ltmp5447-Lfunc_begin0 - .quad Lset8962 -.set Lset8963, Ltmp5448-Lfunc_begin0 - .quad Lset8963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8964, Ltmp5472-Lfunc_begin0 - .quad Lset8964 -.set Lset8965, Ltmp5473-Lfunc_begin0 - .quad Lset8965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8966, Ltmp5498-Lfunc_begin0 - .quad Lset8966 -.set Lset8967, Ltmp5499-Lfunc_begin0 - .quad Lset8967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8968, Ltmp5523-Lfunc_begin0 - .quad Lset8968 -.set Lset8969, Ltmp5524-Lfunc_begin0 - .quad Lset8969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8970, Ltmp5548-Lfunc_begin0 - .quad Lset8970 -.set Lset8971, Ltmp5549-Lfunc_begin0 - .quad Lset8971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8972, Ltmp5573-Lfunc_begin0 - .quad Lset8972 -.set Lset8973, Ltmp5574-Lfunc_begin0 - .quad Lset8973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8974, Ltmp5598-Lfunc_begin0 - .quad Lset8974 -.set Lset8975, Ltmp5599-Lfunc_begin0 - .quad Lset8975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8976, Ltmp5631-Lfunc_begin0 - .quad Lset8976 -.set Lset8977, Ltmp5632-Lfunc_begin0 - .quad Lset8977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8978, Ltmp5662-Lfunc_begin0 - .quad Lset8978 -.set Lset8979, Ltmp5663-Lfunc_begin0 - .quad Lset8979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8980, Ltmp5687-Lfunc_begin0 - .quad Lset8980 -.set Lset8981, Ltmp5688-Lfunc_begin0 - .quad Lset8981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8982, Ltmp5712-Lfunc_begin0 - .quad Lset8982 -.set Lset8983, Ltmp5713-Lfunc_begin0 - .quad Lset8983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8984, Ltmp5737-Lfunc_begin0 - .quad Lset8984 -.set Lset8985, Ltmp5738-Lfunc_begin0 - .quad Lset8985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8986, Ltmp5767-Lfunc_begin0 - .quad Lset8986 -.set Lset8987, Ltmp5768-Lfunc_begin0 - .quad Lset8987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8988, Ltmp5795-Lfunc_begin0 - .quad Lset8988 -.set Lset8989, Ltmp5796-Lfunc_begin0 - .quad Lset8989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8990, Ltmp5814-Lfunc_begin0 - .quad Lset8990 -.set Lset8991, Ltmp5815-Lfunc_begin0 - .quad Lset8991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8992, Ltmp5833-Lfunc_begin0 - .quad Lset8992 -.set Lset8993, Ltmp5834-Lfunc_begin0 - .quad Lset8993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8994, Ltmp5852-Lfunc_begin0 - .quad Lset8994 -.set Lset8995, Ltmp5853-Lfunc_begin0 - .quad Lset8995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8996, Ltmp5871-Lfunc_begin0 - .quad Lset8996 -.set Lset8997, Ltmp5872-Lfunc_begin0 - .quad Lset8997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset8998, Ltmp5890-Lfunc_begin0 - .quad Lset8998 -.set Lset8999, Ltmp5891-Lfunc_begin0 - .quad Lset8999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9000, Ltmp5920-Lfunc_begin0 - .quad Lset9000 -.set Lset9001, Ltmp5921-Lfunc_begin0 - .quad Lset9001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc211: -.set Lset9002, Ltmp1186-Lfunc_begin0 - .quad Lset9002 -.set Lset9003, Ltmp1187-Lfunc_begin0 - .quad Lset9003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9004, Ltmp1215-Lfunc_begin0 - .quad Lset9004 -.set Lset9005, Ltmp1216-Lfunc_begin0 - .quad Lset9005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9006, Ltmp1237-Lfunc_begin0 - .quad Lset9006 -.set Lset9007, Ltmp1238-Lfunc_begin0 - .quad Lset9007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9008, Ltmp1260-Lfunc_begin0 - .quad Lset9008 -.set Lset9009, Ltmp1261-Lfunc_begin0 - .quad Lset9009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9010, Ltmp1281-Lfunc_begin0 - .quad Lset9010 -.set Lset9011, Ltmp1282-Lfunc_begin0 - .quad Lset9011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9012, Ltmp1314-Lfunc_begin0 - .quad Lset9012 -.set Lset9013, Ltmp1315-Lfunc_begin0 - .quad Lset9013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9014, Ltmp1338-Lfunc_begin0 - .quad Lset9014 -.set Lset9015, Ltmp1339-Lfunc_begin0 - .quad Lset9015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9016, Ltmp1368-Lfunc_begin0 - .quad Lset9016 -.set Lset9017, Ltmp1369-Lfunc_begin0 - .quad Lset9017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9018, Ltmp1462-Lfunc_begin0 - .quad Lset9018 -.set Lset9019, Ltmp1464-Lfunc_begin0 - .quad Lset9019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9020, Ltmp1557-Lfunc_begin0 - .quad Lset9020 -.set Lset9021, Ltmp1559-Lfunc_begin0 - .quad Lset9021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9022, Ltmp1713-Lfunc_begin0 - .quad Lset9022 -.set Lset9023, Ltmp1715-Lfunc_begin0 - .quad Lset9023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9024, Ltmp1864-Lfunc_begin0 - .quad Lset9024 -.set Lset9025, Ltmp1866-Lfunc_begin0 - .quad Lset9025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9026, Ltmp2004-Lfunc_begin0 - .quad Lset9026 -.set Lset9027, Ltmp2006-Lfunc_begin0 - .quad Lset9027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9028, Ltmp2074-Lfunc_begin0 - .quad Lset9028 -.set Lset9029, Ltmp2076-Lfunc_begin0 - .quad Lset9029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9030, Ltmp2120-Lfunc_begin0 - .quad Lset9030 -.set Lset9031, Ltmp2121-Lfunc_begin0 - .quad Lset9031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9032, Ltmp2193-Lfunc_begin0 - .quad Lset9032 -.set Lset9033, Ltmp2195-Lfunc_begin0 - .quad Lset9033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9034, Ltmp2253-Lfunc_begin0 - .quad Lset9034 -.set Lset9035, Ltmp2255-Lfunc_begin0 - .quad Lset9035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9036, Ltmp2302-Lfunc_begin0 - .quad Lset9036 -.set Lset9037, Ltmp2304-Lfunc_begin0 - .quad Lset9037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9038, Ltmp2351-Lfunc_begin0 - .quad Lset9038 -.set Lset9039, Ltmp2353-Lfunc_begin0 - .quad Lset9039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9040, Ltmp2400-Lfunc_begin0 - .quad Lset9040 -.set Lset9041, Ltmp2402-Lfunc_begin0 - .quad Lset9041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9042, Ltmp2444-Lfunc_begin0 - .quad Lset9042 -.set Lset9043, Ltmp2446-Lfunc_begin0 - .quad Lset9043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9044, Ltmp2499-Lfunc_begin0 - .quad Lset9044 -.set Lset9045, Ltmp2501-Lfunc_begin0 - .quad Lset9045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9046, Ltmp2554-Lfunc_begin0 - .quad Lset9046 -.set Lset9047, Ltmp2556-Lfunc_begin0 - .quad Lset9047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9048, Ltmp2609-Lfunc_begin0 - .quad Lset9048 -.set Lset9049, Ltmp2611-Lfunc_begin0 - .quad Lset9049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9050, Ltmp2673-Lfunc_begin0 - .quad Lset9050 -.set Lset9051, Ltmp2675-Lfunc_begin0 - .quad Lset9051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9052, Ltmp2738-Lfunc_begin0 - .quad Lset9052 -.set Lset9053, Ltmp2740-Lfunc_begin0 - .quad Lset9053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9054, Ltmp2811-Lfunc_begin0 - .quad Lset9054 -.set Lset9055, Ltmp2813-Lfunc_begin0 - .quad Lset9055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9056, Ltmp2871-Lfunc_begin0 - .quad Lset9056 -.set Lset9057, Ltmp2873-Lfunc_begin0 - .quad Lset9057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9058, Ltmp2922-Lfunc_begin0 - .quad Lset9058 -.set Lset9059, Ltmp2924-Lfunc_begin0 - .quad Lset9059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9060, Ltmp2957-Lfunc_begin0 - .quad Lset9060 -.set Lset9061, Ltmp2958-Lfunc_begin0 - .quad Lset9061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9062, Ltmp2997-Lfunc_begin0 - .quad Lset9062 -.set Lset9063, Ltmp2999-Lfunc_begin0 - .quad Lset9063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9064, Ltmp3024-Lfunc_begin0 - .quad Lset9064 -.set Lset9065, Ltmp3025-Lfunc_begin0 - .quad Lset9065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9066, Ltmp3047-Lfunc_begin0 - .quad Lset9066 -.set Lset9067, Ltmp3048-Lfunc_begin0 - .quad Lset9067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9068, Ltmp3096-Lfunc_begin0 - .quad Lset9068 -.set Lset9069, Ltmp3097-Lfunc_begin0 - .quad Lset9069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9070, Ltmp3120-Lfunc_begin0 - .quad Lset9070 -.set Lset9071, Ltmp3122-Lfunc_begin0 - .quad Lset9071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9072, Ltmp3161-Lfunc_begin0 - .quad Lset9072 -.set Lset9073, Ltmp3163-Lfunc_begin0 - .quad Lset9073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9074, Ltmp3227-Lfunc_begin0 - .quad Lset9074 -.set Lset9075, Ltmp3228-Lfunc_begin0 - .quad Lset9075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9076, Ltmp3292-Lfunc_begin0 - .quad Lset9076 -.set Lset9077, Ltmp3293-Lfunc_begin0 - .quad Lset9077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9078, Ltmp3329-Lfunc_begin0 - .quad Lset9078 -.set Lset9079, Ltmp3330-Lfunc_begin0 - .quad Lset9079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9080, Ltmp3375-Lfunc_begin0 - .quad Lset9080 -.set Lset9081, Ltmp3376-Lfunc_begin0 - .quad Lset9081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9082, Ltmp3407-Lfunc_begin0 - .quad Lset9082 -.set Lset9083, Ltmp3408-Lfunc_begin0 - .quad Lset9083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9084, Ltmp3435-Lfunc_begin0 - .quad Lset9084 -.set Lset9085, Ltmp3436-Lfunc_begin0 - .quad Lset9085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9086, Ltmp3537-Lfunc_begin0 - .quad Lset9086 -.set Lset9087, Ltmp3538-Lfunc_begin0 - .quad Lset9087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9088, Ltmp3638-Lfunc_begin0 - .quad Lset9088 -.set Lset9089, Ltmp3640-Lfunc_begin0 - .quad Lset9089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9090, Ltmp3685-Lfunc_begin0 - .quad Lset9090 -.set Lset9091, Ltmp3686-Lfunc_begin0 - .quad Lset9091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9092, Ltmp3807-Lfunc_begin0 - .quad Lset9092 -.set Lset9093, Ltmp3809-Lfunc_begin0 - .quad Lset9093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9094, Ltmp3864-Lfunc_begin0 - .quad Lset9094 -.set Lset9095, Ltmp3865-Lfunc_begin0 - .quad Lset9095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9096, Ltmp3933-Lfunc_begin0 - .quad Lset9096 -.set Lset9097, Ltmp3934-Lfunc_begin0 - .quad Lset9097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9098, Ltmp3959-Lfunc_begin0 - .quad Lset9098 -.set Lset9099, Ltmp3960-Lfunc_begin0 - .quad Lset9099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9100, Ltmp3985-Lfunc_begin0 - .quad Lset9100 -.set Lset9101, Ltmp3986-Lfunc_begin0 - .quad Lset9101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9102, Ltmp4011-Lfunc_begin0 - .quad Lset9102 -.set Lset9103, Ltmp4012-Lfunc_begin0 - .quad Lset9103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9104, Ltmp4046-Lfunc_begin0 - .quad Lset9104 -.set Lset9105, Ltmp4047-Lfunc_begin0 - .quad Lset9105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9106, Ltmp4084-Lfunc_begin0 - .quad Lset9106 -.set Lset9107, Ltmp4085-Lfunc_begin0 - .quad Lset9107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9108, Ltmp4106-Lfunc_begin0 - .quad Lset9108 -.set Lset9109, Ltmp4107-Lfunc_begin0 - .quad Lset9109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9110, Ltmp4146-Lfunc_begin0 - .quad Lset9110 -.set Lset9111, Ltmp4147-Lfunc_begin0 - .quad Lset9111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9112, Ltmp4187-Lfunc_begin0 - .quad Lset9112 -.set Lset9113, Ltmp4188-Lfunc_begin0 - .quad Lset9113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9114, Ltmp4227-Lfunc_begin0 - .quad Lset9114 -.set Lset9115, Ltmp4228-Lfunc_begin0 - .quad Lset9115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9116, Ltmp4268-Lfunc_begin0 - .quad Lset9116 -.set Lset9117, Ltmp4269-Lfunc_begin0 - .quad Lset9117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9118, Ltmp4308-Lfunc_begin0 - .quad Lset9118 -.set Lset9119, Ltmp4309-Lfunc_begin0 - .quad Lset9119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9120, Ltmp4349-Lfunc_begin0 - .quad Lset9120 -.set Lset9121, Ltmp4350-Lfunc_begin0 - .quad Lset9121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9122, Ltmp4380-Lfunc_begin0 - .quad Lset9122 -.set Lset9123, Ltmp4381-Lfunc_begin0 - .quad Lset9123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9124, Ltmp4412-Lfunc_begin0 - .quad Lset9124 -.set Lset9125, Ltmp4414-Lfunc_begin0 - .quad Lset9125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9126, Ltmp4454-Lfunc_begin0 - .quad Lset9126 -.set Lset9127, Ltmp4455-Lfunc_begin0 - .quad Lset9127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9128, Ltmp4495-Lfunc_begin0 - .quad Lset9128 -.set Lset9129, Ltmp4496-Lfunc_begin0 - .quad Lset9129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9130, Ltmp4579-Lfunc_begin0 - .quad Lset9130 -.set Lset9131, Ltmp4581-Lfunc_begin0 - .quad Lset9131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9132, Ltmp4649-Lfunc_begin0 - .quad Lset9132 -.set Lset9133, Ltmp4651-Lfunc_begin0 - .quad Lset9133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9134, Ltmp4717-Lfunc_begin0 - .quad Lset9134 -.set Lset9135, Ltmp4719-Lfunc_begin0 - .quad Lset9135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9136, Ltmp4783-Lfunc_begin0 - .quad Lset9136 -.set Lset9137, Ltmp4784-Lfunc_begin0 - .quad Lset9137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9138, Ltmp4813-Lfunc_begin0 - .quad Lset9138 -.set Lset9139, Ltmp4814-Lfunc_begin0 - .quad Lset9139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9140, Ltmp4843-Lfunc_begin0 - .quad Lset9140 -.set Lset9141, Ltmp4844-Lfunc_begin0 - .quad Lset9141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9142, Ltmp4902-Lfunc_begin0 - .quad Lset9142 -.set Lset9143, Ltmp4903-Lfunc_begin0 - .quad Lset9143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9144, Ltmp4943-Lfunc_begin0 - .quad Lset9144 -.set Lset9145, Ltmp4944-Lfunc_begin0 - .quad Lset9145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9146, Ltmp5000-Lfunc_begin0 - .quad Lset9146 -.set Lset9147, Ltmp5001-Lfunc_begin0 - .quad Lset9147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9148, Ltmp5040-Lfunc_begin0 - .quad Lset9148 -.set Lset9149, Ltmp5041-Lfunc_begin0 - .quad Lset9149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9150, Ltmp5078-Lfunc_begin0 - .quad Lset9150 -.set Lset9151, Ltmp5079-Lfunc_begin0 - .quad Lset9151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9152, Ltmp5114-Lfunc_begin0 - .quad Lset9152 -.set Lset9153, Ltmp5115-Lfunc_begin0 - .quad Lset9153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9154, Ltmp5146-Lfunc_begin0 - .quad Lset9154 -.set Lset9155, Ltmp5147-Lfunc_begin0 - .quad Lset9155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9156, Ltmp5178-Lfunc_begin0 - .quad Lset9156 -.set Lset9157, Ltmp5179-Lfunc_begin0 - .quad Lset9157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9158, Ltmp5210-Lfunc_begin0 - .quad Lset9158 -.set Lset9159, Ltmp5211-Lfunc_begin0 - .quad Lset9159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9160, Ltmp5228-Lfunc_begin0 - .quad Lset9160 -.set Lset9161, Ltmp5229-Lfunc_begin0 - .quad Lset9161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9162, Ltmp5246-Lfunc_begin0 - .quad Lset9162 -.set Lset9163, Ltmp5247-Lfunc_begin0 - .quad Lset9163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9164, Ltmp5271-Lfunc_begin0 - .quad Lset9164 -.set Lset9165, Ltmp5272-Lfunc_begin0 - .quad Lset9165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9166, Ltmp5296-Lfunc_begin0 - .quad Lset9166 -.set Lset9167, Ltmp5297-Lfunc_begin0 - .quad Lset9167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9168, Ltmp5322-Lfunc_begin0 - .quad Lset9168 -.set Lset9169, Ltmp5323-Lfunc_begin0 - .quad Lset9169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9170, Ltmp5347-Lfunc_begin0 - .quad Lset9170 -.set Lset9171, Ltmp5348-Lfunc_begin0 - .quad Lset9171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9172, Ltmp5372-Lfunc_begin0 - .quad Lset9172 -.set Lset9173, Ltmp5373-Lfunc_begin0 - .quad Lset9173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9174, Ltmp5397-Lfunc_begin0 - .quad Lset9174 -.set Lset9175, Ltmp5398-Lfunc_begin0 - .quad Lset9175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9176, Ltmp5422-Lfunc_begin0 - .quad Lset9176 -.set Lset9177, Ltmp5423-Lfunc_begin0 - .quad Lset9177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9178, Ltmp5447-Lfunc_begin0 - .quad Lset9178 -.set Lset9179, Ltmp5448-Lfunc_begin0 - .quad Lset9179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9180, Ltmp5472-Lfunc_begin0 - .quad Lset9180 -.set Lset9181, Ltmp5473-Lfunc_begin0 - .quad Lset9181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9182, Ltmp5498-Lfunc_begin0 - .quad Lset9182 -.set Lset9183, Ltmp5499-Lfunc_begin0 - .quad Lset9183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9184, Ltmp5523-Lfunc_begin0 - .quad Lset9184 -.set Lset9185, Ltmp5524-Lfunc_begin0 - .quad Lset9185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9186, Ltmp5548-Lfunc_begin0 - .quad Lset9186 -.set Lset9187, Ltmp5549-Lfunc_begin0 - .quad Lset9187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9188, Ltmp5573-Lfunc_begin0 - .quad Lset9188 -.set Lset9189, Ltmp5574-Lfunc_begin0 - .quad Lset9189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9190, Ltmp5598-Lfunc_begin0 - .quad Lset9190 -.set Lset9191, Ltmp5599-Lfunc_begin0 - .quad Lset9191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9192, Ltmp5631-Lfunc_begin0 - .quad Lset9192 -.set Lset9193, Ltmp5632-Lfunc_begin0 - .quad Lset9193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9194, Ltmp5662-Lfunc_begin0 - .quad Lset9194 -.set Lset9195, Ltmp5663-Lfunc_begin0 - .quad Lset9195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9196, Ltmp5687-Lfunc_begin0 - .quad Lset9196 -.set Lset9197, Ltmp5688-Lfunc_begin0 - .quad Lset9197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9198, Ltmp5712-Lfunc_begin0 - .quad Lset9198 -.set Lset9199, Ltmp5713-Lfunc_begin0 - .quad Lset9199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9200, Ltmp5737-Lfunc_begin0 - .quad Lset9200 -.set Lset9201, Ltmp5738-Lfunc_begin0 - .quad Lset9201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9202, Ltmp5767-Lfunc_begin0 - .quad Lset9202 -.set Lset9203, Ltmp5768-Lfunc_begin0 - .quad Lset9203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9204, Ltmp5795-Lfunc_begin0 - .quad Lset9204 -.set Lset9205, Ltmp5796-Lfunc_begin0 - .quad Lset9205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9206, Ltmp5814-Lfunc_begin0 - .quad Lset9206 -.set Lset9207, Ltmp5815-Lfunc_begin0 - .quad Lset9207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9208, Ltmp5833-Lfunc_begin0 - .quad Lset9208 -.set Lset9209, Ltmp5834-Lfunc_begin0 - .quad Lset9209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9210, Ltmp5852-Lfunc_begin0 - .quad Lset9210 -.set Lset9211, Ltmp5853-Lfunc_begin0 - .quad Lset9211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9212, Ltmp5871-Lfunc_begin0 - .quad Lset9212 -.set Lset9213, Ltmp5872-Lfunc_begin0 - .quad Lset9213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9214, Ltmp5890-Lfunc_begin0 - .quad Lset9214 -.set Lset9215, Ltmp5891-Lfunc_begin0 - .quad Lset9215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9216, Ltmp5920-Lfunc_begin0 - .quad Lset9216 -.set Lset9217, Ltmp5921-Lfunc_begin0 - .quad Lset9217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc212: -.set Lset9218, Ltmp1186-Lfunc_begin0 - .quad Lset9218 -.set Lset9219, Ltmp1187-Lfunc_begin0 - .quad Lset9219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9220, Ltmp1215-Lfunc_begin0 - .quad Lset9220 -.set Lset9221, Ltmp1216-Lfunc_begin0 - .quad Lset9221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9222, Ltmp1237-Lfunc_begin0 - .quad Lset9222 -.set Lset9223, Ltmp1238-Lfunc_begin0 - .quad Lset9223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9224, Ltmp1260-Lfunc_begin0 - .quad Lset9224 -.set Lset9225, Ltmp1261-Lfunc_begin0 - .quad Lset9225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9226, Ltmp1281-Lfunc_begin0 - .quad Lset9226 -.set Lset9227, Ltmp1282-Lfunc_begin0 - .quad Lset9227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9228, Ltmp1314-Lfunc_begin0 - .quad Lset9228 -.set Lset9229, Ltmp1315-Lfunc_begin0 - .quad Lset9229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9230, Ltmp1338-Lfunc_begin0 - .quad Lset9230 -.set Lset9231, Ltmp1339-Lfunc_begin0 - .quad Lset9231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9232, Ltmp1368-Lfunc_begin0 - .quad Lset9232 -.set Lset9233, Ltmp1369-Lfunc_begin0 - .quad Lset9233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9234, Ltmp1462-Lfunc_begin0 - .quad Lset9234 -.set Lset9235, Ltmp1464-Lfunc_begin0 - .quad Lset9235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9236, Ltmp1557-Lfunc_begin0 - .quad Lset9236 -.set Lset9237, Ltmp1559-Lfunc_begin0 - .quad Lset9237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9238, Ltmp1713-Lfunc_begin0 - .quad Lset9238 -.set Lset9239, Ltmp1715-Lfunc_begin0 - .quad Lset9239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9240, Ltmp1864-Lfunc_begin0 - .quad Lset9240 -.set Lset9241, Ltmp1866-Lfunc_begin0 - .quad Lset9241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9242, Ltmp2004-Lfunc_begin0 - .quad Lset9242 -.set Lset9243, Ltmp2006-Lfunc_begin0 - .quad Lset9243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9244, Ltmp2074-Lfunc_begin0 - .quad Lset9244 -.set Lset9245, Ltmp2076-Lfunc_begin0 - .quad Lset9245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9246, Ltmp2120-Lfunc_begin0 - .quad Lset9246 -.set Lset9247, Ltmp2121-Lfunc_begin0 - .quad Lset9247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9248, Ltmp2193-Lfunc_begin0 - .quad Lset9248 -.set Lset9249, Ltmp2195-Lfunc_begin0 - .quad Lset9249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9250, Ltmp2253-Lfunc_begin0 - .quad Lset9250 -.set Lset9251, Ltmp2255-Lfunc_begin0 - .quad Lset9251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9252, Ltmp2302-Lfunc_begin0 - .quad Lset9252 -.set Lset9253, Ltmp2304-Lfunc_begin0 - .quad Lset9253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9254, Ltmp2351-Lfunc_begin0 - .quad Lset9254 -.set Lset9255, Ltmp2353-Lfunc_begin0 - .quad Lset9255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9256, Ltmp2400-Lfunc_begin0 - .quad Lset9256 -.set Lset9257, Ltmp2402-Lfunc_begin0 - .quad Lset9257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9258, Ltmp2444-Lfunc_begin0 - .quad Lset9258 -.set Lset9259, Ltmp2446-Lfunc_begin0 - .quad Lset9259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9260, Ltmp2499-Lfunc_begin0 - .quad Lset9260 -.set Lset9261, Ltmp2501-Lfunc_begin0 - .quad Lset9261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9262, Ltmp2554-Lfunc_begin0 - .quad Lset9262 -.set Lset9263, Ltmp2556-Lfunc_begin0 - .quad Lset9263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9264, Ltmp2609-Lfunc_begin0 - .quad Lset9264 -.set Lset9265, Ltmp2611-Lfunc_begin0 - .quad Lset9265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9266, Ltmp2673-Lfunc_begin0 - .quad Lset9266 -.set Lset9267, Ltmp2675-Lfunc_begin0 - .quad Lset9267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9268, Ltmp2738-Lfunc_begin0 - .quad Lset9268 -.set Lset9269, Ltmp2740-Lfunc_begin0 - .quad Lset9269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9270, Ltmp2811-Lfunc_begin0 - .quad Lset9270 -.set Lset9271, Ltmp2813-Lfunc_begin0 - .quad Lset9271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9272, Ltmp2871-Lfunc_begin0 - .quad Lset9272 -.set Lset9273, Ltmp2873-Lfunc_begin0 - .quad Lset9273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9274, Ltmp2922-Lfunc_begin0 - .quad Lset9274 -.set Lset9275, Ltmp2924-Lfunc_begin0 - .quad Lset9275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9276, Ltmp2957-Lfunc_begin0 - .quad Lset9276 -.set Lset9277, Ltmp2958-Lfunc_begin0 - .quad Lset9277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9278, Ltmp2997-Lfunc_begin0 - .quad Lset9278 -.set Lset9279, Ltmp2999-Lfunc_begin0 - .quad Lset9279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9280, Ltmp3024-Lfunc_begin0 - .quad Lset9280 -.set Lset9281, Ltmp3025-Lfunc_begin0 - .quad Lset9281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9282, Ltmp3047-Lfunc_begin0 - .quad Lset9282 -.set Lset9283, Ltmp3048-Lfunc_begin0 - .quad Lset9283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9284, Ltmp3096-Lfunc_begin0 - .quad Lset9284 -.set Lset9285, Ltmp3097-Lfunc_begin0 - .quad Lset9285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9286, Ltmp3120-Lfunc_begin0 - .quad Lset9286 -.set Lset9287, Ltmp3122-Lfunc_begin0 - .quad Lset9287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9288, Ltmp3161-Lfunc_begin0 - .quad Lset9288 -.set Lset9289, Ltmp3163-Lfunc_begin0 - .quad Lset9289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9290, Ltmp3227-Lfunc_begin0 - .quad Lset9290 -.set Lset9291, Ltmp3228-Lfunc_begin0 - .quad Lset9291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9292, Ltmp3292-Lfunc_begin0 - .quad Lset9292 -.set Lset9293, Ltmp3293-Lfunc_begin0 - .quad Lset9293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9294, Ltmp3329-Lfunc_begin0 - .quad Lset9294 -.set Lset9295, Ltmp3330-Lfunc_begin0 - .quad Lset9295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9296, Ltmp3375-Lfunc_begin0 - .quad Lset9296 -.set Lset9297, Ltmp3376-Lfunc_begin0 - .quad Lset9297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9298, Ltmp3407-Lfunc_begin0 - .quad Lset9298 -.set Lset9299, Ltmp3408-Lfunc_begin0 - .quad Lset9299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9300, Ltmp3435-Lfunc_begin0 - .quad Lset9300 -.set Lset9301, Ltmp3436-Lfunc_begin0 - .quad Lset9301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9302, Ltmp3537-Lfunc_begin0 - .quad Lset9302 -.set Lset9303, Ltmp3538-Lfunc_begin0 - .quad Lset9303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9304, Ltmp3638-Lfunc_begin0 - .quad Lset9304 -.set Lset9305, Ltmp3640-Lfunc_begin0 - .quad Lset9305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9306, Ltmp3685-Lfunc_begin0 - .quad Lset9306 -.set Lset9307, Ltmp3686-Lfunc_begin0 - .quad Lset9307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9308, Ltmp3807-Lfunc_begin0 - .quad Lset9308 -.set Lset9309, Ltmp3809-Lfunc_begin0 - .quad Lset9309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9310, Ltmp3864-Lfunc_begin0 - .quad Lset9310 -.set Lset9311, Ltmp3865-Lfunc_begin0 - .quad Lset9311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9312, Ltmp3933-Lfunc_begin0 - .quad Lset9312 -.set Lset9313, Ltmp3934-Lfunc_begin0 - .quad Lset9313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9314, Ltmp3959-Lfunc_begin0 - .quad Lset9314 -.set Lset9315, Ltmp3960-Lfunc_begin0 - .quad Lset9315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9316, Ltmp3985-Lfunc_begin0 - .quad Lset9316 -.set Lset9317, Ltmp3986-Lfunc_begin0 - .quad Lset9317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9318, Ltmp4011-Lfunc_begin0 - .quad Lset9318 -.set Lset9319, Ltmp4012-Lfunc_begin0 - .quad Lset9319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9320, Ltmp4046-Lfunc_begin0 - .quad Lset9320 -.set Lset9321, Ltmp4047-Lfunc_begin0 - .quad Lset9321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9322, Ltmp4084-Lfunc_begin0 - .quad Lset9322 -.set Lset9323, Ltmp4085-Lfunc_begin0 - .quad Lset9323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9324, Ltmp4106-Lfunc_begin0 - .quad Lset9324 -.set Lset9325, Ltmp4107-Lfunc_begin0 - .quad Lset9325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9326, Ltmp4146-Lfunc_begin0 - .quad Lset9326 -.set Lset9327, Ltmp4147-Lfunc_begin0 - .quad Lset9327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9328, Ltmp4187-Lfunc_begin0 - .quad Lset9328 -.set Lset9329, Ltmp4188-Lfunc_begin0 - .quad Lset9329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9330, Ltmp4227-Lfunc_begin0 - .quad Lset9330 -.set Lset9331, Ltmp4228-Lfunc_begin0 - .quad Lset9331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9332, Ltmp4268-Lfunc_begin0 - .quad Lset9332 -.set Lset9333, Ltmp4269-Lfunc_begin0 - .quad Lset9333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9334, Ltmp4308-Lfunc_begin0 - .quad Lset9334 -.set Lset9335, Ltmp4309-Lfunc_begin0 - .quad Lset9335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9336, Ltmp4349-Lfunc_begin0 - .quad Lset9336 -.set Lset9337, Ltmp4350-Lfunc_begin0 - .quad Lset9337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9338, Ltmp4380-Lfunc_begin0 - .quad Lset9338 -.set Lset9339, Ltmp4381-Lfunc_begin0 - .quad Lset9339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9340, Ltmp4412-Lfunc_begin0 - .quad Lset9340 -.set Lset9341, Ltmp4414-Lfunc_begin0 - .quad Lset9341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9342, Ltmp4454-Lfunc_begin0 - .quad Lset9342 -.set Lset9343, Ltmp4455-Lfunc_begin0 - .quad Lset9343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9344, Ltmp4495-Lfunc_begin0 - .quad Lset9344 -.set Lset9345, Ltmp4496-Lfunc_begin0 - .quad Lset9345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9346, Ltmp4579-Lfunc_begin0 - .quad Lset9346 -.set Lset9347, Ltmp4581-Lfunc_begin0 - .quad Lset9347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9348, Ltmp4649-Lfunc_begin0 - .quad Lset9348 -.set Lset9349, Ltmp4651-Lfunc_begin0 - .quad Lset9349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9350, Ltmp4717-Lfunc_begin0 - .quad Lset9350 -.set Lset9351, Ltmp4719-Lfunc_begin0 - .quad Lset9351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9352, Ltmp4783-Lfunc_begin0 - .quad Lset9352 -.set Lset9353, Ltmp4784-Lfunc_begin0 - .quad Lset9353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9354, Ltmp4813-Lfunc_begin0 - .quad Lset9354 -.set Lset9355, Ltmp4814-Lfunc_begin0 - .quad Lset9355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9356, Ltmp4843-Lfunc_begin0 - .quad Lset9356 -.set Lset9357, Ltmp4844-Lfunc_begin0 - .quad Lset9357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9358, Ltmp4902-Lfunc_begin0 - .quad Lset9358 -.set Lset9359, Ltmp4903-Lfunc_begin0 - .quad Lset9359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9360, Ltmp4943-Lfunc_begin0 - .quad Lset9360 -.set Lset9361, Ltmp4944-Lfunc_begin0 - .quad Lset9361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9362, Ltmp5000-Lfunc_begin0 - .quad Lset9362 -.set Lset9363, Ltmp5001-Lfunc_begin0 - .quad Lset9363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9364, Ltmp5040-Lfunc_begin0 - .quad Lset9364 -.set Lset9365, Ltmp5041-Lfunc_begin0 - .quad Lset9365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9366, Ltmp5078-Lfunc_begin0 - .quad Lset9366 -.set Lset9367, Ltmp5079-Lfunc_begin0 - .quad Lset9367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9368, Ltmp5114-Lfunc_begin0 - .quad Lset9368 -.set Lset9369, Ltmp5115-Lfunc_begin0 - .quad Lset9369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9370, Ltmp5146-Lfunc_begin0 - .quad Lset9370 -.set Lset9371, Ltmp5147-Lfunc_begin0 - .quad Lset9371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9372, Ltmp5178-Lfunc_begin0 - .quad Lset9372 -.set Lset9373, Ltmp5179-Lfunc_begin0 - .quad Lset9373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9374, Ltmp5210-Lfunc_begin0 - .quad Lset9374 -.set Lset9375, Ltmp5211-Lfunc_begin0 - .quad Lset9375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9376, Ltmp5228-Lfunc_begin0 - .quad Lset9376 -.set Lset9377, Ltmp5229-Lfunc_begin0 - .quad Lset9377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9378, Ltmp5246-Lfunc_begin0 - .quad Lset9378 -.set Lset9379, Ltmp5247-Lfunc_begin0 - .quad Lset9379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9380, Ltmp5271-Lfunc_begin0 - .quad Lset9380 -.set Lset9381, Ltmp5272-Lfunc_begin0 - .quad Lset9381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9382, Ltmp5296-Lfunc_begin0 - .quad Lset9382 -.set Lset9383, Ltmp5297-Lfunc_begin0 - .quad Lset9383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9384, Ltmp5322-Lfunc_begin0 - .quad Lset9384 -.set Lset9385, Ltmp5323-Lfunc_begin0 - .quad Lset9385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9386, Ltmp5347-Lfunc_begin0 - .quad Lset9386 -.set Lset9387, Ltmp5348-Lfunc_begin0 - .quad Lset9387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9388, Ltmp5372-Lfunc_begin0 - .quad Lset9388 -.set Lset9389, Ltmp5373-Lfunc_begin0 - .quad Lset9389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9390, Ltmp5397-Lfunc_begin0 - .quad Lset9390 -.set Lset9391, Ltmp5398-Lfunc_begin0 - .quad Lset9391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9392, Ltmp5422-Lfunc_begin0 - .quad Lset9392 -.set Lset9393, Ltmp5423-Lfunc_begin0 - .quad Lset9393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9394, Ltmp5447-Lfunc_begin0 - .quad Lset9394 -.set Lset9395, Ltmp5448-Lfunc_begin0 - .quad Lset9395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9396, Ltmp5472-Lfunc_begin0 - .quad Lset9396 -.set Lset9397, Ltmp5473-Lfunc_begin0 - .quad Lset9397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9398, Ltmp5498-Lfunc_begin0 - .quad Lset9398 -.set Lset9399, Ltmp5499-Lfunc_begin0 - .quad Lset9399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9400, Ltmp5523-Lfunc_begin0 - .quad Lset9400 -.set Lset9401, Ltmp5524-Lfunc_begin0 - .quad Lset9401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9402, Ltmp5548-Lfunc_begin0 - .quad Lset9402 -.set Lset9403, Ltmp5549-Lfunc_begin0 - .quad Lset9403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9404, Ltmp5573-Lfunc_begin0 - .quad Lset9404 -.set Lset9405, Ltmp5574-Lfunc_begin0 - .quad Lset9405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9406, Ltmp5598-Lfunc_begin0 - .quad Lset9406 -.set Lset9407, Ltmp5599-Lfunc_begin0 - .quad Lset9407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9408, Ltmp5631-Lfunc_begin0 - .quad Lset9408 -.set Lset9409, Ltmp5632-Lfunc_begin0 - .quad Lset9409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9410, Ltmp5662-Lfunc_begin0 - .quad Lset9410 -.set Lset9411, Ltmp5663-Lfunc_begin0 - .quad Lset9411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9412, Ltmp5687-Lfunc_begin0 - .quad Lset9412 -.set Lset9413, Ltmp5688-Lfunc_begin0 - .quad Lset9413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9414, Ltmp5712-Lfunc_begin0 - .quad Lset9414 -.set Lset9415, Ltmp5713-Lfunc_begin0 - .quad Lset9415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9416, Ltmp5737-Lfunc_begin0 - .quad Lset9416 -.set Lset9417, Ltmp5738-Lfunc_begin0 - .quad Lset9417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9418, Ltmp5767-Lfunc_begin0 - .quad Lset9418 -.set Lset9419, Ltmp5768-Lfunc_begin0 - .quad Lset9419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9420, Ltmp5795-Lfunc_begin0 - .quad Lset9420 -.set Lset9421, Ltmp5796-Lfunc_begin0 - .quad Lset9421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9422, Ltmp5814-Lfunc_begin0 - .quad Lset9422 -.set Lset9423, Ltmp5815-Lfunc_begin0 - .quad Lset9423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9424, Ltmp5833-Lfunc_begin0 - .quad Lset9424 -.set Lset9425, Ltmp5834-Lfunc_begin0 - .quad Lset9425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9426, Ltmp5852-Lfunc_begin0 - .quad Lset9426 -.set Lset9427, Ltmp5853-Lfunc_begin0 - .quad Lset9427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9428, Ltmp5871-Lfunc_begin0 - .quad Lset9428 -.set Lset9429, Ltmp5872-Lfunc_begin0 - .quad Lset9429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9430, Ltmp5890-Lfunc_begin0 - .quad Lset9430 -.set Lset9431, Ltmp5891-Lfunc_begin0 - .quad Lset9431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9432, Ltmp5920-Lfunc_begin0 - .quad Lset9432 -.set Lset9433, Ltmp5921-Lfunc_begin0 - .quad Lset9433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc213: -.set Lset9434, Ltmp1186-Lfunc_begin0 - .quad Lset9434 -.set Lset9435, Ltmp1187-Lfunc_begin0 - .quad Lset9435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9436, Ltmp1215-Lfunc_begin0 - .quad Lset9436 -.set Lset9437, Ltmp1216-Lfunc_begin0 - .quad Lset9437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9438, Ltmp1237-Lfunc_begin0 - .quad Lset9438 -.set Lset9439, Ltmp1238-Lfunc_begin0 - .quad Lset9439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9440, Ltmp1260-Lfunc_begin0 - .quad Lset9440 -.set Lset9441, Ltmp1261-Lfunc_begin0 - .quad Lset9441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9442, Ltmp1281-Lfunc_begin0 - .quad Lset9442 -.set Lset9443, Ltmp1282-Lfunc_begin0 - .quad Lset9443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9444, Ltmp1314-Lfunc_begin0 - .quad Lset9444 -.set Lset9445, Ltmp1315-Lfunc_begin0 - .quad Lset9445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9446, Ltmp1338-Lfunc_begin0 - .quad Lset9446 -.set Lset9447, Ltmp1339-Lfunc_begin0 - .quad Lset9447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9448, Ltmp1368-Lfunc_begin0 - .quad Lset9448 -.set Lset9449, Ltmp1369-Lfunc_begin0 - .quad Lset9449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9450, Ltmp1462-Lfunc_begin0 - .quad Lset9450 -.set Lset9451, Ltmp1464-Lfunc_begin0 - .quad Lset9451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9452, Ltmp1557-Lfunc_begin0 - .quad Lset9452 -.set Lset9453, Ltmp1559-Lfunc_begin0 - .quad Lset9453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9454, Ltmp1713-Lfunc_begin0 - .quad Lset9454 -.set Lset9455, Ltmp1715-Lfunc_begin0 - .quad Lset9455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9456, Ltmp1864-Lfunc_begin0 - .quad Lset9456 -.set Lset9457, Ltmp1866-Lfunc_begin0 - .quad Lset9457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9458, Ltmp2004-Lfunc_begin0 - .quad Lset9458 -.set Lset9459, Ltmp2006-Lfunc_begin0 - .quad Lset9459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9460, Ltmp2074-Lfunc_begin0 - .quad Lset9460 -.set Lset9461, Ltmp2076-Lfunc_begin0 - .quad Lset9461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9462, Ltmp2120-Lfunc_begin0 - .quad Lset9462 -.set Lset9463, Ltmp2121-Lfunc_begin0 - .quad Lset9463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9464, Ltmp2193-Lfunc_begin0 - .quad Lset9464 -.set Lset9465, Ltmp2195-Lfunc_begin0 - .quad Lset9465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9466, Ltmp2253-Lfunc_begin0 - .quad Lset9466 -.set Lset9467, Ltmp2255-Lfunc_begin0 - .quad Lset9467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9468, Ltmp2302-Lfunc_begin0 - .quad Lset9468 -.set Lset9469, Ltmp2304-Lfunc_begin0 - .quad Lset9469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9470, Ltmp2351-Lfunc_begin0 - .quad Lset9470 -.set Lset9471, Ltmp2353-Lfunc_begin0 - .quad Lset9471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9472, Ltmp2400-Lfunc_begin0 - .quad Lset9472 -.set Lset9473, Ltmp2402-Lfunc_begin0 - .quad Lset9473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9474, Ltmp2444-Lfunc_begin0 - .quad Lset9474 -.set Lset9475, Ltmp2446-Lfunc_begin0 - .quad Lset9475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9476, Ltmp2499-Lfunc_begin0 - .quad Lset9476 -.set Lset9477, Ltmp2501-Lfunc_begin0 - .quad Lset9477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9478, Ltmp2554-Lfunc_begin0 - .quad Lset9478 -.set Lset9479, Ltmp2556-Lfunc_begin0 - .quad Lset9479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9480, Ltmp2609-Lfunc_begin0 - .quad Lset9480 -.set Lset9481, Ltmp2611-Lfunc_begin0 - .quad Lset9481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9482, Ltmp2673-Lfunc_begin0 - .quad Lset9482 -.set Lset9483, Ltmp2675-Lfunc_begin0 - .quad Lset9483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9484, Ltmp2738-Lfunc_begin0 - .quad Lset9484 -.set Lset9485, Ltmp2740-Lfunc_begin0 - .quad Lset9485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9486, Ltmp2811-Lfunc_begin0 - .quad Lset9486 -.set Lset9487, Ltmp2813-Lfunc_begin0 - .quad Lset9487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9488, Ltmp2871-Lfunc_begin0 - .quad Lset9488 -.set Lset9489, Ltmp2873-Lfunc_begin0 - .quad Lset9489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9490, Ltmp2922-Lfunc_begin0 - .quad Lset9490 -.set Lset9491, Ltmp2924-Lfunc_begin0 - .quad Lset9491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9492, Ltmp2957-Lfunc_begin0 - .quad Lset9492 -.set Lset9493, Ltmp2958-Lfunc_begin0 - .quad Lset9493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9494, Ltmp2997-Lfunc_begin0 - .quad Lset9494 -.set Lset9495, Ltmp2999-Lfunc_begin0 - .quad Lset9495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9496, Ltmp3024-Lfunc_begin0 - .quad Lset9496 -.set Lset9497, Ltmp3025-Lfunc_begin0 - .quad Lset9497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9498, Ltmp3047-Lfunc_begin0 - .quad Lset9498 -.set Lset9499, Ltmp3048-Lfunc_begin0 - .quad Lset9499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9500, Ltmp3096-Lfunc_begin0 - .quad Lset9500 -.set Lset9501, Ltmp3097-Lfunc_begin0 - .quad Lset9501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9502, Ltmp3120-Lfunc_begin0 - .quad Lset9502 -.set Lset9503, Ltmp3122-Lfunc_begin0 - .quad Lset9503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9504, Ltmp3161-Lfunc_begin0 - .quad Lset9504 -.set Lset9505, Ltmp3163-Lfunc_begin0 - .quad Lset9505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9506, Ltmp3227-Lfunc_begin0 - .quad Lset9506 -.set Lset9507, Ltmp3228-Lfunc_begin0 - .quad Lset9507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9508, Ltmp3292-Lfunc_begin0 - .quad Lset9508 -.set Lset9509, Ltmp3293-Lfunc_begin0 - .quad Lset9509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9510, Ltmp3329-Lfunc_begin0 - .quad Lset9510 -.set Lset9511, Ltmp3330-Lfunc_begin0 - .quad Lset9511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9512, Ltmp3375-Lfunc_begin0 - .quad Lset9512 -.set Lset9513, Ltmp3376-Lfunc_begin0 - .quad Lset9513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9514, Ltmp3407-Lfunc_begin0 - .quad Lset9514 -.set Lset9515, Ltmp3408-Lfunc_begin0 - .quad Lset9515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9516, Ltmp3435-Lfunc_begin0 - .quad Lset9516 -.set Lset9517, Ltmp3436-Lfunc_begin0 - .quad Lset9517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9518, Ltmp3537-Lfunc_begin0 - .quad Lset9518 -.set Lset9519, Ltmp3538-Lfunc_begin0 - .quad Lset9519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9520, Ltmp3638-Lfunc_begin0 - .quad Lset9520 -.set Lset9521, Ltmp3640-Lfunc_begin0 - .quad Lset9521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9522, Ltmp3685-Lfunc_begin0 - .quad Lset9522 -.set Lset9523, Ltmp3686-Lfunc_begin0 - .quad Lset9523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9524, Ltmp3807-Lfunc_begin0 - .quad Lset9524 -.set Lset9525, Ltmp3809-Lfunc_begin0 - .quad Lset9525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9526, Ltmp3864-Lfunc_begin0 - .quad Lset9526 -.set Lset9527, Ltmp3865-Lfunc_begin0 - .quad Lset9527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9528, Ltmp3933-Lfunc_begin0 - .quad Lset9528 -.set Lset9529, Ltmp3934-Lfunc_begin0 - .quad Lset9529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9530, Ltmp3959-Lfunc_begin0 - .quad Lset9530 -.set Lset9531, Ltmp3960-Lfunc_begin0 - .quad Lset9531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9532, Ltmp3985-Lfunc_begin0 - .quad Lset9532 -.set Lset9533, Ltmp3986-Lfunc_begin0 - .quad Lset9533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9534, Ltmp4011-Lfunc_begin0 - .quad Lset9534 -.set Lset9535, Ltmp4012-Lfunc_begin0 - .quad Lset9535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9536, Ltmp4046-Lfunc_begin0 - .quad Lset9536 -.set Lset9537, Ltmp4047-Lfunc_begin0 - .quad Lset9537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9538, Ltmp4084-Lfunc_begin0 - .quad Lset9538 -.set Lset9539, Ltmp4085-Lfunc_begin0 - .quad Lset9539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9540, Ltmp4106-Lfunc_begin0 - .quad Lset9540 -.set Lset9541, Ltmp4107-Lfunc_begin0 - .quad Lset9541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9542, Ltmp4146-Lfunc_begin0 - .quad Lset9542 -.set Lset9543, Ltmp4147-Lfunc_begin0 - .quad Lset9543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9544, Ltmp4187-Lfunc_begin0 - .quad Lset9544 -.set Lset9545, Ltmp4188-Lfunc_begin0 - .quad Lset9545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9546, Ltmp4227-Lfunc_begin0 - .quad Lset9546 -.set Lset9547, Ltmp4228-Lfunc_begin0 - .quad Lset9547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9548, Ltmp4268-Lfunc_begin0 - .quad Lset9548 -.set Lset9549, Ltmp4269-Lfunc_begin0 - .quad Lset9549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9550, Ltmp4308-Lfunc_begin0 - .quad Lset9550 -.set Lset9551, Ltmp4309-Lfunc_begin0 - .quad Lset9551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9552, Ltmp4349-Lfunc_begin0 - .quad Lset9552 -.set Lset9553, Ltmp4350-Lfunc_begin0 - .quad Lset9553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9554, Ltmp4380-Lfunc_begin0 - .quad Lset9554 -.set Lset9555, Ltmp4381-Lfunc_begin0 - .quad Lset9555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9556, Ltmp4412-Lfunc_begin0 - .quad Lset9556 -.set Lset9557, Ltmp4414-Lfunc_begin0 - .quad Lset9557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9558, Ltmp4454-Lfunc_begin0 - .quad Lset9558 -.set Lset9559, Ltmp4455-Lfunc_begin0 - .quad Lset9559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9560, Ltmp4495-Lfunc_begin0 - .quad Lset9560 -.set Lset9561, Ltmp4496-Lfunc_begin0 - .quad Lset9561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9562, Ltmp4579-Lfunc_begin0 - .quad Lset9562 -.set Lset9563, Ltmp4581-Lfunc_begin0 - .quad Lset9563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9564, Ltmp4649-Lfunc_begin0 - .quad Lset9564 -.set Lset9565, Ltmp4651-Lfunc_begin0 - .quad Lset9565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9566, Ltmp4717-Lfunc_begin0 - .quad Lset9566 -.set Lset9567, Ltmp4719-Lfunc_begin0 - .quad Lset9567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9568, Ltmp4783-Lfunc_begin0 - .quad Lset9568 -.set Lset9569, Ltmp4784-Lfunc_begin0 - .quad Lset9569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9570, Ltmp4813-Lfunc_begin0 - .quad Lset9570 -.set Lset9571, Ltmp4814-Lfunc_begin0 - .quad Lset9571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9572, Ltmp4843-Lfunc_begin0 - .quad Lset9572 -.set Lset9573, Ltmp4844-Lfunc_begin0 - .quad Lset9573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9574, Ltmp4902-Lfunc_begin0 - .quad Lset9574 -.set Lset9575, Ltmp4903-Lfunc_begin0 - .quad Lset9575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9576, Ltmp4943-Lfunc_begin0 - .quad Lset9576 -.set Lset9577, Ltmp4944-Lfunc_begin0 - .quad Lset9577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9578, Ltmp5000-Lfunc_begin0 - .quad Lset9578 -.set Lset9579, Ltmp5001-Lfunc_begin0 - .quad Lset9579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9580, Ltmp5040-Lfunc_begin0 - .quad Lset9580 -.set Lset9581, Ltmp5041-Lfunc_begin0 - .quad Lset9581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9582, Ltmp5078-Lfunc_begin0 - .quad Lset9582 -.set Lset9583, Ltmp5079-Lfunc_begin0 - .quad Lset9583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9584, Ltmp5114-Lfunc_begin0 - .quad Lset9584 -.set Lset9585, Ltmp5115-Lfunc_begin0 - .quad Lset9585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9586, Ltmp5146-Lfunc_begin0 - .quad Lset9586 -.set Lset9587, Ltmp5147-Lfunc_begin0 - .quad Lset9587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9588, Ltmp5178-Lfunc_begin0 - .quad Lset9588 -.set Lset9589, Ltmp5179-Lfunc_begin0 - .quad Lset9589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9590, Ltmp5210-Lfunc_begin0 - .quad Lset9590 -.set Lset9591, Ltmp5211-Lfunc_begin0 - .quad Lset9591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9592, Ltmp5228-Lfunc_begin0 - .quad Lset9592 -.set Lset9593, Ltmp5229-Lfunc_begin0 - .quad Lset9593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9594, Ltmp5246-Lfunc_begin0 - .quad Lset9594 -.set Lset9595, Ltmp5247-Lfunc_begin0 - .quad Lset9595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9596, Ltmp5271-Lfunc_begin0 - .quad Lset9596 -.set Lset9597, Ltmp5272-Lfunc_begin0 - .quad Lset9597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9598, Ltmp5296-Lfunc_begin0 - .quad Lset9598 -.set Lset9599, Ltmp5297-Lfunc_begin0 - .quad Lset9599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9600, Ltmp5322-Lfunc_begin0 - .quad Lset9600 -.set Lset9601, Ltmp5323-Lfunc_begin0 - .quad Lset9601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9602, Ltmp5347-Lfunc_begin0 - .quad Lset9602 -.set Lset9603, Ltmp5348-Lfunc_begin0 - .quad Lset9603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9604, Ltmp5372-Lfunc_begin0 - .quad Lset9604 -.set Lset9605, Ltmp5373-Lfunc_begin0 - .quad Lset9605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9606, Ltmp5397-Lfunc_begin0 - .quad Lset9606 -.set Lset9607, Ltmp5398-Lfunc_begin0 - .quad Lset9607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9608, Ltmp5422-Lfunc_begin0 - .quad Lset9608 -.set Lset9609, Ltmp5423-Lfunc_begin0 - .quad Lset9609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9610, Ltmp5447-Lfunc_begin0 - .quad Lset9610 -.set Lset9611, Ltmp5448-Lfunc_begin0 - .quad Lset9611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9612, Ltmp5472-Lfunc_begin0 - .quad Lset9612 -.set Lset9613, Ltmp5473-Lfunc_begin0 - .quad Lset9613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9614, Ltmp5498-Lfunc_begin0 - .quad Lset9614 -.set Lset9615, Ltmp5499-Lfunc_begin0 - .quad Lset9615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9616, Ltmp5523-Lfunc_begin0 - .quad Lset9616 -.set Lset9617, Ltmp5524-Lfunc_begin0 - .quad Lset9617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9618, Ltmp5548-Lfunc_begin0 - .quad Lset9618 -.set Lset9619, Ltmp5549-Lfunc_begin0 - .quad Lset9619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9620, Ltmp5573-Lfunc_begin0 - .quad Lset9620 -.set Lset9621, Ltmp5574-Lfunc_begin0 - .quad Lset9621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9622, Ltmp5598-Lfunc_begin0 - .quad Lset9622 -.set Lset9623, Ltmp5599-Lfunc_begin0 - .quad Lset9623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9624, Ltmp5631-Lfunc_begin0 - .quad Lset9624 -.set Lset9625, Ltmp5632-Lfunc_begin0 - .quad Lset9625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9626, Ltmp5662-Lfunc_begin0 - .quad Lset9626 -.set Lset9627, Ltmp5663-Lfunc_begin0 - .quad Lset9627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9628, Ltmp5687-Lfunc_begin0 - .quad Lset9628 -.set Lset9629, Ltmp5688-Lfunc_begin0 - .quad Lset9629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9630, Ltmp5712-Lfunc_begin0 - .quad Lset9630 -.set Lset9631, Ltmp5713-Lfunc_begin0 - .quad Lset9631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9632, Ltmp5737-Lfunc_begin0 - .quad Lset9632 -.set Lset9633, Ltmp5738-Lfunc_begin0 - .quad Lset9633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9634, Ltmp5767-Lfunc_begin0 - .quad Lset9634 -.set Lset9635, Ltmp5768-Lfunc_begin0 - .quad Lset9635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9636, Ltmp5795-Lfunc_begin0 - .quad Lset9636 -.set Lset9637, Ltmp5796-Lfunc_begin0 - .quad Lset9637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9638, Ltmp5814-Lfunc_begin0 - .quad Lset9638 -.set Lset9639, Ltmp5815-Lfunc_begin0 - .quad Lset9639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9640, Ltmp5833-Lfunc_begin0 - .quad Lset9640 -.set Lset9641, Ltmp5834-Lfunc_begin0 - .quad Lset9641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9642, Ltmp5852-Lfunc_begin0 - .quad Lset9642 -.set Lset9643, Ltmp5853-Lfunc_begin0 - .quad Lset9643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9644, Ltmp5871-Lfunc_begin0 - .quad Lset9644 -.set Lset9645, Ltmp5872-Lfunc_begin0 - .quad Lset9645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9646, Ltmp5890-Lfunc_begin0 - .quad Lset9646 -.set Lset9647, Ltmp5891-Lfunc_begin0 - .quad Lset9647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9648, Ltmp5920-Lfunc_begin0 - .quad Lset9648 -.set Lset9649, Ltmp5921-Lfunc_begin0 - .quad Lset9649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc214: -.set Lset9650, Ltmp1186-Lfunc_begin0 - .quad Lset9650 -.set Lset9651, Ltmp1187-Lfunc_begin0 - .quad Lset9651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9652, Ltmp1215-Lfunc_begin0 - .quad Lset9652 -.set Lset9653, Ltmp1216-Lfunc_begin0 - .quad Lset9653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9654, Ltmp1237-Lfunc_begin0 - .quad Lset9654 -.set Lset9655, Ltmp1238-Lfunc_begin0 - .quad Lset9655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9656, Ltmp1260-Lfunc_begin0 - .quad Lset9656 -.set Lset9657, Ltmp1261-Lfunc_begin0 - .quad Lset9657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9658, Ltmp1281-Lfunc_begin0 - .quad Lset9658 -.set Lset9659, Ltmp1282-Lfunc_begin0 - .quad Lset9659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9660, Ltmp1314-Lfunc_begin0 - .quad Lset9660 -.set Lset9661, Ltmp1315-Lfunc_begin0 - .quad Lset9661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9662, Ltmp1338-Lfunc_begin0 - .quad Lset9662 -.set Lset9663, Ltmp1339-Lfunc_begin0 - .quad Lset9663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9664, Ltmp1368-Lfunc_begin0 - .quad Lset9664 -.set Lset9665, Ltmp1369-Lfunc_begin0 - .quad Lset9665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9666, Ltmp1462-Lfunc_begin0 - .quad Lset9666 -.set Lset9667, Ltmp1464-Lfunc_begin0 - .quad Lset9667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9668, Ltmp1557-Lfunc_begin0 - .quad Lset9668 -.set Lset9669, Ltmp1559-Lfunc_begin0 - .quad Lset9669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9670, Ltmp1713-Lfunc_begin0 - .quad Lset9670 -.set Lset9671, Ltmp1715-Lfunc_begin0 - .quad Lset9671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9672, Ltmp1864-Lfunc_begin0 - .quad Lset9672 -.set Lset9673, Ltmp1866-Lfunc_begin0 - .quad Lset9673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9674, Ltmp2004-Lfunc_begin0 - .quad Lset9674 -.set Lset9675, Ltmp2006-Lfunc_begin0 - .quad Lset9675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9676, Ltmp2074-Lfunc_begin0 - .quad Lset9676 -.set Lset9677, Ltmp2076-Lfunc_begin0 - .quad Lset9677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9678, Ltmp2120-Lfunc_begin0 - .quad Lset9678 -.set Lset9679, Ltmp2121-Lfunc_begin0 - .quad Lset9679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9680, Ltmp2193-Lfunc_begin0 - .quad Lset9680 -.set Lset9681, Ltmp2195-Lfunc_begin0 - .quad Lset9681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9682, Ltmp2253-Lfunc_begin0 - .quad Lset9682 -.set Lset9683, Ltmp2255-Lfunc_begin0 - .quad Lset9683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9684, Ltmp2302-Lfunc_begin0 - .quad Lset9684 -.set Lset9685, Ltmp2304-Lfunc_begin0 - .quad Lset9685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9686, Ltmp2351-Lfunc_begin0 - .quad Lset9686 -.set Lset9687, Ltmp2353-Lfunc_begin0 - .quad Lset9687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9688, Ltmp2400-Lfunc_begin0 - .quad Lset9688 -.set Lset9689, Ltmp2402-Lfunc_begin0 - .quad Lset9689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9690, Ltmp2444-Lfunc_begin0 - .quad Lset9690 -.set Lset9691, Ltmp2446-Lfunc_begin0 - .quad Lset9691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9692, Ltmp2499-Lfunc_begin0 - .quad Lset9692 -.set Lset9693, Ltmp2501-Lfunc_begin0 - .quad Lset9693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9694, Ltmp2554-Lfunc_begin0 - .quad Lset9694 -.set Lset9695, Ltmp2556-Lfunc_begin0 - .quad Lset9695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9696, Ltmp2609-Lfunc_begin0 - .quad Lset9696 -.set Lset9697, Ltmp2611-Lfunc_begin0 - .quad Lset9697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9698, Ltmp2673-Lfunc_begin0 - .quad Lset9698 -.set Lset9699, Ltmp2675-Lfunc_begin0 - .quad Lset9699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9700, Ltmp2738-Lfunc_begin0 - .quad Lset9700 -.set Lset9701, Ltmp2740-Lfunc_begin0 - .quad Lset9701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9702, Ltmp2811-Lfunc_begin0 - .quad Lset9702 -.set Lset9703, Ltmp2813-Lfunc_begin0 - .quad Lset9703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9704, Ltmp2871-Lfunc_begin0 - .quad Lset9704 -.set Lset9705, Ltmp2873-Lfunc_begin0 - .quad Lset9705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9706, Ltmp2922-Lfunc_begin0 - .quad Lset9706 -.set Lset9707, Ltmp2924-Lfunc_begin0 - .quad Lset9707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9708, Ltmp2957-Lfunc_begin0 - .quad Lset9708 -.set Lset9709, Ltmp2958-Lfunc_begin0 - .quad Lset9709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9710, Ltmp2997-Lfunc_begin0 - .quad Lset9710 -.set Lset9711, Ltmp2999-Lfunc_begin0 - .quad Lset9711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9712, Ltmp3024-Lfunc_begin0 - .quad Lset9712 -.set Lset9713, Ltmp3025-Lfunc_begin0 - .quad Lset9713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9714, Ltmp3047-Lfunc_begin0 - .quad Lset9714 -.set Lset9715, Ltmp3048-Lfunc_begin0 - .quad Lset9715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9716, Ltmp3096-Lfunc_begin0 - .quad Lset9716 -.set Lset9717, Ltmp3097-Lfunc_begin0 - .quad Lset9717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9718, Ltmp3120-Lfunc_begin0 - .quad Lset9718 -.set Lset9719, Ltmp3122-Lfunc_begin0 - .quad Lset9719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9720, Ltmp3161-Lfunc_begin0 - .quad Lset9720 -.set Lset9721, Ltmp3163-Lfunc_begin0 - .quad Lset9721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9722, Ltmp3227-Lfunc_begin0 - .quad Lset9722 -.set Lset9723, Ltmp3228-Lfunc_begin0 - .quad Lset9723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9724, Ltmp3292-Lfunc_begin0 - .quad Lset9724 -.set Lset9725, Ltmp3293-Lfunc_begin0 - .quad Lset9725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9726, Ltmp3329-Lfunc_begin0 - .quad Lset9726 -.set Lset9727, Ltmp3330-Lfunc_begin0 - .quad Lset9727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9728, Ltmp3375-Lfunc_begin0 - .quad Lset9728 -.set Lset9729, Ltmp3376-Lfunc_begin0 - .quad Lset9729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9730, Ltmp3407-Lfunc_begin0 - .quad Lset9730 -.set Lset9731, Ltmp3408-Lfunc_begin0 - .quad Lset9731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9732, Ltmp3435-Lfunc_begin0 - .quad Lset9732 -.set Lset9733, Ltmp3436-Lfunc_begin0 - .quad Lset9733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9734, Ltmp3537-Lfunc_begin0 - .quad Lset9734 -.set Lset9735, Ltmp3538-Lfunc_begin0 - .quad Lset9735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9736, Ltmp3638-Lfunc_begin0 - .quad Lset9736 -.set Lset9737, Ltmp3640-Lfunc_begin0 - .quad Lset9737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9738, Ltmp3685-Lfunc_begin0 - .quad Lset9738 -.set Lset9739, Ltmp3686-Lfunc_begin0 - .quad Lset9739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9740, Ltmp3807-Lfunc_begin0 - .quad Lset9740 -.set Lset9741, Ltmp3809-Lfunc_begin0 - .quad Lset9741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9742, Ltmp3864-Lfunc_begin0 - .quad Lset9742 -.set Lset9743, Ltmp3865-Lfunc_begin0 - .quad Lset9743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9744, Ltmp3933-Lfunc_begin0 - .quad Lset9744 -.set Lset9745, Ltmp3934-Lfunc_begin0 - .quad Lset9745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9746, Ltmp3959-Lfunc_begin0 - .quad Lset9746 -.set Lset9747, Ltmp3960-Lfunc_begin0 - .quad Lset9747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9748, Ltmp3985-Lfunc_begin0 - .quad Lset9748 -.set Lset9749, Ltmp3986-Lfunc_begin0 - .quad Lset9749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9750, Ltmp4011-Lfunc_begin0 - .quad Lset9750 -.set Lset9751, Ltmp4012-Lfunc_begin0 - .quad Lset9751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9752, Ltmp4046-Lfunc_begin0 - .quad Lset9752 -.set Lset9753, Ltmp4047-Lfunc_begin0 - .quad Lset9753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9754, Ltmp4084-Lfunc_begin0 - .quad Lset9754 -.set Lset9755, Ltmp4085-Lfunc_begin0 - .quad Lset9755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9756, Ltmp4106-Lfunc_begin0 - .quad Lset9756 -.set Lset9757, Ltmp4107-Lfunc_begin0 - .quad Lset9757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9758, Ltmp4146-Lfunc_begin0 - .quad Lset9758 -.set Lset9759, Ltmp4147-Lfunc_begin0 - .quad Lset9759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9760, Ltmp4187-Lfunc_begin0 - .quad Lset9760 -.set Lset9761, Ltmp4188-Lfunc_begin0 - .quad Lset9761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9762, Ltmp4227-Lfunc_begin0 - .quad Lset9762 -.set Lset9763, Ltmp4228-Lfunc_begin0 - .quad Lset9763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9764, Ltmp4268-Lfunc_begin0 - .quad Lset9764 -.set Lset9765, Ltmp4269-Lfunc_begin0 - .quad Lset9765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9766, Ltmp4308-Lfunc_begin0 - .quad Lset9766 -.set Lset9767, Ltmp4309-Lfunc_begin0 - .quad Lset9767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9768, Ltmp4349-Lfunc_begin0 - .quad Lset9768 -.set Lset9769, Ltmp4350-Lfunc_begin0 - .quad Lset9769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9770, Ltmp4380-Lfunc_begin0 - .quad Lset9770 -.set Lset9771, Ltmp4381-Lfunc_begin0 - .quad Lset9771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9772, Ltmp4412-Lfunc_begin0 - .quad Lset9772 -.set Lset9773, Ltmp4414-Lfunc_begin0 - .quad Lset9773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9774, Ltmp4454-Lfunc_begin0 - .quad Lset9774 -.set Lset9775, Ltmp4455-Lfunc_begin0 - .quad Lset9775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9776, Ltmp4495-Lfunc_begin0 - .quad Lset9776 -.set Lset9777, Ltmp4496-Lfunc_begin0 - .quad Lset9777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9778, Ltmp4579-Lfunc_begin0 - .quad Lset9778 -.set Lset9779, Ltmp4581-Lfunc_begin0 - .quad Lset9779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9780, Ltmp4649-Lfunc_begin0 - .quad Lset9780 -.set Lset9781, Ltmp4651-Lfunc_begin0 - .quad Lset9781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9782, Ltmp4717-Lfunc_begin0 - .quad Lset9782 -.set Lset9783, Ltmp4719-Lfunc_begin0 - .quad Lset9783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9784, Ltmp4783-Lfunc_begin0 - .quad Lset9784 -.set Lset9785, Ltmp4784-Lfunc_begin0 - .quad Lset9785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9786, Ltmp4813-Lfunc_begin0 - .quad Lset9786 -.set Lset9787, Ltmp4814-Lfunc_begin0 - .quad Lset9787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9788, Ltmp4843-Lfunc_begin0 - .quad Lset9788 -.set Lset9789, Ltmp4844-Lfunc_begin0 - .quad Lset9789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9790, Ltmp4902-Lfunc_begin0 - .quad Lset9790 -.set Lset9791, Ltmp4903-Lfunc_begin0 - .quad Lset9791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9792, Ltmp4943-Lfunc_begin0 - .quad Lset9792 -.set Lset9793, Ltmp4944-Lfunc_begin0 - .quad Lset9793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9794, Ltmp5000-Lfunc_begin0 - .quad Lset9794 -.set Lset9795, Ltmp5001-Lfunc_begin0 - .quad Lset9795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9796, Ltmp5040-Lfunc_begin0 - .quad Lset9796 -.set Lset9797, Ltmp5041-Lfunc_begin0 - .quad Lset9797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9798, Ltmp5078-Lfunc_begin0 - .quad Lset9798 -.set Lset9799, Ltmp5079-Lfunc_begin0 - .quad Lset9799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9800, Ltmp5114-Lfunc_begin0 - .quad Lset9800 -.set Lset9801, Ltmp5115-Lfunc_begin0 - .quad Lset9801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9802, Ltmp5146-Lfunc_begin0 - .quad Lset9802 -.set Lset9803, Ltmp5147-Lfunc_begin0 - .quad Lset9803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9804, Ltmp5178-Lfunc_begin0 - .quad Lset9804 -.set Lset9805, Ltmp5179-Lfunc_begin0 - .quad Lset9805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9806, Ltmp5210-Lfunc_begin0 - .quad Lset9806 -.set Lset9807, Ltmp5211-Lfunc_begin0 - .quad Lset9807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9808, Ltmp5228-Lfunc_begin0 - .quad Lset9808 -.set Lset9809, Ltmp5229-Lfunc_begin0 - .quad Lset9809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9810, Ltmp5246-Lfunc_begin0 - .quad Lset9810 -.set Lset9811, Ltmp5247-Lfunc_begin0 - .quad Lset9811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9812, Ltmp5271-Lfunc_begin0 - .quad Lset9812 -.set Lset9813, Ltmp5272-Lfunc_begin0 - .quad Lset9813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9814, Ltmp5296-Lfunc_begin0 - .quad Lset9814 -.set Lset9815, Ltmp5297-Lfunc_begin0 - .quad Lset9815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9816, Ltmp5322-Lfunc_begin0 - .quad Lset9816 -.set Lset9817, Ltmp5323-Lfunc_begin0 - .quad Lset9817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9818, Ltmp5347-Lfunc_begin0 - .quad Lset9818 -.set Lset9819, Ltmp5348-Lfunc_begin0 - .quad Lset9819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9820, Ltmp5372-Lfunc_begin0 - .quad Lset9820 -.set Lset9821, Ltmp5373-Lfunc_begin0 - .quad Lset9821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9822, Ltmp5397-Lfunc_begin0 - .quad Lset9822 -.set Lset9823, Ltmp5398-Lfunc_begin0 - .quad Lset9823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9824, Ltmp5422-Lfunc_begin0 - .quad Lset9824 -.set Lset9825, Ltmp5423-Lfunc_begin0 - .quad Lset9825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9826, Ltmp5447-Lfunc_begin0 - .quad Lset9826 -.set Lset9827, Ltmp5448-Lfunc_begin0 - .quad Lset9827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9828, Ltmp5472-Lfunc_begin0 - .quad Lset9828 -.set Lset9829, Ltmp5473-Lfunc_begin0 - .quad Lset9829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9830, Ltmp5498-Lfunc_begin0 - .quad Lset9830 -.set Lset9831, Ltmp5499-Lfunc_begin0 - .quad Lset9831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9832, Ltmp5523-Lfunc_begin0 - .quad Lset9832 -.set Lset9833, Ltmp5524-Lfunc_begin0 - .quad Lset9833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9834, Ltmp5548-Lfunc_begin0 - .quad Lset9834 -.set Lset9835, Ltmp5549-Lfunc_begin0 - .quad Lset9835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9836, Ltmp5573-Lfunc_begin0 - .quad Lset9836 -.set Lset9837, Ltmp5574-Lfunc_begin0 - .quad Lset9837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9838, Ltmp5598-Lfunc_begin0 - .quad Lset9838 -.set Lset9839, Ltmp5599-Lfunc_begin0 - .quad Lset9839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9840, Ltmp5631-Lfunc_begin0 - .quad Lset9840 -.set Lset9841, Ltmp5632-Lfunc_begin0 - .quad Lset9841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9842, Ltmp5662-Lfunc_begin0 - .quad Lset9842 -.set Lset9843, Ltmp5663-Lfunc_begin0 - .quad Lset9843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9844, Ltmp5687-Lfunc_begin0 - .quad Lset9844 -.set Lset9845, Ltmp5688-Lfunc_begin0 - .quad Lset9845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9846, Ltmp5712-Lfunc_begin0 - .quad Lset9846 -.set Lset9847, Ltmp5713-Lfunc_begin0 - .quad Lset9847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9848, Ltmp5737-Lfunc_begin0 - .quad Lset9848 -.set Lset9849, Ltmp5738-Lfunc_begin0 - .quad Lset9849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9850, Ltmp5767-Lfunc_begin0 - .quad Lset9850 -.set Lset9851, Ltmp5768-Lfunc_begin0 - .quad Lset9851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9852, Ltmp5795-Lfunc_begin0 - .quad Lset9852 -.set Lset9853, Ltmp5796-Lfunc_begin0 - .quad Lset9853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9854, Ltmp5814-Lfunc_begin0 - .quad Lset9854 -.set Lset9855, Ltmp5815-Lfunc_begin0 - .quad Lset9855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9856, Ltmp5833-Lfunc_begin0 - .quad Lset9856 -.set Lset9857, Ltmp5834-Lfunc_begin0 - .quad Lset9857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9858, Ltmp5852-Lfunc_begin0 - .quad Lset9858 -.set Lset9859, Ltmp5853-Lfunc_begin0 - .quad Lset9859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9860, Ltmp5871-Lfunc_begin0 - .quad Lset9860 -.set Lset9861, Ltmp5872-Lfunc_begin0 - .quad Lset9861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9862, Ltmp5890-Lfunc_begin0 - .quad Lset9862 -.set Lset9863, Ltmp5891-Lfunc_begin0 - .quad Lset9863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9864, Ltmp5920-Lfunc_begin0 - .quad Lset9864 -.set Lset9865, Ltmp5921-Lfunc_begin0 - .quad Lset9865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc215: -.set Lset9866, Ltmp1186-Lfunc_begin0 - .quad Lset9866 -.set Lset9867, Ltmp1187-Lfunc_begin0 - .quad Lset9867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9868, Ltmp1215-Lfunc_begin0 - .quad Lset9868 -.set Lset9869, Ltmp1216-Lfunc_begin0 - .quad Lset9869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9870, Ltmp1237-Lfunc_begin0 - .quad Lset9870 -.set Lset9871, Ltmp1238-Lfunc_begin0 - .quad Lset9871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9872, Ltmp1260-Lfunc_begin0 - .quad Lset9872 -.set Lset9873, Ltmp1261-Lfunc_begin0 - .quad Lset9873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9874, Ltmp1281-Lfunc_begin0 - .quad Lset9874 -.set Lset9875, Ltmp1282-Lfunc_begin0 - .quad Lset9875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9876, Ltmp1314-Lfunc_begin0 - .quad Lset9876 -.set Lset9877, Ltmp1315-Lfunc_begin0 - .quad Lset9877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9878, Ltmp1338-Lfunc_begin0 - .quad Lset9878 -.set Lset9879, Ltmp1339-Lfunc_begin0 - .quad Lset9879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9880, Ltmp1368-Lfunc_begin0 - .quad Lset9880 -.set Lset9881, Ltmp1369-Lfunc_begin0 - .quad Lset9881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9882, Ltmp1462-Lfunc_begin0 - .quad Lset9882 -.set Lset9883, Ltmp1464-Lfunc_begin0 - .quad Lset9883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9884, Ltmp1557-Lfunc_begin0 - .quad Lset9884 -.set Lset9885, Ltmp1559-Lfunc_begin0 - .quad Lset9885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9886, Ltmp1713-Lfunc_begin0 - .quad Lset9886 -.set Lset9887, Ltmp1715-Lfunc_begin0 - .quad Lset9887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9888, Ltmp1864-Lfunc_begin0 - .quad Lset9888 -.set Lset9889, Ltmp1866-Lfunc_begin0 - .quad Lset9889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9890, Ltmp2004-Lfunc_begin0 - .quad Lset9890 -.set Lset9891, Ltmp2006-Lfunc_begin0 - .quad Lset9891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9892, Ltmp2074-Lfunc_begin0 - .quad Lset9892 -.set Lset9893, Ltmp2076-Lfunc_begin0 - .quad Lset9893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9894, Ltmp2120-Lfunc_begin0 - .quad Lset9894 -.set Lset9895, Ltmp2121-Lfunc_begin0 - .quad Lset9895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9896, Ltmp2193-Lfunc_begin0 - .quad Lset9896 -.set Lset9897, Ltmp2195-Lfunc_begin0 - .quad Lset9897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9898, Ltmp2253-Lfunc_begin0 - .quad Lset9898 -.set Lset9899, Ltmp2255-Lfunc_begin0 - .quad Lset9899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9900, Ltmp2302-Lfunc_begin0 - .quad Lset9900 -.set Lset9901, Ltmp2304-Lfunc_begin0 - .quad Lset9901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9902, Ltmp2351-Lfunc_begin0 - .quad Lset9902 -.set Lset9903, Ltmp2353-Lfunc_begin0 - .quad Lset9903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9904, Ltmp2400-Lfunc_begin0 - .quad Lset9904 -.set Lset9905, Ltmp2402-Lfunc_begin0 - .quad Lset9905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9906, Ltmp2444-Lfunc_begin0 - .quad Lset9906 -.set Lset9907, Ltmp2446-Lfunc_begin0 - .quad Lset9907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9908, Ltmp2499-Lfunc_begin0 - .quad Lset9908 -.set Lset9909, Ltmp2501-Lfunc_begin0 - .quad Lset9909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9910, Ltmp2554-Lfunc_begin0 - .quad Lset9910 -.set Lset9911, Ltmp2556-Lfunc_begin0 - .quad Lset9911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9912, Ltmp2609-Lfunc_begin0 - .quad Lset9912 -.set Lset9913, Ltmp2611-Lfunc_begin0 - .quad Lset9913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9914, Ltmp2673-Lfunc_begin0 - .quad Lset9914 -.set Lset9915, Ltmp2675-Lfunc_begin0 - .quad Lset9915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9916, Ltmp2738-Lfunc_begin0 - .quad Lset9916 -.set Lset9917, Ltmp2740-Lfunc_begin0 - .quad Lset9917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9918, Ltmp2811-Lfunc_begin0 - .quad Lset9918 -.set Lset9919, Ltmp2813-Lfunc_begin0 - .quad Lset9919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9920, Ltmp2871-Lfunc_begin0 - .quad Lset9920 -.set Lset9921, Ltmp2873-Lfunc_begin0 - .quad Lset9921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9922, Ltmp2922-Lfunc_begin0 - .quad Lset9922 -.set Lset9923, Ltmp2924-Lfunc_begin0 - .quad Lset9923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9924, Ltmp2957-Lfunc_begin0 - .quad Lset9924 -.set Lset9925, Ltmp2958-Lfunc_begin0 - .quad Lset9925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9926, Ltmp2997-Lfunc_begin0 - .quad Lset9926 -.set Lset9927, Ltmp2999-Lfunc_begin0 - .quad Lset9927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9928, Ltmp3024-Lfunc_begin0 - .quad Lset9928 -.set Lset9929, Ltmp3025-Lfunc_begin0 - .quad Lset9929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9930, Ltmp3047-Lfunc_begin0 - .quad Lset9930 -.set Lset9931, Ltmp3048-Lfunc_begin0 - .quad Lset9931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9932, Ltmp3096-Lfunc_begin0 - .quad Lset9932 -.set Lset9933, Ltmp3097-Lfunc_begin0 - .quad Lset9933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9934, Ltmp3120-Lfunc_begin0 - .quad Lset9934 -.set Lset9935, Ltmp3122-Lfunc_begin0 - .quad Lset9935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9936, Ltmp3161-Lfunc_begin0 - .quad Lset9936 -.set Lset9937, Ltmp3163-Lfunc_begin0 - .quad Lset9937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9938, Ltmp3227-Lfunc_begin0 - .quad Lset9938 -.set Lset9939, Ltmp3228-Lfunc_begin0 - .quad Lset9939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9940, Ltmp3292-Lfunc_begin0 - .quad Lset9940 -.set Lset9941, Ltmp3293-Lfunc_begin0 - .quad Lset9941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9942, Ltmp3329-Lfunc_begin0 - .quad Lset9942 -.set Lset9943, Ltmp3330-Lfunc_begin0 - .quad Lset9943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9944, Ltmp3375-Lfunc_begin0 - .quad Lset9944 -.set Lset9945, Ltmp3376-Lfunc_begin0 - .quad Lset9945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9946, Ltmp3407-Lfunc_begin0 - .quad Lset9946 -.set Lset9947, Ltmp3408-Lfunc_begin0 - .quad Lset9947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9948, Ltmp3435-Lfunc_begin0 - .quad Lset9948 -.set Lset9949, Ltmp3436-Lfunc_begin0 - .quad Lset9949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9950, Ltmp3537-Lfunc_begin0 - .quad Lset9950 -.set Lset9951, Ltmp3538-Lfunc_begin0 - .quad Lset9951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9952, Ltmp3638-Lfunc_begin0 - .quad Lset9952 -.set Lset9953, Ltmp3640-Lfunc_begin0 - .quad Lset9953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9954, Ltmp3685-Lfunc_begin0 - .quad Lset9954 -.set Lset9955, Ltmp3686-Lfunc_begin0 - .quad Lset9955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9956, Ltmp3807-Lfunc_begin0 - .quad Lset9956 -.set Lset9957, Ltmp3809-Lfunc_begin0 - .quad Lset9957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9958, Ltmp3864-Lfunc_begin0 - .quad Lset9958 -.set Lset9959, Ltmp3865-Lfunc_begin0 - .quad Lset9959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9960, Ltmp3933-Lfunc_begin0 - .quad Lset9960 -.set Lset9961, Ltmp3934-Lfunc_begin0 - .quad Lset9961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9962, Ltmp3959-Lfunc_begin0 - .quad Lset9962 -.set Lset9963, Ltmp3960-Lfunc_begin0 - .quad Lset9963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9964, Ltmp3985-Lfunc_begin0 - .quad Lset9964 -.set Lset9965, Ltmp3986-Lfunc_begin0 - .quad Lset9965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9966, Ltmp4011-Lfunc_begin0 - .quad Lset9966 -.set Lset9967, Ltmp4012-Lfunc_begin0 - .quad Lset9967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9968, Ltmp4046-Lfunc_begin0 - .quad Lset9968 -.set Lset9969, Ltmp4047-Lfunc_begin0 - .quad Lset9969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9970, Ltmp4084-Lfunc_begin0 - .quad Lset9970 -.set Lset9971, Ltmp4085-Lfunc_begin0 - .quad Lset9971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9972, Ltmp4106-Lfunc_begin0 - .quad Lset9972 -.set Lset9973, Ltmp4107-Lfunc_begin0 - .quad Lset9973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9974, Ltmp4146-Lfunc_begin0 - .quad Lset9974 -.set Lset9975, Ltmp4147-Lfunc_begin0 - .quad Lset9975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9976, Ltmp4187-Lfunc_begin0 - .quad Lset9976 -.set Lset9977, Ltmp4188-Lfunc_begin0 - .quad Lset9977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9978, Ltmp4227-Lfunc_begin0 - .quad Lset9978 -.set Lset9979, Ltmp4228-Lfunc_begin0 - .quad Lset9979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9980, Ltmp4268-Lfunc_begin0 - .quad Lset9980 -.set Lset9981, Ltmp4269-Lfunc_begin0 - .quad Lset9981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9982, Ltmp4308-Lfunc_begin0 - .quad Lset9982 -.set Lset9983, Ltmp4309-Lfunc_begin0 - .quad Lset9983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9984, Ltmp4349-Lfunc_begin0 - .quad Lset9984 -.set Lset9985, Ltmp4350-Lfunc_begin0 - .quad Lset9985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9986, Ltmp4380-Lfunc_begin0 - .quad Lset9986 -.set Lset9987, Ltmp4381-Lfunc_begin0 - .quad Lset9987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9988, Ltmp4412-Lfunc_begin0 - .quad Lset9988 -.set Lset9989, Ltmp4414-Lfunc_begin0 - .quad Lset9989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9990, Ltmp4454-Lfunc_begin0 - .quad Lset9990 -.set Lset9991, Ltmp4455-Lfunc_begin0 - .quad Lset9991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9992, Ltmp4495-Lfunc_begin0 - .quad Lset9992 -.set Lset9993, Ltmp4496-Lfunc_begin0 - .quad Lset9993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9994, Ltmp4579-Lfunc_begin0 - .quad Lset9994 -.set Lset9995, Ltmp4581-Lfunc_begin0 - .quad Lset9995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9996, Ltmp4649-Lfunc_begin0 - .quad Lset9996 -.set Lset9997, Ltmp4651-Lfunc_begin0 - .quad Lset9997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset9998, Ltmp4717-Lfunc_begin0 - .quad Lset9998 -.set Lset9999, Ltmp4719-Lfunc_begin0 - .quad Lset9999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10000, Ltmp4783-Lfunc_begin0 - .quad Lset10000 -.set Lset10001, Ltmp4784-Lfunc_begin0 - .quad Lset10001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10002, Ltmp4813-Lfunc_begin0 - .quad Lset10002 -.set Lset10003, Ltmp4814-Lfunc_begin0 - .quad Lset10003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10004, Ltmp4843-Lfunc_begin0 - .quad Lset10004 -.set Lset10005, Ltmp4844-Lfunc_begin0 - .quad Lset10005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10006, Ltmp4902-Lfunc_begin0 - .quad Lset10006 -.set Lset10007, Ltmp4903-Lfunc_begin0 - .quad Lset10007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10008, Ltmp4943-Lfunc_begin0 - .quad Lset10008 -.set Lset10009, Ltmp4944-Lfunc_begin0 - .quad Lset10009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10010, Ltmp5000-Lfunc_begin0 - .quad Lset10010 -.set Lset10011, Ltmp5001-Lfunc_begin0 - .quad Lset10011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10012, Ltmp5040-Lfunc_begin0 - .quad Lset10012 -.set Lset10013, Ltmp5041-Lfunc_begin0 - .quad Lset10013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10014, Ltmp5078-Lfunc_begin0 - .quad Lset10014 -.set Lset10015, Ltmp5079-Lfunc_begin0 - .quad Lset10015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10016, Ltmp5114-Lfunc_begin0 - .quad Lset10016 -.set Lset10017, Ltmp5115-Lfunc_begin0 - .quad Lset10017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10018, Ltmp5146-Lfunc_begin0 - .quad Lset10018 -.set Lset10019, Ltmp5147-Lfunc_begin0 - .quad Lset10019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10020, Ltmp5178-Lfunc_begin0 - .quad Lset10020 -.set Lset10021, Ltmp5179-Lfunc_begin0 - .quad Lset10021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10022, Ltmp5210-Lfunc_begin0 - .quad Lset10022 -.set Lset10023, Ltmp5211-Lfunc_begin0 - .quad Lset10023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10024, Ltmp5228-Lfunc_begin0 - .quad Lset10024 -.set Lset10025, Ltmp5229-Lfunc_begin0 - .quad Lset10025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10026, Ltmp5246-Lfunc_begin0 - .quad Lset10026 -.set Lset10027, Ltmp5247-Lfunc_begin0 - .quad Lset10027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10028, Ltmp5271-Lfunc_begin0 - .quad Lset10028 -.set Lset10029, Ltmp5272-Lfunc_begin0 - .quad Lset10029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10030, Ltmp5296-Lfunc_begin0 - .quad Lset10030 -.set Lset10031, Ltmp5297-Lfunc_begin0 - .quad Lset10031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10032, Ltmp5322-Lfunc_begin0 - .quad Lset10032 -.set Lset10033, Ltmp5323-Lfunc_begin0 - .quad Lset10033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10034, Ltmp5347-Lfunc_begin0 - .quad Lset10034 -.set Lset10035, Ltmp5348-Lfunc_begin0 - .quad Lset10035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10036, Ltmp5372-Lfunc_begin0 - .quad Lset10036 -.set Lset10037, Ltmp5373-Lfunc_begin0 - .quad Lset10037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10038, Ltmp5397-Lfunc_begin0 - .quad Lset10038 -.set Lset10039, Ltmp5398-Lfunc_begin0 - .quad Lset10039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10040, Ltmp5422-Lfunc_begin0 - .quad Lset10040 -.set Lset10041, Ltmp5423-Lfunc_begin0 - .quad Lset10041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10042, Ltmp5447-Lfunc_begin0 - .quad Lset10042 -.set Lset10043, Ltmp5448-Lfunc_begin0 - .quad Lset10043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10044, Ltmp5472-Lfunc_begin0 - .quad Lset10044 -.set Lset10045, Ltmp5473-Lfunc_begin0 - .quad Lset10045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10046, Ltmp5498-Lfunc_begin0 - .quad Lset10046 -.set Lset10047, Ltmp5499-Lfunc_begin0 - .quad Lset10047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10048, Ltmp5523-Lfunc_begin0 - .quad Lset10048 -.set Lset10049, Ltmp5524-Lfunc_begin0 - .quad Lset10049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10050, Ltmp5548-Lfunc_begin0 - .quad Lset10050 -.set Lset10051, Ltmp5549-Lfunc_begin0 - .quad Lset10051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10052, Ltmp5573-Lfunc_begin0 - .quad Lset10052 -.set Lset10053, Ltmp5574-Lfunc_begin0 - .quad Lset10053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10054, Ltmp5598-Lfunc_begin0 - .quad Lset10054 -.set Lset10055, Ltmp5599-Lfunc_begin0 - .quad Lset10055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10056, Ltmp5631-Lfunc_begin0 - .quad Lset10056 -.set Lset10057, Ltmp5632-Lfunc_begin0 - .quad Lset10057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10058, Ltmp5662-Lfunc_begin0 - .quad Lset10058 -.set Lset10059, Ltmp5663-Lfunc_begin0 - .quad Lset10059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10060, Ltmp5687-Lfunc_begin0 - .quad Lset10060 -.set Lset10061, Ltmp5688-Lfunc_begin0 - .quad Lset10061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10062, Ltmp5712-Lfunc_begin0 - .quad Lset10062 -.set Lset10063, Ltmp5713-Lfunc_begin0 - .quad Lset10063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10064, Ltmp5737-Lfunc_begin0 - .quad Lset10064 -.set Lset10065, Ltmp5738-Lfunc_begin0 - .quad Lset10065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10066, Ltmp5767-Lfunc_begin0 - .quad Lset10066 -.set Lset10067, Ltmp5768-Lfunc_begin0 - .quad Lset10067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10068, Ltmp5795-Lfunc_begin0 - .quad Lset10068 -.set Lset10069, Ltmp5796-Lfunc_begin0 - .quad Lset10069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10070, Ltmp5814-Lfunc_begin0 - .quad Lset10070 -.set Lset10071, Ltmp5815-Lfunc_begin0 - .quad Lset10071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10072, Ltmp5833-Lfunc_begin0 - .quad Lset10072 -.set Lset10073, Ltmp5834-Lfunc_begin0 - .quad Lset10073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10074, Ltmp5852-Lfunc_begin0 - .quad Lset10074 -.set Lset10075, Ltmp5853-Lfunc_begin0 - .quad Lset10075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10076, Ltmp5871-Lfunc_begin0 - .quad Lset10076 -.set Lset10077, Ltmp5872-Lfunc_begin0 - .quad Lset10077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10078, Ltmp5890-Lfunc_begin0 - .quad Lset10078 -.set Lset10079, Ltmp5891-Lfunc_begin0 - .quad Lset10079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10080, Ltmp5920-Lfunc_begin0 - .quad Lset10080 -.set Lset10081, Ltmp5921-Lfunc_begin0 - .quad Lset10081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc216: -.set Lset10082, Ltmp1186-Lfunc_begin0 - .quad Lset10082 -.set Lset10083, Ltmp1187-Lfunc_begin0 - .quad Lset10083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10084, Ltmp1215-Lfunc_begin0 - .quad Lset10084 -.set Lset10085, Ltmp1216-Lfunc_begin0 - .quad Lset10085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10086, Ltmp1237-Lfunc_begin0 - .quad Lset10086 -.set Lset10087, Ltmp1238-Lfunc_begin0 - .quad Lset10087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10088, Ltmp1260-Lfunc_begin0 - .quad Lset10088 -.set Lset10089, Ltmp1261-Lfunc_begin0 - .quad Lset10089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10090, Ltmp1281-Lfunc_begin0 - .quad Lset10090 -.set Lset10091, Ltmp1282-Lfunc_begin0 - .quad Lset10091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10092, Ltmp1314-Lfunc_begin0 - .quad Lset10092 -.set Lset10093, Ltmp1315-Lfunc_begin0 - .quad Lset10093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10094, Ltmp1338-Lfunc_begin0 - .quad Lset10094 -.set Lset10095, Ltmp1339-Lfunc_begin0 - .quad Lset10095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10096, Ltmp1368-Lfunc_begin0 - .quad Lset10096 -.set Lset10097, Ltmp1369-Lfunc_begin0 - .quad Lset10097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10098, Ltmp1462-Lfunc_begin0 - .quad Lset10098 -.set Lset10099, Ltmp1464-Lfunc_begin0 - .quad Lset10099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10100, Ltmp1557-Lfunc_begin0 - .quad Lset10100 -.set Lset10101, Ltmp1559-Lfunc_begin0 - .quad Lset10101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10102, Ltmp1713-Lfunc_begin0 - .quad Lset10102 -.set Lset10103, Ltmp1715-Lfunc_begin0 - .quad Lset10103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10104, Ltmp1864-Lfunc_begin0 - .quad Lset10104 -.set Lset10105, Ltmp1866-Lfunc_begin0 - .quad Lset10105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10106, Ltmp2004-Lfunc_begin0 - .quad Lset10106 -.set Lset10107, Ltmp2006-Lfunc_begin0 - .quad Lset10107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10108, Ltmp2074-Lfunc_begin0 - .quad Lset10108 -.set Lset10109, Ltmp2076-Lfunc_begin0 - .quad Lset10109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10110, Ltmp2120-Lfunc_begin0 - .quad Lset10110 -.set Lset10111, Ltmp2121-Lfunc_begin0 - .quad Lset10111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10112, Ltmp2193-Lfunc_begin0 - .quad Lset10112 -.set Lset10113, Ltmp2195-Lfunc_begin0 - .quad Lset10113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10114, Ltmp2253-Lfunc_begin0 - .quad Lset10114 -.set Lset10115, Ltmp2255-Lfunc_begin0 - .quad Lset10115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10116, Ltmp2302-Lfunc_begin0 - .quad Lset10116 -.set Lset10117, Ltmp2304-Lfunc_begin0 - .quad Lset10117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10118, Ltmp2351-Lfunc_begin0 - .quad Lset10118 -.set Lset10119, Ltmp2353-Lfunc_begin0 - .quad Lset10119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10120, Ltmp2400-Lfunc_begin0 - .quad Lset10120 -.set Lset10121, Ltmp2402-Lfunc_begin0 - .quad Lset10121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10122, Ltmp2444-Lfunc_begin0 - .quad Lset10122 -.set Lset10123, Ltmp2446-Lfunc_begin0 - .quad Lset10123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10124, Ltmp2499-Lfunc_begin0 - .quad Lset10124 -.set Lset10125, Ltmp2501-Lfunc_begin0 - .quad Lset10125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10126, Ltmp2554-Lfunc_begin0 - .quad Lset10126 -.set Lset10127, Ltmp2556-Lfunc_begin0 - .quad Lset10127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10128, Ltmp2609-Lfunc_begin0 - .quad Lset10128 -.set Lset10129, Ltmp2611-Lfunc_begin0 - .quad Lset10129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10130, Ltmp2673-Lfunc_begin0 - .quad Lset10130 -.set Lset10131, Ltmp2675-Lfunc_begin0 - .quad Lset10131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10132, Ltmp2738-Lfunc_begin0 - .quad Lset10132 -.set Lset10133, Ltmp2740-Lfunc_begin0 - .quad Lset10133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10134, Ltmp2811-Lfunc_begin0 - .quad Lset10134 -.set Lset10135, Ltmp2813-Lfunc_begin0 - .quad Lset10135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10136, Ltmp2871-Lfunc_begin0 - .quad Lset10136 -.set Lset10137, Ltmp2873-Lfunc_begin0 - .quad Lset10137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10138, Ltmp2922-Lfunc_begin0 - .quad Lset10138 -.set Lset10139, Ltmp2924-Lfunc_begin0 - .quad Lset10139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10140, Ltmp2957-Lfunc_begin0 - .quad Lset10140 -.set Lset10141, Ltmp2958-Lfunc_begin0 - .quad Lset10141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10142, Ltmp2997-Lfunc_begin0 - .quad Lset10142 -.set Lset10143, Ltmp2999-Lfunc_begin0 - .quad Lset10143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10144, Ltmp3024-Lfunc_begin0 - .quad Lset10144 -.set Lset10145, Ltmp3025-Lfunc_begin0 - .quad Lset10145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10146, Ltmp3047-Lfunc_begin0 - .quad Lset10146 -.set Lset10147, Ltmp3048-Lfunc_begin0 - .quad Lset10147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10148, Ltmp3096-Lfunc_begin0 - .quad Lset10148 -.set Lset10149, Ltmp3097-Lfunc_begin0 - .quad Lset10149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10150, Ltmp3120-Lfunc_begin0 - .quad Lset10150 -.set Lset10151, Ltmp3122-Lfunc_begin0 - .quad Lset10151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10152, Ltmp3161-Lfunc_begin0 - .quad Lset10152 -.set Lset10153, Ltmp3163-Lfunc_begin0 - .quad Lset10153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10154, Ltmp3227-Lfunc_begin0 - .quad Lset10154 -.set Lset10155, Ltmp3228-Lfunc_begin0 - .quad Lset10155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10156, Ltmp3292-Lfunc_begin0 - .quad Lset10156 -.set Lset10157, Ltmp3293-Lfunc_begin0 - .quad Lset10157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10158, Ltmp3329-Lfunc_begin0 - .quad Lset10158 -.set Lset10159, Ltmp3330-Lfunc_begin0 - .quad Lset10159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10160, Ltmp3375-Lfunc_begin0 - .quad Lset10160 -.set Lset10161, Ltmp3376-Lfunc_begin0 - .quad Lset10161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10162, Ltmp3407-Lfunc_begin0 - .quad Lset10162 -.set Lset10163, Ltmp3408-Lfunc_begin0 - .quad Lset10163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10164, Ltmp3435-Lfunc_begin0 - .quad Lset10164 -.set Lset10165, Ltmp3436-Lfunc_begin0 - .quad Lset10165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10166, Ltmp3537-Lfunc_begin0 - .quad Lset10166 -.set Lset10167, Ltmp3538-Lfunc_begin0 - .quad Lset10167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10168, Ltmp3638-Lfunc_begin0 - .quad Lset10168 -.set Lset10169, Ltmp3640-Lfunc_begin0 - .quad Lset10169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10170, Ltmp3685-Lfunc_begin0 - .quad Lset10170 -.set Lset10171, Ltmp3686-Lfunc_begin0 - .quad Lset10171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10172, Ltmp3807-Lfunc_begin0 - .quad Lset10172 -.set Lset10173, Ltmp3809-Lfunc_begin0 - .quad Lset10173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10174, Ltmp3864-Lfunc_begin0 - .quad Lset10174 -.set Lset10175, Ltmp3865-Lfunc_begin0 - .quad Lset10175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10176, Ltmp3933-Lfunc_begin0 - .quad Lset10176 -.set Lset10177, Ltmp3934-Lfunc_begin0 - .quad Lset10177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10178, Ltmp3959-Lfunc_begin0 - .quad Lset10178 -.set Lset10179, Ltmp3960-Lfunc_begin0 - .quad Lset10179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10180, Ltmp3985-Lfunc_begin0 - .quad Lset10180 -.set Lset10181, Ltmp3986-Lfunc_begin0 - .quad Lset10181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10182, Ltmp4011-Lfunc_begin0 - .quad Lset10182 -.set Lset10183, Ltmp4012-Lfunc_begin0 - .quad Lset10183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10184, Ltmp4046-Lfunc_begin0 - .quad Lset10184 -.set Lset10185, Ltmp4047-Lfunc_begin0 - .quad Lset10185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10186, Ltmp4084-Lfunc_begin0 - .quad Lset10186 -.set Lset10187, Ltmp4085-Lfunc_begin0 - .quad Lset10187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10188, Ltmp4106-Lfunc_begin0 - .quad Lset10188 -.set Lset10189, Ltmp4107-Lfunc_begin0 - .quad Lset10189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10190, Ltmp4146-Lfunc_begin0 - .quad Lset10190 -.set Lset10191, Ltmp4147-Lfunc_begin0 - .quad Lset10191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10192, Ltmp4187-Lfunc_begin0 - .quad Lset10192 -.set Lset10193, Ltmp4188-Lfunc_begin0 - .quad Lset10193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10194, Ltmp4227-Lfunc_begin0 - .quad Lset10194 -.set Lset10195, Ltmp4228-Lfunc_begin0 - .quad Lset10195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10196, Ltmp4268-Lfunc_begin0 - .quad Lset10196 -.set Lset10197, Ltmp4269-Lfunc_begin0 - .quad Lset10197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10198, Ltmp4308-Lfunc_begin0 - .quad Lset10198 -.set Lset10199, Ltmp4309-Lfunc_begin0 - .quad Lset10199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10200, Ltmp4349-Lfunc_begin0 - .quad Lset10200 -.set Lset10201, Ltmp4350-Lfunc_begin0 - .quad Lset10201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10202, Ltmp4380-Lfunc_begin0 - .quad Lset10202 -.set Lset10203, Ltmp4381-Lfunc_begin0 - .quad Lset10203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10204, Ltmp4412-Lfunc_begin0 - .quad Lset10204 -.set Lset10205, Ltmp4414-Lfunc_begin0 - .quad Lset10205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10206, Ltmp4454-Lfunc_begin0 - .quad Lset10206 -.set Lset10207, Ltmp4455-Lfunc_begin0 - .quad Lset10207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10208, Ltmp4495-Lfunc_begin0 - .quad Lset10208 -.set Lset10209, Ltmp4496-Lfunc_begin0 - .quad Lset10209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10210, Ltmp4579-Lfunc_begin0 - .quad Lset10210 -.set Lset10211, Ltmp4581-Lfunc_begin0 - .quad Lset10211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10212, Ltmp4649-Lfunc_begin0 - .quad Lset10212 -.set Lset10213, Ltmp4651-Lfunc_begin0 - .quad Lset10213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10214, Ltmp4717-Lfunc_begin0 - .quad Lset10214 -.set Lset10215, Ltmp4719-Lfunc_begin0 - .quad Lset10215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10216, Ltmp4783-Lfunc_begin0 - .quad Lset10216 -.set Lset10217, Ltmp4784-Lfunc_begin0 - .quad Lset10217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10218, Ltmp4813-Lfunc_begin0 - .quad Lset10218 -.set Lset10219, Ltmp4814-Lfunc_begin0 - .quad Lset10219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10220, Ltmp4843-Lfunc_begin0 - .quad Lset10220 -.set Lset10221, Ltmp4844-Lfunc_begin0 - .quad Lset10221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10222, Ltmp4902-Lfunc_begin0 - .quad Lset10222 -.set Lset10223, Ltmp4903-Lfunc_begin0 - .quad Lset10223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10224, Ltmp4943-Lfunc_begin0 - .quad Lset10224 -.set Lset10225, Ltmp4944-Lfunc_begin0 - .quad Lset10225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10226, Ltmp5000-Lfunc_begin0 - .quad Lset10226 -.set Lset10227, Ltmp5001-Lfunc_begin0 - .quad Lset10227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10228, Ltmp5040-Lfunc_begin0 - .quad Lset10228 -.set Lset10229, Ltmp5041-Lfunc_begin0 - .quad Lset10229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10230, Ltmp5078-Lfunc_begin0 - .quad Lset10230 -.set Lset10231, Ltmp5079-Lfunc_begin0 - .quad Lset10231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10232, Ltmp5114-Lfunc_begin0 - .quad Lset10232 -.set Lset10233, Ltmp5115-Lfunc_begin0 - .quad Lset10233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10234, Ltmp5146-Lfunc_begin0 - .quad Lset10234 -.set Lset10235, Ltmp5147-Lfunc_begin0 - .quad Lset10235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10236, Ltmp5178-Lfunc_begin0 - .quad Lset10236 -.set Lset10237, Ltmp5179-Lfunc_begin0 - .quad Lset10237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10238, Ltmp5210-Lfunc_begin0 - .quad Lset10238 -.set Lset10239, Ltmp5211-Lfunc_begin0 - .quad Lset10239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10240, Ltmp5228-Lfunc_begin0 - .quad Lset10240 -.set Lset10241, Ltmp5229-Lfunc_begin0 - .quad Lset10241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10242, Ltmp5246-Lfunc_begin0 - .quad Lset10242 -.set Lset10243, Ltmp5247-Lfunc_begin0 - .quad Lset10243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10244, Ltmp5271-Lfunc_begin0 - .quad Lset10244 -.set Lset10245, Ltmp5272-Lfunc_begin0 - .quad Lset10245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10246, Ltmp5296-Lfunc_begin0 - .quad Lset10246 -.set Lset10247, Ltmp5297-Lfunc_begin0 - .quad Lset10247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10248, Ltmp5322-Lfunc_begin0 - .quad Lset10248 -.set Lset10249, Ltmp5323-Lfunc_begin0 - .quad Lset10249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10250, Ltmp5347-Lfunc_begin0 - .quad Lset10250 -.set Lset10251, Ltmp5348-Lfunc_begin0 - .quad Lset10251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10252, Ltmp5372-Lfunc_begin0 - .quad Lset10252 -.set Lset10253, Ltmp5373-Lfunc_begin0 - .quad Lset10253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10254, Ltmp5397-Lfunc_begin0 - .quad Lset10254 -.set Lset10255, Ltmp5398-Lfunc_begin0 - .quad Lset10255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10256, Ltmp5422-Lfunc_begin0 - .quad Lset10256 -.set Lset10257, Ltmp5423-Lfunc_begin0 - .quad Lset10257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10258, Ltmp5447-Lfunc_begin0 - .quad Lset10258 -.set Lset10259, Ltmp5448-Lfunc_begin0 - .quad Lset10259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10260, Ltmp5472-Lfunc_begin0 - .quad Lset10260 -.set Lset10261, Ltmp5473-Lfunc_begin0 - .quad Lset10261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10262, Ltmp5498-Lfunc_begin0 - .quad Lset10262 -.set Lset10263, Ltmp5499-Lfunc_begin0 - .quad Lset10263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10264, Ltmp5523-Lfunc_begin0 - .quad Lset10264 -.set Lset10265, Ltmp5524-Lfunc_begin0 - .quad Lset10265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10266, Ltmp5548-Lfunc_begin0 - .quad Lset10266 -.set Lset10267, Ltmp5549-Lfunc_begin0 - .quad Lset10267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10268, Ltmp5573-Lfunc_begin0 - .quad Lset10268 -.set Lset10269, Ltmp5574-Lfunc_begin0 - .quad Lset10269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10270, Ltmp5598-Lfunc_begin0 - .quad Lset10270 -.set Lset10271, Ltmp5599-Lfunc_begin0 - .quad Lset10271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10272, Ltmp5631-Lfunc_begin0 - .quad Lset10272 -.set Lset10273, Ltmp5632-Lfunc_begin0 - .quad Lset10273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10274, Ltmp5662-Lfunc_begin0 - .quad Lset10274 -.set Lset10275, Ltmp5663-Lfunc_begin0 - .quad Lset10275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10276, Ltmp5687-Lfunc_begin0 - .quad Lset10276 -.set Lset10277, Ltmp5688-Lfunc_begin0 - .quad Lset10277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10278, Ltmp5712-Lfunc_begin0 - .quad Lset10278 -.set Lset10279, Ltmp5713-Lfunc_begin0 - .quad Lset10279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10280, Ltmp5737-Lfunc_begin0 - .quad Lset10280 -.set Lset10281, Ltmp5738-Lfunc_begin0 - .quad Lset10281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10282, Ltmp5767-Lfunc_begin0 - .quad Lset10282 -.set Lset10283, Ltmp5768-Lfunc_begin0 - .quad Lset10283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10284, Ltmp5795-Lfunc_begin0 - .quad Lset10284 -.set Lset10285, Ltmp5796-Lfunc_begin0 - .quad Lset10285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10286, Ltmp5814-Lfunc_begin0 - .quad Lset10286 -.set Lset10287, Ltmp5815-Lfunc_begin0 - .quad Lset10287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10288, Ltmp5833-Lfunc_begin0 - .quad Lset10288 -.set Lset10289, Ltmp5834-Lfunc_begin0 - .quad Lset10289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10290, Ltmp5852-Lfunc_begin0 - .quad Lset10290 -.set Lset10291, Ltmp5853-Lfunc_begin0 - .quad Lset10291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10292, Ltmp5871-Lfunc_begin0 - .quad Lset10292 -.set Lset10293, Ltmp5872-Lfunc_begin0 - .quad Lset10293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10294, Ltmp5890-Lfunc_begin0 - .quad Lset10294 -.set Lset10295, Ltmp5891-Lfunc_begin0 - .quad Lset10295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10296, Ltmp5920-Lfunc_begin0 - .quad Lset10296 -.set Lset10297, Ltmp5921-Lfunc_begin0 - .quad Lset10297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc217: -.set Lset10298, Ltmp1186-Lfunc_begin0 - .quad Lset10298 -.set Lset10299, Ltmp1187-Lfunc_begin0 - .quad Lset10299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10300, Ltmp1215-Lfunc_begin0 - .quad Lset10300 -.set Lset10301, Ltmp1216-Lfunc_begin0 - .quad Lset10301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10302, Ltmp1237-Lfunc_begin0 - .quad Lset10302 -.set Lset10303, Ltmp1238-Lfunc_begin0 - .quad Lset10303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10304, Ltmp1260-Lfunc_begin0 - .quad Lset10304 -.set Lset10305, Ltmp1261-Lfunc_begin0 - .quad Lset10305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10306, Ltmp1281-Lfunc_begin0 - .quad Lset10306 -.set Lset10307, Ltmp1282-Lfunc_begin0 - .quad Lset10307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10308, Ltmp1314-Lfunc_begin0 - .quad Lset10308 -.set Lset10309, Ltmp1315-Lfunc_begin0 - .quad Lset10309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10310, Ltmp1338-Lfunc_begin0 - .quad Lset10310 -.set Lset10311, Ltmp1339-Lfunc_begin0 - .quad Lset10311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10312, Ltmp1368-Lfunc_begin0 - .quad Lset10312 -.set Lset10313, Ltmp1369-Lfunc_begin0 - .quad Lset10313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10314, Ltmp1462-Lfunc_begin0 - .quad Lset10314 -.set Lset10315, Ltmp1464-Lfunc_begin0 - .quad Lset10315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10316, Ltmp1557-Lfunc_begin0 - .quad Lset10316 -.set Lset10317, Ltmp1559-Lfunc_begin0 - .quad Lset10317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10318, Ltmp1713-Lfunc_begin0 - .quad Lset10318 -.set Lset10319, Ltmp1715-Lfunc_begin0 - .quad Lset10319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10320, Ltmp1864-Lfunc_begin0 - .quad Lset10320 -.set Lset10321, Ltmp1866-Lfunc_begin0 - .quad Lset10321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10322, Ltmp2004-Lfunc_begin0 - .quad Lset10322 -.set Lset10323, Ltmp2006-Lfunc_begin0 - .quad Lset10323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10324, Ltmp2074-Lfunc_begin0 - .quad Lset10324 -.set Lset10325, Ltmp2076-Lfunc_begin0 - .quad Lset10325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10326, Ltmp2120-Lfunc_begin0 - .quad Lset10326 -.set Lset10327, Ltmp2121-Lfunc_begin0 - .quad Lset10327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10328, Ltmp2193-Lfunc_begin0 - .quad Lset10328 -.set Lset10329, Ltmp2195-Lfunc_begin0 - .quad Lset10329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10330, Ltmp2253-Lfunc_begin0 - .quad Lset10330 -.set Lset10331, Ltmp2255-Lfunc_begin0 - .quad Lset10331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10332, Ltmp2302-Lfunc_begin0 - .quad Lset10332 -.set Lset10333, Ltmp2304-Lfunc_begin0 - .quad Lset10333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10334, Ltmp2351-Lfunc_begin0 - .quad Lset10334 -.set Lset10335, Ltmp2353-Lfunc_begin0 - .quad Lset10335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10336, Ltmp2400-Lfunc_begin0 - .quad Lset10336 -.set Lset10337, Ltmp2402-Lfunc_begin0 - .quad Lset10337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10338, Ltmp2444-Lfunc_begin0 - .quad Lset10338 -.set Lset10339, Ltmp2446-Lfunc_begin0 - .quad Lset10339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10340, Ltmp2499-Lfunc_begin0 - .quad Lset10340 -.set Lset10341, Ltmp2501-Lfunc_begin0 - .quad Lset10341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10342, Ltmp2554-Lfunc_begin0 - .quad Lset10342 -.set Lset10343, Ltmp2556-Lfunc_begin0 - .quad Lset10343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10344, Ltmp2609-Lfunc_begin0 - .quad Lset10344 -.set Lset10345, Ltmp2611-Lfunc_begin0 - .quad Lset10345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10346, Ltmp2673-Lfunc_begin0 - .quad Lset10346 -.set Lset10347, Ltmp2675-Lfunc_begin0 - .quad Lset10347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10348, Ltmp2738-Lfunc_begin0 - .quad Lset10348 -.set Lset10349, Ltmp2740-Lfunc_begin0 - .quad Lset10349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10350, Ltmp2811-Lfunc_begin0 - .quad Lset10350 -.set Lset10351, Ltmp2813-Lfunc_begin0 - .quad Lset10351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10352, Ltmp2871-Lfunc_begin0 - .quad Lset10352 -.set Lset10353, Ltmp2873-Lfunc_begin0 - .quad Lset10353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10354, Ltmp2922-Lfunc_begin0 - .quad Lset10354 -.set Lset10355, Ltmp2924-Lfunc_begin0 - .quad Lset10355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10356, Ltmp2957-Lfunc_begin0 - .quad Lset10356 -.set Lset10357, Ltmp2958-Lfunc_begin0 - .quad Lset10357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10358, Ltmp2997-Lfunc_begin0 - .quad Lset10358 -.set Lset10359, Ltmp2999-Lfunc_begin0 - .quad Lset10359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10360, Ltmp3024-Lfunc_begin0 - .quad Lset10360 -.set Lset10361, Ltmp3025-Lfunc_begin0 - .quad Lset10361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10362, Ltmp3047-Lfunc_begin0 - .quad Lset10362 -.set Lset10363, Ltmp3048-Lfunc_begin0 - .quad Lset10363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10364, Ltmp3096-Lfunc_begin0 - .quad Lset10364 -.set Lset10365, Ltmp3097-Lfunc_begin0 - .quad Lset10365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10366, Ltmp3120-Lfunc_begin0 - .quad Lset10366 -.set Lset10367, Ltmp3122-Lfunc_begin0 - .quad Lset10367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10368, Ltmp3161-Lfunc_begin0 - .quad Lset10368 -.set Lset10369, Ltmp3163-Lfunc_begin0 - .quad Lset10369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10370, Ltmp3227-Lfunc_begin0 - .quad Lset10370 -.set Lset10371, Ltmp3228-Lfunc_begin0 - .quad Lset10371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10372, Ltmp3292-Lfunc_begin0 - .quad Lset10372 -.set Lset10373, Ltmp3293-Lfunc_begin0 - .quad Lset10373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10374, Ltmp3329-Lfunc_begin0 - .quad Lset10374 -.set Lset10375, Ltmp3330-Lfunc_begin0 - .quad Lset10375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10376, Ltmp3375-Lfunc_begin0 - .quad Lset10376 -.set Lset10377, Ltmp3376-Lfunc_begin0 - .quad Lset10377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10378, Ltmp3407-Lfunc_begin0 - .quad Lset10378 -.set Lset10379, Ltmp3408-Lfunc_begin0 - .quad Lset10379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10380, Ltmp3435-Lfunc_begin0 - .quad Lset10380 -.set Lset10381, Ltmp3436-Lfunc_begin0 - .quad Lset10381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10382, Ltmp3537-Lfunc_begin0 - .quad Lset10382 -.set Lset10383, Ltmp3538-Lfunc_begin0 - .quad Lset10383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10384, Ltmp3638-Lfunc_begin0 - .quad Lset10384 -.set Lset10385, Ltmp3640-Lfunc_begin0 - .quad Lset10385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10386, Ltmp3685-Lfunc_begin0 - .quad Lset10386 -.set Lset10387, Ltmp3686-Lfunc_begin0 - .quad Lset10387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10388, Ltmp3807-Lfunc_begin0 - .quad Lset10388 -.set Lset10389, Ltmp3809-Lfunc_begin0 - .quad Lset10389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10390, Ltmp3864-Lfunc_begin0 - .quad Lset10390 -.set Lset10391, Ltmp3865-Lfunc_begin0 - .quad Lset10391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10392, Ltmp3933-Lfunc_begin0 - .quad Lset10392 -.set Lset10393, Ltmp3934-Lfunc_begin0 - .quad Lset10393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10394, Ltmp3959-Lfunc_begin0 - .quad Lset10394 -.set Lset10395, Ltmp3960-Lfunc_begin0 - .quad Lset10395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10396, Ltmp3985-Lfunc_begin0 - .quad Lset10396 -.set Lset10397, Ltmp3986-Lfunc_begin0 - .quad Lset10397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10398, Ltmp4011-Lfunc_begin0 - .quad Lset10398 -.set Lset10399, Ltmp4012-Lfunc_begin0 - .quad Lset10399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10400, Ltmp4046-Lfunc_begin0 - .quad Lset10400 -.set Lset10401, Ltmp4047-Lfunc_begin0 - .quad Lset10401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10402, Ltmp4084-Lfunc_begin0 - .quad Lset10402 -.set Lset10403, Ltmp4085-Lfunc_begin0 - .quad Lset10403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10404, Ltmp4106-Lfunc_begin0 - .quad Lset10404 -.set Lset10405, Ltmp4107-Lfunc_begin0 - .quad Lset10405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10406, Ltmp4146-Lfunc_begin0 - .quad Lset10406 -.set Lset10407, Ltmp4147-Lfunc_begin0 - .quad Lset10407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10408, Ltmp4187-Lfunc_begin0 - .quad Lset10408 -.set Lset10409, Ltmp4188-Lfunc_begin0 - .quad Lset10409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10410, Ltmp4227-Lfunc_begin0 - .quad Lset10410 -.set Lset10411, Ltmp4228-Lfunc_begin0 - .quad Lset10411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10412, Ltmp4268-Lfunc_begin0 - .quad Lset10412 -.set Lset10413, Ltmp4269-Lfunc_begin0 - .quad Lset10413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10414, Ltmp4308-Lfunc_begin0 - .quad Lset10414 -.set Lset10415, Ltmp4309-Lfunc_begin0 - .quad Lset10415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10416, Ltmp4349-Lfunc_begin0 - .quad Lset10416 -.set Lset10417, Ltmp4350-Lfunc_begin0 - .quad Lset10417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10418, Ltmp4380-Lfunc_begin0 - .quad Lset10418 -.set Lset10419, Ltmp4381-Lfunc_begin0 - .quad Lset10419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10420, Ltmp4412-Lfunc_begin0 - .quad Lset10420 -.set Lset10421, Ltmp4414-Lfunc_begin0 - .quad Lset10421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10422, Ltmp4454-Lfunc_begin0 - .quad Lset10422 -.set Lset10423, Ltmp4455-Lfunc_begin0 - .quad Lset10423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10424, Ltmp4495-Lfunc_begin0 - .quad Lset10424 -.set Lset10425, Ltmp4496-Lfunc_begin0 - .quad Lset10425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10426, Ltmp4579-Lfunc_begin0 - .quad Lset10426 -.set Lset10427, Ltmp4581-Lfunc_begin0 - .quad Lset10427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10428, Ltmp4649-Lfunc_begin0 - .quad Lset10428 -.set Lset10429, Ltmp4651-Lfunc_begin0 - .quad Lset10429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10430, Ltmp4717-Lfunc_begin0 - .quad Lset10430 -.set Lset10431, Ltmp4719-Lfunc_begin0 - .quad Lset10431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10432, Ltmp4783-Lfunc_begin0 - .quad Lset10432 -.set Lset10433, Ltmp4784-Lfunc_begin0 - .quad Lset10433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10434, Ltmp4813-Lfunc_begin0 - .quad Lset10434 -.set Lset10435, Ltmp4814-Lfunc_begin0 - .quad Lset10435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10436, Ltmp4843-Lfunc_begin0 - .quad Lset10436 -.set Lset10437, Ltmp4844-Lfunc_begin0 - .quad Lset10437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10438, Ltmp4902-Lfunc_begin0 - .quad Lset10438 -.set Lset10439, Ltmp4903-Lfunc_begin0 - .quad Lset10439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10440, Ltmp4943-Lfunc_begin0 - .quad Lset10440 -.set Lset10441, Ltmp4944-Lfunc_begin0 - .quad Lset10441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10442, Ltmp5000-Lfunc_begin0 - .quad Lset10442 -.set Lset10443, Ltmp5001-Lfunc_begin0 - .quad Lset10443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10444, Ltmp5040-Lfunc_begin0 - .quad Lset10444 -.set Lset10445, Ltmp5041-Lfunc_begin0 - .quad Lset10445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10446, Ltmp5078-Lfunc_begin0 - .quad Lset10446 -.set Lset10447, Ltmp5079-Lfunc_begin0 - .quad Lset10447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10448, Ltmp5114-Lfunc_begin0 - .quad Lset10448 -.set Lset10449, Ltmp5115-Lfunc_begin0 - .quad Lset10449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10450, Ltmp5146-Lfunc_begin0 - .quad Lset10450 -.set Lset10451, Ltmp5147-Lfunc_begin0 - .quad Lset10451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10452, Ltmp5178-Lfunc_begin0 - .quad Lset10452 -.set Lset10453, Ltmp5179-Lfunc_begin0 - .quad Lset10453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10454, Ltmp5210-Lfunc_begin0 - .quad Lset10454 -.set Lset10455, Ltmp5211-Lfunc_begin0 - .quad Lset10455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10456, Ltmp5228-Lfunc_begin0 - .quad Lset10456 -.set Lset10457, Ltmp5229-Lfunc_begin0 - .quad Lset10457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10458, Ltmp5246-Lfunc_begin0 - .quad Lset10458 -.set Lset10459, Ltmp5247-Lfunc_begin0 - .quad Lset10459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10460, Ltmp5271-Lfunc_begin0 - .quad Lset10460 -.set Lset10461, Ltmp5272-Lfunc_begin0 - .quad Lset10461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10462, Ltmp5296-Lfunc_begin0 - .quad Lset10462 -.set Lset10463, Ltmp5297-Lfunc_begin0 - .quad Lset10463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10464, Ltmp5322-Lfunc_begin0 - .quad Lset10464 -.set Lset10465, Ltmp5323-Lfunc_begin0 - .quad Lset10465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10466, Ltmp5347-Lfunc_begin0 - .quad Lset10466 -.set Lset10467, Ltmp5348-Lfunc_begin0 - .quad Lset10467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10468, Ltmp5372-Lfunc_begin0 - .quad Lset10468 -.set Lset10469, Ltmp5373-Lfunc_begin0 - .quad Lset10469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10470, Ltmp5397-Lfunc_begin0 - .quad Lset10470 -.set Lset10471, Ltmp5398-Lfunc_begin0 - .quad Lset10471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10472, Ltmp5422-Lfunc_begin0 - .quad Lset10472 -.set Lset10473, Ltmp5423-Lfunc_begin0 - .quad Lset10473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10474, Ltmp5447-Lfunc_begin0 - .quad Lset10474 -.set Lset10475, Ltmp5448-Lfunc_begin0 - .quad Lset10475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10476, Ltmp5472-Lfunc_begin0 - .quad Lset10476 -.set Lset10477, Ltmp5473-Lfunc_begin0 - .quad Lset10477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10478, Ltmp5498-Lfunc_begin0 - .quad Lset10478 -.set Lset10479, Ltmp5499-Lfunc_begin0 - .quad Lset10479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10480, Ltmp5523-Lfunc_begin0 - .quad Lset10480 -.set Lset10481, Ltmp5524-Lfunc_begin0 - .quad Lset10481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10482, Ltmp5548-Lfunc_begin0 - .quad Lset10482 -.set Lset10483, Ltmp5549-Lfunc_begin0 - .quad Lset10483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10484, Ltmp5573-Lfunc_begin0 - .quad Lset10484 -.set Lset10485, Ltmp5574-Lfunc_begin0 - .quad Lset10485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10486, Ltmp5598-Lfunc_begin0 - .quad Lset10486 -.set Lset10487, Ltmp5599-Lfunc_begin0 - .quad Lset10487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10488, Ltmp5631-Lfunc_begin0 - .quad Lset10488 -.set Lset10489, Ltmp5632-Lfunc_begin0 - .quad Lset10489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10490, Ltmp5662-Lfunc_begin0 - .quad Lset10490 -.set Lset10491, Ltmp5663-Lfunc_begin0 - .quad Lset10491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10492, Ltmp5687-Lfunc_begin0 - .quad Lset10492 -.set Lset10493, Ltmp5688-Lfunc_begin0 - .quad Lset10493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10494, Ltmp5712-Lfunc_begin0 - .quad Lset10494 -.set Lset10495, Ltmp5713-Lfunc_begin0 - .quad Lset10495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10496, Ltmp5737-Lfunc_begin0 - .quad Lset10496 -.set Lset10497, Ltmp5738-Lfunc_begin0 - .quad Lset10497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10498, Ltmp5767-Lfunc_begin0 - .quad Lset10498 -.set Lset10499, Ltmp5768-Lfunc_begin0 - .quad Lset10499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10500, Ltmp5795-Lfunc_begin0 - .quad Lset10500 -.set Lset10501, Ltmp5796-Lfunc_begin0 - .quad Lset10501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10502, Ltmp5814-Lfunc_begin0 - .quad Lset10502 -.set Lset10503, Ltmp5815-Lfunc_begin0 - .quad Lset10503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10504, Ltmp5833-Lfunc_begin0 - .quad Lset10504 -.set Lset10505, Ltmp5834-Lfunc_begin0 - .quad Lset10505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10506, Ltmp5852-Lfunc_begin0 - .quad Lset10506 -.set Lset10507, Ltmp5853-Lfunc_begin0 - .quad Lset10507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10508, Ltmp5871-Lfunc_begin0 - .quad Lset10508 -.set Lset10509, Ltmp5872-Lfunc_begin0 - .quad Lset10509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10510, Ltmp5890-Lfunc_begin0 - .quad Lset10510 -.set Lset10511, Ltmp5891-Lfunc_begin0 - .quad Lset10511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10512, Ltmp5920-Lfunc_begin0 - .quad Lset10512 -.set Lset10513, Ltmp5921-Lfunc_begin0 - .quad Lset10513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc218: -.set Lset10514, Ltmp1186-Lfunc_begin0 - .quad Lset10514 -.set Lset10515, Ltmp1187-Lfunc_begin0 - .quad Lset10515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10516, Ltmp1215-Lfunc_begin0 - .quad Lset10516 -.set Lset10517, Ltmp1216-Lfunc_begin0 - .quad Lset10517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10518, Ltmp1237-Lfunc_begin0 - .quad Lset10518 -.set Lset10519, Ltmp1238-Lfunc_begin0 - .quad Lset10519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10520, Ltmp1260-Lfunc_begin0 - .quad Lset10520 -.set Lset10521, Ltmp1261-Lfunc_begin0 - .quad Lset10521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10522, Ltmp1281-Lfunc_begin0 - .quad Lset10522 -.set Lset10523, Ltmp1282-Lfunc_begin0 - .quad Lset10523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10524, Ltmp1314-Lfunc_begin0 - .quad Lset10524 -.set Lset10525, Ltmp1315-Lfunc_begin0 - .quad Lset10525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10526, Ltmp1338-Lfunc_begin0 - .quad Lset10526 -.set Lset10527, Ltmp1339-Lfunc_begin0 - .quad Lset10527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10528, Ltmp1368-Lfunc_begin0 - .quad Lset10528 -.set Lset10529, Ltmp1369-Lfunc_begin0 - .quad Lset10529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10530, Ltmp1462-Lfunc_begin0 - .quad Lset10530 -.set Lset10531, Ltmp1464-Lfunc_begin0 - .quad Lset10531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10532, Ltmp1557-Lfunc_begin0 - .quad Lset10532 -.set Lset10533, Ltmp1559-Lfunc_begin0 - .quad Lset10533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10534, Ltmp1713-Lfunc_begin0 - .quad Lset10534 -.set Lset10535, Ltmp1715-Lfunc_begin0 - .quad Lset10535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10536, Ltmp1864-Lfunc_begin0 - .quad Lset10536 -.set Lset10537, Ltmp1866-Lfunc_begin0 - .quad Lset10537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10538, Ltmp2004-Lfunc_begin0 - .quad Lset10538 -.set Lset10539, Ltmp2006-Lfunc_begin0 - .quad Lset10539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10540, Ltmp2074-Lfunc_begin0 - .quad Lset10540 -.set Lset10541, Ltmp2076-Lfunc_begin0 - .quad Lset10541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10542, Ltmp2082-Lfunc_begin0 - .quad Lset10542 -.set Lset10543, Ltmp2094-Lfunc_begin0 - .quad Lset10543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10544, Ltmp2120-Lfunc_begin0 - .quad Lset10544 -.set Lset10545, Ltmp2121-Lfunc_begin0 - .quad Lset10545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10546, Ltmp2193-Lfunc_begin0 - .quad Lset10546 -.set Lset10547, Ltmp2195-Lfunc_begin0 - .quad Lset10547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10548, Ltmp2253-Lfunc_begin0 - .quad Lset10548 -.set Lset10549, Ltmp2255-Lfunc_begin0 - .quad Lset10549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10550, Ltmp2302-Lfunc_begin0 - .quad Lset10550 -.set Lset10551, Ltmp2304-Lfunc_begin0 - .quad Lset10551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10552, Ltmp2351-Lfunc_begin0 - .quad Lset10552 -.set Lset10553, Ltmp2353-Lfunc_begin0 - .quad Lset10553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10554, Ltmp2400-Lfunc_begin0 - .quad Lset10554 -.set Lset10555, Ltmp2402-Lfunc_begin0 - .quad Lset10555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10556, Ltmp2444-Lfunc_begin0 - .quad Lset10556 -.set Lset10557, Ltmp2446-Lfunc_begin0 - .quad Lset10557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10558, Ltmp2499-Lfunc_begin0 - .quad Lset10558 -.set Lset10559, Ltmp2501-Lfunc_begin0 - .quad Lset10559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10560, Ltmp2554-Lfunc_begin0 - .quad Lset10560 -.set Lset10561, Ltmp2556-Lfunc_begin0 - .quad Lset10561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10562, Ltmp2609-Lfunc_begin0 - .quad Lset10562 -.set Lset10563, Ltmp2611-Lfunc_begin0 - .quad Lset10563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10564, Ltmp2673-Lfunc_begin0 - .quad Lset10564 -.set Lset10565, Ltmp2675-Lfunc_begin0 - .quad Lset10565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10566, Ltmp2738-Lfunc_begin0 - .quad Lset10566 -.set Lset10567, Ltmp2740-Lfunc_begin0 - .quad Lset10567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10568, Ltmp2811-Lfunc_begin0 - .quad Lset10568 -.set Lset10569, Ltmp2813-Lfunc_begin0 - .quad Lset10569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10570, Ltmp2871-Lfunc_begin0 - .quad Lset10570 -.set Lset10571, Ltmp2873-Lfunc_begin0 - .quad Lset10571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10572, Ltmp2922-Lfunc_begin0 - .quad Lset10572 -.set Lset10573, Ltmp2924-Lfunc_begin0 - .quad Lset10573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10574, Ltmp2957-Lfunc_begin0 - .quad Lset10574 -.set Lset10575, Ltmp2958-Lfunc_begin0 - .quad Lset10575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10576, Ltmp2997-Lfunc_begin0 - .quad Lset10576 -.set Lset10577, Ltmp2999-Lfunc_begin0 - .quad Lset10577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10578, Ltmp3024-Lfunc_begin0 - .quad Lset10578 -.set Lset10579, Ltmp3025-Lfunc_begin0 - .quad Lset10579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10580, Ltmp3047-Lfunc_begin0 - .quad Lset10580 -.set Lset10581, Ltmp3048-Lfunc_begin0 - .quad Lset10581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10582, Ltmp3096-Lfunc_begin0 - .quad Lset10582 -.set Lset10583, Ltmp3097-Lfunc_begin0 - .quad Lset10583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10584, Ltmp3120-Lfunc_begin0 - .quad Lset10584 -.set Lset10585, Ltmp3122-Lfunc_begin0 - .quad Lset10585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10586, Ltmp3161-Lfunc_begin0 - .quad Lset10586 -.set Lset10587, Ltmp3163-Lfunc_begin0 - .quad Lset10587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10588, Ltmp3227-Lfunc_begin0 - .quad Lset10588 -.set Lset10589, Ltmp3228-Lfunc_begin0 - .quad Lset10589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10590, Ltmp3292-Lfunc_begin0 - .quad Lset10590 -.set Lset10591, Ltmp3293-Lfunc_begin0 - .quad Lset10591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10592, Ltmp3329-Lfunc_begin0 - .quad Lset10592 -.set Lset10593, Ltmp3330-Lfunc_begin0 - .quad Lset10593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10594, Ltmp3375-Lfunc_begin0 - .quad Lset10594 -.set Lset10595, Ltmp3376-Lfunc_begin0 - .quad Lset10595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10596, Ltmp3407-Lfunc_begin0 - .quad Lset10596 -.set Lset10597, Ltmp3408-Lfunc_begin0 - .quad Lset10597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10598, Ltmp3435-Lfunc_begin0 - .quad Lset10598 -.set Lset10599, Ltmp3436-Lfunc_begin0 - .quad Lset10599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10600, Ltmp3537-Lfunc_begin0 - .quad Lset10600 -.set Lset10601, Ltmp3538-Lfunc_begin0 - .quad Lset10601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10602, Ltmp3638-Lfunc_begin0 - .quad Lset10602 -.set Lset10603, Ltmp3640-Lfunc_begin0 - .quad Lset10603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10604, Ltmp3685-Lfunc_begin0 - .quad Lset10604 -.set Lset10605, Ltmp3686-Lfunc_begin0 - .quad Lset10605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10606, Ltmp3807-Lfunc_begin0 - .quad Lset10606 -.set Lset10607, Ltmp3809-Lfunc_begin0 - .quad Lset10607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10608, Ltmp3864-Lfunc_begin0 - .quad Lset10608 -.set Lset10609, Ltmp3865-Lfunc_begin0 - .quad Lset10609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10610, Ltmp3933-Lfunc_begin0 - .quad Lset10610 -.set Lset10611, Ltmp3934-Lfunc_begin0 - .quad Lset10611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10612, Ltmp3959-Lfunc_begin0 - .quad Lset10612 -.set Lset10613, Ltmp3960-Lfunc_begin0 - .quad Lset10613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10614, Ltmp3985-Lfunc_begin0 - .quad Lset10614 -.set Lset10615, Ltmp3986-Lfunc_begin0 - .quad Lset10615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10616, Ltmp4011-Lfunc_begin0 - .quad Lset10616 -.set Lset10617, Ltmp4012-Lfunc_begin0 - .quad Lset10617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10618, Ltmp4046-Lfunc_begin0 - .quad Lset10618 -.set Lset10619, Ltmp4047-Lfunc_begin0 - .quad Lset10619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10620, Ltmp4084-Lfunc_begin0 - .quad Lset10620 -.set Lset10621, Ltmp4085-Lfunc_begin0 - .quad Lset10621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10622, Ltmp4106-Lfunc_begin0 - .quad Lset10622 -.set Lset10623, Ltmp4107-Lfunc_begin0 - .quad Lset10623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10624, Ltmp4146-Lfunc_begin0 - .quad Lset10624 -.set Lset10625, Ltmp4147-Lfunc_begin0 - .quad Lset10625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10626, Ltmp4187-Lfunc_begin0 - .quad Lset10626 -.set Lset10627, Ltmp4188-Lfunc_begin0 - .quad Lset10627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10628, Ltmp4227-Lfunc_begin0 - .quad Lset10628 -.set Lset10629, Ltmp4228-Lfunc_begin0 - .quad Lset10629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10630, Ltmp4268-Lfunc_begin0 - .quad Lset10630 -.set Lset10631, Ltmp4269-Lfunc_begin0 - .quad Lset10631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10632, Ltmp4308-Lfunc_begin0 - .quad Lset10632 -.set Lset10633, Ltmp4309-Lfunc_begin0 - .quad Lset10633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10634, Ltmp4349-Lfunc_begin0 - .quad Lset10634 -.set Lset10635, Ltmp4350-Lfunc_begin0 - .quad Lset10635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10636, Ltmp4380-Lfunc_begin0 - .quad Lset10636 -.set Lset10637, Ltmp4381-Lfunc_begin0 - .quad Lset10637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10638, Ltmp4412-Lfunc_begin0 - .quad Lset10638 -.set Lset10639, Ltmp4414-Lfunc_begin0 - .quad Lset10639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10640, Ltmp4454-Lfunc_begin0 - .quad Lset10640 -.set Lset10641, Ltmp4455-Lfunc_begin0 - .quad Lset10641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10642, Ltmp4495-Lfunc_begin0 - .quad Lset10642 -.set Lset10643, Ltmp4496-Lfunc_begin0 - .quad Lset10643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10644, Ltmp4579-Lfunc_begin0 - .quad Lset10644 -.set Lset10645, Ltmp4581-Lfunc_begin0 - .quad Lset10645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10646, Ltmp4649-Lfunc_begin0 - .quad Lset10646 -.set Lset10647, Ltmp4651-Lfunc_begin0 - .quad Lset10647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10648, Ltmp4717-Lfunc_begin0 - .quad Lset10648 -.set Lset10649, Ltmp4719-Lfunc_begin0 - .quad Lset10649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10650, Ltmp4783-Lfunc_begin0 - .quad Lset10650 -.set Lset10651, Ltmp4784-Lfunc_begin0 - .quad Lset10651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10652, Ltmp4813-Lfunc_begin0 - .quad Lset10652 -.set Lset10653, Ltmp4814-Lfunc_begin0 - .quad Lset10653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10654, Ltmp4843-Lfunc_begin0 - .quad Lset10654 -.set Lset10655, Ltmp4844-Lfunc_begin0 - .quad Lset10655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10656, Ltmp4902-Lfunc_begin0 - .quad Lset10656 -.set Lset10657, Ltmp4903-Lfunc_begin0 - .quad Lset10657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10658, Ltmp4943-Lfunc_begin0 - .quad Lset10658 -.set Lset10659, Ltmp4944-Lfunc_begin0 - .quad Lset10659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10660, Ltmp5000-Lfunc_begin0 - .quad Lset10660 -.set Lset10661, Ltmp5001-Lfunc_begin0 - .quad Lset10661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10662, Ltmp5040-Lfunc_begin0 - .quad Lset10662 -.set Lset10663, Ltmp5041-Lfunc_begin0 - .quad Lset10663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10664, Ltmp5078-Lfunc_begin0 - .quad Lset10664 -.set Lset10665, Ltmp5079-Lfunc_begin0 - .quad Lset10665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10666, Ltmp5114-Lfunc_begin0 - .quad Lset10666 -.set Lset10667, Ltmp5115-Lfunc_begin0 - .quad Lset10667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10668, Ltmp5146-Lfunc_begin0 - .quad Lset10668 -.set Lset10669, Ltmp5147-Lfunc_begin0 - .quad Lset10669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10670, Ltmp5178-Lfunc_begin0 - .quad Lset10670 -.set Lset10671, Ltmp5179-Lfunc_begin0 - .quad Lset10671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10672, Ltmp5210-Lfunc_begin0 - .quad Lset10672 -.set Lset10673, Ltmp5211-Lfunc_begin0 - .quad Lset10673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10674, Ltmp5228-Lfunc_begin0 - .quad Lset10674 -.set Lset10675, Ltmp5229-Lfunc_begin0 - .quad Lset10675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10676, Ltmp5246-Lfunc_begin0 - .quad Lset10676 -.set Lset10677, Ltmp5247-Lfunc_begin0 - .quad Lset10677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10678, Ltmp5271-Lfunc_begin0 - .quad Lset10678 -.set Lset10679, Ltmp5272-Lfunc_begin0 - .quad Lset10679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10680, Ltmp5296-Lfunc_begin0 - .quad Lset10680 -.set Lset10681, Ltmp5297-Lfunc_begin0 - .quad Lset10681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10682, Ltmp5322-Lfunc_begin0 - .quad Lset10682 -.set Lset10683, Ltmp5323-Lfunc_begin0 - .quad Lset10683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10684, Ltmp5347-Lfunc_begin0 - .quad Lset10684 -.set Lset10685, Ltmp5348-Lfunc_begin0 - .quad Lset10685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10686, Ltmp5372-Lfunc_begin0 - .quad Lset10686 -.set Lset10687, Ltmp5373-Lfunc_begin0 - .quad Lset10687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10688, Ltmp5397-Lfunc_begin0 - .quad Lset10688 -.set Lset10689, Ltmp5398-Lfunc_begin0 - .quad Lset10689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10690, Ltmp5422-Lfunc_begin0 - .quad Lset10690 -.set Lset10691, Ltmp5423-Lfunc_begin0 - .quad Lset10691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10692, Ltmp5447-Lfunc_begin0 - .quad Lset10692 -.set Lset10693, Ltmp5448-Lfunc_begin0 - .quad Lset10693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10694, Ltmp5472-Lfunc_begin0 - .quad Lset10694 -.set Lset10695, Ltmp5473-Lfunc_begin0 - .quad Lset10695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10696, Ltmp5498-Lfunc_begin0 - .quad Lset10696 -.set Lset10697, Ltmp5499-Lfunc_begin0 - .quad Lset10697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10698, Ltmp5523-Lfunc_begin0 - .quad Lset10698 -.set Lset10699, Ltmp5524-Lfunc_begin0 - .quad Lset10699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10700, Ltmp5548-Lfunc_begin0 - .quad Lset10700 -.set Lset10701, Ltmp5549-Lfunc_begin0 - .quad Lset10701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10702, Ltmp5573-Lfunc_begin0 - .quad Lset10702 -.set Lset10703, Ltmp5574-Lfunc_begin0 - .quad Lset10703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10704, Ltmp5598-Lfunc_begin0 - .quad Lset10704 -.set Lset10705, Ltmp5599-Lfunc_begin0 - .quad Lset10705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10706, Ltmp5631-Lfunc_begin0 - .quad Lset10706 -.set Lset10707, Ltmp5632-Lfunc_begin0 - .quad Lset10707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10708, Ltmp5662-Lfunc_begin0 - .quad Lset10708 -.set Lset10709, Ltmp5663-Lfunc_begin0 - .quad Lset10709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10710, Ltmp5687-Lfunc_begin0 - .quad Lset10710 -.set Lset10711, Ltmp5688-Lfunc_begin0 - .quad Lset10711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10712, Ltmp5712-Lfunc_begin0 - .quad Lset10712 -.set Lset10713, Ltmp5713-Lfunc_begin0 - .quad Lset10713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10714, Ltmp5737-Lfunc_begin0 - .quad Lset10714 -.set Lset10715, Ltmp5738-Lfunc_begin0 - .quad Lset10715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10716, Ltmp5767-Lfunc_begin0 - .quad Lset10716 -.set Lset10717, Ltmp5768-Lfunc_begin0 - .quad Lset10717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10718, Ltmp5795-Lfunc_begin0 - .quad Lset10718 -.set Lset10719, Ltmp5796-Lfunc_begin0 - .quad Lset10719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10720, Ltmp5814-Lfunc_begin0 - .quad Lset10720 -.set Lset10721, Ltmp5815-Lfunc_begin0 - .quad Lset10721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10722, Ltmp5833-Lfunc_begin0 - .quad Lset10722 -.set Lset10723, Ltmp5834-Lfunc_begin0 - .quad Lset10723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10724, Ltmp5852-Lfunc_begin0 - .quad Lset10724 -.set Lset10725, Ltmp5853-Lfunc_begin0 - .quad Lset10725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10726, Ltmp5871-Lfunc_begin0 - .quad Lset10726 -.set Lset10727, Ltmp5872-Lfunc_begin0 - .quad Lset10727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10728, Ltmp5890-Lfunc_begin0 - .quad Lset10728 -.set Lset10729, Ltmp5891-Lfunc_begin0 - .quad Lset10729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10730, Ltmp5920-Lfunc_begin0 - .quad Lset10730 -.set Lset10731, Ltmp5921-Lfunc_begin0 - .quad Lset10731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10732, Ltmp6055-Lfunc_begin0 - .quad Lset10732 -.set Lset10733, Ltmp6056-Lfunc_begin0 - .quad Lset10733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10734, Ltmp6320-Lfunc_begin0 - .quad Lset10734 -.set Lset10735, Ltmp6321-Lfunc_begin0 - .quad Lset10735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc219: -.set Lset10736, Ltmp1186-Lfunc_begin0 - .quad Lset10736 -.set Lset10737, Ltmp1187-Lfunc_begin0 - .quad Lset10737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10738, Ltmp1215-Lfunc_begin0 - .quad Lset10738 -.set Lset10739, Ltmp1216-Lfunc_begin0 - .quad Lset10739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10740, Ltmp1237-Lfunc_begin0 - .quad Lset10740 -.set Lset10741, Ltmp1238-Lfunc_begin0 - .quad Lset10741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10742, Ltmp1260-Lfunc_begin0 - .quad Lset10742 -.set Lset10743, Ltmp1261-Lfunc_begin0 - .quad Lset10743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10744, Ltmp1281-Lfunc_begin0 - .quad Lset10744 -.set Lset10745, Ltmp1282-Lfunc_begin0 - .quad Lset10745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10746, Ltmp1314-Lfunc_begin0 - .quad Lset10746 -.set Lset10747, Ltmp1315-Lfunc_begin0 - .quad Lset10747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10748, Ltmp1338-Lfunc_begin0 - .quad Lset10748 -.set Lset10749, Ltmp1339-Lfunc_begin0 - .quad Lset10749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10750, Ltmp1368-Lfunc_begin0 - .quad Lset10750 -.set Lset10751, Ltmp1369-Lfunc_begin0 - .quad Lset10751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10752, Ltmp1462-Lfunc_begin0 - .quad Lset10752 -.set Lset10753, Ltmp1464-Lfunc_begin0 - .quad Lset10753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10754, Ltmp1557-Lfunc_begin0 - .quad Lset10754 -.set Lset10755, Ltmp1559-Lfunc_begin0 - .quad Lset10755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10756, Ltmp1713-Lfunc_begin0 - .quad Lset10756 -.set Lset10757, Ltmp1715-Lfunc_begin0 - .quad Lset10757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10758, Ltmp1864-Lfunc_begin0 - .quad Lset10758 -.set Lset10759, Ltmp1866-Lfunc_begin0 - .quad Lset10759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10760, Ltmp2004-Lfunc_begin0 - .quad Lset10760 -.set Lset10761, Ltmp2006-Lfunc_begin0 - .quad Lset10761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10762, Ltmp2074-Lfunc_begin0 - .quad Lset10762 -.set Lset10763, Ltmp2076-Lfunc_begin0 - .quad Lset10763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10764, Ltmp2120-Lfunc_begin0 - .quad Lset10764 -.set Lset10765, Ltmp2121-Lfunc_begin0 - .quad Lset10765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10766, Ltmp2193-Lfunc_begin0 - .quad Lset10766 -.set Lset10767, Ltmp2195-Lfunc_begin0 - .quad Lset10767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10768, Ltmp2253-Lfunc_begin0 - .quad Lset10768 -.set Lset10769, Ltmp2255-Lfunc_begin0 - .quad Lset10769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10770, Ltmp2302-Lfunc_begin0 - .quad Lset10770 -.set Lset10771, Ltmp2304-Lfunc_begin0 - .quad Lset10771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10772, Ltmp2351-Lfunc_begin0 - .quad Lset10772 -.set Lset10773, Ltmp2353-Lfunc_begin0 - .quad Lset10773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10774, Ltmp2400-Lfunc_begin0 - .quad Lset10774 -.set Lset10775, Ltmp2402-Lfunc_begin0 - .quad Lset10775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10776, Ltmp2444-Lfunc_begin0 - .quad Lset10776 -.set Lset10777, Ltmp2446-Lfunc_begin0 - .quad Lset10777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10778, Ltmp2499-Lfunc_begin0 - .quad Lset10778 -.set Lset10779, Ltmp2501-Lfunc_begin0 - .quad Lset10779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10780, Ltmp2554-Lfunc_begin0 - .quad Lset10780 -.set Lset10781, Ltmp2556-Lfunc_begin0 - .quad Lset10781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10782, Ltmp2609-Lfunc_begin0 - .quad Lset10782 -.set Lset10783, Ltmp2611-Lfunc_begin0 - .quad Lset10783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10784, Ltmp2673-Lfunc_begin0 - .quad Lset10784 -.set Lset10785, Ltmp2675-Lfunc_begin0 - .quad Lset10785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10786, Ltmp2738-Lfunc_begin0 - .quad Lset10786 -.set Lset10787, Ltmp2740-Lfunc_begin0 - .quad Lset10787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10788, Ltmp2811-Lfunc_begin0 - .quad Lset10788 -.set Lset10789, Ltmp2813-Lfunc_begin0 - .quad Lset10789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10790, Ltmp2871-Lfunc_begin0 - .quad Lset10790 -.set Lset10791, Ltmp2873-Lfunc_begin0 - .quad Lset10791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10792, Ltmp2922-Lfunc_begin0 - .quad Lset10792 -.set Lset10793, Ltmp2924-Lfunc_begin0 - .quad Lset10793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10794, Ltmp2957-Lfunc_begin0 - .quad Lset10794 -.set Lset10795, Ltmp2958-Lfunc_begin0 - .quad Lset10795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10796, Ltmp2997-Lfunc_begin0 - .quad Lset10796 -.set Lset10797, Ltmp2999-Lfunc_begin0 - .quad Lset10797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10798, Ltmp3024-Lfunc_begin0 - .quad Lset10798 -.set Lset10799, Ltmp3025-Lfunc_begin0 - .quad Lset10799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10800, Ltmp3047-Lfunc_begin0 - .quad Lset10800 -.set Lset10801, Ltmp3048-Lfunc_begin0 - .quad Lset10801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10802, Ltmp3096-Lfunc_begin0 - .quad Lset10802 -.set Lset10803, Ltmp3097-Lfunc_begin0 - .quad Lset10803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10804, Ltmp3120-Lfunc_begin0 - .quad Lset10804 -.set Lset10805, Ltmp3122-Lfunc_begin0 - .quad Lset10805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10806, Ltmp3161-Lfunc_begin0 - .quad Lset10806 -.set Lset10807, Ltmp3163-Lfunc_begin0 - .quad Lset10807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10808, Ltmp3227-Lfunc_begin0 - .quad Lset10808 -.set Lset10809, Ltmp3228-Lfunc_begin0 - .quad Lset10809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10810, Ltmp3292-Lfunc_begin0 - .quad Lset10810 -.set Lset10811, Ltmp3293-Lfunc_begin0 - .quad Lset10811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10812, Ltmp3329-Lfunc_begin0 - .quad Lset10812 -.set Lset10813, Ltmp3330-Lfunc_begin0 - .quad Lset10813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10814, Ltmp3375-Lfunc_begin0 - .quad Lset10814 -.set Lset10815, Ltmp3376-Lfunc_begin0 - .quad Lset10815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10816, Ltmp3407-Lfunc_begin0 - .quad Lset10816 -.set Lset10817, Ltmp3408-Lfunc_begin0 - .quad Lset10817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10818, Ltmp3435-Lfunc_begin0 - .quad Lset10818 -.set Lset10819, Ltmp3436-Lfunc_begin0 - .quad Lset10819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10820, Ltmp3537-Lfunc_begin0 - .quad Lset10820 -.set Lset10821, Ltmp3538-Lfunc_begin0 - .quad Lset10821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10822, Ltmp3638-Lfunc_begin0 - .quad Lset10822 -.set Lset10823, Ltmp3640-Lfunc_begin0 - .quad Lset10823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10824, Ltmp3685-Lfunc_begin0 - .quad Lset10824 -.set Lset10825, Ltmp3686-Lfunc_begin0 - .quad Lset10825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10826, Ltmp3807-Lfunc_begin0 - .quad Lset10826 -.set Lset10827, Ltmp3809-Lfunc_begin0 - .quad Lset10827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10828, Ltmp3864-Lfunc_begin0 - .quad Lset10828 -.set Lset10829, Ltmp3865-Lfunc_begin0 - .quad Lset10829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10830, Ltmp3933-Lfunc_begin0 - .quad Lset10830 -.set Lset10831, Ltmp3934-Lfunc_begin0 - .quad Lset10831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10832, Ltmp3959-Lfunc_begin0 - .quad Lset10832 -.set Lset10833, Ltmp3960-Lfunc_begin0 - .quad Lset10833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10834, Ltmp3985-Lfunc_begin0 - .quad Lset10834 -.set Lset10835, Ltmp3986-Lfunc_begin0 - .quad Lset10835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10836, Ltmp4011-Lfunc_begin0 - .quad Lset10836 -.set Lset10837, Ltmp4012-Lfunc_begin0 - .quad Lset10837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10838, Ltmp4046-Lfunc_begin0 - .quad Lset10838 -.set Lset10839, Ltmp4047-Lfunc_begin0 - .quad Lset10839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10840, Ltmp4084-Lfunc_begin0 - .quad Lset10840 -.set Lset10841, Ltmp4085-Lfunc_begin0 - .quad Lset10841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10842, Ltmp4106-Lfunc_begin0 - .quad Lset10842 -.set Lset10843, Ltmp4107-Lfunc_begin0 - .quad Lset10843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10844, Ltmp4146-Lfunc_begin0 - .quad Lset10844 -.set Lset10845, Ltmp4147-Lfunc_begin0 - .quad Lset10845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10846, Ltmp4187-Lfunc_begin0 - .quad Lset10846 -.set Lset10847, Ltmp4188-Lfunc_begin0 - .quad Lset10847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10848, Ltmp4227-Lfunc_begin0 - .quad Lset10848 -.set Lset10849, Ltmp4228-Lfunc_begin0 - .quad Lset10849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10850, Ltmp4268-Lfunc_begin0 - .quad Lset10850 -.set Lset10851, Ltmp4269-Lfunc_begin0 - .quad Lset10851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10852, Ltmp4308-Lfunc_begin0 - .quad Lset10852 -.set Lset10853, Ltmp4309-Lfunc_begin0 - .quad Lset10853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10854, Ltmp4349-Lfunc_begin0 - .quad Lset10854 -.set Lset10855, Ltmp4350-Lfunc_begin0 - .quad Lset10855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10856, Ltmp4380-Lfunc_begin0 - .quad Lset10856 -.set Lset10857, Ltmp4381-Lfunc_begin0 - .quad Lset10857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10858, Ltmp4412-Lfunc_begin0 - .quad Lset10858 -.set Lset10859, Ltmp4414-Lfunc_begin0 - .quad Lset10859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10860, Ltmp4454-Lfunc_begin0 - .quad Lset10860 -.set Lset10861, Ltmp4455-Lfunc_begin0 - .quad Lset10861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10862, Ltmp4495-Lfunc_begin0 - .quad Lset10862 -.set Lset10863, Ltmp4496-Lfunc_begin0 - .quad Lset10863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10864, Ltmp4579-Lfunc_begin0 - .quad Lset10864 -.set Lset10865, Ltmp4581-Lfunc_begin0 - .quad Lset10865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10866, Ltmp4649-Lfunc_begin0 - .quad Lset10866 -.set Lset10867, Ltmp4651-Lfunc_begin0 - .quad Lset10867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10868, Ltmp4717-Lfunc_begin0 - .quad Lset10868 -.set Lset10869, Ltmp4719-Lfunc_begin0 - .quad Lset10869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10870, Ltmp4783-Lfunc_begin0 - .quad Lset10870 -.set Lset10871, Ltmp4784-Lfunc_begin0 - .quad Lset10871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10872, Ltmp4813-Lfunc_begin0 - .quad Lset10872 -.set Lset10873, Ltmp4814-Lfunc_begin0 - .quad Lset10873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10874, Ltmp4843-Lfunc_begin0 - .quad Lset10874 -.set Lset10875, Ltmp4844-Lfunc_begin0 - .quad Lset10875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10876, Ltmp4902-Lfunc_begin0 - .quad Lset10876 -.set Lset10877, Ltmp4903-Lfunc_begin0 - .quad Lset10877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10878, Ltmp4943-Lfunc_begin0 - .quad Lset10878 -.set Lset10879, Ltmp4944-Lfunc_begin0 - .quad Lset10879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10880, Ltmp5000-Lfunc_begin0 - .quad Lset10880 -.set Lset10881, Ltmp5001-Lfunc_begin0 - .quad Lset10881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10882, Ltmp5040-Lfunc_begin0 - .quad Lset10882 -.set Lset10883, Ltmp5041-Lfunc_begin0 - .quad Lset10883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10884, Ltmp5078-Lfunc_begin0 - .quad Lset10884 -.set Lset10885, Ltmp5079-Lfunc_begin0 - .quad Lset10885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10886, Ltmp5114-Lfunc_begin0 - .quad Lset10886 -.set Lset10887, Ltmp5115-Lfunc_begin0 - .quad Lset10887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10888, Ltmp5146-Lfunc_begin0 - .quad Lset10888 -.set Lset10889, Ltmp5147-Lfunc_begin0 - .quad Lset10889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10890, Ltmp5178-Lfunc_begin0 - .quad Lset10890 -.set Lset10891, Ltmp5179-Lfunc_begin0 - .quad Lset10891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10892, Ltmp5210-Lfunc_begin0 - .quad Lset10892 -.set Lset10893, Ltmp5211-Lfunc_begin0 - .quad Lset10893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10894, Ltmp5228-Lfunc_begin0 - .quad Lset10894 -.set Lset10895, Ltmp5229-Lfunc_begin0 - .quad Lset10895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10896, Ltmp5246-Lfunc_begin0 - .quad Lset10896 -.set Lset10897, Ltmp5247-Lfunc_begin0 - .quad Lset10897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10898, Ltmp5271-Lfunc_begin0 - .quad Lset10898 -.set Lset10899, Ltmp5272-Lfunc_begin0 - .quad Lset10899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10900, Ltmp5296-Lfunc_begin0 - .quad Lset10900 -.set Lset10901, Ltmp5297-Lfunc_begin0 - .quad Lset10901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10902, Ltmp5322-Lfunc_begin0 - .quad Lset10902 -.set Lset10903, Ltmp5323-Lfunc_begin0 - .quad Lset10903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10904, Ltmp5347-Lfunc_begin0 - .quad Lset10904 -.set Lset10905, Ltmp5348-Lfunc_begin0 - .quad Lset10905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10906, Ltmp5372-Lfunc_begin0 - .quad Lset10906 -.set Lset10907, Ltmp5373-Lfunc_begin0 - .quad Lset10907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10908, Ltmp5397-Lfunc_begin0 - .quad Lset10908 -.set Lset10909, Ltmp5398-Lfunc_begin0 - .quad Lset10909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10910, Ltmp5422-Lfunc_begin0 - .quad Lset10910 -.set Lset10911, Ltmp5423-Lfunc_begin0 - .quad Lset10911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10912, Ltmp5447-Lfunc_begin0 - .quad Lset10912 -.set Lset10913, Ltmp5448-Lfunc_begin0 - .quad Lset10913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10914, Ltmp5472-Lfunc_begin0 - .quad Lset10914 -.set Lset10915, Ltmp5473-Lfunc_begin0 - .quad Lset10915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10916, Ltmp5498-Lfunc_begin0 - .quad Lset10916 -.set Lset10917, Ltmp5499-Lfunc_begin0 - .quad Lset10917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10918, Ltmp5523-Lfunc_begin0 - .quad Lset10918 -.set Lset10919, Ltmp5524-Lfunc_begin0 - .quad Lset10919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10920, Ltmp5548-Lfunc_begin0 - .quad Lset10920 -.set Lset10921, Ltmp5549-Lfunc_begin0 - .quad Lset10921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10922, Ltmp5573-Lfunc_begin0 - .quad Lset10922 -.set Lset10923, Ltmp5574-Lfunc_begin0 - .quad Lset10923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10924, Ltmp5598-Lfunc_begin0 - .quad Lset10924 -.set Lset10925, Ltmp5599-Lfunc_begin0 - .quad Lset10925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10926, Ltmp5631-Lfunc_begin0 - .quad Lset10926 -.set Lset10927, Ltmp5632-Lfunc_begin0 - .quad Lset10927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10928, Ltmp5662-Lfunc_begin0 - .quad Lset10928 -.set Lset10929, Ltmp5663-Lfunc_begin0 - .quad Lset10929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10930, Ltmp5687-Lfunc_begin0 - .quad Lset10930 -.set Lset10931, Ltmp5688-Lfunc_begin0 - .quad Lset10931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10932, Ltmp5712-Lfunc_begin0 - .quad Lset10932 -.set Lset10933, Ltmp5713-Lfunc_begin0 - .quad Lset10933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10934, Ltmp5737-Lfunc_begin0 - .quad Lset10934 -.set Lset10935, Ltmp5738-Lfunc_begin0 - .quad Lset10935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10936, Ltmp5767-Lfunc_begin0 - .quad Lset10936 -.set Lset10937, Ltmp5768-Lfunc_begin0 - .quad Lset10937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10938, Ltmp5795-Lfunc_begin0 - .quad Lset10938 -.set Lset10939, Ltmp5796-Lfunc_begin0 - .quad Lset10939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10940, Ltmp5814-Lfunc_begin0 - .quad Lset10940 -.set Lset10941, Ltmp5815-Lfunc_begin0 - .quad Lset10941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10942, Ltmp5833-Lfunc_begin0 - .quad Lset10942 -.set Lset10943, Ltmp5834-Lfunc_begin0 - .quad Lset10943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10944, Ltmp5852-Lfunc_begin0 - .quad Lset10944 -.set Lset10945, Ltmp5853-Lfunc_begin0 - .quad Lset10945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10946, Ltmp5871-Lfunc_begin0 - .quad Lset10946 -.set Lset10947, Ltmp5872-Lfunc_begin0 - .quad Lset10947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10948, Ltmp5890-Lfunc_begin0 - .quad Lset10948 -.set Lset10949, Ltmp5891-Lfunc_begin0 - .quad Lset10949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10950, Ltmp5920-Lfunc_begin0 - .quad Lset10950 -.set Lset10951, Ltmp5921-Lfunc_begin0 - .quad Lset10951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc220: -.set Lset10952, Ltmp1186-Lfunc_begin0 - .quad Lset10952 -.set Lset10953, Ltmp1187-Lfunc_begin0 - .quad Lset10953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10954, Ltmp1215-Lfunc_begin0 - .quad Lset10954 -.set Lset10955, Ltmp1216-Lfunc_begin0 - .quad Lset10955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10956, Ltmp1237-Lfunc_begin0 - .quad Lset10956 -.set Lset10957, Ltmp1238-Lfunc_begin0 - .quad Lset10957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10958, Ltmp1260-Lfunc_begin0 - .quad Lset10958 -.set Lset10959, Ltmp1261-Lfunc_begin0 - .quad Lset10959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10960, Ltmp1281-Lfunc_begin0 - .quad Lset10960 -.set Lset10961, Ltmp1282-Lfunc_begin0 - .quad Lset10961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10962, Ltmp1314-Lfunc_begin0 - .quad Lset10962 -.set Lset10963, Ltmp1315-Lfunc_begin0 - .quad Lset10963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10964, Ltmp1338-Lfunc_begin0 - .quad Lset10964 -.set Lset10965, Ltmp1339-Lfunc_begin0 - .quad Lset10965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10966, Ltmp1368-Lfunc_begin0 - .quad Lset10966 -.set Lset10967, Ltmp1369-Lfunc_begin0 - .quad Lset10967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10968, Ltmp1462-Lfunc_begin0 - .quad Lset10968 -.set Lset10969, Ltmp1464-Lfunc_begin0 - .quad Lset10969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10970, Ltmp1557-Lfunc_begin0 - .quad Lset10970 -.set Lset10971, Ltmp1559-Lfunc_begin0 - .quad Lset10971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10972, Ltmp1713-Lfunc_begin0 - .quad Lset10972 -.set Lset10973, Ltmp1715-Lfunc_begin0 - .quad Lset10973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10974, Ltmp1864-Lfunc_begin0 - .quad Lset10974 -.set Lset10975, Ltmp1866-Lfunc_begin0 - .quad Lset10975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10976, Ltmp2004-Lfunc_begin0 - .quad Lset10976 -.set Lset10977, Ltmp2006-Lfunc_begin0 - .quad Lset10977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10978, Ltmp2074-Lfunc_begin0 - .quad Lset10978 -.set Lset10979, Ltmp2076-Lfunc_begin0 - .quad Lset10979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10980, Ltmp2120-Lfunc_begin0 - .quad Lset10980 -.set Lset10981, Ltmp2121-Lfunc_begin0 - .quad Lset10981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10982, Ltmp2193-Lfunc_begin0 - .quad Lset10982 -.set Lset10983, Ltmp2195-Lfunc_begin0 - .quad Lset10983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10984, Ltmp2253-Lfunc_begin0 - .quad Lset10984 -.set Lset10985, Ltmp2255-Lfunc_begin0 - .quad Lset10985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10986, Ltmp2302-Lfunc_begin0 - .quad Lset10986 -.set Lset10987, Ltmp2304-Lfunc_begin0 - .quad Lset10987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10988, Ltmp2351-Lfunc_begin0 - .quad Lset10988 -.set Lset10989, Ltmp2353-Lfunc_begin0 - .quad Lset10989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10990, Ltmp2400-Lfunc_begin0 - .quad Lset10990 -.set Lset10991, Ltmp2402-Lfunc_begin0 - .quad Lset10991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10992, Ltmp2444-Lfunc_begin0 - .quad Lset10992 -.set Lset10993, Ltmp2446-Lfunc_begin0 - .quad Lset10993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10994, Ltmp2499-Lfunc_begin0 - .quad Lset10994 -.set Lset10995, Ltmp2501-Lfunc_begin0 - .quad Lset10995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10996, Ltmp2554-Lfunc_begin0 - .quad Lset10996 -.set Lset10997, Ltmp2556-Lfunc_begin0 - .quad Lset10997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset10998, Ltmp2609-Lfunc_begin0 - .quad Lset10998 -.set Lset10999, Ltmp2611-Lfunc_begin0 - .quad Lset10999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11000, Ltmp2673-Lfunc_begin0 - .quad Lset11000 -.set Lset11001, Ltmp2675-Lfunc_begin0 - .quad Lset11001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11002, Ltmp2738-Lfunc_begin0 - .quad Lset11002 -.set Lset11003, Ltmp2740-Lfunc_begin0 - .quad Lset11003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11004, Ltmp2811-Lfunc_begin0 - .quad Lset11004 -.set Lset11005, Ltmp2813-Lfunc_begin0 - .quad Lset11005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11006, Ltmp2871-Lfunc_begin0 - .quad Lset11006 -.set Lset11007, Ltmp2873-Lfunc_begin0 - .quad Lset11007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11008, Ltmp2922-Lfunc_begin0 - .quad Lset11008 -.set Lset11009, Ltmp2924-Lfunc_begin0 - .quad Lset11009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11010, Ltmp2957-Lfunc_begin0 - .quad Lset11010 -.set Lset11011, Ltmp2958-Lfunc_begin0 - .quad Lset11011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11012, Ltmp2997-Lfunc_begin0 - .quad Lset11012 -.set Lset11013, Ltmp2999-Lfunc_begin0 - .quad Lset11013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11014, Ltmp3024-Lfunc_begin0 - .quad Lset11014 -.set Lset11015, Ltmp3025-Lfunc_begin0 - .quad Lset11015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11016, Ltmp3047-Lfunc_begin0 - .quad Lset11016 -.set Lset11017, Ltmp3048-Lfunc_begin0 - .quad Lset11017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11018, Ltmp3096-Lfunc_begin0 - .quad Lset11018 -.set Lset11019, Ltmp3097-Lfunc_begin0 - .quad Lset11019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11020, Ltmp3120-Lfunc_begin0 - .quad Lset11020 -.set Lset11021, Ltmp3122-Lfunc_begin0 - .quad Lset11021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11022, Ltmp3161-Lfunc_begin0 - .quad Lset11022 -.set Lset11023, Ltmp3163-Lfunc_begin0 - .quad Lset11023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11024, Ltmp3227-Lfunc_begin0 - .quad Lset11024 -.set Lset11025, Ltmp3228-Lfunc_begin0 - .quad Lset11025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11026, Ltmp3292-Lfunc_begin0 - .quad Lset11026 -.set Lset11027, Ltmp3293-Lfunc_begin0 - .quad Lset11027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11028, Ltmp3329-Lfunc_begin0 - .quad Lset11028 -.set Lset11029, Ltmp3330-Lfunc_begin0 - .quad Lset11029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11030, Ltmp3375-Lfunc_begin0 - .quad Lset11030 -.set Lset11031, Ltmp3376-Lfunc_begin0 - .quad Lset11031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11032, Ltmp3407-Lfunc_begin0 - .quad Lset11032 -.set Lset11033, Ltmp3408-Lfunc_begin0 - .quad Lset11033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11034, Ltmp3435-Lfunc_begin0 - .quad Lset11034 -.set Lset11035, Ltmp3436-Lfunc_begin0 - .quad Lset11035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11036, Ltmp3537-Lfunc_begin0 - .quad Lset11036 -.set Lset11037, Ltmp3538-Lfunc_begin0 - .quad Lset11037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11038, Ltmp3638-Lfunc_begin0 - .quad Lset11038 -.set Lset11039, Ltmp3640-Lfunc_begin0 - .quad Lset11039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11040, Ltmp3685-Lfunc_begin0 - .quad Lset11040 -.set Lset11041, Ltmp3686-Lfunc_begin0 - .quad Lset11041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11042, Ltmp3807-Lfunc_begin0 - .quad Lset11042 -.set Lset11043, Ltmp3809-Lfunc_begin0 - .quad Lset11043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11044, Ltmp3864-Lfunc_begin0 - .quad Lset11044 -.set Lset11045, Ltmp3865-Lfunc_begin0 - .quad Lset11045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11046, Ltmp3933-Lfunc_begin0 - .quad Lset11046 -.set Lset11047, Ltmp3934-Lfunc_begin0 - .quad Lset11047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11048, Ltmp3959-Lfunc_begin0 - .quad Lset11048 -.set Lset11049, Ltmp3960-Lfunc_begin0 - .quad Lset11049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11050, Ltmp3985-Lfunc_begin0 - .quad Lset11050 -.set Lset11051, Ltmp3986-Lfunc_begin0 - .quad Lset11051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11052, Ltmp4011-Lfunc_begin0 - .quad Lset11052 -.set Lset11053, Ltmp4012-Lfunc_begin0 - .quad Lset11053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11054, Ltmp4046-Lfunc_begin0 - .quad Lset11054 -.set Lset11055, Ltmp4047-Lfunc_begin0 - .quad Lset11055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11056, Ltmp4084-Lfunc_begin0 - .quad Lset11056 -.set Lset11057, Ltmp4085-Lfunc_begin0 - .quad Lset11057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11058, Ltmp4106-Lfunc_begin0 - .quad Lset11058 -.set Lset11059, Ltmp4107-Lfunc_begin0 - .quad Lset11059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11060, Ltmp4146-Lfunc_begin0 - .quad Lset11060 -.set Lset11061, Ltmp4147-Lfunc_begin0 - .quad Lset11061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11062, Ltmp4187-Lfunc_begin0 - .quad Lset11062 -.set Lset11063, Ltmp4188-Lfunc_begin0 - .quad Lset11063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11064, Ltmp4227-Lfunc_begin0 - .quad Lset11064 -.set Lset11065, Ltmp4228-Lfunc_begin0 - .quad Lset11065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11066, Ltmp4268-Lfunc_begin0 - .quad Lset11066 -.set Lset11067, Ltmp4269-Lfunc_begin0 - .quad Lset11067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11068, Ltmp4308-Lfunc_begin0 - .quad Lset11068 -.set Lset11069, Ltmp4309-Lfunc_begin0 - .quad Lset11069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11070, Ltmp4349-Lfunc_begin0 - .quad Lset11070 -.set Lset11071, Ltmp4350-Lfunc_begin0 - .quad Lset11071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11072, Ltmp4380-Lfunc_begin0 - .quad Lset11072 -.set Lset11073, Ltmp4381-Lfunc_begin0 - .quad Lset11073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11074, Ltmp4412-Lfunc_begin0 - .quad Lset11074 -.set Lset11075, Ltmp4414-Lfunc_begin0 - .quad Lset11075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11076, Ltmp4454-Lfunc_begin0 - .quad Lset11076 -.set Lset11077, Ltmp4455-Lfunc_begin0 - .quad Lset11077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11078, Ltmp4495-Lfunc_begin0 - .quad Lset11078 -.set Lset11079, Ltmp4496-Lfunc_begin0 - .quad Lset11079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11080, Ltmp4579-Lfunc_begin0 - .quad Lset11080 -.set Lset11081, Ltmp4581-Lfunc_begin0 - .quad Lset11081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11082, Ltmp4649-Lfunc_begin0 - .quad Lset11082 -.set Lset11083, Ltmp4651-Lfunc_begin0 - .quad Lset11083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11084, Ltmp4717-Lfunc_begin0 - .quad Lset11084 -.set Lset11085, Ltmp4719-Lfunc_begin0 - .quad Lset11085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11086, Ltmp4783-Lfunc_begin0 - .quad Lset11086 -.set Lset11087, Ltmp4784-Lfunc_begin0 - .quad Lset11087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11088, Ltmp4813-Lfunc_begin0 - .quad Lset11088 -.set Lset11089, Ltmp4814-Lfunc_begin0 - .quad Lset11089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11090, Ltmp4843-Lfunc_begin0 - .quad Lset11090 -.set Lset11091, Ltmp4844-Lfunc_begin0 - .quad Lset11091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11092, Ltmp4902-Lfunc_begin0 - .quad Lset11092 -.set Lset11093, Ltmp4903-Lfunc_begin0 - .quad Lset11093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11094, Ltmp4943-Lfunc_begin0 - .quad Lset11094 -.set Lset11095, Ltmp4944-Lfunc_begin0 - .quad Lset11095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11096, Ltmp5000-Lfunc_begin0 - .quad Lset11096 -.set Lset11097, Ltmp5001-Lfunc_begin0 - .quad Lset11097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11098, Ltmp5040-Lfunc_begin0 - .quad Lset11098 -.set Lset11099, Ltmp5041-Lfunc_begin0 - .quad Lset11099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11100, Ltmp5078-Lfunc_begin0 - .quad Lset11100 -.set Lset11101, Ltmp5079-Lfunc_begin0 - .quad Lset11101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11102, Ltmp5114-Lfunc_begin0 - .quad Lset11102 -.set Lset11103, Ltmp5115-Lfunc_begin0 - .quad Lset11103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11104, Ltmp5146-Lfunc_begin0 - .quad Lset11104 -.set Lset11105, Ltmp5147-Lfunc_begin0 - .quad Lset11105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11106, Ltmp5178-Lfunc_begin0 - .quad Lset11106 -.set Lset11107, Ltmp5179-Lfunc_begin0 - .quad Lset11107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11108, Ltmp5210-Lfunc_begin0 - .quad Lset11108 -.set Lset11109, Ltmp5211-Lfunc_begin0 - .quad Lset11109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11110, Ltmp5228-Lfunc_begin0 - .quad Lset11110 -.set Lset11111, Ltmp5229-Lfunc_begin0 - .quad Lset11111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11112, Ltmp5246-Lfunc_begin0 - .quad Lset11112 -.set Lset11113, Ltmp5247-Lfunc_begin0 - .quad Lset11113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11114, Ltmp5271-Lfunc_begin0 - .quad Lset11114 -.set Lset11115, Ltmp5272-Lfunc_begin0 - .quad Lset11115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11116, Ltmp5296-Lfunc_begin0 - .quad Lset11116 -.set Lset11117, Ltmp5297-Lfunc_begin0 - .quad Lset11117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11118, Ltmp5322-Lfunc_begin0 - .quad Lset11118 -.set Lset11119, Ltmp5323-Lfunc_begin0 - .quad Lset11119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11120, Ltmp5347-Lfunc_begin0 - .quad Lset11120 -.set Lset11121, Ltmp5348-Lfunc_begin0 - .quad Lset11121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11122, Ltmp5372-Lfunc_begin0 - .quad Lset11122 -.set Lset11123, Ltmp5373-Lfunc_begin0 - .quad Lset11123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11124, Ltmp5397-Lfunc_begin0 - .quad Lset11124 -.set Lset11125, Ltmp5398-Lfunc_begin0 - .quad Lset11125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11126, Ltmp5422-Lfunc_begin0 - .quad Lset11126 -.set Lset11127, Ltmp5423-Lfunc_begin0 - .quad Lset11127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11128, Ltmp5447-Lfunc_begin0 - .quad Lset11128 -.set Lset11129, Ltmp5448-Lfunc_begin0 - .quad Lset11129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11130, Ltmp5472-Lfunc_begin0 - .quad Lset11130 -.set Lset11131, Ltmp5473-Lfunc_begin0 - .quad Lset11131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11132, Ltmp5498-Lfunc_begin0 - .quad Lset11132 -.set Lset11133, Ltmp5499-Lfunc_begin0 - .quad Lset11133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11134, Ltmp5523-Lfunc_begin0 - .quad Lset11134 -.set Lset11135, Ltmp5524-Lfunc_begin0 - .quad Lset11135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11136, Ltmp5548-Lfunc_begin0 - .quad Lset11136 -.set Lset11137, Ltmp5549-Lfunc_begin0 - .quad Lset11137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11138, Ltmp5573-Lfunc_begin0 - .quad Lset11138 -.set Lset11139, Ltmp5574-Lfunc_begin0 - .quad Lset11139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11140, Ltmp5598-Lfunc_begin0 - .quad Lset11140 -.set Lset11141, Ltmp5599-Lfunc_begin0 - .quad Lset11141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11142, Ltmp5631-Lfunc_begin0 - .quad Lset11142 -.set Lset11143, Ltmp5632-Lfunc_begin0 - .quad Lset11143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11144, Ltmp5662-Lfunc_begin0 - .quad Lset11144 -.set Lset11145, Ltmp5663-Lfunc_begin0 - .quad Lset11145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11146, Ltmp5687-Lfunc_begin0 - .quad Lset11146 -.set Lset11147, Ltmp5688-Lfunc_begin0 - .quad Lset11147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11148, Ltmp5712-Lfunc_begin0 - .quad Lset11148 -.set Lset11149, Ltmp5713-Lfunc_begin0 - .quad Lset11149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11150, Ltmp5737-Lfunc_begin0 - .quad Lset11150 -.set Lset11151, Ltmp5738-Lfunc_begin0 - .quad Lset11151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11152, Ltmp5767-Lfunc_begin0 - .quad Lset11152 -.set Lset11153, Ltmp5768-Lfunc_begin0 - .quad Lset11153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11154, Ltmp5795-Lfunc_begin0 - .quad Lset11154 -.set Lset11155, Ltmp5796-Lfunc_begin0 - .quad Lset11155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11156, Ltmp5814-Lfunc_begin0 - .quad Lset11156 -.set Lset11157, Ltmp5815-Lfunc_begin0 - .quad Lset11157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11158, Ltmp5833-Lfunc_begin0 - .quad Lset11158 -.set Lset11159, Ltmp5834-Lfunc_begin0 - .quad Lset11159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11160, Ltmp5852-Lfunc_begin0 - .quad Lset11160 -.set Lset11161, Ltmp5853-Lfunc_begin0 - .quad Lset11161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11162, Ltmp5871-Lfunc_begin0 - .quad Lset11162 -.set Lset11163, Ltmp5872-Lfunc_begin0 - .quad Lset11163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11164, Ltmp5890-Lfunc_begin0 - .quad Lset11164 -.set Lset11165, Ltmp5891-Lfunc_begin0 - .quad Lset11165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11166, Ltmp5920-Lfunc_begin0 - .quad Lset11166 -.set Lset11167, Ltmp5921-Lfunc_begin0 - .quad Lset11167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc221: -.set Lset11168, Ltmp1186-Lfunc_begin0 - .quad Lset11168 -.set Lset11169, Ltmp1187-Lfunc_begin0 - .quad Lset11169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11170, Ltmp1215-Lfunc_begin0 - .quad Lset11170 -.set Lset11171, Ltmp1216-Lfunc_begin0 - .quad Lset11171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11172, Ltmp1237-Lfunc_begin0 - .quad Lset11172 -.set Lset11173, Ltmp1238-Lfunc_begin0 - .quad Lset11173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11174, Ltmp1260-Lfunc_begin0 - .quad Lset11174 -.set Lset11175, Ltmp1261-Lfunc_begin0 - .quad Lset11175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11176, Ltmp1281-Lfunc_begin0 - .quad Lset11176 -.set Lset11177, Ltmp1282-Lfunc_begin0 - .quad Lset11177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11178, Ltmp1314-Lfunc_begin0 - .quad Lset11178 -.set Lset11179, Ltmp1315-Lfunc_begin0 - .quad Lset11179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11180, Ltmp1338-Lfunc_begin0 - .quad Lset11180 -.set Lset11181, Ltmp1339-Lfunc_begin0 - .quad Lset11181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11182, Ltmp1368-Lfunc_begin0 - .quad Lset11182 -.set Lset11183, Ltmp1369-Lfunc_begin0 - .quad Lset11183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11184, Ltmp1462-Lfunc_begin0 - .quad Lset11184 -.set Lset11185, Ltmp1464-Lfunc_begin0 - .quad Lset11185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11186, Ltmp1557-Lfunc_begin0 - .quad Lset11186 -.set Lset11187, Ltmp1559-Lfunc_begin0 - .quad Lset11187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11188, Ltmp1713-Lfunc_begin0 - .quad Lset11188 -.set Lset11189, Ltmp1715-Lfunc_begin0 - .quad Lset11189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11190, Ltmp1864-Lfunc_begin0 - .quad Lset11190 -.set Lset11191, Ltmp1866-Lfunc_begin0 - .quad Lset11191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11192, Ltmp2004-Lfunc_begin0 - .quad Lset11192 -.set Lset11193, Ltmp2006-Lfunc_begin0 - .quad Lset11193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11194, Ltmp2074-Lfunc_begin0 - .quad Lset11194 -.set Lset11195, Ltmp2076-Lfunc_begin0 - .quad Lset11195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11196, Ltmp2120-Lfunc_begin0 - .quad Lset11196 -.set Lset11197, Ltmp2121-Lfunc_begin0 - .quad Lset11197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11198, Ltmp2193-Lfunc_begin0 - .quad Lset11198 -.set Lset11199, Ltmp2195-Lfunc_begin0 - .quad Lset11199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11200, Ltmp2253-Lfunc_begin0 - .quad Lset11200 -.set Lset11201, Ltmp2255-Lfunc_begin0 - .quad Lset11201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11202, Ltmp2302-Lfunc_begin0 - .quad Lset11202 -.set Lset11203, Ltmp2304-Lfunc_begin0 - .quad Lset11203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11204, Ltmp2351-Lfunc_begin0 - .quad Lset11204 -.set Lset11205, Ltmp2353-Lfunc_begin0 - .quad Lset11205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11206, Ltmp2400-Lfunc_begin0 - .quad Lset11206 -.set Lset11207, Ltmp2402-Lfunc_begin0 - .quad Lset11207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11208, Ltmp2444-Lfunc_begin0 - .quad Lset11208 -.set Lset11209, Ltmp2446-Lfunc_begin0 - .quad Lset11209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11210, Ltmp2499-Lfunc_begin0 - .quad Lset11210 -.set Lset11211, Ltmp2501-Lfunc_begin0 - .quad Lset11211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11212, Ltmp2554-Lfunc_begin0 - .quad Lset11212 -.set Lset11213, Ltmp2556-Lfunc_begin0 - .quad Lset11213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11214, Ltmp2609-Lfunc_begin0 - .quad Lset11214 -.set Lset11215, Ltmp2611-Lfunc_begin0 - .quad Lset11215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11216, Ltmp2673-Lfunc_begin0 - .quad Lset11216 -.set Lset11217, Ltmp2675-Lfunc_begin0 - .quad Lset11217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11218, Ltmp2738-Lfunc_begin0 - .quad Lset11218 -.set Lset11219, Ltmp2740-Lfunc_begin0 - .quad Lset11219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11220, Ltmp2811-Lfunc_begin0 - .quad Lset11220 -.set Lset11221, Ltmp2813-Lfunc_begin0 - .quad Lset11221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11222, Ltmp2871-Lfunc_begin0 - .quad Lset11222 -.set Lset11223, Ltmp2873-Lfunc_begin0 - .quad Lset11223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11224, Ltmp2922-Lfunc_begin0 - .quad Lset11224 -.set Lset11225, Ltmp2924-Lfunc_begin0 - .quad Lset11225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11226, Ltmp2957-Lfunc_begin0 - .quad Lset11226 -.set Lset11227, Ltmp2958-Lfunc_begin0 - .quad Lset11227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11228, Ltmp2997-Lfunc_begin0 - .quad Lset11228 -.set Lset11229, Ltmp2999-Lfunc_begin0 - .quad Lset11229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11230, Ltmp3024-Lfunc_begin0 - .quad Lset11230 -.set Lset11231, Ltmp3025-Lfunc_begin0 - .quad Lset11231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11232, Ltmp3047-Lfunc_begin0 - .quad Lset11232 -.set Lset11233, Ltmp3048-Lfunc_begin0 - .quad Lset11233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11234, Ltmp3096-Lfunc_begin0 - .quad Lset11234 -.set Lset11235, Ltmp3097-Lfunc_begin0 - .quad Lset11235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11236, Ltmp3120-Lfunc_begin0 - .quad Lset11236 -.set Lset11237, Ltmp3122-Lfunc_begin0 - .quad Lset11237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11238, Ltmp3161-Lfunc_begin0 - .quad Lset11238 -.set Lset11239, Ltmp3163-Lfunc_begin0 - .quad Lset11239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11240, Ltmp3227-Lfunc_begin0 - .quad Lset11240 -.set Lset11241, Ltmp3228-Lfunc_begin0 - .quad Lset11241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11242, Ltmp3292-Lfunc_begin0 - .quad Lset11242 -.set Lset11243, Ltmp3293-Lfunc_begin0 - .quad Lset11243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11244, Ltmp3329-Lfunc_begin0 - .quad Lset11244 -.set Lset11245, Ltmp3330-Lfunc_begin0 - .quad Lset11245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11246, Ltmp3375-Lfunc_begin0 - .quad Lset11246 -.set Lset11247, Ltmp3376-Lfunc_begin0 - .quad Lset11247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11248, Ltmp3407-Lfunc_begin0 - .quad Lset11248 -.set Lset11249, Ltmp3408-Lfunc_begin0 - .quad Lset11249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11250, Ltmp3435-Lfunc_begin0 - .quad Lset11250 -.set Lset11251, Ltmp3436-Lfunc_begin0 - .quad Lset11251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11252, Ltmp3537-Lfunc_begin0 - .quad Lset11252 -.set Lset11253, Ltmp3538-Lfunc_begin0 - .quad Lset11253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11254, Ltmp3638-Lfunc_begin0 - .quad Lset11254 -.set Lset11255, Ltmp3640-Lfunc_begin0 - .quad Lset11255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11256, Ltmp3685-Lfunc_begin0 - .quad Lset11256 -.set Lset11257, Ltmp3686-Lfunc_begin0 - .quad Lset11257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11258, Ltmp3807-Lfunc_begin0 - .quad Lset11258 -.set Lset11259, Ltmp3809-Lfunc_begin0 - .quad Lset11259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11260, Ltmp3864-Lfunc_begin0 - .quad Lset11260 -.set Lset11261, Ltmp3865-Lfunc_begin0 - .quad Lset11261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11262, Ltmp3933-Lfunc_begin0 - .quad Lset11262 -.set Lset11263, Ltmp3934-Lfunc_begin0 - .quad Lset11263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11264, Ltmp3959-Lfunc_begin0 - .quad Lset11264 -.set Lset11265, Ltmp3960-Lfunc_begin0 - .quad Lset11265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11266, Ltmp3985-Lfunc_begin0 - .quad Lset11266 -.set Lset11267, Ltmp3986-Lfunc_begin0 - .quad Lset11267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11268, Ltmp4011-Lfunc_begin0 - .quad Lset11268 -.set Lset11269, Ltmp4012-Lfunc_begin0 - .quad Lset11269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11270, Ltmp4046-Lfunc_begin0 - .quad Lset11270 -.set Lset11271, Ltmp4047-Lfunc_begin0 - .quad Lset11271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11272, Ltmp4084-Lfunc_begin0 - .quad Lset11272 -.set Lset11273, Ltmp4085-Lfunc_begin0 - .quad Lset11273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11274, Ltmp4106-Lfunc_begin0 - .quad Lset11274 -.set Lset11275, Ltmp4107-Lfunc_begin0 - .quad Lset11275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11276, Ltmp4146-Lfunc_begin0 - .quad Lset11276 -.set Lset11277, Ltmp4147-Lfunc_begin0 - .quad Lset11277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11278, Ltmp4187-Lfunc_begin0 - .quad Lset11278 -.set Lset11279, Ltmp4188-Lfunc_begin0 - .quad Lset11279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11280, Ltmp4227-Lfunc_begin0 - .quad Lset11280 -.set Lset11281, Ltmp4228-Lfunc_begin0 - .quad Lset11281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11282, Ltmp4268-Lfunc_begin0 - .quad Lset11282 -.set Lset11283, Ltmp4269-Lfunc_begin0 - .quad Lset11283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11284, Ltmp4308-Lfunc_begin0 - .quad Lset11284 -.set Lset11285, Ltmp4309-Lfunc_begin0 - .quad Lset11285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11286, Ltmp4349-Lfunc_begin0 - .quad Lset11286 -.set Lset11287, Ltmp4350-Lfunc_begin0 - .quad Lset11287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11288, Ltmp4380-Lfunc_begin0 - .quad Lset11288 -.set Lset11289, Ltmp4381-Lfunc_begin0 - .quad Lset11289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11290, Ltmp4412-Lfunc_begin0 - .quad Lset11290 -.set Lset11291, Ltmp4414-Lfunc_begin0 - .quad Lset11291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11292, Ltmp4454-Lfunc_begin0 - .quad Lset11292 -.set Lset11293, Ltmp4455-Lfunc_begin0 - .quad Lset11293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11294, Ltmp4495-Lfunc_begin0 - .quad Lset11294 -.set Lset11295, Ltmp4496-Lfunc_begin0 - .quad Lset11295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11296, Ltmp4579-Lfunc_begin0 - .quad Lset11296 -.set Lset11297, Ltmp4581-Lfunc_begin0 - .quad Lset11297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11298, Ltmp4649-Lfunc_begin0 - .quad Lset11298 -.set Lset11299, Ltmp4651-Lfunc_begin0 - .quad Lset11299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11300, Ltmp4717-Lfunc_begin0 - .quad Lset11300 -.set Lset11301, Ltmp4719-Lfunc_begin0 - .quad Lset11301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11302, Ltmp4783-Lfunc_begin0 - .quad Lset11302 -.set Lset11303, Ltmp4784-Lfunc_begin0 - .quad Lset11303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11304, Ltmp4813-Lfunc_begin0 - .quad Lset11304 -.set Lset11305, Ltmp4814-Lfunc_begin0 - .quad Lset11305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11306, Ltmp4843-Lfunc_begin0 - .quad Lset11306 -.set Lset11307, Ltmp4844-Lfunc_begin0 - .quad Lset11307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11308, Ltmp4902-Lfunc_begin0 - .quad Lset11308 -.set Lset11309, Ltmp4903-Lfunc_begin0 - .quad Lset11309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11310, Ltmp4943-Lfunc_begin0 - .quad Lset11310 -.set Lset11311, Ltmp4944-Lfunc_begin0 - .quad Lset11311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11312, Ltmp5000-Lfunc_begin0 - .quad Lset11312 -.set Lset11313, Ltmp5001-Lfunc_begin0 - .quad Lset11313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11314, Ltmp5040-Lfunc_begin0 - .quad Lset11314 -.set Lset11315, Ltmp5041-Lfunc_begin0 - .quad Lset11315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11316, Ltmp5078-Lfunc_begin0 - .quad Lset11316 -.set Lset11317, Ltmp5079-Lfunc_begin0 - .quad Lset11317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11318, Ltmp5114-Lfunc_begin0 - .quad Lset11318 -.set Lset11319, Ltmp5115-Lfunc_begin0 - .quad Lset11319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11320, Ltmp5146-Lfunc_begin0 - .quad Lset11320 -.set Lset11321, Ltmp5147-Lfunc_begin0 - .quad Lset11321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11322, Ltmp5178-Lfunc_begin0 - .quad Lset11322 -.set Lset11323, Ltmp5179-Lfunc_begin0 - .quad Lset11323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11324, Ltmp5210-Lfunc_begin0 - .quad Lset11324 -.set Lset11325, Ltmp5211-Lfunc_begin0 - .quad Lset11325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11326, Ltmp5228-Lfunc_begin0 - .quad Lset11326 -.set Lset11327, Ltmp5229-Lfunc_begin0 - .quad Lset11327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11328, Ltmp5246-Lfunc_begin0 - .quad Lset11328 -.set Lset11329, Ltmp5247-Lfunc_begin0 - .quad Lset11329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11330, Ltmp5271-Lfunc_begin0 - .quad Lset11330 -.set Lset11331, Ltmp5272-Lfunc_begin0 - .quad Lset11331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11332, Ltmp5296-Lfunc_begin0 - .quad Lset11332 -.set Lset11333, Ltmp5297-Lfunc_begin0 - .quad Lset11333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11334, Ltmp5322-Lfunc_begin0 - .quad Lset11334 -.set Lset11335, Ltmp5323-Lfunc_begin0 - .quad Lset11335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11336, Ltmp5347-Lfunc_begin0 - .quad Lset11336 -.set Lset11337, Ltmp5348-Lfunc_begin0 - .quad Lset11337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11338, Ltmp5372-Lfunc_begin0 - .quad Lset11338 -.set Lset11339, Ltmp5373-Lfunc_begin0 - .quad Lset11339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11340, Ltmp5397-Lfunc_begin0 - .quad Lset11340 -.set Lset11341, Ltmp5398-Lfunc_begin0 - .quad Lset11341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11342, Ltmp5422-Lfunc_begin0 - .quad Lset11342 -.set Lset11343, Ltmp5423-Lfunc_begin0 - .quad Lset11343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11344, Ltmp5447-Lfunc_begin0 - .quad Lset11344 -.set Lset11345, Ltmp5448-Lfunc_begin0 - .quad Lset11345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11346, Ltmp5472-Lfunc_begin0 - .quad Lset11346 -.set Lset11347, Ltmp5473-Lfunc_begin0 - .quad Lset11347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11348, Ltmp5498-Lfunc_begin0 - .quad Lset11348 -.set Lset11349, Ltmp5499-Lfunc_begin0 - .quad Lset11349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11350, Ltmp5523-Lfunc_begin0 - .quad Lset11350 -.set Lset11351, Ltmp5524-Lfunc_begin0 - .quad Lset11351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11352, Ltmp5548-Lfunc_begin0 - .quad Lset11352 -.set Lset11353, Ltmp5549-Lfunc_begin0 - .quad Lset11353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11354, Ltmp5573-Lfunc_begin0 - .quad Lset11354 -.set Lset11355, Ltmp5574-Lfunc_begin0 - .quad Lset11355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11356, Ltmp5598-Lfunc_begin0 - .quad Lset11356 -.set Lset11357, Ltmp5599-Lfunc_begin0 - .quad Lset11357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11358, Ltmp5631-Lfunc_begin0 - .quad Lset11358 -.set Lset11359, Ltmp5632-Lfunc_begin0 - .quad Lset11359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11360, Ltmp5662-Lfunc_begin0 - .quad Lset11360 -.set Lset11361, Ltmp5663-Lfunc_begin0 - .quad Lset11361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11362, Ltmp5687-Lfunc_begin0 - .quad Lset11362 -.set Lset11363, Ltmp5688-Lfunc_begin0 - .quad Lset11363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11364, Ltmp5712-Lfunc_begin0 - .quad Lset11364 -.set Lset11365, Ltmp5713-Lfunc_begin0 - .quad Lset11365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11366, Ltmp5737-Lfunc_begin0 - .quad Lset11366 -.set Lset11367, Ltmp5738-Lfunc_begin0 - .quad Lset11367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11368, Ltmp5767-Lfunc_begin0 - .quad Lset11368 -.set Lset11369, Ltmp5768-Lfunc_begin0 - .quad Lset11369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11370, Ltmp5795-Lfunc_begin0 - .quad Lset11370 -.set Lset11371, Ltmp5796-Lfunc_begin0 - .quad Lset11371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11372, Ltmp5814-Lfunc_begin0 - .quad Lset11372 -.set Lset11373, Ltmp5815-Lfunc_begin0 - .quad Lset11373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11374, Ltmp5833-Lfunc_begin0 - .quad Lset11374 -.set Lset11375, Ltmp5834-Lfunc_begin0 - .quad Lset11375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11376, Ltmp5852-Lfunc_begin0 - .quad Lset11376 -.set Lset11377, Ltmp5853-Lfunc_begin0 - .quad Lset11377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11378, Ltmp5871-Lfunc_begin0 - .quad Lset11378 -.set Lset11379, Ltmp5872-Lfunc_begin0 - .quad Lset11379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11380, Ltmp5890-Lfunc_begin0 - .quad Lset11380 -.set Lset11381, Ltmp5891-Lfunc_begin0 - .quad Lset11381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11382, Ltmp5920-Lfunc_begin0 - .quad Lset11382 -.set Lset11383, Ltmp5921-Lfunc_begin0 - .quad Lset11383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc222: -.set Lset11384, Ltmp1186-Lfunc_begin0 - .quad Lset11384 -.set Lset11385, Ltmp1187-Lfunc_begin0 - .quad Lset11385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11386, Ltmp1215-Lfunc_begin0 - .quad Lset11386 -.set Lset11387, Ltmp1216-Lfunc_begin0 - .quad Lset11387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11388, Ltmp1237-Lfunc_begin0 - .quad Lset11388 -.set Lset11389, Ltmp1238-Lfunc_begin0 - .quad Lset11389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11390, Ltmp1260-Lfunc_begin0 - .quad Lset11390 -.set Lset11391, Ltmp1261-Lfunc_begin0 - .quad Lset11391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11392, Ltmp1281-Lfunc_begin0 - .quad Lset11392 -.set Lset11393, Ltmp1282-Lfunc_begin0 - .quad Lset11393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11394, Ltmp1314-Lfunc_begin0 - .quad Lset11394 -.set Lset11395, Ltmp1315-Lfunc_begin0 - .quad Lset11395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11396, Ltmp1338-Lfunc_begin0 - .quad Lset11396 -.set Lset11397, Ltmp1339-Lfunc_begin0 - .quad Lset11397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11398, Ltmp1368-Lfunc_begin0 - .quad Lset11398 -.set Lset11399, Ltmp1369-Lfunc_begin0 - .quad Lset11399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11400, Ltmp1462-Lfunc_begin0 - .quad Lset11400 -.set Lset11401, Ltmp1464-Lfunc_begin0 - .quad Lset11401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11402, Ltmp1557-Lfunc_begin0 - .quad Lset11402 -.set Lset11403, Ltmp1559-Lfunc_begin0 - .quad Lset11403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11404, Ltmp1713-Lfunc_begin0 - .quad Lset11404 -.set Lset11405, Ltmp1715-Lfunc_begin0 - .quad Lset11405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11406, Ltmp1864-Lfunc_begin0 - .quad Lset11406 -.set Lset11407, Ltmp1866-Lfunc_begin0 - .quad Lset11407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11408, Ltmp2004-Lfunc_begin0 - .quad Lset11408 -.set Lset11409, Ltmp2006-Lfunc_begin0 - .quad Lset11409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11410, Ltmp2074-Lfunc_begin0 - .quad Lset11410 -.set Lset11411, Ltmp2076-Lfunc_begin0 - .quad Lset11411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11412, Ltmp2120-Lfunc_begin0 - .quad Lset11412 -.set Lset11413, Ltmp2121-Lfunc_begin0 - .quad Lset11413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11414, Ltmp2193-Lfunc_begin0 - .quad Lset11414 -.set Lset11415, Ltmp2195-Lfunc_begin0 - .quad Lset11415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11416, Ltmp2253-Lfunc_begin0 - .quad Lset11416 -.set Lset11417, Ltmp2255-Lfunc_begin0 - .quad Lset11417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11418, Ltmp2302-Lfunc_begin0 - .quad Lset11418 -.set Lset11419, Ltmp2304-Lfunc_begin0 - .quad Lset11419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11420, Ltmp2351-Lfunc_begin0 - .quad Lset11420 -.set Lset11421, Ltmp2353-Lfunc_begin0 - .quad Lset11421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11422, Ltmp2400-Lfunc_begin0 - .quad Lset11422 -.set Lset11423, Ltmp2402-Lfunc_begin0 - .quad Lset11423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11424, Ltmp2444-Lfunc_begin0 - .quad Lset11424 -.set Lset11425, Ltmp2446-Lfunc_begin0 - .quad Lset11425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11426, Ltmp2499-Lfunc_begin0 - .quad Lset11426 -.set Lset11427, Ltmp2501-Lfunc_begin0 - .quad Lset11427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11428, Ltmp2554-Lfunc_begin0 - .quad Lset11428 -.set Lset11429, Ltmp2556-Lfunc_begin0 - .quad Lset11429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11430, Ltmp2609-Lfunc_begin0 - .quad Lset11430 -.set Lset11431, Ltmp2611-Lfunc_begin0 - .quad Lset11431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11432, Ltmp2673-Lfunc_begin0 - .quad Lset11432 -.set Lset11433, Ltmp2675-Lfunc_begin0 - .quad Lset11433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11434, Ltmp2738-Lfunc_begin0 - .quad Lset11434 -.set Lset11435, Ltmp2740-Lfunc_begin0 - .quad Lset11435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11436, Ltmp2811-Lfunc_begin0 - .quad Lset11436 -.set Lset11437, Ltmp2813-Lfunc_begin0 - .quad Lset11437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11438, Ltmp2871-Lfunc_begin0 - .quad Lset11438 -.set Lset11439, Ltmp2873-Lfunc_begin0 - .quad Lset11439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11440, Ltmp2922-Lfunc_begin0 - .quad Lset11440 -.set Lset11441, Ltmp2924-Lfunc_begin0 - .quad Lset11441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11442, Ltmp2957-Lfunc_begin0 - .quad Lset11442 -.set Lset11443, Ltmp2958-Lfunc_begin0 - .quad Lset11443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11444, Ltmp2997-Lfunc_begin0 - .quad Lset11444 -.set Lset11445, Ltmp2999-Lfunc_begin0 - .quad Lset11445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11446, Ltmp3024-Lfunc_begin0 - .quad Lset11446 -.set Lset11447, Ltmp3025-Lfunc_begin0 - .quad Lset11447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11448, Ltmp3047-Lfunc_begin0 - .quad Lset11448 -.set Lset11449, Ltmp3048-Lfunc_begin0 - .quad Lset11449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11450, Ltmp3096-Lfunc_begin0 - .quad Lset11450 -.set Lset11451, Ltmp3097-Lfunc_begin0 - .quad Lset11451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11452, Ltmp3120-Lfunc_begin0 - .quad Lset11452 -.set Lset11453, Ltmp3122-Lfunc_begin0 - .quad Lset11453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11454, Ltmp3161-Lfunc_begin0 - .quad Lset11454 -.set Lset11455, Ltmp3163-Lfunc_begin0 - .quad Lset11455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11456, Ltmp3227-Lfunc_begin0 - .quad Lset11456 -.set Lset11457, Ltmp3228-Lfunc_begin0 - .quad Lset11457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11458, Ltmp3292-Lfunc_begin0 - .quad Lset11458 -.set Lset11459, Ltmp3293-Lfunc_begin0 - .quad Lset11459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11460, Ltmp3329-Lfunc_begin0 - .quad Lset11460 -.set Lset11461, Ltmp3330-Lfunc_begin0 - .quad Lset11461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11462, Ltmp3375-Lfunc_begin0 - .quad Lset11462 -.set Lset11463, Ltmp3376-Lfunc_begin0 - .quad Lset11463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11464, Ltmp3407-Lfunc_begin0 - .quad Lset11464 -.set Lset11465, Ltmp3408-Lfunc_begin0 - .quad Lset11465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11466, Ltmp3435-Lfunc_begin0 - .quad Lset11466 -.set Lset11467, Ltmp3436-Lfunc_begin0 - .quad Lset11467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11468, Ltmp3537-Lfunc_begin0 - .quad Lset11468 -.set Lset11469, Ltmp3538-Lfunc_begin0 - .quad Lset11469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11470, Ltmp3638-Lfunc_begin0 - .quad Lset11470 -.set Lset11471, Ltmp3640-Lfunc_begin0 - .quad Lset11471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11472, Ltmp3685-Lfunc_begin0 - .quad Lset11472 -.set Lset11473, Ltmp3686-Lfunc_begin0 - .quad Lset11473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11474, Ltmp3807-Lfunc_begin0 - .quad Lset11474 -.set Lset11475, Ltmp3809-Lfunc_begin0 - .quad Lset11475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11476, Ltmp3864-Lfunc_begin0 - .quad Lset11476 -.set Lset11477, Ltmp3865-Lfunc_begin0 - .quad Lset11477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11478, Ltmp3933-Lfunc_begin0 - .quad Lset11478 -.set Lset11479, Ltmp3934-Lfunc_begin0 - .quad Lset11479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11480, Ltmp3959-Lfunc_begin0 - .quad Lset11480 -.set Lset11481, Ltmp3960-Lfunc_begin0 - .quad Lset11481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11482, Ltmp3985-Lfunc_begin0 - .quad Lset11482 -.set Lset11483, Ltmp3986-Lfunc_begin0 - .quad Lset11483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11484, Ltmp4011-Lfunc_begin0 - .quad Lset11484 -.set Lset11485, Ltmp4012-Lfunc_begin0 - .quad Lset11485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11486, Ltmp4046-Lfunc_begin0 - .quad Lset11486 -.set Lset11487, Ltmp4047-Lfunc_begin0 - .quad Lset11487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11488, Ltmp4084-Lfunc_begin0 - .quad Lset11488 -.set Lset11489, Ltmp4085-Lfunc_begin0 - .quad Lset11489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11490, Ltmp4106-Lfunc_begin0 - .quad Lset11490 -.set Lset11491, Ltmp4107-Lfunc_begin0 - .quad Lset11491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11492, Ltmp4146-Lfunc_begin0 - .quad Lset11492 -.set Lset11493, Ltmp4147-Lfunc_begin0 - .quad Lset11493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11494, Ltmp4187-Lfunc_begin0 - .quad Lset11494 -.set Lset11495, Ltmp4188-Lfunc_begin0 - .quad Lset11495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11496, Ltmp4227-Lfunc_begin0 - .quad Lset11496 -.set Lset11497, Ltmp4228-Lfunc_begin0 - .quad Lset11497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11498, Ltmp4268-Lfunc_begin0 - .quad Lset11498 -.set Lset11499, Ltmp4269-Lfunc_begin0 - .quad Lset11499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11500, Ltmp4308-Lfunc_begin0 - .quad Lset11500 -.set Lset11501, Ltmp4309-Lfunc_begin0 - .quad Lset11501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11502, Ltmp4349-Lfunc_begin0 - .quad Lset11502 -.set Lset11503, Ltmp4350-Lfunc_begin0 - .quad Lset11503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11504, Ltmp4380-Lfunc_begin0 - .quad Lset11504 -.set Lset11505, Ltmp4381-Lfunc_begin0 - .quad Lset11505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11506, Ltmp4412-Lfunc_begin0 - .quad Lset11506 -.set Lset11507, Ltmp4414-Lfunc_begin0 - .quad Lset11507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11508, Ltmp4454-Lfunc_begin0 - .quad Lset11508 -.set Lset11509, Ltmp4455-Lfunc_begin0 - .quad Lset11509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11510, Ltmp4495-Lfunc_begin0 - .quad Lset11510 -.set Lset11511, Ltmp4496-Lfunc_begin0 - .quad Lset11511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11512, Ltmp4579-Lfunc_begin0 - .quad Lset11512 -.set Lset11513, Ltmp4581-Lfunc_begin0 - .quad Lset11513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11514, Ltmp4649-Lfunc_begin0 - .quad Lset11514 -.set Lset11515, Ltmp4651-Lfunc_begin0 - .quad Lset11515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11516, Ltmp4717-Lfunc_begin0 - .quad Lset11516 -.set Lset11517, Ltmp4719-Lfunc_begin0 - .quad Lset11517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11518, Ltmp4783-Lfunc_begin0 - .quad Lset11518 -.set Lset11519, Ltmp4784-Lfunc_begin0 - .quad Lset11519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11520, Ltmp4813-Lfunc_begin0 - .quad Lset11520 -.set Lset11521, Ltmp4814-Lfunc_begin0 - .quad Lset11521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11522, Ltmp4843-Lfunc_begin0 - .quad Lset11522 -.set Lset11523, Ltmp4844-Lfunc_begin0 - .quad Lset11523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11524, Ltmp4902-Lfunc_begin0 - .quad Lset11524 -.set Lset11525, Ltmp4903-Lfunc_begin0 - .quad Lset11525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11526, Ltmp4943-Lfunc_begin0 - .quad Lset11526 -.set Lset11527, Ltmp4944-Lfunc_begin0 - .quad Lset11527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11528, Ltmp5000-Lfunc_begin0 - .quad Lset11528 -.set Lset11529, Ltmp5001-Lfunc_begin0 - .quad Lset11529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11530, Ltmp5040-Lfunc_begin0 - .quad Lset11530 -.set Lset11531, Ltmp5041-Lfunc_begin0 - .quad Lset11531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11532, Ltmp5078-Lfunc_begin0 - .quad Lset11532 -.set Lset11533, Ltmp5079-Lfunc_begin0 - .quad Lset11533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11534, Ltmp5114-Lfunc_begin0 - .quad Lset11534 -.set Lset11535, Ltmp5115-Lfunc_begin0 - .quad Lset11535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11536, Ltmp5146-Lfunc_begin0 - .quad Lset11536 -.set Lset11537, Ltmp5147-Lfunc_begin0 - .quad Lset11537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11538, Ltmp5178-Lfunc_begin0 - .quad Lset11538 -.set Lset11539, Ltmp5179-Lfunc_begin0 - .quad Lset11539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11540, Ltmp5210-Lfunc_begin0 - .quad Lset11540 -.set Lset11541, Ltmp5211-Lfunc_begin0 - .quad Lset11541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11542, Ltmp5228-Lfunc_begin0 - .quad Lset11542 -.set Lset11543, Ltmp5229-Lfunc_begin0 - .quad Lset11543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11544, Ltmp5246-Lfunc_begin0 - .quad Lset11544 -.set Lset11545, Ltmp5247-Lfunc_begin0 - .quad Lset11545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11546, Ltmp5271-Lfunc_begin0 - .quad Lset11546 -.set Lset11547, Ltmp5272-Lfunc_begin0 - .quad Lset11547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11548, Ltmp5296-Lfunc_begin0 - .quad Lset11548 -.set Lset11549, Ltmp5297-Lfunc_begin0 - .quad Lset11549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11550, Ltmp5322-Lfunc_begin0 - .quad Lset11550 -.set Lset11551, Ltmp5323-Lfunc_begin0 - .quad Lset11551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11552, Ltmp5347-Lfunc_begin0 - .quad Lset11552 -.set Lset11553, Ltmp5348-Lfunc_begin0 - .quad Lset11553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11554, Ltmp5372-Lfunc_begin0 - .quad Lset11554 -.set Lset11555, Ltmp5373-Lfunc_begin0 - .quad Lset11555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11556, Ltmp5397-Lfunc_begin0 - .quad Lset11556 -.set Lset11557, Ltmp5398-Lfunc_begin0 - .quad Lset11557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11558, Ltmp5422-Lfunc_begin0 - .quad Lset11558 -.set Lset11559, Ltmp5423-Lfunc_begin0 - .quad Lset11559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11560, Ltmp5447-Lfunc_begin0 - .quad Lset11560 -.set Lset11561, Ltmp5448-Lfunc_begin0 - .quad Lset11561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11562, Ltmp5472-Lfunc_begin0 - .quad Lset11562 -.set Lset11563, Ltmp5473-Lfunc_begin0 - .quad Lset11563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11564, Ltmp5498-Lfunc_begin0 - .quad Lset11564 -.set Lset11565, Ltmp5499-Lfunc_begin0 - .quad Lset11565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11566, Ltmp5523-Lfunc_begin0 - .quad Lset11566 -.set Lset11567, Ltmp5524-Lfunc_begin0 - .quad Lset11567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11568, Ltmp5548-Lfunc_begin0 - .quad Lset11568 -.set Lset11569, Ltmp5549-Lfunc_begin0 - .quad Lset11569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11570, Ltmp5573-Lfunc_begin0 - .quad Lset11570 -.set Lset11571, Ltmp5574-Lfunc_begin0 - .quad Lset11571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11572, Ltmp5598-Lfunc_begin0 - .quad Lset11572 -.set Lset11573, Ltmp5599-Lfunc_begin0 - .quad Lset11573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11574, Ltmp5631-Lfunc_begin0 - .quad Lset11574 -.set Lset11575, Ltmp5632-Lfunc_begin0 - .quad Lset11575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11576, Ltmp5662-Lfunc_begin0 - .quad Lset11576 -.set Lset11577, Ltmp5663-Lfunc_begin0 - .quad Lset11577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11578, Ltmp5687-Lfunc_begin0 - .quad Lset11578 -.set Lset11579, Ltmp5688-Lfunc_begin0 - .quad Lset11579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11580, Ltmp5712-Lfunc_begin0 - .quad Lset11580 -.set Lset11581, Ltmp5713-Lfunc_begin0 - .quad Lset11581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11582, Ltmp5737-Lfunc_begin0 - .quad Lset11582 -.set Lset11583, Ltmp5738-Lfunc_begin0 - .quad Lset11583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11584, Ltmp5767-Lfunc_begin0 - .quad Lset11584 -.set Lset11585, Ltmp5768-Lfunc_begin0 - .quad Lset11585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11586, Ltmp5795-Lfunc_begin0 - .quad Lset11586 -.set Lset11587, Ltmp5796-Lfunc_begin0 - .quad Lset11587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11588, Ltmp5814-Lfunc_begin0 - .quad Lset11588 -.set Lset11589, Ltmp5815-Lfunc_begin0 - .quad Lset11589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11590, Ltmp5833-Lfunc_begin0 - .quad Lset11590 -.set Lset11591, Ltmp5834-Lfunc_begin0 - .quad Lset11591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11592, Ltmp5852-Lfunc_begin0 - .quad Lset11592 -.set Lset11593, Ltmp5853-Lfunc_begin0 - .quad Lset11593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11594, Ltmp5871-Lfunc_begin0 - .quad Lset11594 -.set Lset11595, Ltmp5872-Lfunc_begin0 - .quad Lset11595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11596, Ltmp5890-Lfunc_begin0 - .quad Lset11596 -.set Lset11597, Ltmp5891-Lfunc_begin0 - .quad Lset11597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11598, Ltmp5920-Lfunc_begin0 - .quad Lset11598 -.set Lset11599, Ltmp5921-Lfunc_begin0 - .quad Lset11599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc223: -.set Lset11600, Ltmp1186-Lfunc_begin0 - .quad Lset11600 -.set Lset11601, Ltmp1187-Lfunc_begin0 - .quad Lset11601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11602, Ltmp1215-Lfunc_begin0 - .quad Lset11602 -.set Lset11603, Ltmp1216-Lfunc_begin0 - .quad Lset11603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11604, Ltmp1237-Lfunc_begin0 - .quad Lset11604 -.set Lset11605, Ltmp1238-Lfunc_begin0 - .quad Lset11605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11606, Ltmp1260-Lfunc_begin0 - .quad Lset11606 -.set Lset11607, Ltmp1261-Lfunc_begin0 - .quad Lset11607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11608, Ltmp1281-Lfunc_begin0 - .quad Lset11608 -.set Lset11609, Ltmp1282-Lfunc_begin0 - .quad Lset11609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11610, Ltmp1314-Lfunc_begin0 - .quad Lset11610 -.set Lset11611, Ltmp1315-Lfunc_begin0 - .quad Lset11611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11612, Ltmp1338-Lfunc_begin0 - .quad Lset11612 -.set Lset11613, Ltmp1339-Lfunc_begin0 - .quad Lset11613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11614, Ltmp1368-Lfunc_begin0 - .quad Lset11614 -.set Lset11615, Ltmp1369-Lfunc_begin0 - .quad Lset11615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11616, Ltmp1462-Lfunc_begin0 - .quad Lset11616 -.set Lset11617, Ltmp1464-Lfunc_begin0 - .quad Lset11617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11618, Ltmp1557-Lfunc_begin0 - .quad Lset11618 -.set Lset11619, Ltmp1559-Lfunc_begin0 - .quad Lset11619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11620, Ltmp1713-Lfunc_begin0 - .quad Lset11620 -.set Lset11621, Ltmp1715-Lfunc_begin0 - .quad Lset11621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11622, Ltmp1864-Lfunc_begin0 - .quad Lset11622 -.set Lset11623, Ltmp1866-Lfunc_begin0 - .quad Lset11623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11624, Ltmp2004-Lfunc_begin0 - .quad Lset11624 -.set Lset11625, Ltmp2006-Lfunc_begin0 - .quad Lset11625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11626, Ltmp2074-Lfunc_begin0 - .quad Lset11626 -.set Lset11627, Ltmp2076-Lfunc_begin0 - .quad Lset11627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11628, Ltmp2120-Lfunc_begin0 - .quad Lset11628 -.set Lset11629, Ltmp2121-Lfunc_begin0 - .quad Lset11629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11630, Ltmp2193-Lfunc_begin0 - .quad Lset11630 -.set Lset11631, Ltmp2195-Lfunc_begin0 - .quad Lset11631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11632, Ltmp2253-Lfunc_begin0 - .quad Lset11632 -.set Lset11633, Ltmp2255-Lfunc_begin0 - .quad Lset11633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11634, Ltmp2302-Lfunc_begin0 - .quad Lset11634 -.set Lset11635, Ltmp2304-Lfunc_begin0 - .quad Lset11635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11636, Ltmp2351-Lfunc_begin0 - .quad Lset11636 -.set Lset11637, Ltmp2353-Lfunc_begin0 - .quad Lset11637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11638, Ltmp2400-Lfunc_begin0 - .quad Lset11638 -.set Lset11639, Ltmp2402-Lfunc_begin0 - .quad Lset11639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11640, Ltmp2444-Lfunc_begin0 - .quad Lset11640 -.set Lset11641, Ltmp2446-Lfunc_begin0 - .quad Lset11641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11642, Ltmp2499-Lfunc_begin0 - .quad Lset11642 -.set Lset11643, Ltmp2501-Lfunc_begin0 - .quad Lset11643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11644, Ltmp2554-Lfunc_begin0 - .quad Lset11644 -.set Lset11645, Ltmp2556-Lfunc_begin0 - .quad Lset11645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11646, Ltmp2609-Lfunc_begin0 - .quad Lset11646 -.set Lset11647, Ltmp2611-Lfunc_begin0 - .quad Lset11647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11648, Ltmp2673-Lfunc_begin0 - .quad Lset11648 -.set Lset11649, Ltmp2675-Lfunc_begin0 - .quad Lset11649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11650, Ltmp2738-Lfunc_begin0 - .quad Lset11650 -.set Lset11651, Ltmp2740-Lfunc_begin0 - .quad Lset11651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11652, Ltmp2811-Lfunc_begin0 - .quad Lset11652 -.set Lset11653, Ltmp2813-Lfunc_begin0 - .quad Lset11653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11654, Ltmp2871-Lfunc_begin0 - .quad Lset11654 -.set Lset11655, Ltmp2873-Lfunc_begin0 - .quad Lset11655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11656, Ltmp2922-Lfunc_begin0 - .quad Lset11656 -.set Lset11657, Ltmp2924-Lfunc_begin0 - .quad Lset11657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11658, Ltmp2957-Lfunc_begin0 - .quad Lset11658 -.set Lset11659, Ltmp2958-Lfunc_begin0 - .quad Lset11659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11660, Ltmp2997-Lfunc_begin0 - .quad Lset11660 -.set Lset11661, Ltmp2999-Lfunc_begin0 - .quad Lset11661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11662, Ltmp3024-Lfunc_begin0 - .quad Lset11662 -.set Lset11663, Ltmp3025-Lfunc_begin0 - .quad Lset11663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11664, Ltmp3047-Lfunc_begin0 - .quad Lset11664 -.set Lset11665, Ltmp3048-Lfunc_begin0 - .quad Lset11665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11666, Ltmp3096-Lfunc_begin0 - .quad Lset11666 -.set Lset11667, Ltmp3097-Lfunc_begin0 - .quad Lset11667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11668, Ltmp3120-Lfunc_begin0 - .quad Lset11668 -.set Lset11669, Ltmp3122-Lfunc_begin0 - .quad Lset11669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11670, Ltmp3161-Lfunc_begin0 - .quad Lset11670 -.set Lset11671, Ltmp3163-Lfunc_begin0 - .quad Lset11671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11672, Ltmp3227-Lfunc_begin0 - .quad Lset11672 -.set Lset11673, Ltmp3228-Lfunc_begin0 - .quad Lset11673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11674, Ltmp3292-Lfunc_begin0 - .quad Lset11674 -.set Lset11675, Ltmp3293-Lfunc_begin0 - .quad Lset11675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11676, Ltmp3329-Lfunc_begin0 - .quad Lset11676 -.set Lset11677, Ltmp3330-Lfunc_begin0 - .quad Lset11677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11678, Ltmp3375-Lfunc_begin0 - .quad Lset11678 -.set Lset11679, Ltmp3376-Lfunc_begin0 - .quad Lset11679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11680, Ltmp3407-Lfunc_begin0 - .quad Lset11680 -.set Lset11681, Ltmp3408-Lfunc_begin0 - .quad Lset11681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11682, Ltmp3435-Lfunc_begin0 - .quad Lset11682 -.set Lset11683, Ltmp3436-Lfunc_begin0 - .quad Lset11683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11684, Ltmp3537-Lfunc_begin0 - .quad Lset11684 -.set Lset11685, Ltmp3538-Lfunc_begin0 - .quad Lset11685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11686, Ltmp3638-Lfunc_begin0 - .quad Lset11686 -.set Lset11687, Ltmp3640-Lfunc_begin0 - .quad Lset11687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11688, Ltmp3685-Lfunc_begin0 - .quad Lset11688 -.set Lset11689, Ltmp3686-Lfunc_begin0 - .quad Lset11689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11690, Ltmp3807-Lfunc_begin0 - .quad Lset11690 -.set Lset11691, Ltmp3809-Lfunc_begin0 - .quad Lset11691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11692, Ltmp3864-Lfunc_begin0 - .quad Lset11692 -.set Lset11693, Ltmp3865-Lfunc_begin0 - .quad Lset11693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11694, Ltmp3933-Lfunc_begin0 - .quad Lset11694 -.set Lset11695, Ltmp3934-Lfunc_begin0 - .quad Lset11695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11696, Ltmp3959-Lfunc_begin0 - .quad Lset11696 -.set Lset11697, Ltmp3960-Lfunc_begin0 - .quad Lset11697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11698, Ltmp3985-Lfunc_begin0 - .quad Lset11698 -.set Lset11699, Ltmp3986-Lfunc_begin0 - .quad Lset11699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11700, Ltmp4011-Lfunc_begin0 - .quad Lset11700 -.set Lset11701, Ltmp4012-Lfunc_begin0 - .quad Lset11701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11702, Ltmp4046-Lfunc_begin0 - .quad Lset11702 -.set Lset11703, Ltmp4047-Lfunc_begin0 - .quad Lset11703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11704, Ltmp4084-Lfunc_begin0 - .quad Lset11704 -.set Lset11705, Ltmp4085-Lfunc_begin0 - .quad Lset11705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11706, Ltmp4106-Lfunc_begin0 - .quad Lset11706 -.set Lset11707, Ltmp4107-Lfunc_begin0 - .quad Lset11707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11708, Ltmp4146-Lfunc_begin0 - .quad Lset11708 -.set Lset11709, Ltmp4147-Lfunc_begin0 - .quad Lset11709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11710, Ltmp4187-Lfunc_begin0 - .quad Lset11710 -.set Lset11711, Ltmp4188-Lfunc_begin0 - .quad Lset11711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11712, Ltmp4227-Lfunc_begin0 - .quad Lset11712 -.set Lset11713, Ltmp4228-Lfunc_begin0 - .quad Lset11713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11714, Ltmp4268-Lfunc_begin0 - .quad Lset11714 -.set Lset11715, Ltmp4269-Lfunc_begin0 - .quad Lset11715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11716, Ltmp4308-Lfunc_begin0 - .quad Lset11716 -.set Lset11717, Ltmp4309-Lfunc_begin0 - .quad Lset11717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11718, Ltmp4349-Lfunc_begin0 - .quad Lset11718 -.set Lset11719, Ltmp4350-Lfunc_begin0 - .quad Lset11719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11720, Ltmp4380-Lfunc_begin0 - .quad Lset11720 -.set Lset11721, Ltmp4381-Lfunc_begin0 - .quad Lset11721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11722, Ltmp4412-Lfunc_begin0 - .quad Lset11722 -.set Lset11723, Ltmp4414-Lfunc_begin0 - .quad Lset11723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11724, Ltmp4454-Lfunc_begin0 - .quad Lset11724 -.set Lset11725, Ltmp4455-Lfunc_begin0 - .quad Lset11725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11726, Ltmp4495-Lfunc_begin0 - .quad Lset11726 -.set Lset11727, Ltmp4496-Lfunc_begin0 - .quad Lset11727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11728, Ltmp4579-Lfunc_begin0 - .quad Lset11728 -.set Lset11729, Ltmp4581-Lfunc_begin0 - .quad Lset11729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11730, Ltmp4649-Lfunc_begin0 - .quad Lset11730 -.set Lset11731, Ltmp4651-Lfunc_begin0 - .quad Lset11731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11732, Ltmp4717-Lfunc_begin0 - .quad Lset11732 -.set Lset11733, Ltmp4719-Lfunc_begin0 - .quad Lset11733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11734, Ltmp4783-Lfunc_begin0 - .quad Lset11734 -.set Lset11735, Ltmp4784-Lfunc_begin0 - .quad Lset11735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11736, Ltmp4813-Lfunc_begin0 - .quad Lset11736 -.set Lset11737, Ltmp4814-Lfunc_begin0 - .quad Lset11737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11738, Ltmp4843-Lfunc_begin0 - .quad Lset11738 -.set Lset11739, Ltmp4844-Lfunc_begin0 - .quad Lset11739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11740, Ltmp4902-Lfunc_begin0 - .quad Lset11740 -.set Lset11741, Ltmp4903-Lfunc_begin0 - .quad Lset11741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11742, Ltmp4943-Lfunc_begin0 - .quad Lset11742 -.set Lset11743, Ltmp4944-Lfunc_begin0 - .quad Lset11743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11744, Ltmp5000-Lfunc_begin0 - .quad Lset11744 -.set Lset11745, Ltmp5001-Lfunc_begin0 - .quad Lset11745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11746, Ltmp5040-Lfunc_begin0 - .quad Lset11746 -.set Lset11747, Ltmp5041-Lfunc_begin0 - .quad Lset11747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11748, Ltmp5078-Lfunc_begin0 - .quad Lset11748 -.set Lset11749, Ltmp5079-Lfunc_begin0 - .quad Lset11749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11750, Ltmp5114-Lfunc_begin0 - .quad Lset11750 -.set Lset11751, Ltmp5115-Lfunc_begin0 - .quad Lset11751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11752, Ltmp5146-Lfunc_begin0 - .quad Lset11752 -.set Lset11753, Ltmp5147-Lfunc_begin0 - .quad Lset11753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11754, Ltmp5178-Lfunc_begin0 - .quad Lset11754 -.set Lset11755, Ltmp5179-Lfunc_begin0 - .quad Lset11755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11756, Ltmp5210-Lfunc_begin0 - .quad Lset11756 -.set Lset11757, Ltmp5211-Lfunc_begin0 - .quad Lset11757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11758, Ltmp5228-Lfunc_begin0 - .quad Lset11758 -.set Lset11759, Ltmp5229-Lfunc_begin0 - .quad Lset11759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11760, Ltmp5246-Lfunc_begin0 - .quad Lset11760 -.set Lset11761, Ltmp5247-Lfunc_begin0 - .quad Lset11761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11762, Ltmp5271-Lfunc_begin0 - .quad Lset11762 -.set Lset11763, Ltmp5272-Lfunc_begin0 - .quad Lset11763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11764, Ltmp5296-Lfunc_begin0 - .quad Lset11764 -.set Lset11765, Ltmp5297-Lfunc_begin0 - .quad Lset11765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11766, Ltmp5322-Lfunc_begin0 - .quad Lset11766 -.set Lset11767, Ltmp5323-Lfunc_begin0 - .quad Lset11767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11768, Ltmp5347-Lfunc_begin0 - .quad Lset11768 -.set Lset11769, Ltmp5348-Lfunc_begin0 - .quad Lset11769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11770, Ltmp5372-Lfunc_begin0 - .quad Lset11770 -.set Lset11771, Ltmp5373-Lfunc_begin0 - .quad Lset11771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11772, Ltmp5397-Lfunc_begin0 - .quad Lset11772 -.set Lset11773, Ltmp5398-Lfunc_begin0 - .quad Lset11773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11774, Ltmp5422-Lfunc_begin0 - .quad Lset11774 -.set Lset11775, Ltmp5423-Lfunc_begin0 - .quad Lset11775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11776, Ltmp5447-Lfunc_begin0 - .quad Lset11776 -.set Lset11777, Ltmp5448-Lfunc_begin0 - .quad Lset11777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11778, Ltmp5472-Lfunc_begin0 - .quad Lset11778 -.set Lset11779, Ltmp5473-Lfunc_begin0 - .quad Lset11779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11780, Ltmp5498-Lfunc_begin0 - .quad Lset11780 -.set Lset11781, Ltmp5499-Lfunc_begin0 - .quad Lset11781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11782, Ltmp5523-Lfunc_begin0 - .quad Lset11782 -.set Lset11783, Ltmp5524-Lfunc_begin0 - .quad Lset11783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11784, Ltmp5548-Lfunc_begin0 - .quad Lset11784 -.set Lset11785, Ltmp5549-Lfunc_begin0 - .quad Lset11785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11786, Ltmp5573-Lfunc_begin0 - .quad Lset11786 -.set Lset11787, Ltmp5574-Lfunc_begin0 - .quad Lset11787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11788, Ltmp5598-Lfunc_begin0 - .quad Lset11788 -.set Lset11789, Ltmp5599-Lfunc_begin0 - .quad Lset11789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11790, Ltmp5631-Lfunc_begin0 - .quad Lset11790 -.set Lset11791, Ltmp5632-Lfunc_begin0 - .quad Lset11791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11792, Ltmp5662-Lfunc_begin0 - .quad Lset11792 -.set Lset11793, Ltmp5663-Lfunc_begin0 - .quad Lset11793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11794, Ltmp5687-Lfunc_begin0 - .quad Lset11794 -.set Lset11795, Ltmp5688-Lfunc_begin0 - .quad Lset11795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11796, Ltmp5712-Lfunc_begin0 - .quad Lset11796 -.set Lset11797, Ltmp5713-Lfunc_begin0 - .quad Lset11797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11798, Ltmp5737-Lfunc_begin0 - .quad Lset11798 -.set Lset11799, Ltmp5738-Lfunc_begin0 - .quad Lset11799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11800, Ltmp5767-Lfunc_begin0 - .quad Lset11800 -.set Lset11801, Ltmp5768-Lfunc_begin0 - .quad Lset11801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11802, Ltmp5795-Lfunc_begin0 - .quad Lset11802 -.set Lset11803, Ltmp5796-Lfunc_begin0 - .quad Lset11803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11804, Ltmp5814-Lfunc_begin0 - .quad Lset11804 -.set Lset11805, Ltmp5815-Lfunc_begin0 - .quad Lset11805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11806, Ltmp5833-Lfunc_begin0 - .quad Lset11806 -.set Lset11807, Ltmp5834-Lfunc_begin0 - .quad Lset11807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11808, Ltmp5852-Lfunc_begin0 - .quad Lset11808 -.set Lset11809, Ltmp5853-Lfunc_begin0 - .quad Lset11809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11810, Ltmp5871-Lfunc_begin0 - .quad Lset11810 -.set Lset11811, Ltmp5872-Lfunc_begin0 - .quad Lset11811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11812, Ltmp5890-Lfunc_begin0 - .quad Lset11812 -.set Lset11813, Ltmp5891-Lfunc_begin0 - .quad Lset11813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11814, Ltmp5920-Lfunc_begin0 - .quad Lset11814 -.set Lset11815, Ltmp5921-Lfunc_begin0 - .quad Lset11815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc224: -.set Lset11816, Ltmp1186-Lfunc_begin0 - .quad Lset11816 -.set Lset11817, Ltmp1187-Lfunc_begin0 - .quad Lset11817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11818, Ltmp1215-Lfunc_begin0 - .quad Lset11818 -.set Lset11819, Ltmp1216-Lfunc_begin0 - .quad Lset11819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11820, Ltmp1237-Lfunc_begin0 - .quad Lset11820 -.set Lset11821, Ltmp1238-Lfunc_begin0 - .quad Lset11821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11822, Ltmp1260-Lfunc_begin0 - .quad Lset11822 -.set Lset11823, Ltmp1261-Lfunc_begin0 - .quad Lset11823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11824, Ltmp1281-Lfunc_begin0 - .quad Lset11824 -.set Lset11825, Ltmp1282-Lfunc_begin0 - .quad Lset11825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11826, Ltmp1314-Lfunc_begin0 - .quad Lset11826 -.set Lset11827, Ltmp1315-Lfunc_begin0 - .quad Lset11827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11828, Ltmp1338-Lfunc_begin0 - .quad Lset11828 -.set Lset11829, Ltmp1339-Lfunc_begin0 - .quad Lset11829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11830, Ltmp1368-Lfunc_begin0 - .quad Lset11830 -.set Lset11831, Ltmp1369-Lfunc_begin0 - .quad Lset11831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11832, Ltmp1462-Lfunc_begin0 - .quad Lset11832 -.set Lset11833, Ltmp1464-Lfunc_begin0 - .quad Lset11833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11834, Ltmp1557-Lfunc_begin0 - .quad Lset11834 -.set Lset11835, Ltmp1559-Lfunc_begin0 - .quad Lset11835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11836, Ltmp1713-Lfunc_begin0 - .quad Lset11836 -.set Lset11837, Ltmp1715-Lfunc_begin0 - .quad Lset11837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11838, Ltmp1864-Lfunc_begin0 - .quad Lset11838 -.set Lset11839, Ltmp1866-Lfunc_begin0 - .quad Lset11839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11840, Ltmp2004-Lfunc_begin0 - .quad Lset11840 -.set Lset11841, Ltmp2006-Lfunc_begin0 - .quad Lset11841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11842, Ltmp2074-Lfunc_begin0 - .quad Lset11842 -.set Lset11843, Ltmp2076-Lfunc_begin0 - .quad Lset11843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11844, Ltmp2120-Lfunc_begin0 - .quad Lset11844 -.set Lset11845, Ltmp2121-Lfunc_begin0 - .quad Lset11845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11846, Ltmp2193-Lfunc_begin0 - .quad Lset11846 -.set Lset11847, Ltmp2195-Lfunc_begin0 - .quad Lset11847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11848, Ltmp2253-Lfunc_begin0 - .quad Lset11848 -.set Lset11849, Ltmp2255-Lfunc_begin0 - .quad Lset11849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11850, Ltmp2302-Lfunc_begin0 - .quad Lset11850 -.set Lset11851, Ltmp2304-Lfunc_begin0 - .quad Lset11851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11852, Ltmp2351-Lfunc_begin0 - .quad Lset11852 -.set Lset11853, Ltmp2353-Lfunc_begin0 - .quad Lset11853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11854, Ltmp2400-Lfunc_begin0 - .quad Lset11854 -.set Lset11855, Ltmp2402-Lfunc_begin0 - .quad Lset11855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11856, Ltmp2444-Lfunc_begin0 - .quad Lset11856 -.set Lset11857, Ltmp2446-Lfunc_begin0 - .quad Lset11857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11858, Ltmp2499-Lfunc_begin0 - .quad Lset11858 -.set Lset11859, Ltmp2501-Lfunc_begin0 - .quad Lset11859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11860, Ltmp2554-Lfunc_begin0 - .quad Lset11860 -.set Lset11861, Ltmp2556-Lfunc_begin0 - .quad Lset11861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11862, Ltmp2609-Lfunc_begin0 - .quad Lset11862 -.set Lset11863, Ltmp2611-Lfunc_begin0 - .quad Lset11863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11864, Ltmp2673-Lfunc_begin0 - .quad Lset11864 -.set Lset11865, Ltmp2675-Lfunc_begin0 - .quad Lset11865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11866, Ltmp2738-Lfunc_begin0 - .quad Lset11866 -.set Lset11867, Ltmp2740-Lfunc_begin0 - .quad Lset11867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11868, Ltmp2811-Lfunc_begin0 - .quad Lset11868 -.set Lset11869, Ltmp2813-Lfunc_begin0 - .quad Lset11869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11870, Ltmp2871-Lfunc_begin0 - .quad Lset11870 -.set Lset11871, Ltmp2873-Lfunc_begin0 - .quad Lset11871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11872, Ltmp2922-Lfunc_begin0 - .quad Lset11872 -.set Lset11873, Ltmp2924-Lfunc_begin0 - .quad Lset11873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11874, Ltmp2957-Lfunc_begin0 - .quad Lset11874 -.set Lset11875, Ltmp2958-Lfunc_begin0 - .quad Lset11875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11876, Ltmp2997-Lfunc_begin0 - .quad Lset11876 -.set Lset11877, Ltmp2999-Lfunc_begin0 - .quad Lset11877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11878, Ltmp3024-Lfunc_begin0 - .quad Lset11878 -.set Lset11879, Ltmp3025-Lfunc_begin0 - .quad Lset11879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11880, Ltmp3047-Lfunc_begin0 - .quad Lset11880 -.set Lset11881, Ltmp3048-Lfunc_begin0 - .quad Lset11881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11882, Ltmp3096-Lfunc_begin0 - .quad Lset11882 -.set Lset11883, Ltmp3097-Lfunc_begin0 - .quad Lset11883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11884, Ltmp3120-Lfunc_begin0 - .quad Lset11884 -.set Lset11885, Ltmp3122-Lfunc_begin0 - .quad Lset11885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11886, Ltmp3161-Lfunc_begin0 - .quad Lset11886 -.set Lset11887, Ltmp3163-Lfunc_begin0 - .quad Lset11887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11888, Ltmp3227-Lfunc_begin0 - .quad Lset11888 -.set Lset11889, Ltmp3228-Lfunc_begin0 - .quad Lset11889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11890, Ltmp3292-Lfunc_begin0 - .quad Lset11890 -.set Lset11891, Ltmp3293-Lfunc_begin0 - .quad Lset11891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11892, Ltmp3329-Lfunc_begin0 - .quad Lset11892 -.set Lset11893, Ltmp3330-Lfunc_begin0 - .quad Lset11893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11894, Ltmp3375-Lfunc_begin0 - .quad Lset11894 -.set Lset11895, Ltmp3376-Lfunc_begin0 - .quad Lset11895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11896, Ltmp3407-Lfunc_begin0 - .quad Lset11896 -.set Lset11897, Ltmp3408-Lfunc_begin0 - .quad Lset11897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11898, Ltmp3435-Lfunc_begin0 - .quad Lset11898 -.set Lset11899, Ltmp3436-Lfunc_begin0 - .quad Lset11899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11900, Ltmp3537-Lfunc_begin0 - .quad Lset11900 -.set Lset11901, Ltmp3538-Lfunc_begin0 - .quad Lset11901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11902, Ltmp3638-Lfunc_begin0 - .quad Lset11902 -.set Lset11903, Ltmp3640-Lfunc_begin0 - .quad Lset11903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11904, Ltmp3685-Lfunc_begin0 - .quad Lset11904 -.set Lset11905, Ltmp3686-Lfunc_begin0 - .quad Lset11905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11906, Ltmp3807-Lfunc_begin0 - .quad Lset11906 -.set Lset11907, Ltmp3809-Lfunc_begin0 - .quad Lset11907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11908, Ltmp3864-Lfunc_begin0 - .quad Lset11908 -.set Lset11909, Ltmp3865-Lfunc_begin0 - .quad Lset11909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11910, Ltmp3933-Lfunc_begin0 - .quad Lset11910 -.set Lset11911, Ltmp3934-Lfunc_begin0 - .quad Lset11911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11912, Ltmp3959-Lfunc_begin0 - .quad Lset11912 -.set Lset11913, Ltmp3960-Lfunc_begin0 - .quad Lset11913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11914, Ltmp3985-Lfunc_begin0 - .quad Lset11914 -.set Lset11915, Ltmp3986-Lfunc_begin0 - .quad Lset11915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11916, Ltmp4011-Lfunc_begin0 - .quad Lset11916 -.set Lset11917, Ltmp4012-Lfunc_begin0 - .quad Lset11917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11918, Ltmp4046-Lfunc_begin0 - .quad Lset11918 -.set Lset11919, Ltmp4047-Lfunc_begin0 - .quad Lset11919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11920, Ltmp4084-Lfunc_begin0 - .quad Lset11920 -.set Lset11921, Ltmp4085-Lfunc_begin0 - .quad Lset11921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11922, Ltmp4106-Lfunc_begin0 - .quad Lset11922 -.set Lset11923, Ltmp4107-Lfunc_begin0 - .quad Lset11923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11924, Ltmp4146-Lfunc_begin0 - .quad Lset11924 -.set Lset11925, Ltmp4147-Lfunc_begin0 - .quad Lset11925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11926, Ltmp4187-Lfunc_begin0 - .quad Lset11926 -.set Lset11927, Ltmp4188-Lfunc_begin0 - .quad Lset11927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11928, Ltmp4227-Lfunc_begin0 - .quad Lset11928 -.set Lset11929, Ltmp4228-Lfunc_begin0 - .quad Lset11929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11930, Ltmp4268-Lfunc_begin0 - .quad Lset11930 -.set Lset11931, Ltmp4269-Lfunc_begin0 - .quad Lset11931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11932, Ltmp4308-Lfunc_begin0 - .quad Lset11932 -.set Lset11933, Ltmp4309-Lfunc_begin0 - .quad Lset11933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11934, Ltmp4349-Lfunc_begin0 - .quad Lset11934 -.set Lset11935, Ltmp4350-Lfunc_begin0 - .quad Lset11935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11936, Ltmp4380-Lfunc_begin0 - .quad Lset11936 -.set Lset11937, Ltmp4381-Lfunc_begin0 - .quad Lset11937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11938, Ltmp4412-Lfunc_begin0 - .quad Lset11938 -.set Lset11939, Ltmp4414-Lfunc_begin0 - .quad Lset11939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11940, Ltmp4454-Lfunc_begin0 - .quad Lset11940 -.set Lset11941, Ltmp4455-Lfunc_begin0 - .quad Lset11941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11942, Ltmp4495-Lfunc_begin0 - .quad Lset11942 -.set Lset11943, Ltmp4496-Lfunc_begin0 - .quad Lset11943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11944, Ltmp4579-Lfunc_begin0 - .quad Lset11944 -.set Lset11945, Ltmp4581-Lfunc_begin0 - .quad Lset11945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11946, Ltmp4649-Lfunc_begin0 - .quad Lset11946 -.set Lset11947, Ltmp4651-Lfunc_begin0 - .quad Lset11947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11948, Ltmp4717-Lfunc_begin0 - .quad Lset11948 -.set Lset11949, Ltmp4719-Lfunc_begin0 - .quad Lset11949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11950, Ltmp4783-Lfunc_begin0 - .quad Lset11950 -.set Lset11951, Ltmp4784-Lfunc_begin0 - .quad Lset11951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11952, Ltmp4813-Lfunc_begin0 - .quad Lset11952 -.set Lset11953, Ltmp4814-Lfunc_begin0 - .quad Lset11953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11954, Ltmp4843-Lfunc_begin0 - .quad Lset11954 -.set Lset11955, Ltmp4844-Lfunc_begin0 - .quad Lset11955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11956, Ltmp4902-Lfunc_begin0 - .quad Lset11956 -.set Lset11957, Ltmp4903-Lfunc_begin0 - .quad Lset11957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11958, Ltmp4943-Lfunc_begin0 - .quad Lset11958 -.set Lset11959, Ltmp4944-Lfunc_begin0 - .quad Lset11959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11960, Ltmp5000-Lfunc_begin0 - .quad Lset11960 -.set Lset11961, Ltmp5001-Lfunc_begin0 - .quad Lset11961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11962, Ltmp5040-Lfunc_begin0 - .quad Lset11962 -.set Lset11963, Ltmp5041-Lfunc_begin0 - .quad Lset11963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11964, Ltmp5078-Lfunc_begin0 - .quad Lset11964 -.set Lset11965, Ltmp5079-Lfunc_begin0 - .quad Lset11965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11966, Ltmp5114-Lfunc_begin0 - .quad Lset11966 -.set Lset11967, Ltmp5115-Lfunc_begin0 - .quad Lset11967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11968, Ltmp5146-Lfunc_begin0 - .quad Lset11968 -.set Lset11969, Ltmp5147-Lfunc_begin0 - .quad Lset11969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11970, Ltmp5178-Lfunc_begin0 - .quad Lset11970 -.set Lset11971, Ltmp5179-Lfunc_begin0 - .quad Lset11971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11972, Ltmp5210-Lfunc_begin0 - .quad Lset11972 -.set Lset11973, Ltmp5211-Lfunc_begin0 - .quad Lset11973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11974, Ltmp5228-Lfunc_begin0 - .quad Lset11974 -.set Lset11975, Ltmp5229-Lfunc_begin0 - .quad Lset11975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11976, Ltmp5246-Lfunc_begin0 - .quad Lset11976 -.set Lset11977, Ltmp5247-Lfunc_begin0 - .quad Lset11977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11978, Ltmp5271-Lfunc_begin0 - .quad Lset11978 -.set Lset11979, Ltmp5272-Lfunc_begin0 - .quad Lset11979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11980, Ltmp5296-Lfunc_begin0 - .quad Lset11980 -.set Lset11981, Ltmp5297-Lfunc_begin0 - .quad Lset11981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11982, Ltmp5322-Lfunc_begin0 - .quad Lset11982 -.set Lset11983, Ltmp5323-Lfunc_begin0 - .quad Lset11983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11984, Ltmp5347-Lfunc_begin0 - .quad Lset11984 -.set Lset11985, Ltmp5348-Lfunc_begin0 - .quad Lset11985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11986, Ltmp5372-Lfunc_begin0 - .quad Lset11986 -.set Lset11987, Ltmp5373-Lfunc_begin0 - .quad Lset11987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11988, Ltmp5397-Lfunc_begin0 - .quad Lset11988 -.set Lset11989, Ltmp5398-Lfunc_begin0 - .quad Lset11989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11990, Ltmp5422-Lfunc_begin0 - .quad Lset11990 -.set Lset11991, Ltmp5423-Lfunc_begin0 - .quad Lset11991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11992, Ltmp5447-Lfunc_begin0 - .quad Lset11992 -.set Lset11993, Ltmp5448-Lfunc_begin0 - .quad Lset11993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11994, Ltmp5472-Lfunc_begin0 - .quad Lset11994 -.set Lset11995, Ltmp5473-Lfunc_begin0 - .quad Lset11995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11996, Ltmp5498-Lfunc_begin0 - .quad Lset11996 -.set Lset11997, Ltmp5499-Lfunc_begin0 - .quad Lset11997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset11998, Ltmp5523-Lfunc_begin0 - .quad Lset11998 -.set Lset11999, Ltmp5524-Lfunc_begin0 - .quad Lset11999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12000, Ltmp5548-Lfunc_begin0 - .quad Lset12000 -.set Lset12001, Ltmp5549-Lfunc_begin0 - .quad Lset12001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12002, Ltmp5573-Lfunc_begin0 - .quad Lset12002 -.set Lset12003, Ltmp5574-Lfunc_begin0 - .quad Lset12003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12004, Ltmp5598-Lfunc_begin0 - .quad Lset12004 -.set Lset12005, Ltmp5599-Lfunc_begin0 - .quad Lset12005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12006, Ltmp5631-Lfunc_begin0 - .quad Lset12006 -.set Lset12007, Ltmp5632-Lfunc_begin0 - .quad Lset12007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12008, Ltmp5662-Lfunc_begin0 - .quad Lset12008 -.set Lset12009, Ltmp5663-Lfunc_begin0 - .quad Lset12009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12010, Ltmp5687-Lfunc_begin0 - .quad Lset12010 -.set Lset12011, Ltmp5688-Lfunc_begin0 - .quad Lset12011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12012, Ltmp5712-Lfunc_begin0 - .quad Lset12012 -.set Lset12013, Ltmp5713-Lfunc_begin0 - .quad Lset12013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12014, Ltmp5737-Lfunc_begin0 - .quad Lset12014 -.set Lset12015, Ltmp5738-Lfunc_begin0 - .quad Lset12015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12016, Ltmp5767-Lfunc_begin0 - .quad Lset12016 -.set Lset12017, Ltmp5768-Lfunc_begin0 - .quad Lset12017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12018, Ltmp5795-Lfunc_begin0 - .quad Lset12018 -.set Lset12019, Ltmp5796-Lfunc_begin0 - .quad Lset12019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12020, Ltmp5814-Lfunc_begin0 - .quad Lset12020 -.set Lset12021, Ltmp5815-Lfunc_begin0 - .quad Lset12021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12022, Ltmp5833-Lfunc_begin0 - .quad Lset12022 -.set Lset12023, Ltmp5834-Lfunc_begin0 - .quad Lset12023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12024, Ltmp5852-Lfunc_begin0 - .quad Lset12024 -.set Lset12025, Ltmp5853-Lfunc_begin0 - .quad Lset12025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12026, Ltmp5871-Lfunc_begin0 - .quad Lset12026 -.set Lset12027, Ltmp5872-Lfunc_begin0 - .quad Lset12027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12028, Ltmp5890-Lfunc_begin0 - .quad Lset12028 -.set Lset12029, Ltmp5891-Lfunc_begin0 - .quad Lset12029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12030, Ltmp5920-Lfunc_begin0 - .quad Lset12030 -.set Lset12031, Ltmp5921-Lfunc_begin0 - .quad Lset12031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc225: -.set Lset12032, Ltmp1186-Lfunc_begin0 - .quad Lset12032 -.set Lset12033, Ltmp1187-Lfunc_begin0 - .quad Lset12033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12034, Ltmp1215-Lfunc_begin0 - .quad Lset12034 -.set Lset12035, Ltmp1216-Lfunc_begin0 - .quad Lset12035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12036, Ltmp1237-Lfunc_begin0 - .quad Lset12036 -.set Lset12037, Ltmp1238-Lfunc_begin0 - .quad Lset12037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12038, Ltmp1260-Lfunc_begin0 - .quad Lset12038 -.set Lset12039, Ltmp1261-Lfunc_begin0 - .quad Lset12039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12040, Ltmp1281-Lfunc_begin0 - .quad Lset12040 -.set Lset12041, Ltmp1282-Lfunc_begin0 - .quad Lset12041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12042, Ltmp1314-Lfunc_begin0 - .quad Lset12042 -.set Lset12043, Ltmp1315-Lfunc_begin0 - .quad Lset12043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12044, Ltmp1338-Lfunc_begin0 - .quad Lset12044 -.set Lset12045, Ltmp1339-Lfunc_begin0 - .quad Lset12045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12046, Ltmp1345-Lfunc_begin0 - .quad Lset12046 -.set Lset12047, Ltmp1355-Lfunc_begin0 - .quad Lset12047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12048, Ltmp1368-Lfunc_begin0 - .quad Lset12048 -.set Lset12049, Ltmp1369-Lfunc_begin0 - .quad Lset12049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12050, Ltmp1462-Lfunc_begin0 - .quad Lset12050 -.set Lset12051, Ltmp1464-Lfunc_begin0 - .quad Lset12051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12052, Ltmp1557-Lfunc_begin0 - .quad Lset12052 -.set Lset12053, Ltmp1559-Lfunc_begin0 - .quad Lset12053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12054, Ltmp1713-Lfunc_begin0 - .quad Lset12054 -.set Lset12055, Ltmp1715-Lfunc_begin0 - .quad Lset12055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12056, Ltmp1864-Lfunc_begin0 - .quad Lset12056 -.set Lset12057, Ltmp1866-Lfunc_begin0 - .quad Lset12057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12058, Ltmp2004-Lfunc_begin0 - .quad Lset12058 -.set Lset12059, Ltmp2006-Lfunc_begin0 - .quad Lset12059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12060, Ltmp2074-Lfunc_begin0 - .quad Lset12060 -.set Lset12061, Ltmp2076-Lfunc_begin0 - .quad Lset12061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12062, Ltmp2120-Lfunc_begin0 - .quad Lset12062 -.set Lset12063, Ltmp2121-Lfunc_begin0 - .quad Lset12063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12064, Ltmp2193-Lfunc_begin0 - .quad Lset12064 -.set Lset12065, Ltmp2195-Lfunc_begin0 - .quad Lset12065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12066, Ltmp2253-Lfunc_begin0 - .quad Lset12066 -.set Lset12067, Ltmp2255-Lfunc_begin0 - .quad Lset12067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12068, Ltmp2302-Lfunc_begin0 - .quad Lset12068 -.set Lset12069, Ltmp2304-Lfunc_begin0 - .quad Lset12069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12070, Ltmp2351-Lfunc_begin0 - .quad Lset12070 -.set Lset12071, Ltmp2353-Lfunc_begin0 - .quad Lset12071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12072, Ltmp2400-Lfunc_begin0 - .quad Lset12072 -.set Lset12073, Ltmp2402-Lfunc_begin0 - .quad Lset12073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12074, Ltmp2444-Lfunc_begin0 - .quad Lset12074 -.set Lset12075, Ltmp2446-Lfunc_begin0 - .quad Lset12075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12076, Ltmp2499-Lfunc_begin0 - .quad Lset12076 -.set Lset12077, Ltmp2501-Lfunc_begin0 - .quad Lset12077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12078, Ltmp2554-Lfunc_begin0 - .quad Lset12078 -.set Lset12079, Ltmp2556-Lfunc_begin0 - .quad Lset12079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12080, Ltmp2609-Lfunc_begin0 - .quad Lset12080 -.set Lset12081, Ltmp2611-Lfunc_begin0 - .quad Lset12081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12082, Ltmp2673-Lfunc_begin0 - .quad Lset12082 -.set Lset12083, Ltmp2675-Lfunc_begin0 - .quad Lset12083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12084, Ltmp2738-Lfunc_begin0 - .quad Lset12084 -.set Lset12085, Ltmp2740-Lfunc_begin0 - .quad Lset12085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12086, Ltmp2811-Lfunc_begin0 - .quad Lset12086 -.set Lset12087, Ltmp2813-Lfunc_begin0 - .quad Lset12087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12088, Ltmp2871-Lfunc_begin0 - .quad Lset12088 -.set Lset12089, Ltmp2873-Lfunc_begin0 - .quad Lset12089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12090, Ltmp2922-Lfunc_begin0 - .quad Lset12090 -.set Lset12091, Ltmp2924-Lfunc_begin0 - .quad Lset12091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12092, Ltmp2957-Lfunc_begin0 - .quad Lset12092 -.set Lset12093, Ltmp2958-Lfunc_begin0 - .quad Lset12093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12094, Ltmp2997-Lfunc_begin0 - .quad Lset12094 -.set Lset12095, Ltmp2999-Lfunc_begin0 - .quad Lset12095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12096, Ltmp3024-Lfunc_begin0 - .quad Lset12096 -.set Lset12097, Ltmp3025-Lfunc_begin0 - .quad Lset12097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12098, Ltmp3047-Lfunc_begin0 - .quad Lset12098 -.set Lset12099, Ltmp3048-Lfunc_begin0 - .quad Lset12099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12100, Ltmp3096-Lfunc_begin0 - .quad Lset12100 -.set Lset12101, Ltmp3097-Lfunc_begin0 - .quad Lset12101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12102, Ltmp3120-Lfunc_begin0 - .quad Lset12102 -.set Lset12103, Ltmp3122-Lfunc_begin0 - .quad Lset12103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12104, Ltmp3161-Lfunc_begin0 - .quad Lset12104 -.set Lset12105, Ltmp3163-Lfunc_begin0 - .quad Lset12105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12106, Ltmp3227-Lfunc_begin0 - .quad Lset12106 -.set Lset12107, Ltmp3228-Lfunc_begin0 - .quad Lset12107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12108, Ltmp3292-Lfunc_begin0 - .quad Lset12108 -.set Lset12109, Ltmp3293-Lfunc_begin0 - .quad Lset12109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12110, Ltmp3329-Lfunc_begin0 - .quad Lset12110 -.set Lset12111, Ltmp3330-Lfunc_begin0 - .quad Lset12111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12112, Ltmp3375-Lfunc_begin0 - .quad Lset12112 -.set Lset12113, Ltmp3376-Lfunc_begin0 - .quad Lset12113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12114, Ltmp3407-Lfunc_begin0 - .quad Lset12114 -.set Lset12115, Ltmp3408-Lfunc_begin0 - .quad Lset12115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12116, Ltmp3435-Lfunc_begin0 - .quad Lset12116 -.set Lset12117, Ltmp3436-Lfunc_begin0 - .quad Lset12117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12118, Ltmp3537-Lfunc_begin0 - .quad Lset12118 -.set Lset12119, Ltmp3538-Lfunc_begin0 - .quad Lset12119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12120, Ltmp3638-Lfunc_begin0 - .quad Lset12120 -.set Lset12121, Ltmp3640-Lfunc_begin0 - .quad Lset12121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12122, Ltmp3685-Lfunc_begin0 - .quad Lset12122 -.set Lset12123, Ltmp3686-Lfunc_begin0 - .quad Lset12123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12124, Ltmp3807-Lfunc_begin0 - .quad Lset12124 -.set Lset12125, Ltmp3809-Lfunc_begin0 - .quad Lset12125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12126, Ltmp3864-Lfunc_begin0 - .quad Lset12126 -.set Lset12127, Ltmp3865-Lfunc_begin0 - .quad Lset12127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12128, Ltmp3933-Lfunc_begin0 - .quad Lset12128 -.set Lset12129, Ltmp3934-Lfunc_begin0 - .quad Lset12129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12130, Ltmp3959-Lfunc_begin0 - .quad Lset12130 -.set Lset12131, Ltmp3960-Lfunc_begin0 - .quad Lset12131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12132, Ltmp3985-Lfunc_begin0 - .quad Lset12132 -.set Lset12133, Ltmp3986-Lfunc_begin0 - .quad Lset12133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12134, Ltmp4011-Lfunc_begin0 - .quad Lset12134 -.set Lset12135, Ltmp4012-Lfunc_begin0 - .quad Lset12135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12136, Ltmp4046-Lfunc_begin0 - .quad Lset12136 -.set Lset12137, Ltmp4047-Lfunc_begin0 - .quad Lset12137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12138, Ltmp4084-Lfunc_begin0 - .quad Lset12138 -.set Lset12139, Ltmp4085-Lfunc_begin0 - .quad Lset12139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12140, Ltmp4106-Lfunc_begin0 - .quad Lset12140 -.set Lset12141, Ltmp4107-Lfunc_begin0 - .quad Lset12141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12142, Ltmp4146-Lfunc_begin0 - .quad Lset12142 -.set Lset12143, Ltmp4147-Lfunc_begin0 - .quad Lset12143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12144, Ltmp4187-Lfunc_begin0 - .quad Lset12144 -.set Lset12145, Ltmp4188-Lfunc_begin0 - .quad Lset12145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12146, Ltmp4227-Lfunc_begin0 - .quad Lset12146 -.set Lset12147, Ltmp4228-Lfunc_begin0 - .quad Lset12147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12148, Ltmp4268-Lfunc_begin0 - .quad Lset12148 -.set Lset12149, Ltmp4269-Lfunc_begin0 - .quad Lset12149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12150, Ltmp4308-Lfunc_begin0 - .quad Lset12150 -.set Lset12151, Ltmp4309-Lfunc_begin0 - .quad Lset12151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12152, Ltmp4349-Lfunc_begin0 - .quad Lset12152 -.set Lset12153, Ltmp4350-Lfunc_begin0 - .quad Lset12153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12154, Ltmp4380-Lfunc_begin0 - .quad Lset12154 -.set Lset12155, Ltmp4381-Lfunc_begin0 - .quad Lset12155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12156, Ltmp4412-Lfunc_begin0 - .quad Lset12156 -.set Lset12157, Ltmp4414-Lfunc_begin0 - .quad Lset12157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12158, Ltmp4454-Lfunc_begin0 - .quad Lset12158 -.set Lset12159, Ltmp4455-Lfunc_begin0 - .quad Lset12159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12160, Ltmp4495-Lfunc_begin0 - .quad Lset12160 -.set Lset12161, Ltmp4496-Lfunc_begin0 - .quad Lset12161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12162, Ltmp4579-Lfunc_begin0 - .quad Lset12162 -.set Lset12163, Ltmp4581-Lfunc_begin0 - .quad Lset12163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12164, Ltmp4649-Lfunc_begin0 - .quad Lset12164 -.set Lset12165, Ltmp4651-Lfunc_begin0 - .quad Lset12165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12166, Ltmp4717-Lfunc_begin0 - .quad Lset12166 -.set Lset12167, Ltmp4719-Lfunc_begin0 - .quad Lset12167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12168, Ltmp4783-Lfunc_begin0 - .quad Lset12168 -.set Lset12169, Ltmp4784-Lfunc_begin0 - .quad Lset12169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12170, Ltmp4813-Lfunc_begin0 - .quad Lset12170 -.set Lset12171, Ltmp4814-Lfunc_begin0 - .quad Lset12171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12172, Ltmp4843-Lfunc_begin0 - .quad Lset12172 -.set Lset12173, Ltmp4844-Lfunc_begin0 - .quad Lset12173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12174, Ltmp4902-Lfunc_begin0 - .quad Lset12174 -.set Lset12175, Ltmp4903-Lfunc_begin0 - .quad Lset12175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12176, Ltmp4943-Lfunc_begin0 - .quad Lset12176 -.set Lset12177, Ltmp4944-Lfunc_begin0 - .quad Lset12177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12178, Ltmp5000-Lfunc_begin0 - .quad Lset12178 -.set Lset12179, Ltmp5001-Lfunc_begin0 - .quad Lset12179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12180, Ltmp5040-Lfunc_begin0 - .quad Lset12180 -.set Lset12181, Ltmp5041-Lfunc_begin0 - .quad Lset12181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12182, Ltmp5078-Lfunc_begin0 - .quad Lset12182 -.set Lset12183, Ltmp5079-Lfunc_begin0 - .quad Lset12183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12184, Ltmp5114-Lfunc_begin0 - .quad Lset12184 -.set Lset12185, Ltmp5115-Lfunc_begin0 - .quad Lset12185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12186, Ltmp5146-Lfunc_begin0 - .quad Lset12186 -.set Lset12187, Ltmp5147-Lfunc_begin0 - .quad Lset12187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12188, Ltmp5178-Lfunc_begin0 - .quad Lset12188 -.set Lset12189, Ltmp5179-Lfunc_begin0 - .quad Lset12189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12190, Ltmp5210-Lfunc_begin0 - .quad Lset12190 -.set Lset12191, Ltmp5211-Lfunc_begin0 - .quad Lset12191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12192, Ltmp5228-Lfunc_begin0 - .quad Lset12192 -.set Lset12193, Ltmp5229-Lfunc_begin0 - .quad Lset12193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12194, Ltmp5246-Lfunc_begin0 - .quad Lset12194 -.set Lset12195, Ltmp5247-Lfunc_begin0 - .quad Lset12195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12196, Ltmp5271-Lfunc_begin0 - .quad Lset12196 -.set Lset12197, Ltmp5272-Lfunc_begin0 - .quad Lset12197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12198, Ltmp5296-Lfunc_begin0 - .quad Lset12198 -.set Lset12199, Ltmp5297-Lfunc_begin0 - .quad Lset12199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12200, Ltmp5322-Lfunc_begin0 - .quad Lset12200 -.set Lset12201, Ltmp5323-Lfunc_begin0 - .quad Lset12201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12202, Ltmp5347-Lfunc_begin0 - .quad Lset12202 -.set Lset12203, Ltmp5348-Lfunc_begin0 - .quad Lset12203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12204, Ltmp5372-Lfunc_begin0 - .quad Lset12204 -.set Lset12205, Ltmp5373-Lfunc_begin0 - .quad Lset12205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12206, Ltmp5397-Lfunc_begin0 - .quad Lset12206 -.set Lset12207, Ltmp5398-Lfunc_begin0 - .quad Lset12207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12208, Ltmp5422-Lfunc_begin0 - .quad Lset12208 -.set Lset12209, Ltmp5423-Lfunc_begin0 - .quad Lset12209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12210, Ltmp5447-Lfunc_begin0 - .quad Lset12210 -.set Lset12211, Ltmp5448-Lfunc_begin0 - .quad Lset12211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12212, Ltmp5472-Lfunc_begin0 - .quad Lset12212 -.set Lset12213, Ltmp5473-Lfunc_begin0 - .quad Lset12213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12214, Ltmp5498-Lfunc_begin0 - .quad Lset12214 -.set Lset12215, Ltmp5499-Lfunc_begin0 - .quad Lset12215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12216, Ltmp5523-Lfunc_begin0 - .quad Lset12216 -.set Lset12217, Ltmp5524-Lfunc_begin0 - .quad Lset12217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12218, Ltmp5548-Lfunc_begin0 - .quad Lset12218 -.set Lset12219, Ltmp5549-Lfunc_begin0 - .quad Lset12219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12220, Ltmp5573-Lfunc_begin0 - .quad Lset12220 -.set Lset12221, Ltmp5574-Lfunc_begin0 - .quad Lset12221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12222, Ltmp5598-Lfunc_begin0 - .quad Lset12222 -.set Lset12223, Ltmp5599-Lfunc_begin0 - .quad Lset12223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12224, Ltmp5631-Lfunc_begin0 - .quad Lset12224 -.set Lset12225, Ltmp5632-Lfunc_begin0 - .quad Lset12225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12226, Ltmp5662-Lfunc_begin0 - .quad Lset12226 -.set Lset12227, Ltmp5663-Lfunc_begin0 - .quad Lset12227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12228, Ltmp5687-Lfunc_begin0 - .quad Lset12228 -.set Lset12229, Ltmp5688-Lfunc_begin0 - .quad Lset12229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12230, Ltmp5712-Lfunc_begin0 - .quad Lset12230 -.set Lset12231, Ltmp5713-Lfunc_begin0 - .quad Lset12231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12232, Ltmp5737-Lfunc_begin0 - .quad Lset12232 -.set Lset12233, Ltmp5738-Lfunc_begin0 - .quad Lset12233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12234, Ltmp5767-Lfunc_begin0 - .quad Lset12234 -.set Lset12235, Ltmp5768-Lfunc_begin0 - .quad Lset12235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12236, Ltmp5795-Lfunc_begin0 - .quad Lset12236 -.set Lset12237, Ltmp5796-Lfunc_begin0 - .quad Lset12237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12238, Ltmp5814-Lfunc_begin0 - .quad Lset12238 -.set Lset12239, Ltmp5815-Lfunc_begin0 - .quad Lset12239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12240, Ltmp5833-Lfunc_begin0 - .quad Lset12240 -.set Lset12241, Ltmp5834-Lfunc_begin0 - .quad Lset12241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12242, Ltmp5852-Lfunc_begin0 - .quad Lset12242 -.set Lset12243, Ltmp5853-Lfunc_begin0 - .quad Lset12243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12244, Ltmp5871-Lfunc_begin0 - .quad Lset12244 -.set Lset12245, Ltmp5872-Lfunc_begin0 - .quad Lset12245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12246, Ltmp5890-Lfunc_begin0 - .quad Lset12246 -.set Lset12247, Ltmp5891-Lfunc_begin0 - .quad Lset12247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12248, Ltmp5920-Lfunc_begin0 - .quad Lset12248 -.set Lset12249, Ltmp5921-Lfunc_begin0 - .quad Lset12249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12250, Ltmp6166-Lfunc_begin0 - .quad Lset12250 -.set Lset12251, Ltmp6168-Lfunc_begin0 - .quad Lset12251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc226: -.set Lset12252, Ltmp1186-Lfunc_begin0 - .quad Lset12252 -.set Lset12253, Ltmp1187-Lfunc_begin0 - .quad Lset12253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12254, Ltmp1215-Lfunc_begin0 - .quad Lset12254 -.set Lset12255, Ltmp1216-Lfunc_begin0 - .quad Lset12255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12256, Ltmp1237-Lfunc_begin0 - .quad Lset12256 -.set Lset12257, Ltmp1238-Lfunc_begin0 - .quad Lset12257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12258, Ltmp1260-Lfunc_begin0 - .quad Lset12258 -.set Lset12259, Ltmp1261-Lfunc_begin0 - .quad Lset12259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12260, Ltmp1281-Lfunc_begin0 - .quad Lset12260 -.set Lset12261, Ltmp1282-Lfunc_begin0 - .quad Lset12261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12262, Ltmp1314-Lfunc_begin0 - .quad Lset12262 -.set Lset12263, Ltmp1315-Lfunc_begin0 - .quad Lset12263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12264, Ltmp1321-Lfunc_begin0 - .quad Lset12264 -.set Lset12265, Ltmp1330-Lfunc_begin0 - .quad Lset12265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12266, Ltmp1338-Lfunc_begin0 - .quad Lset12266 -.set Lset12267, Ltmp1339-Lfunc_begin0 - .quad Lset12267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12268, Ltmp1368-Lfunc_begin0 - .quad Lset12268 -.set Lset12269, Ltmp1369-Lfunc_begin0 - .quad Lset12269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12270, Ltmp1462-Lfunc_begin0 - .quad Lset12270 -.set Lset12271, Ltmp1464-Lfunc_begin0 - .quad Lset12271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12272, Ltmp1557-Lfunc_begin0 - .quad Lset12272 -.set Lset12273, Ltmp1559-Lfunc_begin0 - .quad Lset12273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12274, Ltmp1713-Lfunc_begin0 - .quad Lset12274 -.set Lset12275, Ltmp1715-Lfunc_begin0 - .quad Lset12275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12276, Ltmp1864-Lfunc_begin0 - .quad Lset12276 -.set Lset12277, Ltmp1866-Lfunc_begin0 - .quad Lset12277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12278, Ltmp2004-Lfunc_begin0 - .quad Lset12278 -.set Lset12279, Ltmp2006-Lfunc_begin0 - .quad Lset12279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12280, Ltmp2074-Lfunc_begin0 - .quad Lset12280 -.set Lset12281, Ltmp2076-Lfunc_begin0 - .quad Lset12281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12282, Ltmp2120-Lfunc_begin0 - .quad Lset12282 -.set Lset12283, Ltmp2121-Lfunc_begin0 - .quad Lset12283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12284, Ltmp2193-Lfunc_begin0 - .quad Lset12284 -.set Lset12285, Ltmp2195-Lfunc_begin0 - .quad Lset12285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12286, Ltmp2253-Lfunc_begin0 - .quad Lset12286 -.set Lset12287, Ltmp2255-Lfunc_begin0 - .quad Lset12287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12288, Ltmp2302-Lfunc_begin0 - .quad Lset12288 -.set Lset12289, Ltmp2304-Lfunc_begin0 - .quad Lset12289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12290, Ltmp2351-Lfunc_begin0 - .quad Lset12290 -.set Lset12291, Ltmp2353-Lfunc_begin0 - .quad Lset12291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12292, Ltmp2400-Lfunc_begin0 - .quad Lset12292 -.set Lset12293, Ltmp2402-Lfunc_begin0 - .quad Lset12293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12294, Ltmp2444-Lfunc_begin0 - .quad Lset12294 -.set Lset12295, Ltmp2446-Lfunc_begin0 - .quad Lset12295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12296, Ltmp2499-Lfunc_begin0 - .quad Lset12296 -.set Lset12297, Ltmp2501-Lfunc_begin0 - .quad Lset12297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12298, Ltmp2554-Lfunc_begin0 - .quad Lset12298 -.set Lset12299, Ltmp2556-Lfunc_begin0 - .quad Lset12299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12300, Ltmp2609-Lfunc_begin0 - .quad Lset12300 -.set Lset12301, Ltmp2611-Lfunc_begin0 - .quad Lset12301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12302, Ltmp2673-Lfunc_begin0 - .quad Lset12302 -.set Lset12303, Ltmp2675-Lfunc_begin0 - .quad Lset12303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12304, Ltmp2738-Lfunc_begin0 - .quad Lset12304 -.set Lset12305, Ltmp2740-Lfunc_begin0 - .quad Lset12305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12306, Ltmp2811-Lfunc_begin0 - .quad Lset12306 -.set Lset12307, Ltmp2813-Lfunc_begin0 - .quad Lset12307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12308, Ltmp2871-Lfunc_begin0 - .quad Lset12308 -.set Lset12309, Ltmp2873-Lfunc_begin0 - .quad Lset12309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12310, Ltmp2922-Lfunc_begin0 - .quad Lset12310 -.set Lset12311, Ltmp2924-Lfunc_begin0 - .quad Lset12311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12312, Ltmp2957-Lfunc_begin0 - .quad Lset12312 -.set Lset12313, Ltmp2958-Lfunc_begin0 - .quad Lset12313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12314, Ltmp2997-Lfunc_begin0 - .quad Lset12314 -.set Lset12315, Ltmp2999-Lfunc_begin0 - .quad Lset12315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12316, Ltmp3024-Lfunc_begin0 - .quad Lset12316 -.set Lset12317, Ltmp3025-Lfunc_begin0 - .quad Lset12317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12318, Ltmp3047-Lfunc_begin0 - .quad Lset12318 -.set Lset12319, Ltmp3048-Lfunc_begin0 - .quad Lset12319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12320, Ltmp3096-Lfunc_begin0 - .quad Lset12320 -.set Lset12321, Ltmp3097-Lfunc_begin0 - .quad Lset12321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12322, Ltmp3120-Lfunc_begin0 - .quad Lset12322 -.set Lset12323, Ltmp3122-Lfunc_begin0 - .quad Lset12323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12324, Ltmp3161-Lfunc_begin0 - .quad Lset12324 -.set Lset12325, Ltmp3163-Lfunc_begin0 - .quad Lset12325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12326, Ltmp3227-Lfunc_begin0 - .quad Lset12326 -.set Lset12327, Ltmp3228-Lfunc_begin0 - .quad Lset12327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12328, Ltmp3292-Lfunc_begin0 - .quad Lset12328 -.set Lset12329, Ltmp3293-Lfunc_begin0 - .quad Lset12329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12330, Ltmp3329-Lfunc_begin0 - .quad Lset12330 -.set Lset12331, Ltmp3330-Lfunc_begin0 - .quad Lset12331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12332, Ltmp3375-Lfunc_begin0 - .quad Lset12332 -.set Lset12333, Ltmp3376-Lfunc_begin0 - .quad Lset12333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12334, Ltmp3407-Lfunc_begin0 - .quad Lset12334 -.set Lset12335, Ltmp3408-Lfunc_begin0 - .quad Lset12335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12336, Ltmp3435-Lfunc_begin0 - .quad Lset12336 -.set Lset12337, Ltmp3436-Lfunc_begin0 - .quad Lset12337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12338, Ltmp3537-Lfunc_begin0 - .quad Lset12338 -.set Lset12339, Ltmp3538-Lfunc_begin0 - .quad Lset12339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12340, Ltmp3638-Lfunc_begin0 - .quad Lset12340 -.set Lset12341, Ltmp3640-Lfunc_begin0 - .quad Lset12341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12342, Ltmp3685-Lfunc_begin0 - .quad Lset12342 -.set Lset12343, Ltmp3686-Lfunc_begin0 - .quad Lset12343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12344, Ltmp3807-Lfunc_begin0 - .quad Lset12344 -.set Lset12345, Ltmp3809-Lfunc_begin0 - .quad Lset12345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12346, Ltmp3864-Lfunc_begin0 - .quad Lset12346 -.set Lset12347, Ltmp3865-Lfunc_begin0 - .quad Lset12347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12348, Ltmp3933-Lfunc_begin0 - .quad Lset12348 -.set Lset12349, Ltmp3934-Lfunc_begin0 - .quad Lset12349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12350, Ltmp3959-Lfunc_begin0 - .quad Lset12350 -.set Lset12351, Ltmp3960-Lfunc_begin0 - .quad Lset12351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12352, Ltmp3985-Lfunc_begin0 - .quad Lset12352 -.set Lset12353, Ltmp3986-Lfunc_begin0 - .quad Lset12353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12354, Ltmp4011-Lfunc_begin0 - .quad Lset12354 -.set Lset12355, Ltmp4012-Lfunc_begin0 - .quad Lset12355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12356, Ltmp4046-Lfunc_begin0 - .quad Lset12356 -.set Lset12357, Ltmp4047-Lfunc_begin0 - .quad Lset12357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12358, Ltmp4084-Lfunc_begin0 - .quad Lset12358 -.set Lset12359, Ltmp4085-Lfunc_begin0 - .quad Lset12359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12360, Ltmp4106-Lfunc_begin0 - .quad Lset12360 -.set Lset12361, Ltmp4107-Lfunc_begin0 - .quad Lset12361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12362, Ltmp4146-Lfunc_begin0 - .quad Lset12362 -.set Lset12363, Ltmp4147-Lfunc_begin0 - .quad Lset12363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12364, Ltmp4187-Lfunc_begin0 - .quad Lset12364 -.set Lset12365, Ltmp4188-Lfunc_begin0 - .quad Lset12365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12366, Ltmp4227-Lfunc_begin0 - .quad Lset12366 -.set Lset12367, Ltmp4228-Lfunc_begin0 - .quad Lset12367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12368, Ltmp4268-Lfunc_begin0 - .quad Lset12368 -.set Lset12369, Ltmp4269-Lfunc_begin0 - .quad Lset12369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12370, Ltmp4308-Lfunc_begin0 - .quad Lset12370 -.set Lset12371, Ltmp4309-Lfunc_begin0 - .quad Lset12371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12372, Ltmp4349-Lfunc_begin0 - .quad Lset12372 -.set Lset12373, Ltmp4350-Lfunc_begin0 - .quad Lset12373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12374, Ltmp4380-Lfunc_begin0 - .quad Lset12374 -.set Lset12375, Ltmp4381-Lfunc_begin0 - .quad Lset12375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12376, Ltmp4412-Lfunc_begin0 - .quad Lset12376 -.set Lset12377, Ltmp4414-Lfunc_begin0 - .quad Lset12377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12378, Ltmp4454-Lfunc_begin0 - .quad Lset12378 -.set Lset12379, Ltmp4455-Lfunc_begin0 - .quad Lset12379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12380, Ltmp4495-Lfunc_begin0 - .quad Lset12380 -.set Lset12381, Ltmp4496-Lfunc_begin0 - .quad Lset12381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12382, Ltmp4579-Lfunc_begin0 - .quad Lset12382 -.set Lset12383, Ltmp4581-Lfunc_begin0 - .quad Lset12383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12384, Ltmp4649-Lfunc_begin0 - .quad Lset12384 -.set Lset12385, Ltmp4651-Lfunc_begin0 - .quad Lset12385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12386, Ltmp4717-Lfunc_begin0 - .quad Lset12386 -.set Lset12387, Ltmp4719-Lfunc_begin0 - .quad Lset12387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12388, Ltmp4783-Lfunc_begin0 - .quad Lset12388 -.set Lset12389, Ltmp4784-Lfunc_begin0 - .quad Lset12389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12390, Ltmp4813-Lfunc_begin0 - .quad Lset12390 -.set Lset12391, Ltmp4814-Lfunc_begin0 - .quad Lset12391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12392, Ltmp4843-Lfunc_begin0 - .quad Lset12392 -.set Lset12393, Ltmp4844-Lfunc_begin0 - .quad Lset12393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12394, Ltmp4902-Lfunc_begin0 - .quad Lset12394 -.set Lset12395, Ltmp4903-Lfunc_begin0 - .quad Lset12395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12396, Ltmp4943-Lfunc_begin0 - .quad Lset12396 -.set Lset12397, Ltmp4944-Lfunc_begin0 - .quad Lset12397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12398, Ltmp5000-Lfunc_begin0 - .quad Lset12398 -.set Lset12399, Ltmp5001-Lfunc_begin0 - .quad Lset12399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12400, Ltmp5040-Lfunc_begin0 - .quad Lset12400 -.set Lset12401, Ltmp5041-Lfunc_begin0 - .quad Lset12401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12402, Ltmp5078-Lfunc_begin0 - .quad Lset12402 -.set Lset12403, Ltmp5079-Lfunc_begin0 - .quad Lset12403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12404, Ltmp5114-Lfunc_begin0 - .quad Lset12404 -.set Lset12405, Ltmp5115-Lfunc_begin0 - .quad Lset12405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12406, Ltmp5146-Lfunc_begin0 - .quad Lset12406 -.set Lset12407, Ltmp5147-Lfunc_begin0 - .quad Lset12407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12408, Ltmp5178-Lfunc_begin0 - .quad Lset12408 -.set Lset12409, Ltmp5179-Lfunc_begin0 - .quad Lset12409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12410, Ltmp5210-Lfunc_begin0 - .quad Lset12410 -.set Lset12411, Ltmp5211-Lfunc_begin0 - .quad Lset12411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12412, Ltmp5228-Lfunc_begin0 - .quad Lset12412 -.set Lset12413, Ltmp5229-Lfunc_begin0 - .quad Lset12413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12414, Ltmp5246-Lfunc_begin0 - .quad Lset12414 -.set Lset12415, Ltmp5247-Lfunc_begin0 - .quad Lset12415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12416, Ltmp5271-Lfunc_begin0 - .quad Lset12416 -.set Lset12417, Ltmp5272-Lfunc_begin0 - .quad Lset12417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12418, Ltmp5296-Lfunc_begin0 - .quad Lset12418 -.set Lset12419, Ltmp5297-Lfunc_begin0 - .quad Lset12419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12420, Ltmp5322-Lfunc_begin0 - .quad Lset12420 -.set Lset12421, Ltmp5323-Lfunc_begin0 - .quad Lset12421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12422, Ltmp5347-Lfunc_begin0 - .quad Lset12422 -.set Lset12423, Ltmp5348-Lfunc_begin0 - .quad Lset12423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12424, Ltmp5372-Lfunc_begin0 - .quad Lset12424 -.set Lset12425, Ltmp5373-Lfunc_begin0 - .quad Lset12425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12426, Ltmp5397-Lfunc_begin0 - .quad Lset12426 -.set Lset12427, Ltmp5398-Lfunc_begin0 - .quad Lset12427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12428, Ltmp5422-Lfunc_begin0 - .quad Lset12428 -.set Lset12429, Ltmp5423-Lfunc_begin0 - .quad Lset12429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12430, Ltmp5447-Lfunc_begin0 - .quad Lset12430 -.set Lset12431, Ltmp5448-Lfunc_begin0 - .quad Lset12431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12432, Ltmp5472-Lfunc_begin0 - .quad Lset12432 -.set Lset12433, Ltmp5473-Lfunc_begin0 - .quad Lset12433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12434, Ltmp5498-Lfunc_begin0 - .quad Lset12434 -.set Lset12435, Ltmp5499-Lfunc_begin0 - .quad Lset12435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12436, Ltmp5523-Lfunc_begin0 - .quad Lset12436 -.set Lset12437, Ltmp5524-Lfunc_begin0 - .quad Lset12437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12438, Ltmp5548-Lfunc_begin0 - .quad Lset12438 -.set Lset12439, Ltmp5549-Lfunc_begin0 - .quad Lset12439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12440, Ltmp5573-Lfunc_begin0 - .quad Lset12440 -.set Lset12441, Ltmp5574-Lfunc_begin0 - .quad Lset12441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12442, Ltmp5598-Lfunc_begin0 - .quad Lset12442 -.set Lset12443, Ltmp5599-Lfunc_begin0 - .quad Lset12443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12444, Ltmp5631-Lfunc_begin0 - .quad Lset12444 -.set Lset12445, Ltmp5632-Lfunc_begin0 - .quad Lset12445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12446, Ltmp5662-Lfunc_begin0 - .quad Lset12446 -.set Lset12447, Ltmp5663-Lfunc_begin0 - .quad Lset12447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12448, Ltmp5687-Lfunc_begin0 - .quad Lset12448 -.set Lset12449, Ltmp5688-Lfunc_begin0 - .quad Lset12449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12450, Ltmp5712-Lfunc_begin0 - .quad Lset12450 -.set Lset12451, Ltmp5713-Lfunc_begin0 - .quad Lset12451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12452, Ltmp5737-Lfunc_begin0 - .quad Lset12452 -.set Lset12453, Ltmp5738-Lfunc_begin0 - .quad Lset12453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12454, Ltmp5767-Lfunc_begin0 - .quad Lset12454 -.set Lset12455, Ltmp5768-Lfunc_begin0 - .quad Lset12455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12456, Ltmp5795-Lfunc_begin0 - .quad Lset12456 -.set Lset12457, Ltmp5796-Lfunc_begin0 - .quad Lset12457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12458, Ltmp5814-Lfunc_begin0 - .quad Lset12458 -.set Lset12459, Ltmp5815-Lfunc_begin0 - .quad Lset12459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12460, Ltmp5833-Lfunc_begin0 - .quad Lset12460 -.set Lset12461, Ltmp5834-Lfunc_begin0 - .quad Lset12461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12462, Ltmp5852-Lfunc_begin0 - .quad Lset12462 -.set Lset12463, Ltmp5853-Lfunc_begin0 - .quad Lset12463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12464, Ltmp5871-Lfunc_begin0 - .quad Lset12464 -.set Lset12465, Ltmp5872-Lfunc_begin0 - .quad Lset12465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12466, Ltmp5890-Lfunc_begin0 - .quad Lset12466 -.set Lset12467, Ltmp5891-Lfunc_begin0 - .quad Lset12467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12468, Ltmp5920-Lfunc_begin0 - .quad Lset12468 -.set Lset12469, Ltmp5921-Lfunc_begin0 - .quad Lset12469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12470, Ltmp6165-Lfunc_begin0 - .quad Lset12470 -.set Lset12471, Ltmp6166-Lfunc_begin0 - .quad Lset12471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc227: -.set Lset12472, Ltmp1186-Lfunc_begin0 - .quad Lset12472 -.set Lset12473, Ltmp1187-Lfunc_begin0 - .quad Lset12473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12474, Ltmp1215-Lfunc_begin0 - .quad Lset12474 -.set Lset12475, Ltmp1216-Lfunc_begin0 - .quad Lset12475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12476, Ltmp1237-Lfunc_begin0 - .quad Lset12476 -.set Lset12477, Ltmp1238-Lfunc_begin0 - .quad Lset12477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12478, Ltmp1260-Lfunc_begin0 - .quad Lset12478 -.set Lset12479, Ltmp1261-Lfunc_begin0 - .quad Lset12479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12480, Ltmp1267-Lfunc_begin0 - .quad Lset12480 -.set Lset12481, Ltmp1273-Lfunc_begin0 - .quad Lset12481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12482, Ltmp1281-Lfunc_begin0 - .quad Lset12482 -.set Lset12483, Ltmp1282-Lfunc_begin0 - .quad Lset12483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12484, Ltmp1314-Lfunc_begin0 - .quad Lset12484 -.set Lset12485, Ltmp1315-Lfunc_begin0 - .quad Lset12485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12486, Ltmp1338-Lfunc_begin0 - .quad Lset12486 -.set Lset12487, Ltmp1339-Lfunc_begin0 - .quad Lset12487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12488, Ltmp1368-Lfunc_begin0 - .quad Lset12488 -.set Lset12489, Ltmp1369-Lfunc_begin0 - .quad Lset12489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12490, Ltmp1462-Lfunc_begin0 - .quad Lset12490 -.set Lset12491, Ltmp1464-Lfunc_begin0 - .quad Lset12491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12492, Ltmp1557-Lfunc_begin0 - .quad Lset12492 -.set Lset12493, Ltmp1559-Lfunc_begin0 - .quad Lset12493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12494, Ltmp1713-Lfunc_begin0 - .quad Lset12494 -.set Lset12495, Ltmp1715-Lfunc_begin0 - .quad Lset12495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12496, Ltmp1864-Lfunc_begin0 - .quad Lset12496 -.set Lset12497, Ltmp1866-Lfunc_begin0 - .quad Lset12497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12498, Ltmp2004-Lfunc_begin0 - .quad Lset12498 -.set Lset12499, Ltmp2006-Lfunc_begin0 - .quad Lset12499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12500, Ltmp2074-Lfunc_begin0 - .quad Lset12500 -.set Lset12501, Ltmp2076-Lfunc_begin0 - .quad Lset12501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12502, Ltmp2120-Lfunc_begin0 - .quad Lset12502 -.set Lset12503, Ltmp2121-Lfunc_begin0 - .quad Lset12503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12504, Ltmp2193-Lfunc_begin0 - .quad Lset12504 -.set Lset12505, Ltmp2195-Lfunc_begin0 - .quad Lset12505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12506, Ltmp2253-Lfunc_begin0 - .quad Lset12506 -.set Lset12507, Ltmp2255-Lfunc_begin0 - .quad Lset12507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12508, Ltmp2302-Lfunc_begin0 - .quad Lset12508 -.set Lset12509, Ltmp2304-Lfunc_begin0 - .quad Lset12509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12510, Ltmp2351-Lfunc_begin0 - .quad Lset12510 -.set Lset12511, Ltmp2353-Lfunc_begin0 - .quad Lset12511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12512, Ltmp2400-Lfunc_begin0 - .quad Lset12512 -.set Lset12513, Ltmp2402-Lfunc_begin0 - .quad Lset12513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12514, Ltmp2444-Lfunc_begin0 - .quad Lset12514 -.set Lset12515, Ltmp2446-Lfunc_begin0 - .quad Lset12515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12516, Ltmp2499-Lfunc_begin0 - .quad Lset12516 -.set Lset12517, Ltmp2501-Lfunc_begin0 - .quad Lset12517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12518, Ltmp2554-Lfunc_begin0 - .quad Lset12518 -.set Lset12519, Ltmp2556-Lfunc_begin0 - .quad Lset12519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12520, Ltmp2609-Lfunc_begin0 - .quad Lset12520 -.set Lset12521, Ltmp2611-Lfunc_begin0 - .quad Lset12521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12522, Ltmp2673-Lfunc_begin0 - .quad Lset12522 -.set Lset12523, Ltmp2675-Lfunc_begin0 - .quad Lset12523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12524, Ltmp2738-Lfunc_begin0 - .quad Lset12524 -.set Lset12525, Ltmp2740-Lfunc_begin0 - .quad Lset12525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12526, Ltmp2811-Lfunc_begin0 - .quad Lset12526 -.set Lset12527, Ltmp2813-Lfunc_begin0 - .quad Lset12527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12528, Ltmp2871-Lfunc_begin0 - .quad Lset12528 -.set Lset12529, Ltmp2873-Lfunc_begin0 - .quad Lset12529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12530, Ltmp2922-Lfunc_begin0 - .quad Lset12530 -.set Lset12531, Ltmp2924-Lfunc_begin0 - .quad Lset12531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12532, Ltmp2957-Lfunc_begin0 - .quad Lset12532 -.set Lset12533, Ltmp2958-Lfunc_begin0 - .quad Lset12533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12534, Ltmp2997-Lfunc_begin0 - .quad Lset12534 -.set Lset12535, Ltmp2999-Lfunc_begin0 - .quad Lset12535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12536, Ltmp3024-Lfunc_begin0 - .quad Lset12536 -.set Lset12537, Ltmp3025-Lfunc_begin0 - .quad Lset12537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12538, Ltmp3047-Lfunc_begin0 - .quad Lset12538 -.set Lset12539, Ltmp3048-Lfunc_begin0 - .quad Lset12539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12540, Ltmp3096-Lfunc_begin0 - .quad Lset12540 -.set Lset12541, Ltmp3097-Lfunc_begin0 - .quad Lset12541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12542, Ltmp3120-Lfunc_begin0 - .quad Lset12542 -.set Lset12543, Ltmp3122-Lfunc_begin0 - .quad Lset12543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12544, Ltmp3161-Lfunc_begin0 - .quad Lset12544 -.set Lset12545, Ltmp3163-Lfunc_begin0 - .quad Lset12545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12546, Ltmp3227-Lfunc_begin0 - .quad Lset12546 -.set Lset12547, Ltmp3228-Lfunc_begin0 - .quad Lset12547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12548, Ltmp3292-Lfunc_begin0 - .quad Lset12548 -.set Lset12549, Ltmp3293-Lfunc_begin0 - .quad Lset12549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12550, Ltmp3329-Lfunc_begin0 - .quad Lset12550 -.set Lset12551, Ltmp3330-Lfunc_begin0 - .quad Lset12551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12552, Ltmp3375-Lfunc_begin0 - .quad Lset12552 -.set Lset12553, Ltmp3376-Lfunc_begin0 - .quad Lset12553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12554, Ltmp3407-Lfunc_begin0 - .quad Lset12554 -.set Lset12555, Ltmp3408-Lfunc_begin0 - .quad Lset12555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12556, Ltmp3435-Lfunc_begin0 - .quad Lset12556 -.set Lset12557, Ltmp3436-Lfunc_begin0 - .quad Lset12557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12558, Ltmp3537-Lfunc_begin0 - .quad Lset12558 -.set Lset12559, Ltmp3538-Lfunc_begin0 - .quad Lset12559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12560, Ltmp3638-Lfunc_begin0 - .quad Lset12560 -.set Lset12561, Ltmp3640-Lfunc_begin0 - .quad Lset12561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12562, Ltmp3685-Lfunc_begin0 - .quad Lset12562 -.set Lset12563, Ltmp3686-Lfunc_begin0 - .quad Lset12563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12564, Ltmp3807-Lfunc_begin0 - .quad Lset12564 -.set Lset12565, Ltmp3809-Lfunc_begin0 - .quad Lset12565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12566, Ltmp3864-Lfunc_begin0 - .quad Lset12566 -.set Lset12567, Ltmp3865-Lfunc_begin0 - .quad Lset12567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12568, Ltmp3933-Lfunc_begin0 - .quad Lset12568 -.set Lset12569, Ltmp3934-Lfunc_begin0 - .quad Lset12569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12570, Ltmp3959-Lfunc_begin0 - .quad Lset12570 -.set Lset12571, Ltmp3960-Lfunc_begin0 - .quad Lset12571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12572, Ltmp3985-Lfunc_begin0 - .quad Lset12572 -.set Lset12573, Ltmp3986-Lfunc_begin0 - .quad Lset12573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12574, Ltmp4011-Lfunc_begin0 - .quad Lset12574 -.set Lset12575, Ltmp4012-Lfunc_begin0 - .quad Lset12575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12576, Ltmp4046-Lfunc_begin0 - .quad Lset12576 -.set Lset12577, Ltmp4047-Lfunc_begin0 - .quad Lset12577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12578, Ltmp4084-Lfunc_begin0 - .quad Lset12578 -.set Lset12579, Ltmp4085-Lfunc_begin0 - .quad Lset12579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12580, Ltmp4106-Lfunc_begin0 - .quad Lset12580 -.set Lset12581, Ltmp4107-Lfunc_begin0 - .quad Lset12581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12582, Ltmp4146-Lfunc_begin0 - .quad Lset12582 -.set Lset12583, Ltmp4147-Lfunc_begin0 - .quad Lset12583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12584, Ltmp4187-Lfunc_begin0 - .quad Lset12584 -.set Lset12585, Ltmp4188-Lfunc_begin0 - .quad Lset12585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12586, Ltmp4227-Lfunc_begin0 - .quad Lset12586 -.set Lset12587, Ltmp4228-Lfunc_begin0 - .quad Lset12587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12588, Ltmp4268-Lfunc_begin0 - .quad Lset12588 -.set Lset12589, Ltmp4269-Lfunc_begin0 - .quad Lset12589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12590, Ltmp4308-Lfunc_begin0 - .quad Lset12590 -.set Lset12591, Ltmp4309-Lfunc_begin0 - .quad Lset12591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12592, Ltmp4349-Lfunc_begin0 - .quad Lset12592 -.set Lset12593, Ltmp4350-Lfunc_begin0 - .quad Lset12593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12594, Ltmp4380-Lfunc_begin0 - .quad Lset12594 -.set Lset12595, Ltmp4381-Lfunc_begin0 - .quad Lset12595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12596, Ltmp4412-Lfunc_begin0 - .quad Lset12596 -.set Lset12597, Ltmp4414-Lfunc_begin0 - .quad Lset12597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12598, Ltmp4454-Lfunc_begin0 - .quad Lset12598 -.set Lset12599, Ltmp4455-Lfunc_begin0 - .quad Lset12599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12600, Ltmp4495-Lfunc_begin0 - .quad Lset12600 -.set Lset12601, Ltmp4496-Lfunc_begin0 - .quad Lset12601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12602, Ltmp4579-Lfunc_begin0 - .quad Lset12602 -.set Lset12603, Ltmp4581-Lfunc_begin0 - .quad Lset12603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12604, Ltmp4649-Lfunc_begin0 - .quad Lset12604 -.set Lset12605, Ltmp4651-Lfunc_begin0 - .quad Lset12605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12606, Ltmp4717-Lfunc_begin0 - .quad Lset12606 -.set Lset12607, Ltmp4719-Lfunc_begin0 - .quad Lset12607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12608, Ltmp4783-Lfunc_begin0 - .quad Lset12608 -.set Lset12609, Ltmp4784-Lfunc_begin0 - .quad Lset12609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12610, Ltmp4813-Lfunc_begin0 - .quad Lset12610 -.set Lset12611, Ltmp4814-Lfunc_begin0 - .quad Lset12611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12612, Ltmp4843-Lfunc_begin0 - .quad Lset12612 -.set Lset12613, Ltmp4844-Lfunc_begin0 - .quad Lset12613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12614, Ltmp4902-Lfunc_begin0 - .quad Lset12614 -.set Lset12615, Ltmp4903-Lfunc_begin0 - .quad Lset12615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12616, Ltmp4943-Lfunc_begin0 - .quad Lset12616 -.set Lset12617, Ltmp4944-Lfunc_begin0 - .quad Lset12617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12618, Ltmp5000-Lfunc_begin0 - .quad Lset12618 -.set Lset12619, Ltmp5001-Lfunc_begin0 - .quad Lset12619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12620, Ltmp5040-Lfunc_begin0 - .quad Lset12620 -.set Lset12621, Ltmp5041-Lfunc_begin0 - .quad Lset12621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12622, Ltmp5078-Lfunc_begin0 - .quad Lset12622 -.set Lset12623, Ltmp5079-Lfunc_begin0 - .quad Lset12623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12624, Ltmp5114-Lfunc_begin0 - .quad Lset12624 -.set Lset12625, Ltmp5115-Lfunc_begin0 - .quad Lset12625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12626, Ltmp5146-Lfunc_begin0 - .quad Lset12626 -.set Lset12627, Ltmp5147-Lfunc_begin0 - .quad Lset12627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12628, Ltmp5178-Lfunc_begin0 - .quad Lset12628 -.set Lset12629, Ltmp5179-Lfunc_begin0 - .quad Lset12629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12630, Ltmp5210-Lfunc_begin0 - .quad Lset12630 -.set Lset12631, Ltmp5211-Lfunc_begin0 - .quad Lset12631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12632, Ltmp5228-Lfunc_begin0 - .quad Lset12632 -.set Lset12633, Ltmp5229-Lfunc_begin0 - .quad Lset12633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12634, Ltmp5246-Lfunc_begin0 - .quad Lset12634 -.set Lset12635, Ltmp5247-Lfunc_begin0 - .quad Lset12635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12636, Ltmp5271-Lfunc_begin0 - .quad Lset12636 -.set Lset12637, Ltmp5272-Lfunc_begin0 - .quad Lset12637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12638, Ltmp5296-Lfunc_begin0 - .quad Lset12638 -.set Lset12639, Ltmp5297-Lfunc_begin0 - .quad Lset12639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12640, Ltmp5322-Lfunc_begin0 - .quad Lset12640 -.set Lset12641, Ltmp5323-Lfunc_begin0 - .quad Lset12641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12642, Ltmp5347-Lfunc_begin0 - .quad Lset12642 -.set Lset12643, Ltmp5348-Lfunc_begin0 - .quad Lset12643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12644, Ltmp5372-Lfunc_begin0 - .quad Lset12644 -.set Lset12645, Ltmp5373-Lfunc_begin0 - .quad Lset12645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12646, Ltmp5397-Lfunc_begin0 - .quad Lset12646 -.set Lset12647, Ltmp5398-Lfunc_begin0 - .quad Lset12647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12648, Ltmp5422-Lfunc_begin0 - .quad Lset12648 -.set Lset12649, Ltmp5423-Lfunc_begin0 - .quad Lset12649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12650, Ltmp5447-Lfunc_begin0 - .quad Lset12650 -.set Lset12651, Ltmp5448-Lfunc_begin0 - .quad Lset12651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12652, Ltmp5472-Lfunc_begin0 - .quad Lset12652 -.set Lset12653, Ltmp5473-Lfunc_begin0 - .quad Lset12653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12654, Ltmp5498-Lfunc_begin0 - .quad Lset12654 -.set Lset12655, Ltmp5499-Lfunc_begin0 - .quad Lset12655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12656, Ltmp5523-Lfunc_begin0 - .quad Lset12656 -.set Lset12657, Ltmp5524-Lfunc_begin0 - .quad Lset12657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12658, Ltmp5548-Lfunc_begin0 - .quad Lset12658 -.set Lset12659, Ltmp5549-Lfunc_begin0 - .quad Lset12659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12660, Ltmp5573-Lfunc_begin0 - .quad Lset12660 -.set Lset12661, Ltmp5574-Lfunc_begin0 - .quad Lset12661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12662, Ltmp5598-Lfunc_begin0 - .quad Lset12662 -.set Lset12663, Ltmp5599-Lfunc_begin0 - .quad Lset12663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12664, Ltmp5631-Lfunc_begin0 - .quad Lset12664 -.set Lset12665, Ltmp5632-Lfunc_begin0 - .quad Lset12665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12666, Ltmp5662-Lfunc_begin0 - .quad Lset12666 -.set Lset12667, Ltmp5663-Lfunc_begin0 - .quad Lset12667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12668, Ltmp5687-Lfunc_begin0 - .quad Lset12668 -.set Lset12669, Ltmp5688-Lfunc_begin0 - .quad Lset12669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12670, Ltmp5712-Lfunc_begin0 - .quad Lset12670 -.set Lset12671, Ltmp5713-Lfunc_begin0 - .quad Lset12671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12672, Ltmp5737-Lfunc_begin0 - .quad Lset12672 -.set Lset12673, Ltmp5738-Lfunc_begin0 - .quad Lset12673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12674, Ltmp5767-Lfunc_begin0 - .quad Lset12674 -.set Lset12675, Ltmp5768-Lfunc_begin0 - .quad Lset12675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12676, Ltmp5795-Lfunc_begin0 - .quad Lset12676 -.set Lset12677, Ltmp5796-Lfunc_begin0 - .quad Lset12677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12678, Ltmp5814-Lfunc_begin0 - .quad Lset12678 -.set Lset12679, Ltmp5815-Lfunc_begin0 - .quad Lset12679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12680, Ltmp5833-Lfunc_begin0 - .quad Lset12680 -.set Lset12681, Ltmp5834-Lfunc_begin0 - .quad Lset12681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12682, Ltmp5852-Lfunc_begin0 - .quad Lset12682 -.set Lset12683, Ltmp5853-Lfunc_begin0 - .quad Lset12683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12684, Ltmp5871-Lfunc_begin0 - .quad Lset12684 -.set Lset12685, Ltmp5872-Lfunc_begin0 - .quad Lset12685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12686, Ltmp5890-Lfunc_begin0 - .quad Lset12686 -.set Lset12687, Ltmp5891-Lfunc_begin0 - .quad Lset12687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12688, Ltmp5920-Lfunc_begin0 - .quad Lset12688 -.set Lset12689, Ltmp5921-Lfunc_begin0 - .quad Lset12689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc228: -.set Lset12690, Ltmp1186-Lfunc_begin0 - .quad Lset12690 -.set Lset12691, Ltmp1187-Lfunc_begin0 - .quad Lset12691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12692, Ltmp1215-Lfunc_begin0 - .quad Lset12692 -.set Lset12693, Ltmp1216-Lfunc_begin0 - .quad Lset12693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12694, Ltmp1237-Lfunc_begin0 - .quad Lset12694 -.set Lset12695, Ltmp1238-Lfunc_begin0 - .quad Lset12695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12696, Ltmp1260-Lfunc_begin0 - .quad Lset12696 -.set Lset12697, Ltmp1261-Lfunc_begin0 - .quad Lset12697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12698, Ltmp1281-Lfunc_begin0 - .quad Lset12698 -.set Lset12699, Ltmp1282-Lfunc_begin0 - .quad Lset12699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12700, Ltmp1314-Lfunc_begin0 - .quad Lset12700 -.set Lset12701, Ltmp1315-Lfunc_begin0 - .quad Lset12701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12702, Ltmp1338-Lfunc_begin0 - .quad Lset12702 -.set Lset12703, Ltmp1339-Lfunc_begin0 - .quad Lset12703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12704, Ltmp1368-Lfunc_begin0 - .quad Lset12704 -.set Lset12705, Ltmp1369-Lfunc_begin0 - .quad Lset12705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12706, Ltmp1462-Lfunc_begin0 - .quad Lset12706 -.set Lset12707, Ltmp1464-Lfunc_begin0 - .quad Lset12707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12708, Ltmp1557-Lfunc_begin0 - .quad Lset12708 -.set Lset12709, Ltmp1559-Lfunc_begin0 - .quad Lset12709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12710, Ltmp1713-Lfunc_begin0 - .quad Lset12710 -.set Lset12711, Ltmp1715-Lfunc_begin0 - .quad Lset12711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12712, Ltmp1864-Lfunc_begin0 - .quad Lset12712 -.set Lset12713, Ltmp1866-Lfunc_begin0 - .quad Lset12713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12714, Ltmp2004-Lfunc_begin0 - .quad Lset12714 -.set Lset12715, Ltmp2006-Lfunc_begin0 - .quad Lset12715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12716, Ltmp2074-Lfunc_begin0 - .quad Lset12716 -.set Lset12717, Ltmp2076-Lfunc_begin0 - .quad Lset12717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12718, Ltmp2120-Lfunc_begin0 - .quad Lset12718 -.set Lset12719, Ltmp2121-Lfunc_begin0 - .quad Lset12719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12720, Ltmp2193-Lfunc_begin0 - .quad Lset12720 -.set Lset12721, Ltmp2195-Lfunc_begin0 - .quad Lset12721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12722, Ltmp2253-Lfunc_begin0 - .quad Lset12722 -.set Lset12723, Ltmp2255-Lfunc_begin0 - .quad Lset12723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12724, Ltmp2302-Lfunc_begin0 - .quad Lset12724 -.set Lset12725, Ltmp2304-Lfunc_begin0 - .quad Lset12725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12726, Ltmp2351-Lfunc_begin0 - .quad Lset12726 -.set Lset12727, Ltmp2353-Lfunc_begin0 - .quad Lset12727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12728, Ltmp2400-Lfunc_begin0 - .quad Lset12728 -.set Lset12729, Ltmp2402-Lfunc_begin0 - .quad Lset12729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12730, Ltmp2444-Lfunc_begin0 - .quad Lset12730 -.set Lset12731, Ltmp2446-Lfunc_begin0 - .quad Lset12731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12732, Ltmp2499-Lfunc_begin0 - .quad Lset12732 -.set Lset12733, Ltmp2501-Lfunc_begin0 - .quad Lset12733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12734, Ltmp2554-Lfunc_begin0 - .quad Lset12734 -.set Lset12735, Ltmp2556-Lfunc_begin0 - .quad Lset12735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12736, Ltmp2609-Lfunc_begin0 - .quad Lset12736 -.set Lset12737, Ltmp2611-Lfunc_begin0 - .quad Lset12737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12738, Ltmp2673-Lfunc_begin0 - .quad Lset12738 -.set Lset12739, Ltmp2675-Lfunc_begin0 - .quad Lset12739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12740, Ltmp2738-Lfunc_begin0 - .quad Lset12740 -.set Lset12741, Ltmp2740-Lfunc_begin0 - .quad Lset12741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12742, Ltmp2811-Lfunc_begin0 - .quad Lset12742 -.set Lset12743, Ltmp2813-Lfunc_begin0 - .quad Lset12743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12744, Ltmp2871-Lfunc_begin0 - .quad Lset12744 -.set Lset12745, Ltmp2873-Lfunc_begin0 - .quad Lset12745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12746, Ltmp2922-Lfunc_begin0 - .quad Lset12746 -.set Lset12747, Ltmp2924-Lfunc_begin0 - .quad Lset12747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12748, Ltmp2957-Lfunc_begin0 - .quad Lset12748 -.set Lset12749, Ltmp2958-Lfunc_begin0 - .quad Lset12749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12750, Ltmp2997-Lfunc_begin0 - .quad Lset12750 -.set Lset12751, Ltmp2999-Lfunc_begin0 - .quad Lset12751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12752, Ltmp3024-Lfunc_begin0 - .quad Lset12752 -.set Lset12753, Ltmp3025-Lfunc_begin0 - .quad Lset12753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12754, Ltmp3047-Lfunc_begin0 - .quad Lset12754 -.set Lset12755, Ltmp3048-Lfunc_begin0 - .quad Lset12755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12756, Ltmp3096-Lfunc_begin0 - .quad Lset12756 -.set Lset12757, Ltmp3097-Lfunc_begin0 - .quad Lset12757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12758, Ltmp3120-Lfunc_begin0 - .quad Lset12758 -.set Lset12759, Ltmp3122-Lfunc_begin0 - .quad Lset12759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12760, Ltmp3161-Lfunc_begin0 - .quad Lset12760 -.set Lset12761, Ltmp3163-Lfunc_begin0 - .quad Lset12761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12762, Ltmp3227-Lfunc_begin0 - .quad Lset12762 -.set Lset12763, Ltmp3228-Lfunc_begin0 - .quad Lset12763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12764, Ltmp3292-Lfunc_begin0 - .quad Lset12764 -.set Lset12765, Ltmp3293-Lfunc_begin0 - .quad Lset12765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12766, Ltmp3329-Lfunc_begin0 - .quad Lset12766 -.set Lset12767, Ltmp3330-Lfunc_begin0 - .quad Lset12767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12768, Ltmp3375-Lfunc_begin0 - .quad Lset12768 -.set Lset12769, Ltmp3376-Lfunc_begin0 - .quad Lset12769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12770, Ltmp3407-Lfunc_begin0 - .quad Lset12770 -.set Lset12771, Ltmp3408-Lfunc_begin0 - .quad Lset12771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12772, Ltmp3435-Lfunc_begin0 - .quad Lset12772 -.set Lset12773, Ltmp3436-Lfunc_begin0 - .quad Lset12773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12774, Ltmp3537-Lfunc_begin0 - .quad Lset12774 -.set Lset12775, Ltmp3538-Lfunc_begin0 - .quad Lset12775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12776, Ltmp3638-Lfunc_begin0 - .quad Lset12776 -.set Lset12777, Ltmp3640-Lfunc_begin0 - .quad Lset12777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12778, Ltmp3685-Lfunc_begin0 - .quad Lset12778 -.set Lset12779, Ltmp3686-Lfunc_begin0 - .quad Lset12779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12780, Ltmp3807-Lfunc_begin0 - .quad Lset12780 -.set Lset12781, Ltmp3809-Lfunc_begin0 - .quad Lset12781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12782, Ltmp3864-Lfunc_begin0 - .quad Lset12782 -.set Lset12783, Ltmp3865-Lfunc_begin0 - .quad Lset12783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12784, Ltmp3933-Lfunc_begin0 - .quad Lset12784 -.set Lset12785, Ltmp3934-Lfunc_begin0 - .quad Lset12785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12786, Ltmp3959-Lfunc_begin0 - .quad Lset12786 -.set Lset12787, Ltmp3960-Lfunc_begin0 - .quad Lset12787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12788, Ltmp3985-Lfunc_begin0 - .quad Lset12788 -.set Lset12789, Ltmp3986-Lfunc_begin0 - .quad Lset12789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12790, Ltmp4011-Lfunc_begin0 - .quad Lset12790 -.set Lset12791, Ltmp4012-Lfunc_begin0 - .quad Lset12791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12792, Ltmp4046-Lfunc_begin0 - .quad Lset12792 -.set Lset12793, Ltmp4047-Lfunc_begin0 - .quad Lset12793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12794, Ltmp4084-Lfunc_begin0 - .quad Lset12794 -.set Lset12795, Ltmp4085-Lfunc_begin0 - .quad Lset12795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12796, Ltmp4106-Lfunc_begin0 - .quad Lset12796 -.set Lset12797, Ltmp4107-Lfunc_begin0 - .quad Lset12797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12798, Ltmp4146-Lfunc_begin0 - .quad Lset12798 -.set Lset12799, Ltmp4147-Lfunc_begin0 - .quad Lset12799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12800, Ltmp4187-Lfunc_begin0 - .quad Lset12800 -.set Lset12801, Ltmp4188-Lfunc_begin0 - .quad Lset12801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12802, Ltmp4227-Lfunc_begin0 - .quad Lset12802 -.set Lset12803, Ltmp4228-Lfunc_begin0 - .quad Lset12803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12804, Ltmp4268-Lfunc_begin0 - .quad Lset12804 -.set Lset12805, Ltmp4269-Lfunc_begin0 - .quad Lset12805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12806, Ltmp4308-Lfunc_begin0 - .quad Lset12806 -.set Lset12807, Ltmp4309-Lfunc_begin0 - .quad Lset12807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12808, Ltmp4349-Lfunc_begin0 - .quad Lset12808 -.set Lset12809, Ltmp4350-Lfunc_begin0 - .quad Lset12809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12810, Ltmp4380-Lfunc_begin0 - .quad Lset12810 -.set Lset12811, Ltmp4381-Lfunc_begin0 - .quad Lset12811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12812, Ltmp4412-Lfunc_begin0 - .quad Lset12812 -.set Lset12813, Ltmp4414-Lfunc_begin0 - .quad Lset12813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12814, Ltmp4454-Lfunc_begin0 - .quad Lset12814 -.set Lset12815, Ltmp4455-Lfunc_begin0 - .quad Lset12815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12816, Ltmp4495-Lfunc_begin0 - .quad Lset12816 -.set Lset12817, Ltmp4496-Lfunc_begin0 - .quad Lset12817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12818, Ltmp4579-Lfunc_begin0 - .quad Lset12818 -.set Lset12819, Ltmp4581-Lfunc_begin0 - .quad Lset12819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12820, Ltmp4649-Lfunc_begin0 - .quad Lset12820 -.set Lset12821, Ltmp4651-Lfunc_begin0 - .quad Lset12821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12822, Ltmp4717-Lfunc_begin0 - .quad Lset12822 -.set Lset12823, Ltmp4719-Lfunc_begin0 - .quad Lset12823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12824, Ltmp4783-Lfunc_begin0 - .quad Lset12824 -.set Lset12825, Ltmp4784-Lfunc_begin0 - .quad Lset12825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12826, Ltmp4813-Lfunc_begin0 - .quad Lset12826 -.set Lset12827, Ltmp4814-Lfunc_begin0 - .quad Lset12827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12828, Ltmp4843-Lfunc_begin0 - .quad Lset12828 -.set Lset12829, Ltmp4844-Lfunc_begin0 - .quad Lset12829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12830, Ltmp4902-Lfunc_begin0 - .quad Lset12830 -.set Lset12831, Ltmp4903-Lfunc_begin0 - .quad Lset12831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12832, Ltmp4943-Lfunc_begin0 - .quad Lset12832 -.set Lset12833, Ltmp4944-Lfunc_begin0 - .quad Lset12833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12834, Ltmp5000-Lfunc_begin0 - .quad Lset12834 -.set Lset12835, Ltmp5001-Lfunc_begin0 - .quad Lset12835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12836, Ltmp5040-Lfunc_begin0 - .quad Lset12836 -.set Lset12837, Ltmp5041-Lfunc_begin0 - .quad Lset12837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12838, Ltmp5078-Lfunc_begin0 - .quad Lset12838 -.set Lset12839, Ltmp5079-Lfunc_begin0 - .quad Lset12839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12840, Ltmp5114-Lfunc_begin0 - .quad Lset12840 -.set Lset12841, Ltmp5115-Lfunc_begin0 - .quad Lset12841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12842, Ltmp5146-Lfunc_begin0 - .quad Lset12842 -.set Lset12843, Ltmp5147-Lfunc_begin0 - .quad Lset12843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12844, Ltmp5178-Lfunc_begin0 - .quad Lset12844 -.set Lset12845, Ltmp5179-Lfunc_begin0 - .quad Lset12845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12846, Ltmp5210-Lfunc_begin0 - .quad Lset12846 -.set Lset12847, Ltmp5211-Lfunc_begin0 - .quad Lset12847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12848, Ltmp5228-Lfunc_begin0 - .quad Lset12848 -.set Lset12849, Ltmp5229-Lfunc_begin0 - .quad Lset12849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12850, Ltmp5246-Lfunc_begin0 - .quad Lset12850 -.set Lset12851, Ltmp5247-Lfunc_begin0 - .quad Lset12851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12852, Ltmp5271-Lfunc_begin0 - .quad Lset12852 -.set Lset12853, Ltmp5272-Lfunc_begin0 - .quad Lset12853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12854, Ltmp5296-Lfunc_begin0 - .quad Lset12854 -.set Lset12855, Ltmp5297-Lfunc_begin0 - .quad Lset12855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12856, Ltmp5322-Lfunc_begin0 - .quad Lset12856 -.set Lset12857, Ltmp5323-Lfunc_begin0 - .quad Lset12857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12858, Ltmp5347-Lfunc_begin0 - .quad Lset12858 -.set Lset12859, Ltmp5348-Lfunc_begin0 - .quad Lset12859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12860, Ltmp5372-Lfunc_begin0 - .quad Lset12860 -.set Lset12861, Ltmp5373-Lfunc_begin0 - .quad Lset12861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12862, Ltmp5397-Lfunc_begin0 - .quad Lset12862 -.set Lset12863, Ltmp5398-Lfunc_begin0 - .quad Lset12863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12864, Ltmp5422-Lfunc_begin0 - .quad Lset12864 -.set Lset12865, Ltmp5423-Lfunc_begin0 - .quad Lset12865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12866, Ltmp5447-Lfunc_begin0 - .quad Lset12866 -.set Lset12867, Ltmp5448-Lfunc_begin0 - .quad Lset12867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12868, Ltmp5472-Lfunc_begin0 - .quad Lset12868 -.set Lset12869, Ltmp5473-Lfunc_begin0 - .quad Lset12869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12870, Ltmp5498-Lfunc_begin0 - .quad Lset12870 -.set Lset12871, Ltmp5499-Lfunc_begin0 - .quad Lset12871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12872, Ltmp5523-Lfunc_begin0 - .quad Lset12872 -.set Lset12873, Ltmp5524-Lfunc_begin0 - .quad Lset12873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12874, Ltmp5548-Lfunc_begin0 - .quad Lset12874 -.set Lset12875, Ltmp5549-Lfunc_begin0 - .quad Lset12875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12876, Ltmp5573-Lfunc_begin0 - .quad Lset12876 -.set Lset12877, Ltmp5574-Lfunc_begin0 - .quad Lset12877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12878, Ltmp5598-Lfunc_begin0 - .quad Lset12878 -.set Lset12879, Ltmp5599-Lfunc_begin0 - .quad Lset12879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12880, Ltmp5631-Lfunc_begin0 - .quad Lset12880 -.set Lset12881, Ltmp5632-Lfunc_begin0 - .quad Lset12881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12882, Ltmp5662-Lfunc_begin0 - .quad Lset12882 -.set Lset12883, Ltmp5663-Lfunc_begin0 - .quad Lset12883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12884, Ltmp5687-Lfunc_begin0 - .quad Lset12884 -.set Lset12885, Ltmp5688-Lfunc_begin0 - .quad Lset12885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12886, Ltmp5712-Lfunc_begin0 - .quad Lset12886 -.set Lset12887, Ltmp5713-Lfunc_begin0 - .quad Lset12887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12888, Ltmp5737-Lfunc_begin0 - .quad Lset12888 -.set Lset12889, Ltmp5738-Lfunc_begin0 - .quad Lset12889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12890, Ltmp5767-Lfunc_begin0 - .quad Lset12890 -.set Lset12891, Ltmp5768-Lfunc_begin0 - .quad Lset12891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12892, Ltmp5795-Lfunc_begin0 - .quad Lset12892 -.set Lset12893, Ltmp5796-Lfunc_begin0 - .quad Lset12893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12894, Ltmp5814-Lfunc_begin0 - .quad Lset12894 -.set Lset12895, Ltmp5815-Lfunc_begin0 - .quad Lset12895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12896, Ltmp5833-Lfunc_begin0 - .quad Lset12896 -.set Lset12897, Ltmp5834-Lfunc_begin0 - .quad Lset12897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12898, Ltmp5852-Lfunc_begin0 - .quad Lset12898 -.set Lset12899, Ltmp5853-Lfunc_begin0 - .quad Lset12899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12900, Ltmp5871-Lfunc_begin0 - .quad Lset12900 -.set Lset12901, Ltmp5872-Lfunc_begin0 - .quad Lset12901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12902, Ltmp5890-Lfunc_begin0 - .quad Lset12902 -.set Lset12903, Ltmp5891-Lfunc_begin0 - .quad Lset12903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12904, Ltmp5920-Lfunc_begin0 - .quad Lset12904 -.set Lset12905, Ltmp5921-Lfunc_begin0 - .quad Lset12905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc229: -.set Lset12906, Ltmp1186-Lfunc_begin0 - .quad Lset12906 -.set Lset12907, Ltmp1187-Lfunc_begin0 - .quad Lset12907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12908, Ltmp1215-Lfunc_begin0 - .quad Lset12908 -.set Lset12909, Ltmp1216-Lfunc_begin0 - .quad Lset12909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12910, Ltmp1222-Lfunc_begin0 - .quad Lset12910 -.set Lset12911, Ltmp1230-Lfunc_begin0 - .quad Lset12911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12912, Ltmp1237-Lfunc_begin0 - .quad Lset12912 -.set Lset12913, Ltmp1238-Lfunc_begin0 - .quad Lset12913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12914, Ltmp1260-Lfunc_begin0 - .quad Lset12914 -.set Lset12915, Ltmp1261-Lfunc_begin0 - .quad Lset12915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12916, Ltmp1281-Lfunc_begin0 - .quad Lset12916 -.set Lset12917, Ltmp1282-Lfunc_begin0 - .quad Lset12917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12918, Ltmp1314-Lfunc_begin0 - .quad Lset12918 -.set Lset12919, Ltmp1315-Lfunc_begin0 - .quad Lset12919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12920, Ltmp1338-Lfunc_begin0 - .quad Lset12920 -.set Lset12921, Ltmp1339-Lfunc_begin0 - .quad Lset12921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12922, Ltmp1368-Lfunc_begin0 - .quad Lset12922 -.set Lset12923, Ltmp1369-Lfunc_begin0 - .quad Lset12923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12924, Ltmp1462-Lfunc_begin0 - .quad Lset12924 -.set Lset12925, Ltmp1464-Lfunc_begin0 - .quad Lset12925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12926, Ltmp1557-Lfunc_begin0 - .quad Lset12926 -.set Lset12927, Ltmp1559-Lfunc_begin0 - .quad Lset12927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12928, Ltmp1713-Lfunc_begin0 - .quad Lset12928 -.set Lset12929, Ltmp1715-Lfunc_begin0 - .quad Lset12929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12930, Ltmp1864-Lfunc_begin0 - .quad Lset12930 -.set Lset12931, Ltmp1866-Lfunc_begin0 - .quad Lset12931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12932, Ltmp2004-Lfunc_begin0 - .quad Lset12932 -.set Lset12933, Ltmp2006-Lfunc_begin0 - .quad Lset12933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12934, Ltmp2074-Lfunc_begin0 - .quad Lset12934 -.set Lset12935, Ltmp2076-Lfunc_begin0 - .quad Lset12935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12936, Ltmp2120-Lfunc_begin0 - .quad Lset12936 -.set Lset12937, Ltmp2121-Lfunc_begin0 - .quad Lset12937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12938, Ltmp2193-Lfunc_begin0 - .quad Lset12938 -.set Lset12939, Ltmp2195-Lfunc_begin0 - .quad Lset12939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12940, Ltmp2253-Lfunc_begin0 - .quad Lset12940 -.set Lset12941, Ltmp2255-Lfunc_begin0 - .quad Lset12941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12942, Ltmp2302-Lfunc_begin0 - .quad Lset12942 -.set Lset12943, Ltmp2304-Lfunc_begin0 - .quad Lset12943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12944, Ltmp2351-Lfunc_begin0 - .quad Lset12944 -.set Lset12945, Ltmp2353-Lfunc_begin0 - .quad Lset12945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12946, Ltmp2400-Lfunc_begin0 - .quad Lset12946 -.set Lset12947, Ltmp2402-Lfunc_begin0 - .quad Lset12947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12948, Ltmp2444-Lfunc_begin0 - .quad Lset12948 -.set Lset12949, Ltmp2446-Lfunc_begin0 - .quad Lset12949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12950, Ltmp2499-Lfunc_begin0 - .quad Lset12950 -.set Lset12951, Ltmp2501-Lfunc_begin0 - .quad Lset12951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12952, Ltmp2554-Lfunc_begin0 - .quad Lset12952 -.set Lset12953, Ltmp2556-Lfunc_begin0 - .quad Lset12953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12954, Ltmp2609-Lfunc_begin0 - .quad Lset12954 -.set Lset12955, Ltmp2611-Lfunc_begin0 - .quad Lset12955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12956, Ltmp2673-Lfunc_begin0 - .quad Lset12956 -.set Lset12957, Ltmp2675-Lfunc_begin0 - .quad Lset12957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12958, Ltmp2738-Lfunc_begin0 - .quad Lset12958 -.set Lset12959, Ltmp2740-Lfunc_begin0 - .quad Lset12959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12960, Ltmp2811-Lfunc_begin0 - .quad Lset12960 -.set Lset12961, Ltmp2813-Lfunc_begin0 - .quad Lset12961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12962, Ltmp2871-Lfunc_begin0 - .quad Lset12962 -.set Lset12963, Ltmp2873-Lfunc_begin0 - .quad Lset12963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12964, Ltmp2922-Lfunc_begin0 - .quad Lset12964 -.set Lset12965, Ltmp2924-Lfunc_begin0 - .quad Lset12965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12966, Ltmp2957-Lfunc_begin0 - .quad Lset12966 -.set Lset12967, Ltmp2958-Lfunc_begin0 - .quad Lset12967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12968, Ltmp2997-Lfunc_begin0 - .quad Lset12968 -.set Lset12969, Ltmp2999-Lfunc_begin0 - .quad Lset12969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12970, Ltmp3024-Lfunc_begin0 - .quad Lset12970 -.set Lset12971, Ltmp3025-Lfunc_begin0 - .quad Lset12971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12972, Ltmp3047-Lfunc_begin0 - .quad Lset12972 -.set Lset12973, Ltmp3048-Lfunc_begin0 - .quad Lset12973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12974, Ltmp3096-Lfunc_begin0 - .quad Lset12974 -.set Lset12975, Ltmp3097-Lfunc_begin0 - .quad Lset12975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12976, Ltmp3120-Lfunc_begin0 - .quad Lset12976 -.set Lset12977, Ltmp3122-Lfunc_begin0 - .quad Lset12977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12978, Ltmp3161-Lfunc_begin0 - .quad Lset12978 -.set Lset12979, Ltmp3163-Lfunc_begin0 - .quad Lset12979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12980, Ltmp3227-Lfunc_begin0 - .quad Lset12980 -.set Lset12981, Ltmp3228-Lfunc_begin0 - .quad Lset12981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12982, Ltmp3292-Lfunc_begin0 - .quad Lset12982 -.set Lset12983, Ltmp3293-Lfunc_begin0 - .quad Lset12983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12984, Ltmp3329-Lfunc_begin0 - .quad Lset12984 -.set Lset12985, Ltmp3330-Lfunc_begin0 - .quad Lset12985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12986, Ltmp3375-Lfunc_begin0 - .quad Lset12986 -.set Lset12987, Ltmp3376-Lfunc_begin0 - .quad Lset12987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12988, Ltmp3407-Lfunc_begin0 - .quad Lset12988 -.set Lset12989, Ltmp3408-Lfunc_begin0 - .quad Lset12989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12990, Ltmp3435-Lfunc_begin0 - .quad Lset12990 -.set Lset12991, Ltmp3436-Lfunc_begin0 - .quad Lset12991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12992, Ltmp3537-Lfunc_begin0 - .quad Lset12992 -.set Lset12993, Ltmp3538-Lfunc_begin0 - .quad Lset12993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12994, Ltmp3638-Lfunc_begin0 - .quad Lset12994 -.set Lset12995, Ltmp3640-Lfunc_begin0 - .quad Lset12995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12996, Ltmp3685-Lfunc_begin0 - .quad Lset12996 -.set Lset12997, Ltmp3686-Lfunc_begin0 - .quad Lset12997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset12998, Ltmp3807-Lfunc_begin0 - .quad Lset12998 -.set Lset12999, Ltmp3809-Lfunc_begin0 - .quad Lset12999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13000, Ltmp3864-Lfunc_begin0 - .quad Lset13000 -.set Lset13001, Ltmp3865-Lfunc_begin0 - .quad Lset13001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13002, Ltmp3933-Lfunc_begin0 - .quad Lset13002 -.set Lset13003, Ltmp3934-Lfunc_begin0 - .quad Lset13003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13004, Ltmp3959-Lfunc_begin0 - .quad Lset13004 -.set Lset13005, Ltmp3960-Lfunc_begin0 - .quad Lset13005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13006, Ltmp3985-Lfunc_begin0 - .quad Lset13006 -.set Lset13007, Ltmp3986-Lfunc_begin0 - .quad Lset13007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13008, Ltmp4011-Lfunc_begin0 - .quad Lset13008 -.set Lset13009, Ltmp4012-Lfunc_begin0 - .quad Lset13009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13010, Ltmp4046-Lfunc_begin0 - .quad Lset13010 -.set Lset13011, Ltmp4047-Lfunc_begin0 - .quad Lset13011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13012, Ltmp4084-Lfunc_begin0 - .quad Lset13012 -.set Lset13013, Ltmp4085-Lfunc_begin0 - .quad Lset13013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13014, Ltmp4106-Lfunc_begin0 - .quad Lset13014 -.set Lset13015, Ltmp4107-Lfunc_begin0 - .quad Lset13015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13016, Ltmp4146-Lfunc_begin0 - .quad Lset13016 -.set Lset13017, Ltmp4147-Lfunc_begin0 - .quad Lset13017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13018, Ltmp4187-Lfunc_begin0 - .quad Lset13018 -.set Lset13019, Ltmp4188-Lfunc_begin0 - .quad Lset13019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13020, Ltmp4227-Lfunc_begin0 - .quad Lset13020 -.set Lset13021, Ltmp4228-Lfunc_begin0 - .quad Lset13021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13022, Ltmp4268-Lfunc_begin0 - .quad Lset13022 -.set Lset13023, Ltmp4269-Lfunc_begin0 - .quad Lset13023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13024, Ltmp4308-Lfunc_begin0 - .quad Lset13024 -.set Lset13025, Ltmp4309-Lfunc_begin0 - .quad Lset13025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13026, Ltmp4349-Lfunc_begin0 - .quad Lset13026 -.set Lset13027, Ltmp4350-Lfunc_begin0 - .quad Lset13027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13028, Ltmp4380-Lfunc_begin0 - .quad Lset13028 -.set Lset13029, Ltmp4381-Lfunc_begin0 - .quad Lset13029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13030, Ltmp4412-Lfunc_begin0 - .quad Lset13030 -.set Lset13031, Ltmp4414-Lfunc_begin0 - .quad Lset13031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13032, Ltmp4454-Lfunc_begin0 - .quad Lset13032 -.set Lset13033, Ltmp4455-Lfunc_begin0 - .quad Lset13033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13034, Ltmp4495-Lfunc_begin0 - .quad Lset13034 -.set Lset13035, Ltmp4496-Lfunc_begin0 - .quad Lset13035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13036, Ltmp4579-Lfunc_begin0 - .quad Lset13036 -.set Lset13037, Ltmp4581-Lfunc_begin0 - .quad Lset13037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13038, Ltmp4649-Lfunc_begin0 - .quad Lset13038 -.set Lset13039, Ltmp4651-Lfunc_begin0 - .quad Lset13039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13040, Ltmp4717-Lfunc_begin0 - .quad Lset13040 -.set Lset13041, Ltmp4719-Lfunc_begin0 - .quad Lset13041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13042, Ltmp4783-Lfunc_begin0 - .quad Lset13042 -.set Lset13043, Ltmp4784-Lfunc_begin0 - .quad Lset13043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13044, Ltmp4813-Lfunc_begin0 - .quad Lset13044 -.set Lset13045, Ltmp4814-Lfunc_begin0 - .quad Lset13045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13046, Ltmp4843-Lfunc_begin0 - .quad Lset13046 -.set Lset13047, Ltmp4844-Lfunc_begin0 - .quad Lset13047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13048, Ltmp4902-Lfunc_begin0 - .quad Lset13048 -.set Lset13049, Ltmp4903-Lfunc_begin0 - .quad Lset13049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13050, Ltmp4943-Lfunc_begin0 - .quad Lset13050 -.set Lset13051, Ltmp4944-Lfunc_begin0 - .quad Lset13051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13052, Ltmp5000-Lfunc_begin0 - .quad Lset13052 -.set Lset13053, Ltmp5001-Lfunc_begin0 - .quad Lset13053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13054, Ltmp5040-Lfunc_begin0 - .quad Lset13054 -.set Lset13055, Ltmp5041-Lfunc_begin0 - .quad Lset13055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13056, Ltmp5078-Lfunc_begin0 - .quad Lset13056 -.set Lset13057, Ltmp5079-Lfunc_begin0 - .quad Lset13057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13058, Ltmp5114-Lfunc_begin0 - .quad Lset13058 -.set Lset13059, Ltmp5115-Lfunc_begin0 - .quad Lset13059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13060, Ltmp5146-Lfunc_begin0 - .quad Lset13060 -.set Lset13061, Ltmp5147-Lfunc_begin0 - .quad Lset13061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13062, Ltmp5178-Lfunc_begin0 - .quad Lset13062 -.set Lset13063, Ltmp5179-Lfunc_begin0 - .quad Lset13063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13064, Ltmp5210-Lfunc_begin0 - .quad Lset13064 -.set Lset13065, Ltmp5211-Lfunc_begin0 - .quad Lset13065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13066, Ltmp5228-Lfunc_begin0 - .quad Lset13066 -.set Lset13067, Ltmp5229-Lfunc_begin0 - .quad Lset13067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13068, Ltmp5246-Lfunc_begin0 - .quad Lset13068 -.set Lset13069, Ltmp5247-Lfunc_begin0 - .quad Lset13069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13070, Ltmp5271-Lfunc_begin0 - .quad Lset13070 -.set Lset13071, Ltmp5272-Lfunc_begin0 - .quad Lset13071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13072, Ltmp5296-Lfunc_begin0 - .quad Lset13072 -.set Lset13073, Ltmp5297-Lfunc_begin0 - .quad Lset13073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13074, Ltmp5322-Lfunc_begin0 - .quad Lset13074 -.set Lset13075, Ltmp5323-Lfunc_begin0 - .quad Lset13075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13076, Ltmp5347-Lfunc_begin0 - .quad Lset13076 -.set Lset13077, Ltmp5348-Lfunc_begin0 - .quad Lset13077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13078, Ltmp5372-Lfunc_begin0 - .quad Lset13078 -.set Lset13079, Ltmp5373-Lfunc_begin0 - .quad Lset13079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13080, Ltmp5397-Lfunc_begin0 - .quad Lset13080 -.set Lset13081, Ltmp5398-Lfunc_begin0 - .quad Lset13081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13082, Ltmp5422-Lfunc_begin0 - .quad Lset13082 -.set Lset13083, Ltmp5423-Lfunc_begin0 - .quad Lset13083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13084, Ltmp5447-Lfunc_begin0 - .quad Lset13084 -.set Lset13085, Ltmp5448-Lfunc_begin0 - .quad Lset13085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13086, Ltmp5472-Lfunc_begin0 - .quad Lset13086 -.set Lset13087, Ltmp5473-Lfunc_begin0 - .quad Lset13087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13088, Ltmp5498-Lfunc_begin0 - .quad Lset13088 -.set Lset13089, Ltmp5499-Lfunc_begin0 - .quad Lset13089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13090, Ltmp5523-Lfunc_begin0 - .quad Lset13090 -.set Lset13091, Ltmp5524-Lfunc_begin0 - .quad Lset13091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13092, Ltmp5548-Lfunc_begin0 - .quad Lset13092 -.set Lset13093, Ltmp5549-Lfunc_begin0 - .quad Lset13093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13094, Ltmp5573-Lfunc_begin0 - .quad Lset13094 -.set Lset13095, Ltmp5574-Lfunc_begin0 - .quad Lset13095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13096, Ltmp5598-Lfunc_begin0 - .quad Lset13096 -.set Lset13097, Ltmp5599-Lfunc_begin0 - .quad Lset13097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13098, Ltmp5631-Lfunc_begin0 - .quad Lset13098 -.set Lset13099, Ltmp5632-Lfunc_begin0 - .quad Lset13099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13100, Ltmp5662-Lfunc_begin0 - .quad Lset13100 -.set Lset13101, Ltmp5663-Lfunc_begin0 - .quad Lset13101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13102, Ltmp5687-Lfunc_begin0 - .quad Lset13102 -.set Lset13103, Ltmp5688-Lfunc_begin0 - .quad Lset13103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13104, Ltmp5712-Lfunc_begin0 - .quad Lset13104 -.set Lset13105, Ltmp5713-Lfunc_begin0 - .quad Lset13105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13106, Ltmp5737-Lfunc_begin0 - .quad Lset13106 -.set Lset13107, Ltmp5738-Lfunc_begin0 - .quad Lset13107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13108, Ltmp5767-Lfunc_begin0 - .quad Lset13108 -.set Lset13109, Ltmp5768-Lfunc_begin0 - .quad Lset13109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13110, Ltmp5795-Lfunc_begin0 - .quad Lset13110 -.set Lset13111, Ltmp5796-Lfunc_begin0 - .quad Lset13111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13112, Ltmp5814-Lfunc_begin0 - .quad Lset13112 -.set Lset13113, Ltmp5815-Lfunc_begin0 - .quad Lset13113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13114, Ltmp5833-Lfunc_begin0 - .quad Lset13114 -.set Lset13115, Ltmp5834-Lfunc_begin0 - .quad Lset13115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13116, Ltmp5852-Lfunc_begin0 - .quad Lset13116 -.set Lset13117, Ltmp5853-Lfunc_begin0 - .quad Lset13117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13118, Ltmp5871-Lfunc_begin0 - .quad Lset13118 -.set Lset13119, Ltmp5872-Lfunc_begin0 - .quad Lset13119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13120, Ltmp5890-Lfunc_begin0 - .quad Lset13120 -.set Lset13121, Ltmp5891-Lfunc_begin0 - .quad Lset13121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13122, Ltmp5920-Lfunc_begin0 - .quad Lset13122 -.set Lset13123, Ltmp5921-Lfunc_begin0 - .quad Lset13123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13124, Ltmp5940-Lfunc_begin0 - .quad Lset13124 -.set Lset13125, Ltmp5941-Lfunc_begin0 - .quad Lset13125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc230: -.set Lset13126, Ltmp1186-Lfunc_begin0 - .quad Lset13126 -.set Lset13127, Ltmp1187-Lfunc_begin0 - .quad Lset13127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13128, Ltmp1200-Lfunc_begin0 - .quad Lset13128 -.set Lset13129, Ltmp1208-Lfunc_begin0 - .quad Lset13129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13130, Ltmp1215-Lfunc_begin0 - .quad Lset13130 -.set Lset13131, Ltmp1216-Lfunc_begin0 - .quad Lset13131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13132, Ltmp1237-Lfunc_begin0 - .quad Lset13132 -.set Lset13133, Ltmp1238-Lfunc_begin0 - .quad Lset13133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13134, Ltmp1260-Lfunc_begin0 - .quad Lset13134 -.set Lset13135, Ltmp1261-Lfunc_begin0 - .quad Lset13135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13136, Ltmp1281-Lfunc_begin0 - .quad Lset13136 -.set Lset13137, Ltmp1282-Lfunc_begin0 - .quad Lset13137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13138, Ltmp1314-Lfunc_begin0 - .quad Lset13138 -.set Lset13139, Ltmp1315-Lfunc_begin0 - .quad Lset13139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13140, Ltmp1338-Lfunc_begin0 - .quad Lset13140 -.set Lset13141, Ltmp1339-Lfunc_begin0 - .quad Lset13141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13142, Ltmp1368-Lfunc_begin0 - .quad Lset13142 -.set Lset13143, Ltmp1369-Lfunc_begin0 - .quad Lset13143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13144, Ltmp1462-Lfunc_begin0 - .quad Lset13144 -.set Lset13145, Ltmp1464-Lfunc_begin0 - .quad Lset13145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13146, Ltmp1557-Lfunc_begin0 - .quad Lset13146 -.set Lset13147, Ltmp1559-Lfunc_begin0 - .quad Lset13147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13148, Ltmp1713-Lfunc_begin0 - .quad Lset13148 -.set Lset13149, Ltmp1715-Lfunc_begin0 - .quad Lset13149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13150, Ltmp1864-Lfunc_begin0 - .quad Lset13150 -.set Lset13151, Ltmp1866-Lfunc_begin0 - .quad Lset13151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13152, Ltmp2004-Lfunc_begin0 - .quad Lset13152 -.set Lset13153, Ltmp2006-Lfunc_begin0 - .quad Lset13153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13154, Ltmp2074-Lfunc_begin0 - .quad Lset13154 -.set Lset13155, Ltmp2076-Lfunc_begin0 - .quad Lset13155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13156, Ltmp2120-Lfunc_begin0 - .quad Lset13156 -.set Lset13157, Ltmp2121-Lfunc_begin0 - .quad Lset13157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13158, Ltmp2193-Lfunc_begin0 - .quad Lset13158 -.set Lset13159, Ltmp2195-Lfunc_begin0 - .quad Lset13159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13160, Ltmp2253-Lfunc_begin0 - .quad Lset13160 -.set Lset13161, Ltmp2255-Lfunc_begin0 - .quad Lset13161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13162, Ltmp2302-Lfunc_begin0 - .quad Lset13162 -.set Lset13163, Ltmp2304-Lfunc_begin0 - .quad Lset13163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13164, Ltmp2351-Lfunc_begin0 - .quad Lset13164 -.set Lset13165, Ltmp2353-Lfunc_begin0 - .quad Lset13165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13166, Ltmp2400-Lfunc_begin0 - .quad Lset13166 -.set Lset13167, Ltmp2402-Lfunc_begin0 - .quad Lset13167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13168, Ltmp2444-Lfunc_begin0 - .quad Lset13168 -.set Lset13169, Ltmp2446-Lfunc_begin0 - .quad Lset13169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13170, Ltmp2499-Lfunc_begin0 - .quad Lset13170 -.set Lset13171, Ltmp2501-Lfunc_begin0 - .quad Lset13171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13172, Ltmp2554-Lfunc_begin0 - .quad Lset13172 -.set Lset13173, Ltmp2556-Lfunc_begin0 - .quad Lset13173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13174, Ltmp2609-Lfunc_begin0 - .quad Lset13174 -.set Lset13175, Ltmp2611-Lfunc_begin0 - .quad Lset13175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13176, Ltmp2673-Lfunc_begin0 - .quad Lset13176 -.set Lset13177, Ltmp2675-Lfunc_begin0 - .quad Lset13177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13178, Ltmp2738-Lfunc_begin0 - .quad Lset13178 -.set Lset13179, Ltmp2740-Lfunc_begin0 - .quad Lset13179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13180, Ltmp2811-Lfunc_begin0 - .quad Lset13180 -.set Lset13181, Ltmp2813-Lfunc_begin0 - .quad Lset13181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13182, Ltmp2871-Lfunc_begin0 - .quad Lset13182 -.set Lset13183, Ltmp2873-Lfunc_begin0 - .quad Lset13183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13184, Ltmp2922-Lfunc_begin0 - .quad Lset13184 -.set Lset13185, Ltmp2924-Lfunc_begin0 - .quad Lset13185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13186, Ltmp2957-Lfunc_begin0 - .quad Lset13186 -.set Lset13187, Ltmp2958-Lfunc_begin0 - .quad Lset13187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13188, Ltmp2997-Lfunc_begin0 - .quad Lset13188 -.set Lset13189, Ltmp2999-Lfunc_begin0 - .quad Lset13189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13190, Ltmp3024-Lfunc_begin0 - .quad Lset13190 -.set Lset13191, Ltmp3025-Lfunc_begin0 - .quad Lset13191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13192, Ltmp3047-Lfunc_begin0 - .quad Lset13192 -.set Lset13193, Ltmp3048-Lfunc_begin0 - .quad Lset13193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13194, Ltmp3096-Lfunc_begin0 - .quad Lset13194 -.set Lset13195, Ltmp3097-Lfunc_begin0 - .quad Lset13195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13196, Ltmp3120-Lfunc_begin0 - .quad Lset13196 -.set Lset13197, Ltmp3122-Lfunc_begin0 - .quad Lset13197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13198, Ltmp3161-Lfunc_begin0 - .quad Lset13198 -.set Lset13199, Ltmp3163-Lfunc_begin0 - .quad Lset13199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13200, Ltmp3227-Lfunc_begin0 - .quad Lset13200 -.set Lset13201, Ltmp3228-Lfunc_begin0 - .quad Lset13201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13202, Ltmp3292-Lfunc_begin0 - .quad Lset13202 -.set Lset13203, Ltmp3293-Lfunc_begin0 - .quad Lset13203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13204, Ltmp3329-Lfunc_begin0 - .quad Lset13204 -.set Lset13205, Ltmp3330-Lfunc_begin0 - .quad Lset13205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13206, Ltmp3375-Lfunc_begin0 - .quad Lset13206 -.set Lset13207, Ltmp3376-Lfunc_begin0 - .quad Lset13207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13208, Ltmp3407-Lfunc_begin0 - .quad Lset13208 -.set Lset13209, Ltmp3408-Lfunc_begin0 - .quad Lset13209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13210, Ltmp3435-Lfunc_begin0 - .quad Lset13210 -.set Lset13211, Ltmp3436-Lfunc_begin0 - .quad Lset13211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13212, Ltmp3537-Lfunc_begin0 - .quad Lset13212 -.set Lset13213, Ltmp3538-Lfunc_begin0 - .quad Lset13213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13214, Ltmp3638-Lfunc_begin0 - .quad Lset13214 -.set Lset13215, Ltmp3640-Lfunc_begin0 - .quad Lset13215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13216, Ltmp3685-Lfunc_begin0 - .quad Lset13216 -.set Lset13217, Ltmp3686-Lfunc_begin0 - .quad Lset13217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13218, Ltmp3807-Lfunc_begin0 - .quad Lset13218 -.set Lset13219, Ltmp3809-Lfunc_begin0 - .quad Lset13219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13220, Ltmp3864-Lfunc_begin0 - .quad Lset13220 -.set Lset13221, Ltmp3865-Lfunc_begin0 - .quad Lset13221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13222, Ltmp3933-Lfunc_begin0 - .quad Lset13222 -.set Lset13223, Ltmp3934-Lfunc_begin0 - .quad Lset13223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13224, Ltmp3959-Lfunc_begin0 - .quad Lset13224 -.set Lset13225, Ltmp3960-Lfunc_begin0 - .quad Lset13225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13226, Ltmp3985-Lfunc_begin0 - .quad Lset13226 -.set Lset13227, Ltmp3986-Lfunc_begin0 - .quad Lset13227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13228, Ltmp4011-Lfunc_begin0 - .quad Lset13228 -.set Lset13229, Ltmp4012-Lfunc_begin0 - .quad Lset13229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13230, Ltmp4046-Lfunc_begin0 - .quad Lset13230 -.set Lset13231, Ltmp4047-Lfunc_begin0 - .quad Lset13231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13232, Ltmp4084-Lfunc_begin0 - .quad Lset13232 -.set Lset13233, Ltmp4085-Lfunc_begin0 - .quad Lset13233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13234, Ltmp4106-Lfunc_begin0 - .quad Lset13234 -.set Lset13235, Ltmp4107-Lfunc_begin0 - .quad Lset13235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13236, Ltmp4146-Lfunc_begin0 - .quad Lset13236 -.set Lset13237, Ltmp4147-Lfunc_begin0 - .quad Lset13237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13238, Ltmp4187-Lfunc_begin0 - .quad Lset13238 -.set Lset13239, Ltmp4188-Lfunc_begin0 - .quad Lset13239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13240, Ltmp4227-Lfunc_begin0 - .quad Lset13240 -.set Lset13241, Ltmp4228-Lfunc_begin0 - .quad Lset13241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13242, Ltmp4268-Lfunc_begin0 - .quad Lset13242 -.set Lset13243, Ltmp4269-Lfunc_begin0 - .quad Lset13243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13244, Ltmp4308-Lfunc_begin0 - .quad Lset13244 -.set Lset13245, Ltmp4309-Lfunc_begin0 - .quad Lset13245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13246, Ltmp4349-Lfunc_begin0 - .quad Lset13246 -.set Lset13247, Ltmp4350-Lfunc_begin0 - .quad Lset13247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13248, Ltmp4380-Lfunc_begin0 - .quad Lset13248 -.set Lset13249, Ltmp4381-Lfunc_begin0 - .quad Lset13249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13250, Ltmp4412-Lfunc_begin0 - .quad Lset13250 -.set Lset13251, Ltmp4414-Lfunc_begin0 - .quad Lset13251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13252, Ltmp4454-Lfunc_begin0 - .quad Lset13252 -.set Lset13253, Ltmp4455-Lfunc_begin0 - .quad Lset13253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13254, Ltmp4495-Lfunc_begin0 - .quad Lset13254 -.set Lset13255, Ltmp4496-Lfunc_begin0 - .quad Lset13255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13256, Ltmp4579-Lfunc_begin0 - .quad Lset13256 -.set Lset13257, Ltmp4581-Lfunc_begin0 - .quad Lset13257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13258, Ltmp4649-Lfunc_begin0 - .quad Lset13258 -.set Lset13259, Ltmp4651-Lfunc_begin0 - .quad Lset13259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13260, Ltmp4717-Lfunc_begin0 - .quad Lset13260 -.set Lset13261, Ltmp4719-Lfunc_begin0 - .quad Lset13261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13262, Ltmp4783-Lfunc_begin0 - .quad Lset13262 -.set Lset13263, Ltmp4784-Lfunc_begin0 - .quad Lset13263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13264, Ltmp4813-Lfunc_begin0 - .quad Lset13264 -.set Lset13265, Ltmp4814-Lfunc_begin0 - .quad Lset13265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13266, Ltmp4843-Lfunc_begin0 - .quad Lset13266 -.set Lset13267, Ltmp4844-Lfunc_begin0 - .quad Lset13267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13268, Ltmp4902-Lfunc_begin0 - .quad Lset13268 -.set Lset13269, Ltmp4903-Lfunc_begin0 - .quad Lset13269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13270, Ltmp4943-Lfunc_begin0 - .quad Lset13270 -.set Lset13271, Ltmp4944-Lfunc_begin0 - .quad Lset13271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13272, Ltmp5000-Lfunc_begin0 - .quad Lset13272 -.set Lset13273, Ltmp5001-Lfunc_begin0 - .quad Lset13273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13274, Ltmp5040-Lfunc_begin0 - .quad Lset13274 -.set Lset13275, Ltmp5041-Lfunc_begin0 - .quad Lset13275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13276, Ltmp5078-Lfunc_begin0 - .quad Lset13276 -.set Lset13277, Ltmp5079-Lfunc_begin0 - .quad Lset13277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13278, Ltmp5114-Lfunc_begin0 - .quad Lset13278 -.set Lset13279, Ltmp5115-Lfunc_begin0 - .quad Lset13279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13280, Ltmp5146-Lfunc_begin0 - .quad Lset13280 -.set Lset13281, Ltmp5147-Lfunc_begin0 - .quad Lset13281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13282, Ltmp5178-Lfunc_begin0 - .quad Lset13282 -.set Lset13283, Ltmp5179-Lfunc_begin0 - .quad Lset13283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13284, Ltmp5210-Lfunc_begin0 - .quad Lset13284 -.set Lset13285, Ltmp5211-Lfunc_begin0 - .quad Lset13285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13286, Ltmp5228-Lfunc_begin0 - .quad Lset13286 -.set Lset13287, Ltmp5229-Lfunc_begin0 - .quad Lset13287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13288, Ltmp5246-Lfunc_begin0 - .quad Lset13288 -.set Lset13289, Ltmp5247-Lfunc_begin0 - .quad Lset13289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13290, Ltmp5271-Lfunc_begin0 - .quad Lset13290 -.set Lset13291, Ltmp5272-Lfunc_begin0 - .quad Lset13291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13292, Ltmp5296-Lfunc_begin0 - .quad Lset13292 -.set Lset13293, Ltmp5297-Lfunc_begin0 - .quad Lset13293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13294, Ltmp5322-Lfunc_begin0 - .quad Lset13294 -.set Lset13295, Ltmp5323-Lfunc_begin0 - .quad Lset13295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13296, Ltmp5347-Lfunc_begin0 - .quad Lset13296 -.set Lset13297, Ltmp5348-Lfunc_begin0 - .quad Lset13297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13298, Ltmp5372-Lfunc_begin0 - .quad Lset13298 -.set Lset13299, Ltmp5373-Lfunc_begin0 - .quad Lset13299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13300, Ltmp5397-Lfunc_begin0 - .quad Lset13300 -.set Lset13301, Ltmp5398-Lfunc_begin0 - .quad Lset13301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13302, Ltmp5422-Lfunc_begin0 - .quad Lset13302 -.set Lset13303, Ltmp5423-Lfunc_begin0 - .quad Lset13303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13304, Ltmp5447-Lfunc_begin0 - .quad Lset13304 -.set Lset13305, Ltmp5448-Lfunc_begin0 - .quad Lset13305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13306, Ltmp5472-Lfunc_begin0 - .quad Lset13306 -.set Lset13307, Ltmp5473-Lfunc_begin0 - .quad Lset13307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13308, Ltmp5498-Lfunc_begin0 - .quad Lset13308 -.set Lset13309, Ltmp5499-Lfunc_begin0 - .quad Lset13309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13310, Ltmp5523-Lfunc_begin0 - .quad Lset13310 -.set Lset13311, Ltmp5524-Lfunc_begin0 - .quad Lset13311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13312, Ltmp5548-Lfunc_begin0 - .quad Lset13312 -.set Lset13313, Ltmp5549-Lfunc_begin0 - .quad Lset13313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13314, Ltmp5573-Lfunc_begin0 - .quad Lset13314 -.set Lset13315, Ltmp5574-Lfunc_begin0 - .quad Lset13315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13316, Ltmp5598-Lfunc_begin0 - .quad Lset13316 -.set Lset13317, Ltmp5599-Lfunc_begin0 - .quad Lset13317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13318, Ltmp5631-Lfunc_begin0 - .quad Lset13318 -.set Lset13319, Ltmp5632-Lfunc_begin0 - .quad Lset13319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13320, Ltmp5662-Lfunc_begin0 - .quad Lset13320 -.set Lset13321, Ltmp5663-Lfunc_begin0 - .quad Lset13321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13322, Ltmp5687-Lfunc_begin0 - .quad Lset13322 -.set Lset13323, Ltmp5688-Lfunc_begin0 - .quad Lset13323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13324, Ltmp5712-Lfunc_begin0 - .quad Lset13324 -.set Lset13325, Ltmp5713-Lfunc_begin0 - .quad Lset13325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13326, Ltmp5737-Lfunc_begin0 - .quad Lset13326 -.set Lset13327, Ltmp5738-Lfunc_begin0 - .quad Lset13327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13328, Ltmp5767-Lfunc_begin0 - .quad Lset13328 -.set Lset13329, Ltmp5768-Lfunc_begin0 - .quad Lset13329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13330, Ltmp5795-Lfunc_begin0 - .quad Lset13330 -.set Lset13331, Ltmp5796-Lfunc_begin0 - .quad Lset13331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13332, Ltmp5814-Lfunc_begin0 - .quad Lset13332 -.set Lset13333, Ltmp5815-Lfunc_begin0 - .quad Lset13333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13334, Ltmp5833-Lfunc_begin0 - .quad Lset13334 -.set Lset13335, Ltmp5834-Lfunc_begin0 - .quad Lset13335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13336, Ltmp5852-Lfunc_begin0 - .quad Lset13336 -.set Lset13337, Ltmp5853-Lfunc_begin0 - .quad Lset13337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13338, Ltmp5871-Lfunc_begin0 - .quad Lset13338 -.set Lset13339, Ltmp5872-Lfunc_begin0 - .quad Lset13339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13340, Ltmp5890-Lfunc_begin0 - .quad Lset13340 -.set Lset13341, Ltmp5891-Lfunc_begin0 - .quad Lset13341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13342, Ltmp5920-Lfunc_begin0 - .quad Lset13342 -.set Lset13343, Ltmp5921-Lfunc_begin0 - .quad Lset13343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13344, Ltmp5938-Lfunc_begin0 - .quad Lset13344 -.set Lset13345, Ltmp5940-Lfunc_begin0 - .quad Lset13345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc231: -.set Lset13346, Ltmp1186-Lfunc_begin0 - .quad Lset13346 -.set Lset13347, Ltmp1187-Lfunc_begin0 - .quad Lset13347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13348, Ltmp1215-Lfunc_begin0 - .quad Lset13348 -.set Lset13349, Ltmp1216-Lfunc_begin0 - .quad Lset13349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13350, Ltmp1237-Lfunc_begin0 - .quad Lset13350 -.set Lset13351, Ltmp1238-Lfunc_begin0 - .quad Lset13351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13352, Ltmp1260-Lfunc_begin0 - .quad Lset13352 -.set Lset13353, Ltmp1261-Lfunc_begin0 - .quad Lset13353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13354, Ltmp1281-Lfunc_begin0 - .quad Lset13354 -.set Lset13355, Ltmp1282-Lfunc_begin0 - .quad Lset13355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13356, Ltmp1314-Lfunc_begin0 - .quad Lset13356 -.set Lset13357, Ltmp1315-Lfunc_begin0 - .quad Lset13357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13358, Ltmp1338-Lfunc_begin0 - .quad Lset13358 -.set Lset13359, Ltmp1339-Lfunc_begin0 - .quad Lset13359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13360, Ltmp1368-Lfunc_begin0 - .quad Lset13360 -.set Lset13361, Ltmp1369-Lfunc_begin0 - .quad Lset13361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13362, Ltmp1462-Lfunc_begin0 - .quad Lset13362 -.set Lset13363, Ltmp1464-Lfunc_begin0 - .quad Lset13363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13364, Ltmp1557-Lfunc_begin0 - .quad Lset13364 -.set Lset13365, Ltmp1559-Lfunc_begin0 - .quad Lset13365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13366, Ltmp1713-Lfunc_begin0 - .quad Lset13366 -.set Lset13367, Ltmp1715-Lfunc_begin0 - .quad Lset13367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13368, Ltmp1864-Lfunc_begin0 - .quad Lset13368 -.set Lset13369, Ltmp1866-Lfunc_begin0 - .quad Lset13369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13370, Ltmp2004-Lfunc_begin0 - .quad Lset13370 -.set Lset13371, Ltmp2006-Lfunc_begin0 - .quad Lset13371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13372, Ltmp2074-Lfunc_begin0 - .quad Lset13372 -.set Lset13373, Ltmp2076-Lfunc_begin0 - .quad Lset13373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13374, Ltmp2120-Lfunc_begin0 - .quad Lset13374 -.set Lset13375, Ltmp2121-Lfunc_begin0 - .quad Lset13375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13376, Ltmp2193-Lfunc_begin0 - .quad Lset13376 -.set Lset13377, Ltmp2195-Lfunc_begin0 - .quad Lset13377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13378, Ltmp2253-Lfunc_begin0 - .quad Lset13378 -.set Lset13379, Ltmp2255-Lfunc_begin0 - .quad Lset13379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13380, Ltmp2302-Lfunc_begin0 - .quad Lset13380 -.set Lset13381, Ltmp2304-Lfunc_begin0 - .quad Lset13381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13382, Ltmp2351-Lfunc_begin0 - .quad Lset13382 -.set Lset13383, Ltmp2353-Lfunc_begin0 - .quad Lset13383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13384, Ltmp2400-Lfunc_begin0 - .quad Lset13384 -.set Lset13385, Ltmp2402-Lfunc_begin0 - .quad Lset13385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13386, Ltmp2444-Lfunc_begin0 - .quad Lset13386 -.set Lset13387, Ltmp2446-Lfunc_begin0 - .quad Lset13387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13388, Ltmp2499-Lfunc_begin0 - .quad Lset13388 -.set Lset13389, Ltmp2501-Lfunc_begin0 - .quad Lset13389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13390, Ltmp2554-Lfunc_begin0 - .quad Lset13390 -.set Lset13391, Ltmp2556-Lfunc_begin0 - .quad Lset13391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13392, Ltmp2609-Lfunc_begin0 - .quad Lset13392 -.set Lset13393, Ltmp2611-Lfunc_begin0 - .quad Lset13393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13394, Ltmp2673-Lfunc_begin0 - .quad Lset13394 -.set Lset13395, Ltmp2675-Lfunc_begin0 - .quad Lset13395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13396, Ltmp2738-Lfunc_begin0 - .quad Lset13396 -.set Lset13397, Ltmp2740-Lfunc_begin0 - .quad Lset13397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13398, Ltmp2811-Lfunc_begin0 - .quad Lset13398 -.set Lset13399, Ltmp2813-Lfunc_begin0 - .quad Lset13399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13400, Ltmp2871-Lfunc_begin0 - .quad Lset13400 -.set Lset13401, Ltmp2873-Lfunc_begin0 - .quad Lset13401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13402, Ltmp2922-Lfunc_begin0 - .quad Lset13402 -.set Lset13403, Ltmp2924-Lfunc_begin0 - .quad Lset13403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13404, Ltmp2957-Lfunc_begin0 - .quad Lset13404 -.set Lset13405, Ltmp2958-Lfunc_begin0 - .quad Lset13405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13406, Ltmp2997-Lfunc_begin0 - .quad Lset13406 -.set Lset13407, Ltmp2999-Lfunc_begin0 - .quad Lset13407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13408, Ltmp3024-Lfunc_begin0 - .quad Lset13408 -.set Lset13409, Ltmp3025-Lfunc_begin0 - .quad Lset13409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13410, Ltmp3047-Lfunc_begin0 - .quad Lset13410 -.set Lset13411, Ltmp3048-Lfunc_begin0 - .quad Lset13411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13412, Ltmp3096-Lfunc_begin0 - .quad Lset13412 -.set Lset13413, Ltmp3097-Lfunc_begin0 - .quad Lset13413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13414, Ltmp3120-Lfunc_begin0 - .quad Lset13414 -.set Lset13415, Ltmp3122-Lfunc_begin0 - .quad Lset13415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13416, Ltmp3161-Lfunc_begin0 - .quad Lset13416 -.set Lset13417, Ltmp3163-Lfunc_begin0 - .quad Lset13417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13418, Ltmp3227-Lfunc_begin0 - .quad Lset13418 -.set Lset13419, Ltmp3228-Lfunc_begin0 - .quad Lset13419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13420, Ltmp3292-Lfunc_begin0 - .quad Lset13420 -.set Lset13421, Ltmp3293-Lfunc_begin0 - .quad Lset13421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13422, Ltmp3329-Lfunc_begin0 - .quad Lset13422 -.set Lset13423, Ltmp3330-Lfunc_begin0 - .quad Lset13423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13424, Ltmp3375-Lfunc_begin0 - .quad Lset13424 -.set Lset13425, Ltmp3376-Lfunc_begin0 - .quad Lset13425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13426, Ltmp3407-Lfunc_begin0 - .quad Lset13426 -.set Lset13427, Ltmp3408-Lfunc_begin0 - .quad Lset13427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13428, Ltmp3435-Lfunc_begin0 - .quad Lset13428 -.set Lset13429, Ltmp3436-Lfunc_begin0 - .quad Lset13429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13430, Ltmp3537-Lfunc_begin0 - .quad Lset13430 -.set Lset13431, Ltmp3538-Lfunc_begin0 - .quad Lset13431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13432, Ltmp3638-Lfunc_begin0 - .quad Lset13432 -.set Lset13433, Ltmp3640-Lfunc_begin0 - .quad Lset13433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13434, Ltmp3685-Lfunc_begin0 - .quad Lset13434 -.set Lset13435, Ltmp3686-Lfunc_begin0 - .quad Lset13435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13436, Ltmp3807-Lfunc_begin0 - .quad Lset13436 -.set Lset13437, Ltmp3809-Lfunc_begin0 - .quad Lset13437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13438, Ltmp3864-Lfunc_begin0 - .quad Lset13438 -.set Lset13439, Ltmp3865-Lfunc_begin0 - .quad Lset13439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13440, Ltmp3933-Lfunc_begin0 - .quad Lset13440 -.set Lset13441, Ltmp3934-Lfunc_begin0 - .quad Lset13441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13442, Ltmp3959-Lfunc_begin0 - .quad Lset13442 -.set Lset13443, Ltmp3960-Lfunc_begin0 - .quad Lset13443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13444, Ltmp3985-Lfunc_begin0 - .quad Lset13444 -.set Lset13445, Ltmp3986-Lfunc_begin0 - .quad Lset13445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13446, Ltmp4011-Lfunc_begin0 - .quad Lset13446 -.set Lset13447, Ltmp4012-Lfunc_begin0 - .quad Lset13447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13448, Ltmp4046-Lfunc_begin0 - .quad Lset13448 -.set Lset13449, Ltmp4047-Lfunc_begin0 - .quad Lset13449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13450, Ltmp4084-Lfunc_begin0 - .quad Lset13450 -.set Lset13451, Ltmp4085-Lfunc_begin0 - .quad Lset13451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13452, Ltmp4106-Lfunc_begin0 - .quad Lset13452 -.set Lset13453, Ltmp4107-Lfunc_begin0 - .quad Lset13453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13454, Ltmp4146-Lfunc_begin0 - .quad Lset13454 -.set Lset13455, Ltmp4147-Lfunc_begin0 - .quad Lset13455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13456, Ltmp4187-Lfunc_begin0 - .quad Lset13456 -.set Lset13457, Ltmp4188-Lfunc_begin0 - .quad Lset13457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13458, Ltmp4227-Lfunc_begin0 - .quad Lset13458 -.set Lset13459, Ltmp4228-Lfunc_begin0 - .quad Lset13459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13460, Ltmp4268-Lfunc_begin0 - .quad Lset13460 -.set Lset13461, Ltmp4269-Lfunc_begin0 - .quad Lset13461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13462, Ltmp4308-Lfunc_begin0 - .quad Lset13462 -.set Lset13463, Ltmp4309-Lfunc_begin0 - .quad Lset13463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13464, Ltmp4349-Lfunc_begin0 - .quad Lset13464 -.set Lset13465, Ltmp4350-Lfunc_begin0 - .quad Lset13465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13466, Ltmp4380-Lfunc_begin0 - .quad Lset13466 -.set Lset13467, Ltmp4381-Lfunc_begin0 - .quad Lset13467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13468, Ltmp4412-Lfunc_begin0 - .quad Lset13468 -.set Lset13469, Ltmp4414-Lfunc_begin0 - .quad Lset13469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13470, Ltmp4454-Lfunc_begin0 - .quad Lset13470 -.set Lset13471, Ltmp4455-Lfunc_begin0 - .quad Lset13471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13472, Ltmp4495-Lfunc_begin0 - .quad Lset13472 -.set Lset13473, Ltmp4496-Lfunc_begin0 - .quad Lset13473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13474, Ltmp4579-Lfunc_begin0 - .quad Lset13474 -.set Lset13475, Ltmp4581-Lfunc_begin0 - .quad Lset13475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13476, Ltmp4649-Lfunc_begin0 - .quad Lset13476 -.set Lset13477, Ltmp4651-Lfunc_begin0 - .quad Lset13477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13478, Ltmp4717-Lfunc_begin0 - .quad Lset13478 -.set Lset13479, Ltmp4719-Lfunc_begin0 - .quad Lset13479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13480, Ltmp4783-Lfunc_begin0 - .quad Lset13480 -.set Lset13481, Ltmp4784-Lfunc_begin0 - .quad Lset13481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13482, Ltmp4813-Lfunc_begin0 - .quad Lset13482 -.set Lset13483, Ltmp4814-Lfunc_begin0 - .quad Lset13483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13484, Ltmp4843-Lfunc_begin0 - .quad Lset13484 -.set Lset13485, Ltmp4844-Lfunc_begin0 - .quad Lset13485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13486, Ltmp4902-Lfunc_begin0 - .quad Lset13486 -.set Lset13487, Ltmp4903-Lfunc_begin0 - .quad Lset13487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13488, Ltmp4943-Lfunc_begin0 - .quad Lset13488 -.set Lset13489, Ltmp4944-Lfunc_begin0 - .quad Lset13489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13490, Ltmp5000-Lfunc_begin0 - .quad Lset13490 -.set Lset13491, Ltmp5001-Lfunc_begin0 - .quad Lset13491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13492, Ltmp5040-Lfunc_begin0 - .quad Lset13492 -.set Lset13493, Ltmp5041-Lfunc_begin0 - .quad Lset13493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13494, Ltmp5078-Lfunc_begin0 - .quad Lset13494 -.set Lset13495, Ltmp5079-Lfunc_begin0 - .quad Lset13495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13496, Ltmp5114-Lfunc_begin0 - .quad Lset13496 -.set Lset13497, Ltmp5115-Lfunc_begin0 - .quad Lset13497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13498, Ltmp5146-Lfunc_begin0 - .quad Lset13498 -.set Lset13499, Ltmp5147-Lfunc_begin0 - .quad Lset13499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13500, Ltmp5178-Lfunc_begin0 - .quad Lset13500 -.set Lset13501, Ltmp5179-Lfunc_begin0 - .quad Lset13501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13502, Ltmp5210-Lfunc_begin0 - .quad Lset13502 -.set Lset13503, Ltmp5211-Lfunc_begin0 - .quad Lset13503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13504, Ltmp5228-Lfunc_begin0 - .quad Lset13504 -.set Lset13505, Ltmp5229-Lfunc_begin0 - .quad Lset13505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13506, Ltmp5246-Lfunc_begin0 - .quad Lset13506 -.set Lset13507, Ltmp5247-Lfunc_begin0 - .quad Lset13507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13508, Ltmp5271-Lfunc_begin0 - .quad Lset13508 -.set Lset13509, Ltmp5272-Lfunc_begin0 - .quad Lset13509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13510, Ltmp5296-Lfunc_begin0 - .quad Lset13510 -.set Lset13511, Ltmp5297-Lfunc_begin0 - .quad Lset13511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13512, Ltmp5322-Lfunc_begin0 - .quad Lset13512 -.set Lset13513, Ltmp5323-Lfunc_begin0 - .quad Lset13513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13514, Ltmp5347-Lfunc_begin0 - .quad Lset13514 -.set Lset13515, Ltmp5348-Lfunc_begin0 - .quad Lset13515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13516, Ltmp5372-Lfunc_begin0 - .quad Lset13516 -.set Lset13517, Ltmp5373-Lfunc_begin0 - .quad Lset13517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13518, Ltmp5397-Lfunc_begin0 - .quad Lset13518 -.set Lset13519, Ltmp5398-Lfunc_begin0 - .quad Lset13519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13520, Ltmp5422-Lfunc_begin0 - .quad Lset13520 -.set Lset13521, Ltmp5423-Lfunc_begin0 - .quad Lset13521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13522, Ltmp5447-Lfunc_begin0 - .quad Lset13522 -.set Lset13523, Ltmp5448-Lfunc_begin0 - .quad Lset13523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13524, Ltmp5472-Lfunc_begin0 - .quad Lset13524 -.set Lset13525, Ltmp5473-Lfunc_begin0 - .quad Lset13525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13526, Ltmp5498-Lfunc_begin0 - .quad Lset13526 -.set Lset13527, Ltmp5499-Lfunc_begin0 - .quad Lset13527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13528, Ltmp5523-Lfunc_begin0 - .quad Lset13528 -.set Lset13529, Ltmp5524-Lfunc_begin0 - .quad Lset13529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13530, Ltmp5548-Lfunc_begin0 - .quad Lset13530 -.set Lset13531, Ltmp5549-Lfunc_begin0 - .quad Lset13531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13532, Ltmp5573-Lfunc_begin0 - .quad Lset13532 -.set Lset13533, Ltmp5574-Lfunc_begin0 - .quad Lset13533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13534, Ltmp5598-Lfunc_begin0 - .quad Lset13534 -.set Lset13535, Ltmp5599-Lfunc_begin0 - .quad Lset13535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13536, Ltmp5631-Lfunc_begin0 - .quad Lset13536 -.set Lset13537, Ltmp5632-Lfunc_begin0 - .quad Lset13537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13538, Ltmp5662-Lfunc_begin0 - .quad Lset13538 -.set Lset13539, Ltmp5663-Lfunc_begin0 - .quad Lset13539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13540, Ltmp5687-Lfunc_begin0 - .quad Lset13540 -.set Lset13541, Ltmp5688-Lfunc_begin0 - .quad Lset13541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13542, Ltmp5712-Lfunc_begin0 - .quad Lset13542 -.set Lset13543, Ltmp5713-Lfunc_begin0 - .quad Lset13543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13544, Ltmp5737-Lfunc_begin0 - .quad Lset13544 -.set Lset13545, Ltmp5738-Lfunc_begin0 - .quad Lset13545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13546, Ltmp5767-Lfunc_begin0 - .quad Lset13546 -.set Lset13547, Ltmp5768-Lfunc_begin0 - .quad Lset13547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13548, Ltmp5795-Lfunc_begin0 - .quad Lset13548 -.set Lset13549, Ltmp5796-Lfunc_begin0 - .quad Lset13549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13550, Ltmp5814-Lfunc_begin0 - .quad Lset13550 -.set Lset13551, Ltmp5815-Lfunc_begin0 - .quad Lset13551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13552, Ltmp5833-Lfunc_begin0 - .quad Lset13552 -.set Lset13553, Ltmp5834-Lfunc_begin0 - .quad Lset13553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13554, Ltmp5852-Lfunc_begin0 - .quad Lset13554 -.set Lset13555, Ltmp5853-Lfunc_begin0 - .quad Lset13555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13556, Ltmp5871-Lfunc_begin0 - .quad Lset13556 -.set Lset13557, Ltmp5872-Lfunc_begin0 - .quad Lset13557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13558, Ltmp5890-Lfunc_begin0 - .quad Lset13558 -.set Lset13559, Ltmp5891-Lfunc_begin0 - .quad Lset13559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13560, Ltmp5920-Lfunc_begin0 - .quad Lset13560 -.set Lset13561, Ltmp5921-Lfunc_begin0 - .quad Lset13561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc232: -.set Lset13562, Ltmp1186-Lfunc_begin0 - .quad Lset13562 -.set Lset13563, Ltmp1187-Lfunc_begin0 - .quad Lset13563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13564, Ltmp1215-Lfunc_begin0 - .quad Lset13564 -.set Lset13565, Ltmp1216-Lfunc_begin0 - .quad Lset13565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13566, Ltmp1237-Lfunc_begin0 - .quad Lset13566 -.set Lset13567, Ltmp1238-Lfunc_begin0 - .quad Lset13567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13568, Ltmp1260-Lfunc_begin0 - .quad Lset13568 -.set Lset13569, Ltmp1261-Lfunc_begin0 - .quad Lset13569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13570, Ltmp1281-Lfunc_begin0 - .quad Lset13570 -.set Lset13571, Ltmp1282-Lfunc_begin0 - .quad Lset13571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13572, Ltmp1314-Lfunc_begin0 - .quad Lset13572 -.set Lset13573, Ltmp1315-Lfunc_begin0 - .quad Lset13573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13574, Ltmp1338-Lfunc_begin0 - .quad Lset13574 -.set Lset13575, Ltmp1339-Lfunc_begin0 - .quad Lset13575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13576, Ltmp1368-Lfunc_begin0 - .quad Lset13576 -.set Lset13577, Ltmp1369-Lfunc_begin0 - .quad Lset13577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13578, Ltmp1462-Lfunc_begin0 - .quad Lset13578 -.set Lset13579, Ltmp1464-Lfunc_begin0 - .quad Lset13579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13580, Ltmp1557-Lfunc_begin0 - .quad Lset13580 -.set Lset13581, Ltmp1559-Lfunc_begin0 - .quad Lset13581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13582, Ltmp1713-Lfunc_begin0 - .quad Lset13582 -.set Lset13583, Ltmp1715-Lfunc_begin0 - .quad Lset13583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13584, Ltmp1864-Lfunc_begin0 - .quad Lset13584 -.set Lset13585, Ltmp1866-Lfunc_begin0 - .quad Lset13585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13586, Ltmp2004-Lfunc_begin0 - .quad Lset13586 -.set Lset13587, Ltmp2006-Lfunc_begin0 - .quad Lset13587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13588, Ltmp2074-Lfunc_begin0 - .quad Lset13588 -.set Lset13589, Ltmp2076-Lfunc_begin0 - .quad Lset13589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13590, Ltmp2120-Lfunc_begin0 - .quad Lset13590 -.set Lset13591, Ltmp2121-Lfunc_begin0 - .quad Lset13591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13592, Ltmp2193-Lfunc_begin0 - .quad Lset13592 -.set Lset13593, Ltmp2195-Lfunc_begin0 - .quad Lset13593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13594, Ltmp2253-Lfunc_begin0 - .quad Lset13594 -.set Lset13595, Ltmp2255-Lfunc_begin0 - .quad Lset13595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13596, Ltmp2302-Lfunc_begin0 - .quad Lset13596 -.set Lset13597, Ltmp2304-Lfunc_begin0 - .quad Lset13597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13598, Ltmp2351-Lfunc_begin0 - .quad Lset13598 -.set Lset13599, Ltmp2353-Lfunc_begin0 - .quad Lset13599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13600, Ltmp2400-Lfunc_begin0 - .quad Lset13600 -.set Lset13601, Ltmp2402-Lfunc_begin0 - .quad Lset13601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13602, Ltmp2444-Lfunc_begin0 - .quad Lset13602 -.set Lset13603, Ltmp2446-Lfunc_begin0 - .quad Lset13603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13604, Ltmp2499-Lfunc_begin0 - .quad Lset13604 -.set Lset13605, Ltmp2501-Lfunc_begin0 - .quad Lset13605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13606, Ltmp2554-Lfunc_begin0 - .quad Lset13606 -.set Lset13607, Ltmp2556-Lfunc_begin0 - .quad Lset13607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13608, Ltmp2609-Lfunc_begin0 - .quad Lset13608 -.set Lset13609, Ltmp2611-Lfunc_begin0 - .quad Lset13609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13610, Ltmp2673-Lfunc_begin0 - .quad Lset13610 -.set Lset13611, Ltmp2675-Lfunc_begin0 - .quad Lset13611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13612, Ltmp2738-Lfunc_begin0 - .quad Lset13612 -.set Lset13613, Ltmp2740-Lfunc_begin0 - .quad Lset13613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13614, Ltmp2811-Lfunc_begin0 - .quad Lset13614 -.set Lset13615, Ltmp2813-Lfunc_begin0 - .quad Lset13615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13616, Ltmp2871-Lfunc_begin0 - .quad Lset13616 -.set Lset13617, Ltmp2873-Lfunc_begin0 - .quad Lset13617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13618, Ltmp2922-Lfunc_begin0 - .quad Lset13618 -.set Lset13619, Ltmp2924-Lfunc_begin0 - .quad Lset13619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13620, Ltmp2957-Lfunc_begin0 - .quad Lset13620 -.set Lset13621, Ltmp2958-Lfunc_begin0 - .quad Lset13621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13622, Ltmp2997-Lfunc_begin0 - .quad Lset13622 -.set Lset13623, Ltmp2999-Lfunc_begin0 - .quad Lset13623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13624, Ltmp3024-Lfunc_begin0 - .quad Lset13624 -.set Lset13625, Ltmp3025-Lfunc_begin0 - .quad Lset13625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13626, Ltmp3047-Lfunc_begin0 - .quad Lset13626 -.set Lset13627, Ltmp3048-Lfunc_begin0 - .quad Lset13627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13628, Ltmp3096-Lfunc_begin0 - .quad Lset13628 -.set Lset13629, Ltmp3097-Lfunc_begin0 - .quad Lset13629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13630, Ltmp3120-Lfunc_begin0 - .quad Lset13630 -.set Lset13631, Ltmp3122-Lfunc_begin0 - .quad Lset13631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13632, Ltmp3161-Lfunc_begin0 - .quad Lset13632 -.set Lset13633, Ltmp3163-Lfunc_begin0 - .quad Lset13633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13634, Ltmp3227-Lfunc_begin0 - .quad Lset13634 -.set Lset13635, Ltmp3228-Lfunc_begin0 - .quad Lset13635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13636, Ltmp3292-Lfunc_begin0 - .quad Lset13636 -.set Lset13637, Ltmp3293-Lfunc_begin0 - .quad Lset13637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13638, Ltmp3329-Lfunc_begin0 - .quad Lset13638 -.set Lset13639, Ltmp3330-Lfunc_begin0 - .quad Lset13639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13640, Ltmp3375-Lfunc_begin0 - .quad Lset13640 -.set Lset13641, Ltmp3376-Lfunc_begin0 - .quad Lset13641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13642, Ltmp3407-Lfunc_begin0 - .quad Lset13642 -.set Lset13643, Ltmp3408-Lfunc_begin0 - .quad Lset13643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13644, Ltmp3435-Lfunc_begin0 - .quad Lset13644 -.set Lset13645, Ltmp3436-Lfunc_begin0 - .quad Lset13645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13646, Ltmp3537-Lfunc_begin0 - .quad Lset13646 -.set Lset13647, Ltmp3538-Lfunc_begin0 - .quad Lset13647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13648, Ltmp3638-Lfunc_begin0 - .quad Lset13648 -.set Lset13649, Ltmp3640-Lfunc_begin0 - .quad Lset13649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13650, Ltmp3685-Lfunc_begin0 - .quad Lset13650 -.set Lset13651, Ltmp3686-Lfunc_begin0 - .quad Lset13651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13652, Ltmp3807-Lfunc_begin0 - .quad Lset13652 -.set Lset13653, Ltmp3809-Lfunc_begin0 - .quad Lset13653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13654, Ltmp3864-Lfunc_begin0 - .quad Lset13654 -.set Lset13655, Ltmp3865-Lfunc_begin0 - .quad Lset13655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13656, Ltmp3933-Lfunc_begin0 - .quad Lset13656 -.set Lset13657, Ltmp3934-Lfunc_begin0 - .quad Lset13657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13658, Ltmp3959-Lfunc_begin0 - .quad Lset13658 -.set Lset13659, Ltmp3960-Lfunc_begin0 - .quad Lset13659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13660, Ltmp3985-Lfunc_begin0 - .quad Lset13660 -.set Lset13661, Ltmp3986-Lfunc_begin0 - .quad Lset13661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13662, Ltmp4011-Lfunc_begin0 - .quad Lset13662 -.set Lset13663, Ltmp4012-Lfunc_begin0 - .quad Lset13663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13664, Ltmp4046-Lfunc_begin0 - .quad Lset13664 -.set Lset13665, Ltmp4047-Lfunc_begin0 - .quad Lset13665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13666, Ltmp4084-Lfunc_begin0 - .quad Lset13666 -.set Lset13667, Ltmp4085-Lfunc_begin0 - .quad Lset13667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13668, Ltmp4106-Lfunc_begin0 - .quad Lset13668 -.set Lset13669, Ltmp4107-Lfunc_begin0 - .quad Lset13669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13670, Ltmp4146-Lfunc_begin0 - .quad Lset13670 -.set Lset13671, Ltmp4147-Lfunc_begin0 - .quad Lset13671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13672, Ltmp4187-Lfunc_begin0 - .quad Lset13672 -.set Lset13673, Ltmp4188-Lfunc_begin0 - .quad Lset13673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13674, Ltmp4227-Lfunc_begin0 - .quad Lset13674 -.set Lset13675, Ltmp4228-Lfunc_begin0 - .quad Lset13675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13676, Ltmp4268-Lfunc_begin0 - .quad Lset13676 -.set Lset13677, Ltmp4269-Lfunc_begin0 - .quad Lset13677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13678, Ltmp4308-Lfunc_begin0 - .quad Lset13678 -.set Lset13679, Ltmp4309-Lfunc_begin0 - .quad Lset13679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13680, Ltmp4349-Lfunc_begin0 - .quad Lset13680 -.set Lset13681, Ltmp4350-Lfunc_begin0 - .quad Lset13681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13682, Ltmp4380-Lfunc_begin0 - .quad Lset13682 -.set Lset13683, Ltmp4381-Lfunc_begin0 - .quad Lset13683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13684, Ltmp4412-Lfunc_begin0 - .quad Lset13684 -.set Lset13685, Ltmp4414-Lfunc_begin0 - .quad Lset13685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13686, Ltmp4454-Lfunc_begin0 - .quad Lset13686 -.set Lset13687, Ltmp4455-Lfunc_begin0 - .quad Lset13687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13688, Ltmp4495-Lfunc_begin0 - .quad Lset13688 -.set Lset13689, Ltmp4496-Lfunc_begin0 - .quad Lset13689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13690, Ltmp4579-Lfunc_begin0 - .quad Lset13690 -.set Lset13691, Ltmp4581-Lfunc_begin0 - .quad Lset13691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13692, Ltmp4649-Lfunc_begin0 - .quad Lset13692 -.set Lset13693, Ltmp4651-Lfunc_begin0 - .quad Lset13693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13694, Ltmp4717-Lfunc_begin0 - .quad Lset13694 -.set Lset13695, Ltmp4719-Lfunc_begin0 - .quad Lset13695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13696, Ltmp4783-Lfunc_begin0 - .quad Lset13696 -.set Lset13697, Ltmp4784-Lfunc_begin0 - .quad Lset13697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13698, Ltmp4813-Lfunc_begin0 - .quad Lset13698 -.set Lset13699, Ltmp4814-Lfunc_begin0 - .quad Lset13699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13700, Ltmp4843-Lfunc_begin0 - .quad Lset13700 -.set Lset13701, Ltmp4844-Lfunc_begin0 - .quad Lset13701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13702, Ltmp4902-Lfunc_begin0 - .quad Lset13702 -.set Lset13703, Ltmp4903-Lfunc_begin0 - .quad Lset13703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13704, Ltmp4943-Lfunc_begin0 - .quad Lset13704 -.set Lset13705, Ltmp4944-Lfunc_begin0 - .quad Lset13705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13706, Ltmp5000-Lfunc_begin0 - .quad Lset13706 -.set Lset13707, Ltmp5001-Lfunc_begin0 - .quad Lset13707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13708, Ltmp5040-Lfunc_begin0 - .quad Lset13708 -.set Lset13709, Ltmp5041-Lfunc_begin0 - .quad Lset13709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13710, Ltmp5078-Lfunc_begin0 - .quad Lset13710 -.set Lset13711, Ltmp5079-Lfunc_begin0 - .quad Lset13711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13712, Ltmp5114-Lfunc_begin0 - .quad Lset13712 -.set Lset13713, Ltmp5115-Lfunc_begin0 - .quad Lset13713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13714, Ltmp5146-Lfunc_begin0 - .quad Lset13714 -.set Lset13715, Ltmp5147-Lfunc_begin0 - .quad Lset13715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13716, Ltmp5178-Lfunc_begin0 - .quad Lset13716 -.set Lset13717, Ltmp5179-Lfunc_begin0 - .quad Lset13717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13718, Ltmp5210-Lfunc_begin0 - .quad Lset13718 -.set Lset13719, Ltmp5211-Lfunc_begin0 - .quad Lset13719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13720, Ltmp5228-Lfunc_begin0 - .quad Lset13720 -.set Lset13721, Ltmp5229-Lfunc_begin0 - .quad Lset13721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13722, Ltmp5246-Lfunc_begin0 - .quad Lset13722 -.set Lset13723, Ltmp5247-Lfunc_begin0 - .quad Lset13723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13724, Ltmp5271-Lfunc_begin0 - .quad Lset13724 -.set Lset13725, Ltmp5272-Lfunc_begin0 - .quad Lset13725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13726, Ltmp5296-Lfunc_begin0 - .quad Lset13726 -.set Lset13727, Ltmp5297-Lfunc_begin0 - .quad Lset13727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13728, Ltmp5322-Lfunc_begin0 - .quad Lset13728 -.set Lset13729, Ltmp5323-Lfunc_begin0 - .quad Lset13729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13730, Ltmp5347-Lfunc_begin0 - .quad Lset13730 -.set Lset13731, Ltmp5348-Lfunc_begin0 - .quad Lset13731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13732, Ltmp5372-Lfunc_begin0 - .quad Lset13732 -.set Lset13733, Ltmp5373-Lfunc_begin0 - .quad Lset13733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13734, Ltmp5397-Lfunc_begin0 - .quad Lset13734 -.set Lset13735, Ltmp5398-Lfunc_begin0 - .quad Lset13735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13736, Ltmp5422-Lfunc_begin0 - .quad Lset13736 -.set Lset13737, Ltmp5423-Lfunc_begin0 - .quad Lset13737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13738, Ltmp5447-Lfunc_begin0 - .quad Lset13738 -.set Lset13739, Ltmp5448-Lfunc_begin0 - .quad Lset13739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13740, Ltmp5472-Lfunc_begin0 - .quad Lset13740 -.set Lset13741, Ltmp5473-Lfunc_begin0 - .quad Lset13741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13742, Ltmp5498-Lfunc_begin0 - .quad Lset13742 -.set Lset13743, Ltmp5499-Lfunc_begin0 - .quad Lset13743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13744, Ltmp5523-Lfunc_begin0 - .quad Lset13744 -.set Lset13745, Ltmp5524-Lfunc_begin0 - .quad Lset13745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13746, Ltmp5548-Lfunc_begin0 - .quad Lset13746 -.set Lset13747, Ltmp5549-Lfunc_begin0 - .quad Lset13747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13748, Ltmp5573-Lfunc_begin0 - .quad Lset13748 -.set Lset13749, Ltmp5574-Lfunc_begin0 - .quad Lset13749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13750, Ltmp5598-Lfunc_begin0 - .quad Lset13750 -.set Lset13751, Ltmp5599-Lfunc_begin0 - .quad Lset13751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13752, Ltmp5631-Lfunc_begin0 - .quad Lset13752 -.set Lset13753, Ltmp5632-Lfunc_begin0 - .quad Lset13753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13754, Ltmp5662-Lfunc_begin0 - .quad Lset13754 -.set Lset13755, Ltmp5663-Lfunc_begin0 - .quad Lset13755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13756, Ltmp5687-Lfunc_begin0 - .quad Lset13756 -.set Lset13757, Ltmp5688-Lfunc_begin0 - .quad Lset13757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13758, Ltmp5712-Lfunc_begin0 - .quad Lset13758 -.set Lset13759, Ltmp5713-Lfunc_begin0 - .quad Lset13759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13760, Ltmp5737-Lfunc_begin0 - .quad Lset13760 -.set Lset13761, Ltmp5738-Lfunc_begin0 - .quad Lset13761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13762, Ltmp5767-Lfunc_begin0 - .quad Lset13762 -.set Lset13763, Ltmp5768-Lfunc_begin0 - .quad Lset13763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13764, Ltmp5795-Lfunc_begin0 - .quad Lset13764 -.set Lset13765, Ltmp5796-Lfunc_begin0 - .quad Lset13765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13766, Ltmp5814-Lfunc_begin0 - .quad Lset13766 -.set Lset13767, Ltmp5815-Lfunc_begin0 - .quad Lset13767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13768, Ltmp5833-Lfunc_begin0 - .quad Lset13768 -.set Lset13769, Ltmp5834-Lfunc_begin0 - .quad Lset13769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13770, Ltmp5852-Lfunc_begin0 - .quad Lset13770 -.set Lset13771, Ltmp5853-Lfunc_begin0 - .quad Lset13771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13772, Ltmp5871-Lfunc_begin0 - .quad Lset13772 -.set Lset13773, Ltmp5872-Lfunc_begin0 - .quad Lset13773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13774, Ltmp5890-Lfunc_begin0 - .quad Lset13774 -.set Lset13775, Ltmp5891-Lfunc_begin0 - .quad Lset13775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13776, Ltmp5920-Lfunc_begin0 - .quad Lset13776 -.set Lset13777, Ltmp5921-Lfunc_begin0 - .quad Lset13777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc233: -.set Lset13778, Ltmp1186-Lfunc_begin0 - .quad Lset13778 -.set Lset13779, Ltmp1187-Lfunc_begin0 - .quad Lset13779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13780, Ltmp1215-Lfunc_begin0 - .quad Lset13780 -.set Lset13781, Ltmp1216-Lfunc_begin0 - .quad Lset13781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13782, Ltmp1237-Lfunc_begin0 - .quad Lset13782 -.set Lset13783, Ltmp1238-Lfunc_begin0 - .quad Lset13783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13784, Ltmp1260-Lfunc_begin0 - .quad Lset13784 -.set Lset13785, Ltmp1261-Lfunc_begin0 - .quad Lset13785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13786, Ltmp1281-Lfunc_begin0 - .quad Lset13786 -.set Lset13787, Ltmp1282-Lfunc_begin0 - .quad Lset13787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13788, Ltmp1314-Lfunc_begin0 - .quad Lset13788 -.set Lset13789, Ltmp1315-Lfunc_begin0 - .quad Lset13789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13790, Ltmp1338-Lfunc_begin0 - .quad Lset13790 -.set Lset13791, Ltmp1339-Lfunc_begin0 - .quad Lset13791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13792, Ltmp1368-Lfunc_begin0 - .quad Lset13792 -.set Lset13793, Ltmp1369-Lfunc_begin0 - .quad Lset13793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13794, Ltmp1462-Lfunc_begin0 - .quad Lset13794 -.set Lset13795, Ltmp1464-Lfunc_begin0 - .quad Lset13795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13796, Ltmp1557-Lfunc_begin0 - .quad Lset13796 -.set Lset13797, Ltmp1559-Lfunc_begin0 - .quad Lset13797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13798, Ltmp1713-Lfunc_begin0 - .quad Lset13798 -.set Lset13799, Ltmp1715-Lfunc_begin0 - .quad Lset13799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13800, Ltmp1864-Lfunc_begin0 - .quad Lset13800 -.set Lset13801, Ltmp1866-Lfunc_begin0 - .quad Lset13801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13802, Ltmp2004-Lfunc_begin0 - .quad Lset13802 -.set Lset13803, Ltmp2006-Lfunc_begin0 - .quad Lset13803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13804, Ltmp2074-Lfunc_begin0 - .quad Lset13804 -.set Lset13805, Ltmp2076-Lfunc_begin0 - .quad Lset13805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13806, Ltmp2120-Lfunc_begin0 - .quad Lset13806 -.set Lset13807, Ltmp2121-Lfunc_begin0 - .quad Lset13807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13808, Ltmp2193-Lfunc_begin0 - .quad Lset13808 -.set Lset13809, Ltmp2195-Lfunc_begin0 - .quad Lset13809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13810, Ltmp2253-Lfunc_begin0 - .quad Lset13810 -.set Lset13811, Ltmp2255-Lfunc_begin0 - .quad Lset13811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13812, Ltmp2302-Lfunc_begin0 - .quad Lset13812 -.set Lset13813, Ltmp2304-Lfunc_begin0 - .quad Lset13813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13814, Ltmp2351-Lfunc_begin0 - .quad Lset13814 -.set Lset13815, Ltmp2353-Lfunc_begin0 - .quad Lset13815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13816, Ltmp2400-Lfunc_begin0 - .quad Lset13816 -.set Lset13817, Ltmp2402-Lfunc_begin0 - .quad Lset13817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13818, Ltmp2444-Lfunc_begin0 - .quad Lset13818 -.set Lset13819, Ltmp2446-Lfunc_begin0 - .quad Lset13819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13820, Ltmp2499-Lfunc_begin0 - .quad Lset13820 -.set Lset13821, Ltmp2501-Lfunc_begin0 - .quad Lset13821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13822, Ltmp2554-Lfunc_begin0 - .quad Lset13822 -.set Lset13823, Ltmp2556-Lfunc_begin0 - .quad Lset13823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13824, Ltmp2609-Lfunc_begin0 - .quad Lset13824 -.set Lset13825, Ltmp2611-Lfunc_begin0 - .quad Lset13825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13826, Ltmp2673-Lfunc_begin0 - .quad Lset13826 -.set Lset13827, Ltmp2675-Lfunc_begin0 - .quad Lset13827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13828, Ltmp2738-Lfunc_begin0 - .quad Lset13828 -.set Lset13829, Ltmp2740-Lfunc_begin0 - .quad Lset13829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13830, Ltmp2811-Lfunc_begin0 - .quad Lset13830 -.set Lset13831, Ltmp2813-Lfunc_begin0 - .quad Lset13831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13832, Ltmp2871-Lfunc_begin0 - .quad Lset13832 -.set Lset13833, Ltmp2873-Lfunc_begin0 - .quad Lset13833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13834, Ltmp2922-Lfunc_begin0 - .quad Lset13834 -.set Lset13835, Ltmp2924-Lfunc_begin0 - .quad Lset13835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13836, Ltmp2957-Lfunc_begin0 - .quad Lset13836 -.set Lset13837, Ltmp2958-Lfunc_begin0 - .quad Lset13837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13838, Ltmp2997-Lfunc_begin0 - .quad Lset13838 -.set Lset13839, Ltmp2999-Lfunc_begin0 - .quad Lset13839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13840, Ltmp3024-Lfunc_begin0 - .quad Lset13840 -.set Lset13841, Ltmp3025-Lfunc_begin0 - .quad Lset13841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13842, Ltmp3047-Lfunc_begin0 - .quad Lset13842 -.set Lset13843, Ltmp3048-Lfunc_begin0 - .quad Lset13843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13844, Ltmp3096-Lfunc_begin0 - .quad Lset13844 -.set Lset13845, Ltmp3097-Lfunc_begin0 - .quad Lset13845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13846, Ltmp3120-Lfunc_begin0 - .quad Lset13846 -.set Lset13847, Ltmp3122-Lfunc_begin0 - .quad Lset13847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13848, Ltmp3161-Lfunc_begin0 - .quad Lset13848 -.set Lset13849, Ltmp3163-Lfunc_begin0 - .quad Lset13849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13850, Ltmp3227-Lfunc_begin0 - .quad Lset13850 -.set Lset13851, Ltmp3228-Lfunc_begin0 - .quad Lset13851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13852, Ltmp3292-Lfunc_begin0 - .quad Lset13852 -.set Lset13853, Ltmp3293-Lfunc_begin0 - .quad Lset13853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13854, Ltmp3329-Lfunc_begin0 - .quad Lset13854 -.set Lset13855, Ltmp3330-Lfunc_begin0 - .quad Lset13855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13856, Ltmp3375-Lfunc_begin0 - .quad Lset13856 -.set Lset13857, Ltmp3376-Lfunc_begin0 - .quad Lset13857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13858, Ltmp3407-Lfunc_begin0 - .quad Lset13858 -.set Lset13859, Ltmp3408-Lfunc_begin0 - .quad Lset13859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13860, Ltmp3435-Lfunc_begin0 - .quad Lset13860 -.set Lset13861, Ltmp3436-Lfunc_begin0 - .quad Lset13861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13862, Ltmp3537-Lfunc_begin0 - .quad Lset13862 -.set Lset13863, Ltmp3637-Lfunc_begin0 - .quad Lset13863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13864, Ltmp3638-Lfunc_begin0 - .quad Lset13864 -.set Lset13865, Ltmp3640-Lfunc_begin0 - .quad Lset13865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13866, Ltmp3685-Lfunc_begin0 - .quad Lset13866 -.set Lset13867, Ltmp3686-Lfunc_begin0 - .quad Lset13867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13868, Ltmp3807-Lfunc_begin0 - .quad Lset13868 -.set Lset13869, Ltmp3809-Lfunc_begin0 - .quad Lset13869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13870, Ltmp3864-Lfunc_begin0 - .quad Lset13870 -.set Lset13871, Ltmp3865-Lfunc_begin0 - .quad Lset13871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13872, Ltmp3933-Lfunc_begin0 - .quad Lset13872 -.set Lset13873, Ltmp3934-Lfunc_begin0 - .quad Lset13873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13874, Ltmp3959-Lfunc_begin0 - .quad Lset13874 -.set Lset13875, Ltmp3960-Lfunc_begin0 - .quad Lset13875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13876, Ltmp3985-Lfunc_begin0 - .quad Lset13876 -.set Lset13877, Ltmp3986-Lfunc_begin0 - .quad Lset13877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13878, Ltmp4011-Lfunc_begin0 - .quad Lset13878 -.set Lset13879, Ltmp4012-Lfunc_begin0 - .quad Lset13879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13880, Ltmp4046-Lfunc_begin0 - .quad Lset13880 -.set Lset13881, Ltmp4047-Lfunc_begin0 - .quad Lset13881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13882, Ltmp4084-Lfunc_begin0 - .quad Lset13882 -.set Lset13883, Ltmp4085-Lfunc_begin0 - .quad Lset13883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13884, Ltmp4106-Lfunc_begin0 - .quad Lset13884 -.set Lset13885, Ltmp4107-Lfunc_begin0 - .quad Lset13885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13886, Ltmp4146-Lfunc_begin0 - .quad Lset13886 -.set Lset13887, Ltmp4147-Lfunc_begin0 - .quad Lset13887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13888, Ltmp4187-Lfunc_begin0 - .quad Lset13888 -.set Lset13889, Ltmp4188-Lfunc_begin0 - .quad Lset13889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13890, Ltmp4227-Lfunc_begin0 - .quad Lset13890 -.set Lset13891, Ltmp4228-Lfunc_begin0 - .quad Lset13891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13892, Ltmp4268-Lfunc_begin0 - .quad Lset13892 -.set Lset13893, Ltmp4269-Lfunc_begin0 - .quad Lset13893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13894, Ltmp4308-Lfunc_begin0 - .quad Lset13894 -.set Lset13895, Ltmp4309-Lfunc_begin0 - .quad Lset13895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13896, Ltmp4349-Lfunc_begin0 - .quad Lset13896 -.set Lset13897, Ltmp4350-Lfunc_begin0 - .quad Lset13897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13898, Ltmp4380-Lfunc_begin0 - .quad Lset13898 -.set Lset13899, Ltmp4381-Lfunc_begin0 - .quad Lset13899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13900, Ltmp4412-Lfunc_begin0 - .quad Lset13900 -.set Lset13901, Ltmp4414-Lfunc_begin0 - .quad Lset13901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13902, Ltmp4454-Lfunc_begin0 - .quad Lset13902 -.set Lset13903, Ltmp4455-Lfunc_begin0 - .quad Lset13903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13904, Ltmp4495-Lfunc_begin0 - .quad Lset13904 -.set Lset13905, Ltmp4496-Lfunc_begin0 - .quad Lset13905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13906, Ltmp4579-Lfunc_begin0 - .quad Lset13906 -.set Lset13907, Ltmp4581-Lfunc_begin0 - .quad Lset13907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13908, Ltmp4649-Lfunc_begin0 - .quad Lset13908 -.set Lset13909, Ltmp4651-Lfunc_begin0 - .quad Lset13909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13910, Ltmp4717-Lfunc_begin0 - .quad Lset13910 -.set Lset13911, Ltmp4719-Lfunc_begin0 - .quad Lset13911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13912, Ltmp4783-Lfunc_begin0 - .quad Lset13912 -.set Lset13913, Ltmp4784-Lfunc_begin0 - .quad Lset13913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13914, Ltmp4813-Lfunc_begin0 - .quad Lset13914 -.set Lset13915, Ltmp4814-Lfunc_begin0 - .quad Lset13915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13916, Ltmp4843-Lfunc_begin0 - .quad Lset13916 -.set Lset13917, Ltmp4844-Lfunc_begin0 - .quad Lset13917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13918, Ltmp4902-Lfunc_begin0 - .quad Lset13918 -.set Lset13919, Ltmp4903-Lfunc_begin0 - .quad Lset13919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13920, Ltmp4943-Lfunc_begin0 - .quad Lset13920 -.set Lset13921, Ltmp4944-Lfunc_begin0 - .quad Lset13921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13922, Ltmp5000-Lfunc_begin0 - .quad Lset13922 -.set Lset13923, Ltmp5001-Lfunc_begin0 - .quad Lset13923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13924, Ltmp5040-Lfunc_begin0 - .quad Lset13924 -.set Lset13925, Ltmp5041-Lfunc_begin0 - .quad Lset13925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13926, Ltmp5078-Lfunc_begin0 - .quad Lset13926 -.set Lset13927, Ltmp5079-Lfunc_begin0 - .quad Lset13927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13928, Ltmp5114-Lfunc_begin0 - .quad Lset13928 -.set Lset13929, Ltmp5115-Lfunc_begin0 - .quad Lset13929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13930, Ltmp5146-Lfunc_begin0 - .quad Lset13930 -.set Lset13931, Ltmp5147-Lfunc_begin0 - .quad Lset13931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13932, Ltmp5178-Lfunc_begin0 - .quad Lset13932 -.set Lset13933, Ltmp5179-Lfunc_begin0 - .quad Lset13933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13934, Ltmp5210-Lfunc_begin0 - .quad Lset13934 -.set Lset13935, Ltmp5211-Lfunc_begin0 - .quad Lset13935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13936, Ltmp5228-Lfunc_begin0 - .quad Lset13936 -.set Lset13937, Ltmp5229-Lfunc_begin0 - .quad Lset13937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13938, Ltmp5246-Lfunc_begin0 - .quad Lset13938 -.set Lset13939, Ltmp5247-Lfunc_begin0 - .quad Lset13939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13940, Ltmp5271-Lfunc_begin0 - .quad Lset13940 -.set Lset13941, Ltmp5272-Lfunc_begin0 - .quad Lset13941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13942, Ltmp5296-Lfunc_begin0 - .quad Lset13942 -.set Lset13943, Ltmp5297-Lfunc_begin0 - .quad Lset13943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13944, Ltmp5322-Lfunc_begin0 - .quad Lset13944 -.set Lset13945, Ltmp5323-Lfunc_begin0 - .quad Lset13945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13946, Ltmp5347-Lfunc_begin0 - .quad Lset13946 -.set Lset13947, Ltmp5348-Lfunc_begin0 - .quad Lset13947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13948, Ltmp5372-Lfunc_begin0 - .quad Lset13948 -.set Lset13949, Ltmp5373-Lfunc_begin0 - .quad Lset13949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13950, Ltmp5397-Lfunc_begin0 - .quad Lset13950 -.set Lset13951, Ltmp5398-Lfunc_begin0 - .quad Lset13951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13952, Ltmp5422-Lfunc_begin0 - .quad Lset13952 -.set Lset13953, Ltmp5423-Lfunc_begin0 - .quad Lset13953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13954, Ltmp5447-Lfunc_begin0 - .quad Lset13954 -.set Lset13955, Ltmp5448-Lfunc_begin0 - .quad Lset13955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13956, Ltmp5472-Lfunc_begin0 - .quad Lset13956 -.set Lset13957, Ltmp5473-Lfunc_begin0 - .quad Lset13957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13958, Ltmp5498-Lfunc_begin0 - .quad Lset13958 -.set Lset13959, Ltmp5499-Lfunc_begin0 - .quad Lset13959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13960, Ltmp5523-Lfunc_begin0 - .quad Lset13960 -.set Lset13961, Ltmp5524-Lfunc_begin0 - .quad Lset13961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13962, Ltmp5548-Lfunc_begin0 - .quad Lset13962 -.set Lset13963, Ltmp5549-Lfunc_begin0 - .quad Lset13963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13964, Ltmp5573-Lfunc_begin0 - .quad Lset13964 -.set Lset13965, Ltmp5574-Lfunc_begin0 - .quad Lset13965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13966, Ltmp5598-Lfunc_begin0 - .quad Lset13966 -.set Lset13967, Ltmp5599-Lfunc_begin0 - .quad Lset13967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13968, Ltmp5631-Lfunc_begin0 - .quad Lset13968 -.set Lset13969, Ltmp5632-Lfunc_begin0 - .quad Lset13969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13970, Ltmp5662-Lfunc_begin0 - .quad Lset13970 -.set Lset13971, Ltmp5663-Lfunc_begin0 - .quad Lset13971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13972, Ltmp5687-Lfunc_begin0 - .quad Lset13972 -.set Lset13973, Ltmp5688-Lfunc_begin0 - .quad Lset13973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13974, Ltmp5712-Lfunc_begin0 - .quad Lset13974 -.set Lset13975, Ltmp5713-Lfunc_begin0 - .quad Lset13975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13976, Ltmp5737-Lfunc_begin0 - .quad Lset13976 -.set Lset13977, Ltmp5738-Lfunc_begin0 - .quad Lset13977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13978, Ltmp5767-Lfunc_begin0 - .quad Lset13978 -.set Lset13979, Ltmp5768-Lfunc_begin0 - .quad Lset13979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13980, Ltmp5795-Lfunc_begin0 - .quad Lset13980 -.set Lset13981, Ltmp5796-Lfunc_begin0 - .quad Lset13981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13982, Ltmp5814-Lfunc_begin0 - .quad Lset13982 -.set Lset13983, Ltmp5815-Lfunc_begin0 - .quad Lset13983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13984, Ltmp5833-Lfunc_begin0 - .quad Lset13984 -.set Lset13985, Ltmp5834-Lfunc_begin0 - .quad Lset13985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13986, Ltmp5852-Lfunc_begin0 - .quad Lset13986 -.set Lset13987, Ltmp5853-Lfunc_begin0 - .quad Lset13987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13988, Ltmp5871-Lfunc_begin0 - .quad Lset13988 -.set Lset13989, Ltmp5872-Lfunc_begin0 - .quad Lset13989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13990, Ltmp5890-Lfunc_begin0 - .quad Lset13990 -.set Lset13991, Ltmp5891-Lfunc_begin0 - .quad Lset13991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13992, Ltmp5920-Lfunc_begin0 - .quad Lset13992 -.set Lset13993, Ltmp5921-Lfunc_begin0 - .quad Lset13993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13994, Ltmp5961-Lfunc_begin0 - .quad Lset13994 -.set Lset13995, Ltmp5965-Lfunc_begin0 - .quad Lset13995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset13996, Ltmp6148-Lfunc_begin0 - .quad Lset13996 -.set Lset13997, Ltmp6150-Lfunc_begin0 - .quad Lset13997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc234: -.set Lset13998, Ltmp1186-Lfunc_begin0 - .quad Lset13998 -.set Lset13999, Ltmp1187-Lfunc_begin0 - .quad Lset13999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14000, Ltmp1215-Lfunc_begin0 - .quad Lset14000 -.set Lset14001, Ltmp1216-Lfunc_begin0 - .quad Lset14001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14002, Ltmp1237-Lfunc_begin0 - .quad Lset14002 -.set Lset14003, Ltmp1238-Lfunc_begin0 - .quad Lset14003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14004, Ltmp1260-Lfunc_begin0 - .quad Lset14004 -.set Lset14005, Ltmp1261-Lfunc_begin0 - .quad Lset14005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14006, Ltmp1281-Lfunc_begin0 - .quad Lset14006 -.set Lset14007, Ltmp1282-Lfunc_begin0 - .quad Lset14007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14008, Ltmp1314-Lfunc_begin0 - .quad Lset14008 -.set Lset14009, Ltmp1315-Lfunc_begin0 - .quad Lset14009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14010, Ltmp1338-Lfunc_begin0 - .quad Lset14010 -.set Lset14011, Ltmp1339-Lfunc_begin0 - .quad Lset14011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14012, Ltmp1368-Lfunc_begin0 - .quad Lset14012 -.set Lset14013, Ltmp1369-Lfunc_begin0 - .quad Lset14013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14014, Ltmp1462-Lfunc_begin0 - .quad Lset14014 -.set Lset14015, Ltmp1464-Lfunc_begin0 - .quad Lset14015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14016, Ltmp1557-Lfunc_begin0 - .quad Lset14016 -.set Lset14017, Ltmp1559-Lfunc_begin0 - .quad Lset14017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14018, Ltmp1713-Lfunc_begin0 - .quad Lset14018 -.set Lset14019, Ltmp1715-Lfunc_begin0 - .quad Lset14019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14020, Ltmp1864-Lfunc_begin0 - .quad Lset14020 -.set Lset14021, Ltmp1866-Lfunc_begin0 - .quad Lset14021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14022, Ltmp2004-Lfunc_begin0 - .quad Lset14022 -.set Lset14023, Ltmp2006-Lfunc_begin0 - .quad Lset14023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14024, Ltmp2074-Lfunc_begin0 - .quad Lset14024 -.set Lset14025, Ltmp2076-Lfunc_begin0 - .quad Lset14025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14026, Ltmp2120-Lfunc_begin0 - .quad Lset14026 -.set Lset14027, Ltmp2121-Lfunc_begin0 - .quad Lset14027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14028, Ltmp2193-Lfunc_begin0 - .quad Lset14028 -.set Lset14029, Ltmp2195-Lfunc_begin0 - .quad Lset14029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14030, Ltmp2253-Lfunc_begin0 - .quad Lset14030 -.set Lset14031, Ltmp2255-Lfunc_begin0 - .quad Lset14031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14032, Ltmp2302-Lfunc_begin0 - .quad Lset14032 -.set Lset14033, Ltmp2304-Lfunc_begin0 - .quad Lset14033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14034, Ltmp2351-Lfunc_begin0 - .quad Lset14034 -.set Lset14035, Ltmp2353-Lfunc_begin0 - .quad Lset14035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14036, Ltmp2400-Lfunc_begin0 - .quad Lset14036 -.set Lset14037, Ltmp2402-Lfunc_begin0 - .quad Lset14037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14038, Ltmp2444-Lfunc_begin0 - .quad Lset14038 -.set Lset14039, Ltmp2446-Lfunc_begin0 - .quad Lset14039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14040, Ltmp2499-Lfunc_begin0 - .quad Lset14040 -.set Lset14041, Ltmp2501-Lfunc_begin0 - .quad Lset14041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14042, Ltmp2554-Lfunc_begin0 - .quad Lset14042 -.set Lset14043, Ltmp2556-Lfunc_begin0 - .quad Lset14043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14044, Ltmp2609-Lfunc_begin0 - .quad Lset14044 -.set Lset14045, Ltmp2611-Lfunc_begin0 - .quad Lset14045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14046, Ltmp2673-Lfunc_begin0 - .quad Lset14046 -.set Lset14047, Ltmp2675-Lfunc_begin0 - .quad Lset14047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14048, Ltmp2738-Lfunc_begin0 - .quad Lset14048 -.set Lset14049, Ltmp2740-Lfunc_begin0 - .quad Lset14049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14050, Ltmp2811-Lfunc_begin0 - .quad Lset14050 -.set Lset14051, Ltmp2813-Lfunc_begin0 - .quad Lset14051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14052, Ltmp2871-Lfunc_begin0 - .quad Lset14052 -.set Lset14053, Ltmp2873-Lfunc_begin0 - .quad Lset14053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14054, Ltmp2922-Lfunc_begin0 - .quad Lset14054 -.set Lset14055, Ltmp2924-Lfunc_begin0 - .quad Lset14055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14056, Ltmp2957-Lfunc_begin0 - .quad Lset14056 -.set Lset14057, Ltmp2958-Lfunc_begin0 - .quad Lset14057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14058, Ltmp2997-Lfunc_begin0 - .quad Lset14058 -.set Lset14059, Ltmp2999-Lfunc_begin0 - .quad Lset14059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14060, Ltmp3024-Lfunc_begin0 - .quad Lset14060 -.set Lset14061, Ltmp3025-Lfunc_begin0 - .quad Lset14061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14062, Ltmp3047-Lfunc_begin0 - .quad Lset14062 -.set Lset14063, Ltmp3048-Lfunc_begin0 - .quad Lset14063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14064, Ltmp3096-Lfunc_begin0 - .quad Lset14064 -.set Lset14065, Ltmp3097-Lfunc_begin0 - .quad Lset14065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14066, Ltmp3120-Lfunc_begin0 - .quad Lset14066 -.set Lset14067, Ltmp3122-Lfunc_begin0 - .quad Lset14067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14068, Ltmp3161-Lfunc_begin0 - .quad Lset14068 -.set Lset14069, Ltmp3163-Lfunc_begin0 - .quad Lset14069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14070, Ltmp3227-Lfunc_begin0 - .quad Lset14070 -.set Lset14071, Ltmp3228-Lfunc_begin0 - .quad Lset14071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14072, Ltmp3292-Lfunc_begin0 - .quad Lset14072 -.set Lset14073, Ltmp3293-Lfunc_begin0 - .quad Lset14073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14074, Ltmp3329-Lfunc_begin0 - .quad Lset14074 -.set Lset14075, Ltmp3330-Lfunc_begin0 - .quad Lset14075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14076, Ltmp3375-Lfunc_begin0 - .quad Lset14076 -.set Lset14077, Ltmp3376-Lfunc_begin0 - .quad Lset14077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14078, Ltmp3407-Lfunc_begin0 - .quad Lset14078 -.set Lset14079, Ltmp3408-Lfunc_begin0 - .quad Lset14079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14080, Ltmp3435-Lfunc_begin0 - .quad Lset14080 -.set Lset14081, Ltmp3436-Lfunc_begin0 - .quad Lset14081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14082, Ltmp3537-Lfunc_begin0 - .quad Lset14082 -.set Lset14083, Ltmp3538-Lfunc_begin0 - .quad Lset14083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14084, Ltmp3638-Lfunc_begin0 - .quad Lset14084 -.set Lset14085, Ltmp3640-Lfunc_begin0 - .quad Lset14085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14086, Ltmp3685-Lfunc_begin0 - .quad Lset14086 -.set Lset14087, Ltmp3686-Lfunc_begin0 - .quad Lset14087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14088, Ltmp3807-Lfunc_begin0 - .quad Lset14088 -.set Lset14089, Ltmp3809-Lfunc_begin0 - .quad Lset14089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14090, Ltmp3864-Lfunc_begin0 - .quad Lset14090 -.set Lset14091, Ltmp3865-Lfunc_begin0 - .quad Lset14091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14092, Ltmp3933-Lfunc_begin0 - .quad Lset14092 -.set Lset14093, Ltmp3934-Lfunc_begin0 - .quad Lset14093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14094, Ltmp3959-Lfunc_begin0 - .quad Lset14094 -.set Lset14095, Ltmp3960-Lfunc_begin0 - .quad Lset14095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14096, Ltmp3985-Lfunc_begin0 - .quad Lset14096 -.set Lset14097, Ltmp3986-Lfunc_begin0 - .quad Lset14097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14098, Ltmp4011-Lfunc_begin0 - .quad Lset14098 -.set Lset14099, Ltmp4012-Lfunc_begin0 - .quad Lset14099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14100, Ltmp4046-Lfunc_begin0 - .quad Lset14100 -.set Lset14101, Ltmp4047-Lfunc_begin0 - .quad Lset14101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14102, Ltmp4084-Lfunc_begin0 - .quad Lset14102 -.set Lset14103, Ltmp4085-Lfunc_begin0 - .quad Lset14103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14104, Ltmp4106-Lfunc_begin0 - .quad Lset14104 -.set Lset14105, Ltmp4107-Lfunc_begin0 - .quad Lset14105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14106, Ltmp4146-Lfunc_begin0 - .quad Lset14106 -.set Lset14107, Ltmp4147-Lfunc_begin0 - .quad Lset14107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14108, Ltmp4187-Lfunc_begin0 - .quad Lset14108 -.set Lset14109, Ltmp4188-Lfunc_begin0 - .quad Lset14109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14110, Ltmp4227-Lfunc_begin0 - .quad Lset14110 -.set Lset14111, Ltmp4228-Lfunc_begin0 - .quad Lset14111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14112, Ltmp4268-Lfunc_begin0 - .quad Lset14112 -.set Lset14113, Ltmp4269-Lfunc_begin0 - .quad Lset14113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14114, Ltmp4308-Lfunc_begin0 - .quad Lset14114 -.set Lset14115, Ltmp4309-Lfunc_begin0 - .quad Lset14115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14116, Ltmp4349-Lfunc_begin0 - .quad Lset14116 -.set Lset14117, Ltmp4350-Lfunc_begin0 - .quad Lset14117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14118, Ltmp4380-Lfunc_begin0 - .quad Lset14118 -.set Lset14119, Ltmp4381-Lfunc_begin0 - .quad Lset14119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14120, Ltmp4412-Lfunc_begin0 - .quad Lset14120 -.set Lset14121, Ltmp4414-Lfunc_begin0 - .quad Lset14121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14122, Ltmp4454-Lfunc_begin0 - .quad Lset14122 -.set Lset14123, Ltmp4455-Lfunc_begin0 - .quad Lset14123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14124, Ltmp4495-Lfunc_begin0 - .quad Lset14124 -.set Lset14125, Ltmp4496-Lfunc_begin0 - .quad Lset14125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14126, Ltmp4579-Lfunc_begin0 - .quad Lset14126 -.set Lset14127, Ltmp4581-Lfunc_begin0 - .quad Lset14127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14128, Ltmp4649-Lfunc_begin0 - .quad Lset14128 -.set Lset14129, Ltmp4651-Lfunc_begin0 - .quad Lset14129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14130, Ltmp4717-Lfunc_begin0 - .quad Lset14130 -.set Lset14131, Ltmp4719-Lfunc_begin0 - .quad Lset14131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14132, Ltmp4783-Lfunc_begin0 - .quad Lset14132 -.set Lset14133, Ltmp4784-Lfunc_begin0 - .quad Lset14133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14134, Ltmp4813-Lfunc_begin0 - .quad Lset14134 -.set Lset14135, Ltmp4814-Lfunc_begin0 - .quad Lset14135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14136, Ltmp4843-Lfunc_begin0 - .quad Lset14136 -.set Lset14137, Ltmp4844-Lfunc_begin0 - .quad Lset14137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14138, Ltmp4902-Lfunc_begin0 - .quad Lset14138 -.set Lset14139, Ltmp4903-Lfunc_begin0 - .quad Lset14139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14140, Ltmp4943-Lfunc_begin0 - .quad Lset14140 -.set Lset14141, Ltmp4944-Lfunc_begin0 - .quad Lset14141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14142, Ltmp5000-Lfunc_begin0 - .quad Lset14142 -.set Lset14143, Ltmp5001-Lfunc_begin0 - .quad Lset14143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14144, Ltmp5040-Lfunc_begin0 - .quad Lset14144 -.set Lset14145, Ltmp5041-Lfunc_begin0 - .quad Lset14145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14146, Ltmp5078-Lfunc_begin0 - .quad Lset14146 -.set Lset14147, Ltmp5079-Lfunc_begin0 - .quad Lset14147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14148, Ltmp5114-Lfunc_begin0 - .quad Lset14148 -.set Lset14149, Ltmp5115-Lfunc_begin0 - .quad Lset14149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14150, Ltmp5146-Lfunc_begin0 - .quad Lset14150 -.set Lset14151, Ltmp5147-Lfunc_begin0 - .quad Lset14151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14152, Ltmp5178-Lfunc_begin0 - .quad Lset14152 -.set Lset14153, Ltmp5179-Lfunc_begin0 - .quad Lset14153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14154, Ltmp5210-Lfunc_begin0 - .quad Lset14154 -.set Lset14155, Ltmp5211-Lfunc_begin0 - .quad Lset14155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14156, Ltmp5228-Lfunc_begin0 - .quad Lset14156 -.set Lset14157, Ltmp5229-Lfunc_begin0 - .quad Lset14157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14158, Ltmp5246-Lfunc_begin0 - .quad Lset14158 -.set Lset14159, Ltmp5247-Lfunc_begin0 - .quad Lset14159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14160, Ltmp5271-Lfunc_begin0 - .quad Lset14160 -.set Lset14161, Ltmp5272-Lfunc_begin0 - .quad Lset14161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14162, Ltmp5296-Lfunc_begin0 - .quad Lset14162 -.set Lset14163, Ltmp5297-Lfunc_begin0 - .quad Lset14163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14164, Ltmp5322-Lfunc_begin0 - .quad Lset14164 -.set Lset14165, Ltmp5323-Lfunc_begin0 - .quad Lset14165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14166, Ltmp5347-Lfunc_begin0 - .quad Lset14166 -.set Lset14167, Ltmp5348-Lfunc_begin0 - .quad Lset14167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14168, Ltmp5372-Lfunc_begin0 - .quad Lset14168 -.set Lset14169, Ltmp5373-Lfunc_begin0 - .quad Lset14169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14170, Ltmp5397-Lfunc_begin0 - .quad Lset14170 -.set Lset14171, Ltmp5398-Lfunc_begin0 - .quad Lset14171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14172, Ltmp5422-Lfunc_begin0 - .quad Lset14172 -.set Lset14173, Ltmp5423-Lfunc_begin0 - .quad Lset14173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14174, Ltmp5447-Lfunc_begin0 - .quad Lset14174 -.set Lset14175, Ltmp5448-Lfunc_begin0 - .quad Lset14175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14176, Ltmp5472-Lfunc_begin0 - .quad Lset14176 -.set Lset14177, Ltmp5473-Lfunc_begin0 - .quad Lset14177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14178, Ltmp5498-Lfunc_begin0 - .quad Lset14178 -.set Lset14179, Ltmp5499-Lfunc_begin0 - .quad Lset14179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14180, Ltmp5523-Lfunc_begin0 - .quad Lset14180 -.set Lset14181, Ltmp5524-Lfunc_begin0 - .quad Lset14181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14182, Ltmp5548-Lfunc_begin0 - .quad Lset14182 -.set Lset14183, Ltmp5549-Lfunc_begin0 - .quad Lset14183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14184, Ltmp5573-Lfunc_begin0 - .quad Lset14184 -.set Lset14185, Ltmp5574-Lfunc_begin0 - .quad Lset14185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14186, Ltmp5598-Lfunc_begin0 - .quad Lset14186 -.set Lset14187, Ltmp5599-Lfunc_begin0 - .quad Lset14187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14188, Ltmp5631-Lfunc_begin0 - .quad Lset14188 -.set Lset14189, Ltmp5632-Lfunc_begin0 - .quad Lset14189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14190, Ltmp5662-Lfunc_begin0 - .quad Lset14190 -.set Lset14191, Ltmp5663-Lfunc_begin0 - .quad Lset14191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14192, Ltmp5687-Lfunc_begin0 - .quad Lset14192 -.set Lset14193, Ltmp5688-Lfunc_begin0 - .quad Lset14193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14194, Ltmp5712-Lfunc_begin0 - .quad Lset14194 -.set Lset14195, Ltmp5713-Lfunc_begin0 - .quad Lset14195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14196, Ltmp5737-Lfunc_begin0 - .quad Lset14196 -.set Lset14197, Ltmp5738-Lfunc_begin0 - .quad Lset14197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14198, Ltmp5767-Lfunc_begin0 - .quad Lset14198 -.set Lset14199, Ltmp5768-Lfunc_begin0 - .quad Lset14199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14200, Ltmp5795-Lfunc_begin0 - .quad Lset14200 -.set Lset14201, Ltmp5796-Lfunc_begin0 - .quad Lset14201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14202, Ltmp5814-Lfunc_begin0 - .quad Lset14202 -.set Lset14203, Ltmp5815-Lfunc_begin0 - .quad Lset14203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14204, Ltmp5833-Lfunc_begin0 - .quad Lset14204 -.set Lset14205, Ltmp5834-Lfunc_begin0 - .quad Lset14205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14206, Ltmp5852-Lfunc_begin0 - .quad Lset14206 -.set Lset14207, Ltmp5853-Lfunc_begin0 - .quad Lset14207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14208, Ltmp5871-Lfunc_begin0 - .quad Lset14208 -.set Lset14209, Ltmp5872-Lfunc_begin0 - .quad Lset14209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14210, Ltmp5890-Lfunc_begin0 - .quad Lset14210 -.set Lset14211, Ltmp5891-Lfunc_begin0 - .quad Lset14211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14212, Ltmp5920-Lfunc_begin0 - .quad Lset14212 -.set Lset14213, Ltmp5921-Lfunc_begin0 - .quad Lset14213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc235: -.set Lset14214, Ltmp1186-Lfunc_begin0 - .quad Lset14214 -.set Lset14215, Ltmp1187-Lfunc_begin0 - .quad Lset14215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14216, Ltmp1215-Lfunc_begin0 - .quad Lset14216 -.set Lset14217, Ltmp1216-Lfunc_begin0 - .quad Lset14217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14218, Ltmp1237-Lfunc_begin0 - .quad Lset14218 -.set Lset14219, Ltmp1238-Lfunc_begin0 - .quad Lset14219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14220, Ltmp1260-Lfunc_begin0 - .quad Lset14220 -.set Lset14221, Ltmp1261-Lfunc_begin0 - .quad Lset14221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14222, Ltmp1281-Lfunc_begin0 - .quad Lset14222 -.set Lset14223, Ltmp1282-Lfunc_begin0 - .quad Lset14223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14224, Ltmp1314-Lfunc_begin0 - .quad Lset14224 -.set Lset14225, Ltmp1315-Lfunc_begin0 - .quad Lset14225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14226, Ltmp1338-Lfunc_begin0 - .quad Lset14226 -.set Lset14227, Ltmp1339-Lfunc_begin0 - .quad Lset14227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14228, Ltmp1368-Lfunc_begin0 - .quad Lset14228 -.set Lset14229, Ltmp1369-Lfunc_begin0 - .quad Lset14229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14230, Ltmp1462-Lfunc_begin0 - .quad Lset14230 -.set Lset14231, Ltmp1464-Lfunc_begin0 - .quad Lset14231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14232, Ltmp1557-Lfunc_begin0 - .quad Lset14232 -.set Lset14233, Ltmp1559-Lfunc_begin0 - .quad Lset14233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14234, Ltmp1713-Lfunc_begin0 - .quad Lset14234 -.set Lset14235, Ltmp1715-Lfunc_begin0 - .quad Lset14235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14236, Ltmp1864-Lfunc_begin0 - .quad Lset14236 -.set Lset14237, Ltmp1866-Lfunc_begin0 - .quad Lset14237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14238, Ltmp2004-Lfunc_begin0 - .quad Lset14238 -.set Lset14239, Ltmp2006-Lfunc_begin0 - .quad Lset14239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14240, Ltmp2074-Lfunc_begin0 - .quad Lset14240 -.set Lset14241, Ltmp2076-Lfunc_begin0 - .quad Lset14241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14242, Ltmp2120-Lfunc_begin0 - .quad Lset14242 -.set Lset14243, Ltmp2121-Lfunc_begin0 - .quad Lset14243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14244, Ltmp2193-Lfunc_begin0 - .quad Lset14244 -.set Lset14245, Ltmp2195-Lfunc_begin0 - .quad Lset14245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14246, Ltmp2253-Lfunc_begin0 - .quad Lset14246 -.set Lset14247, Ltmp2255-Lfunc_begin0 - .quad Lset14247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14248, Ltmp2302-Lfunc_begin0 - .quad Lset14248 -.set Lset14249, Ltmp2304-Lfunc_begin0 - .quad Lset14249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14250, Ltmp2351-Lfunc_begin0 - .quad Lset14250 -.set Lset14251, Ltmp2353-Lfunc_begin0 - .quad Lset14251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14252, Ltmp2400-Lfunc_begin0 - .quad Lset14252 -.set Lset14253, Ltmp2402-Lfunc_begin0 - .quad Lset14253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14254, Ltmp2444-Lfunc_begin0 - .quad Lset14254 -.set Lset14255, Ltmp2446-Lfunc_begin0 - .quad Lset14255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14256, Ltmp2499-Lfunc_begin0 - .quad Lset14256 -.set Lset14257, Ltmp2501-Lfunc_begin0 - .quad Lset14257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14258, Ltmp2554-Lfunc_begin0 - .quad Lset14258 -.set Lset14259, Ltmp2556-Lfunc_begin0 - .quad Lset14259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14260, Ltmp2609-Lfunc_begin0 - .quad Lset14260 -.set Lset14261, Ltmp2611-Lfunc_begin0 - .quad Lset14261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14262, Ltmp2673-Lfunc_begin0 - .quad Lset14262 -.set Lset14263, Ltmp2675-Lfunc_begin0 - .quad Lset14263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14264, Ltmp2738-Lfunc_begin0 - .quad Lset14264 -.set Lset14265, Ltmp2740-Lfunc_begin0 - .quad Lset14265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14266, Ltmp2811-Lfunc_begin0 - .quad Lset14266 -.set Lset14267, Ltmp2813-Lfunc_begin0 - .quad Lset14267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14268, Ltmp2871-Lfunc_begin0 - .quad Lset14268 -.set Lset14269, Ltmp2873-Lfunc_begin0 - .quad Lset14269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14270, Ltmp2922-Lfunc_begin0 - .quad Lset14270 -.set Lset14271, Ltmp2924-Lfunc_begin0 - .quad Lset14271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14272, Ltmp2957-Lfunc_begin0 - .quad Lset14272 -.set Lset14273, Ltmp2958-Lfunc_begin0 - .quad Lset14273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14274, Ltmp2997-Lfunc_begin0 - .quad Lset14274 -.set Lset14275, Ltmp2999-Lfunc_begin0 - .quad Lset14275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14276, Ltmp3024-Lfunc_begin0 - .quad Lset14276 -.set Lset14277, Ltmp3025-Lfunc_begin0 - .quad Lset14277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14278, Ltmp3047-Lfunc_begin0 - .quad Lset14278 -.set Lset14279, Ltmp3048-Lfunc_begin0 - .quad Lset14279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14280, Ltmp3096-Lfunc_begin0 - .quad Lset14280 -.set Lset14281, Ltmp3097-Lfunc_begin0 - .quad Lset14281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14282, Ltmp3120-Lfunc_begin0 - .quad Lset14282 -.set Lset14283, Ltmp3122-Lfunc_begin0 - .quad Lset14283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14284, Ltmp3161-Lfunc_begin0 - .quad Lset14284 -.set Lset14285, Ltmp3163-Lfunc_begin0 - .quad Lset14285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14286, Ltmp3227-Lfunc_begin0 - .quad Lset14286 -.set Lset14287, Ltmp3228-Lfunc_begin0 - .quad Lset14287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14288, Ltmp3292-Lfunc_begin0 - .quad Lset14288 -.set Lset14289, Ltmp3293-Lfunc_begin0 - .quad Lset14289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14290, Ltmp3329-Lfunc_begin0 - .quad Lset14290 -.set Lset14291, Ltmp3330-Lfunc_begin0 - .quad Lset14291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14292, Ltmp3375-Lfunc_begin0 - .quad Lset14292 -.set Lset14293, Ltmp3376-Lfunc_begin0 - .quad Lset14293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14294, Ltmp3407-Lfunc_begin0 - .quad Lset14294 -.set Lset14295, Ltmp3408-Lfunc_begin0 - .quad Lset14295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14296, Ltmp3435-Lfunc_begin0 - .quad Lset14296 -.set Lset14297, Ltmp3436-Lfunc_begin0 - .quad Lset14297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14298, Ltmp3537-Lfunc_begin0 - .quad Lset14298 -.set Lset14299, Ltmp3538-Lfunc_begin0 - .quad Lset14299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14300, Ltmp3638-Lfunc_begin0 - .quad Lset14300 -.set Lset14301, Ltmp3640-Lfunc_begin0 - .quad Lset14301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14302, Ltmp3685-Lfunc_begin0 - .quad Lset14302 -.set Lset14303, Ltmp3686-Lfunc_begin0 - .quad Lset14303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14304, Ltmp3807-Lfunc_begin0 - .quad Lset14304 -.set Lset14305, Ltmp3809-Lfunc_begin0 - .quad Lset14305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14306, Ltmp3864-Lfunc_begin0 - .quad Lset14306 -.set Lset14307, Ltmp3865-Lfunc_begin0 - .quad Lset14307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14308, Ltmp3933-Lfunc_begin0 - .quad Lset14308 -.set Lset14309, Ltmp3934-Lfunc_begin0 - .quad Lset14309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14310, Ltmp3959-Lfunc_begin0 - .quad Lset14310 -.set Lset14311, Ltmp3960-Lfunc_begin0 - .quad Lset14311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14312, Ltmp3985-Lfunc_begin0 - .quad Lset14312 -.set Lset14313, Ltmp3986-Lfunc_begin0 - .quad Lset14313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14314, Ltmp4011-Lfunc_begin0 - .quad Lset14314 -.set Lset14315, Ltmp4012-Lfunc_begin0 - .quad Lset14315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14316, Ltmp4046-Lfunc_begin0 - .quad Lset14316 -.set Lset14317, Ltmp4047-Lfunc_begin0 - .quad Lset14317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14318, Ltmp4084-Lfunc_begin0 - .quad Lset14318 -.set Lset14319, Ltmp4085-Lfunc_begin0 - .quad Lset14319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14320, Ltmp4106-Lfunc_begin0 - .quad Lset14320 -.set Lset14321, Ltmp4107-Lfunc_begin0 - .quad Lset14321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14322, Ltmp4146-Lfunc_begin0 - .quad Lset14322 -.set Lset14323, Ltmp4147-Lfunc_begin0 - .quad Lset14323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14324, Ltmp4187-Lfunc_begin0 - .quad Lset14324 -.set Lset14325, Ltmp4188-Lfunc_begin0 - .quad Lset14325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14326, Ltmp4227-Lfunc_begin0 - .quad Lset14326 -.set Lset14327, Ltmp4228-Lfunc_begin0 - .quad Lset14327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14328, Ltmp4268-Lfunc_begin0 - .quad Lset14328 -.set Lset14329, Ltmp4269-Lfunc_begin0 - .quad Lset14329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14330, Ltmp4308-Lfunc_begin0 - .quad Lset14330 -.set Lset14331, Ltmp4309-Lfunc_begin0 - .quad Lset14331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14332, Ltmp4349-Lfunc_begin0 - .quad Lset14332 -.set Lset14333, Ltmp4350-Lfunc_begin0 - .quad Lset14333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14334, Ltmp4380-Lfunc_begin0 - .quad Lset14334 -.set Lset14335, Ltmp4381-Lfunc_begin0 - .quad Lset14335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14336, Ltmp4412-Lfunc_begin0 - .quad Lset14336 -.set Lset14337, Ltmp4414-Lfunc_begin0 - .quad Lset14337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14338, Ltmp4454-Lfunc_begin0 - .quad Lset14338 -.set Lset14339, Ltmp4455-Lfunc_begin0 - .quad Lset14339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14340, Ltmp4495-Lfunc_begin0 - .quad Lset14340 -.set Lset14341, Ltmp4496-Lfunc_begin0 - .quad Lset14341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14342, Ltmp4579-Lfunc_begin0 - .quad Lset14342 -.set Lset14343, Ltmp4581-Lfunc_begin0 - .quad Lset14343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14344, Ltmp4649-Lfunc_begin0 - .quad Lset14344 -.set Lset14345, Ltmp4651-Lfunc_begin0 - .quad Lset14345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14346, Ltmp4717-Lfunc_begin0 - .quad Lset14346 -.set Lset14347, Ltmp4719-Lfunc_begin0 - .quad Lset14347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14348, Ltmp4783-Lfunc_begin0 - .quad Lset14348 -.set Lset14349, Ltmp4784-Lfunc_begin0 - .quad Lset14349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14350, Ltmp4813-Lfunc_begin0 - .quad Lset14350 -.set Lset14351, Ltmp4814-Lfunc_begin0 - .quad Lset14351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14352, Ltmp4843-Lfunc_begin0 - .quad Lset14352 -.set Lset14353, Ltmp4844-Lfunc_begin0 - .quad Lset14353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14354, Ltmp4902-Lfunc_begin0 - .quad Lset14354 -.set Lset14355, Ltmp4903-Lfunc_begin0 - .quad Lset14355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14356, Ltmp4943-Lfunc_begin0 - .quad Lset14356 -.set Lset14357, Ltmp4944-Lfunc_begin0 - .quad Lset14357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14358, Ltmp5000-Lfunc_begin0 - .quad Lset14358 -.set Lset14359, Ltmp5001-Lfunc_begin0 - .quad Lset14359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14360, Ltmp5040-Lfunc_begin0 - .quad Lset14360 -.set Lset14361, Ltmp5041-Lfunc_begin0 - .quad Lset14361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14362, Ltmp5078-Lfunc_begin0 - .quad Lset14362 -.set Lset14363, Ltmp5079-Lfunc_begin0 - .quad Lset14363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14364, Ltmp5114-Lfunc_begin0 - .quad Lset14364 -.set Lset14365, Ltmp5115-Lfunc_begin0 - .quad Lset14365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14366, Ltmp5146-Lfunc_begin0 - .quad Lset14366 -.set Lset14367, Ltmp5147-Lfunc_begin0 - .quad Lset14367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14368, Ltmp5178-Lfunc_begin0 - .quad Lset14368 -.set Lset14369, Ltmp5179-Lfunc_begin0 - .quad Lset14369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14370, Ltmp5210-Lfunc_begin0 - .quad Lset14370 -.set Lset14371, Ltmp5211-Lfunc_begin0 - .quad Lset14371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14372, Ltmp5228-Lfunc_begin0 - .quad Lset14372 -.set Lset14373, Ltmp5229-Lfunc_begin0 - .quad Lset14373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14374, Ltmp5246-Lfunc_begin0 - .quad Lset14374 -.set Lset14375, Ltmp5247-Lfunc_begin0 - .quad Lset14375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14376, Ltmp5271-Lfunc_begin0 - .quad Lset14376 -.set Lset14377, Ltmp5272-Lfunc_begin0 - .quad Lset14377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14378, Ltmp5296-Lfunc_begin0 - .quad Lset14378 -.set Lset14379, Ltmp5297-Lfunc_begin0 - .quad Lset14379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14380, Ltmp5322-Lfunc_begin0 - .quad Lset14380 -.set Lset14381, Ltmp5323-Lfunc_begin0 - .quad Lset14381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14382, Ltmp5347-Lfunc_begin0 - .quad Lset14382 -.set Lset14383, Ltmp5348-Lfunc_begin0 - .quad Lset14383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14384, Ltmp5372-Lfunc_begin0 - .quad Lset14384 -.set Lset14385, Ltmp5373-Lfunc_begin0 - .quad Lset14385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14386, Ltmp5397-Lfunc_begin0 - .quad Lset14386 -.set Lset14387, Ltmp5398-Lfunc_begin0 - .quad Lset14387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14388, Ltmp5422-Lfunc_begin0 - .quad Lset14388 -.set Lset14389, Ltmp5423-Lfunc_begin0 - .quad Lset14389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14390, Ltmp5447-Lfunc_begin0 - .quad Lset14390 -.set Lset14391, Ltmp5448-Lfunc_begin0 - .quad Lset14391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14392, Ltmp5472-Lfunc_begin0 - .quad Lset14392 -.set Lset14393, Ltmp5473-Lfunc_begin0 - .quad Lset14393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14394, Ltmp5498-Lfunc_begin0 - .quad Lset14394 -.set Lset14395, Ltmp5499-Lfunc_begin0 - .quad Lset14395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14396, Ltmp5523-Lfunc_begin0 - .quad Lset14396 -.set Lset14397, Ltmp5524-Lfunc_begin0 - .quad Lset14397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14398, Ltmp5548-Lfunc_begin0 - .quad Lset14398 -.set Lset14399, Ltmp5549-Lfunc_begin0 - .quad Lset14399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14400, Ltmp5573-Lfunc_begin0 - .quad Lset14400 -.set Lset14401, Ltmp5574-Lfunc_begin0 - .quad Lset14401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14402, Ltmp5598-Lfunc_begin0 - .quad Lset14402 -.set Lset14403, Ltmp5599-Lfunc_begin0 - .quad Lset14403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14404, Ltmp5631-Lfunc_begin0 - .quad Lset14404 -.set Lset14405, Ltmp5632-Lfunc_begin0 - .quad Lset14405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14406, Ltmp5662-Lfunc_begin0 - .quad Lset14406 -.set Lset14407, Ltmp5663-Lfunc_begin0 - .quad Lset14407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14408, Ltmp5687-Lfunc_begin0 - .quad Lset14408 -.set Lset14409, Ltmp5688-Lfunc_begin0 - .quad Lset14409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14410, Ltmp5712-Lfunc_begin0 - .quad Lset14410 -.set Lset14411, Ltmp5713-Lfunc_begin0 - .quad Lset14411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14412, Ltmp5737-Lfunc_begin0 - .quad Lset14412 -.set Lset14413, Ltmp5738-Lfunc_begin0 - .quad Lset14413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14414, Ltmp5767-Lfunc_begin0 - .quad Lset14414 -.set Lset14415, Ltmp5768-Lfunc_begin0 - .quad Lset14415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14416, Ltmp5795-Lfunc_begin0 - .quad Lset14416 -.set Lset14417, Ltmp5796-Lfunc_begin0 - .quad Lset14417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14418, Ltmp5814-Lfunc_begin0 - .quad Lset14418 -.set Lset14419, Ltmp5815-Lfunc_begin0 - .quad Lset14419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14420, Ltmp5833-Lfunc_begin0 - .quad Lset14420 -.set Lset14421, Ltmp5834-Lfunc_begin0 - .quad Lset14421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14422, Ltmp5852-Lfunc_begin0 - .quad Lset14422 -.set Lset14423, Ltmp5853-Lfunc_begin0 - .quad Lset14423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14424, Ltmp5871-Lfunc_begin0 - .quad Lset14424 -.set Lset14425, Ltmp5872-Lfunc_begin0 - .quad Lset14425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14426, Ltmp5890-Lfunc_begin0 - .quad Lset14426 -.set Lset14427, Ltmp5891-Lfunc_begin0 - .quad Lset14427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14428, Ltmp5920-Lfunc_begin0 - .quad Lset14428 -.set Lset14429, Ltmp5921-Lfunc_begin0 - .quad Lset14429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc236: -.set Lset14430, Ltmp1186-Lfunc_begin0 - .quad Lset14430 -.set Lset14431, Ltmp1187-Lfunc_begin0 - .quad Lset14431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14432, Ltmp1215-Lfunc_begin0 - .quad Lset14432 -.set Lset14433, Ltmp1216-Lfunc_begin0 - .quad Lset14433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14434, Ltmp1237-Lfunc_begin0 - .quad Lset14434 -.set Lset14435, Ltmp1238-Lfunc_begin0 - .quad Lset14435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14436, Ltmp1260-Lfunc_begin0 - .quad Lset14436 -.set Lset14437, Ltmp1261-Lfunc_begin0 - .quad Lset14437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14438, Ltmp1281-Lfunc_begin0 - .quad Lset14438 -.set Lset14439, Ltmp1282-Lfunc_begin0 - .quad Lset14439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14440, Ltmp1314-Lfunc_begin0 - .quad Lset14440 -.set Lset14441, Ltmp1315-Lfunc_begin0 - .quad Lset14441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14442, Ltmp1338-Lfunc_begin0 - .quad Lset14442 -.set Lset14443, Ltmp1339-Lfunc_begin0 - .quad Lset14443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14444, Ltmp1368-Lfunc_begin0 - .quad Lset14444 -.set Lset14445, Ltmp1369-Lfunc_begin0 - .quad Lset14445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14446, Ltmp1462-Lfunc_begin0 - .quad Lset14446 -.set Lset14447, Ltmp1464-Lfunc_begin0 - .quad Lset14447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14448, Ltmp1557-Lfunc_begin0 - .quad Lset14448 -.set Lset14449, Ltmp1559-Lfunc_begin0 - .quad Lset14449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14450, Ltmp1713-Lfunc_begin0 - .quad Lset14450 -.set Lset14451, Ltmp1715-Lfunc_begin0 - .quad Lset14451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14452, Ltmp1864-Lfunc_begin0 - .quad Lset14452 -.set Lset14453, Ltmp1866-Lfunc_begin0 - .quad Lset14453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14454, Ltmp2004-Lfunc_begin0 - .quad Lset14454 -.set Lset14455, Ltmp2006-Lfunc_begin0 - .quad Lset14455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14456, Ltmp2074-Lfunc_begin0 - .quad Lset14456 -.set Lset14457, Ltmp2076-Lfunc_begin0 - .quad Lset14457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14458, Ltmp2120-Lfunc_begin0 - .quad Lset14458 -.set Lset14459, Ltmp2121-Lfunc_begin0 - .quad Lset14459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14460, Ltmp2193-Lfunc_begin0 - .quad Lset14460 -.set Lset14461, Ltmp2195-Lfunc_begin0 - .quad Lset14461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14462, Ltmp2253-Lfunc_begin0 - .quad Lset14462 -.set Lset14463, Ltmp2255-Lfunc_begin0 - .quad Lset14463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14464, Ltmp2302-Lfunc_begin0 - .quad Lset14464 -.set Lset14465, Ltmp2304-Lfunc_begin0 - .quad Lset14465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14466, Ltmp2351-Lfunc_begin0 - .quad Lset14466 -.set Lset14467, Ltmp2353-Lfunc_begin0 - .quad Lset14467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14468, Ltmp2400-Lfunc_begin0 - .quad Lset14468 -.set Lset14469, Ltmp2402-Lfunc_begin0 - .quad Lset14469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14470, Ltmp2444-Lfunc_begin0 - .quad Lset14470 -.set Lset14471, Ltmp2446-Lfunc_begin0 - .quad Lset14471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14472, Ltmp2499-Lfunc_begin0 - .quad Lset14472 -.set Lset14473, Ltmp2501-Lfunc_begin0 - .quad Lset14473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14474, Ltmp2554-Lfunc_begin0 - .quad Lset14474 -.set Lset14475, Ltmp2556-Lfunc_begin0 - .quad Lset14475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14476, Ltmp2609-Lfunc_begin0 - .quad Lset14476 -.set Lset14477, Ltmp2611-Lfunc_begin0 - .quad Lset14477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14478, Ltmp2673-Lfunc_begin0 - .quad Lset14478 -.set Lset14479, Ltmp2675-Lfunc_begin0 - .quad Lset14479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14480, Ltmp2738-Lfunc_begin0 - .quad Lset14480 -.set Lset14481, Ltmp2740-Lfunc_begin0 - .quad Lset14481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14482, Ltmp2811-Lfunc_begin0 - .quad Lset14482 -.set Lset14483, Ltmp2813-Lfunc_begin0 - .quad Lset14483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14484, Ltmp2871-Lfunc_begin0 - .quad Lset14484 -.set Lset14485, Ltmp2873-Lfunc_begin0 - .quad Lset14485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14486, Ltmp2922-Lfunc_begin0 - .quad Lset14486 -.set Lset14487, Ltmp2924-Lfunc_begin0 - .quad Lset14487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14488, Ltmp2957-Lfunc_begin0 - .quad Lset14488 -.set Lset14489, Ltmp2958-Lfunc_begin0 - .quad Lset14489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14490, Ltmp2997-Lfunc_begin0 - .quad Lset14490 -.set Lset14491, Ltmp2999-Lfunc_begin0 - .quad Lset14491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14492, Ltmp3024-Lfunc_begin0 - .quad Lset14492 -.set Lset14493, Ltmp3025-Lfunc_begin0 - .quad Lset14493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14494, Ltmp3047-Lfunc_begin0 - .quad Lset14494 -.set Lset14495, Ltmp3048-Lfunc_begin0 - .quad Lset14495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14496, Ltmp3096-Lfunc_begin0 - .quad Lset14496 -.set Lset14497, Ltmp3097-Lfunc_begin0 - .quad Lset14497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14498, Ltmp3120-Lfunc_begin0 - .quad Lset14498 -.set Lset14499, Ltmp3122-Lfunc_begin0 - .quad Lset14499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14500, Ltmp3161-Lfunc_begin0 - .quad Lset14500 -.set Lset14501, Ltmp3163-Lfunc_begin0 - .quad Lset14501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14502, Ltmp3227-Lfunc_begin0 - .quad Lset14502 -.set Lset14503, Ltmp3228-Lfunc_begin0 - .quad Lset14503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14504, Ltmp3292-Lfunc_begin0 - .quad Lset14504 -.set Lset14505, Ltmp3293-Lfunc_begin0 - .quad Lset14505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14506, Ltmp3329-Lfunc_begin0 - .quad Lset14506 -.set Lset14507, Ltmp3330-Lfunc_begin0 - .quad Lset14507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14508, Ltmp3375-Lfunc_begin0 - .quad Lset14508 -.set Lset14509, Ltmp3376-Lfunc_begin0 - .quad Lset14509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14510, Ltmp3407-Lfunc_begin0 - .quad Lset14510 -.set Lset14511, Ltmp3408-Lfunc_begin0 - .quad Lset14511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14512, Ltmp3435-Lfunc_begin0 - .quad Lset14512 -.set Lset14513, Ltmp3436-Lfunc_begin0 - .quad Lset14513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14514, Ltmp3537-Lfunc_begin0 - .quad Lset14514 -.set Lset14515, Ltmp3538-Lfunc_begin0 - .quad Lset14515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14516, Ltmp3638-Lfunc_begin0 - .quad Lset14516 -.set Lset14517, Ltmp3640-Lfunc_begin0 - .quad Lset14517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14518, Ltmp3685-Lfunc_begin0 - .quad Lset14518 -.set Lset14519, Ltmp3686-Lfunc_begin0 - .quad Lset14519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14520, Ltmp3807-Lfunc_begin0 - .quad Lset14520 -.set Lset14521, Ltmp3809-Lfunc_begin0 - .quad Lset14521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14522, Ltmp3864-Lfunc_begin0 - .quad Lset14522 -.set Lset14523, Ltmp3865-Lfunc_begin0 - .quad Lset14523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14524, Ltmp3933-Lfunc_begin0 - .quad Lset14524 -.set Lset14525, Ltmp3934-Lfunc_begin0 - .quad Lset14525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14526, Ltmp3959-Lfunc_begin0 - .quad Lset14526 -.set Lset14527, Ltmp3960-Lfunc_begin0 - .quad Lset14527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14528, Ltmp3985-Lfunc_begin0 - .quad Lset14528 -.set Lset14529, Ltmp3986-Lfunc_begin0 - .quad Lset14529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14530, Ltmp4011-Lfunc_begin0 - .quad Lset14530 -.set Lset14531, Ltmp4012-Lfunc_begin0 - .quad Lset14531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14532, Ltmp4046-Lfunc_begin0 - .quad Lset14532 -.set Lset14533, Ltmp4047-Lfunc_begin0 - .quad Lset14533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14534, Ltmp4084-Lfunc_begin0 - .quad Lset14534 -.set Lset14535, Ltmp4085-Lfunc_begin0 - .quad Lset14535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14536, Ltmp4106-Lfunc_begin0 - .quad Lset14536 -.set Lset14537, Ltmp4107-Lfunc_begin0 - .quad Lset14537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14538, Ltmp4146-Lfunc_begin0 - .quad Lset14538 -.set Lset14539, Ltmp4147-Lfunc_begin0 - .quad Lset14539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14540, Ltmp4187-Lfunc_begin0 - .quad Lset14540 -.set Lset14541, Ltmp4188-Lfunc_begin0 - .quad Lset14541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14542, Ltmp4227-Lfunc_begin0 - .quad Lset14542 -.set Lset14543, Ltmp4228-Lfunc_begin0 - .quad Lset14543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14544, Ltmp4268-Lfunc_begin0 - .quad Lset14544 -.set Lset14545, Ltmp4269-Lfunc_begin0 - .quad Lset14545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14546, Ltmp4308-Lfunc_begin0 - .quad Lset14546 -.set Lset14547, Ltmp4309-Lfunc_begin0 - .quad Lset14547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14548, Ltmp4349-Lfunc_begin0 - .quad Lset14548 -.set Lset14549, Ltmp4350-Lfunc_begin0 - .quad Lset14549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14550, Ltmp4380-Lfunc_begin0 - .quad Lset14550 -.set Lset14551, Ltmp4381-Lfunc_begin0 - .quad Lset14551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14552, Ltmp4412-Lfunc_begin0 - .quad Lset14552 -.set Lset14553, Ltmp4414-Lfunc_begin0 - .quad Lset14553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14554, Ltmp4454-Lfunc_begin0 - .quad Lset14554 -.set Lset14555, Ltmp4455-Lfunc_begin0 - .quad Lset14555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14556, Ltmp4495-Lfunc_begin0 - .quad Lset14556 -.set Lset14557, Ltmp4496-Lfunc_begin0 - .quad Lset14557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14558, Ltmp4579-Lfunc_begin0 - .quad Lset14558 -.set Lset14559, Ltmp4581-Lfunc_begin0 - .quad Lset14559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14560, Ltmp4649-Lfunc_begin0 - .quad Lset14560 -.set Lset14561, Ltmp4651-Lfunc_begin0 - .quad Lset14561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14562, Ltmp4717-Lfunc_begin0 - .quad Lset14562 -.set Lset14563, Ltmp4719-Lfunc_begin0 - .quad Lset14563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14564, Ltmp4783-Lfunc_begin0 - .quad Lset14564 -.set Lset14565, Ltmp4784-Lfunc_begin0 - .quad Lset14565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14566, Ltmp4813-Lfunc_begin0 - .quad Lset14566 -.set Lset14567, Ltmp4814-Lfunc_begin0 - .quad Lset14567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14568, Ltmp4843-Lfunc_begin0 - .quad Lset14568 -.set Lset14569, Ltmp4844-Lfunc_begin0 - .quad Lset14569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14570, Ltmp4902-Lfunc_begin0 - .quad Lset14570 -.set Lset14571, Ltmp4903-Lfunc_begin0 - .quad Lset14571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14572, Ltmp4943-Lfunc_begin0 - .quad Lset14572 -.set Lset14573, Ltmp4944-Lfunc_begin0 - .quad Lset14573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14574, Ltmp5000-Lfunc_begin0 - .quad Lset14574 -.set Lset14575, Ltmp5001-Lfunc_begin0 - .quad Lset14575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14576, Ltmp5040-Lfunc_begin0 - .quad Lset14576 -.set Lset14577, Ltmp5041-Lfunc_begin0 - .quad Lset14577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14578, Ltmp5078-Lfunc_begin0 - .quad Lset14578 -.set Lset14579, Ltmp5079-Lfunc_begin0 - .quad Lset14579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14580, Ltmp5114-Lfunc_begin0 - .quad Lset14580 -.set Lset14581, Ltmp5115-Lfunc_begin0 - .quad Lset14581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14582, Ltmp5146-Lfunc_begin0 - .quad Lset14582 -.set Lset14583, Ltmp5147-Lfunc_begin0 - .quad Lset14583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14584, Ltmp5178-Lfunc_begin0 - .quad Lset14584 -.set Lset14585, Ltmp5179-Lfunc_begin0 - .quad Lset14585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14586, Ltmp5210-Lfunc_begin0 - .quad Lset14586 -.set Lset14587, Ltmp5211-Lfunc_begin0 - .quad Lset14587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14588, Ltmp5228-Lfunc_begin0 - .quad Lset14588 -.set Lset14589, Ltmp5229-Lfunc_begin0 - .quad Lset14589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14590, Ltmp5246-Lfunc_begin0 - .quad Lset14590 -.set Lset14591, Ltmp5247-Lfunc_begin0 - .quad Lset14591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14592, Ltmp5271-Lfunc_begin0 - .quad Lset14592 -.set Lset14593, Ltmp5272-Lfunc_begin0 - .quad Lset14593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14594, Ltmp5296-Lfunc_begin0 - .quad Lset14594 -.set Lset14595, Ltmp5297-Lfunc_begin0 - .quad Lset14595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14596, Ltmp5322-Lfunc_begin0 - .quad Lset14596 -.set Lset14597, Ltmp5323-Lfunc_begin0 - .quad Lset14597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14598, Ltmp5347-Lfunc_begin0 - .quad Lset14598 -.set Lset14599, Ltmp5348-Lfunc_begin0 - .quad Lset14599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14600, Ltmp5372-Lfunc_begin0 - .quad Lset14600 -.set Lset14601, Ltmp5373-Lfunc_begin0 - .quad Lset14601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14602, Ltmp5397-Lfunc_begin0 - .quad Lset14602 -.set Lset14603, Ltmp5398-Lfunc_begin0 - .quad Lset14603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14604, Ltmp5422-Lfunc_begin0 - .quad Lset14604 -.set Lset14605, Ltmp5423-Lfunc_begin0 - .quad Lset14605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14606, Ltmp5447-Lfunc_begin0 - .quad Lset14606 -.set Lset14607, Ltmp5448-Lfunc_begin0 - .quad Lset14607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14608, Ltmp5472-Lfunc_begin0 - .quad Lset14608 -.set Lset14609, Ltmp5473-Lfunc_begin0 - .quad Lset14609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14610, Ltmp5498-Lfunc_begin0 - .quad Lset14610 -.set Lset14611, Ltmp5499-Lfunc_begin0 - .quad Lset14611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14612, Ltmp5523-Lfunc_begin0 - .quad Lset14612 -.set Lset14613, Ltmp5524-Lfunc_begin0 - .quad Lset14613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14614, Ltmp5548-Lfunc_begin0 - .quad Lset14614 -.set Lset14615, Ltmp5549-Lfunc_begin0 - .quad Lset14615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14616, Ltmp5573-Lfunc_begin0 - .quad Lset14616 -.set Lset14617, Ltmp5574-Lfunc_begin0 - .quad Lset14617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14618, Ltmp5598-Lfunc_begin0 - .quad Lset14618 -.set Lset14619, Ltmp5599-Lfunc_begin0 - .quad Lset14619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14620, Ltmp5631-Lfunc_begin0 - .quad Lset14620 -.set Lset14621, Ltmp5632-Lfunc_begin0 - .quad Lset14621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14622, Ltmp5662-Lfunc_begin0 - .quad Lset14622 -.set Lset14623, Ltmp5663-Lfunc_begin0 - .quad Lset14623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14624, Ltmp5687-Lfunc_begin0 - .quad Lset14624 -.set Lset14625, Ltmp5688-Lfunc_begin0 - .quad Lset14625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14626, Ltmp5712-Lfunc_begin0 - .quad Lset14626 -.set Lset14627, Ltmp5713-Lfunc_begin0 - .quad Lset14627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14628, Ltmp5737-Lfunc_begin0 - .quad Lset14628 -.set Lset14629, Ltmp5738-Lfunc_begin0 - .quad Lset14629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14630, Ltmp5767-Lfunc_begin0 - .quad Lset14630 -.set Lset14631, Ltmp5768-Lfunc_begin0 - .quad Lset14631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14632, Ltmp5795-Lfunc_begin0 - .quad Lset14632 -.set Lset14633, Ltmp5796-Lfunc_begin0 - .quad Lset14633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14634, Ltmp5814-Lfunc_begin0 - .quad Lset14634 -.set Lset14635, Ltmp5815-Lfunc_begin0 - .quad Lset14635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14636, Ltmp5833-Lfunc_begin0 - .quad Lset14636 -.set Lset14637, Ltmp5834-Lfunc_begin0 - .quad Lset14637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14638, Ltmp5852-Lfunc_begin0 - .quad Lset14638 -.set Lset14639, Ltmp5853-Lfunc_begin0 - .quad Lset14639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14640, Ltmp5871-Lfunc_begin0 - .quad Lset14640 -.set Lset14641, Ltmp5872-Lfunc_begin0 - .quad Lset14641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14642, Ltmp5890-Lfunc_begin0 - .quad Lset14642 -.set Lset14643, Ltmp5891-Lfunc_begin0 - .quad Lset14643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14644, Ltmp5920-Lfunc_begin0 - .quad Lset14644 -.set Lset14645, Ltmp5921-Lfunc_begin0 - .quad Lset14645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc237: -.set Lset14646, Ltmp1186-Lfunc_begin0 - .quad Lset14646 -.set Lset14647, Ltmp1187-Lfunc_begin0 - .quad Lset14647 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14648, Ltmp1215-Lfunc_begin0 - .quad Lset14648 -.set Lset14649, Ltmp1216-Lfunc_begin0 - .quad Lset14649 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14650, Ltmp1237-Lfunc_begin0 - .quad Lset14650 -.set Lset14651, Ltmp1238-Lfunc_begin0 - .quad Lset14651 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14652, Ltmp1260-Lfunc_begin0 - .quad Lset14652 -.set Lset14653, Ltmp1261-Lfunc_begin0 - .quad Lset14653 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14654, Ltmp1281-Lfunc_begin0 - .quad Lset14654 -.set Lset14655, Ltmp1282-Lfunc_begin0 - .quad Lset14655 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14656, Ltmp1314-Lfunc_begin0 - .quad Lset14656 -.set Lset14657, Ltmp1315-Lfunc_begin0 - .quad Lset14657 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14658, Ltmp1338-Lfunc_begin0 - .quad Lset14658 -.set Lset14659, Ltmp1339-Lfunc_begin0 - .quad Lset14659 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14660, Ltmp1368-Lfunc_begin0 - .quad Lset14660 -.set Lset14661, Ltmp1369-Lfunc_begin0 - .quad Lset14661 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14662, Ltmp1462-Lfunc_begin0 - .quad Lset14662 -.set Lset14663, Ltmp1464-Lfunc_begin0 - .quad Lset14663 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14664, Ltmp1557-Lfunc_begin0 - .quad Lset14664 -.set Lset14665, Ltmp1559-Lfunc_begin0 - .quad Lset14665 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14666, Ltmp1713-Lfunc_begin0 - .quad Lset14666 -.set Lset14667, Ltmp1715-Lfunc_begin0 - .quad Lset14667 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14668, Ltmp1864-Lfunc_begin0 - .quad Lset14668 -.set Lset14669, Ltmp1866-Lfunc_begin0 - .quad Lset14669 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14670, Ltmp2004-Lfunc_begin0 - .quad Lset14670 -.set Lset14671, Ltmp2006-Lfunc_begin0 - .quad Lset14671 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14672, Ltmp2074-Lfunc_begin0 - .quad Lset14672 -.set Lset14673, Ltmp2076-Lfunc_begin0 - .quad Lset14673 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14674, Ltmp2120-Lfunc_begin0 - .quad Lset14674 -.set Lset14675, Ltmp2121-Lfunc_begin0 - .quad Lset14675 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14676, Ltmp2193-Lfunc_begin0 - .quad Lset14676 -.set Lset14677, Ltmp2195-Lfunc_begin0 - .quad Lset14677 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14678, Ltmp2253-Lfunc_begin0 - .quad Lset14678 -.set Lset14679, Ltmp2255-Lfunc_begin0 - .quad Lset14679 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14680, Ltmp2302-Lfunc_begin0 - .quad Lset14680 -.set Lset14681, Ltmp2304-Lfunc_begin0 - .quad Lset14681 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14682, Ltmp2351-Lfunc_begin0 - .quad Lset14682 -.set Lset14683, Ltmp2353-Lfunc_begin0 - .quad Lset14683 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14684, Ltmp2400-Lfunc_begin0 - .quad Lset14684 -.set Lset14685, Ltmp2402-Lfunc_begin0 - .quad Lset14685 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14686, Ltmp2444-Lfunc_begin0 - .quad Lset14686 -.set Lset14687, Ltmp2446-Lfunc_begin0 - .quad Lset14687 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14688, Ltmp2499-Lfunc_begin0 - .quad Lset14688 -.set Lset14689, Ltmp2501-Lfunc_begin0 - .quad Lset14689 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14690, Ltmp2554-Lfunc_begin0 - .quad Lset14690 -.set Lset14691, Ltmp2556-Lfunc_begin0 - .quad Lset14691 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14692, Ltmp2609-Lfunc_begin0 - .quad Lset14692 -.set Lset14693, Ltmp2611-Lfunc_begin0 - .quad Lset14693 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14694, Ltmp2673-Lfunc_begin0 - .quad Lset14694 -.set Lset14695, Ltmp2675-Lfunc_begin0 - .quad Lset14695 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14696, Ltmp2738-Lfunc_begin0 - .quad Lset14696 -.set Lset14697, Ltmp2740-Lfunc_begin0 - .quad Lset14697 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14698, Ltmp2811-Lfunc_begin0 - .quad Lset14698 -.set Lset14699, Ltmp2813-Lfunc_begin0 - .quad Lset14699 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14700, Ltmp2871-Lfunc_begin0 - .quad Lset14700 -.set Lset14701, Ltmp2873-Lfunc_begin0 - .quad Lset14701 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14702, Ltmp2922-Lfunc_begin0 - .quad Lset14702 -.set Lset14703, Ltmp2924-Lfunc_begin0 - .quad Lset14703 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14704, Ltmp2957-Lfunc_begin0 - .quad Lset14704 -.set Lset14705, Ltmp2958-Lfunc_begin0 - .quad Lset14705 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14706, Ltmp2997-Lfunc_begin0 - .quad Lset14706 -.set Lset14707, Ltmp2999-Lfunc_begin0 - .quad Lset14707 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14708, Ltmp3024-Lfunc_begin0 - .quad Lset14708 -.set Lset14709, Ltmp3025-Lfunc_begin0 - .quad Lset14709 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14710, Ltmp3047-Lfunc_begin0 - .quad Lset14710 -.set Lset14711, Ltmp3048-Lfunc_begin0 - .quad Lset14711 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14712, Ltmp3096-Lfunc_begin0 - .quad Lset14712 -.set Lset14713, Ltmp3097-Lfunc_begin0 - .quad Lset14713 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14714, Ltmp3120-Lfunc_begin0 - .quad Lset14714 -.set Lset14715, Ltmp3122-Lfunc_begin0 - .quad Lset14715 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14716, Ltmp3161-Lfunc_begin0 - .quad Lset14716 -.set Lset14717, Ltmp3163-Lfunc_begin0 - .quad Lset14717 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14718, Ltmp3227-Lfunc_begin0 - .quad Lset14718 -.set Lset14719, Ltmp3228-Lfunc_begin0 - .quad Lset14719 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14720, Ltmp3292-Lfunc_begin0 - .quad Lset14720 -.set Lset14721, Ltmp3293-Lfunc_begin0 - .quad Lset14721 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14722, Ltmp3329-Lfunc_begin0 - .quad Lset14722 -.set Lset14723, Ltmp3330-Lfunc_begin0 - .quad Lset14723 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14724, Ltmp3375-Lfunc_begin0 - .quad Lset14724 -.set Lset14725, Ltmp3376-Lfunc_begin0 - .quad Lset14725 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14726, Ltmp3407-Lfunc_begin0 - .quad Lset14726 -.set Lset14727, Ltmp3408-Lfunc_begin0 - .quad Lset14727 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14728, Ltmp3435-Lfunc_begin0 - .quad Lset14728 -.set Lset14729, Ltmp3436-Lfunc_begin0 - .quad Lset14729 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14730, Ltmp3537-Lfunc_begin0 - .quad Lset14730 -.set Lset14731, Ltmp3538-Lfunc_begin0 - .quad Lset14731 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14732, Ltmp3638-Lfunc_begin0 - .quad Lset14732 -.set Lset14733, Ltmp3640-Lfunc_begin0 - .quad Lset14733 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14734, Ltmp3685-Lfunc_begin0 - .quad Lset14734 -.set Lset14735, Ltmp3686-Lfunc_begin0 - .quad Lset14735 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14736, Ltmp3807-Lfunc_begin0 - .quad Lset14736 -.set Lset14737, Ltmp3809-Lfunc_begin0 - .quad Lset14737 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14738, Ltmp3815-Lfunc_begin0 - .quad Lset14738 -.set Lset14739, Ltmp3821-Lfunc_begin0 - .quad Lset14739 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14740, Ltmp3864-Lfunc_begin0 - .quad Lset14740 -.set Lset14741, Ltmp3865-Lfunc_begin0 - .quad Lset14741 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14742, Ltmp3933-Lfunc_begin0 - .quad Lset14742 -.set Lset14743, Ltmp3934-Lfunc_begin0 - .quad Lset14743 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14744, Ltmp3959-Lfunc_begin0 - .quad Lset14744 -.set Lset14745, Ltmp3960-Lfunc_begin0 - .quad Lset14745 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14746, Ltmp3985-Lfunc_begin0 - .quad Lset14746 -.set Lset14747, Ltmp3986-Lfunc_begin0 - .quad Lset14747 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14748, Ltmp4011-Lfunc_begin0 - .quad Lset14748 -.set Lset14749, Ltmp4012-Lfunc_begin0 - .quad Lset14749 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14750, Ltmp4046-Lfunc_begin0 - .quad Lset14750 -.set Lset14751, Ltmp4047-Lfunc_begin0 - .quad Lset14751 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14752, Ltmp4084-Lfunc_begin0 - .quad Lset14752 -.set Lset14753, Ltmp4085-Lfunc_begin0 - .quad Lset14753 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14754, Ltmp4106-Lfunc_begin0 - .quad Lset14754 -.set Lset14755, Ltmp4107-Lfunc_begin0 - .quad Lset14755 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14756, Ltmp4146-Lfunc_begin0 - .quad Lset14756 -.set Lset14757, Ltmp4147-Lfunc_begin0 - .quad Lset14757 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14758, Ltmp4187-Lfunc_begin0 - .quad Lset14758 -.set Lset14759, Ltmp4188-Lfunc_begin0 - .quad Lset14759 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14760, Ltmp4227-Lfunc_begin0 - .quad Lset14760 -.set Lset14761, Ltmp4228-Lfunc_begin0 - .quad Lset14761 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14762, Ltmp4268-Lfunc_begin0 - .quad Lset14762 -.set Lset14763, Ltmp4269-Lfunc_begin0 - .quad Lset14763 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14764, Ltmp4308-Lfunc_begin0 - .quad Lset14764 -.set Lset14765, Ltmp4309-Lfunc_begin0 - .quad Lset14765 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14766, Ltmp4349-Lfunc_begin0 - .quad Lset14766 -.set Lset14767, Ltmp4350-Lfunc_begin0 - .quad Lset14767 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14768, Ltmp4380-Lfunc_begin0 - .quad Lset14768 -.set Lset14769, Ltmp4381-Lfunc_begin0 - .quad Lset14769 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14770, Ltmp4412-Lfunc_begin0 - .quad Lset14770 -.set Lset14771, Ltmp4414-Lfunc_begin0 - .quad Lset14771 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14772, Ltmp4454-Lfunc_begin0 - .quad Lset14772 -.set Lset14773, Ltmp4455-Lfunc_begin0 - .quad Lset14773 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14774, Ltmp4495-Lfunc_begin0 - .quad Lset14774 -.set Lset14775, Ltmp4496-Lfunc_begin0 - .quad Lset14775 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14776, Ltmp4579-Lfunc_begin0 - .quad Lset14776 -.set Lset14777, Ltmp4581-Lfunc_begin0 - .quad Lset14777 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14778, Ltmp4649-Lfunc_begin0 - .quad Lset14778 -.set Lset14779, Ltmp4651-Lfunc_begin0 - .quad Lset14779 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14780, Ltmp4717-Lfunc_begin0 - .quad Lset14780 -.set Lset14781, Ltmp4719-Lfunc_begin0 - .quad Lset14781 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14782, Ltmp4783-Lfunc_begin0 - .quad Lset14782 -.set Lset14783, Ltmp4784-Lfunc_begin0 - .quad Lset14783 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14784, Ltmp4813-Lfunc_begin0 - .quad Lset14784 -.set Lset14785, Ltmp4814-Lfunc_begin0 - .quad Lset14785 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14786, Ltmp4843-Lfunc_begin0 - .quad Lset14786 -.set Lset14787, Ltmp4844-Lfunc_begin0 - .quad Lset14787 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14788, Ltmp4902-Lfunc_begin0 - .quad Lset14788 -.set Lset14789, Ltmp4903-Lfunc_begin0 - .quad Lset14789 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14790, Ltmp4943-Lfunc_begin0 - .quad Lset14790 -.set Lset14791, Ltmp4944-Lfunc_begin0 - .quad Lset14791 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14792, Ltmp5000-Lfunc_begin0 - .quad Lset14792 -.set Lset14793, Ltmp5001-Lfunc_begin0 - .quad Lset14793 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14794, Ltmp5040-Lfunc_begin0 - .quad Lset14794 -.set Lset14795, Ltmp5041-Lfunc_begin0 - .quad Lset14795 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14796, Ltmp5078-Lfunc_begin0 - .quad Lset14796 -.set Lset14797, Ltmp5079-Lfunc_begin0 - .quad Lset14797 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14798, Ltmp5114-Lfunc_begin0 - .quad Lset14798 -.set Lset14799, Ltmp5115-Lfunc_begin0 - .quad Lset14799 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14800, Ltmp5146-Lfunc_begin0 - .quad Lset14800 -.set Lset14801, Ltmp5147-Lfunc_begin0 - .quad Lset14801 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14802, Ltmp5178-Lfunc_begin0 - .quad Lset14802 -.set Lset14803, Ltmp5179-Lfunc_begin0 - .quad Lset14803 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14804, Ltmp5210-Lfunc_begin0 - .quad Lset14804 -.set Lset14805, Ltmp5211-Lfunc_begin0 - .quad Lset14805 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14806, Ltmp5228-Lfunc_begin0 - .quad Lset14806 -.set Lset14807, Ltmp5229-Lfunc_begin0 - .quad Lset14807 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14808, Ltmp5246-Lfunc_begin0 - .quad Lset14808 -.set Lset14809, Ltmp5247-Lfunc_begin0 - .quad Lset14809 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14810, Ltmp5271-Lfunc_begin0 - .quad Lset14810 -.set Lset14811, Ltmp5272-Lfunc_begin0 - .quad Lset14811 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14812, Ltmp5296-Lfunc_begin0 - .quad Lset14812 -.set Lset14813, Ltmp5297-Lfunc_begin0 - .quad Lset14813 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14814, Ltmp5322-Lfunc_begin0 - .quad Lset14814 -.set Lset14815, Ltmp5323-Lfunc_begin0 - .quad Lset14815 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14816, Ltmp5347-Lfunc_begin0 - .quad Lset14816 -.set Lset14817, Ltmp5348-Lfunc_begin0 - .quad Lset14817 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14818, Ltmp5372-Lfunc_begin0 - .quad Lset14818 -.set Lset14819, Ltmp5373-Lfunc_begin0 - .quad Lset14819 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14820, Ltmp5397-Lfunc_begin0 - .quad Lset14820 -.set Lset14821, Ltmp5398-Lfunc_begin0 - .quad Lset14821 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14822, Ltmp5422-Lfunc_begin0 - .quad Lset14822 -.set Lset14823, Ltmp5423-Lfunc_begin0 - .quad Lset14823 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14824, Ltmp5447-Lfunc_begin0 - .quad Lset14824 -.set Lset14825, Ltmp5448-Lfunc_begin0 - .quad Lset14825 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14826, Ltmp5472-Lfunc_begin0 - .quad Lset14826 -.set Lset14827, Ltmp5473-Lfunc_begin0 - .quad Lset14827 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14828, Ltmp5498-Lfunc_begin0 - .quad Lset14828 -.set Lset14829, Ltmp5499-Lfunc_begin0 - .quad Lset14829 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14830, Ltmp5523-Lfunc_begin0 - .quad Lset14830 -.set Lset14831, Ltmp5524-Lfunc_begin0 - .quad Lset14831 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14832, Ltmp5548-Lfunc_begin0 - .quad Lset14832 -.set Lset14833, Ltmp5549-Lfunc_begin0 - .quad Lset14833 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14834, Ltmp5573-Lfunc_begin0 - .quad Lset14834 -.set Lset14835, Ltmp5574-Lfunc_begin0 - .quad Lset14835 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14836, Ltmp5598-Lfunc_begin0 - .quad Lset14836 -.set Lset14837, Ltmp5599-Lfunc_begin0 - .quad Lset14837 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14838, Ltmp5631-Lfunc_begin0 - .quad Lset14838 -.set Lset14839, Ltmp5632-Lfunc_begin0 - .quad Lset14839 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14840, Ltmp5662-Lfunc_begin0 - .quad Lset14840 -.set Lset14841, Ltmp5663-Lfunc_begin0 - .quad Lset14841 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14842, Ltmp5687-Lfunc_begin0 - .quad Lset14842 -.set Lset14843, Ltmp5688-Lfunc_begin0 - .quad Lset14843 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14844, Ltmp5712-Lfunc_begin0 - .quad Lset14844 -.set Lset14845, Ltmp5713-Lfunc_begin0 - .quad Lset14845 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14846, Ltmp5737-Lfunc_begin0 - .quad Lset14846 -.set Lset14847, Ltmp5738-Lfunc_begin0 - .quad Lset14847 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14848, Ltmp5767-Lfunc_begin0 - .quad Lset14848 -.set Lset14849, Ltmp5768-Lfunc_begin0 - .quad Lset14849 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14850, Ltmp5795-Lfunc_begin0 - .quad Lset14850 -.set Lset14851, Ltmp5796-Lfunc_begin0 - .quad Lset14851 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14852, Ltmp5814-Lfunc_begin0 - .quad Lset14852 -.set Lset14853, Ltmp5815-Lfunc_begin0 - .quad Lset14853 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14854, Ltmp5833-Lfunc_begin0 - .quad Lset14854 -.set Lset14855, Ltmp5834-Lfunc_begin0 - .quad Lset14855 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14856, Ltmp5852-Lfunc_begin0 - .quad Lset14856 -.set Lset14857, Ltmp5853-Lfunc_begin0 - .quad Lset14857 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14858, Ltmp5871-Lfunc_begin0 - .quad Lset14858 -.set Lset14859, Ltmp5872-Lfunc_begin0 - .quad Lset14859 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14860, Ltmp5890-Lfunc_begin0 - .quad Lset14860 -.set Lset14861, Ltmp5891-Lfunc_begin0 - .quad Lset14861 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset14862, Ltmp5920-Lfunc_begin0 - .quad Lset14862 -.set Lset14863, Ltmp5921-Lfunc_begin0 - .quad Lset14863 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc238: -.set Lset14864, Ltmp1186-Lfunc_begin0 - .quad Lset14864 -.set Lset14865, Ltmp1187-Lfunc_begin0 - .quad Lset14865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14866, Ltmp1215-Lfunc_begin0 - .quad Lset14866 -.set Lset14867, Ltmp1216-Lfunc_begin0 - .quad Lset14867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14868, Ltmp1237-Lfunc_begin0 - .quad Lset14868 -.set Lset14869, Ltmp1238-Lfunc_begin0 - .quad Lset14869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14870, Ltmp1260-Lfunc_begin0 - .quad Lset14870 -.set Lset14871, Ltmp1261-Lfunc_begin0 - .quad Lset14871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14872, Ltmp1281-Lfunc_begin0 - .quad Lset14872 -.set Lset14873, Ltmp1282-Lfunc_begin0 - .quad Lset14873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14874, Ltmp1314-Lfunc_begin0 - .quad Lset14874 -.set Lset14875, Ltmp1315-Lfunc_begin0 - .quad Lset14875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14876, Ltmp1338-Lfunc_begin0 - .quad Lset14876 -.set Lset14877, Ltmp1339-Lfunc_begin0 - .quad Lset14877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14878, Ltmp1368-Lfunc_begin0 - .quad Lset14878 -.set Lset14879, Ltmp1369-Lfunc_begin0 - .quad Lset14879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14880, Ltmp1462-Lfunc_begin0 - .quad Lset14880 -.set Lset14881, Ltmp1464-Lfunc_begin0 - .quad Lset14881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14882, Ltmp1557-Lfunc_begin0 - .quad Lset14882 -.set Lset14883, Ltmp1559-Lfunc_begin0 - .quad Lset14883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14884, Ltmp1713-Lfunc_begin0 - .quad Lset14884 -.set Lset14885, Ltmp1715-Lfunc_begin0 - .quad Lset14885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14886, Ltmp1864-Lfunc_begin0 - .quad Lset14886 -.set Lset14887, Ltmp1866-Lfunc_begin0 - .quad Lset14887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14888, Ltmp2004-Lfunc_begin0 - .quad Lset14888 -.set Lset14889, Ltmp2006-Lfunc_begin0 - .quad Lset14889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14890, Ltmp2074-Lfunc_begin0 - .quad Lset14890 -.set Lset14891, Ltmp2076-Lfunc_begin0 - .quad Lset14891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14892, Ltmp2120-Lfunc_begin0 - .quad Lset14892 -.set Lset14893, Ltmp2121-Lfunc_begin0 - .quad Lset14893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14894, Ltmp2193-Lfunc_begin0 - .quad Lset14894 -.set Lset14895, Ltmp2195-Lfunc_begin0 - .quad Lset14895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14896, Ltmp2253-Lfunc_begin0 - .quad Lset14896 -.set Lset14897, Ltmp2255-Lfunc_begin0 - .quad Lset14897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14898, Ltmp2302-Lfunc_begin0 - .quad Lset14898 -.set Lset14899, Ltmp2304-Lfunc_begin0 - .quad Lset14899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14900, Ltmp2351-Lfunc_begin0 - .quad Lset14900 -.set Lset14901, Ltmp2353-Lfunc_begin0 - .quad Lset14901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14902, Ltmp2400-Lfunc_begin0 - .quad Lset14902 -.set Lset14903, Ltmp2402-Lfunc_begin0 - .quad Lset14903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14904, Ltmp2444-Lfunc_begin0 - .quad Lset14904 -.set Lset14905, Ltmp2446-Lfunc_begin0 - .quad Lset14905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14906, Ltmp2499-Lfunc_begin0 - .quad Lset14906 -.set Lset14907, Ltmp2501-Lfunc_begin0 - .quad Lset14907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14908, Ltmp2554-Lfunc_begin0 - .quad Lset14908 -.set Lset14909, Ltmp2556-Lfunc_begin0 - .quad Lset14909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14910, Ltmp2609-Lfunc_begin0 - .quad Lset14910 -.set Lset14911, Ltmp2611-Lfunc_begin0 - .quad Lset14911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14912, Ltmp2673-Lfunc_begin0 - .quad Lset14912 -.set Lset14913, Ltmp2675-Lfunc_begin0 - .quad Lset14913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14914, Ltmp2738-Lfunc_begin0 - .quad Lset14914 -.set Lset14915, Ltmp2740-Lfunc_begin0 - .quad Lset14915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14916, Ltmp2811-Lfunc_begin0 - .quad Lset14916 -.set Lset14917, Ltmp2813-Lfunc_begin0 - .quad Lset14917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14918, Ltmp2871-Lfunc_begin0 - .quad Lset14918 -.set Lset14919, Ltmp2873-Lfunc_begin0 - .quad Lset14919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14920, Ltmp2922-Lfunc_begin0 - .quad Lset14920 -.set Lset14921, Ltmp2924-Lfunc_begin0 - .quad Lset14921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14922, Ltmp2957-Lfunc_begin0 - .quad Lset14922 -.set Lset14923, Ltmp2958-Lfunc_begin0 - .quad Lset14923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14924, Ltmp2997-Lfunc_begin0 - .quad Lset14924 -.set Lset14925, Ltmp2999-Lfunc_begin0 - .quad Lset14925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14926, Ltmp3024-Lfunc_begin0 - .quad Lset14926 -.set Lset14927, Ltmp3025-Lfunc_begin0 - .quad Lset14927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14928, Ltmp3047-Lfunc_begin0 - .quad Lset14928 -.set Lset14929, Ltmp3048-Lfunc_begin0 - .quad Lset14929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14930, Ltmp3096-Lfunc_begin0 - .quad Lset14930 -.set Lset14931, Ltmp3097-Lfunc_begin0 - .quad Lset14931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14932, Ltmp3120-Lfunc_begin0 - .quad Lset14932 -.set Lset14933, Ltmp3122-Lfunc_begin0 - .quad Lset14933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14934, Ltmp3161-Lfunc_begin0 - .quad Lset14934 -.set Lset14935, Ltmp3163-Lfunc_begin0 - .quad Lset14935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14936, Ltmp3227-Lfunc_begin0 - .quad Lset14936 -.set Lset14937, Ltmp3228-Lfunc_begin0 - .quad Lset14937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14938, Ltmp3292-Lfunc_begin0 - .quad Lset14938 -.set Lset14939, Ltmp3293-Lfunc_begin0 - .quad Lset14939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14940, Ltmp3329-Lfunc_begin0 - .quad Lset14940 -.set Lset14941, Ltmp3330-Lfunc_begin0 - .quad Lset14941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14942, Ltmp3375-Lfunc_begin0 - .quad Lset14942 -.set Lset14943, Ltmp3376-Lfunc_begin0 - .quad Lset14943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14944, Ltmp3407-Lfunc_begin0 - .quad Lset14944 -.set Lset14945, Ltmp3408-Lfunc_begin0 - .quad Lset14945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14946, Ltmp3435-Lfunc_begin0 - .quad Lset14946 -.set Lset14947, Ltmp3436-Lfunc_begin0 - .quad Lset14947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14948, Ltmp3537-Lfunc_begin0 - .quad Lset14948 -.set Lset14949, Ltmp3538-Lfunc_begin0 - .quad Lset14949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14950, Ltmp3638-Lfunc_begin0 - .quad Lset14950 -.set Lset14951, Ltmp3640-Lfunc_begin0 - .quad Lset14951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14952, Ltmp3685-Lfunc_begin0 - .quad Lset14952 -.set Lset14953, Ltmp3686-Lfunc_begin0 - .quad Lset14953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14954, Ltmp3807-Lfunc_begin0 - .quad Lset14954 -.set Lset14955, Ltmp3809-Lfunc_begin0 - .quad Lset14955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14956, Ltmp3815-Lfunc_begin0 - .quad Lset14956 -.set Lset14957, Ltmp3823-Lfunc_begin0 - .quad Lset14957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14958, Ltmp3864-Lfunc_begin0 - .quad Lset14958 -.set Lset14959, Ltmp3865-Lfunc_begin0 - .quad Lset14959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14960, Ltmp3933-Lfunc_begin0 - .quad Lset14960 -.set Lset14961, Ltmp3934-Lfunc_begin0 - .quad Lset14961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14962, Ltmp3959-Lfunc_begin0 - .quad Lset14962 -.set Lset14963, Ltmp3960-Lfunc_begin0 - .quad Lset14963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14964, Ltmp3985-Lfunc_begin0 - .quad Lset14964 -.set Lset14965, Ltmp3986-Lfunc_begin0 - .quad Lset14965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14966, Ltmp4011-Lfunc_begin0 - .quad Lset14966 -.set Lset14967, Ltmp4012-Lfunc_begin0 - .quad Lset14967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14968, Ltmp4046-Lfunc_begin0 - .quad Lset14968 -.set Lset14969, Ltmp4047-Lfunc_begin0 - .quad Lset14969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14970, Ltmp4084-Lfunc_begin0 - .quad Lset14970 -.set Lset14971, Ltmp4085-Lfunc_begin0 - .quad Lset14971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14972, Ltmp4106-Lfunc_begin0 - .quad Lset14972 -.set Lset14973, Ltmp4107-Lfunc_begin0 - .quad Lset14973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14974, Ltmp4146-Lfunc_begin0 - .quad Lset14974 -.set Lset14975, Ltmp4147-Lfunc_begin0 - .quad Lset14975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14976, Ltmp4187-Lfunc_begin0 - .quad Lset14976 -.set Lset14977, Ltmp4188-Lfunc_begin0 - .quad Lset14977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14978, Ltmp4227-Lfunc_begin0 - .quad Lset14978 -.set Lset14979, Ltmp4228-Lfunc_begin0 - .quad Lset14979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14980, Ltmp4268-Lfunc_begin0 - .quad Lset14980 -.set Lset14981, Ltmp4269-Lfunc_begin0 - .quad Lset14981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14982, Ltmp4308-Lfunc_begin0 - .quad Lset14982 -.set Lset14983, Ltmp4309-Lfunc_begin0 - .quad Lset14983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14984, Ltmp4349-Lfunc_begin0 - .quad Lset14984 -.set Lset14985, Ltmp4350-Lfunc_begin0 - .quad Lset14985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14986, Ltmp4380-Lfunc_begin0 - .quad Lset14986 -.set Lset14987, Ltmp4381-Lfunc_begin0 - .quad Lset14987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14988, Ltmp4412-Lfunc_begin0 - .quad Lset14988 -.set Lset14989, Ltmp4414-Lfunc_begin0 - .quad Lset14989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14990, Ltmp4454-Lfunc_begin0 - .quad Lset14990 -.set Lset14991, Ltmp4455-Lfunc_begin0 - .quad Lset14991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14992, Ltmp4495-Lfunc_begin0 - .quad Lset14992 -.set Lset14993, Ltmp4496-Lfunc_begin0 - .quad Lset14993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14994, Ltmp4579-Lfunc_begin0 - .quad Lset14994 -.set Lset14995, Ltmp4581-Lfunc_begin0 - .quad Lset14995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14996, Ltmp4649-Lfunc_begin0 - .quad Lset14996 -.set Lset14997, Ltmp4651-Lfunc_begin0 - .quad Lset14997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset14998, Ltmp4717-Lfunc_begin0 - .quad Lset14998 -.set Lset14999, Ltmp4719-Lfunc_begin0 - .quad Lset14999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15000, Ltmp4783-Lfunc_begin0 - .quad Lset15000 -.set Lset15001, Ltmp4784-Lfunc_begin0 - .quad Lset15001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15002, Ltmp4813-Lfunc_begin0 - .quad Lset15002 -.set Lset15003, Ltmp4814-Lfunc_begin0 - .quad Lset15003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15004, Ltmp4843-Lfunc_begin0 - .quad Lset15004 -.set Lset15005, Ltmp4844-Lfunc_begin0 - .quad Lset15005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15006, Ltmp4902-Lfunc_begin0 - .quad Lset15006 -.set Lset15007, Ltmp4903-Lfunc_begin0 - .quad Lset15007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15008, Ltmp4943-Lfunc_begin0 - .quad Lset15008 -.set Lset15009, Ltmp4944-Lfunc_begin0 - .quad Lset15009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15010, Ltmp5000-Lfunc_begin0 - .quad Lset15010 -.set Lset15011, Ltmp5001-Lfunc_begin0 - .quad Lset15011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15012, Ltmp5040-Lfunc_begin0 - .quad Lset15012 -.set Lset15013, Ltmp5041-Lfunc_begin0 - .quad Lset15013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15014, Ltmp5078-Lfunc_begin0 - .quad Lset15014 -.set Lset15015, Ltmp5079-Lfunc_begin0 - .quad Lset15015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15016, Ltmp5114-Lfunc_begin0 - .quad Lset15016 -.set Lset15017, Ltmp5115-Lfunc_begin0 - .quad Lset15017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15018, Ltmp5146-Lfunc_begin0 - .quad Lset15018 -.set Lset15019, Ltmp5147-Lfunc_begin0 - .quad Lset15019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15020, Ltmp5178-Lfunc_begin0 - .quad Lset15020 -.set Lset15021, Ltmp5179-Lfunc_begin0 - .quad Lset15021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15022, Ltmp5210-Lfunc_begin0 - .quad Lset15022 -.set Lset15023, Ltmp5211-Lfunc_begin0 - .quad Lset15023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15024, Ltmp5228-Lfunc_begin0 - .quad Lset15024 -.set Lset15025, Ltmp5229-Lfunc_begin0 - .quad Lset15025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15026, Ltmp5246-Lfunc_begin0 - .quad Lset15026 -.set Lset15027, Ltmp5247-Lfunc_begin0 - .quad Lset15027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15028, Ltmp5271-Lfunc_begin0 - .quad Lset15028 -.set Lset15029, Ltmp5272-Lfunc_begin0 - .quad Lset15029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15030, Ltmp5296-Lfunc_begin0 - .quad Lset15030 -.set Lset15031, Ltmp5297-Lfunc_begin0 - .quad Lset15031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15032, Ltmp5322-Lfunc_begin0 - .quad Lset15032 -.set Lset15033, Ltmp5323-Lfunc_begin0 - .quad Lset15033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15034, Ltmp5347-Lfunc_begin0 - .quad Lset15034 -.set Lset15035, Ltmp5348-Lfunc_begin0 - .quad Lset15035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15036, Ltmp5372-Lfunc_begin0 - .quad Lset15036 -.set Lset15037, Ltmp5373-Lfunc_begin0 - .quad Lset15037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15038, Ltmp5397-Lfunc_begin0 - .quad Lset15038 -.set Lset15039, Ltmp5398-Lfunc_begin0 - .quad Lset15039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15040, Ltmp5422-Lfunc_begin0 - .quad Lset15040 -.set Lset15041, Ltmp5423-Lfunc_begin0 - .quad Lset15041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15042, Ltmp5447-Lfunc_begin0 - .quad Lset15042 -.set Lset15043, Ltmp5448-Lfunc_begin0 - .quad Lset15043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15044, Ltmp5472-Lfunc_begin0 - .quad Lset15044 -.set Lset15045, Ltmp5473-Lfunc_begin0 - .quad Lset15045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15046, Ltmp5498-Lfunc_begin0 - .quad Lset15046 -.set Lset15047, Ltmp5499-Lfunc_begin0 - .quad Lset15047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15048, Ltmp5523-Lfunc_begin0 - .quad Lset15048 -.set Lset15049, Ltmp5524-Lfunc_begin0 - .quad Lset15049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15050, Ltmp5548-Lfunc_begin0 - .quad Lset15050 -.set Lset15051, Ltmp5549-Lfunc_begin0 - .quad Lset15051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15052, Ltmp5573-Lfunc_begin0 - .quad Lset15052 -.set Lset15053, Ltmp5574-Lfunc_begin0 - .quad Lset15053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15054, Ltmp5598-Lfunc_begin0 - .quad Lset15054 -.set Lset15055, Ltmp5599-Lfunc_begin0 - .quad Lset15055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15056, Ltmp5631-Lfunc_begin0 - .quad Lset15056 -.set Lset15057, Ltmp5632-Lfunc_begin0 - .quad Lset15057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15058, Ltmp5662-Lfunc_begin0 - .quad Lset15058 -.set Lset15059, Ltmp5663-Lfunc_begin0 - .quad Lset15059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15060, Ltmp5687-Lfunc_begin0 - .quad Lset15060 -.set Lset15061, Ltmp5688-Lfunc_begin0 - .quad Lset15061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15062, Ltmp5712-Lfunc_begin0 - .quad Lset15062 -.set Lset15063, Ltmp5713-Lfunc_begin0 - .quad Lset15063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15064, Ltmp5737-Lfunc_begin0 - .quad Lset15064 -.set Lset15065, Ltmp5738-Lfunc_begin0 - .quad Lset15065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15066, Ltmp5767-Lfunc_begin0 - .quad Lset15066 -.set Lset15067, Ltmp5768-Lfunc_begin0 - .quad Lset15067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15068, Ltmp5795-Lfunc_begin0 - .quad Lset15068 -.set Lset15069, Ltmp5796-Lfunc_begin0 - .quad Lset15069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15070, Ltmp5814-Lfunc_begin0 - .quad Lset15070 -.set Lset15071, Ltmp5815-Lfunc_begin0 - .quad Lset15071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15072, Ltmp5833-Lfunc_begin0 - .quad Lset15072 -.set Lset15073, Ltmp5834-Lfunc_begin0 - .quad Lset15073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15074, Ltmp5852-Lfunc_begin0 - .quad Lset15074 -.set Lset15075, Ltmp5853-Lfunc_begin0 - .quad Lset15075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15076, Ltmp5871-Lfunc_begin0 - .quad Lset15076 -.set Lset15077, Ltmp5872-Lfunc_begin0 - .quad Lset15077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15078, Ltmp5890-Lfunc_begin0 - .quad Lset15078 -.set Lset15079, Ltmp5891-Lfunc_begin0 - .quad Lset15079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15080, Ltmp5920-Lfunc_begin0 - .quad Lset15080 -.set Lset15081, Ltmp5921-Lfunc_begin0 - .quad Lset15081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc239: -.set Lset15082, Ltmp1186-Lfunc_begin0 - .quad Lset15082 -.set Lset15083, Ltmp1187-Lfunc_begin0 - .quad Lset15083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15084, Ltmp1215-Lfunc_begin0 - .quad Lset15084 -.set Lset15085, Ltmp1216-Lfunc_begin0 - .quad Lset15085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15086, Ltmp1237-Lfunc_begin0 - .quad Lset15086 -.set Lset15087, Ltmp1238-Lfunc_begin0 - .quad Lset15087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15088, Ltmp1260-Lfunc_begin0 - .quad Lset15088 -.set Lset15089, Ltmp1261-Lfunc_begin0 - .quad Lset15089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15090, Ltmp1281-Lfunc_begin0 - .quad Lset15090 -.set Lset15091, Ltmp1282-Lfunc_begin0 - .quad Lset15091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15092, Ltmp1314-Lfunc_begin0 - .quad Lset15092 -.set Lset15093, Ltmp1315-Lfunc_begin0 - .quad Lset15093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15094, Ltmp1338-Lfunc_begin0 - .quad Lset15094 -.set Lset15095, Ltmp1339-Lfunc_begin0 - .quad Lset15095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15096, Ltmp1368-Lfunc_begin0 - .quad Lset15096 -.set Lset15097, Ltmp1369-Lfunc_begin0 - .quad Lset15097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15098, Ltmp1462-Lfunc_begin0 - .quad Lset15098 -.set Lset15099, Ltmp1464-Lfunc_begin0 - .quad Lset15099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15100, Ltmp1557-Lfunc_begin0 - .quad Lset15100 -.set Lset15101, Ltmp1559-Lfunc_begin0 - .quad Lset15101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15102, Ltmp1713-Lfunc_begin0 - .quad Lset15102 -.set Lset15103, Ltmp1715-Lfunc_begin0 - .quad Lset15103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15104, Ltmp1864-Lfunc_begin0 - .quad Lset15104 -.set Lset15105, Ltmp1866-Lfunc_begin0 - .quad Lset15105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15106, Ltmp2004-Lfunc_begin0 - .quad Lset15106 -.set Lset15107, Ltmp2006-Lfunc_begin0 - .quad Lset15107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15108, Ltmp2074-Lfunc_begin0 - .quad Lset15108 -.set Lset15109, Ltmp2076-Lfunc_begin0 - .quad Lset15109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15110, Ltmp2120-Lfunc_begin0 - .quad Lset15110 -.set Lset15111, Ltmp2121-Lfunc_begin0 - .quad Lset15111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15112, Ltmp2193-Lfunc_begin0 - .quad Lset15112 -.set Lset15113, Ltmp2195-Lfunc_begin0 - .quad Lset15113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15114, Ltmp2253-Lfunc_begin0 - .quad Lset15114 -.set Lset15115, Ltmp2255-Lfunc_begin0 - .quad Lset15115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15116, Ltmp2302-Lfunc_begin0 - .quad Lset15116 -.set Lset15117, Ltmp2304-Lfunc_begin0 - .quad Lset15117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15118, Ltmp2351-Lfunc_begin0 - .quad Lset15118 -.set Lset15119, Ltmp2353-Lfunc_begin0 - .quad Lset15119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15120, Ltmp2400-Lfunc_begin0 - .quad Lset15120 -.set Lset15121, Ltmp2402-Lfunc_begin0 - .quad Lset15121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15122, Ltmp2444-Lfunc_begin0 - .quad Lset15122 -.set Lset15123, Ltmp2446-Lfunc_begin0 - .quad Lset15123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15124, Ltmp2499-Lfunc_begin0 - .quad Lset15124 -.set Lset15125, Ltmp2501-Lfunc_begin0 - .quad Lset15125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15126, Ltmp2554-Lfunc_begin0 - .quad Lset15126 -.set Lset15127, Ltmp2556-Lfunc_begin0 - .quad Lset15127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15128, Ltmp2609-Lfunc_begin0 - .quad Lset15128 -.set Lset15129, Ltmp2611-Lfunc_begin0 - .quad Lset15129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15130, Ltmp2673-Lfunc_begin0 - .quad Lset15130 -.set Lset15131, Ltmp2675-Lfunc_begin0 - .quad Lset15131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15132, Ltmp2738-Lfunc_begin0 - .quad Lset15132 -.set Lset15133, Ltmp2740-Lfunc_begin0 - .quad Lset15133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15134, Ltmp2811-Lfunc_begin0 - .quad Lset15134 -.set Lset15135, Ltmp2813-Lfunc_begin0 - .quad Lset15135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15136, Ltmp2871-Lfunc_begin0 - .quad Lset15136 -.set Lset15137, Ltmp2873-Lfunc_begin0 - .quad Lset15137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15138, Ltmp2922-Lfunc_begin0 - .quad Lset15138 -.set Lset15139, Ltmp2924-Lfunc_begin0 - .quad Lset15139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15140, Ltmp2957-Lfunc_begin0 - .quad Lset15140 -.set Lset15141, Ltmp2958-Lfunc_begin0 - .quad Lset15141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15142, Ltmp2997-Lfunc_begin0 - .quad Lset15142 -.set Lset15143, Ltmp2999-Lfunc_begin0 - .quad Lset15143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15144, Ltmp3024-Lfunc_begin0 - .quad Lset15144 -.set Lset15145, Ltmp3025-Lfunc_begin0 - .quad Lset15145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15146, Ltmp3047-Lfunc_begin0 - .quad Lset15146 -.set Lset15147, Ltmp3048-Lfunc_begin0 - .quad Lset15147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15148, Ltmp3096-Lfunc_begin0 - .quad Lset15148 -.set Lset15149, Ltmp3097-Lfunc_begin0 - .quad Lset15149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15150, Ltmp3120-Lfunc_begin0 - .quad Lset15150 -.set Lset15151, Ltmp3122-Lfunc_begin0 - .quad Lset15151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15152, Ltmp3161-Lfunc_begin0 - .quad Lset15152 -.set Lset15153, Ltmp3163-Lfunc_begin0 - .quad Lset15153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15154, Ltmp3227-Lfunc_begin0 - .quad Lset15154 -.set Lset15155, Ltmp3228-Lfunc_begin0 - .quad Lset15155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15156, Ltmp3292-Lfunc_begin0 - .quad Lset15156 -.set Lset15157, Ltmp3293-Lfunc_begin0 - .quad Lset15157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15158, Ltmp3329-Lfunc_begin0 - .quad Lset15158 -.set Lset15159, Ltmp3330-Lfunc_begin0 - .quad Lset15159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15160, Ltmp3375-Lfunc_begin0 - .quad Lset15160 -.set Lset15161, Ltmp3376-Lfunc_begin0 - .quad Lset15161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15162, Ltmp3407-Lfunc_begin0 - .quad Lset15162 -.set Lset15163, Ltmp3408-Lfunc_begin0 - .quad Lset15163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15164, Ltmp3435-Lfunc_begin0 - .quad Lset15164 -.set Lset15165, Ltmp3436-Lfunc_begin0 - .quad Lset15165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15166, Ltmp3537-Lfunc_begin0 - .quad Lset15166 -.set Lset15167, Ltmp3538-Lfunc_begin0 - .quad Lset15167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15168, Ltmp3638-Lfunc_begin0 - .quad Lset15168 -.set Lset15169, Ltmp3640-Lfunc_begin0 - .quad Lset15169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15170, Ltmp3685-Lfunc_begin0 - .quad Lset15170 -.set Lset15171, Ltmp3686-Lfunc_begin0 - .quad Lset15171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15172, Ltmp3807-Lfunc_begin0 - .quad Lset15172 -.set Lset15173, Ltmp3809-Lfunc_begin0 - .quad Lset15173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15174, Ltmp3864-Lfunc_begin0 - .quad Lset15174 -.set Lset15175, Ltmp3865-Lfunc_begin0 - .quad Lset15175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15176, Ltmp3933-Lfunc_begin0 - .quad Lset15176 -.set Lset15177, Ltmp3934-Lfunc_begin0 - .quad Lset15177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15178, Ltmp3959-Lfunc_begin0 - .quad Lset15178 -.set Lset15179, Ltmp3960-Lfunc_begin0 - .quad Lset15179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15180, Ltmp3985-Lfunc_begin0 - .quad Lset15180 -.set Lset15181, Ltmp3986-Lfunc_begin0 - .quad Lset15181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15182, Ltmp4011-Lfunc_begin0 - .quad Lset15182 -.set Lset15183, Ltmp4012-Lfunc_begin0 - .quad Lset15183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15184, Ltmp4046-Lfunc_begin0 - .quad Lset15184 -.set Lset15185, Ltmp4047-Lfunc_begin0 - .quad Lset15185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15186, Ltmp4084-Lfunc_begin0 - .quad Lset15186 -.set Lset15187, Ltmp4085-Lfunc_begin0 - .quad Lset15187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15188, Ltmp4106-Lfunc_begin0 - .quad Lset15188 -.set Lset15189, Ltmp4107-Lfunc_begin0 - .quad Lset15189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15190, Ltmp4146-Lfunc_begin0 - .quad Lset15190 -.set Lset15191, Ltmp4147-Lfunc_begin0 - .quad Lset15191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15192, Ltmp4187-Lfunc_begin0 - .quad Lset15192 -.set Lset15193, Ltmp4188-Lfunc_begin0 - .quad Lset15193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15194, Ltmp4227-Lfunc_begin0 - .quad Lset15194 -.set Lset15195, Ltmp4228-Lfunc_begin0 - .quad Lset15195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15196, Ltmp4268-Lfunc_begin0 - .quad Lset15196 -.set Lset15197, Ltmp4269-Lfunc_begin0 - .quad Lset15197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15198, Ltmp4308-Lfunc_begin0 - .quad Lset15198 -.set Lset15199, Ltmp4309-Lfunc_begin0 - .quad Lset15199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15200, Ltmp4349-Lfunc_begin0 - .quad Lset15200 -.set Lset15201, Ltmp4350-Lfunc_begin0 - .quad Lset15201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15202, Ltmp4380-Lfunc_begin0 - .quad Lset15202 -.set Lset15203, Ltmp4381-Lfunc_begin0 - .quad Lset15203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15204, Ltmp4412-Lfunc_begin0 - .quad Lset15204 -.set Lset15205, Ltmp4414-Lfunc_begin0 - .quad Lset15205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15206, Ltmp4454-Lfunc_begin0 - .quad Lset15206 -.set Lset15207, Ltmp4455-Lfunc_begin0 - .quad Lset15207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15208, Ltmp4495-Lfunc_begin0 - .quad Lset15208 -.set Lset15209, Ltmp4496-Lfunc_begin0 - .quad Lset15209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15210, Ltmp4579-Lfunc_begin0 - .quad Lset15210 -.set Lset15211, Ltmp4581-Lfunc_begin0 - .quad Lset15211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15212, Ltmp4649-Lfunc_begin0 - .quad Lset15212 -.set Lset15213, Ltmp4651-Lfunc_begin0 - .quad Lset15213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15214, Ltmp4717-Lfunc_begin0 - .quad Lset15214 -.set Lset15215, Ltmp4719-Lfunc_begin0 - .quad Lset15215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15216, Ltmp4783-Lfunc_begin0 - .quad Lset15216 -.set Lset15217, Ltmp4784-Lfunc_begin0 - .quad Lset15217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15218, Ltmp4813-Lfunc_begin0 - .quad Lset15218 -.set Lset15219, Ltmp4814-Lfunc_begin0 - .quad Lset15219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15220, Ltmp4843-Lfunc_begin0 - .quad Lset15220 -.set Lset15221, Ltmp4844-Lfunc_begin0 - .quad Lset15221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15222, Ltmp4902-Lfunc_begin0 - .quad Lset15222 -.set Lset15223, Ltmp4903-Lfunc_begin0 - .quad Lset15223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15224, Ltmp4943-Lfunc_begin0 - .quad Lset15224 -.set Lset15225, Ltmp4944-Lfunc_begin0 - .quad Lset15225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15226, Ltmp5000-Lfunc_begin0 - .quad Lset15226 -.set Lset15227, Ltmp5001-Lfunc_begin0 - .quad Lset15227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15228, Ltmp5040-Lfunc_begin0 - .quad Lset15228 -.set Lset15229, Ltmp5041-Lfunc_begin0 - .quad Lset15229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15230, Ltmp5078-Lfunc_begin0 - .quad Lset15230 -.set Lset15231, Ltmp5079-Lfunc_begin0 - .quad Lset15231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15232, Ltmp5114-Lfunc_begin0 - .quad Lset15232 -.set Lset15233, Ltmp5115-Lfunc_begin0 - .quad Lset15233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15234, Ltmp5146-Lfunc_begin0 - .quad Lset15234 -.set Lset15235, Ltmp5147-Lfunc_begin0 - .quad Lset15235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15236, Ltmp5178-Lfunc_begin0 - .quad Lset15236 -.set Lset15237, Ltmp5179-Lfunc_begin0 - .quad Lset15237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15238, Ltmp5210-Lfunc_begin0 - .quad Lset15238 -.set Lset15239, Ltmp5211-Lfunc_begin0 - .quad Lset15239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15240, Ltmp5228-Lfunc_begin0 - .quad Lset15240 -.set Lset15241, Ltmp5229-Lfunc_begin0 - .quad Lset15241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15242, Ltmp5246-Lfunc_begin0 - .quad Lset15242 -.set Lset15243, Ltmp5247-Lfunc_begin0 - .quad Lset15243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15244, Ltmp5271-Lfunc_begin0 - .quad Lset15244 -.set Lset15245, Ltmp5272-Lfunc_begin0 - .quad Lset15245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15246, Ltmp5296-Lfunc_begin0 - .quad Lset15246 -.set Lset15247, Ltmp5297-Lfunc_begin0 - .quad Lset15247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15248, Ltmp5322-Lfunc_begin0 - .quad Lset15248 -.set Lset15249, Ltmp5323-Lfunc_begin0 - .quad Lset15249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15250, Ltmp5347-Lfunc_begin0 - .quad Lset15250 -.set Lset15251, Ltmp5348-Lfunc_begin0 - .quad Lset15251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15252, Ltmp5372-Lfunc_begin0 - .quad Lset15252 -.set Lset15253, Ltmp5373-Lfunc_begin0 - .quad Lset15253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15254, Ltmp5397-Lfunc_begin0 - .quad Lset15254 -.set Lset15255, Ltmp5398-Lfunc_begin0 - .quad Lset15255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15256, Ltmp5422-Lfunc_begin0 - .quad Lset15256 -.set Lset15257, Ltmp5423-Lfunc_begin0 - .quad Lset15257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15258, Ltmp5447-Lfunc_begin0 - .quad Lset15258 -.set Lset15259, Ltmp5448-Lfunc_begin0 - .quad Lset15259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15260, Ltmp5472-Lfunc_begin0 - .quad Lset15260 -.set Lset15261, Ltmp5473-Lfunc_begin0 - .quad Lset15261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15262, Ltmp5498-Lfunc_begin0 - .quad Lset15262 -.set Lset15263, Ltmp5499-Lfunc_begin0 - .quad Lset15263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15264, Ltmp5523-Lfunc_begin0 - .quad Lset15264 -.set Lset15265, Ltmp5524-Lfunc_begin0 - .quad Lset15265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15266, Ltmp5548-Lfunc_begin0 - .quad Lset15266 -.set Lset15267, Ltmp5549-Lfunc_begin0 - .quad Lset15267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15268, Ltmp5573-Lfunc_begin0 - .quad Lset15268 -.set Lset15269, Ltmp5574-Lfunc_begin0 - .quad Lset15269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15270, Ltmp5598-Lfunc_begin0 - .quad Lset15270 -.set Lset15271, Ltmp5599-Lfunc_begin0 - .quad Lset15271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15272, Ltmp5631-Lfunc_begin0 - .quad Lset15272 -.set Lset15273, Ltmp5632-Lfunc_begin0 - .quad Lset15273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15274, Ltmp5662-Lfunc_begin0 - .quad Lset15274 -.set Lset15275, Ltmp5663-Lfunc_begin0 - .quad Lset15275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15276, Ltmp5687-Lfunc_begin0 - .quad Lset15276 -.set Lset15277, Ltmp5688-Lfunc_begin0 - .quad Lset15277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15278, Ltmp5712-Lfunc_begin0 - .quad Lset15278 -.set Lset15279, Ltmp5713-Lfunc_begin0 - .quad Lset15279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15280, Ltmp5737-Lfunc_begin0 - .quad Lset15280 -.set Lset15281, Ltmp5738-Lfunc_begin0 - .quad Lset15281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15282, Ltmp5767-Lfunc_begin0 - .quad Lset15282 -.set Lset15283, Ltmp5768-Lfunc_begin0 - .quad Lset15283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15284, Ltmp5795-Lfunc_begin0 - .quad Lset15284 -.set Lset15285, Ltmp5796-Lfunc_begin0 - .quad Lset15285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15286, Ltmp5814-Lfunc_begin0 - .quad Lset15286 -.set Lset15287, Ltmp5815-Lfunc_begin0 - .quad Lset15287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15288, Ltmp5833-Lfunc_begin0 - .quad Lset15288 -.set Lset15289, Ltmp5834-Lfunc_begin0 - .quad Lset15289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15290, Ltmp5852-Lfunc_begin0 - .quad Lset15290 -.set Lset15291, Ltmp5853-Lfunc_begin0 - .quad Lset15291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15292, Ltmp5871-Lfunc_begin0 - .quad Lset15292 -.set Lset15293, Ltmp5872-Lfunc_begin0 - .quad Lset15293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15294, Ltmp5890-Lfunc_begin0 - .quad Lset15294 -.set Lset15295, Ltmp5891-Lfunc_begin0 - .quad Lset15295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15296, Ltmp5920-Lfunc_begin0 - .quad Lset15296 -.set Lset15297, Ltmp5921-Lfunc_begin0 - .quad Lset15297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc240: -.set Lset15298, Ltmp1186-Lfunc_begin0 - .quad Lset15298 -.set Lset15299, Ltmp1187-Lfunc_begin0 - .quad Lset15299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15300, Ltmp1215-Lfunc_begin0 - .quad Lset15300 -.set Lset15301, Ltmp1216-Lfunc_begin0 - .quad Lset15301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15302, Ltmp1237-Lfunc_begin0 - .quad Lset15302 -.set Lset15303, Ltmp1238-Lfunc_begin0 - .quad Lset15303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15304, Ltmp1260-Lfunc_begin0 - .quad Lset15304 -.set Lset15305, Ltmp1261-Lfunc_begin0 - .quad Lset15305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15306, Ltmp1281-Lfunc_begin0 - .quad Lset15306 -.set Lset15307, Ltmp1282-Lfunc_begin0 - .quad Lset15307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15308, Ltmp1314-Lfunc_begin0 - .quad Lset15308 -.set Lset15309, Ltmp1315-Lfunc_begin0 - .quad Lset15309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15310, Ltmp1338-Lfunc_begin0 - .quad Lset15310 -.set Lset15311, Ltmp1339-Lfunc_begin0 - .quad Lset15311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15312, Ltmp1368-Lfunc_begin0 - .quad Lset15312 -.set Lset15313, Ltmp1369-Lfunc_begin0 - .quad Lset15313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15314, Ltmp1462-Lfunc_begin0 - .quad Lset15314 -.set Lset15315, Ltmp1464-Lfunc_begin0 - .quad Lset15315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15316, Ltmp1557-Lfunc_begin0 - .quad Lset15316 -.set Lset15317, Ltmp1559-Lfunc_begin0 - .quad Lset15317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15318, Ltmp1713-Lfunc_begin0 - .quad Lset15318 -.set Lset15319, Ltmp1715-Lfunc_begin0 - .quad Lset15319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15320, Ltmp1864-Lfunc_begin0 - .quad Lset15320 -.set Lset15321, Ltmp1866-Lfunc_begin0 - .quad Lset15321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15322, Ltmp2004-Lfunc_begin0 - .quad Lset15322 -.set Lset15323, Ltmp2006-Lfunc_begin0 - .quad Lset15323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15324, Ltmp2074-Lfunc_begin0 - .quad Lset15324 -.set Lset15325, Ltmp2076-Lfunc_begin0 - .quad Lset15325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15326, Ltmp2120-Lfunc_begin0 - .quad Lset15326 -.set Lset15327, Ltmp2121-Lfunc_begin0 - .quad Lset15327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15328, Ltmp2193-Lfunc_begin0 - .quad Lset15328 -.set Lset15329, Ltmp2195-Lfunc_begin0 - .quad Lset15329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15330, Ltmp2253-Lfunc_begin0 - .quad Lset15330 -.set Lset15331, Ltmp2255-Lfunc_begin0 - .quad Lset15331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15332, Ltmp2302-Lfunc_begin0 - .quad Lset15332 -.set Lset15333, Ltmp2304-Lfunc_begin0 - .quad Lset15333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15334, Ltmp2351-Lfunc_begin0 - .quad Lset15334 -.set Lset15335, Ltmp2353-Lfunc_begin0 - .quad Lset15335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15336, Ltmp2400-Lfunc_begin0 - .quad Lset15336 -.set Lset15337, Ltmp2402-Lfunc_begin0 - .quad Lset15337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15338, Ltmp2444-Lfunc_begin0 - .quad Lset15338 -.set Lset15339, Ltmp2446-Lfunc_begin0 - .quad Lset15339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15340, Ltmp2499-Lfunc_begin0 - .quad Lset15340 -.set Lset15341, Ltmp2501-Lfunc_begin0 - .quad Lset15341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15342, Ltmp2554-Lfunc_begin0 - .quad Lset15342 -.set Lset15343, Ltmp2556-Lfunc_begin0 - .quad Lset15343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15344, Ltmp2609-Lfunc_begin0 - .quad Lset15344 -.set Lset15345, Ltmp2611-Lfunc_begin0 - .quad Lset15345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15346, Ltmp2673-Lfunc_begin0 - .quad Lset15346 -.set Lset15347, Ltmp2675-Lfunc_begin0 - .quad Lset15347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15348, Ltmp2738-Lfunc_begin0 - .quad Lset15348 -.set Lset15349, Ltmp2740-Lfunc_begin0 - .quad Lset15349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15350, Ltmp2811-Lfunc_begin0 - .quad Lset15350 -.set Lset15351, Ltmp2813-Lfunc_begin0 - .quad Lset15351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15352, Ltmp2871-Lfunc_begin0 - .quad Lset15352 -.set Lset15353, Ltmp2873-Lfunc_begin0 - .quad Lset15353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15354, Ltmp2922-Lfunc_begin0 - .quad Lset15354 -.set Lset15355, Ltmp2924-Lfunc_begin0 - .quad Lset15355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15356, Ltmp2957-Lfunc_begin0 - .quad Lset15356 -.set Lset15357, Ltmp2958-Lfunc_begin0 - .quad Lset15357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15358, Ltmp2997-Lfunc_begin0 - .quad Lset15358 -.set Lset15359, Ltmp2999-Lfunc_begin0 - .quad Lset15359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15360, Ltmp3024-Lfunc_begin0 - .quad Lset15360 -.set Lset15361, Ltmp3025-Lfunc_begin0 - .quad Lset15361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15362, Ltmp3047-Lfunc_begin0 - .quad Lset15362 -.set Lset15363, Ltmp3048-Lfunc_begin0 - .quad Lset15363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15364, Ltmp3096-Lfunc_begin0 - .quad Lset15364 -.set Lset15365, Ltmp3097-Lfunc_begin0 - .quad Lset15365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15366, Ltmp3120-Lfunc_begin0 - .quad Lset15366 -.set Lset15367, Ltmp3122-Lfunc_begin0 - .quad Lset15367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15368, Ltmp3161-Lfunc_begin0 - .quad Lset15368 -.set Lset15369, Ltmp3163-Lfunc_begin0 - .quad Lset15369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15370, Ltmp3227-Lfunc_begin0 - .quad Lset15370 -.set Lset15371, Ltmp3228-Lfunc_begin0 - .quad Lset15371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15372, Ltmp3292-Lfunc_begin0 - .quad Lset15372 -.set Lset15373, Ltmp3293-Lfunc_begin0 - .quad Lset15373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15374, Ltmp3329-Lfunc_begin0 - .quad Lset15374 -.set Lset15375, Ltmp3330-Lfunc_begin0 - .quad Lset15375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15376, Ltmp3375-Lfunc_begin0 - .quad Lset15376 -.set Lset15377, Ltmp3376-Lfunc_begin0 - .quad Lset15377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15378, Ltmp3407-Lfunc_begin0 - .quad Lset15378 -.set Lset15379, Ltmp3408-Lfunc_begin0 - .quad Lset15379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15380, Ltmp3435-Lfunc_begin0 - .quad Lset15380 -.set Lset15381, Ltmp3436-Lfunc_begin0 - .quad Lset15381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15382, Ltmp3537-Lfunc_begin0 - .quad Lset15382 -.set Lset15383, Ltmp3538-Lfunc_begin0 - .quad Lset15383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15384, Ltmp3638-Lfunc_begin0 - .quad Lset15384 -.set Lset15385, Ltmp3640-Lfunc_begin0 - .quad Lset15385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15386, Ltmp3685-Lfunc_begin0 - .quad Lset15386 -.set Lset15387, Ltmp3686-Lfunc_begin0 - .quad Lset15387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15388, Ltmp3807-Lfunc_begin0 - .quad Lset15388 -.set Lset15389, Ltmp3809-Lfunc_begin0 - .quad Lset15389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15390, Ltmp3864-Lfunc_begin0 - .quad Lset15390 -.set Lset15391, Ltmp3865-Lfunc_begin0 - .quad Lset15391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15392, Ltmp3933-Lfunc_begin0 - .quad Lset15392 -.set Lset15393, Ltmp3934-Lfunc_begin0 - .quad Lset15393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15394, Ltmp3959-Lfunc_begin0 - .quad Lset15394 -.set Lset15395, Ltmp3960-Lfunc_begin0 - .quad Lset15395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15396, Ltmp3985-Lfunc_begin0 - .quad Lset15396 -.set Lset15397, Ltmp3986-Lfunc_begin0 - .quad Lset15397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15398, Ltmp4011-Lfunc_begin0 - .quad Lset15398 -.set Lset15399, Ltmp4012-Lfunc_begin0 - .quad Lset15399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15400, Ltmp4046-Lfunc_begin0 - .quad Lset15400 -.set Lset15401, Ltmp4047-Lfunc_begin0 - .quad Lset15401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15402, Ltmp4084-Lfunc_begin0 - .quad Lset15402 -.set Lset15403, Ltmp4085-Lfunc_begin0 - .quad Lset15403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15404, Ltmp4106-Lfunc_begin0 - .quad Lset15404 -.set Lset15405, Ltmp4107-Lfunc_begin0 - .quad Lset15405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15406, Ltmp4146-Lfunc_begin0 - .quad Lset15406 -.set Lset15407, Ltmp4147-Lfunc_begin0 - .quad Lset15407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15408, Ltmp4187-Lfunc_begin0 - .quad Lset15408 -.set Lset15409, Ltmp4188-Lfunc_begin0 - .quad Lset15409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15410, Ltmp4227-Lfunc_begin0 - .quad Lset15410 -.set Lset15411, Ltmp4228-Lfunc_begin0 - .quad Lset15411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15412, Ltmp4268-Lfunc_begin0 - .quad Lset15412 -.set Lset15413, Ltmp4269-Lfunc_begin0 - .quad Lset15413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15414, Ltmp4308-Lfunc_begin0 - .quad Lset15414 -.set Lset15415, Ltmp4309-Lfunc_begin0 - .quad Lset15415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15416, Ltmp4349-Lfunc_begin0 - .quad Lset15416 -.set Lset15417, Ltmp4350-Lfunc_begin0 - .quad Lset15417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15418, Ltmp4380-Lfunc_begin0 - .quad Lset15418 -.set Lset15419, Ltmp4381-Lfunc_begin0 - .quad Lset15419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15420, Ltmp4412-Lfunc_begin0 - .quad Lset15420 -.set Lset15421, Ltmp4414-Lfunc_begin0 - .quad Lset15421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15422, Ltmp4454-Lfunc_begin0 - .quad Lset15422 -.set Lset15423, Ltmp4455-Lfunc_begin0 - .quad Lset15423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15424, Ltmp4495-Lfunc_begin0 - .quad Lset15424 -.set Lset15425, Ltmp4496-Lfunc_begin0 - .quad Lset15425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15426, Ltmp4579-Lfunc_begin0 - .quad Lset15426 -.set Lset15427, Ltmp4581-Lfunc_begin0 - .quad Lset15427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15428, Ltmp4649-Lfunc_begin0 - .quad Lset15428 -.set Lset15429, Ltmp4651-Lfunc_begin0 - .quad Lset15429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15430, Ltmp4717-Lfunc_begin0 - .quad Lset15430 -.set Lset15431, Ltmp4719-Lfunc_begin0 - .quad Lset15431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15432, Ltmp4783-Lfunc_begin0 - .quad Lset15432 -.set Lset15433, Ltmp4784-Lfunc_begin0 - .quad Lset15433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15434, Ltmp4813-Lfunc_begin0 - .quad Lset15434 -.set Lset15435, Ltmp4814-Lfunc_begin0 - .quad Lset15435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15436, Ltmp4843-Lfunc_begin0 - .quad Lset15436 -.set Lset15437, Ltmp4844-Lfunc_begin0 - .quad Lset15437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15438, Ltmp4902-Lfunc_begin0 - .quad Lset15438 -.set Lset15439, Ltmp4903-Lfunc_begin0 - .quad Lset15439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15440, Ltmp4943-Lfunc_begin0 - .quad Lset15440 -.set Lset15441, Ltmp4944-Lfunc_begin0 - .quad Lset15441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15442, Ltmp5000-Lfunc_begin0 - .quad Lset15442 -.set Lset15443, Ltmp5001-Lfunc_begin0 - .quad Lset15443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15444, Ltmp5040-Lfunc_begin0 - .quad Lset15444 -.set Lset15445, Ltmp5041-Lfunc_begin0 - .quad Lset15445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15446, Ltmp5078-Lfunc_begin0 - .quad Lset15446 -.set Lset15447, Ltmp5079-Lfunc_begin0 - .quad Lset15447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15448, Ltmp5114-Lfunc_begin0 - .quad Lset15448 -.set Lset15449, Ltmp5115-Lfunc_begin0 - .quad Lset15449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15450, Ltmp5146-Lfunc_begin0 - .quad Lset15450 -.set Lset15451, Ltmp5147-Lfunc_begin0 - .quad Lset15451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15452, Ltmp5178-Lfunc_begin0 - .quad Lset15452 -.set Lset15453, Ltmp5179-Lfunc_begin0 - .quad Lset15453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15454, Ltmp5210-Lfunc_begin0 - .quad Lset15454 -.set Lset15455, Ltmp5211-Lfunc_begin0 - .quad Lset15455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15456, Ltmp5228-Lfunc_begin0 - .quad Lset15456 -.set Lset15457, Ltmp5229-Lfunc_begin0 - .quad Lset15457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15458, Ltmp5246-Lfunc_begin0 - .quad Lset15458 -.set Lset15459, Ltmp5247-Lfunc_begin0 - .quad Lset15459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15460, Ltmp5271-Lfunc_begin0 - .quad Lset15460 -.set Lset15461, Ltmp5272-Lfunc_begin0 - .quad Lset15461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15462, Ltmp5296-Lfunc_begin0 - .quad Lset15462 -.set Lset15463, Ltmp5297-Lfunc_begin0 - .quad Lset15463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15464, Ltmp5322-Lfunc_begin0 - .quad Lset15464 -.set Lset15465, Ltmp5323-Lfunc_begin0 - .quad Lset15465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15466, Ltmp5347-Lfunc_begin0 - .quad Lset15466 -.set Lset15467, Ltmp5348-Lfunc_begin0 - .quad Lset15467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15468, Ltmp5372-Lfunc_begin0 - .quad Lset15468 -.set Lset15469, Ltmp5373-Lfunc_begin0 - .quad Lset15469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15470, Ltmp5397-Lfunc_begin0 - .quad Lset15470 -.set Lset15471, Ltmp5398-Lfunc_begin0 - .quad Lset15471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15472, Ltmp5422-Lfunc_begin0 - .quad Lset15472 -.set Lset15473, Ltmp5423-Lfunc_begin0 - .quad Lset15473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15474, Ltmp5447-Lfunc_begin0 - .quad Lset15474 -.set Lset15475, Ltmp5448-Lfunc_begin0 - .quad Lset15475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15476, Ltmp5472-Lfunc_begin0 - .quad Lset15476 -.set Lset15477, Ltmp5473-Lfunc_begin0 - .quad Lset15477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15478, Ltmp5498-Lfunc_begin0 - .quad Lset15478 -.set Lset15479, Ltmp5499-Lfunc_begin0 - .quad Lset15479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15480, Ltmp5523-Lfunc_begin0 - .quad Lset15480 -.set Lset15481, Ltmp5524-Lfunc_begin0 - .quad Lset15481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15482, Ltmp5548-Lfunc_begin0 - .quad Lset15482 -.set Lset15483, Ltmp5549-Lfunc_begin0 - .quad Lset15483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15484, Ltmp5573-Lfunc_begin0 - .quad Lset15484 -.set Lset15485, Ltmp5574-Lfunc_begin0 - .quad Lset15485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15486, Ltmp5598-Lfunc_begin0 - .quad Lset15486 -.set Lset15487, Ltmp5599-Lfunc_begin0 - .quad Lset15487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15488, Ltmp5631-Lfunc_begin0 - .quad Lset15488 -.set Lset15489, Ltmp5632-Lfunc_begin0 - .quad Lset15489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15490, Ltmp5662-Lfunc_begin0 - .quad Lset15490 -.set Lset15491, Ltmp5663-Lfunc_begin0 - .quad Lset15491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15492, Ltmp5687-Lfunc_begin0 - .quad Lset15492 -.set Lset15493, Ltmp5688-Lfunc_begin0 - .quad Lset15493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15494, Ltmp5712-Lfunc_begin0 - .quad Lset15494 -.set Lset15495, Ltmp5713-Lfunc_begin0 - .quad Lset15495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15496, Ltmp5737-Lfunc_begin0 - .quad Lset15496 -.set Lset15497, Ltmp5738-Lfunc_begin0 - .quad Lset15497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15498, Ltmp5767-Lfunc_begin0 - .quad Lset15498 -.set Lset15499, Ltmp5768-Lfunc_begin0 - .quad Lset15499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15500, Ltmp5795-Lfunc_begin0 - .quad Lset15500 -.set Lset15501, Ltmp5796-Lfunc_begin0 - .quad Lset15501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15502, Ltmp5814-Lfunc_begin0 - .quad Lset15502 -.set Lset15503, Ltmp5815-Lfunc_begin0 - .quad Lset15503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15504, Ltmp5833-Lfunc_begin0 - .quad Lset15504 -.set Lset15505, Ltmp5834-Lfunc_begin0 - .quad Lset15505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15506, Ltmp5852-Lfunc_begin0 - .quad Lset15506 -.set Lset15507, Ltmp5853-Lfunc_begin0 - .quad Lset15507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15508, Ltmp5871-Lfunc_begin0 - .quad Lset15508 -.set Lset15509, Ltmp5872-Lfunc_begin0 - .quad Lset15509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15510, Ltmp5890-Lfunc_begin0 - .quad Lset15510 -.set Lset15511, Ltmp5891-Lfunc_begin0 - .quad Lset15511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15512, Ltmp5920-Lfunc_begin0 - .quad Lset15512 -.set Lset15513, Ltmp5921-Lfunc_begin0 - .quad Lset15513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc241: -.set Lset15514, Ltmp1186-Lfunc_begin0 - .quad Lset15514 -.set Lset15515, Ltmp1187-Lfunc_begin0 - .quad Lset15515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15516, Ltmp1215-Lfunc_begin0 - .quad Lset15516 -.set Lset15517, Ltmp1216-Lfunc_begin0 - .quad Lset15517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15518, Ltmp1237-Lfunc_begin0 - .quad Lset15518 -.set Lset15519, Ltmp1238-Lfunc_begin0 - .quad Lset15519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15520, Ltmp1260-Lfunc_begin0 - .quad Lset15520 -.set Lset15521, Ltmp1261-Lfunc_begin0 - .quad Lset15521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15522, Ltmp1281-Lfunc_begin0 - .quad Lset15522 -.set Lset15523, Ltmp1282-Lfunc_begin0 - .quad Lset15523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15524, Ltmp1314-Lfunc_begin0 - .quad Lset15524 -.set Lset15525, Ltmp1315-Lfunc_begin0 - .quad Lset15525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15526, Ltmp1338-Lfunc_begin0 - .quad Lset15526 -.set Lset15527, Ltmp1339-Lfunc_begin0 - .quad Lset15527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15528, Ltmp1368-Lfunc_begin0 - .quad Lset15528 -.set Lset15529, Ltmp1369-Lfunc_begin0 - .quad Lset15529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15530, Ltmp1462-Lfunc_begin0 - .quad Lset15530 -.set Lset15531, Ltmp1464-Lfunc_begin0 - .quad Lset15531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15532, Ltmp1557-Lfunc_begin0 - .quad Lset15532 -.set Lset15533, Ltmp1559-Lfunc_begin0 - .quad Lset15533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15534, Ltmp1713-Lfunc_begin0 - .quad Lset15534 -.set Lset15535, Ltmp1715-Lfunc_begin0 - .quad Lset15535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15536, Ltmp1864-Lfunc_begin0 - .quad Lset15536 -.set Lset15537, Ltmp1866-Lfunc_begin0 - .quad Lset15537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15538, Ltmp2004-Lfunc_begin0 - .quad Lset15538 -.set Lset15539, Ltmp2006-Lfunc_begin0 - .quad Lset15539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15540, Ltmp2074-Lfunc_begin0 - .quad Lset15540 -.set Lset15541, Ltmp2076-Lfunc_begin0 - .quad Lset15541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15542, Ltmp2120-Lfunc_begin0 - .quad Lset15542 -.set Lset15543, Ltmp2121-Lfunc_begin0 - .quad Lset15543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15544, Ltmp2193-Lfunc_begin0 - .quad Lset15544 -.set Lset15545, Ltmp2195-Lfunc_begin0 - .quad Lset15545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15546, Ltmp2253-Lfunc_begin0 - .quad Lset15546 -.set Lset15547, Ltmp2255-Lfunc_begin0 - .quad Lset15547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15548, Ltmp2302-Lfunc_begin0 - .quad Lset15548 -.set Lset15549, Ltmp2304-Lfunc_begin0 - .quad Lset15549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15550, Ltmp2351-Lfunc_begin0 - .quad Lset15550 -.set Lset15551, Ltmp2353-Lfunc_begin0 - .quad Lset15551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15552, Ltmp2400-Lfunc_begin0 - .quad Lset15552 -.set Lset15553, Ltmp2402-Lfunc_begin0 - .quad Lset15553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15554, Ltmp2444-Lfunc_begin0 - .quad Lset15554 -.set Lset15555, Ltmp2446-Lfunc_begin0 - .quad Lset15555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15556, Ltmp2499-Lfunc_begin0 - .quad Lset15556 -.set Lset15557, Ltmp2501-Lfunc_begin0 - .quad Lset15557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15558, Ltmp2554-Lfunc_begin0 - .quad Lset15558 -.set Lset15559, Ltmp2556-Lfunc_begin0 - .quad Lset15559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15560, Ltmp2609-Lfunc_begin0 - .quad Lset15560 -.set Lset15561, Ltmp2611-Lfunc_begin0 - .quad Lset15561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15562, Ltmp2673-Lfunc_begin0 - .quad Lset15562 -.set Lset15563, Ltmp2675-Lfunc_begin0 - .quad Lset15563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15564, Ltmp2738-Lfunc_begin0 - .quad Lset15564 -.set Lset15565, Ltmp2740-Lfunc_begin0 - .quad Lset15565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15566, Ltmp2811-Lfunc_begin0 - .quad Lset15566 -.set Lset15567, Ltmp2813-Lfunc_begin0 - .quad Lset15567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15568, Ltmp2871-Lfunc_begin0 - .quad Lset15568 -.set Lset15569, Ltmp2873-Lfunc_begin0 - .quad Lset15569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15570, Ltmp2922-Lfunc_begin0 - .quad Lset15570 -.set Lset15571, Ltmp2924-Lfunc_begin0 - .quad Lset15571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15572, Ltmp2957-Lfunc_begin0 - .quad Lset15572 -.set Lset15573, Ltmp2958-Lfunc_begin0 - .quad Lset15573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15574, Ltmp2997-Lfunc_begin0 - .quad Lset15574 -.set Lset15575, Ltmp2999-Lfunc_begin0 - .quad Lset15575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15576, Ltmp3024-Lfunc_begin0 - .quad Lset15576 -.set Lset15577, Ltmp3025-Lfunc_begin0 - .quad Lset15577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15578, Ltmp3047-Lfunc_begin0 - .quad Lset15578 -.set Lset15579, Ltmp3048-Lfunc_begin0 - .quad Lset15579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15580, Ltmp3096-Lfunc_begin0 - .quad Lset15580 -.set Lset15581, Ltmp3097-Lfunc_begin0 - .quad Lset15581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15582, Ltmp3120-Lfunc_begin0 - .quad Lset15582 -.set Lset15583, Ltmp3122-Lfunc_begin0 - .quad Lset15583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15584, Ltmp3161-Lfunc_begin0 - .quad Lset15584 -.set Lset15585, Ltmp3163-Lfunc_begin0 - .quad Lset15585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15586, Ltmp3227-Lfunc_begin0 - .quad Lset15586 -.set Lset15587, Ltmp3228-Lfunc_begin0 - .quad Lset15587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15588, Ltmp3292-Lfunc_begin0 - .quad Lset15588 -.set Lset15589, Ltmp3293-Lfunc_begin0 - .quad Lset15589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15590, Ltmp3329-Lfunc_begin0 - .quad Lset15590 -.set Lset15591, Ltmp3330-Lfunc_begin0 - .quad Lset15591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15592, Ltmp3375-Lfunc_begin0 - .quad Lset15592 -.set Lset15593, Ltmp3376-Lfunc_begin0 - .quad Lset15593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15594, Ltmp3407-Lfunc_begin0 - .quad Lset15594 -.set Lset15595, Ltmp3408-Lfunc_begin0 - .quad Lset15595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15596, Ltmp3435-Lfunc_begin0 - .quad Lset15596 -.set Lset15597, Ltmp3436-Lfunc_begin0 - .quad Lset15597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15598, Ltmp3537-Lfunc_begin0 - .quad Lset15598 -.set Lset15599, Ltmp3538-Lfunc_begin0 - .quad Lset15599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15600, Ltmp3638-Lfunc_begin0 - .quad Lset15600 -.set Lset15601, Ltmp3640-Lfunc_begin0 - .quad Lset15601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15602, Ltmp3685-Lfunc_begin0 - .quad Lset15602 -.set Lset15603, Ltmp3686-Lfunc_begin0 - .quad Lset15603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15604, Ltmp3807-Lfunc_begin0 - .quad Lset15604 -.set Lset15605, Ltmp3809-Lfunc_begin0 - .quad Lset15605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15606, Ltmp3864-Lfunc_begin0 - .quad Lset15606 -.set Lset15607, Ltmp3865-Lfunc_begin0 - .quad Lset15607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15608, Ltmp3933-Lfunc_begin0 - .quad Lset15608 -.set Lset15609, Ltmp3934-Lfunc_begin0 - .quad Lset15609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15610, Ltmp3959-Lfunc_begin0 - .quad Lset15610 -.set Lset15611, Ltmp3960-Lfunc_begin0 - .quad Lset15611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15612, Ltmp3985-Lfunc_begin0 - .quad Lset15612 -.set Lset15613, Ltmp3986-Lfunc_begin0 - .quad Lset15613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15614, Ltmp4011-Lfunc_begin0 - .quad Lset15614 -.set Lset15615, Ltmp4012-Lfunc_begin0 - .quad Lset15615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15616, Ltmp4046-Lfunc_begin0 - .quad Lset15616 -.set Lset15617, Ltmp4047-Lfunc_begin0 - .quad Lset15617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15618, Ltmp4084-Lfunc_begin0 - .quad Lset15618 -.set Lset15619, Ltmp4085-Lfunc_begin0 - .quad Lset15619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15620, Ltmp4106-Lfunc_begin0 - .quad Lset15620 -.set Lset15621, Ltmp4107-Lfunc_begin0 - .quad Lset15621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15622, Ltmp4146-Lfunc_begin0 - .quad Lset15622 -.set Lset15623, Ltmp4147-Lfunc_begin0 - .quad Lset15623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15624, Ltmp4187-Lfunc_begin0 - .quad Lset15624 -.set Lset15625, Ltmp4188-Lfunc_begin0 - .quad Lset15625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15626, Ltmp4227-Lfunc_begin0 - .quad Lset15626 -.set Lset15627, Ltmp4228-Lfunc_begin0 - .quad Lset15627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15628, Ltmp4268-Lfunc_begin0 - .quad Lset15628 -.set Lset15629, Ltmp4269-Lfunc_begin0 - .quad Lset15629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15630, Ltmp4308-Lfunc_begin0 - .quad Lset15630 -.set Lset15631, Ltmp4309-Lfunc_begin0 - .quad Lset15631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15632, Ltmp4349-Lfunc_begin0 - .quad Lset15632 -.set Lset15633, Ltmp4350-Lfunc_begin0 - .quad Lset15633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15634, Ltmp4380-Lfunc_begin0 - .quad Lset15634 -.set Lset15635, Ltmp4381-Lfunc_begin0 - .quad Lset15635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15636, Ltmp4412-Lfunc_begin0 - .quad Lset15636 -.set Lset15637, Ltmp4414-Lfunc_begin0 - .quad Lset15637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15638, Ltmp4454-Lfunc_begin0 - .quad Lset15638 -.set Lset15639, Ltmp4455-Lfunc_begin0 - .quad Lset15639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15640, Ltmp4495-Lfunc_begin0 - .quad Lset15640 -.set Lset15641, Ltmp4496-Lfunc_begin0 - .quad Lset15641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15642, Ltmp4579-Lfunc_begin0 - .quad Lset15642 -.set Lset15643, Ltmp4581-Lfunc_begin0 - .quad Lset15643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15644, Ltmp4649-Lfunc_begin0 - .quad Lset15644 -.set Lset15645, Ltmp4651-Lfunc_begin0 - .quad Lset15645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15646, Ltmp4717-Lfunc_begin0 - .quad Lset15646 -.set Lset15647, Ltmp4719-Lfunc_begin0 - .quad Lset15647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15648, Ltmp4783-Lfunc_begin0 - .quad Lset15648 -.set Lset15649, Ltmp4784-Lfunc_begin0 - .quad Lset15649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15650, Ltmp4813-Lfunc_begin0 - .quad Lset15650 -.set Lset15651, Ltmp4814-Lfunc_begin0 - .quad Lset15651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15652, Ltmp4843-Lfunc_begin0 - .quad Lset15652 -.set Lset15653, Ltmp4844-Lfunc_begin0 - .quad Lset15653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15654, Ltmp4902-Lfunc_begin0 - .quad Lset15654 -.set Lset15655, Ltmp4903-Lfunc_begin0 - .quad Lset15655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15656, Ltmp4943-Lfunc_begin0 - .quad Lset15656 -.set Lset15657, Ltmp4944-Lfunc_begin0 - .quad Lset15657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15658, Ltmp5000-Lfunc_begin0 - .quad Lset15658 -.set Lset15659, Ltmp5001-Lfunc_begin0 - .quad Lset15659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15660, Ltmp5040-Lfunc_begin0 - .quad Lset15660 -.set Lset15661, Ltmp5041-Lfunc_begin0 - .quad Lset15661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15662, Ltmp5078-Lfunc_begin0 - .quad Lset15662 -.set Lset15663, Ltmp5079-Lfunc_begin0 - .quad Lset15663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15664, Ltmp5114-Lfunc_begin0 - .quad Lset15664 -.set Lset15665, Ltmp5115-Lfunc_begin0 - .quad Lset15665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15666, Ltmp5146-Lfunc_begin0 - .quad Lset15666 -.set Lset15667, Ltmp5147-Lfunc_begin0 - .quad Lset15667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15668, Ltmp5178-Lfunc_begin0 - .quad Lset15668 -.set Lset15669, Ltmp5179-Lfunc_begin0 - .quad Lset15669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15670, Ltmp5210-Lfunc_begin0 - .quad Lset15670 -.set Lset15671, Ltmp5211-Lfunc_begin0 - .quad Lset15671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15672, Ltmp5228-Lfunc_begin0 - .quad Lset15672 -.set Lset15673, Ltmp5229-Lfunc_begin0 - .quad Lset15673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15674, Ltmp5246-Lfunc_begin0 - .quad Lset15674 -.set Lset15675, Ltmp5247-Lfunc_begin0 - .quad Lset15675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15676, Ltmp5271-Lfunc_begin0 - .quad Lset15676 -.set Lset15677, Ltmp5272-Lfunc_begin0 - .quad Lset15677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15678, Ltmp5296-Lfunc_begin0 - .quad Lset15678 -.set Lset15679, Ltmp5297-Lfunc_begin0 - .quad Lset15679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15680, Ltmp5322-Lfunc_begin0 - .quad Lset15680 -.set Lset15681, Ltmp5323-Lfunc_begin0 - .quad Lset15681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15682, Ltmp5347-Lfunc_begin0 - .quad Lset15682 -.set Lset15683, Ltmp5348-Lfunc_begin0 - .quad Lset15683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15684, Ltmp5372-Lfunc_begin0 - .quad Lset15684 -.set Lset15685, Ltmp5373-Lfunc_begin0 - .quad Lset15685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15686, Ltmp5397-Lfunc_begin0 - .quad Lset15686 -.set Lset15687, Ltmp5398-Lfunc_begin0 - .quad Lset15687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15688, Ltmp5422-Lfunc_begin0 - .quad Lset15688 -.set Lset15689, Ltmp5423-Lfunc_begin0 - .quad Lset15689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15690, Ltmp5447-Lfunc_begin0 - .quad Lset15690 -.set Lset15691, Ltmp5448-Lfunc_begin0 - .quad Lset15691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15692, Ltmp5472-Lfunc_begin0 - .quad Lset15692 -.set Lset15693, Ltmp5473-Lfunc_begin0 - .quad Lset15693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15694, Ltmp5498-Lfunc_begin0 - .quad Lset15694 -.set Lset15695, Ltmp5499-Lfunc_begin0 - .quad Lset15695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15696, Ltmp5523-Lfunc_begin0 - .quad Lset15696 -.set Lset15697, Ltmp5524-Lfunc_begin0 - .quad Lset15697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15698, Ltmp5548-Lfunc_begin0 - .quad Lset15698 -.set Lset15699, Ltmp5549-Lfunc_begin0 - .quad Lset15699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15700, Ltmp5573-Lfunc_begin0 - .quad Lset15700 -.set Lset15701, Ltmp5574-Lfunc_begin0 - .quad Lset15701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15702, Ltmp5598-Lfunc_begin0 - .quad Lset15702 -.set Lset15703, Ltmp5599-Lfunc_begin0 - .quad Lset15703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15704, Ltmp5631-Lfunc_begin0 - .quad Lset15704 -.set Lset15705, Ltmp5632-Lfunc_begin0 - .quad Lset15705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15706, Ltmp5662-Lfunc_begin0 - .quad Lset15706 -.set Lset15707, Ltmp5663-Lfunc_begin0 - .quad Lset15707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15708, Ltmp5687-Lfunc_begin0 - .quad Lset15708 -.set Lset15709, Ltmp5688-Lfunc_begin0 - .quad Lset15709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15710, Ltmp5712-Lfunc_begin0 - .quad Lset15710 -.set Lset15711, Ltmp5713-Lfunc_begin0 - .quad Lset15711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15712, Ltmp5737-Lfunc_begin0 - .quad Lset15712 -.set Lset15713, Ltmp5738-Lfunc_begin0 - .quad Lset15713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15714, Ltmp5767-Lfunc_begin0 - .quad Lset15714 -.set Lset15715, Ltmp5768-Lfunc_begin0 - .quad Lset15715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15716, Ltmp5795-Lfunc_begin0 - .quad Lset15716 -.set Lset15717, Ltmp5796-Lfunc_begin0 - .quad Lset15717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15718, Ltmp5814-Lfunc_begin0 - .quad Lset15718 -.set Lset15719, Ltmp5815-Lfunc_begin0 - .quad Lset15719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15720, Ltmp5833-Lfunc_begin0 - .quad Lset15720 -.set Lset15721, Ltmp5834-Lfunc_begin0 - .quad Lset15721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15722, Ltmp5852-Lfunc_begin0 - .quad Lset15722 -.set Lset15723, Ltmp5853-Lfunc_begin0 - .quad Lset15723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15724, Ltmp5871-Lfunc_begin0 - .quad Lset15724 -.set Lset15725, Ltmp5872-Lfunc_begin0 - .quad Lset15725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15726, Ltmp5890-Lfunc_begin0 - .quad Lset15726 -.set Lset15727, Ltmp5891-Lfunc_begin0 - .quad Lset15727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15728, Ltmp5920-Lfunc_begin0 - .quad Lset15728 -.set Lset15729, Ltmp5921-Lfunc_begin0 - .quad Lset15729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc242: -.set Lset15730, Ltmp1186-Lfunc_begin0 - .quad Lset15730 -.set Lset15731, Ltmp1187-Lfunc_begin0 - .quad Lset15731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15732, Ltmp1215-Lfunc_begin0 - .quad Lset15732 -.set Lset15733, Ltmp1216-Lfunc_begin0 - .quad Lset15733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15734, Ltmp1237-Lfunc_begin0 - .quad Lset15734 -.set Lset15735, Ltmp1238-Lfunc_begin0 - .quad Lset15735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15736, Ltmp1260-Lfunc_begin0 - .quad Lset15736 -.set Lset15737, Ltmp1261-Lfunc_begin0 - .quad Lset15737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15738, Ltmp1281-Lfunc_begin0 - .quad Lset15738 -.set Lset15739, Ltmp1282-Lfunc_begin0 - .quad Lset15739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15740, Ltmp1314-Lfunc_begin0 - .quad Lset15740 -.set Lset15741, Ltmp1315-Lfunc_begin0 - .quad Lset15741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15742, Ltmp1338-Lfunc_begin0 - .quad Lset15742 -.set Lset15743, Ltmp1339-Lfunc_begin0 - .quad Lset15743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15744, Ltmp1368-Lfunc_begin0 - .quad Lset15744 -.set Lset15745, Ltmp1369-Lfunc_begin0 - .quad Lset15745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15746, Ltmp1462-Lfunc_begin0 - .quad Lset15746 -.set Lset15747, Ltmp1464-Lfunc_begin0 - .quad Lset15747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15748, Ltmp1557-Lfunc_begin0 - .quad Lset15748 -.set Lset15749, Ltmp1559-Lfunc_begin0 - .quad Lset15749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15750, Ltmp1713-Lfunc_begin0 - .quad Lset15750 -.set Lset15751, Ltmp1715-Lfunc_begin0 - .quad Lset15751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15752, Ltmp1864-Lfunc_begin0 - .quad Lset15752 -.set Lset15753, Ltmp1866-Lfunc_begin0 - .quad Lset15753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15754, Ltmp2004-Lfunc_begin0 - .quad Lset15754 -.set Lset15755, Ltmp2006-Lfunc_begin0 - .quad Lset15755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15756, Ltmp2074-Lfunc_begin0 - .quad Lset15756 -.set Lset15757, Ltmp2076-Lfunc_begin0 - .quad Lset15757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15758, Ltmp2120-Lfunc_begin0 - .quad Lset15758 -.set Lset15759, Ltmp2121-Lfunc_begin0 - .quad Lset15759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15760, Ltmp2193-Lfunc_begin0 - .quad Lset15760 -.set Lset15761, Ltmp2195-Lfunc_begin0 - .quad Lset15761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15762, Ltmp2253-Lfunc_begin0 - .quad Lset15762 -.set Lset15763, Ltmp2255-Lfunc_begin0 - .quad Lset15763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15764, Ltmp2302-Lfunc_begin0 - .quad Lset15764 -.set Lset15765, Ltmp2304-Lfunc_begin0 - .quad Lset15765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15766, Ltmp2351-Lfunc_begin0 - .quad Lset15766 -.set Lset15767, Ltmp2353-Lfunc_begin0 - .quad Lset15767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15768, Ltmp2400-Lfunc_begin0 - .quad Lset15768 -.set Lset15769, Ltmp2402-Lfunc_begin0 - .quad Lset15769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15770, Ltmp2444-Lfunc_begin0 - .quad Lset15770 -.set Lset15771, Ltmp2446-Lfunc_begin0 - .quad Lset15771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15772, Ltmp2499-Lfunc_begin0 - .quad Lset15772 -.set Lset15773, Ltmp2501-Lfunc_begin0 - .quad Lset15773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15774, Ltmp2554-Lfunc_begin0 - .quad Lset15774 -.set Lset15775, Ltmp2556-Lfunc_begin0 - .quad Lset15775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15776, Ltmp2609-Lfunc_begin0 - .quad Lset15776 -.set Lset15777, Ltmp2611-Lfunc_begin0 - .quad Lset15777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15778, Ltmp2673-Lfunc_begin0 - .quad Lset15778 -.set Lset15779, Ltmp2675-Lfunc_begin0 - .quad Lset15779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15780, Ltmp2738-Lfunc_begin0 - .quad Lset15780 -.set Lset15781, Ltmp2740-Lfunc_begin0 - .quad Lset15781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15782, Ltmp2811-Lfunc_begin0 - .quad Lset15782 -.set Lset15783, Ltmp2813-Lfunc_begin0 - .quad Lset15783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15784, Ltmp2871-Lfunc_begin0 - .quad Lset15784 -.set Lset15785, Ltmp2873-Lfunc_begin0 - .quad Lset15785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15786, Ltmp2922-Lfunc_begin0 - .quad Lset15786 -.set Lset15787, Ltmp2924-Lfunc_begin0 - .quad Lset15787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15788, Ltmp2957-Lfunc_begin0 - .quad Lset15788 -.set Lset15789, Ltmp2958-Lfunc_begin0 - .quad Lset15789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15790, Ltmp2997-Lfunc_begin0 - .quad Lset15790 -.set Lset15791, Ltmp2999-Lfunc_begin0 - .quad Lset15791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15792, Ltmp3024-Lfunc_begin0 - .quad Lset15792 -.set Lset15793, Ltmp3025-Lfunc_begin0 - .quad Lset15793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15794, Ltmp3047-Lfunc_begin0 - .quad Lset15794 -.set Lset15795, Ltmp3048-Lfunc_begin0 - .quad Lset15795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15796, Ltmp3096-Lfunc_begin0 - .quad Lset15796 -.set Lset15797, Ltmp3097-Lfunc_begin0 - .quad Lset15797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15798, Ltmp3120-Lfunc_begin0 - .quad Lset15798 -.set Lset15799, Ltmp3122-Lfunc_begin0 - .quad Lset15799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15800, Ltmp3161-Lfunc_begin0 - .quad Lset15800 -.set Lset15801, Ltmp3163-Lfunc_begin0 - .quad Lset15801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15802, Ltmp3227-Lfunc_begin0 - .quad Lset15802 -.set Lset15803, Ltmp3228-Lfunc_begin0 - .quad Lset15803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15804, Ltmp3292-Lfunc_begin0 - .quad Lset15804 -.set Lset15805, Ltmp3293-Lfunc_begin0 - .quad Lset15805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15806, Ltmp3329-Lfunc_begin0 - .quad Lset15806 -.set Lset15807, Ltmp3330-Lfunc_begin0 - .quad Lset15807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15808, Ltmp3375-Lfunc_begin0 - .quad Lset15808 -.set Lset15809, Ltmp3376-Lfunc_begin0 - .quad Lset15809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15810, Ltmp3407-Lfunc_begin0 - .quad Lset15810 -.set Lset15811, Ltmp3408-Lfunc_begin0 - .quad Lset15811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15812, Ltmp3435-Lfunc_begin0 - .quad Lset15812 -.set Lset15813, Ltmp3436-Lfunc_begin0 - .quad Lset15813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15814, Ltmp3537-Lfunc_begin0 - .quad Lset15814 -.set Lset15815, Ltmp3538-Lfunc_begin0 - .quad Lset15815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15816, Ltmp3638-Lfunc_begin0 - .quad Lset15816 -.set Lset15817, Ltmp3640-Lfunc_begin0 - .quad Lset15817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15818, Ltmp3685-Lfunc_begin0 - .quad Lset15818 -.set Lset15819, Ltmp3686-Lfunc_begin0 - .quad Lset15819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15820, Ltmp3807-Lfunc_begin0 - .quad Lset15820 -.set Lset15821, Ltmp3809-Lfunc_begin0 - .quad Lset15821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15822, Ltmp3864-Lfunc_begin0 - .quad Lset15822 -.set Lset15823, Ltmp3865-Lfunc_begin0 - .quad Lset15823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15824, Ltmp3933-Lfunc_begin0 - .quad Lset15824 -.set Lset15825, Ltmp3934-Lfunc_begin0 - .quad Lset15825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15826, Ltmp3959-Lfunc_begin0 - .quad Lset15826 -.set Lset15827, Ltmp3960-Lfunc_begin0 - .quad Lset15827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15828, Ltmp3985-Lfunc_begin0 - .quad Lset15828 -.set Lset15829, Ltmp3986-Lfunc_begin0 - .quad Lset15829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15830, Ltmp4011-Lfunc_begin0 - .quad Lset15830 -.set Lset15831, Ltmp4012-Lfunc_begin0 - .quad Lset15831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15832, Ltmp4046-Lfunc_begin0 - .quad Lset15832 -.set Lset15833, Ltmp4047-Lfunc_begin0 - .quad Lset15833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15834, Ltmp4084-Lfunc_begin0 - .quad Lset15834 -.set Lset15835, Ltmp4085-Lfunc_begin0 - .quad Lset15835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15836, Ltmp4106-Lfunc_begin0 - .quad Lset15836 -.set Lset15837, Ltmp4107-Lfunc_begin0 - .quad Lset15837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15838, Ltmp4146-Lfunc_begin0 - .quad Lset15838 -.set Lset15839, Ltmp4147-Lfunc_begin0 - .quad Lset15839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15840, Ltmp4187-Lfunc_begin0 - .quad Lset15840 -.set Lset15841, Ltmp4188-Lfunc_begin0 - .quad Lset15841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15842, Ltmp4227-Lfunc_begin0 - .quad Lset15842 -.set Lset15843, Ltmp4228-Lfunc_begin0 - .quad Lset15843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15844, Ltmp4268-Lfunc_begin0 - .quad Lset15844 -.set Lset15845, Ltmp4269-Lfunc_begin0 - .quad Lset15845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15846, Ltmp4308-Lfunc_begin0 - .quad Lset15846 -.set Lset15847, Ltmp4309-Lfunc_begin0 - .quad Lset15847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15848, Ltmp4349-Lfunc_begin0 - .quad Lset15848 -.set Lset15849, Ltmp4350-Lfunc_begin0 - .quad Lset15849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15850, Ltmp4380-Lfunc_begin0 - .quad Lset15850 -.set Lset15851, Ltmp4381-Lfunc_begin0 - .quad Lset15851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15852, Ltmp4412-Lfunc_begin0 - .quad Lset15852 -.set Lset15853, Ltmp4414-Lfunc_begin0 - .quad Lset15853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15854, Ltmp4454-Lfunc_begin0 - .quad Lset15854 -.set Lset15855, Ltmp4455-Lfunc_begin0 - .quad Lset15855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15856, Ltmp4495-Lfunc_begin0 - .quad Lset15856 -.set Lset15857, Ltmp4496-Lfunc_begin0 - .quad Lset15857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15858, Ltmp4579-Lfunc_begin0 - .quad Lset15858 -.set Lset15859, Ltmp4581-Lfunc_begin0 - .quad Lset15859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15860, Ltmp4649-Lfunc_begin0 - .quad Lset15860 -.set Lset15861, Ltmp4651-Lfunc_begin0 - .quad Lset15861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15862, Ltmp4717-Lfunc_begin0 - .quad Lset15862 -.set Lset15863, Ltmp4719-Lfunc_begin0 - .quad Lset15863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15864, Ltmp4783-Lfunc_begin0 - .quad Lset15864 -.set Lset15865, Ltmp4784-Lfunc_begin0 - .quad Lset15865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15866, Ltmp4813-Lfunc_begin0 - .quad Lset15866 -.set Lset15867, Ltmp4814-Lfunc_begin0 - .quad Lset15867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15868, Ltmp4843-Lfunc_begin0 - .quad Lset15868 -.set Lset15869, Ltmp4844-Lfunc_begin0 - .quad Lset15869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15870, Ltmp4902-Lfunc_begin0 - .quad Lset15870 -.set Lset15871, Ltmp4903-Lfunc_begin0 - .quad Lset15871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15872, Ltmp4943-Lfunc_begin0 - .quad Lset15872 -.set Lset15873, Ltmp4944-Lfunc_begin0 - .quad Lset15873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15874, Ltmp5000-Lfunc_begin0 - .quad Lset15874 -.set Lset15875, Ltmp5001-Lfunc_begin0 - .quad Lset15875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15876, Ltmp5040-Lfunc_begin0 - .quad Lset15876 -.set Lset15877, Ltmp5041-Lfunc_begin0 - .quad Lset15877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15878, Ltmp5078-Lfunc_begin0 - .quad Lset15878 -.set Lset15879, Ltmp5079-Lfunc_begin0 - .quad Lset15879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15880, Ltmp5114-Lfunc_begin0 - .quad Lset15880 -.set Lset15881, Ltmp5115-Lfunc_begin0 - .quad Lset15881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15882, Ltmp5146-Lfunc_begin0 - .quad Lset15882 -.set Lset15883, Ltmp5147-Lfunc_begin0 - .quad Lset15883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15884, Ltmp5178-Lfunc_begin0 - .quad Lset15884 -.set Lset15885, Ltmp5179-Lfunc_begin0 - .quad Lset15885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15886, Ltmp5210-Lfunc_begin0 - .quad Lset15886 -.set Lset15887, Ltmp5211-Lfunc_begin0 - .quad Lset15887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15888, Ltmp5228-Lfunc_begin0 - .quad Lset15888 -.set Lset15889, Ltmp5229-Lfunc_begin0 - .quad Lset15889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15890, Ltmp5246-Lfunc_begin0 - .quad Lset15890 -.set Lset15891, Ltmp5247-Lfunc_begin0 - .quad Lset15891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15892, Ltmp5271-Lfunc_begin0 - .quad Lset15892 -.set Lset15893, Ltmp5272-Lfunc_begin0 - .quad Lset15893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15894, Ltmp5296-Lfunc_begin0 - .quad Lset15894 -.set Lset15895, Ltmp5297-Lfunc_begin0 - .quad Lset15895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15896, Ltmp5322-Lfunc_begin0 - .quad Lset15896 -.set Lset15897, Ltmp5323-Lfunc_begin0 - .quad Lset15897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15898, Ltmp5347-Lfunc_begin0 - .quad Lset15898 -.set Lset15899, Ltmp5348-Lfunc_begin0 - .quad Lset15899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15900, Ltmp5372-Lfunc_begin0 - .quad Lset15900 -.set Lset15901, Ltmp5373-Lfunc_begin0 - .quad Lset15901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15902, Ltmp5397-Lfunc_begin0 - .quad Lset15902 -.set Lset15903, Ltmp5398-Lfunc_begin0 - .quad Lset15903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15904, Ltmp5422-Lfunc_begin0 - .quad Lset15904 -.set Lset15905, Ltmp5423-Lfunc_begin0 - .quad Lset15905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15906, Ltmp5447-Lfunc_begin0 - .quad Lset15906 -.set Lset15907, Ltmp5448-Lfunc_begin0 - .quad Lset15907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15908, Ltmp5472-Lfunc_begin0 - .quad Lset15908 -.set Lset15909, Ltmp5473-Lfunc_begin0 - .quad Lset15909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15910, Ltmp5498-Lfunc_begin0 - .quad Lset15910 -.set Lset15911, Ltmp5499-Lfunc_begin0 - .quad Lset15911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15912, Ltmp5523-Lfunc_begin0 - .quad Lset15912 -.set Lset15913, Ltmp5524-Lfunc_begin0 - .quad Lset15913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15914, Ltmp5548-Lfunc_begin0 - .quad Lset15914 -.set Lset15915, Ltmp5549-Lfunc_begin0 - .quad Lset15915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15916, Ltmp5573-Lfunc_begin0 - .quad Lset15916 -.set Lset15917, Ltmp5574-Lfunc_begin0 - .quad Lset15917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15918, Ltmp5598-Lfunc_begin0 - .quad Lset15918 -.set Lset15919, Ltmp5599-Lfunc_begin0 - .quad Lset15919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15920, Ltmp5631-Lfunc_begin0 - .quad Lset15920 -.set Lset15921, Ltmp5632-Lfunc_begin0 - .quad Lset15921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15922, Ltmp5662-Lfunc_begin0 - .quad Lset15922 -.set Lset15923, Ltmp5663-Lfunc_begin0 - .quad Lset15923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15924, Ltmp5687-Lfunc_begin0 - .quad Lset15924 -.set Lset15925, Ltmp5688-Lfunc_begin0 - .quad Lset15925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15926, Ltmp5712-Lfunc_begin0 - .quad Lset15926 -.set Lset15927, Ltmp5713-Lfunc_begin0 - .quad Lset15927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15928, Ltmp5737-Lfunc_begin0 - .quad Lset15928 -.set Lset15929, Ltmp5738-Lfunc_begin0 - .quad Lset15929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15930, Ltmp5767-Lfunc_begin0 - .quad Lset15930 -.set Lset15931, Ltmp5768-Lfunc_begin0 - .quad Lset15931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15932, Ltmp5795-Lfunc_begin0 - .quad Lset15932 -.set Lset15933, Ltmp5796-Lfunc_begin0 - .quad Lset15933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15934, Ltmp5814-Lfunc_begin0 - .quad Lset15934 -.set Lset15935, Ltmp5815-Lfunc_begin0 - .quad Lset15935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15936, Ltmp5833-Lfunc_begin0 - .quad Lset15936 -.set Lset15937, Ltmp5834-Lfunc_begin0 - .quad Lset15937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15938, Ltmp5852-Lfunc_begin0 - .quad Lset15938 -.set Lset15939, Ltmp5853-Lfunc_begin0 - .quad Lset15939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15940, Ltmp5871-Lfunc_begin0 - .quad Lset15940 -.set Lset15941, Ltmp5872-Lfunc_begin0 - .quad Lset15941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15942, Ltmp5890-Lfunc_begin0 - .quad Lset15942 -.set Lset15943, Ltmp5891-Lfunc_begin0 - .quad Lset15943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15944, Ltmp5920-Lfunc_begin0 - .quad Lset15944 -.set Lset15945, Ltmp5921-Lfunc_begin0 - .quad Lset15945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc243: -.set Lset15946, Ltmp1186-Lfunc_begin0 - .quad Lset15946 -.set Lset15947, Ltmp1187-Lfunc_begin0 - .quad Lset15947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15948, Ltmp1215-Lfunc_begin0 - .quad Lset15948 -.set Lset15949, Ltmp1216-Lfunc_begin0 - .quad Lset15949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15950, Ltmp1237-Lfunc_begin0 - .quad Lset15950 -.set Lset15951, Ltmp1238-Lfunc_begin0 - .quad Lset15951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15952, Ltmp1260-Lfunc_begin0 - .quad Lset15952 -.set Lset15953, Ltmp1261-Lfunc_begin0 - .quad Lset15953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15954, Ltmp1281-Lfunc_begin0 - .quad Lset15954 -.set Lset15955, Ltmp1282-Lfunc_begin0 - .quad Lset15955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15956, Ltmp1314-Lfunc_begin0 - .quad Lset15956 -.set Lset15957, Ltmp1315-Lfunc_begin0 - .quad Lset15957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15958, Ltmp1338-Lfunc_begin0 - .quad Lset15958 -.set Lset15959, Ltmp1339-Lfunc_begin0 - .quad Lset15959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15960, Ltmp1368-Lfunc_begin0 - .quad Lset15960 -.set Lset15961, Ltmp1369-Lfunc_begin0 - .quad Lset15961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15962, Ltmp1462-Lfunc_begin0 - .quad Lset15962 -.set Lset15963, Ltmp1464-Lfunc_begin0 - .quad Lset15963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15964, Ltmp1557-Lfunc_begin0 - .quad Lset15964 -.set Lset15965, Ltmp1559-Lfunc_begin0 - .quad Lset15965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15966, Ltmp1713-Lfunc_begin0 - .quad Lset15966 -.set Lset15967, Ltmp1715-Lfunc_begin0 - .quad Lset15967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15968, Ltmp1864-Lfunc_begin0 - .quad Lset15968 -.set Lset15969, Ltmp1866-Lfunc_begin0 - .quad Lset15969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15970, Ltmp2004-Lfunc_begin0 - .quad Lset15970 -.set Lset15971, Ltmp2006-Lfunc_begin0 - .quad Lset15971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15972, Ltmp2074-Lfunc_begin0 - .quad Lset15972 -.set Lset15973, Ltmp2076-Lfunc_begin0 - .quad Lset15973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15974, Ltmp2120-Lfunc_begin0 - .quad Lset15974 -.set Lset15975, Ltmp2121-Lfunc_begin0 - .quad Lset15975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15976, Ltmp2193-Lfunc_begin0 - .quad Lset15976 -.set Lset15977, Ltmp2195-Lfunc_begin0 - .quad Lset15977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15978, Ltmp2253-Lfunc_begin0 - .quad Lset15978 -.set Lset15979, Ltmp2255-Lfunc_begin0 - .quad Lset15979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15980, Ltmp2302-Lfunc_begin0 - .quad Lset15980 -.set Lset15981, Ltmp2304-Lfunc_begin0 - .quad Lset15981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15982, Ltmp2351-Lfunc_begin0 - .quad Lset15982 -.set Lset15983, Ltmp2353-Lfunc_begin0 - .quad Lset15983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15984, Ltmp2400-Lfunc_begin0 - .quad Lset15984 -.set Lset15985, Ltmp2402-Lfunc_begin0 - .quad Lset15985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15986, Ltmp2444-Lfunc_begin0 - .quad Lset15986 -.set Lset15987, Ltmp2446-Lfunc_begin0 - .quad Lset15987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15988, Ltmp2499-Lfunc_begin0 - .quad Lset15988 -.set Lset15989, Ltmp2501-Lfunc_begin0 - .quad Lset15989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15990, Ltmp2554-Lfunc_begin0 - .quad Lset15990 -.set Lset15991, Ltmp2556-Lfunc_begin0 - .quad Lset15991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15992, Ltmp2609-Lfunc_begin0 - .quad Lset15992 -.set Lset15993, Ltmp2611-Lfunc_begin0 - .quad Lset15993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15994, Ltmp2673-Lfunc_begin0 - .quad Lset15994 -.set Lset15995, Ltmp2675-Lfunc_begin0 - .quad Lset15995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15996, Ltmp2738-Lfunc_begin0 - .quad Lset15996 -.set Lset15997, Ltmp2740-Lfunc_begin0 - .quad Lset15997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset15998, Ltmp2811-Lfunc_begin0 - .quad Lset15998 -.set Lset15999, Ltmp2813-Lfunc_begin0 - .quad Lset15999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16000, Ltmp2871-Lfunc_begin0 - .quad Lset16000 -.set Lset16001, Ltmp2873-Lfunc_begin0 - .quad Lset16001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16002, Ltmp2922-Lfunc_begin0 - .quad Lset16002 -.set Lset16003, Ltmp2924-Lfunc_begin0 - .quad Lset16003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16004, Ltmp2957-Lfunc_begin0 - .quad Lset16004 -.set Lset16005, Ltmp2958-Lfunc_begin0 - .quad Lset16005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16006, Ltmp2997-Lfunc_begin0 - .quad Lset16006 -.set Lset16007, Ltmp2999-Lfunc_begin0 - .quad Lset16007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16008, Ltmp3024-Lfunc_begin0 - .quad Lset16008 -.set Lset16009, Ltmp3025-Lfunc_begin0 - .quad Lset16009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16010, Ltmp3047-Lfunc_begin0 - .quad Lset16010 -.set Lset16011, Ltmp3048-Lfunc_begin0 - .quad Lset16011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16012, Ltmp3096-Lfunc_begin0 - .quad Lset16012 -.set Lset16013, Ltmp3097-Lfunc_begin0 - .quad Lset16013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16014, Ltmp3120-Lfunc_begin0 - .quad Lset16014 -.set Lset16015, Ltmp3122-Lfunc_begin0 - .quad Lset16015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16016, Ltmp3161-Lfunc_begin0 - .quad Lset16016 -.set Lset16017, Ltmp3163-Lfunc_begin0 - .quad Lset16017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16018, Ltmp3227-Lfunc_begin0 - .quad Lset16018 -.set Lset16019, Ltmp3228-Lfunc_begin0 - .quad Lset16019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16020, Ltmp3292-Lfunc_begin0 - .quad Lset16020 -.set Lset16021, Ltmp3293-Lfunc_begin0 - .quad Lset16021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16022, Ltmp3329-Lfunc_begin0 - .quad Lset16022 -.set Lset16023, Ltmp3330-Lfunc_begin0 - .quad Lset16023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16024, Ltmp3375-Lfunc_begin0 - .quad Lset16024 -.set Lset16025, Ltmp3376-Lfunc_begin0 - .quad Lset16025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16026, Ltmp3407-Lfunc_begin0 - .quad Lset16026 -.set Lset16027, Ltmp3408-Lfunc_begin0 - .quad Lset16027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16028, Ltmp3435-Lfunc_begin0 - .quad Lset16028 -.set Lset16029, Ltmp3436-Lfunc_begin0 - .quad Lset16029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16030, Ltmp3537-Lfunc_begin0 - .quad Lset16030 -.set Lset16031, Ltmp3538-Lfunc_begin0 - .quad Lset16031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16032, Ltmp3638-Lfunc_begin0 - .quad Lset16032 -.set Lset16033, Ltmp3640-Lfunc_begin0 - .quad Lset16033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16034, Ltmp3685-Lfunc_begin0 - .quad Lset16034 -.set Lset16035, Ltmp3686-Lfunc_begin0 - .quad Lset16035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16036, Ltmp3807-Lfunc_begin0 - .quad Lset16036 -.set Lset16037, Ltmp3809-Lfunc_begin0 - .quad Lset16037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16038, Ltmp3864-Lfunc_begin0 - .quad Lset16038 -.set Lset16039, Ltmp3865-Lfunc_begin0 - .quad Lset16039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16040, Ltmp3933-Lfunc_begin0 - .quad Lset16040 -.set Lset16041, Ltmp3934-Lfunc_begin0 - .quad Lset16041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16042, Ltmp3959-Lfunc_begin0 - .quad Lset16042 -.set Lset16043, Ltmp3960-Lfunc_begin0 - .quad Lset16043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16044, Ltmp3985-Lfunc_begin0 - .quad Lset16044 -.set Lset16045, Ltmp3986-Lfunc_begin0 - .quad Lset16045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16046, Ltmp4011-Lfunc_begin0 - .quad Lset16046 -.set Lset16047, Ltmp4012-Lfunc_begin0 - .quad Lset16047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16048, Ltmp4046-Lfunc_begin0 - .quad Lset16048 -.set Lset16049, Ltmp4047-Lfunc_begin0 - .quad Lset16049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16050, Ltmp4084-Lfunc_begin0 - .quad Lset16050 -.set Lset16051, Ltmp4085-Lfunc_begin0 - .quad Lset16051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16052, Ltmp4106-Lfunc_begin0 - .quad Lset16052 -.set Lset16053, Ltmp4107-Lfunc_begin0 - .quad Lset16053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16054, Ltmp4146-Lfunc_begin0 - .quad Lset16054 -.set Lset16055, Ltmp4147-Lfunc_begin0 - .quad Lset16055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16056, Ltmp4187-Lfunc_begin0 - .quad Lset16056 -.set Lset16057, Ltmp4188-Lfunc_begin0 - .quad Lset16057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16058, Ltmp4227-Lfunc_begin0 - .quad Lset16058 -.set Lset16059, Ltmp4228-Lfunc_begin0 - .quad Lset16059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16060, Ltmp4268-Lfunc_begin0 - .quad Lset16060 -.set Lset16061, Ltmp4269-Lfunc_begin0 - .quad Lset16061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16062, Ltmp4308-Lfunc_begin0 - .quad Lset16062 -.set Lset16063, Ltmp4309-Lfunc_begin0 - .quad Lset16063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16064, Ltmp4349-Lfunc_begin0 - .quad Lset16064 -.set Lset16065, Ltmp4350-Lfunc_begin0 - .quad Lset16065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16066, Ltmp4380-Lfunc_begin0 - .quad Lset16066 -.set Lset16067, Ltmp4381-Lfunc_begin0 - .quad Lset16067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16068, Ltmp4412-Lfunc_begin0 - .quad Lset16068 -.set Lset16069, Ltmp4414-Lfunc_begin0 - .quad Lset16069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16070, Ltmp4454-Lfunc_begin0 - .quad Lset16070 -.set Lset16071, Ltmp4455-Lfunc_begin0 - .quad Lset16071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16072, Ltmp4495-Lfunc_begin0 - .quad Lset16072 -.set Lset16073, Ltmp4496-Lfunc_begin0 - .quad Lset16073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16074, Ltmp4579-Lfunc_begin0 - .quad Lset16074 -.set Lset16075, Ltmp4581-Lfunc_begin0 - .quad Lset16075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16076, Ltmp4649-Lfunc_begin0 - .quad Lset16076 -.set Lset16077, Ltmp4651-Lfunc_begin0 - .quad Lset16077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16078, Ltmp4717-Lfunc_begin0 - .quad Lset16078 -.set Lset16079, Ltmp4719-Lfunc_begin0 - .quad Lset16079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16080, Ltmp4783-Lfunc_begin0 - .quad Lset16080 -.set Lset16081, Ltmp4784-Lfunc_begin0 - .quad Lset16081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16082, Ltmp4813-Lfunc_begin0 - .quad Lset16082 -.set Lset16083, Ltmp4814-Lfunc_begin0 - .quad Lset16083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16084, Ltmp4843-Lfunc_begin0 - .quad Lset16084 -.set Lset16085, Ltmp4844-Lfunc_begin0 - .quad Lset16085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16086, Ltmp4902-Lfunc_begin0 - .quad Lset16086 -.set Lset16087, Ltmp4903-Lfunc_begin0 - .quad Lset16087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16088, Ltmp4943-Lfunc_begin0 - .quad Lset16088 -.set Lset16089, Ltmp4944-Lfunc_begin0 - .quad Lset16089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16090, Ltmp5000-Lfunc_begin0 - .quad Lset16090 -.set Lset16091, Ltmp5001-Lfunc_begin0 - .quad Lset16091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16092, Ltmp5040-Lfunc_begin0 - .quad Lset16092 -.set Lset16093, Ltmp5041-Lfunc_begin0 - .quad Lset16093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16094, Ltmp5078-Lfunc_begin0 - .quad Lset16094 -.set Lset16095, Ltmp5079-Lfunc_begin0 - .quad Lset16095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16096, Ltmp5114-Lfunc_begin0 - .quad Lset16096 -.set Lset16097, Ltmp5115-Lfunc_begin0 - .quad Lset16097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16098, Ltmp5146-Lfunc_begin0 - .quad Lset16098 -.set Lset16099, Ltmp5147-Lfunc_begin0 - .quad Lset16099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16100, Ltmp5178-Lfunc_begin0 - .quad Lset16100 -.set Lset16101, Ltmp5179-Lfunc_begin0 - .quad Lset16101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16102, Ltmp5210-Lfunc_begin0 - .quad Lset16102 -.set Lset16103, Ltmp5211-Lfunc_begin0 - .quad Lset16103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16104, Ltmp5228-Lfunc_begin0 - .quad Lset16104 -.set Lset16105, Ltmp5229-Lfunc_begin0 - .quad Lset16105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16106, Ltmp5246-Lfunc_begin0 - .quad Lset16106 -.set Lset16107, Ltmp5247-Lfunc_begin0 - .quad Lset16107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16108, Ltmp5271-Lfunc_begin0 - .quad Lset16108 -.set Lset16109, Ltmp5272-Lfunc_begin0 - .quad Lset16109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16110, Ltmp5296-Lfunc_begin0 - .quad Lset16110 -.set Lset16111, Ltmp5297-Lfunc_begin0 - .quad Lset16111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16112, Ltmp5322-Lfunc_begin0 - .quad Lset16112 -.set Lset16113, Ltmp5323-Lfunc_begin0 - .quad Lset16113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16114, Ltmp5347-Lfunc_begin0 - .quad Lset16114 -.set Lset16115, Ltmp5348-Lfunc_begin0 - .quad Lset16115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16116, Ltmp5372-Lfunc_begin0 - .quad Lset16116 -.set Lset16117, Ltmp5373-Lfunc_begin0 - .quad Lset16117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16118, Ltmp5397-Lfunc_begin0 - .quad Lset16118 -.set Lset16119, Ltmp5398-Lfunc_begin0 - .quad Lset16119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16120, Ltmp5422-Lfunc_begin0 - .quad Lset16120 -.set Lset16121, Ltmp5423-Lfunc_begin0 - .quad Lset16121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16122, Ltmp5447-Lfunc_begin0 - .quad Lset16122 -.set Lset16123, Ltmp5448-Lfunc_begin0 - .quad Lset16123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16124, Ltmp5472-Lfunc_begin0 - .quad Lset16124 -.set Lset16125, Ltmp5473-Lfunc_begin0 - .quad Lset16125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16126, Ltmp5498-Lfunc_begin0 - .quad Lset16126 -.set Lset16127, Ltmp5499-Lfunc_begin0 - .quad Lset16127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16128, Ltmp5523-Lfunc_begin0 - .quad Lset16128 -.set Lset16129, Ltmp5524-Lfunc_begin0 - .quad Lset16129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16130, Ltmp5548-Lfunc_begin0 - .quad Lset16130 -.set Lset16131, Ltmp5549-Lfunc_begin0 - .quad Lset16131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16132, Ltmp5573-Lfunc_begin0 - .quad Lset16132 -.set Lset16133, Ltmp5574-Lfunc_begin0 - .quad Lset16133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16134, Ltmp5598-Lfunc_begin0 - .quad Lset16134 -.set Lset16135, Ltmp5599-Lfunc_begin0 - .quad Lset16135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16136, Ltmp5631-Lfunc_begin0 - .quad Lset16136 -.set Lset16137, Ltmp5632-Lfunc_begin0 - .quad Lset16137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16138, Ltmp5662-Lfunc_begin0 - .quad Lset16138 -.set Lset16139, Ltmp5663-Lfunc_begin0 - .quad Lset16139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16140, Ltmp5687-Lfunc_begin0 - .quad Lset16140 -.set Lset16141, Ltmp5688-Lfunc_begin0 - .quad Lset16141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16142, Ltmp5712-Lfunc_begin0 - .quad Lset16142 -.set Lset16143, Ltmp5713-Lfunc_begin0 - .quad Lset16143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16144, Ltmp5737-Lfunc_begin0 - .quad Lset16144 -.set Lset16145, Ltmp5738-Lfunc_begin0 - .quad Lset16145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16146, Ltmp5767-Lfunc_begin0 - .quad Lset16146 -.set Lset16147, Ltmp5768-Lfunc_begin0 - .quad Lset16147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16148, Ltmp5795-Lfunc_begin0 - .quad Lset16148 -.set Lset16149, Ltmp5796-Lfunc_begin0 - .quad Lset16149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16150, Ltmp5814-Lfunc_begin0 - .quad Lset16150 -.set Lset16151, Ltmp5815-Lfunc_begin0 - .quad Lset16151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16152, Ltmp5833-Lfunc_begin0 - .quad Lset16152 -.set Lset16153, Ltmp5834-Lfunc_begin0 - .quad Lset16153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16154, Ltmp5852-Lfunc_begin0 - .quad Lset16154 -.set Lset16155, Ltmp5853-Lfunc_begin0 - .quad Lset16155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16156, Ltmp5871-Lfunc_begin0 - .quad Lset16156 -.set Lset16157, Ltmp5872-Lfunc_begin0 - .quad Lset16157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16158, Ltmp5890-Lfunc_begin0 - .quad Lset16158 -.set Lset16159, Ltmp5891-Lfunc_begin0 - .quad Lset16159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16160, Ltmp5920-Lfunc_begin0 - .quad Lset16160 -.set Lset16161, Ltmp5921-Lfunc_begin0 - .quad Lset16161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc244: -.set Lset16162, Ltmp1186-Lfunc_begin0 - .quad Lset16162 -.set Lset16163, Ltmp1187-Lfunc_begin0 - .quad Lset16163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16164, Ltmp1215-Lfunc_begin0 - .quad Lset16164 -.set Lset16165, Ltmp1216-Lfunc_begin0 - .quad Lset16165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16166, Ltmp1237-Lfunc_begin0 - .quad Lset16166 -.set Lset16167, Ltmp1238-Lfunc_begin0 - .quad Lset16167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16168, Ltmp1260-Lfunc_begin0 - .quad Lset16168 -.set Lset16169, Ltmp1261-Lfunc_begin0 - .quad Lset16169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16170, Ltmp1281-Lfunc_begin0 - .quad Lset16170 -.set Lset16171, Ltmp1282-Lfunc_begin0 - .quad Lset16171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16172, Ltmp1314-Lfunc_begin0 - .quad Lset16172 -.set Lset16173, Ltmp1315-Lfunc_begin0 - .quad Lset16173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16174, Ltmp1338-Lfunc_begin0 - .quad Lset16174 -.set Lset16175, Ltmp1339-Lfunc_begin0 - .quad Lset16175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16176, Ltmp1368-Lfunc_begin0 - .quad Lset16176 -.set Lset16177, Ltmp1369-Lfunc_begin0 - .quad Lset16177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16178, Ltmp1462-Lfunc_begin0 - .quad Lset16178 -.set Lset16179, Ltmp1464-Lfunc_begin0 - .quad Lset16179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16180, Ltmp1557-Lfunc_begin0 - .quad Lset16180 -.set Lset16181, Ltmp1559-Lfunc_begin0 - .quad Lset16181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16182, Ltmp1713-Lfunc_begin0 - .quad Lset16182 -.set Lset16183, Ltmp1715-Lfunc_begin0 - .quad Lset16183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16184, Ltmp1864-Lfunc_begin0 - .quad Lset16184 -.set Lset16185, Ltmp1866-Lfunc_begin0 - .quad Lset16185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16186, Ltmp2004-Lfunc_begin0 - .quad Lset16186 -.set Lset16187, Ltmp2006-Lfunc_begin0 - .quad Lset16187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16188, Ltmp2074-Lfunc_begin0 - .quad Lset16188 -.set Lset16189, Ltmp2076-Lfunc_begin0 - .quad Lset16189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16190, Ltmp2120-Lfunc_begin0 - .quad Lset16190 -.set Lset16191, Ltmp2121-Lfunc_begin0 - .quad Lset16191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16192, Ltmp2193-Lfunc_begin0 - .quad Lset16192 -.set Lset16193, Ltmp2195-Lfunc_begin0 - .quad Lset16193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16194, Ltmp2253-Lfunc_begin0 - .quad Lset16194 -.set Lset16195, Ltmp2255-Lfunc_begin0 - .quad Lset16195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16196, Ltmp2302-Lfunc_begin0 - .quad Lset16196 -.set Lset16197, Ltmp2304-Lfunc_begin0 - .quad Lset16197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16198, Ltmp2351-Lfunc_begin0 - .quad Lset16198 -.set Lset16199, Ltmp2353-Lfunc_begin0 - .quad Lset16199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16200, Ltmp2400-Lfunc_begin0 - .quad Lset16200 -.set Lset16201, Ltmp2402-Lfunc_begin0 - .quad Lset16201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16202, Ltmp2444-Lfunc_begin0 - .quad Lset16202 -.set Lset16203, Ltmp2446-Lfunc_begin0 - .quad Lset16203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16204, Ltmp2499-Lfunc_begin0 - .quad Lset16204 -.set Lset16205, Ltmp2501-Lfunc_begin0 - .quad Lset16205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16206, Ltmp2554-Lfunc_begin0 - .quad Lset16206 -.set Lset16207, Ltmp2556-Lfunc_begin0 - .quad Lset16207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16208, Ltmp2609-Lfunc_begin0 - .quad Lset16208 -.set Lset16209, Ltmp2611-Lfunc_begin0 - .quad Lset16209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16210, Ltmp2673-Lfunc_begin0 - .quad Lset16210 -.set Lset16211, Ltmp2675-Lfunc_begin0 - .quad Lset16211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16212, Ltmp2738-Lfunc_begin0 - .quad Lset16212 -.set Lset16213, Ltmp2740-Lfunc_begin0 - .quad Lset16213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16214, Ltmp2811-Lfunc_begin0 - .quad Lset16214 -.set Lset16215, Ltmp2813-Lfunc_begin0 - .quad Lset16215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16216, Ltmp2871-Lfunc_begin0 - .quad Lset16216 -.set Lset16217, Ltmp2873-Lfunc_begin0 - .quad Lset16217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16218, Ltmp2922-Lfunc_begin0 - .quad Lset16218 -.set Lset16219, Ltmp2924-Lfunc_begin0 - .quad Lset16219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16220, Ltmp2957-Lfunc_begin0 - .quad Lset16220 -.set Lset16221, Ltmp2958-Lfunc_begin0 - .quad Lset16221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16222, Ltmp2997-Lfunc_begin0 - .quad Lset16222 -.set Lset16223, Ltmp2999-Lfunc_begin0 - .quad Lset16223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16224, Ltmp3024-Lfunc_begin0 - .quad Lset16224 -.set Lset16225, Ltmp3025-Lfunc_begin0 - .quad Lset16225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16226, Ltmp3047-Lfunc_begin0 - .quad Lset16226 -.set Lset16227, Ltmp3048-Lfunc_begin0 - .quad Lset16227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16228, Ltmp3096-Lfunc_begin0 - .quad Lset16228 -.set Lset16229, Ltmp3097-Lfunc_begin0 - .quad Lset16229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16230, Ltmp3120-Lfunc_begin0 - .quad Lset16230 -.set Lset16231, Ltmp3122-Lfunc_begin0 - .quad Lset16231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16232, Ltmp3161-Lfunc_begin0 - .quad Lset16232 -.set Lset16233, Ltmp3163-Lfunc_begin0 - .quad Lset16233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16234, Ltmp3227-Lfunc_begin0 - .quad Lset16234 -.set Lset16235, Ltmp3228-Lfunc_begin0 - .quad Lset16235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16236, Ltmp3292-Lfunc_begin0 - .quad Lset16236 -.set Lset16237, Ltmp3293-Lfunc_begin0 - .quad Lset16237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16238, Ltmp3329-Lfunc_begin0 - .quad Lset16238 -.set Lset16239, Ltmp3330-Lfunc_begin0 - .quad Lset16239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16240, Ltmp3375-Lfunc_begin0 - .quad Lset16240 -.set Lset16241, Ltmp3376-Lfunc_begin0 - .quad Lset16241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16242, Ltmp3407-Lfunc_begin0 - .quad Lset16242 -.set Lset16243, Ltmp3408-Lfunc_begin0 - .quad Lset16243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16244, Ltmp3435-Lfunc_begin0 - .quad Lset16244 -.set Lset16245, Ltmp3436-Lfunc_begin0 - .quad Lset16245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16246, Ltmp3537-Lfunc_begin0 - .quad Lset16246 -.set Lset16247, Ltmp3538-Lfunc_begin0 - .quad Lset16247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16248, Ltmp3638-Lfunc_begin0 - .quad Lset16248 -.set Lset16249, Ltmp3640-Lfunc_begin0 - .quad Lset16249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16250, Ltmp3685-Lfunc_begin0 - .quad Lset16250 -.set Lset16251, Ltmp3686-Lfunc_begin0 - .quad Lset16251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16252, Ltmp3807-Lfunc_begin0 - .quad Lset16252 -.set Lset16253, Ltmp3809-Lfunc_begin0 - .quad Lset16253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16254, Ltmp3864-Lfunc_begin0 - .quad Lset16254 -.set Lset16255, Ltmp3865-Lfunc_begin0 - .quad Lset16255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16256, Ltmp3933-Lfunc_begin0 - .quad Lset16256 -.set Lset16257, Ltmp3934-Lfunc_begin0 - .quad Lset16257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16258, Ltmp3959-Lfunc_begin0 - .quad Lset16258 -.set Lset16259, Ltmp3960-Lfunc_begin0 - .quad Lset16259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16260, Ltmp3985-Lfunc_begin0 - .quad Lset16260 -.set Lset16261, Ltmp3986-Lfunc_begin0 - .quad Lset16261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16262, Ltmp4011-Lfunc_begin0 - .quad Lset16262 -.set Lset16263, Ltmp4012-Lfunc_begin0 - .quad Lset16263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16264, Ltmp4046-Lfunc_begin0 - .quad Lset16264 -.set Lset16265, Ltmp4047-Lfunc_begin0 - .quad Lset16265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16266, Ltmp4084-Lfunc_begin0 - .quad Lset16266 -.set Lset16267, Ltmp4085-Lfunc_begin0 - .quad Lset16267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16268, Ltmp4106-Lfunc_begin0 - .quad Lset16268 -.set Lset16269, Ltmp4107-Lfunc_begin0 - .quad Lset16269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16270, Ltmp4146-Lfunc_begin0 - .quad Lset16270 -.set Lset16271, Ltmp4147-Lfunc_begin0 - .quad Lset16271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16272, Ltmp4187-Lfunc_begin0 - .quad Lset16272 -.set Lset16273, Ltmp4188-Lfunc_begin0 - .quad Lset16273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16274, Ltmp4227-Lfunc_begin0 - .quad Lset16274 -.set Lset16275, Ltmp4228-Lfunc_begin0 - .quad Lset16275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16276, Ltmp4268-Lfunc_begin0 - .quad Lset16276 -.set Lset16277, Ltmp4269-Lfunc_begin0 - .quad Lset16277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16278, Ltmp4308-Lfunc_begin0 - .quad Lset16278 -.set Lset16279, Ltmp4309-Lfunc_begin0 - .quad Lset16279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16280, Ltmp4349-Lfunc_begin0 - .quad Lset16280 -.set Lset16281, Ltmp4350-Lfunc_begin0 - .quad Lset16281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16282, Ltmp4380-Lfunc_begin0 - .quad Lset16282 -.set Lset16283, Ltmp4381-Lfunc_begin0 - .quad Lset16283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16284, Ltmp4412-Lfunc_begin0 - .quad Lset16284 -.set Lset16285, Ltmp4414-Lfunc_begin0 - .quad Lset16285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16286, Ltmp4454-Lfunc_begin0 - .quad Lset16286 -.set Lset16287, Ltmp4455-Lfunc_begin0 - .quad Lset16287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16288, Ltmp4495-Lfunc_begin0 - .quad Lset16288 -.set Lset16289, Ltmp4496-Lfunc_begin0 - .quad Lset16289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16290, Ltmp4579-Lfunc_begin0 - .quad Lset16290 -.set Lset16291, Ltmp4581-Lfunc_begin0 - .quad Lset16291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16292, Ltmp4649-Lfunc_begin0 - .quad Lset16292 -.set Lset16293, Ltmp4651-Lfunc_begin0 - .quad Lset16293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16294, Ltmp4717-Lfunc_begin0 - .quad Lset16294 -.set Lset16295, Ltmp4719-Lfunc_begin0 - .quad Lset16295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16296, Ltmp4783-Lfunc_begin0 - .quad Lset16296 -.set Lset16297, Ltmp4784-Lfunc_begin0 - .quad Lset16297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16298, Ltmp4813-Lfunc_begin0 - .quad Lset16298 -.set Lset16299, Ltmp4814-Lfunc_begin0 - .quad Lset16299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16300, Ltmp4843-Lfunc_begin0 - .quad Lset16300 -.set Lset16301, Ltmp4844-Lfunc_begin0 - .quad Lset16301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16302, Ltmp4902-Lfunc_begin0 - .quad Lset16302 -.set Lset16303, Ltmp4903-Lfunc_begin0 - .quad Lset16303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16304, Ltmp4943-Lfunc_begin0 - .quad Lset16304 -.set Lset16305, Ltmp4944-Lfunc_begin0 - .quad Lset16305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16306, Ltmp5000-Lfunc_begin0 - .quad Lset16306 -.set Lset16307, Ltmp5001-Lfunc_begin0 - .quad Lset16307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16308, Ltmp5040-Lfunc_begin0 - .quad Lset16308 -.set Lset16309, Ltmp5041-Lfunc_begin0 - .quad Lset16309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16310, Ltmp5078-Lfunc_begin0 - .quad Lset16310 -.set Lset16311, Ltmp5079-Lfunc_begin0 - .quad Lset16311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16312, Ltmp5114-Lfunc_begin0 - .quad Lset16312 -.set Lset16313, Ltmp5115-Lfunc_begin0 - .quad Lset16313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16314, Ltmp5146-Lfunc_begin0 - .quad Lset16314 -.set Lset16315, Ltmp5147-Lfunc_begin0 - .quad Lset16315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16316, Ltmp5178-Lfunc_begin0 - .quad Lset16316 -.set Lset16317, Ltmp5179-Lfunc_begin0 - .quad Lset16317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16318, Ltmp5210-Lfunc_begin0 - .quad Lset16318 -.set Lset16319, Ltmp5211-Lfunc_begin0 - .quad Lset16319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16320, Ltmp5228-Lfunc_begin0 - .quad Lset16320 -.set Lset16321, Ltmp5229-Lfunc_begin0 - .quad Lset16321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16322, Ltmp5246-Lfunc_begin0 - .quad Lset16322 -.set Lset16323, Ltmp5247-Lfunc_begin0 - .quad Lset16323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16324, Ltmp5271-Lfunc_begin0 - .quad Lset16324 -.set Lset16325, Ltmp5272-Lfunc_begin0 - .quad Lset16325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16326, Ltmp5296-Lfunc_begin0 - .quad Lset16326 -.set Lset16327, Ltmp5297-Lfunc_begin0 - .quad Lset16327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16328, Ltmp5322-Lfunc_begin0 - .quad Lset16328 -.set Lset16329, Ltmp5323-Lfunc_begin0 - .quad Lset16329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16330, Ltmp5347-Lfunc_begin0 - .quad Lset16330 -.set Lset16331, Ltmp5348-Lfunc_begin0 - .quad Lset16331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16332, Ltmp5372-Lfunc_begin0 - .quad Lset16332 -.set Lset16333, Ltmp5373-Lfunc_begin0 - .quad Lset16333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16334, Ltmp5397-Lfunc_begin0 - .quad Lset16334 -.set Lset16335, Ltmp5398-Lfunc_begin0 - .quad Lset16335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16336, Ltmp5422-Lfunc_begin0 - .quad Lset16336 -.set Lset16337, Ltmp5423-Lfunc_begin0 - .quad Lset16337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16338, Ltmp5447-Lfunc_begin0 - .quad Lset16338 -.set Lset16339, Ltmp5448-Lfunc_begin0 - .quad Lset16339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16340, Ltmp5472-Lfunc_begin0 - .quad Lset16340 -.set Lset16341, Ltmp5473-Lfunc_begin0 - .quad Lset16341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16342, Ltmp5498-Lfunc_begin0 - .quad Lset16342 -.set Lset16343, Ltmp5499-Lfunc_begin0 - .quad Lset16343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16344, Ltmp5523-Lfunc_begin0 - .quad Lset16344 -.set Lset16345, Ltmp5524-Lfunc_begin0 - .quad Lset16345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16346, Ltmp5548-Lfunc_begin0 - .quad Lset16346 -.set Lset16347, Ltmp5549-Lfunc_begin0 - .quad Lset16347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16348, Ltmp5573-Lfunc_begin0 - .quad Lset16348 -.set Lset16349, Ltmp5574-Lfunc_begin0 - .quad Lset16349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16350, Ltmp5598-Lfunc_begin0 - .quad Lset16350 -.set Lset16351, Ltmp5599-Lfunc_begin0 - .quad Lset16351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16352, Ltmp5631-Lfunc_begin0 - .quad Lset16352 -.set Lset16353, Ltmp5632-Lfunc_begin0 - .quad Lset16353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16354, Ltmp5662-Lfunc_begin0 - .quad Lset16354 -.set Lset16355, Ltmp5663-Lfunc_begin0 - .quad Lset16355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16356, Ltmp5687-Lfunc_begin0 - .quad Lset16356 -.set Lset16357, Ltmp5688-Lfunc_begin0 - .quad Lset16357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16358, Ltmp5712-Lfunc_begin0 - .quad Lset16358 -.set Lset16359, Ltmp5713-Lfunc_begin0 - .quad Lset16359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16360, Ltmp5737-Lfunc_begin0 - .quad Lset16360 -.set Lset16361, Ltmp5738-Lfunc_begin0 - .quad Lset16361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16362, Ltmp5767-Lfunc_begin0 - .quad Lset16362 -.set Lset16363, Ltmp5768-Lfunc_begin0 - .quad Lset16363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16364, Ltmp5795-Lfunc_begin0 - .quad Lset16364 -.set Lset16365, Ltmp5796-Lfunc_begin0 - .quad Lset16365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16366, Ltmp5814-Lfunc_begin0 - .quad Lset16366 -.set Lset16367, Ltmp5815-Lfunc_begin0 - .quad Lset16367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16368, Ltmp5833-Lfunc_begin0 - .quad Lset16368 -.set Lset16369, Ltmp5834-Lfunc_begin0 - .quad Lset16369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16370, Ltmp5852-Lfunc_begin0 - .quad Lset16370 -.set Lset16371, Ltmp5853-Lfunc_begin0 - .quad Lset16371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16372, Ltmp5871-Lfunc_begin0 - .quad Lset16372 -.set Lset16373, Ltmp5872-Lfunc_begin0 - .quad Lset16373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16374, Ltmp5890-Lfunc_begin0 - .quad Lset16374 -.set Lset16375, Ltmp5891-Lfunc_begin0 - .quad Lset16375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16376, Ltmp5920-Lfunc_begin0 - .quad Lset16376 -.set Lset16377, Ltmp5921-Lfunc_begin0 - .quad Lset16377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc245: -.set Lset16378, Ltmp1186-Lfunc_begin0 - .quad Lset16378 -.set Lset16379, Ltmp1187-Lfunc_begin0 - .quad Lset16379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16380, Ltmp1215-Lfunc_begin0 - .quad Lset16380 -.set Lset16381, Ltmp1216-Lfunc_begin0 - .quad Lset16381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16382, Ltmp1237-Lfunc_begin0 - .quad Lset16382 -.set Lset16383, Ltmp1238-Lfunc_begin0 - .quad Lset16383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16384, Ltmp1260-Lfunc_begin0 - .quad Lset16384 -.set Lset16385, Ltmp1261-Lfunc_begin0 - .quad Lset16385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16386, Ltmp1281-Lfunc_begin0 - .quad Lset16386 -.set Lset16387, Ltmp1282-Lfunc_begin0 - .quad Lset16387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16388, Ltmp1314-Lfunc_begin0 - .quad Lset16388 -.set Lset16389, Ltmp1315-Lfunc_begin0 - .quad Lset16389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16390, Ltmp1338-Lfunc_begin0 - .quad Lset16390 -.set Lset16391, Ltmp1339-Lfunc_begin0 - .quad Lset16391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16392, Ltmp1368-Lfunc_begin0 - .quad Lset16392 -.set Lset16393, Ltmp1369-Lfunc_begin0 - .quad Lset16393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16394, Ltmp1462-Lfunc_begin0 - .quad Lset16394 -.set Lset16395, Ltmp1464-Lfunc_begin0 - .quad Lset16395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16396, Ltmp1557-Lfunc_begin0 - .quad Lset16396 -.set Lset16397, Ltmp1559-Lfunc_begin0 - .quad Lset16397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16398, Ltmp1713-Lfunc_begin0 - .quad Lset16398 -.set Lset16399, Ltmp1715-Lfunc_begin0 - .quad Lset16399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16400, Ltmp1864-Lfunc_begin0 - .quad Lset16400 -.set Lset16401, Ltmp1866-Lfunc_begin0 - .quad Lset16401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16402, Ltmp2004-Lfunc_begin0 - .quad Lset16402 -.set Lset16403, Ltmp2006-Lfunc_begin0 - .quad Lset16403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16404, Ltmp2074-Lfunc_begin0 - .quad Lset16404 -.set Lset16405, Ltmp2076-Lfunc_begin0 - .quad Lset16405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16406, Ltmp2120-Lfunc_begin0 - .quad Lset16406 -.set Lset16407, Ltmp2121-Lfunc_begin0 - .quad Lset16407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16408, Ltmp2193-Lfunc_begin0 - .quad Lset16408 -.set Lset16409, Ltmp2195-Lfunc_begin0 - .quad Lset16409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16410, Ltmp2253-Lfunc_begin0 - .quad Lset16410 -.set Lset16411, Ltmp2255-Lfunc_begin0 - .quad Lset16411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16412, Ltmp2302-Lfunc_begin0 - .quad Lset16412 -.set Lset16413, Ltmp2304-Lfunc_begin0 - .quad Lset16413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16414, Ltmp2351-Lfunc_begin0 - .quad Lset16414 -.set Lset16415, Ltmp2353-Lfunc_begin0 - .quad Lset16415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16416, Ltmp2400-Lfunc_begin0 - .quad Lset16416 -.set Lset16417, Ltmp2402-Lfunc_begin0 - .quad Lset16417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16418, Ltmp2444-Lfunc_begin0 - .quad Lset16418 -.set Lset16419, Ltmp2446-Lfunc_begin0 - .quad Lset16419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16420, Ltmp2499-Lfunc_begin0 - .quad Lset16420 -.set Lset16421, Ltmp2501-Lfunc_begin0 - .quad Lset16421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16422, Ltmp2554-Lfunc_begin0 - .quad Lset16422 -.set Lset16423, Ltmp2556-Lfunc_begin0 - .quad Lset16423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16424, Ltmp2609-Lfunc_begin0 - .quad Lset16424 -.set Lset16425, Ltmp2611-Lfunc_begin0 - .quad Lset16425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16426, Ltmp2673-Lfunc_begin0 - .quad Lset16426 -.set Lset16427, Ltmp2675-Lfunc_begin0 - .quad Lset16427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16428, Ltmp2738-Lfunc_begin0 - .quad Lset16428 -.set Lset16429, Ltmp2740-Lfunc_begin0 - .quad Lset16429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16430, Ltmp2811-Lfunc_begin0 - .quad Lset16430 -.set Lset16431, Ltmp2813-Lfunc_begin0 - .quad Lset16431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16432, Ltmp2871-Lfunc_begin0 - .quad Lset16432 -.set Lset16433, Ltmp2873-Lfunc_begin0 - .quad Lset16433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16434, Ltmp2922-Lfunc_begin0 - .quad Lset16434 -.set Lset16435, Ltmp2924-Lfunc_begin0 - .quad Lset16435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16436, Ltmp2957-Lfunc_begin0 - .quad Lset16436 -.set Lset16437, Ltmp2958-Lfunc_begin0 - .quad Lset16437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16438, Ltmp2997-Lfunc_begin0 - .quad Lset16438 -.set Lset16439, Ltmp2999-Lfunc_begin0 - .quad Lset16439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16440, Ltmp3024-Lfunc_begin0 - .quad Lset16440 -.set Lset16441, Ltmp3025-Lfunc_begin0 - .quad Lset16441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16442, Ltmp3047-Lfunc_begin0 - .quad Lset16442 -.set Lset16443, Ltmp3048-Lfunc_begin0 - .quad Lset16443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16444, Ltmp3096-Lfunc_begin0 - .quad Lset16444 -.set Lset16445, Ltmp3097-Lfunc_begin0 - .quad Lset16445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16446, Ltmp3120-Lfunc_begin0 - .quad Lset16446 -.set Lset16447, Ltmp3122-Lfunc_begin0 - .quad Lset16447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16448, Ltmp3161-Lfunc_begin0 - .quad Lset16448 -.set Lset16449, Ltmp3163-Lfunc_begin0 - .quad Lset16449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16450, Ltmp3227-Lfunc_begin0 - .quad Lset16450 -.set Lset16451, Ltmp3228-Lfunc_begin0 - .quad Lset16451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16452, Ltmp3292-Lfunc_begin0 - .quad Lset16452 -.set Lset16453, Ltmp3293-Lfunc_begin0 - .quad Lset16453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16454, Ltmp3329-Lfunc_begin0 - .quad Lset16454 -.set Lset16455, Ltmp3330-Lfunc_begin0 - .quad Lset16455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16456, Ltmp3375-Lfunc_begin0 - .quad Lset16456 -.set Lset16457, Ltmp3376-Lfunc_begin0 - .quad Lset16457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16458, Ltmp3407-Lfunc_begin0 - .quad Lset16458 -.set Lset16459, Ltmp3408-Lfunc_begin0 - .quad Lset16459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16460, Ltmp3435-Lfunc_begin0 - .quad Lset16460 -.set Lset16461, Ltmp3436-Lfunc_begin0 - .quad Lset16461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16462, Ltmp3537-Lfunc_begin0 - .quad Lset16462 -.set Lset16463, Ltmp3538-Lfunc_begin0 - .quad Lset16463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16464, Ltmp3638-Lfunc_begin0 - .quad Lset16464 -.set Lset16465, Ltmp3640-Lfunc_begin0 - .quad Lset16465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16466, Ltmp3685-Lfunc_begin0 - .quad Lset16466 -.set Lset16467, Ltmp3686-Lfunc_begin0 - .quad Lset16467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16468, Ltmp3807-Lfunc_begin0 - .quad Lset16468 -.set Lset16469, Ltmp3809-Lfunc_begin0 - .quad Lset16469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16470, Ltmp3864-Lfunc_begin0 - .quad Lset16470 -.set Lset16471, Ltmp3865-Lfunc_begin0 - .quad Lset16471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16472, Ltmp3933-Lfunc_begin0 - .quad Lset16472 -.set Lset16473, Ltmp3934-Lfunc_begin0 - .quad Lset16473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16474, Ltmp3959-Lfunc_begin0 - .quad Lset16474 -.set Lset16475, Ltmp3960-Lfunc_begin0 - .quad Lset16475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16476, Ltmp3985-Lfunc_begin0 - .quad Lset16476 -.set Lset16477, Ltmp3986-Lfunc_begin0 - .quad Lset16477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16478, Ltmp4011-Lfunc_begin0 - .quad Lset16478 -.set Lset16479, Ltmp4012-Lfunc_begin0 - .quad Lset16479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16480, Ltmp4046-Lfunc_begin0 - .quad Lset16480 -.set Lset16481, Ltmp4047-Lfunc_begin0 - .quad Lset16481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16482, Ltmp4084-Lfunc_begin0 - .quad Lset16482 -.set Lset16483, Ltmp4085-Lfunc_begin0 - .quad Lset16483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16484, Ltmp4106-Lfunc_begin0 - .quad Lset16484 -.set Lset16485, Ltmp4107-Lfunc_begin0 - .quad Lset16485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16486, Ltmp4146-Lfunc_begin0 - .quad Lset16486 -.set Lset16487, Ltmp4147-Lfunc_begin0 - .quad Lset16487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16488, Ltmp4187-Lfunc_begin0 - .quad Lset16488 -.set Lset16489, Ltmp4188-Lfunc_begin0 - .quad Lset16489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16490, Ltmp4227-Lfunc_begin0 - .quad Lset16490 -.set Lset16491, Ltmp4228-Lfunc_begin0 - .quad Lset16491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16492, Ltmp4268-Lfunc_begin0 - .quad Lset16492 -.set Lset16493, Ltmp4269-Lfunc_begin0 - .quad Lset16493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16494, Ltmp4308-Lfunc_begin0 - .quad Lset16494 -.set Lset16495, Ltmp4309-Lfunc_begin0 - .quad Lset16495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16496, Ltmp4349-Lfunc_begin0 - .quad Lset16496 -.set Lset16497, Ltmp4350-Lfunc_begin0 - .quad Lset16497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16498, Ltmp4380-Lfunc_begin0 - .quad Lset16498 -.set Lset16499, Ltmp4381-Lfunc_begin0 - .quad Lset16499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16500, Ltmp4412-Lfunc_begin0 - .quad Lset16500 -.set Lset16501, Ltmp4414-Lfunc_begin0 - .quad Lset16501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16502, Ltmp4454-Lfunc_begin0 - .quad Lset16502 -.set Lset16503, Ltmp4455-Lfunc_begin0 - .quad Lset16503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16504, Ltmp4495-Lfunc_begin0 - .quad Lset16504 -.set Lset16505, Ltmp4496-Lfunc_begin0 - .quad Lset16505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16506, Ltmp4579-Lfunc_begin0 - .quad Lset16506 -.set Lset16507, Ltmp4581-Lfunc_begin0 - .quad Lset16507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16508, Ltmp4649-Lfunc_begin0 - .quad Lset16508 -.set Lset16509, Ltmp4651-Lfunc_begin0 - .quad Lset16509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16510, Ltmp4717-Lfunc_begin0 - .quad Lset16510 -.set Lset16511, Ltmp4719-Lfunc_begin0 - .quad Lset16511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16512, Ltmp4783-Lfunc_begin0 - .quad Lset16512 -.set Lset16513, Ltmp4784-Lfunc_begin0 - .quad Lset16513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16514, Ltmp4813-Lfunc_begin0 - .quad Lset16514 -.set Lset16515, Ltmp4814-Lfunc_begin0 - .quad Lset16515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16516, Ltmp4843-Lfunc_begin0 - .quad Lset16516 -.set Lset16517, Ltmp4844-Lfunc_begin0 - .quad Lset16517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16518, Ltmp4902-Lfunc_begin0 - .quad Lset16518 -.set Lset16519, Ltmp4903-Lfunc_begin0 - .quad Lset16519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16520, Ltmp4943-Lfunc_begin0 - .quad Lset16520 -.set Lset16521, Ltmp4944-Lfunc_begin0 - .quad Lset16521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16522, Ltmp5000-Lfunc_begin0 - .quad Lset16522 -.set Lset16523, Ltmp5001-Lfunc_begin0 - .quad Lset16523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16524, Ltmp5040-Lfunc_begin0 - .quad Lset16524 -.set Lset16525, Ltmp5041-Lfunc_begin0 - .quad Lset16525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16526, Ltmp5078-Lfunc_begin0 - .quad Lset16526 -.set Lset16527, Ltmp5079-Lfunc_begin0 - .quad Lset16527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16528, Ltmp5114-Lfunc_begin0 - .quad Lset16528 -.set Lset16529, Ltmp5115-Lfunc_begin0 - .quad Lset16529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16530, Ltmp5146-Lfunc_begin0 - .quad Lset16530 -.set Lset16531, Ltmp5147-Lfunc_begin0 - .quad Lset16531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16532, Ltmp5178-Lfunc_begin0 - .quad Lset16532 -.set Lset16533, Ltmp5179-Lfunc_begin0 - .quad Lset16533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16534, Ltmp5210-Lfunc_begin0 - .quad Lset16534 -.set Lset16535, Ltmp5211-Lfunc_begin0 - .quad Lset16535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16536, Ltmp5228-Lfunc_begin0 - .quad Lset16536 -.set Lset16537, Ltmp5229-Lfunc_begin0 - .quad Lset16537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16538, Ltmp5246-Lfunc_begin0 - .quad Lset16538 -.set Lset16539, Ltmp5247-Lfunc_begin0 - .quad Lset16539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16540, Ltmp5271-Lfunc_begin0 - .quad Lset16540 -.set Lset16541, Ltmp5272-Lfunc_begin0 - .quad Lset16541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16542, Ltmp5296-Lfunc_begin0 - .quad Lset16542 -.set Lset16543, Ltmp5297-Lfunc_begin0 - .quad Lset16543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16544, Ltmp5322-Lfunc_begin0 - .quad Lset16544 -.set Lset16545, Ltmp5323-Lfunc_begin0 - .quad Lset16545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16546, Ltmp5347-Lfunc_begin0 - .quad Lset16546 -.set Lset16547, Ltmp5348-Lfunc_begin0 - .quad Lset16547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16548, Ltmp5372-Lfunc_begin0 - .quad Lset16548 -.set Lset16549, Ltmp5373-Lfunc_begin0 - .quad Lset16549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16550, Ltmp5397-Lfunc_begin0 - .quad Lset16550 -.set Lset16551, Ltmp5398-Lfunc_begin0 - .quad Lset16551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16552, Ltmp5422-Lfunc_begin0 - .quad Lset16552 -.set Lset16553, Ltmp5423-Lfunc_begin0 - .quad Lset16553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16554, Ltmp5447-Lfunc_begin0 - .quad Lset16554 -.set Lset16555, Ltmp5448-Lfunc_begin0 - .quad Lset16555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16556, Ltmp5472-Lfunc_begin0 - .quad Lset16556 -.set Lset16557, Ltmp5473-Lfunc_begin0 - .quad Lset16557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16558, Ltmp5498-Lfunc_begin0 - .quad Lset16558 -.set Lset16559, Ltmp5499-Lfunc_begin0 - .quad Lset16559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16560, Ltmp5523-Lfunc_begin0 - .quad Lset16560 -.set Lset16561, Ltmp5524-Lfunc_begin0 - .quad Lset16561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16562, Ltmp5548-Lfunc_begin0 - .quad Lset16562 -.set Lset16563, Ltmp5549-Lfunc_begin0 - .quad Lset16563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16564, Ltmp5573-Lfunc_begin0 - .quad Lset16564 -.set Lset16565, Ltmp5574-Lfunc_begin0 - .quad Lset16565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16566, Ltmp5598-Lfunc_begin0 - .quad Lset16566 -.set Lset16567, Ltmp5599-Lfunc_begin0 - .quad Lset16567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16568, Ltmp5631-Lfunc_begin0 - .quad Lset16568 -.set Lset16569, Ltmp5632-Lfunc_begin0 - .quad Lset16569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16570, Ltmp5662-Lfunc_begin0 - .quad Lset16570 -.set Lset16571, Ltmp5663-Lfunc_begin0 - .quad Lset16571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16572, Ltmp5687-Lfunc_begin0 - .quad Lset16572 -.set Lset16573, Ltmp5688-Lfunc_begin0 - .quad Lset16573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16574, Ltmp5712-Lfunc_begin0 - .quad Lset16574 -.set Lset16575, Ltmp5713-Lfunc_begin0 - .quad Lset16575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16576, Ltmp5737-Lfunc_begin0 - .quad Lset16576 -.set Lset16577, Ltmp5738-Lfunc_begin0 - .quad Lset16577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16578, Ltmp5767-Lfunc_begin0 - .quad Lset16578 -.set Lset16579, Ltmp5768-Lfunc_begin0 - .quad Lset16579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16580, Ltmp5795-Lfunc_begin0 - .quad Lset16580 -.set Lset16581, Ltmp5796-Lfunc_begin0 - .quad Lset16581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16582, Ltmp5814-Lfunc_begin0 - .quad Lset16582 -.set Lset16583, Ltmp5815-Lfunc_begin0 - .quad Lset16583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16584, Ltmp5833-Lfunc_begin0 - .quad Lset16584 -.set Lset16585, Ltmp5834-Lfunc_begin0 - .quad Lset16585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16586, Ltmp5852-Lfunc_begin0 - .quad Lset16586 -.set Lset16587, Ltmp5853-Lfunc_begin0 - .quad Lset16587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16588, Ltmp5871-Lfunc_begin0 - .quad Lset16588 -.set Lset16589, Ltmp5872-Lfunc_begin0 - .quad Lset16589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16590, Ltmp5890-Lfunc_begin0 - .quad Lset16590 -.set Lset16591, Ltmp5891-Lfunc_begin0 - .quad Lset16591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16592, Ltmp5920-Lfunc_begin0 - .quad Lset16592 -.set Lset16593, Ltmp5921-Lfunc_begin0 - .quad Lset16593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc246: -.set Lset16594, Ltmp1186-Lfunc_begin0 - .quad Lset16594 -.set Lset16595, Ltmp1187-Lfunc_begin0 - .quad Lset16595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16596, Ltmp1215-Lfunc_begin0 - .quad Lset16596 -.set Lset16597, Ltmp1216-Lfunc_begin0 - .quad Lset16597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16598, Ltmp1237-Lfunc_begin0 - .quad Lset16598 -.set Lset16599, Ltmp1238-Lfunc_begin0 - .quad Lset16599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16600, Ltmp1260-Lfunc_begin0 - .quad Lset16600 -.set Lset16601, Ltmp1261-Lfunc_begin0 - .quad Lset16601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16602, Ltmp1281-Lfunc_begin0 - .quad Lset16602 -.set Lset16603, Ltmp1282-Lfunc_begin0 - .quad Lset16603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16604, Ltmp1314-Lfunc_begin0 - .quad Lset16604 -.set Lset16605, Ltmp1315-Lfunc_begin0 - .quad Lset16605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16606, Ltmp1338-Lfunc_begin0 - .quad Lset16606 -.set Lset16607, Ltmp1339-Lfunc_begin0 - .quad Lset16607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16608, Ltmp1368-Lfunc_begin0 - .quad Lset16608 -.set Lset16609, Ltmp1369-Lfunc_begin0 - .quad Lset16609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16610, Ltmp1462-Lfunc_begin0 - .quad Lset16610 -.set Lset16611, Ltmp1464-Lfunc_begin0 - .quad Lset16611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16612, Ltmp1557-Lfunc_begin0 - .quad Lset16612 -.set Lset16613, Ltmp1559-Lfunc_begin0 - .quad Lset16613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16614, Ltmp1713-Lfunc_begin0 - .quad Lset16614 -.set Lset16615, Ltmp1715-Lfunc_begin0 - .quad Lset16615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16616, Ltmp1864-Lfunc_begin0 - .quad Lset16616 -.set Lset16617, Ltmp1866-Lfunc_begin0 - .quad Lset16617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16618, Ltmp2004-Lfunc_begin0 - .quad Lset16618 -.set Lset16619, Ltmp2006-Lfunc_begin0 - .quad Lset16619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16620, Ltmp2074-Lfunc_begin0 - .quad Lset16620 -.set Lset16621, Ltmp2076-Lfunc_begin0 - .quad Lset16621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16622, Ltmp2120-Lfunc_begin0 - .quad Lset16622 -.set Lset16623, Ltmp2121-Lfunc_begin0 - .quad Lset16623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16624, Ltmp2193-Lfunc_begin0 - .quad Lset16624 -.set Lset16625, Ltmp2195-Lfunc_begin0 - .quad Lset16625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16626, Ltmp2253-Lfunc_begin0 - .quad Lset16626 -.set Lset16627, Ltmp2255-Lfunc_begin0 - .quad Lset16627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16628, Ltmp2302-Lfunc_begin0 - .quad Lset16628 -.set Lset16629, Ltmp2304-Lfunc_begin0 - .quad Lset16629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16630, Ltmp2351-Lfunc_begin0 - .quad Lset16630 -.set Lset16631, Ltmp2353-Lfunc_begin0 - .quad Lset16631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16632, Ltmp2400-Lfunc_begin0 - .quad Lset16632 -.set Lset16633, Ltmp2402-Lfunc_begin0 - .quad Lset16633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16634, Ltmp2444-Lfunc_begin0 - .quad Lset16634 -.set Lset16635, Ltmp2446-Lfunc_begin0 - .quad Lset16635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16636, Ltmp2499-Lfunc_begin0 - .quad Lset16636 -.set Lset16637, Ltmp2501-Lfunc_begin0 - .quad Lset16637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16638, Ltmp2554-Lfunc_begin0 - .quad Lset16638 -.set Lset16639, Ltmp2556-Lfunc_begin0 - .quad Lset16639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16640, Ltmp2609-Lfunc_begin0 - .quad Lset16640 -.set Lset16641, Ltmp2611-Lfunc_begin0 - .quad Lset16641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16642, Ltmp2673-Lfunc_begin0 - .quad Lset16642 -.set Lset16643, Ltmp2675-Lfunc_begin0 - .quad Lset16643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16644, Ltmp2738-Lfunc_begin0 - .quad Lset16644 -.set Lset16645, Ltmp2740-Lfunc_begin0 - .quad Lset16645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16646, Ltmp2811-Lfunc_begin0 - .quad Lset16646 -.set Lset16647, Ltmp2813-Lfunc_begin0 - .quad Lset16647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16648, Ltmp2871-Lfunc_begin0 - .quad Lset16648 -.set Lset16649, Ltmp2873-Lfunc_begin0 - .quad Lset16649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16650, Ltmp2922-Lfunc_begin0 - .quad Lset16650 -.set Lset16651, Ltmp2924-Lfunc_begin0 - .quad Lset16651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16652, Ltmp2957-Lfunc_begin0 - .quad Lset16652 -.set Lset16653, Ltmp2958-Lfunc_begin0 - .quad Lset16653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16654, Ltmp2997-Lfunc_begin0 - .quad Lset16654 -.set Lset16655, Ltmp2999-Lfunc_begin0 - .quad Lset16655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16656, Ltmp3024-Lfunc_begin0 - .quad Lset16656 -.set Lset16657, Ltmp3025-Lfunc_begin0 - .quad Lset16657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16658, Ltmp3047-Lfunc_begin0 - .quad Lset16658 -.set Lset16659, Ltmp3048-Lfunc_begin0 - .quad Lset16659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16660, Ltmp3096-Lfunc_begin0 - .quad Lset16660 -.set Lset16661, Ltmp3097-Lfunc_begin0 - .quad Lset16661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16662, Ltmp3120-Lfunc_begin0 - .quad Lset16662 -.set Lset16663, Ltmp3122-Lfunc_begin0 - .quad Lset16663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16664, Ltmp3161-Lfunc_begin0 - .quad Lset16664 -.set Lset16665, Ltmp3163-Lfunc_begin0 - .quad Lset16665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16666, Ltmp3227-Lfunc_begin0 - .quad Lset16666 -.set Lset16667, Ltmp3228-Lfunc_begin0 - .quad Lset16667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16668, Ltmp3292-Lfunc_begin0 - .quad Lset16668 -.set Lset16669, Ltmp3293-Lfunc_begin0 - .quad Lset16669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16670, Ltmp3329-Lfunc_begin0 - .quad Lset16670 -.set Lset16671, Ltmp3330-Lfunc_begin0 - .quad Lset16671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16672, Ltmp3375-Lfunc_begin0 - .quad Lset16672 -.set Lset16673, Ltmp3376-Lfunc_begin0 - .quad Lset16673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16674, Ltmp3407-Lfunc_begin0 - .quad Lset16674 -.set Lset16675, Ltmp3408-Lfunc_begin0 - .quad Lset16675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16676, Ltmp3435-Lfunc_begin0 - .quad Lset16676 -.set Lset16677, Ltmp3436-Lfunc_begin0 - .quad Lset16677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16678, Ltmp3537-Lfunc_begin0 - .quad Lset16678 -.set Lset16679, Ltmp3538-Lfunc_begin0 - .quad Lset16679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16680, Ltmp3638-Lfunc_begin0 - .quad Lset16680 -.set Lset16681, Ltmp3640-Lfunc_begin0 - .quad Lset16681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16682, Ltmp3685-Lfunc_begin0 - .quad Lset16682 -.set Lset16683, Ltmp3686-Lfunc_begin0 - .quad Lset16683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16684, Ltmp3807-Lfunc_begin0 - .quad Lset16684 -.set Lset16685, Ltmp3809-Lfunc_begin0 - .quad Lset16685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16686, Ltmp3864-Lfunc_begin0 - .quad Lset16686 -.set Lset16687, Ltmp3865-Lfunc_begin0 - .quad Lset16687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16688, Ltmp3933-Lfunc_begin0 - .quad Lset16688 -.set Lset16689, Ltmp3934-Lfunc_begin0 - .quad Lset16689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16690, Ltmp3959-Lfunc_begin0 - .quad Lset16690 -.set Lset16691, Ltmp3960-Lfunc_begin0 - .quad Lset16691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16692, Ltmp3985-Lfunc_begin0 - .quad Lset16692 -.set Lset16693, Ltmp3986-Lfunc_begin0 - .quad Lset16693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16694, Ltmp4011-Lfunc_begin0 - .quad Lset16694 -.set Lset16695, Ltmp4012-Lfunc_begin0 - .quad Lset16695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16696, Ltmp4046-Lfunc_begin0 - .quad Lset16696 -.set Lset16697, Ltmp4047-Lfunc_begin0 - .quad Lset16697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16698, Ltmp4084-Lfunc_begin0 - .quad Lset16698 -.set Lset16699, Ltmp4085-Lfunc_begin0 - .quad Lset16699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16700, Ltmp4106-Lfunc_begin0 - .quad Lset16700 -.set Lset16701, Ltmp4107-Lfunc_begin0 - .quad Lset16701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16702, Ltmp4146-Lfunc_begin0 - .quad Lset16702 -.set Lset16703, Ltmp4147-Lfunc_begin0 - .quad Lset16703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16704, Ltmp4187-Lfunc_begin0 - .quad Lset16704 -.set Lset16705, Ltmp4188-Lfunc_begin0 - .quad Lset16705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16706, Ltmp4227-Lfunc_begin0 - .quad Lset16706 -.set Lset16707, Ltmp4228-Lfunc_begin0 - .quad Lset16707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16708, Ltmp4268-Lfunc_begin0 - .quad Lset16708 -.set Lset16709, Ltmp4269-Lfunc_begin0 - .quad Lset16709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16710, Ltmp4308-Lfunc_begin0 - .quad Lset16710 -.set Lset16711, Ltmp4309-Lfunc_begin0 - .quad Lset16711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16712, Ltmp4349-Lfunc_begin0 - .quad Lset16712 -.set Lset16713, Ltmp4350-Lfunc_begin0 - .quad Lset16713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16714, Ltmp4380-Lfunc_begin0 - .quad Lset16714 -.set Lset16715, Ltmp4411-Lfunc_begin0 - .quad Lset16715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16716, Ltmp4412-Lfunc_begin0 - .quad Lset16716 -.set Lset16717, Ltmp4414-Lfunc_begin0 - .quad Lset16717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16718, Ltmp4454-Lfunc_begin0 - .quad Lset16718 -.set Lset16719, Ltmp4455-Lfunc_begin0 - .quad Lset16719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16720, Ltmp4495-Lfunc_begin0 - .quad Lset16720 -.set Lset16721, Ltmp4496-Lfunc_begin0 - .quad Lset16721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16722, Ltmp4579-Lfunc_begin0 - .quad Lset16722 -.set Lset16723, Ltmp4581-Lfunc_begin0 - .quad Lset16723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16724, Ltmp4649-Lfunc_begin0 - .quad Lset16724 -.set Lset16725, Ltmp4651-Lfunc_begin0 - .quad Lset16725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16726, Ltmp4717-Lfunc_begin0 - .quad Lset16726 -.set Lset16727, Ltmp4719-Lfunc_begin0 - .quad Lset16727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16728, Ltmp4783-Lfunc_begin0 - .quad Lset16728 -.set Lset16729, Ltmp4784-Lfunc_begin0 - .quad Lset16729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16730, Ltmp4813-Lfunc_begin0 - .quad Lset16730 -.set Lset16731, Ltmp4814-Lfunc_begin0 - .quad Lset16731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16732, Ltmp4843-Lfunc_begin0 - .quad Lset16732 -.set Lset16733, Ltmp4844-Lfunc_begin0 - .quad Lset16733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16734, Ltmp4902-Lfunc_begin0 - .quad Lset16734 -.set Lset16735, Ltmp4903-Lfunc_begin0 - .quad Lset16735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16736, Ltmp4943-Lfunc_begin0 - .quad Lset16736 -.set Lset16737, Ltmp4944-Lfunc_begin0 - .quad Lset16737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16738, Ltmp5000-Lfunc_begin0 - .quad Lset16738 -.set Lset16739, Ltmp5001-Lfunc_begin0 - .quad Lset16739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16740, Ltmp5040-Lfunc_begin0 - .quad Lset16740 -.set Lset16741, Ltmp5041-Lfunc_begin0 - .quad Lset16741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16742, Ltmp5078-Lfunc_begin0 - .quad Lset16742 -.set Lset16743, Ltmp5079-Lfunc_begin0 - .quad Lset16743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16744, Ltmp5114-Lfunc_begin0 - .quad Lset16744 -.set Lset16745, Ltmp5115-Lfunc_begin0 - .quad Lset16745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16746, Ltmp5146-Lfunc_begin0 - .quad Lset16746 -.set Lset16747, Ltmp5147-Lfunc_begin0 - .quad Lset16747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16748, Ltmp5178-Lfunc_begin0 - .quad Lset16748 -.set Lset16749, Ltmp5179-Lfunc_begin0 - .quad Lset16749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16750, Ltmp5210-Lfunc_begin0 - .quad Lset16750 -.set Lset16751, Ltmp5211-Lfunc_begin0 - .quad Lset16751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16752, Ltmp5228-Lfunc_begin0 - .quad Lset16752 -.set Lset16753, Ltmp5229-Lfunc_begin0 - .quad Lset16753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16754, Ltmp5246-Lfunc_begin0 - .quad Lset16754 -.set Lset16755, Ltmp5247-Lfunc_begin0 - .quad Lset16755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16756, Ltmp5271-Lfunc_begin0 - .quad Lset16756 -.set Lset16757, Ltmp5272-Lfunc_begin0 - .quad Lset16757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16758, Ltmp5296-Lfunc_begin0 - .quad Lset16758 -.set Lset16759, Ltmp5297-Lfunc_begin0 - .quad Lset16759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16760, Ltmp5322-Lfunc_begin0 - .quad Lset16760 -.set Lset16761, Ltmp5323-Lfunc_begin0 - .quad Lset16761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16762, Ltmp5347-Lfunc_begin0 - .quad Lset16762 -.set Lset16763, Ltmp5348-Lfunc_begin0 - .quad Lset16763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16764, Ltmp5372-Lfunc_begin0 - .quad Lset16764 -.set Lset16765, Ltmp5373-Lfunc_begin0 - .quad Lset16765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16766, Ltmp5397-Lfunc_begin0 - .quad Lset16766 -.set Lset16767, Ltmp5398-Lfunc_begin0 - .quad Lset16767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16768, Ltmp5422-Lfunc_begin0 - .quad Lset16768 -.set Lset16769, Ltmp5423-Lfunc_begin0 - .quad Lset16769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16770, Ltmp5447-Lfunc_begin0 - .quad Lset16770 -.set Lset16771, Ltmp5448-Lfunc_begin0 - .quad Lset16771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16772, Ltmp5472-Lfunc_begin0 - .quad Lset16772 -.set Lset16773, Ltmp5473-Lfunc_begin0 - .quad Lset16773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16774, Ltmp5498-Lfunc_begin0 - .quad Lset16774 -.set Lset16775, Ltmp5499-Lfunc_begin0 - .quad Lset16775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16776, Ltmp5523-Lfunc_begin0 - .quad Lset16776 -.set Lset16777, Ltmp5524-Lfunc_begin0 - .quad Lset16777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16778, Ltmp5548-Lfunc_begin0 - .quad Lset16778 -.set Lset16779, Ltmp5549-Lfunc_begin0 - .quad Lset16779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16780, Ltmp5573-Lfunc_begin0 - .quad Lset16780 -.set Lset16781, Ltmp5574-Lfunc_begin0 - .quad Lset16781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16782, Ltmp5598-Lfunc_begin0 - .quad Lset16782 -.set Lset16783, Ltmp5599-Lfunc_begin0 - .quad Lset16783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16784, Ltmp5631-Lfunc_begin0 - .quad Lset16784 -.set Lset16785, Ltmp5632-Lfunc_begin0 - .quad Lset16785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16786, Ltmp5662-Lfunc_begin0 - .quad Lset16786 -.set Lset16787, Ltmp5663-Lfunc_begin0 - .quad Lset16787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16788, Ltmp5687-Lfunc_begin0 - .quad Lset16788 -.set Lset16789, Ltmp5688-Lfunc_begin0 - .quad Lset16789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16790, Ltmp5712-Lfunc_begin0 - .quad Lset16790 -.set Lset16791, Ltmp5713-Lfunc_begin0 - .quad Lset16791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16792, Ltmp5737-Lfunc_begin0 - .quad Lset16792 -.set Lset16793, Ltmp5738-Lfunc_begin0 - .quad Lset16793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16794, Ltmp5767-Lfunc_begin0 - .quad Lset16794 -.set Lset16795, Ltmp5768-Lfunc_begin0 - .quad Lset16795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16796, Ltmp5795-Lfunc_begin0 - .quad Lset16796 -.set Lset16797, Ltmp5796-Lfunc_begin0 - .quad Lset16797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16798, Ltmp5814-Lfunc_begin0 - .quad Lset16798 -.set Lset16799, Ltmp5815-Lfunc_begin0 - .quad Lset16799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16800, Ltmp5833-Lfunc_begin0 - .quad Lset16800 -.set Lset16801, Ltmp5834-Lfunc_begin0 - .quad Lset16801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16802, Ltmp5852-Lfunc_begin0 - .quad Lset16802 -.set Lset16803, Ltmp5853-Lfunc_begin0 - .quad Lset16803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16804, Ltmp5871-Lfunc_begin0 - .quad Lset16804 -.set Lset16805, Ltmp5872-Lfunc_begin0 - .quad Lset16805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16806, Ltmp5890-Lfunc_begin0 - .quad Lset16806 -.set Lset16807, Ltmp5891-Lfunc_begin0 - .quad Lset16807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16808, Ltmp5920-Lfunc_begin0 - .quad Lset16808 -.set Lset16809, Ltmp5921-Lfunc_begin0 - .quad Lset16809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16810, Ltmp6371-Lfunc_begin0 - .quad Lset16810 -.set Lset16811, Ltmp6376-Lfunc_begin0 - .quad Lset16811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc247: -.set Lset16812, Ltmp1186-Lfunc_begin0 - .quad Lset16812 -.set Lset16813, Ltmp1187-Lfunc_begin0 - .quad Lset16813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16814, Ltmp1215-Lfunc_begin0 - .quad Lset16814 -.set Lset16815, Ltmp1216-Lfunc_begin0 - .quad Lset16815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16816, Ltmp1237-Lfunc_begin0 - .quad Lset16816 -.set Lset16817, Ltmp1238-Lfunc_begin0 - .quad Lset16817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16818, Ltmp1260-Lfunc_begin0 - .quad Lset16818 -.set Lset16819, Ltmp1261-Lfunc_begin0 - .quad Lset16819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16820, Ltmp1281-Lfunc_begin0 - .quad Lset16820 -.set Lset16821, Ltmp1282-Lfunc_begin0 - .quad Lset16821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16822, Ltmp1314-Lfunc_begin0 - .quad Lset16822 -.set Lset16823, Ltmp1315-Lfunc_begin0 - .quad Lset16823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16824, Ltmp1338-Lfunc_begin0 - .quad Lset16824 -.set Lset16825, Ltmp1339-Lfunc_begin0 - .quad Lset16825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16826, Ltmp1368-Lfunc_begin0 - .quad Lset16826 -.set Lset16827, Ltmp1369-Lfunc_begin0 - .quad Lset16827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16828, Ltmp1462-Lfunc_begin0 - .quad Lset16828 -.set Lset16829, Ltmp1464-Lfunc_begin0 - .quad Lset16829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16830, Ltmp1557-Lfunc_begin0 - .quad Lset16830 -.set Lset16831, Ltmp1559-Lfunc_begin0 - .quad Lset16831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16832, Ltmp1713-Lfunc_begin0 - .quad Lset16832 -.set Lset16833, Ltmp1715-Lfunc_begin0 - .quad Lset16833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16834, Ltmp1864-Lfunc_begin0 - .quad Lset16834 -.set Lset16835, Ltmp1866-Lfunc_begin0 - .quad Lset16835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16836, Ltmp2004-Lfunc_begin0 - .quad Lset16836 -.set Lset16837, Ltmp2006-Lfunc_begin0 - .quad Lset16837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16838, Ltmp2074-Lfunc_begin0 - .quad Lset16838 -.set Lset16839, Ltmp2076-Lfunc_begin0 - .quad Lset16839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16840, Ltmp2120-Lfunc_begin0 - .quad Lset16840 -.set Lset16841, Ltmp2121-Lfunc_begin0 - .quad Lset16841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16842, Ltmp2193-Lfunc_begin0 - .quad Lset16842 -.set Lset16843, Ltmp2195-Lfunc_begin0 - .quad Lset16843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16844, Ltmp2253-Lfunc_begin0 - .quad Lset16844 -.set Lset16845, Ltmp2255-Lfunc_begin0 - .quad Lset16845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16846, Ltmp2302-Lfunc_begin0 - .quad Lset16846 -.set Lset16847, Ltmp2304-Lfunc_begin0 - .quad Lset16847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16848, Ltmp2351-Lfunc_begin0 - .quad Lset16848 -.set Lset16849, Ltmp2353-Lfunc_begin0 - .quad Lset16849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16850, Ltmp2400-Lfunc_begin0 - .quad Lset16850 -.set Lset16851, Ltmp2402-Lfunc_begin0 - .quad Lset16851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16852, Ltmp2444-Lfunc_begin0 - .quad Lset16852 -.set Lset16853, Ltmp2446-Lfunc_begin0 - .quad Lset16853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16854, Ltmp2499-Lfunc_begin0 - .quad Lset16854 -.set Lset16855, Ltmp2501-Lfunc_begin0 - .quad Lset16855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16856, Ltmp2554-Lfunc_begin0 - .quad Lset16856 -.set Lset16857, Ltmp2556-Lfunc_begin0 - .quad Lset16857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16858, Ltmp2609-Lfunc_begin0 - .quad Lset16858 -.set Lset16859, Ltmp2611-Lfunc_begin0 - .quad Lset16859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16860, Ltmp2673-Lfunc_begin0 - .quad Lset16860 -.set Lset16861, Ltmp2675-Lfunc_begin0 - .quad Lset16861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16862, Ltmp2738-Lfunc_begin0 - .quad Lset16862 -.set Lset16863, Ltmp2740-Lfunc_begin0 - .quad Lset16863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16864, Ltmp2811-Lfunc_begin0 - .quad Lset16864 -.set Lset16865, Ltmp2813-Lfunc_begin0 - .quad Lset16865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16866, Ltmp2871-Lfunc_begin0 - .quad Lset16866 -.set Lset16867, Ltmp2873-Lfunc_begin0 - .quad Lset16867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16868, Ltmp2922-Lfunc_begin0 - .quad Lset16868 -.set Lset16869, Ltmp2924-Lfunc_begin0 - .quad Lset16869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16870, Ltmp2957-Lfunc_begin0 - .quad Lset16870 -.set Lset16871, Ltmp2958-Lfunc_begin0 - .quad Lset16871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16872, Ltmp2997-Lfunc_begin0 - .quad Lset16872 -.set Lset16873, Ltmp2999-Lfunc_begin0 - .quad Lset16873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16874, Ltmp3024-Lfunc_begin0 - .quad Lset16874 -.set Lset16875, Ltmp3025-Lfunc_begin0 - .quad Lset16875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16876, Ltmp3047-Lfunc_begin0 - .quad Lset16876 -.set Lset16877, Ltmp3048-Lfunc_begin0 - .quad Lset16877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16878, Ltmp3096-Lfunc_begin0 - .quad Lset16878 -.set Lset16879, Ltmp3097-Lfunc_begin0 - .quad Lset16879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16880, Ltmp3120-Lfunc_begin0 - .quad Lset16880 -.set Lset16881, Ltmp3122-Lfunc_begin0 - .quad Lset16881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16882, Ltmp3161-Lfunc_begin0 - .quad Lset16882 -.set Lset16883, Ltmp3163-Lfunc_begin0 - .quad Lset16883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16884, Ltmp3227-Lfunc_begin0 - .quad Lset16884 -.set Lset16885, Ltmp3228-Lfunc_begin0 - .quad Lset16885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16886, Ltmp3292-Lfunc_begin0 - .quad Lset16886 -.set Lset16887, Ltmp3293-Lfunc_begin0 - .quad Lset16887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16888, Ltmp3329-Lfunc_begin0 - .quad Lset16888 -.set Lset16889, Ltmp3330-Lfunc_begin0 - .quad Lset16889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16890, Ltmp3375-Lfunc_begin0 - .quad Lset16890 -.set Lset16891, Ltmp3376-Lfunc_begin0 - .quad Lset16891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16892, Ltmp3407-Lfunc_begin0 - .quad Lset16892 -.set Lset16893, Ltmp3408-Lfunc_begin0 - .quad Lset16893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16894, Ltmp3435-Lfunc_begin0 - .quad Lset16894 -.set Lset16895, Ltmp3436-Lfunc_begin0 - .quad Lset16895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16896, Ltmp3537-Lfunc_begin0 - .quad Lset16896 -.set Lset16897, Ltmp3538-Lfunc_begin0 - .quad Lset16897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16898, Ltmp3638-Lfunc_begin0 - .quad Lset16898 -.set Lset16899, Ltmp3640-Lfunc_begin0 - .quad Lset16899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16900, Ltmp3685-Lfunc_begin0 - .quad Lset16900 -.set Lset16901, Ltmp3686-Lfunc_begin0 - .quad Lset16901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16902, Ltmp3807-Lfunc_begin0 - .quad Lset16902 -.set Lset16903, Ltmp3809-Lfunc_begin0 - .quad Lset16903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16904, Ltmp3864-Lfunc_begin0 - .quad Lset16904 -.set Lset16905, Ltmp3865-Lfunc_begin0 - .quad Lset16905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16906, Ltmp3933-Lfunc_begin0 - .quad Lset16906 -.set Lset16907, Ltmp3934-Lfunc_begin0 - .quad Lset16907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16908, Ltmp3959-Lfunc_begin0 - .quad Lset16908 -.set Lset16909, Ltmp3960-Lfunc_begin0 - .quad Lset16909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16910, Ltmp3985-Lfunc_begin0 - .quad Lset16910 -.set Lset16911, Ltmp3986-Lfunc_begin0 - .quad Lset16911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16912, Ltmp4011-Lfunc_begin0 - .quad Lset16912 -.set Lset16913, Ltmp4012-Lfunc_begin0 - .quad Lset16913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16914, Ltmp4046-Lfunc_begin0 - .quad Lset16914 -.set Lset16915, Ltmp4047-Lfunc_begin0 - .quad Lset16915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16916, Ltmp4084-Lfunc_begin0 - .quad Lset16916 -.set Lset16917, Ltmp4085-Lfunc_begin0 - .quad Lset16917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16918, Ltmp4106-Lfunc_begin0 - .quad Lset16918 -.set Lset16919, Ltmp4107-Lfunc_begin0 - .quad Lset16919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16920, Ltmp4146-Lfunc_begin0 - .quad Lset16920 -.set Lset16921, Ltmp4147-Lfunc_begin0 - .quad Lset16921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16922, Ltmp4187-Lfunc_begin0 - .quad Lset16922 -.set Lset16923, Ltmp4188-Lfunc_begin0 - .quad Lset16923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16924, Ltmp4227-Lfunc_begin0 - .quad Lset16924 -.set Lset16925, Ltmp4228-Lfunc_begin0 - .quad Lset16925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16926, Ltmp4268-Lfunc_begin0 - .quad Lset16926 -.set Lset16927, Ltmp4269-Lfunc_begin0 - .quad Lset16927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16928, Ltmp4308-Lfunc_begin0 - .quad Lset16928 -.set Lset16929, Ltmp4309-Lfunc_begin0 - .quad Lset16929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16930, Ltmp4349-Lfunc_begin0 - .quad Lset16930 -.set Lset16931, Ltmp4350-Lfunc_begin0 - .quad Lset16931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16932, Ltmp4380-Lfunc_begin0 - .quad Lset16932 -.set Lset16933, Ltmp4381-Lfunc_begin0 - .quad Lset16933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16934, Ltmp4412-Lfunc_begin0 - .quad Lset16934 -.set Lset16935, Ltmp4414-Lfunc_begin0 - .quad Lset16935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16936, Ltmp4454-Lfunc_begin0 - .quad Lset16936 -.set Lset16937, Ltmp4455-Lfunc_begin0 - .quad Lset16937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16938, Ltmp4495-Lfunc_begin0 - .quad Lset16938 -.set Lset16939, Ltmp4496-Lfunc_begin0 - .quad Lset16939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16940, Ltmp4579-Lfunc_begin0 - .quad Lset16940 -.set Lset16941, Ltmp4581-Lfunc_begin0 - .quad Lset16941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16942, Ltmp4649-Lfunc_begin0 - .quad Lset16942 -.set Lset16943, Ltmp4651-Lfunc_begin0 - .quad Lset16943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16944, Ltmp4717-Lfunc_begin0 - .quad Lset16944 -.set Lset16945, Ltmp4719-Lfunc_begin0 - .quad Lset16945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16946, Ltmp4783-Lfunc_begin0 - .quad Lset16946 -.set Lset16947, Ltmp4784-Lfunc_begin0 - .quad Lset16947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16948, Ltmp4813-Lfunc_begin0 - .quad Lset16948 -.set Lset16949, Ltmp4814-Lfunc_begin0 - .quad Lset16949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16950, Ltmp4843-Lfunc_begin0 - .quad Lset16950 -.set Lset16951, Ltmp4844-Lfunc_begin0 - .quad Lset16951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16952, Ltmp4902-Lfunc_begin0 - .quad Lset16952 -.set Lset16953, Ltmp4903-Lfunc_begin0 - .quad Lset16953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16954, Ltmp4943-Lfunc_begin0 - .quad Lset16954 -.set Lset16955, Ltmp4944-Lfunc_begin0 - .quad Lset16955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16956, Ltmp5000-Lfunc_begin0 - .quad Lset16956 -.set Lset16957, Ltmp5001-Lfunc_begin0 - .quad Lset16957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16958, Ltmp5040-Lfunc_begin0 - .quad Lset16958 -.set Lset16959, Ltmp5041-Lfunc_begin0 - .quad Lset16959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16960, Ltmp5078-Lfunc_begin0 - .quad Lset16960 -.set Lset16961, Ltmp5079-Lfunc_begin0 - .quad Lset16961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16962, Ltmp5114-Lfunc_begin0 - .quad Lset16962 -.set Lset16963, Ltmp5115-Lfunc_begin0 - .quad Lset16963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16964, Ltmp5146-Lfunc_begin0 - .quad Lset16964 -.set Lset16965, Ltmp5147-Lfunc_begin0 - .quad Lset16965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16966, Ltmp5178-Lfunc_begin0 - .quad Lset16966 -.set Lset16967, Ltmp5179-Lfunc_begin0 - .quad Lset16967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16968, Ltmp5210-Lfunc_begin0 - .quad Lset16968 -.set Lset16969, Ltmp5211-Lfunc_begin0 - .quad Lset16969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16970, Ltmp5228-Lfunc_begin0 - .quad Lset16970 -.set Lset16971, Ltmp5229-Lfunc_begin0 - .quad Lset16971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16972, Ltmp5246-Lfunc_begin0 - .quad Lset16972 -.set Lset16973, Ltmp5247-Lfunc_begin0 - .quad Lset16973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16974, Ltmp5271-Lfunc_begin0 - .quad Lset16974 -.set Lset16975, Ltmp5272-Lfunc_begin0 - .quad Lset16975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16976, Ltmp5296-Lfunc_begin0 - .quad Lset16976 -.set Lset16977, Ltmp5297-Lfunc_begin0 - .quad Lset16977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16978, Ltmp5322-Lfunc_begin0 - .quad Lset16978 -.set Lset16979, Ltmp5323-Lfunc_begin0 - .quad Lset16979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16980, Ltmp5347-Lfunc_begin0 - .quad Lset16980 -.set Lset16981, Ltmp5348-Lfunc_begin0 - .quad Lset16981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16982, Ltmp5372-Lfunc_begin0 - .quad Lset16982 -.set Lset16983, Ltmp5373-Lfunc_begin0 - .quad Lset16983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16984, Ltmp5397-Lfunc_begin0 - .quad Lset16984 -.set Lset16985, Ltmp5398-Lfunc_begin0 - .quad Lset16985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16986, Ltmp5422-Lfunc_begin0 - .quad Lset16986 -.set Lset16987, Ltmp5423-Lfunc_begin0 - .quad Lset16987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16988, Ltmp5447-Lfunc_begin0 - .quad Lset16988 -.set Lset16989, Ltmp5448-Lfunc_begin0 - .quad Lset16989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16990, Ltmp5472-Lfunc_begin0 - .quad Lset16990 -.set Lset16991, Ltmp5473-Lfunc_begin0 - .quad Lset16991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16992, Ltmp5498-Lfunc_begin0 - .quad Lset16992 -.set Lset16993, Ltmp5499-Lfunc_begin0 - .quad Lset16993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16994, Ltmp5523-Lfunc_begin0 - .quad Lset16994 -.set Lset16995, Ltmp5524-Lfunc_begin0 - .quad Lset16995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16996, Ltmp5548-Lfunc_begin0 - .quad Lset16996 -.set Lset16997, Ltmp5549-Lfunc_begin0 - .quad Lset16997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset16998, Ltmp5573-Lfunc_begin0 - .quad Lset16998 -.set Lset16999, Ltmp5574-Lfunc_begin0 - .quad Lset16999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17000, Ltmp5598-Lfunc_begin0 - .quad Lset17000 -.set Lset17001, Ltmp5599-Lfunc_begin0 - .quad Lset17001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17002, Ltmp5631-Lfunc_begin0 - .quad Lset17002 -.set Lset17003, Ltmp5632-Lfunc_begin0 - .quad Lset17003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17004, Ltmp5662-Lfunc_begin0 - .quad Lset17004 -.set Lset17005, Ltmp5663-Lfunc_begin0 - .quad Lset17005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17006, Ltmp5687-Lfunc_begin0 - .quad Lset17006 -.set Lset17007, Ltmp5688-Lfunc_begin0 - .quad Lset17007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17008, Ltmp5712-Lfunc_begin0 - .quad Lset17008 -.set Lset17009, Ltmp5713-Lfunc_begin0 - .quad Lset17009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17010, Ltmp5737-Lfunc_begin0 - .quad Lset17010 -.set Lset17011, Ltmp5738-Lfunc_begin0 - .quad Lset17011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17012, Ltmp5767-Lfunc_begin0 - .quad Lset17012 -.set Lset17013, Ltmp5768-Lfunc_begin0 - .quad Lset17013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17014, Ltmp5795-Lfunc_begin0 - .quad Lset17014 -.set Lset17015, Ltmp5796-Lfunc_begin0 - .quad Lset17015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17016, Ltmp5814-Lfunc_begin0 - .quad Lset17016 -.set Lset17017, Ltmp5815-Lfunc_begin0 - .quad Lset17017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17018, Ltmp5833-Lfunc_begin0 - .quad Lset17018 -.set Lset17019, Ltmp5834-Lfunc_begin0 - .quad Lset17019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17020, Ltmp5852-Lfunc_begin0 - .quad Lset17020 -.set Lset17021, Ltmp5853-Lfunc_begin0 - .quad Lset17021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17022, Ltmp5871-Lfunc_begin0 - .quad Lset17022 -.set Lset17023, Ltmp5872-Lfunc_begin0 - .quad Lset17023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17024, Ltmp5890-Lfunc_begin0 - .quad Lset17024 -.set Lset17025, Ltmp5891-Lfunc_begin0 - .quad Lset17025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17026, Ltmp5920-Lfunc_begin0 - .quad Lset17026 -.set Lset17027, Ltmp5921-Lfunc_begin0 - .quad Lset17027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc248: -.set Lset17028, Ltmp1186-Lfunc_begin0 - .quad Lset17028 -.set Lset17029, Ltmp1187-Lfunc_begin0 - .quad Lset17029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17030, Ltmp1215-Lfunc_begin0 - .quad Lset17030 -.set Lset17031, Ltmp1216-Lfunc_begin0 - .quad Lset17031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17032, Ltmp1237-Lfunc_begin0 - .quad Lset17032 -.set Lset17033, Ltmp1238-Lfunc_begin0 - .quad Lset17033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17034, Ltmp1260-Lfunc_begin0 - .quad Lset17034 -.set Lset17035, Ltmp1261-Lfunc_begin0 - .quad Lset17035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17036, Ltmp1281-Lfunc_begin0 - .quad Lset17036 -.set Lset17037, Ltmp1282-Lfunc_begin0 - .quad Lset17037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17038, Ltmp1314-Lfunc_begin0 - .quad Lset17038 -.set Lset17039, Ltmp1315-Lfunc_begin0 - .quad Lset17039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17040, Ltmp1338-Lfunc_begin0 - .quad Lset17040 -.set Lset17041, Ltmp1339-Lfunc_begin0 - .quad Lset17041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17042, Ltmp1368-Lfunc_begin0 - .quad Lset17042 -.set Lset17043, Ltmp1369-Lfunc_begin0 - .quad Lset17043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17044, Ltmp1462-Lfunc_begin0 - .quad Lset17044 -.set Lset17045, Ltmp1464-Lfunc_begin0 - .quad Lset17045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17046, Ltmp1557-Lfunc_begin0 - .quad Lset17046 -.set Lset17047, Ltmp1559-Lfunc_begin0 - .quad Lset17047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17048, Ltmp1713-Lfunc_begin0 - .quad Lset17048 -.set Lset17049, Ltmp1715-Lfunc_begin0 - .quad Lset17049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17050, Ltmp1864-Lfunc_begin0 - .quad Lset17050 -.set Lset17051, Ltmp1866-Lfunc_begin0 - .quad Lset17051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17052, Ltmp2004-Lfunc_begin0 - .quad Lset17052 -.set Lset17053, Ltmp2006-Lfunc_begin0 - .quad Lset17053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17054, Ltmp2074-Lfunc_begin0 - .quad Lset17054 -.set Lset17055, Ltmp2076-Lfunc_begin0 - .quad Lset17055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17056, Ltmp2120-Lfunc_begin0 - .quad Lset17056 -.set Lset17057, Ltmp2121-Lfunc_begin0 - .quad Lset17057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17058, Ltmp2193-Lfunc_begin0 - .quad Lset17058 -.set Lset17059, Ltmp2195-Lfunc_begin0 - .quad Lset17059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17060, Ltmp2253-Lfunc_begin0 - .quad Lset17060 -.set Lset17061, Ltmp2255-Lfunc_begin0 - .quad Lset17061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17062, Ltmp2302-Lfunc_begin0 - .quad Lset17062 -.set Lset17063, Ltmp2304-Lfunc_begin0 - .quad Lset17063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17064, Ltmp2351-Lfunc_begin0 - .quad Lset17064 -.set Lset17065, Ltmp2353-Lfunc_begin0 - .quad Lset17065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17066, Ltmp2400-Lfunc_begin0 - .quad Lset17066 -.set Lset17067, Ltmp2402-Lfunc_begin0 - .quad Lset17067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17068, Ltmp2444-Lfunc_begin0 - .quad Lset17068 -.set Lset17069, Ltmp2446-Lfunc_begin0 - .quad Lset17069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17070, Ltmp2499-Lfunc_begin0 - .quad Lset17070 -.set Lset17071, Ltmp2501-Lfunc_begin0 - .quad Lset17071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17072, Ltmp2554-Lfunc_begin0 - .quad Lset17072 -.set Lset17073, Ltmp2556-Lfunc_begin0 - .quad Lset17073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17074, Ltmp2609-Lfunc_begin0 - .quad Lset17074 -.set Lset17075, Ltmp2611-Lfunc_begin0 - .quad Lset17075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17076, Ltmp2673-Lfunc_begin0 - .quad Lset17076 -.set Lset17077, Ltmp2675-Lfunc_begin0 - .quad Lset17077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17078, Ltmp2738-Lfunc_begin0 - .quad Lset17078 -.set Lset17079, Ltmp2740-Lfunc_begin0 - .quad Lset17079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17080, Ltmp2811-Lfunc_begin0 - .quad Lset17080 -.set Lset17081, Ltmp2813-Lfunc_begin0 - .quad Lset17081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17082, Ltmp2871-Lfunc_begin0 - .quad Lset17082 -.set Lset17083, Ltmp2873-Lfunc_begin0 - .quad Lset17083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17084, Ltmp2922-Lfunc_begin0 - .quad Lset17084 -.set Lset17085, Ltmp2924-Lfunc_begin0 - .quad Lset17085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17086, Ltmp2957-Lfunc_begin0 - .quad Lset17086 -.set Lset17087, Ltmp2958-Lfunc_begin0 - .quad Lset17087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17088, Ltmp2997-Lfunc_begin0 - .quad Lset17088 -.set Lset17089, Ltmp2999-Lfunc_begin0 - .quad Lset17089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17090, Ltmp3024-Lfunc_begin0 - .quad Lset17090 -.set Lset17091, Ltmp3025-Lfunc_begin0 - .quad Lset17091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17092, Ltmp3047-Lfunc_begin0 - .quad Lset17092 -.set Lset17093, Ltmp3048-Lfunc_begin0 - .quad Lset17093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17094, Ltmp3096-Lfunc_begin0 - .quad Lset17094 -.set Lset17095, Ltmp3097-Lfunc_begin0 - .quad Lset17095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17096, Ltmp3120-Lfunc_begin0 - .quad Lset17096 -.set Lset17097, Ltmp3122-Lfunc_begin0 - .quad Lset17097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17098, Ltmp3161-Lfunc_begin0 - .quad Lset17098 -.set Lset17099, Ltmp3163-Lfunc_begin0 - .quad Lset17099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17100, Ltmp3227-Lfunc_begin0 - .quad Lset17100 -.set Lset17101, Ltmp3228-Lfunc_begin0 - .quad Lset17101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17102, Ltmp3292-Lfunc_begin0 - .quad Lset17102 -.set Lset17103, Ltmp3293-Lfunc_begin0 - .quad Lset17103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17104, Ltmp3329-Lfunc_begin0 - .quad Lset17104 -.set Lset17105, Ltmp3330-Lfunc_begin0 - .quad Lset17105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17106, Ltmp3375-Lfunc_begin0 - .quad Lset17106 -.set Lset17107, Ltmp3376-Lfunc_begin0 - .quad Lset17107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17108, Ltmp3407-Lfunc_begin0 - .quad Lset17108 -.set Lset17109, Ltmp3408-Lfunc_begin0 - .quad Lset17109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17110, Ltmp3435-Lfunc_begin0 - .quad Lset17110 -.set Lset17111, Ltmp3436-Lfunc_begin0 - .quad Lset17111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17112, Ltmp3537-Lfunc_begin0 - .quad Lset17112 -.set Lset17113, Ltmp3538-Lfunc_begin0 - .quad Lset17113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17114, Ltmp3638-Lfunc_begin0 - .quad Lset17114 -.set Lset17115, Ltmp3640-Lfunc_begin0 - .quad Lset17115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17116, Ltmp3685-Lfunc_begin0 - .quad Lset17116 -.set Lset17117, Ltmp3686-Lfunc_begin0 - .quad Lset17117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17118, Ltmp3807-Lfunc_begin0 - .quad Lset17118 -.set Lset17119, Ltmp3809-Lfunc_begin0 - .quad Lset17119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17120, Ltmp3864-Lfunc_begin0 - .quad Lset17120 -.set Lset17121, Ltmp3865-Lfunc_begin0 - .quad Lset17121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17122, Ltmp3933-Lfunc_begin0 - .quad Lset17122 -.set Lset17123, Ltmp3934-Lfunc_begin0 - .quad Lset17123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17124, Ltmp3959-Lfunc_begin0 - .quad Lset17124 -.set Lset17125, Ltmp3960-Lfunc_begin0 - .quad Lset17125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17126, Ltmp3985-Lfunc_begin0 - .quad Lset17126 -.set Lset17127, Ltmp3986-Lfunc_begin0 - .quad Lset17127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17128, Ltmp4011-Lfunc_begin0 - .quad Lset17128 -.set Lset17129, Ltmp4012-Lfunc_begin0 - .quad Lset17129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17130, Ltmp4046-Lfunc_begin0 - .quad Lset17130 -.set Lset17131, Ltmp4047-Lfunc_begin0 - .quad Lset17131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17132, Ltmp4084-Lfunc_begin0 - .quad Lset17132 -.set Lset17133, Ltmp4085-Lfunc_begin0 - .quad Lset17133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17134, Ltmp4106-Lfunc_begin0 - .quad Lset17134 -.set Lset17135, Ltmp4107-Lfunc_begin0 - .quad Lset17135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17136, Ltmp4146-Lfunc_begin0 - .quad Lset17136 -.set Lset17137, Ltmp4147-Lfunc_begin0 - .quad Lset17137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17138, Ltmp4187-Lfunc_begin0 - .quad Lset17138 -.set Lset17139, Ltmp4188-Lfunc_begin0 - .quad Lset17139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17140, Ltmp4227-Lfunc_begin0 - .quad Lset17140 -.set Lset17141, Ltmp4228-Lfunc_begin0 - .quad Lset17141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17142, Ltmp4268-Lfunc_begin0 - .quad Lset17142 -.set Lset17143, Ltmp4269-Lfunc_begin0 - .quad Lset17143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17144, Ltmp4308-Lfunc_begin0 - .quad Lset17144 -.set Lset17145, Ltmp4309-Lfunc_begin0 - .quad Lset17145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17146, Ltmp4349-Lfunc_begin0 - .quad Lset17146 -.set Lset17147, Ltmp4350-Lfunc_begin0 - .quad Lset17147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17148, Ltmp4380-Lfunc_begin0 - .quad Lset17148 -.set Lset17149, Ltmp4381-Lfunc_begin0 - .quad Lset17149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17150, Ltmp4412-Lfunc_begin0 - .quad Lset17150 -.set Lset17151, Ltmp4414-Lfunc_begin0 - .quad Lset17151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17152, Ltmp4423-Lfunc_begin0 - .quad Lset17152 -.set Lset17153, Ltmp4437-Lfunc_begin0 - .quad Lset17153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17154, Ltmp4454-Lfunc_begin0 - .quad Lset17154 -.set Lset17155, Ltmp4455-Lfunc_begin0 - .quad Lset17155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17156, Ltmp4495-Lfunc_begin0 - .quad Lset17156 -.set Lset17157, Ltmp4496-Lfunc_begin0 - .quad Lset17157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17158, Ltmp4579-Lfunc_begin0 - .quad Lset17158 -.set Lset17159, Ltmp4581-Lfunc_begin0 - .quad Lset17159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17160, Ltmp4649-Lfunc_begin0 - .quad Lset17160 -.set Lset17161, Ltmp4651-Lfunc_begin0 - .quad Lset17161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17162, Ltmp4717-Lfunc_begin0 - .quad Lset17162 -.set Lset17163, Ltmp4719-Lfunc_begin0 - .quad Lset17163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17164, Ltmp4783-Lfunc_begin0 - .quad Lset17164 -.set Lset17165, Ltmp4784-Lfunc_begin0 - .quad Lset17165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17166, Ltmp4813-Lfunc_begin0 - .quad Lset17166 -.set Lset17167, Ltmp4814-Lfunc_begin0 - .quad Lset17167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17168, Ltmp4843-Lfunc_begin0 - .quad Lset17168 -.set Lset17169, Ltmp4844-Lfunc_begin0 - .quad Lset17169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17170, Ltmp4902-Lfunc_begin0 - .quad Lset17170 -.set Lset17171, Ltmp4903-Lfunc_begin0 - .quad Lset17171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17172, Ltmp4943-Lfunc_begin0 - .quad Lset17172 -.set Lset17173, Ltmp4944-Lfunc_begin0 - .quad Lset17173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17174, Ltmp5000-Lfunc_begin0 - .quad Lset17174 -.set Lset17175, Ltmp5001-Lfunc_begin0 - .quad Lset17175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17176, Ltmp5040-Lfunc_begin0 - .quad Lset17176 -.set Lset17177, Ltmp5041-Lfunc_begin0 - .quad Lset17177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17178, Ltmp5078-Lfunc_begin0 - .quad Lset17178 -.set Lset17179, Ltmp5079-Lfunc_begin0 - .quad Lset17179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17180, Ltmp5114-Lfunc_begin0 - .quad Lset17180 -.set Lset17181, Ltmp5115-Lfunc_begin0 - .quad Lset17181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17182, Ltmp5146-Lfunc_begin0 - .quad Lset17182 -.set Lset17183, Ltmp5147-Lfunc_begin0 - .quad Lset17183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17184, Ltmp5178-Lfunc_begin0 - .quad Lset17184 -.set Lset17185, Ltmp5179-Lfunc_begin0 - .quad Lset17185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17186, Ltmp5210-Lfunc_begin0 - .quad Lset17186 -.set Lset17187, Ltmp5211-Lfunc_begin0 - .quad Lset17187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17188, Ltmp5228-Lfunc_begin0 - .quad Lset17188 -.set Lset17189, Ltmp5229-Lfunc_begin0 - .quad Lset17189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17190, Ltmp5246-Lfunc_begin0 - .quad Lset17190 -.set Lset17191, Ltmp5247-Lfunc_begin0 - .quad Lset17191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17192, Ltmp5271-Lfunc_begin0 - .quad Lset17192 -.set Lset17193, Ltmp5272-Lfunc_begin0 - .quad Lset17193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17194, Ltmp5296-Lfunc_begin0 - .quad Lset17194 -.set Lset17195, Ltmp5297-Lfunc_begin0 - .quad Lset17195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17196, Ltmp5322-Lfunc_begin0 - .quad Lset17196 -.set Lset17197, Ltmp5323-Lfunc_begin0 - .quad Lset17197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17198, Ltmp5347-Lfunc_begin0 - .quad Lset17198 -.set Lset17199, Ltmp5348-Lfunc_begin0 - .quad Lset17199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17200, Ltmp5372-Lfunc_begin0 - .quad Lset17200 -.set Lset17201, Ltmp5373-Lfunc_begin0 - .quad Lset17201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17202, Ltmp5397-Lfunc_begin0 - .quad Lset17202 -.set Lset17203, Ltmp5398-Lfunc_begin0 - .quad Lset17203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17204, Ltmp5422-Lfunc_begin0 - .quad Lset17204 -.set Lset17205, Ltmp5423-Lfunc_begin0 - .quad Lset17205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17206, Ltmp5447-Lfunc_begin0 - .quad Lset17206 -.set Lset17207, Ltmp5448-Lfunc_begin0 - .quad Lset17207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17208, Ltmp5472-Lfunc_begin0 - .quad Lset17208 -.set Lset17209, Ltmp5473-Lfunc_begin0 - .quad Lset17209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17210, Ltmp5498-Lfunc_begin0 - .quad Lset17210 -.set Lset17211, Ltmp5499-Lfunc_begin0 - .quad Lset17211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17212, Ltmp5523-Lfunc_begin0 - .quad Lset17212 -.set Lset17213, Ltmp5524-Lfunc_begin0 - .quad Lset17213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17214, Ltmp5548-Lfunc_begin0 - .quad Lset17214 -.set Lset17215, Ltmp5549-Lfunc_begin0 - .quad Lset17215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17216, Ltmp5573-Lfunc_begin0 - .quad Lset17216 -.set Lset17217, Ltmp5574-Lfunc_begin0 - .quad Lset17217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17218, Ltmp5598-Lfunc_begin0 - .quad Lset17218 -.set Lset17219, Ltmp5599-Lfunc_begin0 - .quad Lset17219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17220, Ltmp5631-Lfunc_begin0 - .quad Lset17220 -.set Lset17221, Ltmp5632-Lfunc_begin0 - .quad Lset17221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17222, Ltmp5662-Lfunc_begin0 - .quad Lset17222 -.set Lset17223, Ltmp5663-Lfunc_begin0 - .quad Lset17223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17224, Ltmp5687-Lfunc_begin0 - .quad Lset17224 -.set Lset17225, Ltmp5688-Lfunc_begin0 - .quad Lset17225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17226, Ltmp5712-Lfunc_begin0 - .quad Lset17226 -.set Lset17227, Ltmp5713-Lfunc_begin0 - .quad Lset17227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17228, Ltmp5737-Lfunc_begin0 - .quad Lset17228 -.set Lset17229, Ltmp5738-Lfunc_begin0 - .quad Lset17229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17230, Ltmp5767-Lfunc_begin0 - .quad Lset17230 -.set Lset17231, Ltmp5768-Lfunc_begin0 - .quad Lset17231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17232, Ltmp5795-Lfunc_begin0 - .quad Lset17232 -.set Lset17233, Ltmp5796-Lfunc_begin0 - .quad Lset17233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17234, Ltmp5814-Lfunc_begin0 - .quad Lset17234 -.set Lset17235, Ltmp5815-Lfunc_begin0 - .quad Lset17235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17236, Ltmp5833-Lfunc_begin0 - .quad Lset17236 -.set Lset17237, Ltmp5834-Lfunc_begin0 - .quad Lset17237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17238, Ltmp5852-Lfunc_begin0 - .quad Lset17238 -.set Lset17239, Ltmp5853-Lfunc_begin0 - .quad Lset17239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17240, Ltmp5871-Lfunc_begin0 - .quad Lset17240 -.set Lset17241, Ltmp5872-Lfunc_begin0 - .quad Lset17241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17242, Ltmp5890-Lfunc_begin0 - .quad Lset17242 -.set Lset17243, Ltmp5891-Lfunc_begin0 - .quad Lset17243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17244, Ltmp5920-Lfunc_begin0 - .quad Lset17244 -.set Lset17245, Ltmp5921-Lfunc_begin0 - .quad Lset17245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17246, Ltmp5989-Lfunc_begin0 - .quad Lset17246 -.set Lset17247, Ltmp5990-Lfunc_begin0 - .quad Lset17247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17248, Ltmp6376-Lfunc_begin0 - .quad Lset17248 -.set Lset17249, Ltmp6377-Lfunc_begin0 - .quad Lset17249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc249: -.set Lset17250, Ltmp1186-Lfunc_begin0 - .quad Lset17250 -.set Lset17251, Ltmp1187-Lfunc_begin0 - .quad Lset17251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17252, Ltmp1215-Lfunc_begin0 - .quad Lset17252 -.set Lset17253, Ltmp1216-Lfunc_begin0 - .quad Lset17253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17254, Ltmp1237-Lfunc_begin0 - .quad Lset17254 -.set Lset17255, Ltmp1238-Lfunc_begin0 - .quad Lset17255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17256, Ltmp1260-Lfunc_begin0 - .quad Lset17256 -.set Lset17257, Ltmp1261-Lfunc_begin0 - .quad Lset17257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17258, Ltmp1281-Lfunc_begin0 - .quad Lset17258 -.set Lset17259, Ltmp1282-Lfunc_begin0 - .quad Lset17259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17260, Ltmp1314-Lfunc_begin0 - .quad Lset17260 -.set Lset17261, Ltmp1315-Lfunc_begin0 - .quad Lset17261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17262, Ltmp1338-Lfunc_begin0 - .quad Lset17262 -.set Lset17263, Ltmp1339-Lfunc_begin0 - .quad Lset17263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17264, Ltmp1368-Lfunc_begin0 - .quad Lset17264 -.set Lset17265, Ltmp1369-Lfunc_begin0 - .quad Lset17265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17266, Ltmp1462-Lfunc_begin0 - .quad Lset17266 -.set Lset17267, Ltmp1464-Lfunc_begin0 - .quad Lset17267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17268, Ltmp1557-Lfunc_begin0 - .quad Lset17268 -.set Lset17269, Ltmp1559-Lfunc_begin0 - .quad Lset17269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17270, Ltmp1713-Lfunc_begin0 - .quad Lset17270 -.set Lset17271, Ltmp1715-Lfunc_begin0 - .quad Lset17271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17272, Ltmp1864-Lfunc_begin0 - .quad Lset17272 -.set Lset17273, Ltmp1866-Lfunc_begin0 - .quad Lset17273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17274, Ltmp2004-Lfunc_begin0 - .quad Lset17274 -.set Lset17275, Ltmp2006-Lfunc_begin0 - .quad Lset17275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17276, Ltmp2074-Lfunc_begin0 - .quad Lset17276 -.set Lset17277, Ltmp2076-Lfunc_begin0 - .quad Lset17277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17278, Ltmp2120-Lfunc_begin0 - .quad Lset17278 -.set Lset17279, Ltmp2121-Lfunc_begin0 - .quad Lset17279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17280, Ltmp2193-Lfunc_begin0 - .quad Lset17280 -.set Lset17281, Ltmp2195-Lfunc_begin0 - .quad Lset17281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17282, Ltmp2253-Lfunc_begin0 - .quad Lset17282 -.set Lset17283, Ltmp2255-Lfunc_begin0 - .quad Lset17283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17284, Ltmp2302-Lfunc_begin0 - .quad Lset17284 -.set Lset17285, Ltmp2304-Lfunc_begin0 - .quad Lset17285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17286, Ltmp2351-Lfunc_begin0 - .quad Lset17286 -.set Lset17287, Ltmp2353-Lfunc_begin0 - .quad Lset17287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17288, Ltmp2400-Lfunc_begin0 - .quad Lset17288 -.set Lset17289, Ltmp2402-Lfunc_begin0 - .quad Lset17289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17290, Ltmp2444-Lfunc_begin0 - .quad Lset17290 -.set Lset17291, Ltmp2446-Lfunc_begin0 - .quad Lset17291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17292, Ltmp2499-Lfunc_begin0 - .quad Lset17292 -.set Lset17293, Ltmp2501-Lfunc_begin0 - .quad Lset17293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17294, Ltmp2554-Lfunc_begin0 - .quad Lset17294 -.set Lset17295, Ltmp2556-Lfunc_begin0 - .quad Lset17295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17296, Ltmp2609-Lfunc_begin0 - .quad Lset17296 -.set Lset17297, Ltmp2611-Lfunc_begin0 - .quad Lset17297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17298, Ltmp2673-Lfunc_begin0 - .quad Lset17298 -.set Lset17299, Ltmp2675-Lfunc_begin0 - .quad Lset17299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17300, Ltmp2738-Lfunc_begin0 - .quad Lset17300 -.set Lset17301, Ltmp2740-Lfunc_begin0 - .quad Lset17301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17302, Ltmp2811-Lfunc_begin0 - .quad Lset17302 -.set Lset17303, Ltmp2813-Lfunc_begin0 - .quad Lset17303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17304, Ltmp2871-Lfunc_begin0 - .quad Lset17304 -.set Lset17305, Ltmp2873-Lfunc_begin0 - .quad Lset17305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17306, Ltmp2922-Lfunc_begin0 - .quad Lset17306 -.set Lset17307, Ltmp2924-Lfunc_begin0 - .quad Lset17307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17308, Ltmp2957-Lfunc_begin0 - .quad Lset17308 -.set Lset17309, Ltmp2958-Lfunc_begin0 - .quad Lset17309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17310, Ltmp2997-Lfunc_begin0 - .quad Lset17310 -.set Lset17311, Ltmp2999-Lfunc_begin0 - .quad Lset17311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17312, Ltmp3024-Lfunc_begin0 - .quad Lset17312 -.set Lset17313, Ltmp3025-Lfunc_begin0 - .quad Lset17313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17314, Ltmp3047-Lfunc_begin0 - .quad Lset17314 -.set Lset17315, Ltmp3048-Lfunc_begin0 - .quad Lset17315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17316, Ltmp3096-Lfunc_begin0 - .quad Lset17316 -.set Lset17317, Ltmp3097-Lfunc_begin0 - .quad Lset17317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17318, Ltmp3120-Lfunc_begin0 - .quad Lset17318 -.set Lset17319, Ltmp3122-Lfunc_begin0 - .quad Lset17319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17320, Ltmp3161-Lfunc_begin0 - .quad Lset17320 -.set Lset17321, Ltmp3163-Lfunc_begin0 - .quad Lset17321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17322, Ltmp3227-Lfunc_begin0 - .quad Lset17322 -.set Lset17323, Ltmp3228-Lfunc_begin0 - .quad Lset17323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17324, Ltmp3292-Lfunc_begin0 - .quad Lset17324 -.set Lset17325, Ltmp3293-Lfunc_begin0 - .quad Lset17325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17326, Ltmp3329-Lfunc_begin0 - .quad Lset17326 -.set Lset17327, Ltmp3330-Lfunc_begin0 - .quad Lset17327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17328, Ltmp3375-Lfunc_begin0 - .quad Lset17328 -.set Lset17329, Ltmp3376-Lfunc_begin0 - .quad Lset17329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17330, Ltmp3407-Lfunc_begin0 - .quad Lset17330 -.set Lset17331, Ltmp3408-Lfunc_begin0 - .quad Lset17331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17332, Ltmp3435-Lfunc_begin0 - .quad Lset17332 -.set Lset17333, Ltmp3436-Lfunc_begin0 - .quad Lset17333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17334, Ltmp3537-Lfunc_begin0 - .quad Lset17334 -.set Lset17335, Ltmp3538-Lfunc_begin0 - .quad Lset17335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17336, Ltmp3638-Lfunc_begin0 - .quad Lset17336 -.set Lset17337, Ltmp3640-Lfunc_begin0 - .quad Lset17337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17338, Ltmp3685-Lfunc_begin0 - .quad Lset17338 -.set Lset17339, Ltmp3686-Lfunc_begin0 - .quad Lset17339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17340, Ltmp3807-Lfunc_begin0 - .quad Lset17340 -.set Lset17341, Ltmp3809-Lfunc_begin0 - .quad Lset17341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17342, Ltmp3864-Lfunc_begin0 - .quad Lset17342 -.set Lset17343, Ltmp3865-Lfunc_begin0 - .quad Lset17343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17344, Ltmp3933-Lfunc_begin0 - .quad Lset17344 -.set Lset17345, Ltmp3934-Lfunc_begin0 - .quad Lset17345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17346, Ltmp3959-Lfunc_begin0 - .quad Lset17346 -.set Lset17347, Ltmp3960-Lfunc_begin0 - .quad Lset17347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17348, Ltmp3985-Lfunc_begin0 - .quad Lset17348 -.set Lset17349, Ltmp3986-Lfunc_begin0 - .quad Lset17349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17350, Ltmp4011-Lfunc_begin0 - .quad Lset17350 -.set Lset17351, Ltmp4012-Lfunc_begin0 - .quad Lset17351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17352, Ltmp4046-Lfunc_begin0 - .quad Lset17352 -.set Lset17353, Ltmp4047-Lfunc_begin0 - .quad Lset17353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17354, Ltmp4084-Lfunc_begin0 - .quad Lset17354 -.set Lset17355, Ltmp4085-Lfunc_begin0 - .quad Lset17355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17356, Ltmp4106-Lfunc_begin0 - .quad Lset17356 -.set Lset17357, Ltmp4107-Lfunc_begin0 - .quad Lset17357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17358, Ltmp4146-Lfunc_begin0 - .quad Lset17358 -.set Lset17359, Ltmp4147-Lfunc_begin0 - .quad Lset17359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17360, Ltmp4187-Lfunc_begin0 - .quad Lset17360 -.set Lset17361, Ltmp4188-Lfunc_begin0 - .quad Lset17361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17362, Ltmp4227-Lfunc_begin0 - .quad Lset17362 -.set Lset17363, Ltmp4228-Lfunc_begin0 - .quad Lset17363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17364, Ltmp4268-Lfunc_begin0 - .quad Lset17364 -.set Lset17365, Ltmp4269-Lfunc_begin0 - .quad Lset17365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17366, Ltmp4308-Lfunc_begin0 - .quad Lset17366 -.set Lset17367, Ltmp4309-Lfunc_begin0 - .quad Lset17367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17368, Ltmp4349-Lfunc_begin0 - .quad Lset17368 -.set Lset17369, Ltmp4350-Lfunc_begin0 - .quad Lset17369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17370, Ltmp4380-Lfunc_begin0 - .quad Lset17370 -.set Lset17371, Ltmp4381-Lfunc_begin0 - .quad Lset17371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17372, Ltmp4412-Lfunc_begin0 - .quad Lset17372 -.set Lset17373, Ltmp4414-Lfunc_begin0 - .quad Lset17373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17374, Ltmp4454-Lfunc_begin0 - .quad Lset17374 -.set Lset17375, Ltmp4455-Lfunc_begin0 - .quad Lset17375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17376, Ltmp4464-Lfunc_begin0 - .quad Lset17376 -.set Lset17377, Ltmp4478-Lfunc_begin0 - .quad Lset17377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17378, Ltmp4495-Lfunc_begin0 - .quad Lset17378 -.set Lset17379, Ltmp4496-Lfunc_begin0 - .quad Lset17379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17380, Ltmp4579-Lfunc_begin0 - .quad Lset17380 -.set Lset17381, Ltmp4581-Lfunc_begin0 - .quad Lset17381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17382, Ltmp4649-Lfunc_begin0 - .quad Lset17382 -.set Lset17383, Ltmp4651-Lfunc_begin0 - .quad Lset17383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17384, Ltmp4717-Lfunc_begin0 - .quad Lset17384 -.set Lset17385, Ltmp4719-Lfunc_begin0 - .quad Lset17385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17386, Ltmp4783-Lfunc_begin0 - .quad Lset17386 -.set Lset17387, Ltmp4784-Lfunc_begin0 - .quad Lset17387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17388, Ltmp4813-Lfunc_begin0 - .quad Lset17388 -.set Lset17389, Ltmp4814-Lfunc_begin0 - .quad Lset17389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17390, Ltmp4843-Lfunc_begin0 - .quad Lset17390 -.set Lset17391, Ltmp4844-Lfunc_begin0 - .quad Lset17391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17392, Ltmp4902-Lfunc_begin0 - .quad Lset17392 -.set Lset17393, Ltmp4903-Lfunc_begin0 - .quad Lset17393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17394, Ltmp4943-Lfunc_begin0 - .quad Lset17394 -.set Lset17395, Ltmp4944-Lfunc_begin0 - .quad Lset17395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17396, Ltmp5000-Lfunc_begin0 - .quad Lset17396 -.set Lset17397, Ltmp5001-Lfunc_begin0 - .quad Lset17397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17398, Ltmp5040-Lfunc_begin0 - .quad Lset17398 -.set Lset17399, Ltmp5041-Lfunc_begin0 - .quad Lset17399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17400, Ltmp5078-Lfunc_begin0 - .quad Lset17400 -.set Lset17401, Ltmp5079-Lfunc_begin0 - .quad Lset17401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17402, Ltmp5114-Lfunc_begin0 - .quad Lset17402 -.set Lset17403, Ltmp5115-Lfunc_begin0 - .quad Lset17403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17404, Ltmp5146-Lfunc_begin0 - .quad Lset17404 -.set Lset17405, Ltmp5147-Lfunc_begin0 - .quad Lset17405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17406, Ltmp5178-Lfunc_begin0 - .quad Lset17406 -.set Lset17407, Ltmp5179-Lfunc_begin0 - .quad Lset17407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17408, Ltmp5210-Lfunc_begin0 - .quad Lset17408 -.set Lset17409, Ltmp5211-Lfunc_begin0 - .quad Lset17409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17410, Ltmp5228-Lfunc_begin0 - .quad Lset17410 -.set Lset17411, Ltmp5229-Lfunc_begin0 - .quad Lset17411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17412, Ltmp5246-Lfunc_begin0 - .quad Lset17412 -.set Lset17413, Ltmp5247-Lfunc_begin0 - .quad Lset17413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17414, Ltmp5271-Lfunc_begin0 - .quad Lset17414 -.set Lset17415, Ltmp5272-Lfunc_begin0 - .quad Lset17415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17416, Ltmp5296-Lfunc_begin0 - .quad Lset17416 -.set Lset17417, Ltmp5297-Lfunc_begin0 - .quad Lset17417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17418, Ltmp5322-Lfunc_begin0 - .quad Lset17418 -.set Lset17419, Ltmp5323-Lfunc_begin0 - .quad Lset17419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17420, Ltmp5347-Lfunc_begin0 - .quad Lset17420 -.set Lset17421, Ltmp5348-Lfunc_begin0 - .quad Lset17421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17422, Ltmp5372-Lfunc_begin0 - .quad Lset17422 -.set Lset17423, Ltmp5373-Lfunc_begin0 - .quad Lset17423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17424, Ltmp5397-Lfunc_begin0 - .quad Lset17424 -.set Lset17425, Ltmp5398-Lfunc_begin0 - .quad Lset17425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17426, Ltmp5422-Lfunc_begin0 - .quad Lset17426 -.set Lset17427, Ltmp5423-Lfunc_begin0 - .quad Lset17427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17428, Ltmp5447-Lfunc_begin0 - .quad Lset17428 -.set Lset17429, Ltmp5448-Lfunc_begin0 - .quad Lset17429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17430, Ltmp5472-Lfunc_begin0 - .quad Lset17430 -.set Lset17431, Ltmp5473-Lfunc_begin0 - .quad Lset17431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17432, Ltmp5498-Lfunc_begin0 - .quad Lset17432 -.set Lset17433, Ltmp5499-Lfunc_begin0 - .quad Lset17433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17434, Ltmp5523-Lfunc_begin0 - .quad Lset17434 -.set Lset17435, Ltmp5524-Lfunc_begin0 - .quad Lset17435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17436, Ltmp5548-Lfunc_begin0 - .quad Lset17436 -.set Lset17437, Ltmp5549-Lfunc_begin0 - .quad Lset17437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17438, Ltmp5573-Lfunc_begin0 - .quad Lset17438 -.set Lset17439, Ltmp5574-Lfunc_begin0 - .quad Lset17439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17440, Ltmp5598-Lfunc_begin0 - .quad Lset17440 -.set Lset17441, Ltmp5599-Lfunc_begin0 - .quad Lset17441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17442, Ltmp5631-Lfunc_begin0 - .quad Lset17442 -.set Lset17443, Ltmp5632-Lfunc_begin0 - .quad Lset17443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17444, Ltmp5662-Lfunc_begin0 - .quad Lset17444 -.set Lset17445, Ltmp5663-Lfunc_begin0 - .quad Lset17445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17446, Ltmp5687-Lfunc_begin0 - .quad Lset17446 -.set Lset17447, Ltmp5688-Lfunc_begin0 - .quad Lset17447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17448, Ltmp5712-Lfunc_begin0 - .quad Lset17448 -.set Lset17449, Ltmp5713-Lfunc_begin0 - .quad Lset17449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17450, Ltmp5737-Lfunc_begin0 - .quad Lset17450 -.set Lset17451, Ltmp5738-Lfunc_begin0 - .quad Lset17451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17452, Ltmp5767-Lfunc_begin0 - .quad Lset17452 -.set Lset17453, Ltmp5768-Lfunc_begin0 - .quad Lset17453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17454, Ltmp5795-Lfunc_begin0 - .quad Lset17454 -.set Lset17455, Ltmp5796-Lfunc_begin0 - .quad Lset17455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17456, Ltmp5814-Lfunc_begin0 - .quad Lset17456 -.set Lset17457, Ltmp5815-Lfunc_begin0 - .quad Lset17457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17458, Ltmp5833-Lfunc_begin0 - .quad Lset17458 -.set Lset17459, Ltmp5834-Lfunc_begin0 - .quad Lset17459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17460, Ltmp5852-Lfunc_begin0 - .quad Lset17460 -.set Lset17461, Ltmp5853-Lfunc_begin0 - .quad Lset17461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17462, Ltmp5871-Lfunc_begin0 - .quad Lset17462 -.set Lset17463, Ltmp5872-Lfunc_begin0 - .quad Lset17463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17464, Ltmp5890-Lfunc_begin0 - .quad Lset17464 -.set Lset17465, Ltmp5891-Lfunc_begin0 - .quad Lset17465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17466, Ltmp5920-Lfunc_begin0 - .quad Lset17466 -.set Lset17467, Ltmp5921-Lfunc_begin0 - .quad Lset17467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17468, Ltmp5990-Lfunc_begin0 - .quad Lset17468 -.set Lset17469, Ltmp5991-Lfunc_begin0 - .quad Lset17469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17470, Ltmp6379-Lfunc_begin0 - .quad Lset17470 -.set Lset17471, Ltmp6380-Lfunc_begin0 - .quad Lset17471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc250: -.set Lset17472, Ltmp1186-Lfunc_begin0 - .quad Lset17472 -.set Lset17473, Ltmp1187-Lfunc_begin0 - .quad Lset17473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17474, Ltmp1215-Lfunc_begin0 - .quad Lset17474 -.set Lset17475, Ltmp1216-Lfunc_begin0 - .quad Lset17475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17476, Ltmp1237-Lfunc_begin0 - .quad Lset17476 -.set Lset17477, Ltmp1238-Lfunc_begin0 - .quad Lset17477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17478, Ltmp1260-Lfunc_begin0 - .quad Lset17478 -.set Lset17479, Ltmp1261-Lfunc_begin0 - .quad Lset17479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17480, Ltmp1281-Lfunc_begin0 - .quad Lset17480 -.set Lset17481, Ltmp1282-Lfunc_begin0 - .quad Lset17481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17482, Ltmp1314-Lfunc_begin0 - .quad Lset17482 -.set Lset17483, Ltmp1315-Lfunc_begin0 - .quad Lset17483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17484, Ltmp1338-Lfunc_begin0 - .quad Lset17484 -.set Lset17485, Ltmp1339-Lfunc_begin0 - .quad Lset17485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17486, Ltmp1368-Lfunc_begin0 - .quad Lset17486 -.set Lset17487, Ltmp1369-Lfunc_begin0 - .quad Lset17487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17488, Ltmp1462-Lfunc_begin0 - .quad Lset17488 -.set Lset17489, Ltmp1464-Lfunc_begin0 - .quad Lset17489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17490, Ltmp1557-Lfunc_begin0 - .quad Lset17490 -.set Lset17491, Ltmp1559-Lfunc_begin0 - .quad Lset17491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17492, Ltmp1713-Lfunc_begin0 - .quad Lset17492 -.set Lset17493, Ltmp1715-Lfunc_begin0 - .quad Lset17493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17494, Ltmp1864-Lfunc_begin0 - .quad Lset17494 -.set Lset17495, Ltmp1866-Lfunc_begin0 - .quad Lset17495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17496, Ltmp2004-Lfunc_begin0 - .quad Lset17496 -.set Lset17497, Ltmp2006-Lfunc_begin0 - .quad Lset17497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17498, Ltmp2074-Lfunc_begin0 - .quad Lset17498 -.set Lset17499, Ltmp2076-Lfunc_begin0 - .quad Lset17499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17500, Ltmp2120-Lfunc_begin0 - .quad Lset17500 -.set Lset17501, Ltmp2121-Lfunc_begin0 - .quad Lset17501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17502, Ltmp2193-Lfunc_begin0 - .quad Lset17502 -.set Lset17503, Ltmp2195-Lfunc_begin0 - .quad Lset17503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17504, Ltmp2253-Lfunc_begin0 - .quad Lset17504 -.set Lset17505, Ltmp2255-Lfunc_begin0 - .quad Lset17505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17506, Ltmp2302-Lfunc_begin0 - .quad Lset17506 -.set Lset17507, Ltmp2304-Lfunc_begin0 - .quad Lset17507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17508, Ltmp2351-Lfunc_begin0 - .quad Lset17508 -.set Lset17509, Ltmp2353-Lfunc_begin0 - .quad Lset17509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17510, Ltmp2400-Lfunc_begin0 - .quad Lset17510 -.set Lset17511, Ltmp2402-Lfunc_begin0 - .quad Lset17511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17512, Ltmp2444-Lfunc_begin0 - .quad Lset17512 -.set Lset17513, Ltmp2446-Lfunc_begin0 - .quad Lset17513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17514, Ltmp2499-Lfunc_begin0 - .quad Lset17514 -.set Lset17515, Ltmp2501-Lfunc_begin0 - .quad Lset17515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17516, Ltmp2554-Lfunc_begin0 - .quad Lset17516 -.set Lset17517, Ltmp2556-Lfunc_begin0 - .quad Lset17517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17518, Ltmp2609-Lfunc_begin0 - .quad Lset17518 -.set Lset17519, Ltmp2611-Lfunc_begin0 - .quad Lset17519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17520, Ltmp2673-Lfunc_begin0 - .quad Lset17520 -.set Lset17521, Ltmp2675-Lfunc_begin0 - .quad Lset17521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17522, Ltmp2738-Lfunc_begin0 - .quad Lset17522 -.set Lset17523, Ltmp2740-Lfunc_begin0 - .quad Lset17523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17524, Ltmp2811-Lfunc_begin0 - .quad Lset17524 -.set Lset17525, Ltmp2813-Lfunc_begin0 - .quad Lset17525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17526, Ltmp2871-Lfunc_begin0 - .quad Lset17526 -.set Lset17527, Ltmp2873-Lfunc_begin0 - .quad Lset17527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17528, Ltmp2922-Lfunc_begin0 - .quad Lset17528 -.set Lset17529, Ltmp2924-Lfunc_begin0 - .quad Lset17529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17530, Ltmp2957-Lfunc_begin0 - .quad Lset17530 -.set Lset17531, Ltmp2958-Lfunc_begin0 - .quad Lset17531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17532, Ltmp2997-Lfunc_begin0 - .quad Lset17532 -.set Lset17533, Ltmp2999-Lfunc_begin0 - .quad Lset17533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17534, Ltmp3024-Lfunc_begin0 - .quad Lset17534 -.set Lset17535, Ltmp3025-Lfunc_begin0 - .quad Lset17535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17536, Ltmp3047-Lfunc_begin0 - .quad Lset17536 -.set Lset17537, Ltmp3048-Lfunc_begin0 - .quad Lset17537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17538, Ltmp3096-Lfunc_begin0 - .quad Lset17538 -.set Lset17539, Ltmp3097-Lfunc_begin0 - .quad Lset17539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17540, Ltmp3120-Lfunc_begin0 - .quad Lset17540 -.set Lset17541, Ltmp3122-Lfunc_begin0 - .quad Lset17541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17542, Ltmp3161-Lfunc_begin0 - .quad Lset17542 -.set Lset17543, Ltmp3163-Lfunc_begin0 - .quad Lset17543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17544, Ltmp3227-Lfunc_begin0 - .quad Lset17544 -.set Lset17545, Ltmp3228-Lfunc_begin0 - .quad Lset17545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17546, Ltmp3292-Lfunc_begin0 - .quad Lset17546 -.set Lset17547, Ltmp3293-Lfunc_begin0 - .quad Lset17547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17548, Ltmp3329-Lfunc_begin0 - .quad Lset17548 -.set Lset17549, Ltmp3330-Lfunc_begin0 - .quad Lset17549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17550, Ltmp3375-Lfunc_begin0 - .quad Lset17550 -.set Lset17551, Ltmp3376-Lfunc_begin0 - .quad Lset17551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17552, Ltmp3407-Lfunc_begin0 - .quad Lset17552 -.set Lset17553, Ltmp3408-Lfunc_begin0 - .quad Lset17553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17554, Ltmp3435-Lfunc_begin0 - .quad Lset17554 -.set Lset17555, Ltmp3436-Lfunc_begin0 - .quad Lset17555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17556, Ltmp3537-Lfunc_begin0 - .quad Lset17556 -.set Lset17557, Ltmp3538-Lfunc_begin0 - .quad Lset17557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17558, Ltmp3638-Lfunc_begin0 - .quad Lset17558 -.set Lset17559, Ltmp3640-Lfunc_begin0 - .quad Lset17559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17560, Ltmp3685-Lfunc_begin0 - .quad Lset17560 -.set Lset17561, Ltmp3686-Lfunc_begin0 - .quad Lset17561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17562, Ltmp3807-Lfunc_begin0 - .quad Lset17562 -.set Lset17563, Ltmp3809-Lfunc_begin0 - .quad Lset17563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17564, Ltmp3864-Lfunc_begin0 - .quad Lset17564 -.set Lset17565, Ltmp3865-Lfunc_begin0 - .quad Lset17565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17566, Ltmp3933-Lfunc_begin0 - .quad Lset17566 -.set Lset17567, Ltmp3934-Lfunc_begin0 - .quad Lset17567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17568, Ltmp3959-Lfunc_begin0 - .quad Lset17568 -.set Lset17569, Ltmp3960-Lfunc_begin0 - .quad Lset17569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17570, Ltmp3985-Lfunc_begin0 - .quad Lset17570 -.set Lset17571, Ltmp3986-Lfunc_begin0 - .quad Lset17571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17572, Ltmp4011-Lfunc_begin0 - .quad Lset17572 -.set Lset17573, Ltmp4012-Lfunc_begin0 - .quad Lset17573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17574, Ltmp4046-Lfunc_begin0 - .quad Lset17574 -.set Lset17575, Ltmp4047-Lfunc_begin0 - .quad Lset17575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17576, Ltmp4084-Lfunc_begin0 - .quad Lset17576 -.set Lset17577, Ltmp4085-Lfunc_begin0 - .quad Lset17577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17578, Ltmp4106-Lfunc_begin0 - .quad Lset17578 -.set Lset17579, Ltmp4107-Lfunc_begin0 - .quad Lset17579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17580, Ltmp4146-Lfunc_begin0 - .quad Lset17580 -.set Lset17581, Ltmp4147-Lfunc_begin0 - .quad Lset17581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17582, Ltmp4187-Lfunc_begin0 - .quad Lset17582 -.set Lset17583, Ltmp4188-Lfunc_begin0 - .quad Lset17583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17584, Ltmp4227-Lfunc_begin0 - .quad Lset17584 -.set Lset17585, Ltmp4228-Lfunc_begin0 - .quad Lset17585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17586, Ltmp4268-Lfunc_begin0 - .quad Lset17586 -.set Lset17587, Ltmp4269-Lfunc_begin0 - .quad Lset17587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17588, Ltmp4308-Lfunc_begin0 - .quad Lset17588 -.set Lset17589, Ltmp4309-Lfunc_begin0 - .quad Lset17589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17590, Ltmp4349-Lfunc_begin0 - .quad Lset17590 -.set Lset17591, Ltmp4350-Lfunc_begin0 - .quad Lset17591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17592, Ltmp4380-Lfunc_begin0 - .quad Lset17592 -.set Lset17593, Ltmp4381-Lfunc_begin0 - .quad Lset17593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17594, Ltmp4412-Lfunc_begin0 - .quad Lset17594 -.set Lset17595, Ltmp4414-Lfunc_begin0 - .quad Lset17595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17596, Ltmp4454-Lfunc_begin0 - .quad Lset17596 -.set Lset17597, Ltmp4455-Lfunc_begin0 - .quad Lset17597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17598, Ltmp4495-Lfunc_begin0 - .quad Lset17598 -.set Lset17599, Ltmp4496-Lfunc_begin0 - .quad Lset17599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17600, Ltmp4579-Lfunc_begin0 - .quad Lset17600 -.set Lset17601, Ltmp4581-Lfunc_begin0 - .quad Lset17601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17602, Ltmp4649-Lfunc_begin0 - .quad Lset17602 -.set Lset17603, Ltmp4651-Lfunc_begin0 - .quad Lset17603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17604, Ltmp4717-Lfunc_begin0 - .quad Lset17604 -.set Lset17605, Ltmp4719-Lfunc_begin0 - .quad Lset17605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17606, Ltmp4783-Lfunc_begin0 - .quad Lset17606 -.set Lset17607, Ltmp4784-Lfunc_begin0 - .quad Lset17607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17608, Ltmp4813-Lfunc_begin0 - .quad Lset17608 -.set Lset17609, Ltmp4814-Lfunc_begin0 - .quad Lset17609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17610, Ltmp4843-Lfunc_begin0 - .quad Lset17610 -.set Lset17611, Ltmp4844-Lfunc_begin0 - .quad Lset17611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17612, Ltmp4902-Lfunc_begin0 - .quad Lset17612 -.set Lset17613, Ltmp4903-Lfunc_begin0 - .quad Lset17613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17614, Ltmp4943-Lfunc_begin0 - .quad Lset17614 -.set Lset17615, Ltmp4944-Lfunc_begin0 - .quad Lset17615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17616, Ltmp5000-Lfunc_begin0 - .quad Lset17616 -.set Lset17617, Ltmp5001-Lfunc_begin0 - .quad Lset17617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17618, Ltmp5040-Lfunc_begin0 - .quad Lset17618 -.set Lset17619, Ltmp5041-Lfunc_begin0 - .quad Lset17619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17620, Ltmp5078-Lfunc_begin0 - .quad Lset17620 -.set Lset17621, Ltmp5079-Lfunc_begin0 - .quad Lset17621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17622, Ltmp5114-Lfunc_begin0 - .quad Lset17622 -.set Lset17623, Ltmp5115-Lfunc_begin0 - .quad Lset17623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17624, Ltmp5146-Lfunc_begin0 - .quad Lset17624 -.set Lset17625, Ltmp5147-Lfunc_begin0 - .quad Lset17625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17626, Ltmp5178-Lfunc_begin0 - .quad Lset17626 -.set Lset17627, Ltmp5179-Lfunc_begin0 - .quad Lset17627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17628, Ltmp5210-Lfunc_begin0 - .quad Lset17628 -.set Lset17629, Ltmp5211-Lfunc_begin0 - .quad Lset17629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17630, Ltmp5228-Lfunc_begin0 - .quad Lset17630 -.set Lset17631, Ltmp5229-Lfunc_begin0 - .quad Lset17631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17632, Ltmp5246-Lfunc_begin0 - .quad Lset17632 -.set Lset17633, Ltmp5247-Lfunc_begin0 - .quad Lset17633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17634, Ltmp5271-Lfunc_begin0 - .quad Lset17634 -.set Lset17635, Ltmp5272-Lfunc_begin0 - .quad Lset17635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17636, Ltmp5296-Lfunc_begin0 - .quad Lset17636 -.set Lset17637, Ltmp5297-Lfunc_begin0 - .quad Lset17637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17638, Ltmp5322-Lfunc_begin0 - .quad Lset17638 -.set Lset17639, Ltmp5323-Lfunc_begin0 - .quad Lset17639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17640, Ltmp5347-Lfunc_begin0 - .quad Lset17640 -.set Lset17641, Ltmp5348-Lfunc_begin0 - .quad Lset17641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17642, Ltmp5372-Lfunc_begin0 - .quad Lset17642 -.set Lset17643, Ltmp5373-Lfunc_begin0 - .quad Lset17643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17644, Ltmp5397-Lfunc_begin0 - .quad Lset17644 -.set Lset17645, Ltmp5398-Lfunc_begin0 - .quad Lset17645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17646, Ltmp5422-Lfunc_begin0 - .quad Lset17646 -.set Lset17647, Ltmp5423-Lfunc_begin0 - .quad Lset17647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17648, Ltmp5447-Lfunc_begin0 - .quad Lset17648 -.set Lset17649, Ltmp5448-Lfunc_begin0 - .quad Lset17649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17650, Ltmp5472-Lfunc_begin0 - .quad Lset17650 -.set Lset17651, Ltmp5473-Lfunc_begin0 - .quad Lset17651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17652, Ltmp5498-Lfunc_begin0 - .quad Lset17652 -.set Lset17653, Ltmp5499-Lfunc_begin0 - .quad Lset17653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17654, Ltmp5523-Lfunc_begin0 - .quad Lset17654 -.set Lset17655, Ltmp5524-Lfunc_begin0 - .quad Lset17655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17656, Ltmp5548-Lfunc_begin0 - .quad Lset17656 -.set Lset17657, Ltmp5549-Lfunc_begin0 - .quad Lset17657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17658, Ltmp5573-Lfunc_begin0 - .quad Lset17658 -.set Lset17659, Ltmp5574-Lfunc_begin0 - .quad Lset17659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17660, Ltmp5598-Lfunc_begin0 - .quad Lset17660 -.set Lset17661, Ltmp5599-Lfunc_begin0 - .quad Lset17661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17662, Ltmp5631-Lfunc_begin0 - .quad Lset17662 -.set Lset17663, Ltmp5632-Lfunc_begin0 - .quad Lset17663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17664, Ltmp5662-Lfunc_begin0 - .quad Lset17664 -.set Lset17665, Ltmp5663-Lfunc_begin0 - .quad Lset17665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17666, Ltmp5687-Lfunc_begin0 - .quad Lset17666 -.set Lset17667, Ltmp5688-Lfunc_begin0 - .quad Lset17667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17668, Ltmp5712-Lfunc_begin0 - .quad Lset17668 -.set Lset17669, Ltmp5713-Lfunc_begin0 - .quad Lset17669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17670, Ltmp5737-Lfunc_begin0 - .quad Lset17670 -.set Lset17671, Ltmp5738-Lfunc_begin0 - .quad Lset17671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17672, Ltmp5767-Lfunc_begin0 - .quad Lset17672 -.set Lset17673, Ltmp5768-Lfunc_begin0 - .quad Lset17673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17674, Ltmp5795-Lfunc_begin0 - .quad Lset17674 -.set Lset17675, Ltmp5796-Lfunc_begin0 - .quad Lset17675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17676, Ltmp5814-Lfunc_begin0 - .quad Lset17676 -.set Lset17677, Ltmp5815-Lfunc_begin0 - .quad Lset17677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17678, Ltmp5833-Lfunc_begin0 - .quad Lset17678 -.set Lset17679, Ltmp5834-Lfunc_begin0 - .quad Lset17679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17680, Ltmp5852-Lfunc_begin0 - .quad Lset17680 -.set Lset17681, Ltmp5853-Lfunc_begin0 - .quad Lset17681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17682, Ltmp5871-Lfunc_begin0 - .quad Lset17682 -.set Lset17683, Ltmp5872-Lfunc_begin0 - .quad Lset17683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17684, Ltmp5890-Lfunc_begin0 - .quad Lset17684 -.set Lset17685, Ltmp5891-Lfunc_begin0 - .quad Lset17685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17686, Ltmp5920-Lfunc_begin0 - .quad Lset17686 -.set Lset17687, Ltmp5921-Lfunc_begin0 - .quad Lset17687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc251: -.set Lset17688, Ltmp1186-Lfunc_begin0 - .quad Lset17688 -.set Lset17689, Ltmp1187-Lfunc_begin0 - .quad Lset17689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17690, Ltmp1215-Lfunc_begin0 - .quad Lset17690 -.set Lset17691, Ltmp1216-Lfunc_begin0 - .quad Lset17691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17692, Ltmp1237-Lfunc_begin0 - .quad Lset17692 -.set Lset17693, Ltmp1238-Lfunc_begin0 - .quad Lset17693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17694, Ltmp1260-Lfunc_begin0 - .quad Lset17694 -.set Lset17695, Ltmp1261-Lfunc_begin0 - .quad Lset17695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17696, Ltmp1281-Lfunc_begin0 - .quad Lset17696 -.set Lset17697, Ltmp1282-Lfunc_begin0 - .quad Lset17697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17698, Ltmp1314-Lfunc_begin0 - .quad Lset17698 -.set Lset17699, Ltmp1315-Lfunc_begin0 - .quad Lset17699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17700, Ltmp1338-Lfunc_begin0 - .quad Lset17700 -.set Lset17701, Ltmp1339-Lfunc_begin0 - .quad Lset17701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17702, Ltmp1368-Lfunc_begin0 - .quad Lset17702 -.set Lset17703, Ltmp1369-Lfunc_begin0 - .quad Lset17703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17704, Ltmp1462-Lfunc_begin0 - .quad Lset17704 -.set Lset17705, Ltmp1464-Lfunc_begin0 - .quad Lset17705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17706, Ltmp1557-Lfunc_begin0 - .quad Lset17706 -.set Lset17707, Ltmp1559-Lfunc_begin0 - .quad Lset17707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17708, Ltmp1713-Lfunc_begin0 - .quad Lset17708 -.set Lset17709, Ltmp1715-Lfunc_begin0 - .quad Lset17709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17710, Ltmp1864-Lfunc_begin0 - .quad Lset17710 -.set Lset17711, Ltmp1866-Lfunc_begin0 - .quad Lset17711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17712, Ltmp2004-Lfunc_begin0 - .quad Lset17712 -.set Lset17713, Ltmp2006-Lfunc_begin0 - .quad Lset17713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17714, Ltmp2074-Lfunc_begin0 - .quad Lset17714 -.set Lset17715, Ltmp2076-Lfunc_begin0 - .quad Lset17715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17716, Ltmp2120-Lfunc_begin0 - .quad Lset17716 -.set Lset17717, Ltmp2121-Lfunc_begin0 - .quad Lset17717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17718, Ltmp2193-Lfunc_begin0 - .quad Lset17718 -.set Lset17719, Ltmp2195-Lfunc_begin0 - .quad Lset17719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17720, Ltmp2253-Lfunc_begin0 - .quad Lset17720 -.set Lset17721, Ltmp2255-Lfunc_begin0 - .quad Lset17721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17722, Ltmp2302-Lfunc_begin0 - .quad Lset17722 -.set Lset17723, Ltmp2304-Lfunc_begin0 - .quad Lset17723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17724, Ltmp2351-Lfunc_begin0 - .quad Lset17724 -.set Lset17725, Ltmp2353-Lfunc_begin0 - .quad Lset17725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17726, Ltmp2400-Lfunc_begin0 - .quad Lset17726 -.set Lset17727, Ltmp2402-Lfunc_begin0 - .quad Lset17727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17728, Ltmp2444-Lfunc_begin0 - .quad Lset17728 -.set Lset17729, Ltmp2446-Lfunc_begin0 - .quad Lset17729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17730, Ltmp2499-Lfunc_begin0 - .quad Lset17730 -.set Lset17731, Ltmp2501-Lfunc_begin0 - .quad Lset17731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17732, Ltmp2554-Lfunc_begin0 - .quad Lset17732 -.set Lset17733, Ltmp2556-Lfunc_begin0 - .quad Lset17733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17734, Ltmp2609-Lfunc_begin0 - .quad Lset17734 -.set Lset17735, Ltmp2611-Lfunc_begin0 - .quad Lset17735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17736, Ltmp2673-Lfunc_begin0 - .quad Lset17736 -.set Lset17737, Ltmp2675-Lfunc_begin0 - .quad Lset17737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17738, Ltmp2738-Lfunc_begin0 - .quad Lset17738 -.set Lset17739, Ltmp2740-Lfunc_begin0 - .quad Lset17739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17740, Ltmp2811-Lfunc_begin0 - .quad Lset17740 -.set Lset17741, Ltmp2813-Lfunc_begin0 - .quad Lset17741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17742, Ltmp2871-Lfunc_begin0 - .quad Lset17742 -.set Lset17743, Ltmp2873-Lfunc_begin0 - .quad Lset17743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17744, Ltmp2922-Lfunc_begin0 - .quad Lset17744 -.set Lset17745, Ltmp2924-Lfunc_begin0 - .quad Lset17745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17746, Ltmp2957-Lfunc_begin0 - .quad Lset17746 -.set Lset17747, Ltmp2958-Lfunc_begin0 - .quad Lset17747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17748, Ltmp2997-Lfunc_begin0 - .quad Lset17748 -.set Lset17749, Ltmp2999-Lfunc_begin0 - .quad Lset17749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17750, Ltmp3024-Lfunc_begin0 - .quad Lset17750 -.set Lset17751, Ltmp3025-Lfunc_begin0 - .quad Lset17751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17752, Ltmp3047-Lfunc_begin0 - .quad Lset17752 -.set Lset17753, Ltmp3048-Lfunc_begin0 - .quad Lset17753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17754, Ltmp3096-Lfunc_begin0 - .quad Lset17754 -.set Lset17755, Ltmp3097-Lfunc_begin0 - .quad Lset17755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17756, Ltmp3120-Lfunc_begin0 - .quad Lset17756 -.set Lset17757, Ltmp3122-Lfunc_begin0 - .quad Lset17757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17758, Ltmp3161-Lfunc_begin0 - .quad Lset17758 -.set Lset17759, Ltmp3163-Lfunc_begin0 - .quad Lset17759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17760, Ltmp3227-Lfunc_begin0 - .quad Lset17760 -.set Lset17761, Ltmp3228-Lfunc_begin0 - .quad Lset17761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17762, Ltmp3292-Lfunc_begin0 - .quad Lset17762 -.set Lset17763, Ltmp3293-Lfunc_begin0 - .quad Lset17763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17764, Ltmp3329-Lfunc_begin0 - .quad Lset17764 -.set Lset17765, Ltmp3330-Lfunc_begin0 - .quad Lset17765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17766, Ltmp3375-Lfunc_begin0 - .quad Lset17766 -.set Lset17767, Ltmp3376-Lfunc_begin0 - .quad Lset17767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17768, Ltmp3407-Lfunc_begin0 - .quad Lset17768 -.set Lset17769, Ltmp3408-Lfunc_begin0 - .quad Lset17769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17770, Ltmp3435-Lfunc_begin0 - .quad Lset17770 -.set Lset17771, Ltmp3436-Lfunc_begin0 - .quad Lset17771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17772, Ltmp3537-Lfunc_begin0 - .quad Lset17772 -.set Lset17773, Ltmp3538-Lfunc_begin0 - .quad Lset17773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17774, Ltmp3638-Lfunc_begin0 - .quad Lset17774 -.set Lset17775, Ltmp3640-Lfunc_begin0 - .quad Lset17775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17776, Ltmp3685-Lfunc_begin0 - .quad Lset17776 -.set Lset17777, Ltmp3686-Lfunc_begin0 - .quad Lset17777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17778, Ltmp3807-Lfunc_begin0 - .quad Lset17778 -.set Lset17779, Ltmp3809-Lfunc_begin0 - .quad Lset17779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17780, Ltmp3864-Lfunc_begin0 - .quad Lset17780 -.set Lset17781, Ltmp3865-Lfunc_begin0 - .quad Lset17781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17782, Ltmp3933-Lfunc_begin0 - .quad Lset17782 -.set Lset17783, Ltmp3934-Lfunc_begin0 - .quad Lset17783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17784, Ltmp3959-Lfunc_begin0 - .quad Lset17784 -.set Lset17785, Ltmp3960-Lfunc_begin0 - .quad Lset17785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17786, Ltmp3985-Lfunc_begin0 - .quad Lset17786 -.set Lset17787, Ltmp3986-Lfunc_begin0 - .quad Lset17787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17788, Ltmp4011-Lfunc_begin0 - .quad Lset17788 -.set Lset17789, Ltmp4012-Lfunc_begin0 - .quad Lset17789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17790, Ltmp4046-Lfunc_begin0 - .quad Lset17790 -.set Lset17791, Ltmp4047-Lfunc_begin0 - .quad Lset17791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17792, Ltmp4084-Lfunc_begin0 - .quad Lset17792 -.set Lset17793, Ltmp4085-Lfunc_begin0 - .quad Lset17793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17794, Ltmp4106-Lfunc_begin0 - .quad Lset17794 -.set Lset17795, Ltmp4107-Lfunc_begin0 - .quad Lset17795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17796, Ltmp4146-Lfunc_begin0 - .quad Lset17796 -.set Lset17797, Ltmp4147-Lfunc_begin0 - .quad Lset17797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17798, Ltmp4187-Lfunc_begin0 - .quad Lset17798 -.set Lset17799, Ltmp4188-Lfunc_begin0 - .quad Lset17799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17800, Ltmp4227-Lfunc_begin0 - .quad Lset17800 -.set Lset17801, Ltmp4228-Lfunc_begin0 - .quad Lset17801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17802, Ltmp4268-Lfunc_begin0 - .quad Lset17802 -.set Lset17803, Ltmp4269-Lfunc_begin0 - .quad Lset17803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17804, Ltmp4308-Lfunc_begin0 - .quad Lset17804 -.set Lset17805, Ltmp4309-Lfunc_begin0 - .quad Lset17805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17806, Ltmp4349-Lfunc_begin0 - .quad Lset17806 -.set Lset17807, Ltmp4350-Lfunc_begin0 - .quad Lset17807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17808, Ltmp4380-Lfunc_begin0 - .quad Lset17808 -.set Lset17809, Ltmp4381-Lfunc_begin0 - .quad Lset17809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17810, Ltmp4412-Lfunc_begin0 - .quad Lset17810 -.set Lset17811, Ltmp4414-Lfunc_begin0 - .quad Lset17811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17812, Ltmp4454-Lfunc_begin0 - .quad Lset17812 -.set Lset17813, Ltmp4455-Lfunc_begin0 - .quad Lset17813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17814, Ltmp4495-Lfunc_begin0 - .quad Lset17814 -.set Lset17815, Ltmp4496-Lfunc_begin0 - .quad Lset17815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17816, Ltmp4579-Lfunc_begin0 - .quad Lset17816 -.set Lset17817, Ltmp4581-Lfunc_begin0 - .quad Lset17817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17818, Ltmp4649-Lfunc_begin0 - .quad Lset17818 -.set Lset17819, Ltmp4651-Lfunc_begin0 - .quad Lset17819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17820, Ltmp4717-Lfunc_begin0 - .quad Lset17820 -.set Lset17821, Ltmp4719-Lfunc_begin0 - .quad Lset17821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17822, Ltmp4783-Lfunc_begin0 - .quad Lset17822 -.set Lset17823, Ltmp4784-Lfunc_begin0 - .quad Lset17823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17824, Ltmp4813-Lfunc_begin0 - .quad Lset17824 -.set Lset17825, Ltmp4814-Lfunc_begin0 - .quad Lset17825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17826, Ltmp4843-Lfunc_begin0 - .quad Lset17826 -.set Lset17827, Ltmp4844-Lfunc_begin0 - .quad Lset17827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17828, Ltmp4902-Lfunc_begin0 - .quad Lset17828 -.set Lset17829, Ltmp4903-Lfunc_begin0 - .quad Lset17829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17830, Ltmp4943-Lfunc_begin0 - .quad Lset17830 -.set Lset17831, Ltmp4944-Lfunc_begin0 - .quad Lset17831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17832, Ltmp5000-Lfunc_begin0 - .quad Lset17832 -.set Lset17833, Ltmp5001-Lfunc_begin0 - .quad Lset17833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17834, Ltmp5040-Lfunc_begin0 - .quad Lset17834 -.set Lset17835, Ltmp5041-Lfunc_begin0 - .quad Lset17835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17836, Ltmp5078-Lfunc_begin0 - .quad Lset17836 -.set Lset17837, Ltmp5079-Lfunc_begin0 - .quad Lset17837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17838, Ltmp5114-Lfunc_begin0 - .quad Lset17838 -.set Lset17839, Ltmp5115-Lfunc_begin0 - .quad Lset17839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17840, Ltmp5146-Lfunc_begin0 - .quad Lset17840 -.set Lset17841, Ltmp5147-Lfunc_begin0 - .quad Lset17841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17842, Ltmp5178-Lfunc_begin0 - .quad Lset17842 -.set Lset17843, Ltmp5179-Lfunc_begin0 - .quad Lset17843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17844, Ltmp5210-Lfunc_begin0 - .quad Lset17844 -.set Lset17845, Ltmp5211-Lfunc_begin0 - .quad Lset17845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17846, Ltmp5228-Lfunc_begin0 - .quad Lset17846 -.set Lset17847, Ltmp5229-Lfunc_begin0 - .quad Lset17847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17848, Ltmp5246-Lfunc_begin0 - .quad Lset17848 -.set Lset17849, Ltmp5247-Lfunc_begin0 - .quad Lset17849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17850, Ltmp5271-Lfunc_begin0 - .quad Lset17850 -.set Lset17851, Ltmp5272-Lfunc_begin0 - .quad Lset17851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17852, Ltmp5296-Lfunc_begin0 - .quad Lset17852 -.set Lset17853, Ltmp5297-Lfunc_begin0 - .quad Lset17853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17854, Ltmp5322-Lfunc_begin0 - .quad Lset17854 -.set Lset17855, Ltmp5323-Lfunc_begin0 - .quad Lset17855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17856, Ltmp5347-Lfunc_begin0 - .quad Lset17856 -.set Lset17857, Ltmp5348-Lfunc_begin0 - .quad Lset17857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17858, Ltmp5372-Lfunc_begin0 - .quad Lset17858 -.set Lset17859, Ltmp5373-Lfunc_begin0 - .quad Lset17859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17860, Ltmp5397-Lfunc_begin0 - .quad Lset17860 -.set Lset17861, Ltmp5398-Lfunc_begin0 - .quad Lset17861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17862, Ltmp5422-Lfunc_begin0 - .quad Lset17862 -.set Lset17863, Ltmp5423-Lfunc_begin0 - .quad Lset17863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17864, Ltmp5447-Lfunc_begin0 - .quad Lset17864 -.set Lset17865, Ltmp5448-Lfunc_begin0 - .quad Lset17865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17866, Ltmp5472-Lfunc_begin0 - .quad Lset17866 -.set Lset17867, Ltmp5473-Lfunc_begin0 - .quad Lset17867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17868, Ltmp5498-Lfunc_begin0 - .quad Lset17868 -.set Lset17869, Ltmp5499-Lfunc_begin0 - .quad Lset17869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17870, Ltmp5523-Lfunc_begin0 - .quad Lset17870 -.set Lset17871, Ltmp5524-Lfunc_begin0 - .quad Lset17871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17872, Ltmp5548-Lfunc_begin0 - .quad Lset17872 -.set Lset17873, Ltmp5549-Lfunc_begin0 - .quad Lset17873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17874, Ltmp5573-Lfunc_begin0 - .quad Lset17874 -.set Lset17875, Ltmp5574-Lfunc_begin0 - .quad Lset17875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17876, Ltmp5598-Lfunc_begin0 - .quad Lset17876 -.set Lset17877, Ltmp5599-Lfunc_begin0 - .quad Lset17877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17878, Ltmp5631-Lfunc_begin0 - .quad Lset17878 -.set Lset17879, Ltmp5632-Lfunc_begin0 - .quad Lset17879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17880, Ltmp5662-Lfunc_begin0 - .quad Lset17880 -.set Lset17881, Ltmp5663-Lfunc_begin0 - .quad Lset17881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17882, Ltmp5687-Lfunc_begin0 - .quad Lset17882 -.set Lset17883, Ltmp5688-Lfunc_begin0 - .quad Lset17883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17884, Ltmp5712-Lfunc_begin0 - .quad Lset17884 -.set Lset17885, Ltmp5713-Lfunc_begin0 - .quad Lset17885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17886, Ltmp5737-Lfunc_begin0 - .quad Lset17886 -.set Lset17887, Ltmp5738-Lfunc_begin0 - .quad Lset17887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17888, Ltmp5767-Lfunc_begin0 - .quad Lset17888 -.set Lset17889, Ltmp5768-Lfunc_begin0 - .quad Lset17889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17890, Ltmp5795-Lfunc_begin0 - .quad Lset17890 -.set Lset17891, Ltmp5796-Lfunc_begin0 - .quad Lset17891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17892, Ltmp5814-Lfunc_begin0 - .quad Lset17892 -.set Lset17893, Ltmp5815-Lfunc_begin0 - .quad Lset17893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17894, Ltmp5833-Lfunc_begin0 - .quad Lset17894 -.set Lset17895, Ltmp5834-Lfunc_begin0 - .quad Lset17895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17896, Ltmp5852-Lfunc_begin0 - .quad Lset17896 -.set Lset17897, Ltmp5853-Lfunc_begin0 - .quad Lset17897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17898, Ltmp5871-Lfunc_begin0 - .quad Lset17898 -.set Lset17899, Ltmp5872-Lfunc_begin0 - .quad Lset17899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17900, Ltmp5890-Lfunc_begin0 - .quad Lset17900 -.set Lset17901, Ltmp5891-Lfunc_begin0 - .quad Lset17901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17902, Ltmp5920-Lfunc_begin0 - .quad Lset17902 -.set Lset17903, Ltmp5921-Lfunc_begin0 - .quad Lset17903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc252: -.set Lset17904, Ltmp1186-Lfunc_begin0 - .quad Lset17904 -.set Lset17905, Ltmp1187-Lfunc_begin0 - .quad Lset17905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17906, Ltmp1215-Lfunc_begin0 - .quad Lset17906 -.set Lset17907, Ltmp1216-Lfunc_begin0 - .quad Lset17907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17908, Ltmp1237-Lfunc_begin0 - .quad Lset17908 -.set Lset17909, Ltmp1238-Lfunc_begin0 - .quad Lset17909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17910, Ltmp1260-Lfunc_begin0 - .quad Lset17910 -.set Lset17911, Ltmp1261-Lfunc_begin0 - .quad Lset17911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17912, Ltmp1281-Lfunc_begin0 - .quad Lset17912 -.set Lset17913, Ltmp1282-Lfunc_begin0 - .quad Lset17913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17914, Ltmp1314-Lfunc_begin0 - .quad Lset17914 -.set Lset17915, Ltmp1315-Lfunc_begin0 - .quad Lset17915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17916, Ltmp1338-Lfunc_begin0 - .quad Lset17916 -.set Lset17917, Ltmp1339-Lfunc_begin0 - .quad Lset17917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17918, Ltmp1368-Lfunc_begin0 - .quad Lset17918 -.set Lset17919, Ltmp1369-Lfunc_begin0 - .quad Lset17919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17920, Ltmp1462-Lfunc_begin0 - .quad Lset17920 -.set Lset17921, Ltmp1464-Lfunc_begin0 - .quad Lset17921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17922, Ltmp1557-Lfunc_begin0 - .quad Lset17922 -.set Lset17923, Ltmp1559-Lfunc_begin0 - .quad Lset17923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17924, Ltmp1713-Lfunc_begin0 - .quad Lset17924 -.set Lset17925, Ltmp1715-Lfunc_begin0 - .quad Lset17925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17926, Ltmp1864-Lfunc_begin0 - .quad Lset17926 -.set Lset17927, Ltmp1866-Lfunc_begin0 - .quad Lset17927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17928, Ltmp2004-Lfunc_begin0 - .quad Lset17928 -.set Lset17929, Ltmp2006-Lfunc_begin0 - .quad Lset17929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17930, Ltmp2074-Lfunc_begin0 - .quad Lset17930 -.set Lset17931, Ltmp2076-Lfunc_begin0 - .quad Lset17931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17932, Ltmp2120-Lfunc_begin0 - .quad Lset17932 -.set Lset17933, Ltmp2121-Lfunc_begin0 - .quad Lset17933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17934, Ltmp2193-Lfunc_begin0 - .quad Lset17934 -.set Lset17935, Ltmp2195-Lfunc_begin0 - .quad Lset17935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17936, Ltmp2253-Lfunc_begin0 - .quad Lset17936 -.set Lset17937, Ltmp2255-Lfunc_begin0 - .quad Lset17937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17938, Ltmp2302-Lfunc_begin0 - .quad Lset17938 -.set Lset17939, Ltmp2304-Lfunc_begin0 - .quad Lset17939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17940, Ltmp2351-Lfunc_begin0 - .quad Lset17940 -.set Lset17941, Ltmp2353-Lfunc_begin0 - .quad Lset17941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17942, Ltmp2400-Lfunc_begin0 - .quad Lset17942 -.set Lset17943, Ltmp2402-Lfunc_begin0 - .quad Lset17943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17944, Ltmp2444-Lfunc_begin0 - .quad Lset17944 -.set Lset17945, Ltmp2446-Lfunc_begin0 - .quad Lset17945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17946, Ltmp2499-Lfunc_begin0 - .quad Lset17946 -.set Lset17947, Ltmp2501-Lfunc_begin0 - .quad Lset17947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17948, Ltmp2554-Lfunc_begin0 - .quad Lset17948 -.set Lset17949, Ltmp2556-Lfunc_begin0 - .quad Lset17949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17950, Ltmp2609-Lfunc_begin0 - .quad Lset17950 -.set Lset17951, Ltmp2611-Lfunc_begin0 - .quad Lset17951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17952, Ltmp2673-Lfunc_begin0 - .quad Lset17952 -.set Lset17953, Ltmp2675-Lfunc_begin0 - .quad Lset17953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17954, Ltmp2738-Lfunc_begin0 - .quad Lset17954 -.set Lset17955, Ltmp2740-Lfunc_begin0 - .quad Lset17955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17956, Ltmp2811-Lfunc_begin0 - .quad Lset17956 -.set Lset17957, Ltmp2813-Lfunc_begin0 - .quad Lset17957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17958, Ltmp2871-Lfunc_begin0 - .quad Lset17958 -.set Lset17959, Ltmp2873-Lfunc_begin0 - .quad Lset17959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17960, Ltmp2922-Lfunc_begin0 - .quad Lset17960 -.set Lset17961, Ltmp2924-Lfunc_begin0 - .quad Lset17961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17962, Ltmp2957-Lfunc_begin0 - .quad Lset17962 -.set Lset17963, Ltmp2958-Lfunc_begin0 - .quad Lset17963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17964, Ltmp2997-Lfunc_begin0 - .quad Lset17964 -.set Lset17965, Ltmp2999-Lfunc_begin0 - .quad Lset17965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17966, Ltmp3024-Lfunc_begin0 - .quad Lset17966 -.set Lset17967, Ltmp3025-Lfunc_begin0 - .quad Lset17967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17968, Ltmp3047-Lfunc_begin0 - .quad Lset17968 -.set Lset17969, Ltmp3048-Lfunc_begin0 - .quad Lset17969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17970, Ltmp3096-Lfunc_begin0 - .quad Lset17970 -.set Lset17971, Ltmp3097-Lfunc_begin0 - .quad Lset17971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17972, Ltmp3120-Lfunc_begin0 - .quad Lset17972 -.set Lset17973, Ltmp3122-Lfunc_begin0 - .quad Lset17973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17974, Ltmp3161-Lfunc_begin0 - .quad Lset17974 -.set Lset17975, Ltmp3163-Lfunc_begin0 - .quad Lset17975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17976, Ltmp3227-Lfunc_begin0 - .quad Lset17976 -.set Lset17977, Ltmp3228-Lfunc_begin0 - .quad Lset17977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17978, Ltmp3292-Lfunc_begin0 - .quad Lset17978 -.set Lset17979, Ltmp3293-Lfunc_begin0 - .quad Lset17979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17980, Ltmp3329-Lfunc_begin0 - .quad Lset17980 -.set Lset17981, Ltmp3330-Lfunc_begin0 - .quad Lset17981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17982, Ltmp3375-Lfunc_begin0 - .quad Lset17982 -.set Lset17983, Ltmp3376-Lfunc_begin0 - .quad Lset17983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17984, Ltmp3407-Lfunc_begin0 - .quad Lset17984 -.set Lset17985, Ltmp3408-Lfunc_begin0 - .quad Lset17985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17986, Ltmp3435-Lfunc_begin0 - .quad Lset17986 -.set Lset17987, Ltmp3436-Lfunc_begin0 - .quad Lset17987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17988, Ltmp3537-Lfunc_begin0 - .quad Lset17988 -.set Lset17989, Ltmp3538-Lfunc_begin0 - .quad Lset17989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17990, Ltmp3638-Lfunc_begin0 - .quad Lset17990 -.set Lset17991, Ltmp3640-Lfunc_begin0 - .quad Lset17991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17992, Ltmp3685-Lfunc_begin0 - .quad Lset17992 -.set Lset17993, Ltmp3686-Lfunc_begin0 - .quad Lset17993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17994, Ltmp3807-Lfunc_begin0 - .quad Lset17994 -.set Lset17995, Ltmp3809-Lfunc_begin0 - .quad Lset17995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17996, Ltmp3864-Lfunc_begin0 - .quad Lset17996 -.set Lset17997, Ltmp3865-Lfunc_begin0 - .quad Lset17997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset17998, Ltmp3933-Lfunc_begin0 - .quad Lset17998 -.set Lset17999, Ltmp3934-Lfunc_begin0 - .quad Lset17999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18000, Ltmp3959-Lfunc_begin0 - .quad Lset18000 -.set Lset18001, Ltmp3960-Lfunc_begin0 - .quad Lset18001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18002, Ltmp3985-Lfunc_begin0 - .quad Lset18002 -.set Lset18003, Ltmp3986-Lfunc_begin0 - .quad Lset18003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18004, Ltmp4011-Lfunc_begin0 - .quad Lset18004 -.set Lset18005, Ltmp4012-Lfunc_begin0 - .quad Lset18005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18006, Ltmp4046-Lfunc_begin0 - .quad Lset18006 -.set Lset18007, Ltmp4047-Lfunc_begin0 - .quad Lset18007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18008, Ltmp4084-Lfunc_begin0 - .quad Lset18008 -.set Lset18009, Ltmp4085-Lfunc_begin0 - .quad Lset18009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18010, Ltmp4106-Lfunc_begin0 - .quad Lset18010 -.set Lset18011, Ltmp4107-Lfunc_begin0 - .quad Lset18011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18012, Ltmp4146-Lfunc_begin0 - .quad Lset18012 -.set Lset18013, Ltmp4147-Lfunc_begin0 - .quad Lset18013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18014, Ltmp4187-Lfunc_begin0 - .quad Lset18014 -.set Lset18015, Ltmp4188-Lfunc_begin0 - .quad Lset18015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18016, Ltmp4227-Lfunc_begin0 - .quad Lset18016 -.set Lset18017, Ltmp4228-Lfunc_begin0 - .quad Lset18017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18018, Ltmp4268-Lfunc_begin0 - .quad Lset18018 -.set Lset18019, Ltmp4269-Lfunc_begin0 - .quad Lset18019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18020, Ltmp4308-Lfunc_begin0 - .quad Lset18020 -.set Lset18021, Ltmp4309-Lfunc_begin0 - .quad Lset18021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18022, Ltmp4349-Lfunc_begin0 - .quad Lset18022 -.set Lset18023, Ltmp4350-Lfunc_begin0 - .quad Lset18023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18024, Ltmp4380-Lfunc_begin0 - .quad Lset18024 -.set Lset18025, Ltmp4381-Lfunc_begin0 - .quad Lset18025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18026, Ltmp4412-Lfunc_begin0 - .quad Lset18026 -.set Lset18027, Ltmp4414-Lfunc_begin0 - .quad Lset18027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18028, Ltmp4454-Lfunc_begin0 - .quad Lset18028 -.set Lset18029, Ltmp4455-Lfunc_begin0 - .quad Lset18029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18030, Ltmp4495-Lfunc_begin0 - .quad Lset18030 -.set Lset18031, Ltmp4496-Lfunc_begin0 - .quad Lset18031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18032, Ltmp4579-Lfunc_begin0 - .quad Lset18032 -.set Lset18033, Ltmp4581-Lfunc_begin0 - .quad Lset18033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18034, Ltmp4649-Lfunc_begin0 - .quad Lset18034 -.set Lset18035, Ltmp4651-Lfunc_begin0 - .quad Lset18035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18036, Ltmp4717-Lfunc_begin0 - .quad Lset18036 -.set Lset18037, Ltmp4719-Lfunc_begin0 - .quad Lset18037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18038, Ltmp4783-Lfunc_begin0 - .quad Lset18038 -.set Lset18039, Ltmp4784-Lfunc_begin0 - .quad Lset18039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18040, Ltmp4813-Lfunc_begin0 - .quad Lset18040 -.set Lset18041, Ltmp4814-Lfunc_begin0 - .quad Lset18041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18042, Ltmp4843-Lfunc_begin0 - .quad Lset18042 -.set Lset18043, Ltmp4844-Lfunc_begin0 - .quad Lset18043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18044, Ltmp4902-Lfunc_begin0 - .quad Lset18044 -.set Lset18045, Ltmp4903-Lfunc_begin0 - .quad Lset18045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18046, Ltmp4943-Lfunc_begin0 - .quad Lset18046 -.set Lset18047, Ltmp4944-Lfunc_begin0 - .quad Lset18047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18048, Ltmp5000-Lfunc_begin0 - .quad Lset18048 -.set Lset18049, Ltmp5001-Lfunc_begin0 - .quad Lset18049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18050, Ltmp5040-Lfunc_begin0 - .quad Lset18050 -.set Lset18051, Ltmp5041-Lfunc_begin0 - .quad Lset18051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18052, Ltmp5078-Lfunc_begin0 - .quad Lset18052 -.set Lset18053, Ltmp5079-Lfunc_begin0 - .quad Lset18053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18054, Ltmp5114-Lfunc_begin0 - .quad Lset18054 -.set Lset18055, Ltmp5115-Lfunc_begin0 - .quad Lset18055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18056, Ltmp5146-Lfunc_begin0 - .quad Lset18056 -.set Lset18057, Ltmp5147-Lfunc_begin0 - .quad Lset18057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18058, Ltmp5178-Lfunc_begin0 - .quad Lset18058 -.set Lset18059, Ltmp5179-Lfunc_begin0 - .quad Lset18059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18060, Ltmp5210-Lfunc_begin0 - .quad Lset18060 -.set Lset18061, Ltmp5211-Lfunc_begin0 - .quad Lset18061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18062, Ltmp5228-Lfunc_begin0 - .quad Lset18062 -.set Lset18063, Ltmp5229-Lfunc_begin0 - .quad Lset18063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18064, Ltmp5246-Lfunc_begin0 - .quad Lset18064 -.set Lset18065, Ltmp5247-Lfunc_begin0 - .quad Lset18065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18066, Ltmp5271-Lfunc_begin0 - .quad Lset18066 -.set Lset18067, Ltmp5272-Lfunc_begin0 - .quad Lset18067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18068, Ltmp5296-Lfunc_begin0 - .quad Lset18068 -.set Lset18069, Ltmp5297-Lfunc_begin0 - .quad Lset18069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18070, Ltmp5322-Lfunc_begin0 - .quad Lset18070 -.set Lset18071, Ltmp5323-Lfunc_begin0 - .quad Lset18071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18072, Ltmp5347-Lfunc_begin0 - .quad Lset18072 -.set Lset18073, Ltmp5348-Lfunc_begin0 - .quad Lset18073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18074, Ltmp5372-Lfunc_begin0 - .quad Lset18074 -.set Lset18075, Ltmp5373-Lfunc_begin0 - .quad Lset18075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18076, Ltmp5397-Lfunc_begin0 - .quad Lset18076 -.set Lset18077, Ltmp5398-Lfunc_begin0 - .quad Lset18077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18078, Ltmp5422-Lfunc_begin0 - .quad Lset18078 -.set Lset18079, Ltmp5423-Lfunc_begin0 - .quad Lset18079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18080, Ltmp5447-Lfunc_begin0 - .quad Lset18080 -.set Lset18081, Ltmp5448-Lfunc_begin0 - .quad Lset18081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18082, Ltmp5472-Lfunc_begin0 - .quad Lset18082 -.set Lset18083, Ltmp5473-Lfunc_begin0 - .quad Lset18083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18084, Ltmp5498-Lfunc_begin0 - .quad Lset18084 -.set Lset18085, Ltmp5499-Lfunc_begin0 - .quad Lset18085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18086, Ltmp5523-Lfunc_begin0 - .quad Lset18086 -.set Lset18087, Ltmp5524-Lfunc_begin0 - .quad Lset18087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18088, Ltmp5548-Lfunc_begin0 - .quad Lset18088 -.set Lset18089, Ltmp5549-Lfunc_begin0 - .quad Lset18089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18090, Ltmp5573-Lfunc_begin0 - .quad Lset18090 -.set Lset18091, Ltmp5574-Lfunc_begin0 - .quad Lset18091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18092, Ltmp5598-Lfunc_begin0 - .quad Lset18092 -.set Lset18093, Ltmp5599-Lfunc_begin0 - .quad Lset18093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18094, Ltmp5631-Lfunc_begin0 - .quad Lset18094 -.set Lset18095, Ltmp5632-Lfunc_begin0 - .quad Lset18095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18096, Ltmp5662-Lfunc_begin0 - .quad Lset18096 -.set Lset18097, Ltmp5663-Lfunc_begin0 - .quad Lset18097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18098, Ltmp5687-Lfunc_begin0 - .quad Lset18098 -.set Lset18099, Ltmp5688-Lfunc_begin0 - .quad Lset18099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18100, Ltmp5712-Lfunc_begin0 - .quad Lset18100 -.set Lset18101, Ltmp5713-Lfunc_begin0 - .quad Lset18101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18102, Ltmp5737-Lfunc_begin0 - .quad Lset18102 -.set Lset18103, Ltmp5738-Lfunc_begin0 - .quad Lset18103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18104, Ltmp5767-Lfunc_begin0 - .quad Lset18104 -.set Lset18105, Ltmp5768-Lfunc_begin0 - .quad Lset18105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18106, Ltmp5795-Lfunc_begin0 - .quad Lset18106 -.set Lset18107, Ltmp5796-Lfunc_begin0 - .quad Lset18107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18108, Ltmp5814-Lfunc_begin0 - .quad Lset18108 -.set Lset18109, Ltmp5815-Lfunc_begin0 - .quad Lset18109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18110, Ltmp5833-Lfunc_begin0 - .quad Lset18110 -.set Lset18111, Ltmp5834-Lfunc_begin0 - .quad Lset18111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18112, Ltmp5852-Lfunc_begin0 - .quad Lset18112 -.set Lset18113, Ltmp5853-Lfunc_begin0 - .quad Lset18113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18114, Ltmp5871-Lfunc_begin0 - .quad Lset18114 -.set Lset18115, Ltmp5872-Lfunc_begin0 - .quad Lset18115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18116, Ltmp5890-Lfunc_begin0 - .quad Lset18116 -.set Lset18117, Ltmp5891-Lfunc_begin0 - .quad Lset18117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18118, Ltmp5920-Lfunc_begin0 - .quad Lset18118 -.set Lset18119, Ltmp5921-Lfunc_begin0 - .quad Lset18119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc253: -.set Lset18120, Ltmp1186-Lfunc_begin0 - .quad Lset18120 -.set Lset18121, Ltmp1187-Lfunc_begin0 - .quad Lset18121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18122, Ltmp1215-Lfunc_begin0 - .quad Lset18122 -.set Lset18123, Ltmp1216-Lfunc_begin0 - .quad Lset18123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18124, Ltmp1237-Lfunc_begin0 - .quad Lset18124 -.set Lset18125, Ltmp1238-Lfunc_begin0 - .quad Lset18125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18126, Ltmp1260-Lfunc_begin0 - .quad Lset18126 -.set Lset18127, Ltmp1261-Lfunc_begin0 - .quad Lset18127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18128, Ltmp1281-Lfunc_begin0 - .quad Lset18128 -.set Lset18129, Ltmp1282-Lfunc_begin0 - .quad Lset18129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18130, Ltmp1314-Lfunc_begin0 - .quad Lset18130 -.set Lset18131, Ltmp1315-Lfunc_begin0 - .quad Lset18131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18132, Ltmp1338-Lfunc_begin0 - .quad Lset18132 -.set Lset18133, Ltmp1339-Lfunc_begin0 - .quad Lset18133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18134, Ltmp1368-Lfunc_begin0 - .quad Lset18134 -.set Lset18135, Ltmp1369-Lfunc_begin0 - .quad Lset18135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18136, Ltmp1462-Lfunc_begin0 - .quad Lset18136 -.set Lset18137, Ltmp1464-Lfunc_begin0 - .quad Lset18137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18138, Ltmp1557-Lfunc_begin0 - .quad Lset18138 -.set Lset18139, Ltmp1559-Lfunc_begin0 - .quad Lset18139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18140, Ltmp1713-Lfunc_begin0 - .quad Lset18140 -.set Lset18141, Ltmp1715-Lfunc_begin0 - .quad Lset18141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18142, Ltmp1864-Lfunc_begin0 - .quad Lset18142 -.set Lset18143, Ltmp1866-Lfunc_begin0 - .quad Lset18143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18144, Ltmp2004-Lfunc_begin0 - .quad Lset18144 -.set Lset18145, Ltmp2006-Lfunc_begin0 - .quad Lset18145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18146, Ltmp2074-Lfunc_begin0 - .quad Lset18146 -.set Lset18147, Ltmp2076-Lfunc_begin0 - .quad Lset18147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18148, Ltmp2120-Lfunc_begin0 - .quad Lset18148 -.set Lset18149, Ltmp2121-Lfunc_begin0 - .quad Lset18149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18150, Ltmp2193-Lfunc_begin0 - .quad Lset18150 -.set Lset18151, Ltmp2195-Lfunc_begin0 - .quad Lset18151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18152, Ltmp2253-Lfunc_begin0 - .quad Lset18152 -.set Lset18153, Ltmp2255-Lfunc_begin0 - .quad Lset18153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18154, Ltmp2302-Lfunc_begin0 - .quad Lset18154 -.set Lset18155, Ltmp2304-Lfunc_begin0 - .quad Lset18155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18156, Ltmp2351-Lfunc_begin0 - .quad Lset18156 -.set Lset18157, Ltmp2353-Lfunc_begin0 - .quad Lset18157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18158, Ltmp2400-Lfunc_begin0 - .quad Lset18158 -.set Lset18159, Ltmp2402-Lfunc_begin0 - .quad Lset18159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18160, Ltmp2444-Lfunc_begin0 - .quad Lset18160 -.set Lset18161, Ltmp2446-Lfunc_begin0 - .quad Lset18161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18162, Ltmp2499-Lfunc_begin0 - .quad Lset18162 -.set Lset18163, Ltmp2501-Lfunc_begin0 - .quad Lset18163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18164, Ltmp2554-Lfunc_begin0 - .quad Lset18164 -.set Lset18165, Ltmp2556-Lfunc_begin0 - .quad Lset18165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18166, Ltmp2609-Lfunc_begin0 - .quad Lset18166 -.set Lset18167, Ltmp2611-Lfunc_begin0 - .quad Lset18167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18168, Ltmp2673-Lfunc_begin0 - .quad Lset18168 -.set Lset18169, Ltmp2675-Lfunc_begin0 - .quad Lset18169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18170, Ltmp2738-Lfunc_begin0 - .quad Lset18170 -.set Lset18171, Ltmp2740-Lfunc_begin0 - .quad Lset18171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18172, Ltmp2811-Lfunc_begin0 - .quad Lset18172 -.set Lset18173, Ltmp2813-Lfunc_begin0 - .quad Lset18173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18174, Ltmp2871-Lfunc_begin0 - .quad Lset18174 -.set Lset18175, Ltmp2873-Lfunc_begin0 - .quad Lset18175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18176, Ltmp2922-Lfunc_begin0 - .quad Lset18176 -.set Lset18177, Ltmp2924-Lfunc_begin0 - .quad Lset18177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18178, Ltmp2957-Lfunc_begin0 - .quad Lset18178 -.set Lset18179, Ltmp2958-Lfunc_begin0 - .quad Lset18179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18180, Ltmp2997-Lfunc_begin0 - .quad Lset18180 -.set Lset18181, Ltmp2999-Lfunc_begin0 - .quad Lset18181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18182, Ltmp3024-Lfunc_begin0 - .quad Lset18182 -.set Lset18183, Ltmp3025-Lfunc_begin0 - .quad Lset18183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18184, Ltmp3047-Lfunc_begin0 - .quad Lset18184 -.set Lset18185, Ltmp3048-Lfunc_begin0 - .quad Lset18185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18186, Ltmp3096-Lfunc_begin0 - .quad Lset18186 -.set Lset18187, Ltmp3097-Lfunc_begin0 - .quad Lset18187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18188, Ltmp3120-Lfunc_begin0 - .quad Lset18188 -.set Lset18189, Ltmp3122-Lfunc_begin0 - .quad Lset18189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18190, Ltmp3161-Lfunc_begin0 - .quad Lset18190 -.set Lset18191, Ltmp3163-Lfunc_begin0 - .quad Lset18191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18192, Ltmp3227-Lfunc_begin0 - .quad Lset18192 -.set Lset18193, Ltmp3228-Lfunc_begin0 - .quad Lset18193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18194, Ltmp3292-Lfunc_begin0 - .quad Lset18194 -.set Lset18195, Ltmp3293-Lfunc_begin0 - .quad Lset18195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18196, Ltmp3329-Lfunc_begin0 - .quad Lset18196 -.set Lset18197, Ltmp3330-Lfunc_begin0 - .quad Lset18197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18198, Ltmp3375-Lfunc_begin0 - .quad Lset18198 -.set Lset18199, Ltmp3376-Lfunc_begin0 - .quad Lset18199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18200, Ltmp3407-Lfunc_begin0 - .quad Lset18200 -.set Lset18201, Ltmp3408-Lfunc_begin0 - .quad Lset18201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18202, Ltmp3435-Lfunc_begin0 - .quad Lset18202 -.set Lset18203, Ltmp3436-Lfunc_begin0 - .quad Lset18203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18204, Ltmp3537-Lfunc_begin0 - .quad Lset18204 -.set Lset18205, Ltmp3538-Lfunc_begin0 - .quad Lset18205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18206, Ltmp3638-Lfunc_begin0 - .quad Lset18206 -.set Lset18207, Ltmp3640-Lfunc_begin0 - .quad Lset18207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18208, Ltmp3685-Lfunc_begin0 - .quad Lset18208 -.set Lset18209, Ltmp3686-Lfunc_begin0 - .quad Lset18209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18210, Ltmp3807-Lfunc_begin0 - .quad Lset18210 -.set Lset18211, Ltmp3809-Lfunc_begin0 - .quad Lset18211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18212, Ltmp3864-Lfunc_begin0 - .quad Lset18212 -.set Lset18213, Ltmp3865-Lfunc_begin0 - .quad Lset18213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18214, Ltmp3933-Lfunc_begin0 - .quad Lset18214 -.set Lset18215, Ltmp3934-Lfunc_begin0 - .quad Lset18215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18216, Ltmp3959-Lfunc_begin0 - .quad Lset18216 -.set Lset18217, Ltmp3960-Lfunc_begin0 - .quad Lset18217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18218, Ltmp3985-Lfunc_begin0 - .quad Lset18218 -.set Lset18219, Ltmp3986-Lfunc_begin0 - .quad Lset18219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18220, Ltmp4011-Lfunc_begin0 - .quad Lset18220 -.set Lset18221, Ltmp4012-Lfunc_begin0 - .quad Lset18221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18222, Ltmp4046-Lfunc_begin0 - .quad Lset18222 -.set Lset18223, Ltmp4047-Lfunc_begin0 - .quad Lset18223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18224, Ltmp4084-Lfunc_begin0 - .quad Lset18224 -.set Lset18225, Ltmp4085-Lfunc_begin0 - .quad Lset18225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18226, Ltmp4106-Lfunc_begin0 - .quad Lset18226 -.set Lset18227, Ltmp4107-Lfunc_begin0 - .quad Lset18227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18228, Ltmp4146-Lfunc_begin0 - .quad Lset18228 -.set Lset18229, Ltmp4147-Lfunc_begin0 - .quad Lset18229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18230, Ltmp4187-Lfunc_begin0 - .quad Lset18230 -.set Lset18231, Ltmp4188-Lfunc_begin0 - .quad Lset18231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18232, Ltmp4227-Lfunc_begin0 - .quad Lset18232 -.set Lset18233, Ltmp4228-Lfunc_begin0 - .quad Lset18233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18234, Ltmp4268-Lfunc_begin0 - .quad Lset18234 -.set Lset18235, Ltmp4269-Lfunc_begin0 - .quad Lset18235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18236, Ltmp4308-Lfunc_begin0 - .quad Lset18236 -.set Lset18237, Ltmp4309-Lfunc_begin0 - .quad Lset18237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18238, Ltmp4349-Lfunc_begin0 - .quad Lset18238 -.set Lset18239, Ltmp4350-Lfunc_begin0 - .quad Lset18239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18240, Ltmp4380-Lfunc_begin0 - .quad Lset18240 -.set Lset18241, Ltmp4381-Lfunc_begin0 - .quad Lset18241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18242, Ltmp4412-Lfunc_begin0 - .quad Lset18242 -.set Lset18243, Ltmp4414-Lfunc_begin0 - .quad Lset18243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18244, Ltmp4454-Lfunc_begin0 - .quad Lset18244 -.set Lset18245, Ltmp4455-Lfunc_begin0 - .quad Lset18245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18246, Ltmp4495-Lfunc_begin0 - .quad Lset18246 -.set Lset18247, Ltmp4496-Lfunc_begin0 - .quad Lset18247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18248, Ltmp4579-Lfunc_begin0 - .quad Lset18248 -.set Lset18249, Ltmp4581-Lfunc_begin0 - .quad Lset18249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18250, Ltmp4649-Lfunc_begin0 - .quad Lset18250 -.set Lset18251, Ltmp4651-Lfunc_begin0 - .quad Lset18251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18252, Ltmp4717-Lfunc_begin0 - .quad Lset18252 -.set Lset18253, Ltmp4719-Lfunc_begin0 - .quad Lset18253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18254, Ltmp4783-Lfunc_begin0 - .quad Lset18254 -.set Lset18255, Ltmp4784-Lfunc_begin0 - .quad Lset18255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18256, Ltmp4813-Lfunc_begin0 - .quad Lset18256 -.set Lset18257, Ltmp4814-Lfunc_begin0 - .quad Lset18257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18258, Ltmp4843-Lfunc_begin0 - .quad Lset18258 -.set Lset18259, Ltmp4844-Lfunc_begin0 - .quad Lset18259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18260, Ltmp4902-Lfunc_begin0 - .quad Lset18260 -.set Lset18261, Ltmp4903-Lfunc_begin0 - .quad Lset18261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18262, Ltmp4943-Lfunc_begin0 - .quad Lset18262 -.set Lset18263, Ltmp4944-Lfunc_begin0 - .quad Lset18263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18264, Ltmp5000-Lfunc_begin0 - .quad Lset18264 -.set Lset18265, Ltmp5001-Lfunc_begin0 - .quad Lset18265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18266, Ltmp5040-Lfunc_begin0 - .quad Lset18266 -.set Lset18267, Ltmp5041-Lfunc_begin0 - .quad Lset18267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18268, Ltmp5078-Lfunc_begin0 - .quad Lset18268 -.set Lset18269, Ltmp5079-Lfunc_begin0 - .quad Lset18269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18270, Ltmp5114-Lfunc_begin0 - .quad Lset18270 -.set Lset18271, Ltmp5115-Lfunc_begin0 - .quad Lset18271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18272, Ltmp5146-Lfunc_begin0 - .quad Lset18272 -.set Lset18273, Ltmp5147-Lfunc_begin0 - .quad Lset18273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18274, Ltmp5178-Lfunc_begin0 - .quad Lset18274 -.set Lset18275, Ltmp5179-Lfunc_begin0 - .quad Lset18275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18276, Ltmp5210-Lfunc_begin0 - .quad Lset18276 -.set Lset18277, Ltmp5211-Lfunc_begin0 - .quad Lset18277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18278, Ltmp5228-Lfunc_begin0 - .quad Lset18278 -.set Lset18279, Ltmp5229-Lfunc_begin0 - .quad Lset18279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18280, Ltmp5246-Lfunc_begin0 - .quad Lset18280 -.set Lset18281, Ltmp5247-Lfunc_begin0 - .quad Lset18281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18282, Ltmp5271-Lfunc_begin0 - .quad Lset18282 -.set Lset18283, Ltmp5272-Lfunc_begin0 - .quad Lset18283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18284, Ltmp5296-Lfunc_begin0 - .quad Lset18284 -.set Lset18285, Ltmp5297-Lfunc_begin0 - .quad Lset18285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18286, Ltmp5322-Lfunc_begin0 - .quad Lset18286 -.set Lset18287, Ltmp5323-Lfunc_begin0 - .quad Lset18287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18288, Ltmp5347-Lfunc_begin0 - .quad Lset18288 -.set Lset18289, Ltmp5348-Lfunc_begin0 - .quad Lset18289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18290, Ltmp5372-Lfunc_begin0 - .quad Lset18290 -.set Lset18291, Ltmp5373-Lfunc_begin0 - .quad Lset18291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18292, Ltmp5397-Lfunc_begin0 - .quad Lset18292 -.set Lset18293, Ltmp5398-Lfunc_begin0 - .quad Lset18293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18294, Ltmp5422-Lfunc_begin0 - .quad Lset18294 -.set Lset18295, Ltmp5423-Lfunc_begin0 - .quad Lset18295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18296, Ltmp5447-Lfunc_begin0 - .quad Lset18296 -.set Lset18297, Ltmp5448-Lfunc_begin0 - .quad Lset18297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18298, Ltmp5472-Lfunc_begin0 - .quad Lset18298 -.set Lset18299, Ltmp5473-Lfunc_begin0 - .quad Lset18299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18300, Ltmp5498-Lfunc_begin0 - .quad Lset18300 -.set Lset18301, Ltmp5499-Lfunc_begin0 - .quad Lset18301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18302, Ltmp5523-Lfunc_begin0 - .quad Lset18302 -.set Lset18303, Ltmp5524-Lfunc_begin0 - .quad Lset18303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18304, Ltmp5548-Lfunc_begin0 - .quad Lset18304 -.set Lset18305, Ltmp5549-Lfunc_begin0 - .quad Lset18305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18306, Ltmp5573-Lfunc_begin0 - .quad Lset18306 -.set Lset18307, Ltmp5574-Lfunc_begin0 - .quad Lset18307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18308, Ltmp5598-Lfunc_begin0 - .quad Lset18308 -.set Lset18309, Ltmp5599-Lfunc_begin0 - .quad Lset18309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18310, Ltmp5631-Lfunc_begin0 - .quad Lset18310 -.set Lset18311, Ltmp5632-Lfunc_begin0 - .quad Lset18311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18312, Ltmp5662-Lfunc_begin0 - .quad Lset18312 -.set Lset18313, Ltmp5663-Lfunc_begin0 - .quad Lset18313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18314, Ltmp5687-Lfunc_begin0 - .quad Lset18314 -.set Lset18315, Ltmp5688-Lfunc_begin0 - .quad Lset18315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18316, Ltmp5712-Lfunc_begin0 - .quad Lset18316 -.set Lset18317, Ltmp5713-Lfunc_begin0 - .quad Lset18317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18318, Ltmp5737-Lfunc_begin0 - .quad Lset18318 -.set Lset18319, Ltmp5738-Lfunc_begin0 - .quad Lset18319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18320, Ltmp5767-Lfunc_begin0 - .quad Lset18320 -.set Lset18321, Ltmp5768-Lfunc_begin0 - .quad Lset18321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18322, Ltmp5795-Lfunc_begin0 - .quad Lset18322 -.set Lset18323, Ltmp5796-Lfunc_begin0 - .quad Lset18323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18324, Ltmp5814-Lfunc_begin0 - .quad Lset18324 -.set Lset18325, Ltmp5815-Lfunc_begin0 - .quad Lset18325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18326, Ltmp5833-Lfunc_begin0 - .quad Lset18326 -.set Lset18327, Ltmp5834-Lfunc_begin0 - .quad Lset18327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18328, Ltmp5852-Lfunc_begin0 - .quad Lset18328 -.set Lset18329, Ltmp5853-Lfunc_begin0 - .quad Lset18329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18330, Ltmp5871-Lfunc_begin0 - .quad Lset18330 -.set Lset18331, Ltmp5872-Lfunc_begin0 - .quad Lset18331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18332, Ltmp5890-Lfunc_begin0 - .quad Lset18332 -.set Lset18333, Ltmp5891-Lfunc_begin0 - .quad Lset18333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18334, Ltmp5920-Lfunc_begin0 - .quad Lset18334 -.set Lset18335, Ltmp5921-Lfunc_begin0 - .quad Lset18335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc254: -.set Lset18336, Ltmp1186-Lfunc_begin0 - .quad Lset18336 -.set Lset18337, Ltmp1187-Lfunc_begin0 - .quad Lset18337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18338, Ltmp1215-Lfunc_begin0 - .quad Lset18338 -.set Lset18339, Ltmp1216-Lfunc_begin0 - .quad Lset18339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18340, Ltmp1237-Lfunc_begin0 - .quad Lset18340 -.set Lset18341, Ltmp1238-Lfunc_begin0 - .quad Lset18341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18342, Ltmp1260-Lfunc_begin0 - .quad Lset18342 -.set Lset18343, Ltmp1261-Lfunc_begin0 - .quad Lset18343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18344, Ltmp1281-Lfunc_begin0 - .quad Lset18344 -.set Lset18345, Ltmp1282-Lfunc_begin0 - .quad Lset18345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18346, Ltmp1314-Lfunc_begin0 - .quad Lset18346 -.set Lset18347, Ltmp1315-Lfunc_begin0 - .quad Lset18347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18348, Ltmp1338-Lfunc_begin0 - .quad Lset18348 -.set Lset18349, Ltmp1339-Lfunc_begin0 - .quad Lset18349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18350, Ltmp1368-Lfunc_begin0 - .quad Lset18350 -.set Lset18351, Ltmp1369-Lfunc_begin0 - .quad Lset18351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18352, Ltmp1462-Lfunc_begin0 - .quad Lset18352 -.set Lset18353, Ltmp1464-Lfunc_begin0 - .quad Lset18353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18354, Ltmp1557-Lfunc_begin0 - .quad Lset18354 -.set Lset18355, Ltmp1559-Lfunc_begin0 - .quad Lset18355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18356, Ltmp1713-Lfunc_begin0 - .quad Lset18356 -.set Lset18357, Ltmp1715-Lfunc_begin0 - .quad Lset18357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18358, Ltmp1864-Lfunc_begin0 - .quad Lset18358 -.set Lset18359, Ltmp1866-Lfunc_begin0 - .quad Lset18359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18360, Ltmp2004-Lfunc_begin0 - .quad Lset18360 -.set Lset18361, Ltmp2006-Lfunc_begin0 - .quad Lset18361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18362, Ltmp2074-Lfunc_begin0 - .quad Lset18362 -.set Lset18363, Ltmp2076-Lfunc_begin0 - .quad Lset18363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18364, Ltmp2120-Lfunc_begin0 - .quad Lset18364 -.set Lset18365, Ltmp2121-Lfunc_begin0 - .quad Lset18365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18366, Ltmp2193-Lfunc_begin0 - .quad Lset18366 -.set Lset18367, Ltmp2195-Lfunc_begin0 - .quad Lset18367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18368, Ltmp2253-Lfunc_begin0 - .quad Lset18368 -.set Lset18369, Ltmp2255-Lfunc_begin0 - .quad Lset18369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18370, Ltmp2302-Lfunc_begin0 - .quad Lset18370 -.set Lset18371, Ltmp2304-Lfunc_begin0 - .quad Lset18371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18372, Ltmp2351-Lfunc_begin0 - .quad Lset18372 -.set Lset18373, Ltmp2353-Lfunc_begin0 - .quad Lset18373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18374, Ltmp2400-Lfunc_begin0 - .quad Lset18374 -.set Lset18375, Ltmp2402-Lfunc_begin0 - .quad Lset18375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18376, Ltmp2444-Lfunc_begin0 - .quad Lset18376 -.set Lset18377, Ltmp2446-Lfunc_begin0 - .quad Lset18377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18378, Ltmp2499-Lfunc_begin0 - .quad Lset18378 -.set Lset18379, Ltmp2501-Lfunc_begin0 - .quad Lset18379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18380, Ltmp2554-Lfunc_begin0 - .quad Lset18380 -.set Lset18381, Ltmp2556-Lfunc_begin0 - .quad Lset18381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18382, Ltmp2609-Lfunc_begin0 - .quad Lset18382 -.set Lset18383, Ltmp2611-Lfunc_begin0 - .quad Lset18383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18384, Ltmp2673-Lfunc_begin0 - .quad Lset18384 -.set Lset18385, Ltmp2675-Lfunc_begin0 - .quad Lset18385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18386, Ltmp2738-Lfunc_begin0 - .quad Lset18386 -.set Lset18387, Ltmp2740-Lfunc_begin0 - .quad Lset18387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18388, Ltmp2811-Lfunc_begin0 - .quad Lset18388 -.set Lset18389, Ltmp2813-Lfunc_begin0 - .quad Lset18389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18390, Ltmp2871-Lfunc_begin0 - .quad Lset18390 -.set Lset18391, Ltmp2873-Lfunc_begin0 - .quad Lset18391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18392, Ltmp2922-Lfunc_begin0 - .quad Lset18392 -.set Lset18393, Ltmp2924-Lfunc_begin0 - .quad Lset18393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18394, Ltmp2957-Lfunc_begin0 - .quad Lset18394 -.set Lset18395, Ltmp2958-Lfunc_begin0 - .quad Lset18395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18396, Ltmp2997-Lfunc_begin0 - .quad Lset18396 -.set Lset18397, Ltmp2999-Lfunc_begin0 - .quad Lset18397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18398, Ltmp3024-Lfunc_begin0 - .quad Lset18398 -.set Lset18399, Ltmp3025-Lfunc_begin0 - .quad Lset18399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18400, Ltmp3047-Lfunc_begin0 - .quad Lset18400 -.set Lset18401, Ltmp3048-Lfunc_begin0 - .quad Lset18401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18402, Ltmp3096-Lfunc_begin0 - .quad Lset18402 -.set Lset18403, Ltmp3097-Lfunc_begin0 - .quad Lset18403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18404, Ltmp3120-Lfunc_begin0 - .quad Lset18404 -.set Lset18405, Ltmp3122-Lfunc_begin0 - .quad Lset18405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18406, Ltmp3161-Lfunc_begin0 - .quad Lset18406 -.set Lset18407, Ltmp3163-Lfunc_begin0 - .quad Lset18407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18408, Ltmp3227-Lfunc_begin0 - .quad Lset18408 -.set Lset18409, Ltmp3228-Lfunc_begin0 - .quad Lset18409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18410, Ltmp3292-Lfunc_begin0 - .quad Lset18410 -.set Lset18411, Ltmp3293-Lfunc_begin0 - .quad Lset18411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18412, Ltmp3329-Lfunc_begin0 - .quad Lset18412 -.set Lset18413, Ltmp3330-Lfunc_begin0 - .quad Lset18413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18414, Ltmp3375-Lfunc_begin0 - .quad Lset18414 -.set Lset18415, Ltmp3376-Lfunc_begin0 - .quad Lset18415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18416, Ltmp3407-Lfunc_begin0 - .quad Lset18416 -.set Lset18417, Ltmp3408-Lfunc_begin0 - .quad Lset18417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18418, Ltmp3435-Lfunc_begin0 - .quad Lset18418 -.set Lset18419, Ltmp3436-Lfunc_begin0 - .quad Lset18419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18420, Ltmp3537-Lfunc_begin0 - .quad Lset18420 -.set Lset18421, Ltmp3538-Lfunc_begin0 - .quad Lset18421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18422, Ltmp3638-Lfunc_begin0 - .quad Lset18422 -.set Lset18423, Ltmp3640-Lfunc_begin0 - .quad Lset18423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18424, Ltmp3685-Lfunc_begin0 - .quad Lset18424 -.set Lset18425, Ltmp3686-Lfunc_begin0 - .quad Lset18425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18426, Ltmp3807-Lfunc_begin0 - .quad Lset18426 -.set Lset18427, Ltmp3809-Lfunc_begin0 - .quad Lset18427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18428, Ltmp3864-Lfunc_begin0 - .quad Lset18428 -.set Lset18429, Ltmp3865-Lfunc_begin0 - .quad Lset18429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18430, Ltmp3933-Lfunc_begin0 - .quad Lset18430 -.set Lset18431, Ltmp3934-Lfunc_begin0 - .quad Lset18431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18432, Ltmp3959-Lfunc_begin0 - .quad Lset18432 -.set Lset18433, Ltmp3960-Lfunc_begin0 - .quad Lset18433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18434, Ltmp3985-Lfunc_begin0 - .quad Lset18434 -.set Lset18435, Ltmp3986-Lfunc_begin0 - .quad Lset18435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18436, Ltmp4011-Lfunc_begin0 - .quad Lset18436 -.set Lset18437, Ltmp4012-Lfunc_begin0 - .quad Lset18437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18438, Ltmp4046-Lfunc_begin0 - .quad Lset18438 -.set Lset18439, Ltmp4047-Lfunc_begin0 - .quad Lset18439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18440, Ltmp4084-Lfunc_begin0 - .quad Lset18440 -.set Lset18441, Ltmp4085-Lfunc_begin0 - .quad Lset18441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18442, Ltmp4106-Lfunc_begin0 - .quad Lset18442 -.set Lset18443, Ltmp4107-Lfunc_begin0 - .quad Lset18443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18444, Ltmp4146-Lfunc_begin0 - .quad Lset18444 -.set Lset18445, Ltmp4147-Lfunc_begin0 - .quad Lset18445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18446, Ltmp4187-Lfunc_begin0 - .quad Lset18446 -.set Lset18447, Ltmp4188-Lfunc_begin0 - .quad Lset18447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18448, Ltmp4227-Lfunc_begin0 - .quad Lset18448 -.set Lset18449, Ltmp4228-Lfunc_begin0 - .quad Lset18449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18450, Ltmp4268-Lfunc_begin0 - .quad Lset18450 -.set Lset18451, Ltmp4269-Lfunc_begin0 - .quad Lset18451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18452, Ltmp4308-Lfunc_begin0 - .quad Lset18452 -.set Lset18453, Ltmp4309-Lfunc_begin0 - .quad Lset18453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18454, Ltmp4349-Lfunc_begin0 - .quad Lset18454 -.set Lset18455, Ltmp4350-Lfunc_begin0 - .quad Lset18455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18456, Ltmp4380-Lfunc_begin0 - .quad Lset18456 -.set Lset18457, Ltmp4381-Lfunc_begin0 - .quad Lset18457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18458, Ltmp4412-Lfunc_begin0 - .quad Lset18458 -.set Lset18459, Ltmp4414-Lfunc_begin0 - .quad Lset18459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18460, Ltmp4454-Lfunc_begin0 - .quad Lset18460 -.set Lset18461, Ltmp4455-Lfunc_begin0 - .quad Lset18461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18462, Ltmp4495-Lfunc_begin0 - .quad Lset18462 -.set Lset18463, Ltmp4496-Lfunc_begin0 - .quad Lset18463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18464, Ltmp4579-Lfunc_begin0 - .quad Lset18464 -.set Lset18465, Ltmp4581-Lfunc_begin0 - .quad Lset18465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18466, Ltmp4649-Lfunc_begin0 - .quad Lset18466 -.set Lset18467, Ltmp4651-Lfunc_begin0 - .quad Lset18467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18468, Ltmp4717-Lfunc_begin0 - .quad Lset18468 -.set Lset18469, Ltmp4719-Lfunc_begin0 - .quad Lset18469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18470, Ltmp4783-Lfunc_begin0 - .quad Lset18470 -.set Lset18471, Ltmp4784-Lfunc_begin0 - .quad Lset18471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18472, Ltmp4813-Lfunc_begin0 - .quad Lset18472 -.set Lset18473, Ltmp4814-Lfunc_begin0 - .quad Lset18473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18474, Ltmp4843-Lfunc_begin0 - .quad Lset18474 -.set Lset18475, Ltmp4844-Lfunc_begin0 - .quad Lset18475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18476, Ltmp4902-Lfunc_begin0 - .quad Lset18476 -.set Lset18477, Ltmp4903-Lfunc_begin0 - .quad Lset18477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18478, Ltmp4943-Lfunc_begin0 - .quad Lset18478 -.set Lset18479, Ltmp4944-Lfunc_begin0 - .quad Lset18479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18480, Ltmp5000-Lfunc_begin0 - .quad Lset18480 -.set Lset18481, Ltmp5001-Lfunc_begin0 - .quad Lset18481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18482, Ltmp5040-Lfunc_begin0 - .quad Lset18482 -.set Lset18483, Ltmp5041-Lfunc_begin0 - .quad Lset18483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18484, Ltmp5078-Lfunc_begin0 - .quad Lset18484 -.set Lset18485, Ltmp5079-Lfunc_begin0 - .quad Lset18485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18486, Ltmp5114-Lfunc_begin0 - .quad Lset18486 -.set Lset18487, Ltmp5115-Lfunc_begin0 - .quad Lset18487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18488, Ltmp5146-Lfunc_begin0 - .quad Lset18488 -.set Lset18489, Ltmp5147-Lfunc_begin0 - .quad Lset18489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18490, Ltmp5178-Lfunc_begin0 - .quad Lset18490 -.set Lset18491, Ltmp5179-Lfunc_begin0 - .quad Lset18491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18492, Ltmp5210-Lfunc_begin0 - .quad Lset18492 -.set Lset18493, Ltmp5211-Lfunc_begin0 - .quad Lset18493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18494, Ltmp5228-Lfunc_begin0 - .quad Lset18494 -.set Lset18495, Ltmp5229-Lfunc_begin0 - .quad Lset18495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18496, Ltmp5246-Lfunc_begin0 - .quad Lset18496 -.set Lset18497, Ltmp5247-Lfunc_begin0 - .quad Lset18497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18498, Ltmp5271-Lfunc_begin0 - .quad Lset18498 -.set Lset18499, Ltmp5272-Lfunc_begin0 - .quad Lset18499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18500, Ltmp5296-Lfunc_begin0 - .quad Lset18500 -.set Lset18501, Ltmp5297-Lfunc_begin0 - .quad Lset18501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18502, Ltmp5322-Lfunc_begin0 - .quad Lset18502 -.set Lset18503, Ltmp5323-Lfunc_begin0 - .quad Lset18503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18504, Ltmp5347-Lfunc_begin0 - .quad Lset18504 -.set Lset18505, Ltmp5348-Lfunc_begin0 - .quad Lset18505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18506, Ltmp5372-Lfunc_begin0 - .quad Lset18506 -.set Lset18507, Ltmp5373-Lfunc_begin0 - .quad Lset18507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18508, Ltmp5397-Lfunc_begin0 - .quad Lset18508 -.set Lset18509, Ltmp5398-Lfunc_begin0 - .quad Lset18509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18510, Ltmp5422-Lfunc_begin0 - .quad Lset18510 -.set Lset18511, Ltmp5423-Lfunc_begin0 - .quad Lset18511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18512, Ltmp5447-Lfunc_begin0 - .quad Lset18512 -.set Lset18513, Ltmp5448-Lfunc_begin0 - .quad Lset18513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18514, Ltmp5472-Lfunc_begin0 - .quad Lset18514 -.set Lset18515, Ltmp5473-Lfunc_begin0 - .quad Lset18515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18516, Ltmp5498-Lfunc_begin0 - .quad Lset18516 -.set Lset18517, Ltmp5499-Lfunc_begin0 - .quad Lset18517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18518, Ltmp5523-Lfunc_begin0 - .quad Lset18518 -.set Lset18519, Ltmp5524-Lfunc_begin0 - .quad Lset18519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18520, Ltmp5548-Lfunc_begin0 - .quad Lset18520 -.set Lset18521, Ltmp5549-Lfunc_begin0 - .quad Lset18521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18522, Ltmp5573-Lfunc_begin0 - .quad Lset18522 -.set Lset18523, Ltmp5574-Lfunc_begin0 - .quad Lset18523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18524, Ltmp5598-Lfunc_begin0 - .quad Lset18524 -.set Lset18525, Ltmp5599-Lfunc_begin0 - .quad Lset18525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18526, Ltmp5631-Lfunc_begin0 - .quad Lset18526 -.set Lset18527, Ltmp5632-Lfunc_begin0 - .quad Lset18527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18528, Ltmp5662-Lfunc_begin0 - .quad Lset18528 -.set Lset18529, Ltmp5663-Lfunc_begin0 - .quad Lset18529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18530, Ltmp5687-Lfunc_begin0 - .quad Lset18530 -.set Lset18531, Ltmp5688-Lfunc_begin0 - .quad Lset18531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18532, Ltmp5712-Lfunc_begin0 - .quad Lset18532 -.set Lset18533, Ltmp5713-Lfunc_begin0 - .quad Lset18533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18534, Ltmp5737-Lfunc_begin0 - .quad Lset18534 -.set Lset18535, Ltmp5738-Lfunc_begin0 - .quad Lset18535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18536, Ltmp5767-Lfunc_begin0 - .quad Lset18536 -.set Lset18537, Ltmp5768-Lfunc_begin0 - .quad Lset18537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18538, Ltmp5795-Lfunc_begin0 - .quad Lset18538 -.set Lset18539, Ltmp5796-Lfunc_begin0 - .quad Lset18539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18540, Ltmp5814-Lfunc_begin0 - .quad Lset18540 -.set Lset18541, Ltmp5815-Lfunc_begin0 - .quad Lset18541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18542, Ltmp5833-Lfunc_begin0 - .quad Lset18542 -.set Lset18543, Ltmp5834-Lfunc_begin0 - .quad Lset18543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18544, Ltmp5852-Lfunc_begin0 - .quad Lset18544 -.set Lset18545, Ltmp5853-Lfunc_begin0 - .quad Lset18545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18546, Ltmp5871-Lfunc_begin0 - .quad Lset18546 -.set Lset18547, Ltmp5872-Lfunc_begin0 - .quad Lset18547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18548, Ltmp5890-Lfunc_begin0 - .quad Lset18548 -.set Lset18549, Ltmp5891-Lfunc_begin0 - .quad Lset18549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18550, Ltmp5920-Lfunc_begin0 - .quad Lset18550 -.set Lset18551, Ltmp5921-Lfunc_begin0 - .quad Lset18551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc255: -.set Lset18552, Ltmp1186-Lfunc_begin0 - .quad Lset18552 -.set Lset18553, Ltmp1187-Lfunc_begin0 - .quad Lset18553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18554, Ltmp1215-Lfunc_begin0 - .quad Lset18554 -.set Lset18555, Ltmp1216-Lfunc_begin0 - .quad Lset18555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18556, Ltmp1237-Lfunc_begin0 - .quad Lset18556 -.set Lset18557, Ltmp1238-Lfunc_begin0 - .quad Lset18557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18558, Ltmp1260-Lfunc_begin0 - .quad Lset18558 -.set Lset18559, Ltmp1261-Lfunc_begin0 - .quad Lset18559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18560, Ltmp1281-Lfunc_begin0 - .quad Lset18560 -.set Lset18561, Ltmp1282-Lfunc_begin0 - .quad Lset18561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18562, Ltmp1314-Lfunc_begin0 - .quad Lset18562 -.set Lset18563, Ltmp1315-Lfunc_begin0 - .quad Lset18563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18564, Ltmp1338-Lfunc_begin0 - .quad Lset18564 -.set Lset18565, Ltmp1339-Lfunc_begin0 - .quad Lset18565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18566, Ltmp1368-Lfunc_begin0 - .quad Lset18566 -.set Lset18567, Ltmp1369-Lfunc_begin0 - .quad Lset18567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18568, Ltmp1462-Lfunc_begin0 - .quad Lset18568 -.set Lset18569, Ltmp1464-Lfunc_begin0 - .quad Lset18569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18570, Ltmp1557-Lfunc_begin0 - .quad Lset18570 -.set Lset18571, Ltmp1559-Lfunc_begin0 - .quad Lset18571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18572, Ltmp1713-Lfunc_begin0 - .quad Lset18572 -.set Lset18573, Ltmp1715-Lfunc_begin0 - .quad Lset18573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18574, Ltmp1864-Lfunc_begin0 - .quad Lset18574 -.set Lset18575, Ltmp1866-Lfunc_begin0 - .quad Lset18575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18576, Ltmp2004-Lfunc_begin0 - .quad Lset18576 -.set Lset18577, Ltmp2006-Lfunc_begin0 - .quad Lset18577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18578, Ltmp2074-Lfunc_begin0 - .quad Lset18578 -.set Lset18579, Ltmp2076-Lfunc_begin0 - .quad Lset18579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18580, Ltmp2120-Lfunc_begin0 - .quad Lset18580 -.set Lset18581, Ltmp2121-Lfunc_begin0 - .quad Lset18581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18582, Ltmp2193-Lfunc_begin0 - .quad Lset18582 -.set Lset18583, Ltmp2195-Lfunc_begin0 - .quad Lset18583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18584, Ltmp2253-Lfunc_begin0 - .quad Lset18584 -.set Lset18585, Ltmp2255-Lfunc_begin0 - .quad Lset18585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18586, Ltmp2302-Lfunc_begin0 - .quad Lset18586 -.set Lset18587, Ltmp2304-Lfunc_begin0 - .quad Lset18587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18588, Ltmp2351-Lfunc_begin0 - .quad Lset18588 -.set Lset18589, Ltmp2353-Lfunc_begin0 - .quad Lset18589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18590, Ltmp2400-Lfunc_begin0 - .quad Lset18590 -.set Lset18591, Ltmp2402-Lfunc_begin0 - .quad Lset18591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18592, Ltmp2444-Lfunc_begin0 - .quad Lset18592 -.set Lset18593, Ltmp2446-Lfunc_begin0 - .quad Lset18593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18594, Ltmp2499-Lfunc_begin0 - .quad Lset18594 -.set Lset18595, Ltmp2501-Lfunc_begin0 - .quad Lset18595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18596, Ltmp2554-Lfunc_begin0 - .quad Lset18596 -.set Lset18597, Ltmp2556-Lfunc_begin0 - .quad Lset18597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18598, Ltmp2609-Lfunc_begin0 - .quad Lset18598 -.set Lset18599, Ltmp2611-Lfunc_begin0 - .quad Lset18599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18600, Ltmp2673-Lfunc_begin0 - .quad Lset18600 -.set Lset18601, Ltmp2675-Lfunc_begin0 - .quad Lset18601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18602, Ltmp2738-Lfunc_begin0 - .quad Lset18602 -.set Lset18603, Ltmp2740-Lfunc_begin0 - .quad Lset18603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18604, Ltmp2811-Lfunc_begin0 - .quad Lset18604 -.set Lset18605, Ltmp2813-Lfunc_begin0 - .quad Lset18605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18606, Ltmp2871-Lfunc_begin0 - .quad Lset18606 -.set Lset18607, Ltmp2873-Lfunc_begin0 - .quad Lset18607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18608, Ltmp2922-Lfunc_begin0 - .quad Lset18608 -.set Lset18609, Ltmp2924-Lfunc_begin0 - .quad Lset18609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18610, Ltmp2957-Lfunc_begin0 - .quad Lset18610 -.set Lset18611, Ltmp2958-Lfunc_begin0 - .quad Lset18611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18612, Ltmp2997-Lfunc_begin0 - .quad Lset18612 -.set Lset18613, Ltmp2999-Lfunc_begin0 - .quad Lset18613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18614, Ltmp3024-Lfunc_begin0 - .quad Lset18614 -.set Lset18615, Ltmp3025-Lfunc_begin0 - .quad Lset18615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18616, Ltmp3047-Lfunc_begin0 - .quad Lset18616 -.set Lset18617, Ltmp3048-Lfunc_begin0 - .quad Lset18617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18618, Ltmp3096-Lfunc_begin0 - .quad Lset18618 -.set Lset18619, Ltmp3097-Lfunc_begin0 - .quad Lset18619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18620, Ltmp3120-Lfunc_begin0 - .quad Lset18620 -.set Lset18621, Ltmp3122-Lfunc_begin0 - .quad Lset18621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18622, Ltmp3161-Lfunc_begin0 - .quad Lset18622 -.set Lset18623, Ltmp3163-Lfunc_begin0 - .quad Lset18623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18624, Ltmp3227-Lfunc_begin0 - .quad Lset18624 -.set Lset18625, Ltmp3228-Lfunc_begin0 - .quad Lset18625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18626, Ltmp3292-Lfunc_begin0 - .quad Lset18626 -.set Lset18627, Ltmp3293-Lfunc_begin0 - .quad Lset18627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18628, Ltmp3329-Lfunc_begin0 - .quad Lset18628 -.set Lset18629, Ltmp3330-Lfunc_begin0 - .quad Lset18629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18630, Ltmp3375-Lfunc_begin0 - .quad Lset18630 -.set Lset18631, Ltmp3376-Lfunc_begin0 - .quad Lset18631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18632, Ltmp3407-Lfunc_begin0 - .quad Lset18632 -.set Lset18633, Ltmp3408-Lfunc_begin0 - .quad Lset18633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18634, Ltmp3435-Lfunc_begin0 - .quad Lset18634 -.set Lset18635, Ltmp3436-Lfunc_begin0 - .quad Lset18635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18636, Ltmp3537-Lfunc_begin0 - .quad Lset18636 -.set Lset18637, Ltmp3538-Lfunc_begin0 - .quad Lset18637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18638, Ltmp3638-Lfunc_begin0 - .quad Lset18638 -.set Lset18639, Ltmp3640-Lfunc_begin0 - .quad Lset18639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18640, Ltmp3685-Lfunc_begin0 - .quad Lset18640 -.set Lset18641, Ltmp3686-Lfunc_begin0 - .quad Lset18641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18642, Ltmp3807-Lfunc_begin0 - .quad Lset18642 -.set Lset18643, Ltmp3809-Lfunc_begin0 - .quad Lset18643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18644, Ltmp3864-Lfunc_begin0 - .quad Lset18644 -.set Lset18645, Ltmp3865-Lfunc_begin0 - .quad Lset18645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18646, Ltmp3933-Lfunc_begin0 - .quad Lset18646 -.set Lset18647, Ltmp3934-Lfunc_begin0 - .quad Lset18647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18648, Ltmp3959-Lfunc_begin0 - .quad Lset18648 -.set Lset18649, Ltmp3960-Lfunc_begin0 - .quad Lset18649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18650, Ltmp3985-Lfunc_begin0 - .quad Lset18650 -.set Lset18651, Ltmp3986-Lfunc_begin0 - .quad Lset18651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18652, Ltmp4011-Lfunc_begin0 - .quad Lset18652 -.set Lset18653, Ltmp4012-Lfunc_begin0 - .quad Lset18653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18654, Ltmp4046-Lfunc_begin0 - .quad Lset18654 -.set Lset18655, Ltmp4047-Lfunc_begin0 - .quad Lset18655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18656, Ltmp4084-Lfunc_begin0 - .quad Lset18656 -.set Lset18657, Ltmp4085-Lfunc_begin0 - .quad Lset18657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18658, Ltmp4106-Lfunc_begin0 - .quad Lset18658 -.set Lset18659, Ltmp4107-Lfunc_begin0 - .quad Lset18659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18660, Ltmp4146-Lfunc_begin0 - .quad Lset18660 -.set Lset18661, Ltmp4147-Lfunc_begin0 - .quad Lset18661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18662, Ltmp4187-Lfunc_begin0 - .quad Lset18662 -.set Lset18663, Ltmp4188-Lfunc_begin0 - .quad Lset18663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18664, Ltmp4227-Lfunc_begin0 - .quad Lset18664 -.set Lset18665, Ltmp4228-Lfunc_begin0 - .quad Lset18665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18666, Ltmp4268-Lfunc_begin0 - .quad Lset18666 -.set Lset18667, Ltmp4269-Lfunc_begin0 - .quad Lset18667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18668, Ltmp4308-Lfunc_begin0 - .quad Lset18668 -.set Lset18669, Ltmp4309-Lfunc_begin0 - .quad Lset18669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18670, Ltmp4349-Lfunc_begin0 - .quad Lset18670 -.set Lset18671, Ltmp4350-Lfunc_begin0 - .quad Lset18671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18672, Ltmp4380-Lfunc_begin0 - .quad Lset18672 -.set Lset18673, Ltmp4381-Lfunc_begin0 - .quad Lset18673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18674, Ltmp4412-Lfunc_begin0 - .quad Lset18674 -.set Lset18675, Ltmp4414-Lfunc_begin0 - .quad Lset18675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18676, Ltmp4454-Lfunc_begin0 - .quad Lset18676 -.set Lset18677, Ltmp4455-Lfunc_begin0 - .quad Lset18677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18678, Ltmp4495-Lfunc_begin0 - .quad Lset18678 -.set Lset18679, Ltmp4496-Lfunc_begin0 - .quad Lset18679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18680, Ltmp4579-Lfunc_begin0 - .quad Lset18680 -.set Lset18681, Ltmp4581-Lfunc_begin0 - .quad Lset18681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18682, Ltmp4649-Lfunc_begin0 - .quad Lset18682 -.set Lset18683, Ltmp4651-Lfunc_begin0 - .quad Lset18683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18684, Ltmp4717-Lfunc_begin0 - .quad Lset18684 -.set Lset18685, Ltmp4719-Lfunc_begin0 - .quad Lset18685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18686, Ltmp4783-Lfunc_begin0 - .quad Lset18686 -.set Lset18687, Ltmp4784-Lfunc_begin0 - .quad Lset18687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18688, Ltmp4813-Lfunc_begin0 - .quad Lset18688 -.set Lset18689, Ltmp4814-Lfunc_begin0 - .quad Lset18689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18690, Ltmp4843-Lfunc_begin0 - .quad Lset18690 -.set Lset18691, Ltmp4844-Lfunc_begin0 - .quad Lset18691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18692, Ltmp4902-Lfunc_begin0 - .quad Lset18692 -.set Lset18693, Ltmp4903-Lfunc_begin0 - .quad Lset18693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18694, Ltmp4943-Lfunc_begin0 - .quad Lset18694 -.set Lset18695, Ltmp4944-Lfunc_begin0 - .quad Lset18695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18696, Ltmp5000-Lfunc_begin0 - .quad Lset18696 -.set Lset18697, Ltmp5001-Lfunc_begin0 - .quad Lset18697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18698, Ltmp5040-Lfunc_begin0 - .quad Lset18698 -.set Lset18699, Ltmp5041-Lfunc_begin0 - .quad Lset18699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18700, Ltmp5078-Lfunc_begin0 - .quad Lset18700 -.set Lset18701, Ltmp5079-Lfunc_begin0 - .quad Lset18701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18702, Ltmp5114-Lfunc_begin0 - .quad Lset18702 -.set Lset18703, Ltmp5115-Lfunc_begin0 - .quad Lset18703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18704, Ltmp5146-Lfunc_begin0 - .quad Lset18704 -.set Lset18705, Ltmp5147-Lfunc_begin0 - .quad Lset18705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18706, Ltmp5178-Lfunc_begin0 - .quad Lset18706 -.set Lset18707, Ltmp5179-Lfunc_begin0 - .quad Lset18707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18708, Ltmp5210-Lfunc_begin0 - .quad Lset18708 -.set Lset18709, Ltmp5211-Lfunc_begin0 - .quad Lset18709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18710, Ltmp5228-Lfunc_begin0 - .quad Lset18710 -.set Lset18711, Ltmp5229-Lfunc_begin0 - .quad Lset18711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18712, Ltmp5246-Lfunc_begin0 - .quad Lset18712 -.set Lset18713, Ltmp5247-Lfunc_begin0 - .quad Lset18713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18714, Ltmp5271-Lfunc_begin0 - .quad Lset18714 -.set Lset18715, Ltmp5272-Lfunc_begin0 - .quad Lset18715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18716, Ltmp5296-Lfunc_begin0 - .quad Lset18716 -.set Lset18717, Ltmp5297-Lfunc_begin0 - .quad Lset18717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18718, Ltmp5322-Lfunc_begin0 - .quad Lset18718 -.set Lset18719, Ltmp5323-Lfunc_begin0 - .quad Lset18719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18720, Ltmp5347-Lfunc_begin0 - .quad Lset18720 -.set Lset18721, Ltmp5348-Lfunc_begin0 - .quad Lset18721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18722, Ltmp5372-Lfunc_begin0 - .quad Lset18722 -.set Lset18723, Ltmp5373-Lfunc_begin0 - .quad Lset18723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18724, Ltmp5397-Lfunc_begin0 - .quad Lset18724 -.set Lset18725, Ltmp5398-Lfunc_begin0 - .quad Lset18725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18726, Ltmp5422-Lfunc_begin0 - .quad Lset18726 -.set Lset18727, Ltmp5423-Lfunc_begin0 - .quad Lset18727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18728, Ltmp5447-Lfunc_begin0 - .quad Lset18728 -.set Lset18729, Ltmp5448-Lfunc_begin0 - .quad Lset18729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18730, Ltmp5472-Lfunc_begin0 - .quad Lset18730 -.set Lset18731, Ltmp5473-Lfunc_begin0 - .quad Lset18731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18732, Ltmp5498-Lfunc_begin0 - .quad Lset18732 -.set Lset18733, Ltmp5499-Lfunc_begin0 - .quad Lset18733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18734, Ltmp5523-Lfunc_begin0 - .quad Lset18734 -.set Lset18735, Ltmp5524-Lfunc_begin0 - .quad Lset18735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18736, Ltmp5548-Lfunc_begin0 - .quad Lset18736 -.set Lset18737, Ltmp5549-Lfunc_begin0 - .quad Lset18737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18738, Ltmp5573-Lfunc_begin0 - .quad Lset18738 -.set Lset18739, Ltmp5574-Lfunc_begin0 - .quad Lset18739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18740, Ltmp5598-Lfunc_begin0 - .quad Lset18740 -.set Lset18741, Ltmp5599-Lfunc_begin0 - .quad Lset18741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18742, Ltmp5631-Lfunc_begin0 - .quad Lset18742 -.set Lset18743, Ltmp5632-Lfunc_begin0 - .quad Lset18743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18744, Ltmp5662-Lfunc_begin0 - .quad Lset18744 -.set Lset18745, Ltmp5663-Lfunc_begin0 - .quad Lset18745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18746, Ltmp5687-Lfunc_begin0 - .quad Lset18746 -.set Lset18747, Ltmp5688-Lfunc_begin0 - .quad Lset18747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18748, Ltmp5712-Lfunc_begin0 - .quad Lset18748 -.set Lset18749, Ltmp5713-Lfunc_begin0 - .quad Lset18749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18750, Ltmp5737-Lfunc_begin0 - .quad Lset18750 -.set Lset18751, Ltmp5738-Lfunc_begin0 - .quad Lset18751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18752, Ltmp5767-Lfunc_begin0 - .quad Lset18752 -.set Lset18753, Ltmp5768-Lfunc_begin0 - .quad Lset18753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18754, Ltmp5795-Lfunc_begin0 - .quad Lset18754 -.set Lset18755, Ltmp5796-Lfunc_begin0 - .quad Lset18755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18756, Ltmp5814-Lfunc_begin0 - .quad Lset18756 -.set Lset18757, Ltmp5815-Lfunc_begin0 - .quad Lset18757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18758, Ltmp5833-Lfunc_begin0 - .quad Lset18758 -.set Lset18759, Ltmp5834-Lfunc_begin0 - .quad Lset18759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18760, Ltmp5852-Lfunc_begin0 - .quad Lset18760 -.set Lset18761, Ltmp5853-Lfunc_begin0 - .quad Lset18761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18762, Ltmp5871-Lfunc_begin0 - .quad Lset18762 -.set Lset18763, Ltmp5872-Lfunc_begin0 - .quad Lset18763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18764, Ltmp5890-Lfunc_begin0 - .quad Lset18764 -.set Lset18765, Ltmp5891-Lfunc_begin0 - .quad Lset18765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18766, Ltmp5920-Lfunc_begin0 - .quad Lset18766 -.set Lset18767, Ltmp5921-Lfunc_begin0 - .quad Lset18767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc256: -.set Lset18768, Ltmp1186-Lfunc_begin0 - .quad Lset18768 -.set Lset18769, Ltmp1187-Lfunc_begin0 - .quad Lset18769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18770, Ltmp1215-Lfunc_begin0 - .quad Lset18770 -.set Lset18771, Ltmp1216-Lfunc_begin0 - .quad Lset18771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18772, Ltmp1237-Lfunc_begin0 - .quad Lset18772 -.set Lset18773, Ltmp1238-Lfunc_begin0 - .quad Lset18773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18774, Ltmp1260-Lfunc_begin0 - .quad Lset18774 -.set Lset18775, Ltmp1261-Lfunc_begin0 - .quad Lset18775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18776, Ltmp1281-Lfunc_begin0 - .quad Lset18776 -.set Lset18777, Ltmp1282-Lfunc_begin0 - .quad Lset18777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18778, Ltmp1314-Lfunc_begin0 - .quad Lset18778 -.set Lset18779, Ltmp1315-Lfunc_begin0 - .quad Lset18779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18780, Ltmp1338-Lfunc_begin0 - .quad Lset18780 -.set Lset18781, Ltmp1339-Lfunc_begin0 - .quad Lset18781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18782, Ltmp1368-Lfunc_begin0 - .quad Lset18782 -.set Lset18783, Ltmp1369-Lfunc_begin0 - .quad Lset18783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18784, Ltmp1462-Lfunc_begin0 - .quad Lset18784 -.set Lset18785, Ltmp1464-Lfunc_begin0 - .quad Lset18785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18786, Ltmp1557-Lfunc_begin0 - .quad Lset18786 -.set Lset18787, Ltmp1559-Lfunc_begin0 - .quad Lset18787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18788, Ltmp1713-Lfunc_begin0 - .quad Lset18788 -.set Lset18789, Ltmp1715-Lfunc_begin0 - .quad Lset18789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18790, Ltmp1864-Lfunc_begin0 - .quad Lset18790 -.set Lset18791, Ltmp1866-Lfunc_begin0 - .quad Lset18791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18792, Ltmp2004-Lfunc_begin0 - .quad Lset18792 -.set Lset18793, Ltmp2006-Lfunc_begin0 - .quad Lset18793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18794, Ltmp2074-Lfunc_begin0 - .quad Lset18794 -.set Lset18795, Ltmp2076-Lfunc_begin0 - .quad Lset18795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18796, Ltmp2120-Lfunc_begin0 - .quad Lset18796 -.set Lset18797, Ltmp2121-Lfunc_begin0 - .quad Lset18797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18798, Ltmp2193-Lfunc_begin0 - .quad Lset18798 -.set Lset18799, Ltmp2195-Lfunc_begin0 - .quad Lset18799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18800, Ltmp2253-Lfunc_begin0 - .quad Lset18800 -.set Lset18801, Ltmp2255-Lfunc_begin0 - .quad Lset18801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18802, Ltmp2302-Lfunc_begin0 - .quad Lset18802 -.set Lset18803, Ltmp2304-Lfunc_begin0 - .quad Lset18803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18804, Ltmp2351-Lfunc_begin0 - .quad Lset18804 -.set Lset18805, Ltmp2353-Lfunc_begin0 - .quad Lset18805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18806, Ltmp2400-Lfunc_begin0 - .quad Lset18806 -.set Lset18807, Ltmp2402-Lfunc_begin0 - .quad Lset18807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18808, Ltmp2444-Lfunc_begin0 - .quad Lset18808 -.set Lset18809, Ltmp2446-Lfunc_begin0 - .quad Lset18809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18810, Ltmp2499-Lfunc_begin0 - .quad Lset18810 -.set Lset18811, Ltmp2501-Lfunc_begin0 - .quad Lset18811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18812, Ltmp2554-Lfunc_begin0 - .quad Lset18812 -.set Lset18813, Ltmp2556-Lfunc_begin0 - .quad Lset18813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18814, Ltmp2609-Lfunc_begin0 - .quad Lset18814 -.set Lset18815, Ltmp2611-Lfunc_begin0 - .quad Lset18815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18816, Ltmp2673-Lfunc_begin0 - .quad Lset18816 -.set Lset18817, Ltmp2675-Lfunc_begin0 - .quad Lset18817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18818, Ltmp2738-Lfunc_begin0 - .quad Lset18818 -.set Lset18819, Ltmp2740-Lfunc_begin0 - .quad Lset18819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18820, Ltmp2811-Lfunc_begin0 - .quad Lset18820 -.set Lset18821, Ltmp2813-Lfunc_begin0 - .quad Lset18821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18822, Ltmp2871-Lfunc_begin0 - .quad Lset18822 -.set Lset18823, Ltmp2873-Lfunc_begin0 - .quad Lset18823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18824, Ltmp2922-Lfunc_begin0 - .quad Lset18824 -.set Lset18825, Ltmp2924-Lfunc_begin0 - .quad Lset18825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18826, Ltmp2957-Lfunc_begin0 - .quad Lset18826 -.set Lset18827, Ltmp2958-Lfunc_begin0 - .quad Lset18827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18828, Ltmp2997-Lfunc_begin0 - .quad Lset18828 -.set Lset18829, Ltmp2999-Lfunc_begin0 - .quad Lset18829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18830, Ltmp3024-Lfunc_begin0 - .quad Lset18830 -.set Lset18831, Ltmp3025-Lfunc_begin0 - .quad Lset18831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18832, Ltmp3047-Lfunc_begin0 - .quad Lset18832 -.set Lset18833, Ltmp3048-Lfunc_begin0 - .quad Lset18833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18834, Ltmp3096-Lfunc_begin0 - .quad Lset18834 -.set Lset18835, Ltmp3097-Lfunc_begin0 - .quad Lset18835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18836, Ltmp3120-Lfunc_begin0 - .quad Lset18836 -.set Lset18837, Ltmp3122-Lfunc_begin0 - .quad Lset18837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18838, Ltmp3161-Lfunc_begin0 - .quad Lset18838 -.set Lset18839, Ltmp3163-Lfunc_begin0 - .quad Lset18839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18840, Ltmp3227-Lfunc_begin0 - .quad Lset18840 -.set Lset18841, Ltmp3228-Lfunc_begin0 - .quad Lset18841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18842, Ltmp3292-Lfunc_begin0 - .quad Lset18842 -.set Lset18843, Ltmp3293-Lfunc_begin0 - .quad Lset18843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18844, Ltmp3329-Lfunc_begin0 - .quad Lset18844 -.set Lset18845, Ltmp3330-Lfunc_begin0 - .quad Lset18845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18846, Ltmp3375-Lfunc_begin0 - .quad Lset18846 -.set Lset18847, Ltmp3376-Lfunc_begin0 - .quad Lset18847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18848, Ltmp3407-Lfunc_begin0 - .quad Lset18848 -.set Lset18849, Ltmp3408-Lfunc_begin0 - .quad Lset18849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18850, Ltmp3435-Lfunc_begin0 - .quad Lset18850 -.set Lset18851, Ltmp3436-Lfunc_begin0 - .quad Lset18851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18852, Ltmp3537-Lfunc_begin0 - .quad Lset18852 -.set Lset18853, Ltmp3538-Lfunc_begin0 - .quad Lset18853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18854, Ltmp3638-Lfunc_begin0 - .quad Lset18854 -.set Lset18855, Ltmp3640-Lfunc_begin0 - .quad Lset18855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18856, Ltmp3685-Lfunc_begin0 - .quad Lset18856 -.set Lset18857, Ltmp3686-Lfunc_begin0 - .quad Lset18857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18858, Ltmp3807-Lfunc_begin0 - .quad Lset18858 -.set Lset18859, Ltmp3809-Lfunc_begin0 - .quad Lset18859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18860, Ltmp3864-Lfunc_begin0 - .quad Lset18860 -.set Lset18861, Ltmp3865-Lfunc_begin0 - .quad Lset18861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18862, Ltmp3933-Lfunc_begin0 - .quad Lset18862 -.set Lset18863, Ltmp3934-Lfunc_begin0 - .quad Lset18863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18864, Ltmp3959-Lfunc_begin0 - .quad Lset18864 -.set Lset18865, Ltmp3960-Lfunc_begin0 - .quad Lset18865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18866, Ltmp3985-Lfunc_begin0 - .quad Lset18866 -.set Lset18867, Ltmp3986-Lfunc_begin0 - .quad Lset18867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18868, Ltmp4011-Lfunc_begin0 - .quad Lset18868 -.set Lset18869, Ltmp4012-Lfunc_begin0 - .quad Lset18869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18870, Ltmp4046-Lfunc_begin0 - .quad Lset18870 -.set Lset18871, Ltmp4047-Lfunc_begin0 - .quad Lset18871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18872, Ltmp4084-Lfunc_begin0 - .quad Lset18872 -.set Lset18873, Ltmp4085-Lfunc_begin0 - .quad Lset18873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18874, Ltmp4106-Lfunc_begin0 - .quad Lset18874 -.set Lset18875, Ltmp4107-Lfunc_begin0 - .quad Lset18875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18876, Ltmp4146-Lfunc_begin0 - .quad Lset18876 -.set Lset18877, Ltmp4147-Lfunc_begin0 - .quad Lset18877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18878, Ltmp4187-Lfunc_begin0 - .quad Lset18878 -.set Lset18879, Ltmp4188-Lfunc_begin0 - .quad Lset18879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18880, Ltmp4227-Lfunc_begin0 - .quad Lset18880 -.set Lset18881, Ltmp4228-Lfunc_begin0 - .quad Lset18881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18882, Ltmp4268-Lfunc_begin0 - .quad Lset18882 -.set Lset18883, Ltmp4269-Lfunc_begin0 - .quad Lset18883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18884, Ltmp4308-Lfunc_begin0 - .quad Lset18884 -.set Lset18885, Ltmp4309-Lfunc_begin0 - .quad Lset18885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18886, Ltmp4349-Lfunc_begin0 - .quad Lset18886 -.set Lset18887, Ltmp4350-Lfunc_begin0 - .quad Lset18887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18888, Ltmp4380-Lfunc_begin0 - .quad Lset18888 -.set Lset18889, Ltmp4381-Lfunc_begin0 - .quad Lset18889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18890, Ltmp4412-Lfunc_begin0 - .quad Lset18890 -.set Lset18891, Ltmp4414-Lfunc_begin0 - .quad Lset18891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18892, Ltmp4454-Lfunc_begin0 - .quad Lset18892 -.set Lset18893, Ltmp4455-Lfunc_begin0 - .quad Lset18893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18894, Ltmp4495-Lfunc_begin0 - .quad Lset18894 -.set Lset18895, Ltmp4496-Lfunc_begin0 - .quad Lset18895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18896, Ltmp4579-Lfunc_begin0 - .quad Lset18896 -.set Lset18897, Ltmp4581-Lfunc_begin0 - .quad Lset18897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18898, Ltmp4649-Lfunc_begin0 - .quad Lset18898 -.set Lset18899, Ltmp4651-Lfunc_begin0 - .quad Lset18899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18900, Ltmp4717-Lfunc_begin0 - .quad Lset18900 -.set Lset18901, Ltmp4719-Lfunc_begin0 - .quad Lset18901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18902, Ltmp4783-Lfunc_begin0 - .quad Lset18902 -.set Lset18903, Ltmp4784-Lfunc_begin0 - .quad Lset18903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18904, Ltmp4813-Lfunc_begin0 - .quad Lset18904 -.set Lset18905, Ltmp4814-Lfunc_begin0 - .quad Lset18905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18906, Ltmp4843-Lfunc_begin0 - .quad Lset18906 -.set Lset18907, Ltmp4844-Lfunc_begin0 - .quad Lset18907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18908, Ltmp4902-Lfunc_begin0 - .quad Lset18908 -.set Lset18909, Ltmp4903-Lfunc_begin0 - .quad Lset18909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18910, Ltmp4943-Lfunc_begin0 - .quad Lset18910 -.set Lset18911, Ltmp4944-Lfunc_begin0 - .quad Lset18911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18912, Ltmp5000-Lfunc_begin0 - .quad Lset18912 -.set Lset18913, Ltmp5001-Lfunc_begin0 - .quad Lset18913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18914, Ltmp5040-Lfunc_begin0 - .quad Lset18914 -.set Lset18915, Ltmp5041-Lfunc_begin0 - .quad Lset18915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18916, Ltmp5078-Lfunc_begin0 - .quad Lset18916 -.set Lset18917, Ltmp5079-Lfunc_begin0 - .quad Lset18917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18918, Ltmp5114-Lfunc_begin0 - .quad Lset18918 -.set Lset18919, Ltmp5115-Lfunc_begin0 - .quad Lset18919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18920, Ltmp5146-Lfunc_begin0 - .quad Lset18920 -.set Lset18921, Ltmp5147-Lfunc_begin0 - .quad Lset18921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18922, Ltmp5178-Lfunc_begin0 - .quad Lset18922 -.set Lset18923, Ltmp5179-Lfunc_begin0 - .quad Lset18923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18924, Ltmp5210-Lfunc_begin0 - .quad Lset18924 -.set Lset18925, Ltmp5211-Lfunc_begin0 - .quad Lset18925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18926, Ltmp5228-Lfunc_begin0 - .quad Lset18926 -.set Lset18927, Ltmp5229-Lfunc_begin0 - .quad Lset18927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18928, Ltmp5246-Lfunc_begin0 - .quad Lset18928 -.set Lset18929, Ltmp5247-Lfunc_begin0 - .quad Lset18929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18930, Ltmp5271-Lfunc_begin0 - .quad Lset18930 -.set Lset18931, Ltmp5272-Lfunc_begin0 - .quad Lset18931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18932, Ltmp5296-Lfunc_begin0 - .quad Lset18932 -.set Lset18933, Ltmp5297-Lfunc_begin0 - .quad Lset18933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18934, Ltmp5322-Lfunc_begin0 - .quad Lset18934 -.set Lset18935, Ltmp5323-Lfunc_begin0 - .quad Lset18935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18936, Ltmp5347-Lfunc_begin0 - .quad Lset18936 -.set Lset18937, Ltmp5348-Lfunc_begin0 - .quad Lset18937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18938, Ltmp5372-Lfunc_begin0 - .quad Lset18938 -.set Lset18939, Ltmp5373-Lfunc_begin0 - .quad Lset18939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18940, Ltmp5397-Lfunc_begin0 - .quad Lset18940 -.set Lset18941, Ltmp5398-Lfunc_begin0 - .quad Lset18941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18942, Ltmp5422-Lfunc_begin0 - .quad Lset18942 -.set Lset18943, Ltmp5423-Lfunc_begin0 - .quad Lset18943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18944, Ltmp5447-Lfunc_begin0 - .quad Lset18944 -.set Lset18945, Ltmp5448-Lfunc_begin0 - .quad Lset18945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18946, Ltmp5472-Lfunc_begin0 - .quad Lset18946 -.set Lset18947, Ltmp5473-Lfunc_begin0 - .quad Lset18947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18948, Ltmp5498-Lfunc_begin0 - .quad Lset18948 -.set Lset18949, Ltmp5499-Lfunc_begin0 - .quad Lset18949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18950, Ltmp5523-Lfunc_begin0 - .quad Lset18950 -.set Lset18951, Ltmp5524-Lfunc_begin0 - .quad Lset18951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18952, Ltmp5548-Lfunc_begin0 - .quad Lset18952 -.set Lset18953, Ltmp5549-Lfunc_begin0 - .quad Lset18953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18954, Ltmp5573-Lfunc_begin0 - .quad Lset18954 -.set Lset18955, Ltmp5574-Lfunc_begin0 - .quad Lset18955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18956, Ltmp5598-Lfunc_begin0 - .quad Lset18956 -.set Lset18957, Ltmp5599-Lfunc_begin0 - .quad Lset18957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18958, Ltmp5631-Lfunc_begin0 - .quad Lset18958 -.set Lset18959, Ltmp5632-Lfunc_begin0 - .quad Lset18959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18960, Ltmp5662-Lfunc_begin0 - .quad Lset18960 -.set Lset18961, Ltmp5663-Lfunc_begin0 - .quad Lset18961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18962, Ltmp5687-Lfunc_begin0 - .quad Lset18962 -.set Lset18963, Ltmp5688-Lfunc_begin0 - .quad Lset18963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18964, Ltmp5712-Lfunc_begin0 - .quad Lset18964 -.set Lset18965, Ltmp5713-Lfunc_begin0 - .quad Lset18965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18966, Ltmp5737-Lfunc_begin0 - .quad Lset18966 -.set Lset18967, Ltmp5738-Lfunc_begin0 - .quad Lset18967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18968, Ltmp5767-Lfunc_begin0 - .quad Lset18968 -.set Lset18969, Ltmp5768-Lfunc_begin0 - .quad Lset18969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18970, Ltmp5795-Lfunc_begin0 - .quad Lset18970 -.set Lset18971, Ltmp5796-Lfunc_begin0 - .quad Lset18971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18972, Ltmp5814-Lfunc_begin0 - .quad Lset18972 -.set Lset18973, Ltmp5815-Lfunc_begin0 - .quad Lset18973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18974, Ltmp5833-Lfunc_begin0 - .quad Lset18974 -.set Lset18975, Ltmp5834-Lfunc_begin0 - .quad Lset18975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18976, Ltmp5852-Lfunc_begin0 - .quad Lset18976 -.set Lset18977, Ltmp5853-Lfunc_begin0 - .quad Lset18977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18978, Ltmp5871-Lfunc_begin0 - .quad Lset18978 -.set Lset18979, Ltmp5872-Lfunc_begin0 - .quad Lset18979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18980, Ltmp5890-Lfunc_begin0 - .quad Lset18980 -.set Lset18981, Ltmp5891-Lfunc_begin0 - .quad Lset18981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18982, Ltmp5920-Lfunc_begin0 - .quad Lset18982 -.set Lset18983, Ltmp5921-Lfunc_begin0 - .quad Lset18983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc257: -.set Lset18984, Ltmp1186-Lfunc_begin0 - .quad Lset18984 -.set Lset18985, Ltmp1187-Lfunc_begin0 - .quad Lset18985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18986, Ltmp1215-Lfunc_begin0 - .quad Lset18986 -.set Lset18987, Ltmp1216-Lfunc_begin0 - .quad Lset18987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18988, Ltmp1237-Lfunc_begin0 - .quad Lset18988 -.set Lset18989, Ltmp1238-Lfunc_begin0 - .quad Lset18989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18990, Ltmp1260-Lfunc_begin0 - .quad Lset18990 -.set Lset18991, Ltmp1261-Lfunc_begin0 - .quad Lset18991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18992, Ltmp1281-Lfunc_begin0 - .quad Lset18992 -.set Lset18993, Ltmp1282-Lfunc_begin0 - .quad Lset18993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18994, Ltmp1314-Lfunc_begin0 - .quad Lset18994 -.set Lset18995, Ltmp1315-Lfunc_begin0 - .quad Lset18995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18996, Ltmp1338-Lfunc_begin0 - .quad Lset18996 -.set Lset18997, Ltmp1339-Lfunc_begin0 - .quad Lset18997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset18998, Ltmp1368-Lfunc_begin0 - .quad Lset18998 -.set Lset18999, Ltmp1369-Lfunc_begin0 - .quad Lset18999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19000, Ltmp1462-Lfunc_begin0 - .quad Lset19000 -.set Lset19001, Ltmp1464-Lfunc_begin0 - .quad Lset19001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19002, Ltmp1557-Lfunc_begin0 - .quad Lset19002 -.set Lset19003, Ltmp1559-Lfunc_begin0 - .quad Lset19003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19004, Ltmp1713-Lfunc_begin0 - .quad Lset19004 -.set Lset19005, Ltmp1715-Lfunc_begin0 - .quad Lset19005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19006, Ltmp1864-Lfunc_begin0 - .quad Lset19006 -.set Lset19007, Ltmp1866-Lfunc_begin0 - .quad Lset19007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19008, Ltmp2004-Lfunc_begin0 - .quad Lset19008 -.set Lset19009, Ltmp2006-Lfunc_begin0 - .quad Lset19009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19010, Ltmp2074-Lfunc_begin0 - .quad Lset19010 -.set Lset19011, Ltmp2076-Lfunc_begin0 - .quad Lset19011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19012, Ltmp2120-Lfunc_begin0 - .quad Lset19012 -.set Lset19013, Ltmp2121-Lfunc_begin0 - .quad Lset19013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19014, Ltmp2193-Lfunc_begin0 - .quad Lset19014 -.set Lset19015, Ltmp2195-Lfunc_begin0 - .quad Lset19015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19016, Ltmp2253-Lfunc_begin0 - .quad Lset19016 -.set Lset19017, Ltmp2255-Lfunc_begin0 - .quad Lset19017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19018, Ltmp2302-Lfunc_begin0 - .quad Lset19018 -.set Lset19019, Ltmp2304-Lfunc_begin0 - .quad Lset19019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19020, Ltmp2351-Lfunc_begin0 - .quad Lset19020 -.set Lset19021, Ltmp2353-Lfunc_begin0 - .quad Lset19021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19022, Ltmp2400-Lfunc_begin0 - .quad Lset19022 -.set Lset19023, Ltmp2402-Lfunc_begin0 - .quad Lset19023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19024, Ltmp2444-Lfunc_begin0 - .quad Lset19024 -.set Lset19025, Ltmp2446-Lfunc_begin0 - .quad Lset19025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19026, Ltmp2499-Lfunc_begin0 - .quad Lset19026 -.set Lset19027, Ltmp2501-Lfunc_begin0 - .quad Lset19027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19028, Ltmp2554-Lfunc_begin0 - .quad Lset19028 -.set Lset19029, Ltmp2556-Lfunc_begin0 - .quad Lset19029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19030, Ltmp2609-Lfunc_begin0 - .quad Lset19030 -.set Lset19031, Ltmp2611-Lfunc_begin0 - .quad Lset19031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19032, Ltmp2673-Lfunc_begin0 - .quad Lset19032 -.set Lset19033, Ltmp2675-Lfunc_begin0 - .quad Lset19033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19034, Ltmp2738-Lfunc_begin0 - .quad Lset19034 -.set Lset19035, Ltmp2740-Lfunc_begin0 - .quad Lset19035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19036, Ltmp2811-Lfunc_begin0 - .quad Lset19036 -.set Lset19037, Ltmp2813-Lfunc_begin0 - .quad Lset19037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19038, Ltmp2871-Lfunc_begin0 - .quad Lset19038 -.set Lset19039, Ltmp2873-Lfunc_begin0 - .quad Lset19039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19040, Ltmp2922-Lfunc_begin0 - .quad Lset19040 -.set Lset19041, Ltmp2924-Lfunc_begin0 - .quad Lset19041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19042, Ltmp2957-Lfunc_begin0 - .quad Lset19042 -.set Lset19043, Ltmp2958-Lfunc_begin0 - .quad Lset19043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19044, Ltmp2997-Lfunc_begin0 - .quad Lset19044 -.set Lset19045, Ltmp2999-Lfunc_begin0 - .quad Lset19045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19046, Ltmp3024-Lfunc_begin0 - .quad Lset19046 -.set Lset19047, Ltmp3025-Lfunc_begin0 - .quad Lset19047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19048, Ltmp3047-Lfunc_begin0 - .quad Lset19048 -.set Lset19049, Ltmp3048-Lfunc_begin0 - .quad Lset19049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19050, Ltmp3096-Lfunc_begin0 - .quad Lset19050 -.set Lset19051, Ltmp3097-Lfunc_begin0 - .quad Lset19051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19052, Ltmp3120-Lfunc_begin0 - .quad Lset19052 -.set Lset19053, Ltmp3122-Lfunc_begin0 - .quad Lset19053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19054, Ltmp3161-Lfunc_begin0 - .quad Lset19054 -.set Lset19055, Ltmp3163-Lfunc_begin0 - .quad Lset19055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19056, Ltmp3227-Lfunc_begin0 - .quad Lset19056 -.set Lset19057, Ltmp3228-Lfunc_begin0 - .quad Lset19057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19058, Ltmp3292-Lfunc_begin0 - .quad Lset19058 -.set Lset19059, Ltmp3293-Lfunc_begin0 - .quad Lset19059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19060, Ltmp3329-Lfunc_begin0 - .quad Lset19060 -.set Lset19061, Ltmp3330-Lfunc_begin0 - .quad Lset19061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19062, Ltmp3375-Lfunc_begin0 - .quad Lset19062 -.set Lset19063, Ltmp3376-Lfunc_begin0 - .quad Lset19063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19064, Ltmp3407-Lfunc_begin0 - .quad Lset19064 -.set Lset19065, Ltmp3408-Lfunc_begin0 - .quad Lset19065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19066, Ltmp3435-Lfunc_begin0 - .quad Lset19066 -.set Lset19067, Ltmp3436-Lfunc_begin0 - .quad Lset19067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19068, Ltmp3537-Lfunc_begin0 - .quad Lset19068 -.set Lset19069, Ltmp3538-Lfunc_begin0 - .quad Lset19069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19070, Ltmp3638-Lfunc_begin0 - .quad Lset19070 -.set Lset19071, Ltmp3640-Lfunc_begin0 - .quad Lset19071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19072, Ltmp3685-Lfunc_begin0 - .quad Lset19072 -.set Lset19073, Ltmp3686-Lfunc_begin0 - .quad Lset19073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19074, Ltmp3807-Lfunc_begin0 - .quad Lset19074 -.set Lset19075, Ltmp3809-Lfunc_begin0 - .quad Lset19075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19076, Ltmp3864-Lfunc_begin0 - .quad Lset19076 -.set Lset19077, Ltmp3865-Lfunc_begin0 - .quad Lset19077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19078, Ltmp3933-Lfunc_begin0 - .quad Lset19078 -.set Lset19079, Ltmp3934-Lfunc_begin0 - .quad Lset19079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19080, Ltmp3959-Lfunc_begin0 - .quad Lset19080 -.set Lset19081, Ltmp3960-Lfunc_begin0 - .quad Lset19081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19082, Ltmp3985-Lfunc_begin0 - .quad Lset19082 -.set Lset19083, Ltmp3986-Lfunc_begin0 - .quad Lset19083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19084, Ltmp4011-Lfunc_begin0 - .quad Lset19084 -.set Lset19085, Ltmp4012-Lfunc_begin0 - .quad Lset19085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19086, Ltmp4046-Lfunc_begin0 - .quad Lset19086 -.set Lset19087, Ltmp4047-Lfunc_begin0 - .quad Lset19087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19088, Ltmp4084-Lfunc_begin0 - .quad Lset19088 -.set Lset19089, Ltmp4085-Lfunc_begin0 - .quad Lset19089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19090, Ltmp4106-Lfunc_begin0 - .quad Lset19090 -.set Lset19091, Ltmp4107-Lfunc_begin0 - .quad Lset19091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19092, Ltmp4146-Lfunc_begin0 - .quad Lset19092 -.set Lset19093, Ltmp4147-Lfunc_begin0 - .quad Lset19093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19094, Ltmp4187-Lfunc_begin0 - .quad Lset19094 -.set Lset19095, Ltmp4188-Lfunc_begin0 - .quad Lset19095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19096, Ltmp4227-Lfunc_begin0 - .quad Lset19096 -.set Lset19097, Ltmp4228-Lfunc_begin0 - .quad Lset19097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19098, Ltmp4268-Lfunc_begin0 - .quad Lset19098 -.set Lset19099, Ltmp4269-Lfunc_begin0 - .quad Lset19099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19100, Ltmp4308-Lfunc_begin0 - .quad Lset19100 -.set Lset19101, Ltmp4309-Lfunc_begin0 - .quad Lset19101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19102, Ltmp4349-Lfunc_begin0 - .quad Lset19102 -.set Lset19103, Ltmp4350-Lfunc_begin0 - .quad Lset19103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19104, Ltmp4380-Lfunc_begin0 - .quad Lset19104 -.set Lset19105, Ltmp4381-Lfunc_begin0 - .quad Lset19105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19106, Ltmp4412-Lfunc_begin0 - .quad Lset19106 -.set Lset19107, Ltmp4414-Lfunc_begin0 - .quad Lset19107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19108, Ltmp4454-Lfunc_begin0 - .quad Lset19108 -.set Lset19109, Ltmp4455-Lfunc_begin0 - .quad Lset19109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19110, Ltmp4495-Lfunc_begin0 - .quad Lset19110 -.set Lset19111, Ltmp4496-Lfunc_begin0 - .quad Lset19111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19112, Ltmp4579-Lfunc_begin0 - .quad Lset19112 -.set Lset19113, Ltmp4581-Lfunc_begin0 - .quad Lset19113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19114, Ltmp4649-Lfunc_begin0 - .quad Lset19114 -.set Lset19115, Ltmp4651-Lfunc_begin0 - .quad Lset19115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19116, Ltmp4717-Lfunc_begin0 - .quad Lset19116 -.set Lset19117, Ltmp4719-Lfunc_begin0 - .quad Lset19117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19118, Ltmp4783-Lfunc_begin0 - .quad Lset19118 -.set Lset19119, Ltmp4784-Lfunc_begin0 - .quad Lset19119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19120, Ltmp4813-Lfunc_begin0 - .quad Lset19120 -.set Lset19121, Ltmp4814-Lfunc_begin0 - .quad Lset19121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19122, Ltmp4843-Lfunc_begin0 - .quad Lset19122 -.set Lset19123, Ltmp4844-Lfunc_begin0 - .quad Lset19123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19124, Ltmp4902-Lfunc_begin0 - .quad Lset19124 -.set Lset19125, Ltmp4903-Lfunc_begin0 - .quad Lset19125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19126, Ltmp4943-Lfunc_begin0 - .quad Lset19126 -.set Lset19127, Ltmp4944-Lfunc_begin0 - .quad Lset19127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19128, Ltmp5000-Lfunc_begin0 - .quad Lset19128 -.set Lset19129, Ltmp5001-Lfunc_begin0 - .quad Lset19129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19130, Ltmp5040-Lfunc_begin0 - .quad Lset19130 -.set Lset19131, Ltmp5041-Lfunc_begin0 - .quad Lset19131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19132, Ltmp5078-Lfunc_begin0 - .quad Lset19132 -.set Lset19133, Ltmp5079-Lfunc_begin0 - .quad Lset19133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19134, Ltmp5114-Lfunc_begin0 - .quad Lset19134 -.set Lset19135, Ltmp5115-Lfunc_begin0 - .quad Lset19135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19136, Ltmp5146-Lfunc_begin0 - .quad Lset19136 -.set Lset19137, Ltmp5147-Lfunc_begin0 - .quad Lset19137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19138, Ltmp5178-Lfunc_begin0 - .quad Lset19138 -.set Lset19139, Ltmp5179-Lfunc_begin0 - .quad Lset19139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19140, Ltmp5210-Lfunc_begin0 - .quad Lset19140 -.set Lset19141, Ltmp5211-Lfunc_begin0 - .quad Lset19141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19142, Ltmp5228-Lfunc_begin0 - .quad Lset19142 -.set Lset19143, Ltmp5229-Lfunc_begin0 - .quad Lset19143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19144, Ltmp5246-Lfunc_begin0 - .quad Lset19144 -.set Lset19145, Ltmp5247-Lfunc_begin0 - .quad Lset19145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19146, Ltmp5271-Lfunc_begin0 - .quad Lset19146 -.set Lset19147, Ltmp5272-Lfunc_begin0 - .quad Lset19147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19148, Ltmp5296-Lfunc_begin0 - .quad Lset19148 -.set Lset19149, Ltmp5297-Lfunc_begin0 - .quad Lset19149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19150, Ltmp5322-Lfunc_begin0 - .quad Lset19150 -.set Lset19151, Ltmp5323-Lfunc_begin0 - .quad Lset19151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19152, Ltmp5347-Lfunc_begin0 - .quad Lset19152 -.set Lset19153, Ltmp5348-Lfunc_begin0 - .quad Lset19153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19154, Ltmp5372-Lfunc_begin0 - .quad Lset19154 -.set Lset19155, Ltmp5373-Lfunc_begin0 - .quad Lset19155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19156, Ltmp5397-Lfunc_begin0 - .quad Lset19156 -.set Lset19157, Ltmp5398-Lfunc_begin0 - .quad Lset19157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19158, Ltmp5422-Lfunc_begin0 - .quad Lset19158 -.set Lset19159, Ltmp5423-Lfunc_begin0 - .quad Lset19159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19160, Ltmp5447-Lfunc_begin0 - .quad Lset19160 -.set Lset19161, Ltmp5448-Lfunc_begin0 - .quad Lset19161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19162, Ltmp5472-Lfunc_begin0 - .quad Lset19162 -.set Lset19163, Ltmp5473-Lfunc_begin0 - .quad Lset19163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19164, Ltmp5498-Lfunc_begin0 - .quad Lset19164 -.set Lset19165, Ltmp5499-Lfunc_begin0 - .quad Lset19165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19166, Ltmp5523-Lfunc_begin0 - .quad Lset19166 -.set Lset19167, Ltmp5524-Lfunc_begin0 - .quad Lset19167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19168, Ltmp5548-Lfunc_begin0 - .quad Lset19168 -.set Lset19169, Ltmp5549-Lfunc_begin0 - .quad Lset19169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19170, Ltmp5573-Lfunc_begin0 - .quad Lset19170 -.set Lset19171, Ltmp5574-Lfunc_begin0 - .quad Lset19171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19172, Ltmp5598-Lfunc_begin0 - .quad Lset19172 -.set Lset19173, Ltmp5599-Lfunc_begin0 - .quad Lset19173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19174, Ltmp5631-Lfunc_begin0 - .quad Lset19174 -.set Lset19175, Ltmp5632-Lfunc_begin0 - .quad Lset19175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19176, Ltmp5662-Lfunc_begin0 - .quad Lset19176 -.set Lset19177, Ltmp5663-Lfunc_begin0 - .quad Lset19177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19178, Ltmp5687-Lfunc_begin0 - .quad Lset19178 -.set Lset19179, Ltmp5688-Lfunc_begin0 - .quad Lset19179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19180, Ltmp5712-Lfunc_begin0 - .quad Lset19180 -.set Lset19181, Ltmp5713-Lfunc_begin0 - .quad Lset19181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19182, Ltmp5737-Lfunc_begin0 - .quad Lset19182 -.set Lset19183, Ltmp5738-Lfunc_begin0 - .quad Lset19183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19184, Ltmp5767-Lfunc_begin0 - .quad Lset19184 -.set Lset19185, Ltmp5768-Lfunc_begin0 - .quad Lset19185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19186, Ltmp5795-Lfunc_begin0 - .quad Lset19186 -.set Lset19187, Ltmp5796-Lfunc_begin0 - .quad Lset19187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19188, Ltmp5814-Lfunc_begin0 - .quad Lset19188 -.set Lset19189, Ltmp5815-Lfunc_begin0 - .quad Lset19189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19190, Ltmp5833-Lfunc_begin0 - .quad Lset19190 -.set Lset19191, Ltmp5834-Lfunc_begin0 - .quad Lset19191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19192, Ltmp5852-Lfunc_begin0 - .quad Lset19192 -.set Lset19193, Ltmp5853-Lfunc_begin0 - .quad Lset19193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19194, Ltmp5871-Lfunc_begin0 - .quad Lset19194 -.set Lset19195, Ltmp5872-Lfunc_begin0 - .quad Lset19195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19196, Ltmp5890-Lfunc_begin0 - .quad Lset19196 -.set Lset19197, Ltmp5891-Lfunc_begin0 - .quad Lset19197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19198, Ltmp5920-Lfunc_begin0 - .quad Lset19198 -.set Lset19199, Ltmp5921-Lfunc_begin0 - .quad Lset19199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc258: -.set Lset19200, Ltmp1186-Lfunc_begin0 - .quad Lset19200 -.set Lset19201, Ltmp1187-Lfunc_begin0 - .quad Lset19201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19202, Ltmp1215-Lfunc_begin0 - .quad Lset19202 -.set Lset19203, Ltmp1216-Lfunc_begin0 - .quad Lset19203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19204, Ltmp1237-Lfunc_begin0 - .quad Lset19204 -.set Lset19205, Ltmp1238-Lfunc_begin0 - .quad Lset19205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19206, Ltmp1260-Lfunc_begin0 - .quad Lset19206 -.set Lset19207, Ltmp1261-Lfunc_begin0 - .quad Lset19207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19208, Ltmp1281-Lfunc_begin0 - .quad Lset19208 -.set Lset19209, Ltmp1282-Lfunc_begin0 - .quad Lset19209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19210, Ltmp1314-Lfunc_begin0 - .quad Lset19210 -.set Lset19211, Ltmp1315-Lfunc_begin0 - .quad Lset19211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19212, Ltmp1338-Lfunc_begin0 - .quad Lset19212 -.set Lset19213, Ltmp1339-Lfunc_begin0 - .quad Lset19213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19214, Ltmp1368-Lfunc_begin0 - .quad Lset19214 -.set Lset19215, Ltmp1369-Lfunc_begin0 - .quad Lset19215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19216, Ltmp1462-Lfunc_begin0 - .quad Lset19216 -.set Lset19217, Ltmp1464-Lfunc_begin0 - .quad Lset19217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19218, Ltmp1557-Lfunc_begin0 - .quad Lset19218 -.set Lset19219, Ltmp1559-Lfunc_begin0 - .quad Lset19219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19220, Ltmp1713-Lfunc_begin0 - .quad Lset19220 -.set Lset19221, Ltmp1715-Lfunc_begin0 - .quad Lset19221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19222, Ltmp1864-Lfunc_begin0 - .quad Lset19222 -.set Lset19223, Ltmp1866-Lfunc_begin0 - .quad Lset19223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19224, Ltmp2004-Lfunc_begin0 - .quad Lset19224 -.set Lset19225, Ltmp2006-Lfunc_begin0 - .quad Lset19225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19226, Ltmp2074-Lfunc_begin0 - .quad Lset19226 -.set Lset19227, Ltmp2076-Lfunc_begin0 - .quad Lset19227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19228, Ltmp2120-Lfunc_begin0 - .quad Lset19228 -.set Lset19229, Ltmp2121-Lfunc_begin0 - .quad Lset19229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19230, Ltmp2193-Lfunc_begin0 - .quad Lset19230 -.set Lset19231, Ltmp2195-Lfunc_begin0 - .quad Lset19231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19232, Ltmp2253-Lfunc_begin0 - .quad Lset19232 -.set Lset19233, Ltmp2255-Lfunc_begin0 - .quad Lset19233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19234, Ltmp2302-Lfunc_begin0 - .quad Lset19234 -.set Lset19235, Ltmp2304-Lfunc_begin0 - .quad Lset19235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19236, Ltmp2351-Lfunc_begin0 - .quad Lset19236 -.set Lset19237, Ltmp2353-Lfunc_begin0 - .quad Lset19237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19238, Ltmp2400-Lfunc_begin0 - .quad Lset19238 -.set Lset19239, Ltmp2402-Lfunc_begin0 - .quad Lset19239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19240, Ltmp2444-Lfunc_begin0 - .quad Lset19240 -.set Lset19241, Ltmp2446-Lfunc_begin0 - .quad Lset19241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19242, Ltmp2499-Lfunc_begin0 - .quad Lset19242 -.set Lset19243, Ltmp2501-Lfunc_begin0 - .quad Lset19243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19244, Ltmp2554-Lfunc_begin0 - .quad Lset19244 -.set Lset19245, Ltmp2556-Lfunc_begin0 - .quad Lset19245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19246, Ltmp2609-Lfunc_begin0 - .quad Lset19246 -.set Lset19247, Ltmp2611-Lfunc_begin0 - .quad Lset19247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19248, Ltmp2673-Lfunc_begin0 - .quad Lset19248 -.set Lset19249, Ltmp2675-Lfunc_begin0 - .quad Lset19249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19250, Ltmp2738-Lfunc_begin0 - .quad Lset19250 -.set Lset19251, Ltmp2740-Lfunc_begin0 - .quad Lset19251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19252, Ltmp2811-Lfunc_begin0 - .quad Lset19252 -.set Lset19253, Ltmp2813-Lfunc_begin0 - .quad Lset19253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19254, Ltmp2871-Lfunc_begin0 - .quad Lset19254 -.set Lset19255, Ltmp2873-Lfunc_begin0 - .quad Lset19255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19256, Ltmp2922-Lfunc_begin0 - .quad Lset19256 -.set Lset19257, Ltmp2924-Lfunc_begin0 - .quad Lset19257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19258, Ltmp2957-Lfunc_begin0 - .quad Lset19258 -.set Lset19259, Ltmp2958-Lfunc_begin0 - .quad Lset19259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19260, Ltmp2997-Lfunc_begin0 - .quad Lset19260 -.set Lset19261, Ltmp2999-Lfunc_begin0 - .quad Lset19261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19262, Ltmp3024-Lfunc_begin0 - .quad Lset19262 -.set Lset19263, Ltmp3025-Lfunc_begin0 - .quad Lset19263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19264, Ltmp3047-Lfunc_begin0 - .quad Lset19264 -.set Lset19265, Ltmp3048-Lfunc_begin0 - .quad Lset19265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19266, Ltmp3096-Lfunc_begin0 - .quad Lset19266 -.set Lset19267, Ltmp3097-Lfunc_begin0 - .quad Lset19267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19268, Ltmp3120-Lfunc_begin0 - .quad Lset19268 -.set Lset19269, Ltmp3122-Lfunc_begin0 - .quad Lset19269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19270, Ltmp3161-Lfunc_begin0 - .quad Lset19270 -.set Lset19271, Ltmp3163-Lfunc_begin0 - .quad Lset19271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19272, Ltmp3227-Lfunc_begin0 - .quad Lset19272 -.set Lset19273, Ltmp3228-Lfunc_begin0 - .quad Lset19273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19274, Ltmp3292-Lfunc_begin0 - .quad Lset19274 -.set Lset19275, Ltmp3293-Lfunc_begin0 - .quad Lset19275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19276, Ltmp3329-Lfunc_begin0 - .quad Lset19276 -.set Lset19277, Ltmp3330-Lfunc_begin0 - .quad Lset19277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19278, Ltmp3375-Lfunc_begin0 - .quad Lset19278 -.set Lset19279, Ltmp3376-Lfunc_begin0 - .quad Lset19279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19280, Ltmp3407-Lfunc_begin0 - .quad Lset19280 -.set Lset19281, Ltmp3408-Lfunc_begin0 - .quad Lset19281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19282, Ltmp3435-Lfunc_begin0 - .quad Lset19282 -.set Lset19283, Ltmp3436-Lfunc_begin0 - .quad Lset19283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19284, Ltmp3537-Lfunc_begin0 - .quad Lset19284 -.set Lset19285, Ltmp3538-Lfunc_begin0 - .quad Lset19285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19286, Ltmp3638-Lfunc_begin0 - .quad Lset19286 -.set Lset19287, Ltmp3640-Lfunc_begin0 - .quad Lset19287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19288, Ltmp3685-Lfunc_begin0 - .quad Lset19288 -.set Lset19289, Ltmp3686-Lfunc_begin0 - .quad Lset19289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19290, Ltmp3807-Lfunc_begin0 - .quad Lset19290 -.set Lset19291, Ltmp3809-Lfunc_begin0 - .quad Lset19291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19292, Ltmp3864-Lfunc_begin0 - .quad Lset19292 -.set Lset19293, Ltmp3865-Lfunc_begin0 - .quad Lset19293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19294, Ltmp3933-Lfunc_begin0 - .quad Lset19294 -.set Lset19295, Ltmp3934-Lfunc_begin0 - .quad Lset19295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19296, Ltmp3959-Lfunc_begin0 - .quad Lset19296 -.set Lset19297, Ltmp3960-Lfunc_begin0 - .quad Lset19297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19298, Ltmp3985-Lfunc_begin0 - .quad Lset19298 -.set Lset19299, Ltmp3986-Lfunc_begin0 - .quad Lset19299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19300, Ltmp4011-Lfunc_begin0 - .quad Lset19300 -.set Lset19301, Ltmp4012-Lfunc_begin0 - .quad Lset19301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19302, Ltmp4046-Lfunc_begin0 - .quad Lset19302 -.set Lset19303, Ltmp4047-Lfunc_begin0 - .quad Lset19303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19304, Ltmp4084-Lfunc_begin0 - .quad Lset19304 -.set Lset19305, Ltmp4085-Lfunc_begin0 - .quad Lset19305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19306, Ltmp4106-Lfunc_begin0 - .quad Lset19306 -.set Lset19307, Ltmp4107-Lfunc_begin0 - .quad Lset19307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19308, Ltmp4146-Lfunc_begin0 - .quad Lset19308 -.set Lset19309, Ltmp4147-Lfunc_begin0 - .quad Lset19309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19310, Ltmp4187-Lfunc_begin0 - .quad Lset19310 -.set Lset19311, Ltmp4188-Lfunc_begin0 - .quad Lset19311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19312, Ltmp4227-Lfunc_begin0 - .quad Lset19312 -.set Lset19313, Ltmp4228-Lfunc_begin0 - .quad Lset19313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19314, Ltmp4268-Lfunc_begin0 - .quad Lset19314 -.set Lset19315, Ltmp4269-Lfunc_begin0 - .quad Lset19315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19316, Ltmp4308-Lfunc_begin0 - .quad Lset19316 -.set Lset19317, Ltmp4309-Lfunc_begin0 - .quad Lset19317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19318, Ltmp4349-Lfunc_begin0 - .quad Lset19318 -.set Lset19319, Ltmp4350-Lfunc_begin0 - .quad Lset19319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19320, Ltmp4380-Lfunc_begin0 - .quad Lset19320 -.set Lset19321, Ltmp4381-Lfunc_begin0 - .quad Lset19321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19322, Ltmp4412-Lfunc_begin0 - .quad Lset19322 -.set Lset19323, Ltmp4414-Lfunc_begin0 - .quad Lset19323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19324, Ltmp4454-Lfunc_begin0 - .quad Lset19324 -.set Lset19325, Ltmp4455-Lfunc_begin0 - .quad Lset19325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19326, Ltmp4495-Lfunc_begin0 - .quad Lset19326 -.set Lset19327, Ltmp4496-Lfunc_begin0 - .quad Lset19327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19328, Ltmp4579-Lfunc_begin0 - .quad Lset19328 -.set Lset19329, Ltmp4581-Lfunc_begin0 - .quad Lset19329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19330, Ltmp4649-Lfunc_begin0 - .quad Lset19330 -.set Lset19331, Ltmp4651-Lfunc_begin0 - .quad Lset19331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19332, Ltmp4717-Lfunc_begin0 - .quad Lset19332 -.set Lset19333, Ltmp4719-Lfunc_begin0 - .quad Lset19333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19334, Ltmp4783-Lfunc_begin0 - .quad Lset19334 -.set Lset19335, Ltmp4784-Lfunc_begin0 - .quad Lset19335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19336, Ltmp4813-Lfunc_begin0 - .quad Lset19336 -.set Lset19337, Ltmp4814-Lfunc_begin0 - .quad Lset19337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19338, Ltmp4843-Lfunc_begin0 - .quad Lset19338 -.set Lset19339, Ltmp4844-Lfunc_begin0 - .quad Lset19339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19340, Ltmp4902-Lfunc_begin0 - .quad Lset19340 -.set Lset19341, Ltmp4903-Lfunc_begin0 - .quad Lset19341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19342, Ltmp4943-Lfunc_begin0 - .quad Lset19342 -.set Lset19343, Ltmp4944-Lfunc_begin0 - .quad Lset19343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19344, Ltmp5000-Lfunc_begin0 - .quad Lset19344 -.set Lset19345, Ltmp5001-Lfunc_begin0 - .quad Lset19345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19346, Ltmp5040-Lfunc_begin0 - .quad Lset19346 -.set Lset19347, Ltmp5041-Lfunc_begin0 - .quad Lset19347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19348, Ltmp5078-Lfunc_begin0 - .quad Lset19348 -.set Lset19349, Ltmp5079-Lfunc_begin0 - .quad Lset19349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19350, Ltmp5114-Lfunc_begin0 - .quad Lset19350 -.set Lset19351, Ltmp5115-Lfunc_begin0 - .quad Lset19351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19352, Ltmp5146-Lfunc_begin0 - .quad Lset19352 -.set Lset19353, Ltmp5147-Lfunc_begin0 - .quad Lset19353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19354, Ltmp5178-Lfunc_begin0 - .quad Lset19354 -.set Lset19355, Ltmp5179-Lfunc_begin0 - .quad Lset19355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19356, Ltmp5210-Lfunc_begin0 - .quad Lset19356 -.set Lset19357, Ltmp5211-Lfunc_begin0 - .quad Lset19357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19358, Ltmp5228-Lfunc_begin0 - .quad Lset19358 -.set Lset19359, Ltmp5229-Lfunc_begin0 - .quad Lset19359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19360, Ltmp5246-Lfunc_begin0 - .quad Lset19360 -.set Lset19361, Ltmp5247-Lfunc_begin0 - .quad Lset19361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19362, Ltmp5271-Lfunc_begin0 - .quad Lset19362 -.set Lset19363, Ltmp5272-Lfunc_begin0 - .quad Lset19363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19364, Ltmp5296-Lfunc_begin0 - .quad Lset19364 -.set Lset19365, Ltmp5297-Lfunc_begin0 - .quad Lset19365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19366, Ltmp5322-Lfunc_begin0 - .quad Lset19366 -.set Lset19367, Ltmp5323-Lfunc_begin0 - .quad Lset19367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19368, Ltmp5347-Lfunc_begin0 - .quad Lset19368 -.set Lset19369, Ltmp5348-Lfunc_begin0 - .quad Lset19369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19370, Ltmp5372-Lfunc_begin0 - .quad Lset19370 -.set Lset19371, Ltmp5373-Lfunc_begin0 - .quad Lset19371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19372, Ltmp5397-Lfunc_begin0 - .quad Lset19372 -.set Lset19373, Ltmp5398-Lfunc_begin0 - .quad Lset19373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19374, Ltmp5422-Lfunc_begin0 - .quad Lset19374 -.set Lset19375, Ltmp5423-Lfunc_begin0 - .quad Lset19375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19376, Ltmp5447-Lfunc_begin0 - .quad Lset19376 -.set Lset19377, Ltmp5448-Lfunc_begin0 - .quad Lset19377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19378, Ltmp5472-Lfunc_begin0 - .quad Lset19378 -.set Lset19379, Ltmp5473-Lfunc_begin0 - .quad Lset19379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19380, Ltmp5498-Lfunc_begin0 - .quad Lset19380 -.set Lset19381, Ltmp5499-Lfunc_begin0 - .quad Lset19381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19382, Ltmp5523-Lfunc_begin0 - .quad Lset19382 -.set Lset19383, Ltmp5524-Lfunc_begin0 - .quad Lset19383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19384, Ltmp5548-Lfunc_begin0 - .quad Lset19384 -.set Lset19385, Ltmp5549-Lfunc_begin0 - .quad Lset19385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19386, Ltmp5573-Lfunc_begin0 - .quad Lset19386 -.set Lset19387, Ltmp5574-Lfunc_begin0 - .quad Lset19387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19388, Ltmp5598-Lfunc_begin0 - .quad Lset19388 -.set Lset19389, Ltmp5599-Lfunc_begin0 - .quad Lset19389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19390, Ltmp5631-Lfunc_begin0 - .quad Lset19390 -.set Lset19391, Ltmp5632-Lfunc_begin0 - .quad Lset19391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19392, Ltmp5662-Lfunc_begin0 - .quad Lset19392 -.set Lset19393, Ltmp5663-Lfunc_begin0 - .quad Lset19393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19394, Ltmp5687-Lfunc_begin0 - .quad Lset19394 -.set Lset19395, Ltmp5688-Lfunc_begin0 - .quad Lset19395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19396, Ltmp5712-Lfunc_begin0 - .quad Lset19396 -.set Lset19397, Ltmp5713-Lfunc_begin0 - .quad Lset19397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19398, Ltmp5737-Lfunc_begin0 - .quad Lset19398 -.set Lset19399, Ltmp5738-Lfunc_begin0 - .quad Lset19399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19400, Ltmp5767-Lfunc_begin0 - .quad Lset19400 -.set Lset19401, Ltmp5768-Lfunc_begin0 - .quad Lset19401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19402, Ltmp5795-Lfunc_begin0 - .quad Lset19402 -.set Lset19403, Ltmp5796-Lfunc_begin0 - .quad Lset19403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19404, Ltmp5814-Lfunc_begin0 - .quad Lset19404 -.set Lset19405, Ltmp5815-Lfunc_begin0 - .quad Lset19405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19406, Ltmp5833-Lfunc_begin0 - .quad Lset19406 -.set Lset19407, Ltmp5834-Lfunc_begin0 - .quad Lset19407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19408, Ltmp5852-Lfunc_begin0 - .quad Lset19408 -.set Lset19409, Ltmp5853-Lfunc_begin0 - .quad Lset19409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19410, Ltmp5871-Lfunc_begin0 - .quad Lset19410 -.set Lset19411, Ltmp5872-Lfunc_begin0 - .quad Lset19411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19412, Ltmp5890-Lfunc_begin0 - .quad Lset19412 -.set Lset19413, Ltmp5891-Lfunc_begin0 - .quad Lset19413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19414, Ltmp5920-Lfunc_begin0 - .quad Lset19414 -.set Lset19415, Ltmp5921-Lfunc_begin0 - .quad Lset19415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc259: -.set Lset19416, Ltmp1186-Lfunc_begin0 - .quad Lset19416 -.set Lset19417, Ltmp1187-Lfunc_begin0 - .quad Lset19417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19418, Ltmp1215-Lfunc_begin0 - .quad Lset19418 -.set Lset19419, Ltmp1216-Lfunc_begin0 - .quad Lset19419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19420, Ltmp1237-Lfunc_begin0 - .quad Lset19420 -.set Lset19421, Ltmp1238-Lfunc_begin0 - .quad Lset19421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19422, Ltmp1260-Lfunc_begin0 - .quad Lset19422 -.set Lset19423, Ltmp1261-Lfunc_begin0 - .quad Lset19423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19424, Ltmp1281-Lfunc_begin0 - .quad Lset19424 -.set Lset19425, Ltmp1282-Lfunc_begin0 - .quad Lset19425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19426, Ltmp1314-Lfunc_begin0 - .quad Lset19426 -.set Lset19427, Ltmp1315-Lfunc_begin0 - .quad Lset19427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19428, Ltmp1338-Lfunc_begin0 - .quad Lset19428 -.set Lset19429, Ltmp1339-Lfunc_begin0 - .quad Lset19429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19430, Ltmp1368-Lfunc_begin0 - .quad Lset19430 -.set Lset19431, Ltmp1369-Lfunc_begin0 - .quad Lset19431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19432, Ltmp1462-Lfunc_begin0 - .quad Lset19432 -.set Lset19433, Ltmp1464-Lfunc_begin0 - .quad Lset19433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19434, Ltmp1557-Lfunc_begin0 - .quad Lset19434 -.set Lset19435, Ltmp1559-Lfunc_begin0 - .quad Lset19435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19436, Ltmp1713-Lfunc_begin0 - .quad Lset19436 -.set Lset19437, Ltmp1715-Lfunc_begin0 - .quad Lset19437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19438, Ltmp1864-Lfunc_begin0 - .quad Lset19438 -.set Lset19439, Ltmp1866-Lfunc_begin0 - .quad Lset19439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19440, Ltmp2004-Lfunc_begin0 - .quad Lset19440 -.set Lset19441, Ltmp2006-Lfunc_begin0 - .quad Lset19441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19442, Ltmp2074-Lfunc_begin0 - .quad Lset19442 -.set Lset19443, Ltmp2076-Lfunc_begin0 - .quad Lset19443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19444, Ltmp2120-Lfunc_begin0 - .quad Lset19444 -.set Lset19445, Ltmp2121-Lfunc_begin0 - .quad Lset19445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19446, Ltmp2193-Lfunc_begin0 - .quad Lset19446 -.set Lset19447, Ltmp2195-Lfunc_begin0 - .quad Lset19447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19448, Ltmp2253-Lfunc_begin0 - .quad Lset19448 -.set Lset19449, Ltmp2255-Lfunc_begin0 - .quad Lset19449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19450, Ltmp2302-Lfunc_begin0 - .quad Lset19450 -.set Lset19451, Ltmp2304-Lfunc_begin0 - .quad Lset19451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19452, Ltmp2351-Lfunc_begin0 - .quad Lset19452 -.set Lset19453, Ltmp2353-Lfunc_begin0 - .quad Lset19453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19454, Ltmp2400-Lfunc_begin0 - .quad Lset19454 -.set Lset19455, Ltmp2402-Lfunc_begin0 - .quad Lset19455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19456, Ltmp2444-Lfunc_begin0 - .quad Lset19456 -.set Lset19457, Ltmp2446-Lfunc_begin0 - .quad Lset19457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19458, Ltmp2499-Lfunc_begin0 - .quad Lset19458 -.set Lset19459, Ltmp2501-Lfunc_begin0 - .quad Lset19459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19460, Ltmp2554-Lfunc_begin0 - .quad Lset19460 -.set Lset19461, Ltmp2556-Lfunc_begin0 - .quad Lset19461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19462, Ltmp2609-Lfunc_begin0 - .quad Lset19462 -.set Lset19463, Ltmp2611-Lfunc_begin0 - .quad Lset19463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19464, Ltmp2673-Lfunc_begin0 - .quad Lset19464 -.set Lset19465, Ltmp2675-Lfunc_begin0 - .quad Lset19465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19466, Ltmp2738-Lfunc_begin0 - .quad Lset19466 -.set Lset19467, Ltmp2740-Lfunc_begin0 - .quad Lset19467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19468, Ltmp2811-Lfunc_begin0 - .quad Lset19468 -.set Lset19469, Ltmp2813-Lfunc_begin0 - .quad Lset19469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19470, Ltmp2871-Lfunc_begin0 - .quad Lset19470 -.set Lset19471, Ltmp2873-Lfunc_begin0 - .quad Lset19471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19472, Ltmp2922-Lfunc_begin0 - .quad Lset19472 -.set Lset19473, Ltmp2924-Lfunc_begin0 - .quad Lset19473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19474, Ltmp2957-Lfunc_begin0 - .quad Lset19474 -.set Lset19475, Ltmp2958-Lfunc_begin0 - .quad Lset19475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19476, Ltmp2997-Lfunc_begin0 - .quad Lset19476 -.set Lset19477, Ltmp2999-Lfunc_begin0 - .quad Lset19477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19478, Ltmp3024-Lfunc_begin0 - .quad Lset19478 -.set Lset19479, Ltmp3025-Lfunc_begin0 - .quad Lset19479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19480, Ltmp3047-Lfunc_begin0 - .quad Lset19480 -.set Lset19481, Ltmp3048-Lfunc_begin0 - .quad Lset19481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19482, Ltmp3096-Lfunc_begin0 - .quad Lset19482 -.set Lset19483, Ltmp3097-Lfunc_begin0 - .quad Lset19483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19484, Ltmp3120-Lfunc_begin0 - .quad Lset19484 -.set Lset19485, Ltmp3122-Lfunc_begin0 - .quad Lset19485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19486, Ltmp3161-Lfunc_begin0 - .quad Lset19486 -.set Lset19487, Ltmp3163-Lfunc_begin0 - .quad Lset19487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19488, Ltmp3227-Lfunc_begin0 - .quad Lset19488 -.set Lset19489, Ltmp3228-Lfunc_begin0 - .quad Lset19489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19490, Ltmp3292-Lfunc_begin0 - .quad Lset19490 -.set Lset19491, Ltmp3293-Lfunc_begin0 - .quad Lset19491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19492, Ltmp3329-Lfunc_begin0 - .quad Lset19492 -.set Lset19493, Ltmp3330-Lfunc_begin0 - .quad Lset19493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19494, Ltmp3375-Lfunc_begin0 - .quad Lset19494 -.set Lset19495, Ltmp3376-Lfunc_begin0 - .quad Lset19495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19496, Ltmp3407-Lfunc_begin0 - .quad Lset19496 -.set Lset19497, Ltmp3408-Lfunc_begin0 - .quad Lset19497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19498, Ltmp3435-Lfunc_begin0 - .quad Lset19498 -.set Lset19499, Ltmp3436-Lfunc_begin0 - .quad Lset19499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19500, Ltmp3537-Lfunc_begin0 - .quad Lset19500 -.set Lset19501, Ltmp3538-Lfunc_begin0 - .quad Lset19501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19502, Ltmp3638-Lfunc_begin0 - .quad Lset19502 -.set Lset19503, Ltmp3640-Lfunc_begin0 - .quad Lset19503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19504, Ltmp3685-Lfunc_begin0 - .quad Lset19504 -.set Lset19505, Ltmp3686-Lfunc_begin0 - .quad Lset19505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19506, Ltmp3807-Lfunc_begin0 - .quad Lset19506 -.set Lset19507, Ltmp3809-Lfunc_begin0 - .quad Lset19507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19508, Ltmp3864-Lfunc_begin0 - .quad Lset19508 -.set Lset19509, Ltmp3865-Lfunc_begin0 - .quad Lset19509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19510, Ltmp3933-Lfunc_begin0 - .quad Lset19510 -.set Lset19511, Ltmp3934-Lfunc_begin0 - .quad Lset19511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19512, Ltmp3959-Lfunc_begin0 - .quad Lset19512 -.set Lset19513, Ltmp3960-Lfunc_begin0 - .quad Lset19513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19514, Ltmp3985-Lfunc_begin0 - .quad Lset19514 -.set Lset19515, Ltmp3986-Lfunc_begin0 - .quad Lset19515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19516, Ltmp4011-Lfunc_begin0 - .quad Lset19516 -.set Lset19517, Ltmp4012-Lfunc_begin0 - .quad Lset19517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19518, Ltmp4046-Lfunc_begin0 - .quad Lset19518 -.set Lset19519, Ltmp4047-Lfunc_begin0 - .quad Lset19519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19520, Ltmp4084-Lfunc_begin0 - .quad Lset19520 -.set Lset19521, Ltmp4085-Lfunc_begin0 - .quad Lset19521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19522, Ltmp4106-Lfunc_begin0 - .quad Lset19522 -.set Lset19523, Ltmp4107-Lfunc_begin0 - .quad Lset19523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19524, Ltmp4146-Lfunc_begin0 - .quad Lset19524 -.set Lset19525, Ltmp4147-Lfunc_begin0 - .quad Lset19525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19526, Ltmp4187-Lfunc_begin0 - .quad Lset19526 -.set Lset19527, Ltmp4188-Lfunc_begin0 - .quad Lset19527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19528, Ltmp4227-Lfunc_begin0 - .quad Lset19528 -.set Lset19529, Ltmp4228-Lfunc_begin0 - .quad Lset19529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19530, Ltmp4268-Lfunc_begin0 - .quad Lset19530 -.set Lset19531, Ltmp4269-Lfunc_begin0 - .quad Lset19531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19532, Ltmp4308-Lfunc_begin0 - .quad Lset19532 -.set Lset19533, Ltmp4309-Lfunc_begin0 - .quad Lset19533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19534, Ltmp4349-Lfunc_begin0 - .quad Lset19534 -.set Lset19535, Ltmp4350-Lfunc_begin0 - .quad Lset19535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19536, Ltmp4380-Lfunc_begin0 - .quad Lset19536 -.set Lset19537, Ltmp4381-Lfunc_begin0 - .quad Lset19537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19538, Ltmp4412-Lfunc_begin0 - .quad Lset19538 -.set Lset19539, Ltmp4414-Lfunc_begin0 - .quad Lset19539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19540, Ltmp4454-Lfunc_begin0 - .quad Lset19540 -.set Lset19541, Ltmp4455-Lfunc_begin0 - .quad Lset19541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19542, Ltmp4495-Lfunc_begin0 - .quad Lset19542 -.set Lset19543, Ltmp4496-Lfunc_begin0 - .quad Lset19543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19544, Ltmp4579-Lfunc_begin0 - .quad Lset19544 -.set Lset19545, Ltmp4581-Lfunc_begin0 - .quad Lset19545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19546, Ltmp4649-Lfunc_begin0 - .quad Lset19546 -.set Lset19547, Ltmp4651-Lfunc_begin0 - .quad Lset19547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19548, Ltmp4717-Lfunc_begin0 - .quad Lset19548 -.set Lset19549, Ltmp4719-Lfunc_begin0 - .quad Lset19549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19550, Ltmp4783-Lfunc_begin0 - .quad Lset19550 -.set Lset19551, Ltmp4784-Lfunc_begin0 - .quad Lset19551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19552, Ltmp4813-Lfunc_begin0 - .quad Lset19552 -.set Lset19553, Ltmp4814-Lfunc_begin0 - .quad Lset19553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19554, Ltmp4843-Lfunc_begin0 - .quad Lset19554 -.set Lset19555, Ltmp4844-Lfunc_begin0 - .quad Lset19555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19556, Ltmp4902-Lfunc_begin0 - .quad Lset19556 -.set Lset19557, Ltmp4903-Lfunc_begin0 - .quad Lset19557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19558, Ltmp4943-Lfunc_begin0 - .quad Lset19558 -.set Lset19559, Ltmp4944-Lfunc_begin0 - .quad Lset19559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19560, Ltmp5000-Lfunc_begin0 - .quad Lset19560 -.set Lset19561, Ltmp5001-Lfunc_begin0 - .quad Lset19561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19562, Ltmp5040-Lfunc_begin0 - .quad Lset19562 -.set Lset19563, Ltmp5041-Lfunc_begin0 - .quad Lset19563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19564, Ltmp5078-Lfunc_begin0 - .quad Lset19564 -.set Lset19565, Ltmp5079-Lfunc_begin0 - .quad Lset19565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19566, Ltmp5114-Lfunc_begin0 - .quad Lset19566 -.set Lset19567, Ltmp5115-Lfunc_begin0 - .quad Lset19567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19568, Ltmp5146-Lfunc_begin0 - .quad Lset19568 -.set Lset19569, Ltmp5147-Lfunc_begin0 - .quad Lset19569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19570, Ltmp5178-Lfunc_begin0 - .quad Lset19570 -.set Lset19571, Ltmp5179-Lfunc_begin0 - .quad Lset19571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19572, Ltmp5210-Lfunc_begin0 - .quad Lset19572 -.set Lset19573, Ltmp5211-Lfunc_begin0 - .quad Lset19573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19574, Ltmp5228-Lfunc_begin0 - .quad Lset19574 -.set Lset19575, Ltmp5229-Lfunc_begin0 - .quad Lset19575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19576, Ltmp5246-Lfunc_begin0 - .quad Lset19576 -.set Lset19577, Ltmp5247-Lfunc_begin0 - .quad Lset19577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19578, Ltmp5271-Lfunc_begin0 - .quad Lset19578 -.set Lset19579, Ltmp5272-Lfunc_begin0 - .quad Lset19579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19580, Ltmp5296-Lfunc_begin0 - .quad Lset19580 -.set Lset19581, Ltmp5297-Lfunc_begin0 - .quad Lset19581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19582, Ltmp5322-Lfunc_begin0 - .quad Lset19582 -.set Lset19583, Ltmp5323-Lfunc_begin0 - .quad Lset19583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19584, Ltmp5347-Lfunc_begin0 - .quad Lset19584 -.set Lset19585, Ltmp5348-Lfunc_begin0 - .quad Lset19585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19586, Ltmp5372-Lfunc_begin0 - .quad Lset19586 -.set Lset19587, Ltmp5373-Lfunc_begin0 - .quad Lset19587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19588, Ltmp5397-Lfunc_begin0 - .quad Lset19588 -.set Lset19589, Ltmp5398-Lfunc_begin0 - .quad Lset19589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19590, Ltmp5422-Lfunc_begin0 - .quad Lset19590 -.set Lset19591, Ltmp5423-Lfunc_begin0 - .quad Lset19591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19592, Ltmp5447-Lfunc_begin0 - .quad Lset19592 -.set Lset19593, Ltmp5448-Lfunc_begin0 - .quad Lset19593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19594, Ltmp5472-Lfunc_begin0 - .quad Lset19594 -.set Lset19595, Ltmp5473-Lfunc_begin0 - .quad Lset19595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19596, Ltmp5498-Lfunc_begin0 - .quad Lset19596 -.set Lset19597, Ltmp5499-Lfunc_begin0 - .quad Lset19597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19598, Ltmp5523-Lfunc_begin0 - .quad Lset19598 -.set Lset19599, Ltmp5524-Lfunc_begin0 - .quad Lset19599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19600, Ltmp5548-Lfunc_begin0 - .quad Lset19600 -.set Lset19601, Ltmp5549-Lfunc_begin0 - .quad Lset19601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19602, Ltmp5573-Lfunc_begin0 - .quad Lset19602 -.set Lset19603, Ltmp5574-Lfunc_begin0 - .quad Lset19603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19604, Ltmp5598-Lfunc_begin0 - .quad Lset19604 -.set Lset19605, Ltmp5599-Lfunc_begin0 - .quad Lset19605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19606, Ltmp5631-Lfunc_begin0 - .quad Lset19606 -.set Lset19607, Ltmp5632-Lfunc_begin0 - .quad Lset19607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19608, Ltmp5662-Lfunc_begin0 - .quad Lset19608 -.set Lset19609, Ltmp5663-Lfunc_begin0 - .quad Lset19609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19610, Ltmp5687-Lfunc_begin0 - .quad Lset19610 -.set Lset19611, Ltmp5688-Lfunc_begin0 - .quad Lset19611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19612, Ltmp5712-Lfunc_begin0 - .quad Lset19612 -.set Lset19613, Ltmp5713-Lfunc_begin0 - .quad Lset19613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19614, Ltmp5737-Lfunc_begin0 - .quad Lset19614 -.set Lset19615, Ltmp5738-Lfunc_begin0 - .quad Lset19615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19616, Ltmp5767-Lfunc_begin0 - .quad Lset19616 -.set Lset19617, Ltmp5768-Lfunc_begin0 - .quad Lset19617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19618, Ltmp5795-Lfunc_begin0 - .quad Lset19618 -.set Lset19619, Ltmp5796-Lfunc_begin0 - .quad Lset19619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19620, Ltmp5814-Lfunc_begin0 - .quad Lset19620 -.set Lset19621, Ltmp5815-Lfunc_begin0 - .quad Lset19621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19622, Ltmp5833-Lfunc_begin0 - .quad Lset19622 -.set Lset19623, Ltmp5834-Lfunc_begin0 - .quad Lset19623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19624, Ltmp5852-Lfunc_begin0 - .quad Lset19624 -.set Lset19625, Ltmp5853-Lfunc_begin0 - .quad Lset19625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19626, Ltmp5871-Lfunc_begin0 - .quad Lset19626 -.set Lset19627, Ltmp5872-Lfunc_begin0 - .quad Lset19627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19628, Ltmp5890-Lfunc_begin0 - .quad Lset19628 -.set Lset19629, Ltmp5891-Lfunc_begin0 - .quad Lset19629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19630, Ltmp5920-Lfunc_begin0 - .quad Lset19630 -.set Lset19631, Ltmp5921-Lfunc_begin0 - .quad Lset19631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc260: -.set Lset19632, Ltmp1186-Lfunc_begin0 - .quad Lset19632 -.set Lset19633, Ltmp1187-Lfunc_begin0 - .quad Lset19633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19634, Ltmp1215-Lfunc_begin0 - .quad Lset19634 -.set Lset19635, Ltmp1216-Lfunc_begin0 - .quad Lset19635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19636, Ltmp1237-Lfunc_begin0 - .quad Lset19636 -.set Lset19637, Ltmp1238-Lfunc_begin0 - .quad Lset19637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19638, Ltmp1260-Lfunc_begin0 - .quad Lset19638 -.set Lset19639, Ltmp1261-Lfunc_begin0 - .quad Lset19639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19640, Ltmp1281-Lfunc_begin0 - .quad Lset19640 -.set Lset19641, Ltmp1282-Lfunc_begin0 - .quad Lset19641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19642, Ltmp1314-Lfunc_begin0 - .quad Lset19642 -.set Lset19643, Ltmp1315-Lfunc_begin0 - .quad Lset19643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19644, Ltmp1338-Lfunc_begin0 - .quad Lset19644 -.set Lset19645, Ltmp1339-Lfunc_begin0 - .quad Lset19645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19646, Ltmp1368-Lfunc_begin0 - .quad Lset19646 -.set Lset19647, Ltmp1369-Lfunc_begin0 - .quad Lset19647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19648, Ltmp1462-Lfunc_begin0 - .quad Lset19648 -.set Lset19649, Ltmp1464-Lfunc_begin0 - .quad Lset19649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19650, Ltmp1557-Lfunc_begin0 - .quad Lset19650 -.set Lset19651, Ltmp1559-Lfunc_begin0 - .quad Lset19651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19652, Ltmp1713-Lfunc_begin0 - .quad Lset19652 -.set Lset19653, Ltmp1715-Lfunc_begin0 - .quad Lset19653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19654, Ltmp1864-Lfunc_begin0 - .quad Lset19654 -.set Lset19655, Ltmp1866-Lfunc_begin0 - .quad Lset19655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19656, Ltmp2004-Lfunc_begin0 - .quad Lset19656 -.set Lset19657, Ltmp2006-Lfunc_begin0 - .quad Lset19657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19658, Ltmp2074-Lfunc_begin0 - .quad Lset19658 -.set Lset19659, Ltmp2076-Lfunc_begin0 - .quad Lset19659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19660, Ltmp2120-Lfunc_begin0 - .quad Lset19660 -.set Lset19661, Ltmp2121-Lfunc_begin0 - .quad Lset19661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19662, Ltmp2193-Lfunc_begin0 - .quad Lset19662 -.set Lset19663, Ltmp2195-Lfunc_begin0 - .quad Lset19663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19664, Ltmp2253-Lfunc_begin0 - .quad Lset19664 -.set Lset19665, Ltmp2255-Lfunc_begin0 - .quad Lset19665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19666, Ltmp2302-Lfunc_begin0 - .quad Lset19666 -.set Lset19667, Ltmp2304-Lfunc_begin0 - .quad Lset19667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19668, Ltmp2351-Lfunc_begin0 - .quad Lset19668 -.set Lset19669, Ltmp2353-Lfunc_begin0 - .quad Lset19669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19670, Ltmp2400-Lfunc_begin0 - .quad Lset19670 -.set Lset19671, Ltmp2402-Lfunc_begin0 - .quad Lset19671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19672, Ltmp2444-Lfunc_begin0 - .quad Lset19672 -.set Lset19673, Ltmp2446-Lfunc_begin0 - .quad Lset19673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19674, Ltmp2499-Lfunc_begin0 - .quad Lset19674 -.set Lset19675, Ltmp2501-Lfunc_begin0 - .quad Lset19675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19676, Ltmp2554-Lfunc_begin0 - .quad Lset19676 -.set Lset19677, Ltmp2556-Lfunc_begin0 - .quad Lset19677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19678, Ltmp2609-Lfunc_begin0 - .quad Lset19678 -.set Lset19679, Ltmp2611-Lfunc_begin0 - .quad Lset19679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19680, Ltmp2673-Lfunc_begin0 - .quad Lset19680 -.set Lset19681, Ltmp2675-Lfunc_begin0 - .quad Lset19681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19682, Ltmp2738-Lfunc_begin0 - .quad Lset19682 -.set Lset19683, Ltmp2740-Lfunc_begin0 - .quad Lset19683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19684, Ltmp2811-Lfunc_begin0 - .quad Lset19684 -.set Lset19685, Ltmp2813-Lfunc_begin0 - .quad Lset19685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19686, Ltmp2871-Lfunc_begin0 - .quad Lset19686 -.set Lset19687, Ltmp2873-Lfunc_begin0 - .quad Lset19687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19688, Ltmp2922-Lfunc_begin0 - .quad Lset19688 -.set Lset19689, Ltmp2924-Lfunc_begin0 - .quad Lset19689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19690, Ltmp2957-Lfunc_begin0 - .quad Lset19690 -.set Lset19691, Ltmp2958-Lfunc_begin0 - .quad Lset19691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19692, Ltmp2997-Lfunc_begin0 - .quad Lset19692 -.set Lset19693, Ltmp2999-Lfunc_begin0 - .quad Lset19693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19694, Ltmp3024-Lfunc_begin0 - .quad Lset19694 -.set Lset19695, Ltmp3025-Lfunc_begin0 - .quad Lset19695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19696, Ltmp3047-Lfunc_begin0 - .quad Lset19696 -.set Lset19697, Ltmp3048-Lfunc_begin0 - .quad Lset19697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19698, Ltmp3096-Lfunc_begin0 - .quad Lset19698 -.set Lset19699, Ltmp3097-Lfunc_begin0 - .quad Lset19699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19700, Ltmp3120-Lfunc_begin0 - .quad Lset19700 -.set Lset19701, Ltmp3122-Lfunc_begin0 - .quad Lset19701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19702, Ltmp3161-Lfunc_begin0 - .quad Lset19702 -.set Lset19703, Ltmp3163-Lfunc_begin0 - .quad Lset19703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19704, Ltmp3227-Lfunc_begin0 - .quad Lset19704 -.set Lset19705, Ltmp3228-Lfunc_begin0 - .quad Lset19705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19706, Ltmp3292-Lfunc_begin0 - .quad Lset19706 -.set Lset19707, Ltmp3293-Lfunc_begin0 - .quad Lset19707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19708, Ltmp3329-Lfunc_begin0 - .quad Lset19708 -.set Lset19709, Ltmp3330-Lfunc_begin0 - .quad Lset19709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19710, Ltmp3375-Lfunc_begin0 - .quad Lset19710 -.set Lset19711, Ltmp3376-Lfunc_begin0 - .quad Lset19711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19712, Ltmp3407-Lfunc_begin0 - .quad Lset19712 -.set Lset19713, Ltmp3408-Lfunc_begin0 - .quad Lset19713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19714, Ltmp3435-Lfunc_begin0 - .quad Lset19714 -.set Lset19715, Ltmp3436-Lfunc_begin0 - .quad Lset19715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19716, Ltmp3537-Lfunc_begin0 - .quad Lset19716 -.set Lset19717, Ltmp3538-Lfunc_begin0 - .quad Lset19717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19718, Ltmp3638-Lfunc_begin0 - .quad Lset19718 -.set Lset19719, Ltmp3640-Lfunc_begin0 - .quad Lset19719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19720, Ltmp3685-Lfunc_begin0 - .quad Lset19720 -.set Lset19721, Ltmp3686-Lfunc_begin0 - .quad Lset19721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19722, Ltmp3807-Lfunc_begin0 - .quad Lset19722 -.set Lset19723, Ltmp3809-Lfunc_begin0 - .quad Lset19723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19724, Ltmp3864-Lfunc_begin0 - .quad Lset19724 -.set Lset19725, Ltmp3865-Lfunc_begin0 - .quad Lset19725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19726, Ltmp3933-Lfunc_begin0 - .quad Lset19726 -.set Lset19727, Ltmp3934-Lfunc_begin0 - .quad Lset19727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19728, Ltmp3959-Lfunc_begin0 - .quad Lset19728 -.set Lset19729, Ltmp3960-Lfunc_begin0 - .quad Lset19729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19730, Ltmp3985-Lfunc_begin0 - .quad Lset19730 -.set Lset19731, Ltmp3986-Lfunc_begin0 - .quad Lset19731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19732, Ltmp4011-Lfunc_begin0 - .quad Lset19732 -.set Lset19733, Ltmp4012-Lfunc_begin0 - .quad Lset19733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19734, Ltmp4046-Lfunc_begin0 - .quad Lset19734 -.set Lset19735, Ltmp4047-Lfunc_begin0 - .quad Lset19735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19736, Ltmp4084-Lfunc_begin0 - .quad Lset19736 -.set Lset19737, Ltmp4085-Lfunc_begin0 - .quad Lset19737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19738, Ltmp4106-Lfunc_begin0 - .quad Lset19738 -.set Lset19739, Ltmp4107-Lfunc_begin0 - .quad Lset19739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19740, Ltmp4146-Lfunc_begin0 - .quad Lset19740 -.set Lset19741, Ltmp4147-Lfunc_begin0 - .quad Lset19741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19742, Ltmp4187-Lfunc_begin0 - .quad Lset19742 -.set Lset19743, Ltmp4188-Lfunc_begin0 - .quad Lset19743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19744, Ltmp4227-Lfunc_begin0 - .quad Lset19744 -.set Lset19745, Ltmp4228-Lfunc_begin0 - .quad Lset19745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19746, Ltmp4268-Lfunc_begin0 - .quad Lset19746 -.set Lset19747, Ltmp4269-Lfunc_begin0 - .quad Lset19747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19748, Ltmp4308-Lfunc_begin0 - .quad Lset19748 -.set Lset19749, Ltmp4309-Lfunc_begin0 - .quad Lset19749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19750, Ltmp4349-Lfunc_begin0 - .quad Lset19750 -.set Lset19751, Ltmp4350-Lfunc_begin0 - .quad Lset19751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19752, Ltmp4380-Lfunc_begin0 - .quad Lset19752 -.set Lset19753, Ltmp4381-Lfunc_begin0 - .quad Lset19753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19754, Ltmp4412-Lfunc_begin0 - .quad Lset19754 -.set Lset19755, Ltmp4414-Lfunc_begin0 - .quad Lset19755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19756, Ltmp4454-Lfunc_begin0 - .quad Lset19756 -.set Lset19757, Ltmp4455-Lfunc_begin0 - .quad Lset19757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19758, Ltmp4495-Lfunc_begin0 - .quad Lset19758 -.set Lset19759, Ltmp4496-Lfunc_begin0 - .quad Lset19759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19760, Ltmp4579-Lfunc_begin0 - .quad Lset19760 -.set Lset19761, Ltmp4581-Lfunc_begin0 - .quad Lset19761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19762, Ltmp4649-Lfunc_begin0 - .quad Lset19762 -.set Lset19763, Ltmp4651-Lfunc_begin0 - .quad Lset19763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19764, Ltmp4717-Lfunc_begin0 - .quad Lset19764 -.set Lset19765, Ltmp4719-Lfunc_begin0 - .quad Lset19765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19766, Ltmp4783-Lfunc_begin0 - .quad Lset19766 -.set Lset19767, Ltmp4784-Lfunc_begin0 - .quad Lset19767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19768, Ltmp4813-Lfunc_begin0 - .quad Lset19768 -.set Lset19769, Ltmp4814-Lfunc_begin0 - .quad Lset19769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19770, Ltmp4843-Lfunc_begin0 - .quad Lset19770 -.set Lset19771, Ltmp4844-Lfunc_begin0 - .quad Lset19771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19772, Ltmp4902-Lfunc_begin0 - .quad Lset19772 -.set Lset19773, Ltmp4903-Lfunc_begin0 - .quad Lset19773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19774, Ltmp4943-Lfunc_begin0 - .quad Lset19774 -.set Lset19775, Ltmp4944-Lfunc_begin0 - .quad Lset19775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19776, Ltmp5000-Lfunc_begin0 - .quad Lset19776 -.set Lset19777, Ltmp5001-Lfunc_begin0 - .quad Lset19777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19778, Ltmp5040-Lfunc_begin0 - .quad Lset19778 -.set Lset19779, Ltmp5041-Lfunc_begin0 - .quad Lset19779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19780, Ltmp5078-Lfunc_begin0 - .quad Lset19780 -.set Lset19781, Ltmp5079-Lfunc_begin0 - .quad Lset19781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19782, Ltmp5114-Lfunc_begin0 - .quad Lset19782 -.set Lset19783, Ltmp5115-Lfunc_begin0 - .quad Lset19783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19784, Ltmp5146-Lfunc_begin0 - .quad Lset19784 -.set Lset19785, Ltmp5147-Lfunc_begin0 - .quad Lset19785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19786, Ltmp5178-Lfunc_begin0 - .quad Lset19786 -.set Lset19787, Ltmp5179-Lfunc_begin0 - .quad Lset19787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19788, Ltmp5210-Lfunc_begin0 - .quad Lset19788 -.set Lset19789, Ltmp5211-Lfunc_begin0 - .quad Lset19789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19790, Ltmp5228-Lfunc_begin0 - .quad Lset19790 -.set Lset19791, Ltmp5229-Lfunc_begin0 - .quad Lset19791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19792, Ltmp5246-Lfunc_begin0 - .quad Lset19792 -.set Lset19793, Ltmp5247-Lfunc_begin0 - .quad Lset19793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19794, Ltmp5271-Lfunc_begin0 - .quad Lset19794 -.set Lset19795, Ltmp5272-Lfunc_begin0 - .quad Lset19795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19796, Ltmp5296-Lfunc_begin0 - .quad Lset19796 -.set Lset19797, Ltmp5297-Lfunc_begin0 - .quad Lset19797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19798, Ltmp5322-Lfunc_begin0 - .quad Lset19798 -.set Lset19799, Ltmp5323-Lfunc_begin0 - .quad Lset19799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19800, Ltmp5347-Lfunc_begin0 - .quad Lset19800 -.set Lset19801, Ltmp5348-Lfunc_begin0 - .quad Lset19801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19802, Ltmp5372-Lfunc_begin0 - .quad Lset19802 -.set Lset19803, Ltmp5373-Lfunc_begin0 - .quad Lset19803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19804, Ltmp5397-Lfunc_begin0 - .quad Lset19804 -.set Lset19805, Ltmp5398-Lfunc_begin0 - .quad Lset19805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19806, Ltmp5422-Lfunc_begin0 - .quad Lset19806 -.set Lset19807, Ltmp5423-Lfunc_begin0 - .quad Lset19807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19808, Ltmp5447-Lfunc_begin0 - .quad Lset19808 -.set Lset19809, Ltmp5448-Lfunc_begin0 - .quad Lset19809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19810, Ltmp5472-Lfunc_begin0 - .quad Lset19810 -.set Lset19811, Ltmp5473-Lfunc_begin0 - .quad Lset19811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19812, Ltmp5498-Lfunc_begin0 - .quad Lset19812 -.set Lset19813, Ltmp5499-Lfunc_begin0 - .quad Lset19813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19814, Ltmp5523-Lfunc_begin0 - .quad Lset19814 -.set Lset19815, Ltmp5524-Lfunc_begin0 - .quad Lset19815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19816, Ltmp5548-Lfunc_begin0 - .quad Lset19816 -.set Lset19817, Ltmp5549-Lfunc_begin0 - .quad Lset19817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19818, Ltmp5573-Lfunc_begin0 - .quad Lset19818 -.set Lset19819, Ltmp5574-Lfunc_begin0 - .quad Lset19819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19820, Ltmp5598-Lfunc_begin0 - .quad Lset19820 -.set Lset19821, Ltmp5599-Lfunc_begin0 - .quad Lset19821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19822, Ltmp5631-Lfunc_begin0 - .quad Lset19822 -.set Lset19823, Ltmp5632-Lfunc_begin0 - .quad Lset19823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19824, Ltmp5662-Lfunc_begin0 - .quad Lset19824 -.set Lset19825, Ltmp5663-Lfunc_begin0 - .quad Lset19825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19826, Ltmp5687-Lfunc_begin0 - .quad Lset19826 -.set Lset19827, Ltmp5688-Lfunc_begin0 - .quad Lset19827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19828, Ltmp5712-Lfunc_begin0 - .quad Lset19828 -.set Lset19829, Ltmp5713-Lfunc_begin0 - .quad Lset19829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19830, Ltmp5737-Lfunc_begin0 - .quad Lset19830 -.set Lset19831, Ltmp5738-Lfunc_begin0 - .quad Lset19831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19832, Ltmp5767-Lfunc_begin0 - .quad Lset19832 -.set Lset19833, Ltmp5768-Lfunc_begin0 - .quad Lset19833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19834, Ltmp5795-Lfunc_begin0 - .quad Lset19834 -.set Lset19835, Ltmp5796-Lfunc_begin0 - .quad Lset19835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19836, Ltmp5814-Lfunc_begin0 - .quad Lset19836 -.set Lset19837, Ltmp5815-Lfunc_begin0 - .quad Lset19837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19838, Ltmp5833-Lfunc_begin0 - .quad Lset19838 -.set Lset19839, Ltmp5834-Lfunc_begin0 - .quad Lset19839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19840, Ltmp5852-Lfunc_begin0 - .quad Lset19840 -.set Lset19841, Ltmp5853-Lfunc_begin0 - .quad Lset19841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19842, Ltmp5871-Lfunc_begin0 - .quad Lset19842 -.set Lset19843, Ltmp5872-Lfunc_begin0 - .quad Lset19843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19844, Ltmp5890-Lfunc_begin0 - .quad Lset19844 -.set Lset19845, Ltmp5891-Lfunc_begin0 - .quad Lset19845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19846, Ltmp5920-Lfunc_begin0 - .quad Lset19846 -.set Lset19847, Ltmp5921-Lfunc_begin0 - .quad Lset19847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc261: -.set Lset19848, Ltmp1186-Lfunc_begin0 - .quad Lset19848 -.set Lset19849, Ltmp1187-Lfunc_begin0 - .quad Lset19849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19850, Ltmp1215-Lfunc_begin0 - .quad Lset19850 -.set Lset19851, Ltmp1216-Lfunc_begin0 - .quad Lset19851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19852, Ltmp1237-Lfunc_begin0 - .quad Lset19852 -.set Lset19853, Ltmp1238-Lfunc_begin0 - .quad Lset19853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19854, Ltmp1260-Lfunc_begin0 - .quad Lset19854 -.set Lset19855, Ltmp1261-Lfunc_begin0 - .quad Lset19855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19856, Ltmp1281-Lfunc_begin0 - .quad Lset19856 -.set Lset19857, Ltmp1282-Lfunc_begin0 - .quad Lset19857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19858, Ltmp1314-Lfunc_begin0 - .quad Lset19858 -.set Lset19859, Ltmp1315-Lfunc_begin0 - .quad Lset19859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19860, Ltmp1338-Lfunc_begin0 - .quad Lset19860 -.set Lset19861, Ltmp1339-Lfunc_begin0 - .quad Lset19861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19862, Ltmp1368-Lfunc_begin0 - .quad Lset19862 -.set Lset19863, Ltmp1369-Lfunc_begin0 - .quad Lset19863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19864, Ltmp1462-Lfunc_begin0 - .quad Lset19864 -.set Lset19865, Ltmp1464-Lfunc_begin0 - .quad Lset19865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19866, Ltmp1557-Lfunc_begin0 - .quad Lset19866 -.set Lset19867, Ltmp1559-Lfunc_begin0 - .quad Lset19867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19868, Ltmp1713-Lfunc_begin0 - .quad Lset19868 -.set Lset19869, Ltmp1715-Lfunc_begin0 - .quad Lset19869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19870, Ltmp1864-Lfunc_begin0 - .quad Lset19870 -.set Lset19871, Ltmp1866-Lfunc_begin0 - .quad Lset19871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19872, Ltmp2004-Lfunc_begin0 - .quad Lset19872 -.set Lset19873, Ltmp2006-Lfunc_begin0 - .quad Lset19873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19874, Ltmp2074-Lfunc_begin0 - .quad Lset19874 -.set Lset19875, Ltmp2076-Lfunc_begin0 - .quad Lset19875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19876, Ltmp2120-Lfunc_begin0 - .quad Lset19876 -.set Lset19877, Ltmp2121-Lfunc_begin0 - .quad Lset19877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19878, Ltmp2193-Lfunc_begin0 - .quad Lset19878 -.set Lset19879, Ltmp2195-Lfunc_begin0 - .quad Lset19879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19880, Ltmp2253-Lfunc_begin0 - .quad Lset19880 -.set Lset19881, Ltmp2255-Lfunc_begin0 - .quad Lset19881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19882, Ltmp2302-Lfunc_begin0 - .quad Lset19882 -.set Lset19883, Ltmp2304-Lfunc_begin0 - .quad Lset19883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19884, Ltmp2351-Lfunc_begin0 - .quad Lset19884 -.set Lset19885, Ltmp2353-Lfunc_begin0 - .quad Lset19885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19886, Ltmp2400-Lfunc_begin0 - .quad Lset19886 -.set Lset19887, Ltmp2402-Lfunc_begin0 - .quad Lset19887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19888, Ltmp2444-Lfunc_begin0 - .quad Lset19888 -.set Lset19889, Ltmp2446-Lfunc_begin0 - .quad Lset19889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19890, Ltmp2499-Lfunc_begin0 - .quad Lset19890 -.set Lset19891, Ltmp2501-Lfunc_begin0 - .quad Lset19891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19892, Ltmp2554-Lfunc_begin0 - .quad Lset19892 -.set Lset19893, Ltmp2556-Lfunc_begin0 - .quad Lset19893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19894, Ltmp2609-Lfunc_begin0 - .quad Lset19894 -.set Lset19895, Ltmp2611-Lfunc_begin0 - .quad Lset19895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19896, Ltmp2673-Lfunc_begin0 - .quad Lset19896 -.set Lset19897, Ltmp2675-Lfunc_begin0 - .quad Lset19897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19898, Ltmp2738-Lfunc_begin0 - .quad Lset19898 -.set Lset19899, Ltmp2740-Lfunc_begin0 - .quad Lset19899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19900, Ltmp2811-Lfunc_begin0 - .quad Lset19900 -.set Lset19901, Ltmp2813-Lfunc_begin0 - .quad Lset19901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19902, Ltmp2871-Lfunc_begin0 - .quad Lset19902 -.set Lset19903, Ltmp2873-Lfunc_begin0 - .quad Lset19903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19904, Ltmp2922-Lfunc_begin0 - .quad Lset19904 -.set Lset19905, Ltmp2924-Lfunc_begin0 - .quad Lset19905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19906, Ltmp2957-Lfunc_begin0 - .quad Lset19906 -.set Lset19907, Ltmp2958-Lfunc_begin0 - .quad Lset19907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19908, Ltmp2997-Lfunc_begin0 - .quad Lset19908 -.set Lset19909, Ltmp2999-Lfunc_begin0 - .quad Lset19909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19910, Ltmp3024-Lfunc_begin0 - .quad Lset19910 -.set Lset19911, Ltmp3025-Lfunc_begin0 - .quad Lset19911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19912, Ltmp3047-Lfunc_begin0 - .quad Lset19912 -.set Lset19913, Ltmp3048-Lfunc_begin0 - .quad Lset19913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19914, Ltmp3096-Lfunc_begin0 - .quad Lset19914 -.set Lset19915, Ltmp3097-Lfunc_begin0 - .quad Lset19915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19916, Ltmp3120-Lfunc_begin0 - .quad Lset19916 -.set Lset19917, Ltmp3122-Lfunc_begin0 - .quad Lset19917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19918, Ltmp3161-Lfunc_begin0 - .quad Lset19918 -.set Lset19919, Ltmp3163-Lfunc_begin0 - .quad Lset19919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19920, Ltmp3227-Lfunc_begin0 - .quad Lset19920 -.set Lset19921, Ltmp3228-Lfunc_begin0 - .quad Lset19921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19922, Ltmp3292-Lfunc_begin0 - .quad Lset19922 -.set Lset19923, Ltmp3293-Lfunc_begin0 - .quad Lset19923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19924, Ltmp3329-Lfunc_begin0 - .quad Lset19924 -.set Lset19925, Ltmp3330-Lfunc_begin0 - .quad Lset19925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19926, Ltmp3375-Lfunc_begin0 - .quad Lset19926 -.set Lset19927, Ltmp3376-Lfunc_begin0 - .quad Lset19927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19928, Ltmp3407-Lfunc_begin0 - .quad Lset19928 -.set Lset19929, Ltmp3408-Lfunc_begin0 - .quad Lset19929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19930, Ltmp3435-Lfunc_begin0 - .quad Lset19930 -.set Lset19931, Ltmp3436-Lfunc_begin0 - .quad Lset19931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19932, Ltmp3537-Lfunc_begin0 - .quad Lset19932 -.set Lset19933, Ltmp3538-Lfunc_begin0 - .quad Lset19933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19934, Ltmp3638-Lfunc_begin0 - .quad Lset19934 -.set Lset19935, Ltmp3640-Lfunc_begin0 - .quad Lset19935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19936, Ltmp3685-Lfunc_begin0 - .quad Lset19936 -.set Lset19937, Ltmp3686-Lfunc_begin0 - .quad Lset19937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19938, Ltmp3807-Lfunc_begin0 - .quad Lset19938 -.set Lset19939, Ltmp3809-Lfunc_begin0 - .quad Lset19939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19940, Ltmp3864-Lfunc_begin0 - .quad Lset19940 -.set Lset19941, Ltmp3865-Lfunc_begin0 - .quad Lset19941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19942, Ltmp3933-Lfunc_begin0 - .quad Lset19942 -.set Lset19943, Ltmp3934-Lfunc_begin0 - .quad Lset19943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19944, Ltmp3959-Lfunc_begin0 - .quad Lset19944 -.set Lset19945, Ltmp3960-Lfunc_begin0 - .quad Lset19945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19946, Ltmp3985-Lfunc_begin0 - .quad Lset19946 -.set Lset19947, Ltmp3986-Lfunc_begin0 - .quad Lset19947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19948, Ltmp4011-Lfunc_begin0 - .quad Lset19948 -.set Lset19949, Ltmp4012-Lfunc_begin0 - .quad Lset19949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19950, Ltmp4046-Lfunc_begin0 - .quad Lset19950 -.set Lset19951, Ltmp4047-Lfunc_begin0 - .quad Lset19951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19952, Ltmp4084-Lfunc_begin0 - .quad Lset19952 -.set Lset19953, Ltmp4085-Lfunc_begin0 - .quad Lset19953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19954, Ltmp4106-Lfunc_begin0 - .quad Lset19954 -.set Lset19955, Ltmp4107-Lfunc_begin0 - .quad Lset19955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19956, Ltmp4146-Lfunc_begin0 - .quad Lset19956 -.set Lset19957, Ltmp4147-Lfunc_begin0 - .quad Lset19957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19958, Ltmp4187-Lfunc_begin0 - .quad Lset19958 -.set Lset19959, Ltmp4188-Lfunc_begin0 - .quad Lset19959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19960, Ltmp4227-Lfunc_begin0 - .quad Lset19960 -.set Lset19961, Ltmp4228-Lfunc_begin0 - .quad Lset19961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19962, Ltmp4268-Lfunc_begin0 - .quad Lset19962 -.set Lset19963, Ltmp4269-Lfunc_begin0 - .quad Lset19963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19964, Ltmp4308-Lfunc_begin0 - .quad Lset19964 -.set Lset19965, Ltmp4309-Lfunc_begin0 - .quad Lset19965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19966, Ltmp4349-Lfunc_begin0 - .quad Lset19966 -.set Lset19967, Ltmp4350-Lfunc_begin0 - .quad Lset19967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19968, Ltmp4380-Lfunc_begin0 - .quad Lset19968 -.set Lset19969, Ltmp4381-Lfunc_begin0 - .quad Lset19969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19970, Ltmp4412-Lfunc_begin0 - .quad Lset19970 -.set Lset19971, Ltmp4414-Lfunc_begin0 - .quad Lset19971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19972, Ltmp4454-Lfunc_begin0 - .quad Lset19972 -.set Lset19973, Ltmp4455-Lfunc_begin0 - .quad Lset19973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19974, Ltmp4495-Lfunc_begin0 - .quad Lset19974 -.set Lset19975, Ltmp4496-Lfunc_begin0 - .quad Lset19975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19976, Ltmp4579-Lfunc_begin0 - .quad Lset19976 -.set Lset19977, Ltmp4581-Lfunc_begin0 - .quad Lset19977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19978, Ltmp4649-Lfunc_begin0 - .quad Lset19978 -.set Lset19979, Ltmp4651-Lfunc_begin0 - .quad Lset19979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19980, Ltmp4717-Lfunc_begin0 - .quad Lset19980 -.set Lset19981, Ltmp4719-Lfunc_begin0 - .quad Lset19981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19982, Ltmp4783-Lfunc_begin0 - .quad Lset19982 -.set Lset19983, Ltmp4784-Lfunc_begin0 - .quad Lset19983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19984, Ltmp4813-Lfunc_begin0 - .quad Lset19984 -.set Lset19985, Ltmp4814-Lfunc_begin0 - .quad Lset19985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19986, Ltmp4843-Lfunc_begin0 - .quad Lset19986 -.set Lset19987, Ltmp4844-Lfunc_begin0 - .quad Lset19987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19988, Ltmp4902-Lfunc_begin0 - .quad Lset19988 -.set Lset19989, Ltmp4903-Lfunc_begin0 - .quad Lset19989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19990, Ltmp4943-Lfunc_begin0 - .quad Lset19990 -.set Lset19991, Ltmp4944-Lfunc_begin0 - .quad Lset19991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19992, Ltmp5000-Lfunc_begin0 - .quad Lset19992 -.set Lset19993, Ltmp5001-Lfunc_begin0 - .quad Lset19993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19994, Ltmp5040-Lfunc_begin0 - .quad Lset19994 -.set Lset19995, Ltmp5041-Lfunc_begin0 - .quad Lset19995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19996, Ltmp5078-Lfunc_begin0 - .quad Lset19996 -.set Lset19997, Ltmp5079-Lfunc_begin0 - .quad Lset19997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset19998, Ltmp5114-Lfunc_begin0 - .quad Lset19998 -.set Lset19999, Ltmp5115-Lfunc_begin0 - .quad Lset19999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20000, Ltmp5146-Lfunc_begin0 - .quad Lset20000 -.set Lset20001, Ltmp5147-Lfunc_begin0 - .quad Lset20001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20002, Ltmp5178-Lfunc_begin0 - .quad Lset20002 -.set Lset20003, Ltmp5179-Lfunc_begin0 - .quad Lset20003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20004, Ltmp5210-Lfunc_begin0 - .quad Lset20004 -.set Lset20005, Ltmp5211-Lfunc_begin0 - .quad Lset20005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20006, Ltmp5218-Lfunc_begin0 - .quad Lset20006 -.set Lset20007, Ltmp5225-Lfunc_begin0 - .quad Lset20007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20008, Ltmp5228-Lfunc_begin0 - .quad Lset20008 -.set Lset20009, Ltmp5229-Lfunc_begin0 - .quad Lset20009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20010, Ltmp5246-Lfunc_begin0 - .quad Lset20010 -.set Lset20011, Ltmp5247-Lfunc_begin0 - .quad Lset20011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20012, Ltmp5271-Lfunc_begin0 - .quad Lset20012 -.set Lset20013, Ltmp5272-Lfunc_begin0 - .quad Lset20013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20014, Ltmp5296-Lfunc_begin0 - .quad Lset20014 -.set Lset20015, Ltmp5297-Lfunc_begin0 - .quad Lset20015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20016, Ltmp5322-Lfunc_begin0 - .quad Lset20016 -.set Lset20017, Ltmp5323-Lfunc_begin0 - .quad Lset20017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20018, Ltmp5347-Lfunc_begin0 - .quad Lset20018 -.set Lset20019, Ltmp5348-Lfunc_begin0 - .quad Lset20019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20020, Ltmp5372-Lfunc_begin0 - .quad Lset20020 -.set Lset20021, Ltmp5373-Lfunc_begin0 - .quad Lset20021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20022, Ltmp5397-Lfunc_begin0 - .quad Lset20022 -.set Lset20023, Ltmp5398-Lfunc_begin0 - .quad Lset20023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20024, Ltmp5422-Lfunc_begin0 - .quad Lset20024 -.set Lset20025, Ltmp5423-Lfunc_begin0 - .quad Lset20025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20026, Ltmp5447-Lfunc_begin0 - .quad Lset20026 -.set Lset20027, Ltmp5448-Lfunc_begin0 - .quad Lset20027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20028, Ltmp5472-Lfunc_begin0 - .quad Lset20028 -.set Lset20029, Ltmp5473-Lfunc_begin0 - .quad Lset20029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20030, Ltmp5498-Lfunc_begin0 - .quad Lset20030 -.set Lset20031, Ltmp5499-Lfunc_begin0 - .quad Lset20031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20032, Ltmp5523-Lfunc_begin0 - .quad Lset20032 -.set Lset20033, Ltmp5524-Lfunc_begin0 - .quad Lset20033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20034, Ltmp5548-Lfunc_begin0 - .quad Lset20034 -.set Lset20035, Ltmp5549-Lfunc_begin0 - .quad Lset20035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20036, Ltmp5573-Lfunc_begin0 - .quad Lset20036 -.set Lset20037, Ltmp5574-Lfunc_begin0 - .quad Lset20037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20038, Ltmp5598-Lfunc_begin0 - .quad Lset20038 -.set Lset20039, Ltmp5599-Lfunc_begin0 - .quad Lset20039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20040, Ltmp5631-Lfunc_begin0 - .quad Lset20040 -.set Lset20041, Ltmp5632-Lfunc_begin0 - .quad Lset20041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20042, Ltmp5662-Lfunc_begin0 - .quad Lset20042 -.set Lset20043, Ltmp5663-Lfunc_begin0 - .quad Lset20043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20044, Ltmp5687-Lfunc_begin0 - .quad Lset20044 -.set Lset20045, Ltmp5688-Lfunc_begin0 - .quad Lset20045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20046, Ltmp5712-Lfunc_begin0 - .quad Lset20046 -.set Lset20047, Ltmp5713-Lfunc_begin0 - .quad Lset20047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20048, Ltmp5737-Lfunc_begin0 - .quad Lset20048 -.set Lset20049, Ltmp5738-Lfunc_begin0 - .quad Lset20049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20050, Ltmp5767-Lfunc_begin0 - .quad Lset20050 -.set Lset20051, Ltmp5768-Lfunc_begin0 - .quad Lset20051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20052, Ltmp5795-Lfunc_begin0 - .quad Lset20052 -.set Lset20053, Ltmp5796-Lfunc_begin0 - .quad Lset20053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20054, Ltmp5814-Lfunc_begin0 - .quad Lset20054 -.set Lset20055, Ltmp5815-Lfunc_begin0 - .quad Lset20055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20056, Ltmp5833-Lfunc_begin0 - .quad Lset20056 -.set Lset20057, Ltmp5834-Lfunc_begin0 - .quad Lset20057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20058, Ltmp5852-Lfunc_begin0 - .quad Lset20058 -.set Lset20059, Ltmp5853-Lfunc_begin0 - .quad Lset20059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20060, Ltmp5871-Lfunc_begin0 - .quad Lset20060 -.set Lset20061, Ltmp5872-Lfunc_begin0 - .quad Lset20061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20062, Ltmp5890-Lfunc_begin0 - .quad Lset20062 -.set Lset20063, Ltmp5891-Lfunc_begin0 - .quad Lset20063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20064, Ltmp5920-Lfunc_begin0 - .quad Lset20064 -.set Lset20065, Ltmp5921-Lfunc_begin0 - .quad Lset20065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc262: -.set Lset20066, Ltmp1186-Lfunc_begin0 - .quad Lset20066 -.set Lset20067, Ltmp1187-Lfunc_begin0 - .quad Lset20067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20068, Ltmp1215-Lfunc_begin0 - .quad Lset20068 -.set Lset20069, Ltmp1216-Lfunc_begin0 - .quad Lset20069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20070, Ltmp1237-Lfunc_begin0 - .quad Lset20070 -.set Lset20071, Ltmp1238-Lfunc_begin0 - .quad Lset20071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20072, Ltmp1260-Lfunc_begin0 - .quad Lset20072 -.set Lset20073, Ltmp1261-Lfunc_begin0 - .quad Lset20073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20074, Ltmp1281-Lfunc_begin0 - .quad Lset20074 -.set Lset20075, Ltmp1282-Lfunc_begin0 - .quad Lset20075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20076, Ltmp1314-Lfunc_begin0 - .quad Lset20076 -.set Lset20077, Ltmp1315-Lfunc_begin0 - .quad Lset20077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20078, Ltmp1338-Lfunc_begin0 - .quad Lset20078 -.set Lset20079, Ltmp1339-Lfunc_begin0 - .quad Lset20079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20080, Ltmp1368-Lfunc_begin0 - .quad Lset20080 -.set Lset20081, Ltmp1369-Lfunc_begin0 - .quad Lset20081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20082, Ltmp1462-Lfunc_begin0 - .quad Lset20082 -.set Lset20083, Ltmp1464-Lfunc_begin0 - .quad Lset20083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20084, Ltmp1557-Lfunc_begin0 - .quad Lset20084 -.set Lset20085, Ltmp1559-Lfunc_begin0 - .quad Lset20085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20086, Ltmp1713-Lfunc_begin0 - .quad Lset20086 -.set Lset20087, Ltmp1715-Lfunc_begin0 - .quad Lset20087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20088, Ltmp1864-Lfunc_begin0 - .quad Lset20088 -.set Lset20089, Ltmp1866-Lfunc_begin0 - .quad Lset20089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20090, Ltmp2004-Lfunc_begin0 - .quad Lset20090 -.set Lset20091, Ltmp2006-Lfunc_begin0 - .quad Lset20091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20092, Ltmp2074-Lfunc_begin0 - .quad Lset20092 -.set Lset20093, Ltmp2076-Lfunc_begin0 - .quad Lset20093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20094, Ltmp2120-Lfunc_begin0 - .quad Lset20094 -.set Lset20095, Ltmp2121-Lfunc_begin0 - .quad Lset20095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20096, Ltmp2193-Lfunc_begin0 - .quad Lset20096 -.set Lset20097, Ltmp2195-Lfunc_begin0 - .quad Lset20097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20098, Ltmp2253-Lfunc_begin0 - .quad Lset20098 -.set Lset20099, Ltmp2255-Lfunc_begin0 - .quad Lset20099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20100, Ltmp2302-Lfunc_begin0 - .quad Lset20100 -.set Lset20101, Ltmp2304-Lfunc_begin0 - .quad Lset20101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20102, Ltmp2351-Lfunc_begin0 - .quad Lset20102 -.set Lset20103, Ltmp2353-Lfunc_begin0 - .quad Lset20103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20104, Ltmp2400-Lfunc_begin0 - .quad Lset20104 -.set Lset20105, Ltmp2402-Lfunc_begin0 - .quad Lset20105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20106, Ltmp2444-Lfunc_begin0 - .quad Lset20106 -.set Lset20107, Ltmp2446-Lfunc_begin0 - .quad Lset20107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20108, Ltmp2499-Lfunc_begin0 - .quad Lset20108 -.set Lset20109, Ltmp2501-Lfunc_begin0 - .quad Lset20109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20110, Ltmp2554-Lfunc_begin0 - .quad Lset20110 -.set Lset20111, Ltmp2556-Lfunc_begin0 - .quad Lset20111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20112, Ltmp2609-Lfunc_begin0 - .quad Lset20112 -.set Lset20113, Ltmp2611-Lfunc_begin0 - .quad Lset20113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20114, Ltmp2673-Lfunc_begin0 - .quad Lset20114 -.set Lset20115, Ltmp2675-Lfunc_begin0 - .quad Lset20115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20116, Ltmp2738-Lfunc_begin0 - .quad Lset20116 -.set Lset20117, Ltmp2740-Lfunc_begin0 - .quad Lset20117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20118, Ltmp2811-Lfunc_begin0 - .quad Lset20118 -.set Lset20119, Ltmp2813-Lfunc_begin0 - .quad Lset20119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20120, Ltmp2871-Lfunc_begin0 - .quad Lset20120 -.set Lset20121, Ltmp2873-Lfunc_begin0 - .quad Lset20121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20122, Ltmp2922-Lfunc_begin0 - .quad Lset20122 -.set Lset20123, Ltmp2924-Lfunc_begin0 - .quad Lset20123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20124, Ltmp2957-Lfunc_begin0 - .quad Lset20124 -.set Lset20125, Ltmp2958-Lfunc_begin0 - .quad Lset20125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20126, Ltmp2997-Lfunc_begin0 - .quad Lset20126 -.set Lset20127, Ltmp2999-Lfunc_begin0 - .quad Lset20127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20128, Ltmp3024-Lfunc_begin0 - .quad Lset20128 -.set Lset20129, Ltmp3025-Lfunc_begin0 - .quad Lset20129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20130, Ltmp3047-Lfunc_begin0 - .quad Lset20130 -.set Lset20131, Ltmp3048-Lfunc_begin0 - .quad Lset20131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20132, Ltmp3096-Lfunc_begin0 - .quad Lset20132 -.set Lset20133, Ltmp3097-Lfunc_begin0 - .quad Lset20133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20134, Ltmp3120-Lfunc_begin0 - .quad Lset20134 -.set Lset20135, Ltmp3122-Lfunc_begin0 - .quad Lset20135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20136, Ltmp3161-Lfunc_begin0 - .quad Lset20136 -.set Lset20137, Ltmp3163-Lfunc_begin0 - .quad Lset20137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20138, Ltmp3227-Lfunc_begin0 - .quad Lset20138 -.set Lset20139, Ltmp3228-Lfunc_begin0 - .quad Lset20139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20140, Ltmp3292-Lfunc_begin0 - .quad Lset20140 -.set Lset20141, Ltmp3293-Lfunc_begin0 - .quad Lset20141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20142, Ltmp3329-Lfunc_begin0 - .quad Lset20142 -.set Lset20143, Ltmp3330-Lfunc_begin0 - .quad Lset20143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20144, Ltmp3375-Lfunc_begin0 - .quad Lset20144 -.set Lset20145, Ltmp3376-Lfunc_begin0 - .quad Lset20145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20146, Ltmp3407-Lfunc_begin0 - .quad Lset20146 -.set Lset20147, Ltmp3408-Lfunc_begin0 - .quad Lset20147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20148, Ltmp3435-Lfunc_begin0 - .quad Lset20148 -.set Lset20149, Ltmp3436-Lfunc_begin0 - .quad Lset20149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20150, Ltmp3537-Lfunc_begin0 - .quad Lset20150 -.set Lset20151, Ltmp3538-Lfunc_begin0 - .quad Lset20151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20152, Ltmp3638-Lfunc_begin0 - .quad Lset20152 -.set Lset20153, Ltmp3640-Lfunc_begin0 - .quad Lset20153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20154, Ltmp3685-Lfunc_begin0 - .quad Lset20154 -.set Lset20155, Ltmp3686-Lfunc_begin0 - .quad Lset20155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20156, Ltmp3807-Lfunc_begin0 - .quad Lset20156 -.set Lset20157, Ltmp3809-Lfunc_begin0 - .quad Lset20157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20158, Ltmp3864-Lfunc_begin0 - .quad Lset20158 -.set Lset20159, Ltmp3865-Lfunc_begin0 - .quad Lset20159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20160, Ltmp3933-Lfunc_begin0 - .quad Lset20160 -.set Lset20161, Ltmp3934-Lfunc_begin0 - .quad Lset20161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20162, Ltmp3959-Lfunc_begin0 - .quad Lset20162 -.set Lset20163, Ltmp3960-Lfunc_begin0 - .quad Lset20163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20164, Ltmp3985-Lfunc_begin0 - .quad Lset20164 -.set Lset20165, Ltmp3986-Lfunc_begin0 - .quad Lset20165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20166, Ltmp4011-Lfunc_begin0 - .quad Lset20166 -.set Lset20167, Ltmp4012-Lfunc_begin0 - .quad Lset20167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20168, Ltmp4046-Lfunc_begin0 - .quad Lset20168 -.set Lset20169, Ltmp4047-Lfunc_begin0 - .quad Lset20169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20170, Ltmp4084-Lfunc_begin0 - .quad Lset20170 -.set Lset20171, Ltmp4085-Lfunc_begin0 - .quad Lset20171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20172, Ltmp4106-Lfunc_begin0 - .quad Lset20172 -.set Lset20173, Ltmp4107-Lfunc_begin0 - .quad Lset20173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20174, Ltmp4146-Lfunc_begin0 - .quad Lset20174 -.set Lset20175, Ltmp4147-Lfunc_begin0 - .quad Lset20175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20176, Ltmp4187-Lfunc_begin0 - .quad Lset20176 -.set Lset20177, Ltmp4188-Lfunc_begin0 - .quad Lset20177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20178, Ltmp4227-Lfunc_begin0 - .quad Lset20178 -.set Lset20179, Ltmp4228-Lfunc_begin0 - .quad Lset20179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20180, Ltmp4268-Lfunc_begin0 - .quad Lset20180 -.set Lset20181, Ltmp4269-Lfunc_begin0 - .quad Lset20181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20182, Ltmp4308-Lfunc_begin0 - .quad Lset20182 -.set Lset20183, Ltmp4309-Lfunc_begin0 - .quad Lset20183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20184, Ltmp4349-Lfunc_begin0 - .quad Lset20184 -.set Lset20185, Ltmp4350-Lfunc_begin0 - .quad Lset20185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20186, Ltmp4380-Lfunc_begin0 - .quad Lset20186 -.set Lset20187, Ltmp4381-Lfunc_begin0 - .quad Lset20187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20188, Ltmp4412-Lfunc_begin0 - .quad Lset20188 -.set Lset20189, Ltmp4414-Lfunc_begin0 - .quad Lset20189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20190, Ltmp4454-Lfunc_begin0 - .quad Lset20190 -.set Lset20191, Ltmp4455-Lfunc_begin0 - .quad Lset20191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20192, Ltmp4495-Lfunc_begin0 - .quad Lset20192 -.set Lset20193, Ltmp4496-Lfunc_begin0 - .quad Lset20193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20194, Ltmp4579-Lfunc_begin0 - .quad Lset20194 -.set Lset20195, Ltmp4581-Lfunc_begin0 - .quad Lset20195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20196, Ltmp4649-Lfunc_begin0 - .quad Lset20196 -.set Lset20197, Ltmp4651-Lfunc_begin0 - .quad Lset20197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20198, Ltmp4717-Lfunc_begin0 - .quad Lset20198 -.set Lset20199, Ltmp4719-Lfunc_begin0 - .quad Lset20199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20200, Ltmp4783-Lfunc_begin0 - .quad Lset20200 -.set Lset20201, Ltmp4784-Lfunc_begin0 - .quad Lset20201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20202, Ltmp4813-Lfunc_begin0 - .quad Lset20202 -.set Lset20203, Ltmp4814-Lfunc_begin0 - .quad Lset20203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20204, Ltmp4843-Lfunc_begin0 - .quad Lset20204 -.set Lset20205, Ltmp4844-Lfunc_begin0 - .quad Lset20205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20206, Ltmp4902-Lfunc_begin0 - .quad Lset20206 -.set Lset20207, Ltmp4903-Lfunc_begin0 - .quad Lset20207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20208, Ltmp4943-Lfunc_begin0 - .quad Lset20208 -.set Lset20209, Ltmp4944-Lfunc_begin0 - .quad Lset20209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20210, Ltmp5000-Lfunc_begin0 - .quad Lset20210 -.set Lset20211, Ltmp5001-Lfunc_begin0 - .quad Lset20211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20212, Ltmp5040-Lfunc_begin0 - .quad Lset20212 -.set Lset20213, Ltmp5041-Lfunc_begin0 - .quad Lset20213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20214, Ltmp5078-Lfunc_begin0 - .quad Lset20214 -.set Lset20215, Ltmp5079-Lfunc_begin0 - .quad Lset20215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20216, Ltmp5114-Lfunc_begin0 - .quad Lset20216 -.set Lset20217, Ltmp5115-Lfunc_begin0 - .quad Lset20217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20218, Ltmp5146-Lfunc_begin0 - .quad Lset20218 -.set Lset20219, Ltmp5147-Lfunc_begin0 - .quad Lset20219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20220, Ltmp5178-Lfunc_begin0 - .quad Lset20220 -.set Lset20221, Ltmp5179-Lfunc_begin0 - .quad Lset20221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20222, Ltmp5210-Lfunc_begin0 - .quad Lset20222 -.set Lset20223, Ltmp5211-Lfunc_begin0 - .quad Lset20223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20224, Ltmp5228-Lfunc_begin0 - .quad Lset20224 -.set Lset20225, Ltmp5229-Lfunc_begin0 - .quad Lset20225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20226, Ltmp5236-Lfunc_begin0 - .quad Lset20226 -.set Lset20227, Ltmp5243-Lfunc_begin0 - .quad Lset20227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20228, Ltmp5246-Lfunc_begin0 - .quad Lset20228 -.set Lset20229, Ltmp5247-Lfunc_begin0 - .quad Lset20229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20230, Ltmp5271-Lfunc_begin0 - .quad Lset20230 -.set Lset20231, Ltmp5272-Lfunc_begin0 - .quad Lset20231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20232, Ltmp5296-Lfunc_begin0 - .quad Lset20232 -.set Lset20233, Ltmp5297-Lfunc_begin0 - .quad Lset20233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20234, Ltmp5322-Lfunc_begin0 - .quad Lset20234 -.set Lset20235, Ltmp5323-Lfunc_begin0 - .quad Lset20235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20236, Ltmp5347-Lfunc_begin0 - .quad Lset20236 -.set Lset20237, Ltmp5348-Lfunc_begin0 - .quad Lset20237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20238, Ltmp5372-Lfunc_begin0 - .quad Lset20238 -.set Lset20239, Ltmp5373-Lfunc_begin0 - .quad Lset20239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20240, Ltmp5397-Lfunc_begin0 - .quad Lset20240 -.set Lset20241, Ltmp5398-Lfunc_begin0 - .quad Lset20241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20242, Ltmp5422-Lfunc_begin0 - .quad Lset20242 -.set Lset20243, Ltmp5423-Lfunc_begin0 - .quad Lset20243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20244, Ltmp5447-Lfunc_begin0 - .quad Lset20244 -.set Lset20245, Ltmp5448-Lfunc_begin0 - .quad Lset20245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20246, Ltmp5472-Lfunc_begin0 - .quad Lset20246 -.set Lset20247, Ltmp5473-Lfunc_begin0 - .quad Lset20247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20248, Ltmp5498-Lfunc_begin0 - .quad Lset20248 -.set Lset20249, Ltmp5499-Lfunc_begin0 - .quad Lset20249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20250, Ltmp5523-Lfunc_begin0 - .quad Lset20250 -.set Lset20251, Ltmp5524-Lfunc_begin0 - .quad Lset20251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20252, Ltmp5548-Lfunc_begin0 - .quad Lset20252 -.set Lset20253, Ltmp5549-Lfunc_begin0 - .quad Lset20253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20254, Ltmp5573-Lfunc_begin0 - .quad Lset20254 -.set Lset20255, Ltmp5574-Lfunc_begin0 - .quad Lset20255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20256, Ltmp5598-Lfunc_begin0 - .quad Lset20256 -.set Lset20257, Ltmp5599-Lfunc_begin0 - .quad Lset20257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20258, Ltmp5631-Lfunc_begin0 - .quad Lset20258 -.set Lset20259, Ltmp5632-Lfunc_begin0 - .quad Lset20259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20260, Ltmp5662-Lfunc_begin0 - .quad Lset20260 -.set Lset20261, Ltmp5663-Lfunc_begin0 - .quad Lset20261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20262, Ltmp5687-Lfunc_begin0 - .quad Lset20262 -.set Lset20263, Ltmp5688-Lfunc_begin0 - .quad Lset20263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20264, Ltmp5712-Lfunc_begin0 - .quad Lset20264 -.set Lset20265, Ltmp5713-Lfunc_begin0 - .quad Lset20265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20266, Ltmp5737-Lfunc_begin0 - .quad Lset20266 -.set Lset20267, Ltmp5738-Lfunc_begin0 - .quad Lset20267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20268, Ltmp5767-Lfunc_begin0 - .quad Lset20268 -.set Lset20269, Ltmp5768-Lfunc_begin0 - .quad Lset20269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20270, Ltmp5795-Lfunc_begin0 - .quad Lset20270 -.set Lset20271, Ltmp5796-Lfunc_begin0 - .quad Lset20271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20272, Ltmp5814-Lfunc_begin0 - .quad Lset20272 -.set Lset20273, Ltmp5815-Lfunc_begin0 - .quad Lset20273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20274, Ltmp5833-Lfunc_begin0 - .quad Lset20274 -.set Lset20275, Ltmp5834-Lfunc_begin0 - .quad Lset20275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20276, Ltmp5852-Lfunc_begin0 - .quad Lset20276 -.set Lset20277, Ltmp5853-Lfunc_begin0 - .quad Lset20277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20278, Ltmp5871-Lfunc_begin0 - .quad Lset20278 -.set Lset20279, Ltmp5872-Lfunc_begin0 - .quad Lset20279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20280, Ltmp5890-Lfunc_begin0 - .quad Lset20280 -.set Lset20281, Ltmp5891-Lfunc_begin0 - .quad Lset20281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20282, Ltmp5920-Lfunc_begin0 - .quad Lset20282 -.set Lset20283, Ltmp5921-Lfunc_begin0 - .quad Lset20283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc263: -.set Lset20284, Ltmp1186-Lfunc_begin0 - .quad Lset20284 -.set Lset20285, Ltmp1187-Lfunc_begin0 - .quad Lset20285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20286, Ltmp1215-Lfunc_begin0 - .quad Lset20286 -.set Lset20287, Ltmp1216-Lfunc_begin0 - .quad Lset20287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20288, Ltmp1237-Lfunc_begin0 - .quad Lset20288 -.set Lset20289, Ltmp1238-Lfunc_begin0 - .quad Lset20289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20290, Ltmp1260-Lfunc_begin0 - .quad Lset20290 -.set Lset20291, Ltmp1261-Lfunc_begin0 - .quad Lset20291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20292, Ltmp1281-Lfunc_begin0 - .quad Lset20292 -.set Lset20293, Ltmp1282-Lfunc_begin0 - .quad Lset20293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20294, Ltmp1314-Lfunc_begin0 - .quad Lset20294 -.set Lset20295, Ltmp1315-Lfunc_begin0 - .quad Lset20295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20296, Ltmp1338-Lfunc_begin0 - .quad Lset20296 -.set Lset20297, Ltmp1339-Lfunc_begin0 - .quad Lset20297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20298, Ltmp1368-Lfunc_begin0 - .quad Lset20298 -.set Lset20299, Ltmp1369-Lfunc_begin0 - .quad Lset20299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20300, Ltmp1462-Lfunc_begin0 - .quad Lset20300 -.set Lset20301, Ltmp1464-Lfunc_begin0 - .quad Lset20301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20302, Ltmp1557-Lfunc_begin0 - .quad Lset20302 -.set Lset20303, Ltmp1559-Lfunc_begin0 - .quad Lset20303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20304, Ltmp1713-Lfunc_begin0 - .quad Lset20304 -.set Lset20305, Ltmp1715-Lfunc_begin0 - .quad Lset20305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20306, Ltmp1864-Lfunc_begin0 - .quad Lset20306 -.set Lset20307, Ltmp1866-Lfunc_begin0 - .quad Lset20307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20308, Ltmp2004-Lfunc_begin0 - .quad Lset20308 -.set Lset20309, Ltmp2006-Lfunc_begin0 - .quad Lset20309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20310, Ltmp2074-Lfunc_begin0 - .quad Lset20310 -.set Lset20311, Ltmp2076-Lfunc_begin0 - .quad Lset20311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20312, Ltmp2120-Lfunc_begin0 - .quad Lset20312 -.set Lset20313, Ltmp2121-Lfunc_begin0 - .quad Lset20313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20314, Ltmp2193-Lfunc_begin0 - .quad Lset20314 -.set Lset20315, Ltmp2195-Lfunc_begin0 - .quad Lset20315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20316, Ltmp2253-Lfunc_begin0 - .quad Lset20316 -.set Lset20317, Ltmp2255-Lfunc_begin0 - .quad Lset20317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20318, Ltmp2302-Lfunc_begin0 - .quad Lset20318 -.set Lset20319, Ltmp2304-Lfunc_begin0 - .quad Lset20319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20320, Ltmp2351-Lfunc_begin0 - .quad Lset20320 -.set Lset20321, Ltmp2353-Lfunc_begin0 - .quad Lset20321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20322, Ltmp2400-Lfunc_begin0 - .quad Lset20322 -.set Lset20323, Ltmp2402-Lfunc_begin0 - .quad Lset20323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20324, Ltmp2444-Lfunc_begin0 - .quad Lset20324 -.set Lset20325, Ltmp2446-Lfunc_begin0 - .quad Lset20325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20326, Ltmp2499-Lfunc_begin0 - .quad Lset20326 -.set Lset20327, Ltmp2501-Lfunc_begin0 - .quad Lset20327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20328, Ltmp2554-Lfunc_begin0 - .quad Lset20328 -.set Lset20329, Ltmp2556-Lfunc_begin0 - .quad Lset20329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20330, Ltmp2609-Lfunc_begin0 - .quad Lset20330 -.set Lset20331, Ltmp2611-Lfunc_begin0 - .quad Lset20331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20332, Ltmp2673-Lfunc_begin0 - .quad Lset20332 -.set Lset20333, Ltmp2675-Lfunc_begin0 - .quad Lset20333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20334, Ltmp2738-Lfunc_begin0 - .quad Lset20334 -.set Lset20335, Ltmp2740-Lfunc_begin0 - .quad Lset20335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20336, Ltmp2811-Lfunc_begin0 - .quad Lset20336 -.set Lset20337, Ltmp2813-Lfunc_begin0 - .quad Lset20337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20338, Ltmp2871-Lfunc_begin0 - .quad Lset20338 -.set Lset20339, Ltmp2873-Lfunc_begin0 - .quad Lset20339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20340, Ltmp2922-Lfunc_begin0 - .quad Lset20340 -.set Lset20341, Ltmp2924-Lfunc_begin0 - .quad Lset20341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20342, Ltmp2957-Lfunc_begin0 - .quad Lset20342 -.set Lset20343, Ltmp2958-Lfunc_begin0 - .quad Lset20343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20344, Ltmp2997-Lfunc_begin0 - .quad Lset20344 -.set Lset20345, Ltmp2999-Lfunc_begin0 - .quad Lset20345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20346, Ltmp3024-Lfunc_begin0 - .quad Lset20346 -.set Lset20347, Ltmp3025-Lfunc_begin0 - .quad Lset20347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20348, Ltmp3047-Lfunc_begin0 - .quad Lset20348 -.set Lset20349, Ltmp3048-Lfunc_begin0 - .quad Lset20349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20350, Ltmp3096-Lfunc_begin0 - .quad Lset20350 -.set Lset20351, Ltmp3097-Lfunc_begin0 - .quad Lset20351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20352, Ltmp3120-Lfunc_begin0 - .quad Lset20352 -.set Lset20353, Ltmp3122-Lfunc_begin0 - .quad Lset20353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20354, Ltmp3161-Lfunc_begin0 - .quad Lset20354 -.set Lset20355, Ltmp3163-Lfunc_begin0 - .quad Lset20355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20356, Ltmp3227-Lfunc_begin0 - .quad Lset20356 -.set Lset20357, Ltmp3228-Lfunc_begin0 - .quad Lset20357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20358, Ltmp3292-Lfunc_begin0 - .quad Lset20358 -.set Lset20359, Ltmp3293-Lfunc_begin0 - .quad Lset20359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20360, Ltmp3329-Lfunc_begin0 - .quad Lset20360 -.set Lset20361, Ltmp3330-Lfunc_begin0 - .quad Lset20361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20362, Ltmp3375-Lfunc_begin0 - .quad Lset20362 -.set Lset20363, Ltmp3376-Lfunc_begin0 - .quad Lset20363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20364, Ltmp3407-Lfunc_begin0 - .quad Lset20364 -.set Lset20365, Ltmp3408-Lfunc_begin0 - .quad Lset20365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20366, Ltmp3435-Lfunc_begin0 - .quad Lset20366 -.set Lset20367, Ltmp3436-Lfunc_begin0 - .quad Lset20367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20368, Ltmp3537-Lfunc_begin0 - .quad Lset20368 -.set Lset20369, Ltmp3538-Lfunc_begin0 - .quad Lset20369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20370, Ltmp3638-Lfunc_begin0 - .quad Lset20370 -.set Lset20371, Ltmp3640-Lfunc_begin0 - .quad Lset20371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20372, Ltmp3685-Lfunc_begin0 - .quad Lset20372 -.set Lset20373, Ltmp3686-Lfunc_begin0 - .quad Lset20373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20374, Ltmp3807-Lfunc_begin0 - .quad Lset20374 -.set Lset20375, Ltmp3809-Lfunc_begin0 - .quad Lset20375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20376, Ltmp3864-Lfunc_begin0 - .quad Lset20376 -.set Lset20377, Ltmp3865-Lfunc_begin0 - .quad Lset20377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20378, Ltmp3933-Lfunc_begin0 - .quad Lset20378 -.set Lset20379, Ltmp3934-Lfunc_begin0 - .quad Lset20379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20380, Ltmp3959-Lfunc_begin0 - .quad Lset20380 -.set Lset20381, Ltmp3960-Lfunc_begin0 - .quad Lset20381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20382, Ltmp3985-Lfunc_begin0 - .quad Lset20382 -.set Lset20383, Ltmp3986-Lfunc_begin0 - .quad Lset20383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20384, Ltmp4011-Lfunc_begin0 - .quad Lset20384 -.set Lset20385, Ltmp4012-Lfunc_begin0 - .quad Lset20385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20386, Ltmp4046-Lfunc_begin0 - .quad Lset20386 -.set Lset20387, Ltmp4047-Lfunc_begin0 - .quad Lset20387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20388, Ltmp4084-Lfunc_begin0 - .quad Lset20388 -.set Lset20389, Ltmp4085-Lfunc_begin0 - .quad Lset20389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20390, Ltmp4106-Lfunc_begin0 - .quad Lset20390 -.set Lset20391, Ltmp4107-Lfunc_begin0 - .quad Lset20391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20392, Ltmp4146-Lfunc_begin0 - .quad Lset20392 -.set Lset20393, Ltmp4147-Lfunc_begin0 - .quad Lset20393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20394, Ltmp4187-Lfunc_begin0 - .quad Lset20394 -.set Lset20395, Ltmp4188-Lfunc_begin0 - .quad Lset20395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20396, Ltmp4227-Lfunc_begin0 - .quad Lset20396 -.set Lset20397, Ltmp4228-Lfunc_begin0 - .quad Lset20397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20398, Ltmp4268-Lfunc_begin0 - .quad Lset20398 -.set Lset20399, Ltmp4269-Lfunc_begin0 - .quad Lset20399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20400, Ltmp4308-Lfunc_begin0 - .quad Lset20400 -.set Lset20401, Ltmp4309-Lfunc_begin0 - .quad Lset20401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20402, Ltmp4349-Lfunc_begin0 - .quad Lset20402 -.set Lset20403, Ltmp4350-Lfunc_begin0 - .quad Lset20403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20404, Ltmp4380-Lfunc_begin0 - .quad Lset20404 -.set Lset20405, Ltmp4381-Lfunc_begin0 - .quad Lset20405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20406, Ltmp4412-Lfunc_begin0 - .quad Lset20406 -.set Lset20407, Ltmp4414-Lfunc_begin0 - .quad Lset20407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20408, Ltmp4454-Lfunc_begin0 - .quad Lset20408 -.set Lset20409, Ltmp4455-Lfunc_begin0 - .quad Lset20409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20410, Ltmp4495-Lfunc_begin0 - .quad Lset20410 -.set Lset20411, Ltmp4496-Lfunc_begin0 - .quad Lset20411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20412, Ltmp4579-Lfunc_begin0 - .quad Lset20412 -.set Lset20413, Ltmp4581-Lfunc_begin0 - .quad Lset20413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20414, Ltmp4649-Lfunc_begin0 - .quad Lset20414 -.set Lset20415, Ltmp4651-Lfunc_begin0 - .quad Lset20415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20416, Ltmp4717-Lfunc_begin0 - .quad Lset20416 -.set Lset20417, Ltmp4719-Lfunc_begin0 - .quad Lset20417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20418, Ltmp4783-Lfunc_begin0 - .quad Lset20418 -.set Lset20419, Ltmp4784-Lfunc_begin0 - .quad Lset20419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20420, Ltmp4813-Lfunc_begin0 - .quad Lset20420 -.set Lset20421, Ltmp4814-Lfunc_begin0 - .quad Lset20421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20422, Ltmp4843-Lfunc_begin0 - .quad Lset20422 -.set Lset20423, Ltmp4844-Lfunc_begin0 - .quad Lset20423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20424, Ltmp4902-Lfunc_begin0 - .quad Lset20424 -.set Lset20425, Ltmp4903-Lfunc_begin0 - .quad Lset20425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20426, Ltmp4943-Lfunc_begin0 - .quad Lset20426 -.set Lset20427, Ltmp4944-Lfunc_begin0 - .quad Lset20427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20428, Ltmp5000-Lfunc_begin0 - .quad Lset20428 -.set Lset20429, Ltmp5001-Lfunc_begin0 - .quad Lset20429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20430, Ltmp5040-Lfunc_begin0 - .quad Lset20430 -.set Lset20431, Ltmp5041-Lfunc_begin0 - .quad Lset20431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20432, Ltmp5078-Lfunc_begin0 - .quad Lset20432 -.set Lset20433, Ltmp5079-Lfunc_begin0 - .quad Lset20433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20434, Ltmp5114-Lfunc_begin0 - .quad Lset20434 -.set Lset20435, Ltmp5115-Lfunc_begin0 - .quad Lset20435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20436, Ltmp5146-Lfunc_begin0 - .quad Lset20436 -.set Lset20437, Ltmp5147-Lfunc_begin0 - .quad Lset20437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20438, Ltmp5178-Lfunc_begin0 - .quad Lset20438 -.set Lset20439, Ltmp5179-Lfunc_begin0 - .quad Lset20439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20440, Ltmp5210-Lfunc_begin0 - .quad Lset20440 -.set Lset20441, Ltmp5211-Lfunc_begin0 - .quad Lset20441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20442, Ltmp5228-Lfunc_begin0 - .quad Lset20442 -.set Lset20443, Ltmp5229-Lfunc_begin0 - .quad Lset20443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20444, Ltmp5246-Lfunc_begin0 - .quad Lset20444 -.set Lset20445, Ltmp5247-Lfunc_begin0 - .quad Lset20445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20446, Ltmp5271-Lfunc_begin0 - .quad Lset20446 -.set Lset20447, Ltmp5272-Lfunc_begin0 - .quad Lset20447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20448, Ltmp5296-Lfunc_begin0 - .quad Lset20448 -.set Lset20449, Ltmp5297-Lfunc_begin0 - .quad Lset20449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20450, Ltmp5322-Lfunc_begin0 - .quad Lset20450 -.set Lset20451, Ltmp5323-Lfunc_begin0 - .quad Lset20451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20452, Ltmp5347-Lfunc_begin0 - .quad Lset20452 -.set Lset20453, Ltmp5348-Lfunc_begin0 - .quad Lset20453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20454, Ltmp5372-Lfunc_begin0 - .quad Lset20454 -.set Lset20455, Ltmp5373-Lfunc_begin0 - .quad Lset20455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20456, Ltmp5397-Lfunc_begin0 - .quad Lset20456 -.set Lset20457, Ltmp5398-Lfunc_begin0 - .quad Lset20457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20458, Ltmp5422-Lfunc_begin0 - .quad Lset20458 -.set Lset20459, Ltmp5423-Lfunc_begin0 - .quad Lset20459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20460, Ltmp5447-Lfunc_begin0 - .quad Lset20460 -.set Lset20461, Ltmp5448-Lfunc_begin0 - .quad Lset20461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20462, Ltmp5472-Lfunc_begin0 - .quad Lset20462 -.set Lset20463, Ltmp5473-Lfunc_begin0 - .quad Lset20463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20464, Ltmp5498-Lfunc_begin0 - .quad Lset20464 -.set Lset20465, Ltmp5499-Lfunc_begin0 - .quad Lset20465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20466, Ltmp5523-Lfunc_begin0 - .quad Lset20466 -.set Lset20467, Ltmp5524-Lfunc_begin0 - .quad Lset20467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20468, Ltmp5548-Lfunc_begin0 - .quad Lset20468 -.set Lset20469, Ltmp5549-Lfunc_begin0 - .quad Lset20469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20470, Ltmp5573-Lfunc_begin0 - .quad Lset20470 -.set Lset20471, Ltmp5574-Lfunc_begin0 - .quad Lset20471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20472, Ltmp5598-Lfunc_begin0 - .quad Lset20472 -.set Lset20473, Ltmp5599-Lfunc_begin0 - .quad Lset20473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20474, Ltmp5631-Lfunc_begin0 - .quad Lset20474 -.set Lset20475, Ltmp5632-Lfunc_begin0 - .quad Lset20475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20476, Ltmp5662-Lfunc_begin0 - .quad Lset20476 -.set Lset20477, Ltmp5663-Lfunc_begin0 - .quad Lset20477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20478, Ltmp5687-Lfunc_begin0 - .quad Lset20478 -.set Lset20479, Ltmp5688-Lfunc_begin0 - .quad Lset20479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20480, Ltmp5712-Lfunc_begin0 - .quad Lset20480 -.set Lset20481, Ltmp5713-Lfunc_begin0 - .quad Lset20481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20482, Ltmp5737-Lfunc_begin0 - .quad Lset20482 -.set Lset20483, Ltmp5738-Lfunc_begin0 - .quad Lset20483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20484, Ltmp5767-Lfunc_begin0 - .quad Lset20484 -.set Lset20485, Ltmp5768-Lfunc_begin0 - .quad Lset20485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20486, Ltmp5795-Lfunc_begin0 - .quad Lset20486 -.set Lset20487, Ltmp5796-Lfunc_begin0 - .quad Lset20487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20488, Ltmp5814-Lfunc_begin0 - .quad Lset20488 -.set Lset20489, Ltmp5815-Lfunc_begin0 - .quad Lset20489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20490, Ltmp5833-Lfunc_begin0 - .quad Lset20490 -.set Lset20491, Ltmp5834-Lfunc_begin0 - .quad Lset20491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20492, Ltmp5852-Lfunc_begin0 - .quad Lset20492 -.set Lset20493, Ltmp5853-Lfunc_begin0 - .quad Lset20493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20494, Ltmp5871-Lfunc_begin0 - .quad Lset20494 -.set Lset20495, Ltmp5872-Lfunc_begin0 - .quad Lset20495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20496, Ltmp5890-Lfunc_begin0 - .quad Lset20496 -.set Lset20497, Ltmp5891-Lfunc_begin0 - .quad Lset20497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20498, Ltmp5920-Lfunc_begin0 - .quad Lset20498 -.set Lset20499, Ltmp5921-Lfunc_begin0 - .quad Lset20499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc264: -.set Lset20500, Ltmp1186-Lfunc_begin0 - .quad Lset20500 -.set Lset20501, Ltmp1187-Lfunc_begin0 - .quad Lset20501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20502, Ltmp1215-Lfunc_begin0 - .quad Lset20502 -.set Lset20503, Ltmp1216-Lfunc_begin0 - .quad Lset20503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20504, Ltmp1237-Lfunc_begin0 - .quad Lset20504 -.set Lset20505, Ltmp1238-Lfunc_begin0 - .quad Lset20505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20506, Ltmp1260-Lfunc_begin0 - .quad Lset20506 -.set Lset20507, Ltmp1261-Lfunc_begin0 - .quad Lset20507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20508, Ltmp1281-Lfunc_begin0 - .quad Lset20508 -.set Lset20509, Ltmp1282-Lfunc_begin0 - .quad Lset20509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20510, Ltmp1314-Lfunc_begin0 - .quad Lset20510 -.set Lset20511, Ltmp1315-Lfunc_begin0 - .quad Lset20511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20512, Ltmp1338-Lfunc_begin0 - .quad Lset20512 -.set Lset20513, Ltmp1339-Lfunc_begin0 - .quad Lset20513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20514, Ltmp1368-Lfunc_begin0 - .quad Lset20514 -.set Lset20515, Ltmp1369-Lfunc_begin0 - .quad Lset20515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20516, Ltmp1462-Lfunc_begin0 - .quad Lset20516 -.set Lset20517, Ltmp1464-Lfunc_begin0 - .quad Lset20517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20518, Ltmp1557-Lfunc_begin0 - .quad Lset20518 -.set Lset20519, Ltmp1559-Lfunc_begin0 - .quad Lset20519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20520, Ltmp1713-Lfunc_begin0 - .quad Lset20520 -.set Lset20521, Ltmp1715-Lfunc_begin0 - .quad Lset20521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20522, Ltmp1864-Lfunc_begin0 - .quad Lset20522 -.set Lset20523, Ltmp1866-Lfunc_begin0 - .quad Lset20523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20524, Ltmp2004-Lfunc_begin0 - .quad Lset20524 -.set Lset20525, Ltmp2006-Lfunc_begin0 - .quad Lset20525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20526, Ltmp2074-Lfunc_begin0 - .quad Lset20526 -.set Lset20527, Ltmp2076-Lfunc_begin0 - .quad Lset20527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20528, Ltmp2120-Lfunc_begin0 - .quad Lset20528 -.set Lset20529, Ltmp2121-Lfunc_begin0 - .quad Lset20529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20530, Ltmp2193-Lfunc_begin0 - .quad Lset20530 -.set Lset20531, Ltmp2195-Lfunc_begin0 - .quad Lset20531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20532, Ltmp2253-Lfunc_begin0 - .quad Lset20532 -.set Lset20533, Ltmp2255-Lfunc_begin0 - .quad Lset20533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20534, Ltmp2302-Lfunc_begin0 - .quad Lset20534 -.set Lset20535, Ltmp2304-Lfunc_begin0 - .quad Lset20535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20536, Ltmp2351-Lfunc_begin0 - .quad Lset20536 -.set Lset20537, Ltmp2353-Lfunc_begin0 - .quad Lset20537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20538, Ltmp2400-Lfunc_begin0 - .quad Lset20538 -.set Lset20539, Ltmp2402-Lfunc_begin0 - .quad Lset20539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20540, Ltmp2444-Lfunc_begin0 - .quad Lset20540 -.set Lset20541, Ltmp2446-Lfunc_begin0 - .quad Lset20541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20542, Ltmp2499-Lfunc_begin0 - .quad Lset20542 -.set Lset20543, Ltmp2501-Lfunc_begin0 - .quad Lset20543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20544, Ltmp2554-Lfunc_begin0 - .quad Lset20544 -.set Lset20545, Ltmp2556-Lfunc_begin0 - .quad Lset20545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20546, Ltmp2609-Lfunc_begin0 - .quad Lset20546 -.set Lset20547, Ltmp2611-Lfunc_begin0 - .quad Lset20547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20548, Ltmp2673-Lfunc_begin0 - .quad Lset20548 -.set Lset20549, Ltmp2675-Lfunc_begin0 - .quad Lset20549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20550, Ltmp2738-Lfunc_begin0 - .quad Lset20550 -.set Lset20551, Ltmp2740-Lfunc_begin0 - .quad Lset20551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20552, Ltmp2811-Lfunc_begin0 - .quad Lset20552 -.set Lset20553, Ltmp2813-Lfunc_begin0 - .quad Lset20553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20554, Ltmp2871-Lfunc_begin0 - .quad Lset20554 -.set Lset20555, Ltmp2873-Lfunc_begin0 - .quad Lset20555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20556, Ltmp2922-Lfunc_begin0 - .quad Lset20556 -.set Lset20557, Ltmp2924-Lfunc_begin0 - .quad Lset20557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20558, Ltmp2957-Lfunc_begin0 - .quad Lset20558 -.set Lset20559, Ltmp2958-Lfunc_begin0 - .quad Lset20559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20560, Ltmp2997-Lfunc_begin0 - .quad Lset20560 -.set Lset20561, Ltmp2999-Lfunc_begin0 - .quad Lset20561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20562, Ltmp3024-Lfunc_begin0 - .quad Lset20562 -.set Lset20563, Ltmp3025-Lfunc_begin0 - .quad Lset20563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20564, Ltmp3047-Lfunc_begin0 - .quad Lset20564 -.set Lset20565, Ltmp3048-Lfunc_begin0 - .quad Lset20565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20566, Ltmp3096-Lfunc_begin0 - .quad Lset20566 -.set Lset20567, Ltmp3097-Lfunc_begin0 - .quad Lset20567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20568, Ltmp3120-Lfunc_begin0 - .quad Lset20568 -.set Lset20569, Ltmp3122-Lfunc_begin0 - .quad Lset20569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20570, Ltmp3161-Lfunc_begin0 - .quad Lset20570 -.set Lset20571, Ltmp3163-Lfunc_begin0 - .quad Lset20571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20572, Ltmp3227-Lfunc_begin0 - .quad Lset20572 -.set Lset20573, Ltmp3228-Lfunc_begin0 - .quad Lset20573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20574, Ltmp3292-Lfunc_begin0 - .quad Lset20574 -.set Lset20575, Ltmp3293-Lfunc_begin0 - .quad Lset20575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20576, Ltmp3329-Lfunc_begin0 - .quad Lset20576 -.set Lset20577, Ltmp3330-Lfunc_begin0 - .quad Lset20577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20578, Ltmp3375-Lfunc_begin0 - .quad Lset20578 -.set Lset20579, Ltmp3376-Lfunc_begin0 - .quad Lset20579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20580, Ltmp3407-Lfunc_begin0 - .quad Lset20580 -.set Lset20581, Ltmp3408-Lfunc_begin0 - .quad Lset20581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20582, Ltmp3435-Lfunc_begin0 - .quad Lset20582 -.set Lset20583, Ltmp3436-Lfunc_begin0 - .quad Lset20583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20584, Ltmp3537-Lfunc_begin0 - .quad Lset20584 -.set Lset20585, Ltmp3538-Lfunc_begin0 - .quad Lset20585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20586, Ltmp3638-Lfunc_begin0 - .quad Lset20586 -.set Lset20587, Ltmp3640-Lfunc_begin0 - .quad Lset20587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20588, Ltmp3685-Lfunc_begin0 - .quad Lset20588 -.set Lset20589, Ltmp3686-Lfunc_begin0 - .quad Lset20589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20590, Ltmp3807-Lfunc_begin0 - .quad Lset20590 -.set Lset20591, Ltmp3809-Lfunc_begin0 - .quad Lset20591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20592, Ltmp3864-Lfunc_begin0 - .quad Lset20592 -.set Lset20593, Ltmp3865-Lfunc_begin0 - .quad Lset20593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20594, Ltmp3933-Lfunc_begin0 - .quad Lset20594 -.set Lset20595, Ltmp3934-Lfunc_begin0 - .quad Lset20595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20596, Ltmp3959-Lfunc_begin0 - .quad Lset20596 -.set Lset20597, Ltmp3960-Lfunc_begin0 - .quad Lset20597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20598, Ltmp3985-Lfunc_begin0 - .quad Lset20598 -.set Lset20599, Ltmp3986-Lfunc_begin0 - .quad Lset20599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20600, Ltmp4011-Lfunc_begin0 - .quad Lset20600 -.set Lset20601, Ltmp4012-Lfunc_begin0 - .quad Lset20601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20602, Ltmp4046-Lfunc_begin0 - .quad Lset20602 -.set Lset20603, Ltmp4047-Lfunc_begin0 - .quad Lset20603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20604, Ltmp4084-Lfunc_begin0 - .quad Lset20604 -.set Lset20605, Ltmp4085-Lfunc_begin0 - .quad Lset20605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20606, Ltmp4106-Lfunc_begin0 - .quad Lset20606 -.set Lset20607, Ltmp4107-Lfunc_begin0 - .quad Lset20607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20608, Ltmp4146-Lfunc_begin0 - .quad Lset20608 -.set Lset20609, Ltmp4147-Lfunc_begin0 - .quad Lset20609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20610, Ltmp4187-Lfunc_begin0 - .quad Lset20610 -.set Lset20611, Ltmp4188-Lfunc_begin0 - .quad Lset20611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20612, Ltmp4227-Lfunc_begin0 - .quad Lset20612 -.set Lset20613, Ltmp4228-Lfunc_begin0 - .quad Lset20613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20614, Ltmp4268-Lfunc_begin0 - .quad Lset20614 -.set Lset20615, Ltmp4269-Lfunc_begin0 - .quad Lset20615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20616, Ltmp4308-Lfunc_begin0 - .quad Lset20616 -.set Lset20617, Ltmp4309-Lfunc_begin0 - .quad Lset20617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20618, Ltmp4349-Lfunc_begin0 - .quad Lset20618 -.set Lset20619, Ltmp4350-Lfunc_begin0 - .quad Lset20619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20620, Ltmp4380-Lfunc_begin0 - .quad Lset20620 -.set Lset20621, Ltmp4381-Lfunc_begin0 - .quad Lset20621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20622, Ltmp4412-Lfunc_begin0 - .quad Lset20622 -.set Lset20623, Ltmp4414-Lfunc_begin0 - .quad Lset20623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20624, Ltmp4454-Lfunc_begin0 - .quad Lset20624 -.set Lset20625, Ltmp4455-Lfunc_begin0 - .quad Lset20625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20626, Ltmp4495-Lfunc_begin0 - .quad Lset20626 -.set Lset20627, Ltmp4496-Lfunc_begin0 - .quad Lset20627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20628, Ltmp4579-Lfunc_begin0 - .quad Lset20628 -.set Lset20629, Ltmp4581-Lfunc_begin0 - .quad Lset20629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20630, Ltmp4649-Lfunc_begin0 - .quad Lset20630 -.set Lset20631, Ltmp4651-Lfunc_begin0 - .quad Lset20631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20632, Ltmp4717-Lfunc_begin0 - .quad Lset20632 -.set Lset20633, Ltmp4719-Lfunc_begin0 - .quad Lset20633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20634, Ltmp4783-Lfunc_begin0 - .quad Lset20634 -.set Lset20635, Ltmp4784-Lfunc_begin0 - .quad Lset20635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20636, Ltmp4813-Lfunc_begin0 - .quad Lset20636 -.set Lset20637, Ltmp4814-Lfunc_begin0 - .quad Lset20637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20638, Ltmp4843-Lfunc_begin0 - .quad Lset20638 -.set Lset20639, Ltmp4844-Lfunc_begin0 - .quad Lset20639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20640, Ltmp4902-Lfunc_begin0 - .quad Lset20640 -.set Lset20641, Ltmp4903-Lfunc_begin0 - .quad Lset20641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20642, Ltmp4943-Lfunc_begin0 - .quad Lset20642 -.set Lset20643, Ltmp4944-Lfunc_begin0 - .quad Lset20643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20644, Ltmp5000-Lfunc_begin0 - .quad Lset20644 -.set Lset20645, Ltmp5001-Lfunc_begin0 - .quad Lset20645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20646, Ltmp5040-Lfunc_begin0 - .quad Lset20646 -.set Lset20647, Ltmp5041-Lfunc_begin0 - .quad Lset20647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20648, Ltmp5078-Lfunc_begin0 - .quad Lset20648 -.set Lset20649, Ltmp5079-Lfunc_begin0 - .quad Lset20649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20650, Ltmp5114-Lfunc_begin0 - .quad Lset20650 -.set Lset20651, Ltmp5115-Lfunc_begin0 - .quad Lset20651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20652, Ltmp5146-Lfunc_begin0 - .quad Lset20652 -.set Lset20653, Ltmp5147-Lfunc_begin0 - .quad Lset20653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20654, Ltmp5178-Lfunc_begin0 - .quad Lset20654 -.set Lset20655, Ltmp5179-Lfunc_begin0 - .quad Lset20655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20656, Ltmp5210-Lfunc_begin0 - .quad Lset20656 -.set Lset20657, Ltmp5211-Lfunc_begin0 - .quad Lset20657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20658, Ltmp5228-Lfunc_begin0 - .quad Lset20658 -.set Lset20659, Ltmp5229-Lfunc_begin0 - .quad Lset20659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20660, Ltmp5246-Lfunc_begin0 - .quad Lset20660 -.set Lset20661, Ltmp5247-Lfunc_begin0 - .quad Lset20661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20662, Ltmp5271-Lfunc_begin0 - .quad Lset20662 -.set Lset20663, Ltmp5272-Lfunc_begin0 - .quad Lset20663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20664, Ltmp5296-Lfunc_begin0 - .quad Lset20664 -.set Lset20665, Ltmp5297-Lfunc_begin0 - .quad Lset20665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20666, Ltmp5322-Lfunc_begin0 - .quad Lset20666 -.set Lset20667, Ltmp5323-Lfunc_begin0 - .quad Lset20667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20668, Ltmp5347-Lfunc_begin0 - .quad Lset20668 -.set Lset20669, Ltmp5348-Lfunc_begin0 - .quad Lset20669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20670, Ltmp5372-Lfunc_begin0 - .quad Lset20670 -.set Lset20671, Ltmp5373-Lfunc_begin0 - .quad Lset20671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20672, Ltmp5397-Lfunc_begin0 - .quad Lset20672 -.set Lset20673, Ltmp5398-Lfunc_begin0 - .quad Lset20673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20674, Ltmp5422-Lfunc_begin0 - .quad Lset20674 -.set Lset20675, Ltmp5423-Lfunc_begin0 - .quad Lset20675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20676, Ltmp5447-Lfunc_begin0 - .quad Lset20676 -.set Lset20677, Ltmp5448-Lfunc_begin0 - .quad Lset20677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20678, Ltmp5472-Lfunc_begin0 - .quad Lset20678 -.set Lset20679, Ltmp5473-Lfunc_begin0 - .quad Lset20679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20680, Ltmp5498-Lfunc_begin0 - .quad Lset20680 -.set Lset20681, Ltmp5499-Lfunc_begin0 - .quad Lset20681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20682, Ltmp5523-Lfunc_begin0 - .quad Lset20682 -.set Lset20683, Ltmp5524-Lfunc_begin0 - .quad Lset20683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20684, Ltmp5548-Lfunc_begin0 - .quad Lset20684 -.set Lset20685, Ltmp5549-Lfunc_begin0 - .quad Lset20685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20686, Ltmp5573-Lfunc_begin0 - .quad Lset20686 -.set Lset20687, Ltmp5574-Lfunc_begin0 - .quad Lset20687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20688, Ltmp5598-Lfunc_begin0 - .quad Lset20688 -.set Lset20689, Ltmp5599-Lfunc_begin0 - .quad Lset20689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20690, Ltmp5631-Lfunc_begin0 - .quad Lset20690 -.set Lset20691, Ltmp5632-Lfunc_begin0 - .quad Lset20691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20692, Ltmp5662-Lfunc_begin0 - .quad Lset20692 -.set Lset20693, Ltmp5663-Lfunc_begin0 - .quad Lset20693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20694, Ltmp5687-Lfunc_begin0 - .quad Lset20694 -.set Lset20695, Ltmp5688-Lfunc_begin0 - .quad Lset20695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20696, Ltmp5712-Lfunc_begin0 - .quad Lset20696 -.set Lset20697, Ltmp5713-Lfunc_begin0 - .quad Lset20697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20698, Ltmp5737-Lfunc_begin0 - .quad Lset20698 -.set Lset20699, Ltmp5738-Lfunc_begin0 - .quad Lset20699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20700, Ltmp5767-Lfunc_begin0 - .quad Lset20700 -.set Lset20701, Ltmp5768-Lfunc_begin0 - .quad Lset20701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20702, Ltmp5795-Lfunc_begin0 - .quad Lset20702 -.set Lset20703, Ltmp5796-Lfunc_begin0 - .quad Lset20703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20704, Ltmp5814-Lfunc_begin0 - .quad Lset20704 -.set Lset20705, Ltmp5815-Lfunc_begin0 - .quad Lset20705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20706, Ltmp5833-Lfunc_begin0 - .quad Lset20706 -.set Lset20707, Ltmp5834-Lfunc_begin0 - .quad Lset20707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20708, Ltmp5852-Lfunc_begin0 - .quad Lset20708 -.set Lset20709, Ltmp5853-Lfunc_begin0 - .quad Lset20709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20710, Ltmp5871-Lfunc_begin0 - .quad Lset20710 -.set Lset20711, Ltmp5872-Lfunc_begin0 - .quad Lset20711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20712, Ltmp5890-Lfunc_begin0 - .quad Lset20712 -.set Lset20713, Ltmp5891-Lfunc_begin0 - .quad Lset20713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20714, Ltmp5920-Lfunc_begin0 - .quad Lset20714 -.set Lset20715, Ltmp5921-Lfunc_begin0 - .quad Lset20715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc265: -.set Lset20716, Ltmp1186-Lfunc_begin0 - .quad Lset20716 -.set Lset20717, Ltmp1187-Lfunc_begin0 - .quad Lset20717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20718, Ltmp1215-Lfunc_begin0 - .quad Lset20718 -.set Lset20719, Ltmp1216-Lfunc_begin0 - .quad Lset20719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20720, Ltmp1237-Lfunc_begin0 - .quad Lset20720 -.set Lset20721, Ltmp1238-Lfunc_begin0 - .quad Lset20721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20722, Ltmp1260-Lfunc_begin0 - .quad Lset20722 -.set Lset20723, Ltmp1261-Lfunc_begin0 - .quad Lset20723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20724, Ltmp1281-Lfunc_begin0 - .quad Lset20724 -.set Lset20725, Ltmp1282-Lfunc_begin0 - .quad Lset20725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20726, Ltmp1314-Lfunc_begin0 - .quad Lset20726 -.set Lset20727, Ltmp1315-Lfunc_begin0 - .quad Lset20727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20728, Ltmp1338-Lfunc_begin0 - .quad Lset20728 -.set Lset20729, Ltmp1339-Lfunc_begin0 - .quad Lset20729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20730, Ltmp1368-Lfunc_begin0 - .quad Lset20730 -.set Lset20731, Ltmp1369-Lfunc_begin0 - .quad Lset20731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20732, Ltmp1462-Lfunc_begin0 - .quad Lset20732 -.set Lset20733, Ltmp1464-Lfunc_begin0 - .quad Lset20733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20734, Ltmp1557-Lfunc_begin0 - .quad Lset20734 -.set Lset20735, Ltmp1559-Lfunc_begin0 - .quad Lset20735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20736, Ltmp1713-Lfunc_begin0 - .quad Lset20736 -.set Lset20737, Ltmp1715-Lfunc_begin0 - .quad Lset20737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20738, Ltmp1864-Lfunc_begin0 - .quad Lset20738 -.set Lset20739, Ltmp1866-Lfunc_begin0 - .quad Lset20739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20740, Ltmp2004-Lfunc_begin0 - .quad Lset20740 -.set Lset20741, Ltmp2006-Lfunc_begin0 - .quad Lset20741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20742, Ltmp2074-Lfunc_begin0 - .quad Lset20742 -.set Lset20743, Ltmp2076-Lfunc_begin0 - .quad Lset20743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20744, Ltmp2120-Lfunc_begin0 - .quad Lset20744 -.set Lset20745, Ltmp2121-Lfunc_begin0 - .quad Lset20745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20746, Ltmp2193-Lfunc_begin0 - .quad Lset20746 -.set Lset20747, Ltmp2195-Lfunc_begin0 - .quad Lset20747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20748, Ltmp2253-Lfunc_begin0 - .quad Lset20748 -.set Lset20749, Ltmp2255-Lfunc_begin0 - .quad Lset20749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20750, Ltmp2302-Lfunc_begin0 - .quad Lset20750 -.set Lset20751, Ltmp2304-Lfunc_begin0 - .quad Lset20751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20752, Ltmp2351-Lfunc_begin0 - .quad Lset20752 -.set Lset20753, Ltmp2353-Lfunc_begin0 - .quad Lset20753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20754, Ltmp2400-Lfunc_begin0 - .quad Lset20754 -.set Lset20755, Ltmp2402-Lfunc_begin0 - .quad Lset20755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20756, Ltmp2444-Lfunc_begin0 - .quad Lset20756 -.set Lset20757, Ltmp2446-Lfunc_begin0 - .quad Lset20757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20758, Ltmp2499-Lfunc_begin0 - .quad Lset20758 -.set Lset20759, Ltmp2501-Lfunc_begin0 - .quad Lset20759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20760, Ltmp2554-Lfunc_begin0 - .quad Lset20760 -.set Lset20761, Ltmp2556-Lfunc_begin0 - .quad Lset20761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20762, Ltmp2609-Lfunc_begin0 - .quad Lset20762 -.set Lset20763, Ltmp2611-Lfunc_begin0 - .quad Lset20763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20764, Ltmp2673-Lfunc_begin0 - .quad Lset20764 -.set Lset20765, Ltmp2675-Lfunc_begin0 - .quad Lset20765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20766, Ltmp2738-Lfunc_begin0 - .quad Lset20766 -.set Lset20767, Ltmp2740-Lfunc_begin0 - .quad Lset20767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20768, Ltmp2811-Lfunc_begin0 - .quad Lset20768 -.set Lset20769, Ltmp2813-Lfunc_begin0 - .quad Lset20769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20770, Ltmp2871-Lfunc_begin0 - .quad Lset20770 -.set Lset20771, Ltmp2873-Lfunc_begin0 - .quad Lset20771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20772, Ltmp2922-Lfunc_begin0 - .quad Lset20772 -.set Lset20773, Ltmp2924-Lfunc_begin0 - .quad Lset20773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20774, Ltmp2957-Lfunc_begin0 - .quad Lset20774 -.set Lset20775, Ltmp2958-Lfunc_begin0 - .quad Lset20775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20776, Ltmp2997-Lfunc_begin0 - .quad Lset20776 -.set Lset20777, Ltmp2999-Lfunc_begin0 - .quad Lset20777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20778, Ltmp3024-Lfunc_begin0 - .quad Lset20778 -.set Lset20779, Ltmp3025-Lfunc_begin0 - .quad Lset20779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20780, Ltmp3047-Lfunc_begin0 - .quad Lset20780 -.set Lset20781, Ltmp3048-Lfunc_begin0 - .quad Lset20781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20782, Ltmp3096-Lfunc_begin0 - .quad Lset20782 -.set Lset20783, Ltmp3097-Lfunc_begin0 - .quad Lset20783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20784, Ltmp3120-Lfunc_begin0 - .quad Lset20784 -.set Lset20785, Ltmp3122-Lfunc_begin0 - .quad Lset20785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20786, Ltmp3161-Lfunc_begin0 - .quad Lset20786 -.set Lset20787, Ltmp3163-Lfunc_begin0 - .quad Lset20787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20788, Ltmp3227-Lfunc_begin0 - .quad Lset20788 -.set Lset20789, Ltmp3228-Lfunc_begin0 - .quad Lset20789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20790, Ltmp3292-Lfunc_begin0 - .quad Lset20790 -.set Lset20791, Ltmp3293-Lfunc_begin0 - .quad Lset20791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20792, Ltmp3329-Lfunc_begin0 - .quad Lset20792 -.set Lset20793, Ltmp3330-Lfunc_begin0 - .quad Lset20793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20794, Ltmp3375-Lfunc_begin0 - .quad Lset20794 -.set Lset20795, Ltmp3376-Lfunc_begin0 - .quad Lset20795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20796, Ltmp3407-Lfunc_begin0 - .quad Lset20796 -.set Lset20797, Ltmp3408-Lfunc_begin0 - .quad Lset20797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20798, Ltmp3435-Lfunc_begin0 - .quad Lset20798 -.set Lset20799, Ltmp3436-Lfunc_begin0 - .quad Lset20799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20800, Ltmp3537-Lfunc_begin0 - .quad Lset20800 -.set Lset20801, Ltmp3538-Lfunc_begin0 - .quad Lset20801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20802, Ltmp3638-Lfunc_begin0 - .quad Lset20802 -.set Lset20803, Ltmp3640-Lfunc_begin0 - .quad Lset20803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20804, Ltmp3685-Lfunc_begin0 - .quad Lset20804 -.set Lset20805, Ltmp3686-Lfunc_begin0 - .quad Lset20805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20806, Ltmp3807-Lfunc_begin0 - .quad Lset20806 -.set Lset20807, Ltmp3809-Lfunc_begin0 - .quad Lset20807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20808, Ltmp3864-Lfunc_begin0 - .quad Lset20808 -.set Lset20809, Ltmp3865-Lfunc_begin0 - .quad Lset20809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20810, Ltmp3933-Lfunc_begin0 - .quad Lset20810 -.set Lset20811, Ltmp3934-Lfunc_begin0 - .quad Lset20811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20812, Ltmp3959-Lfunc_begin0 - .quad Lset20812 -.set Lset20813, Ltmp3960-Lfunc_begin0 - .quad Lset20813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20814, Ltmp3985-Lfunc_begin0 - .quad Lset20814 -.set Lset20815, Ltmp3986-Lfunc_begin0 - .quad Lset20815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20816, Ltmp4011-Lfunc_begin0 - .quad Lset20816 -.set Lset20817, Ltmp4012-Lfunc_begin0 - .quad Lset20817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20818, Ltmp4046-Lfunc_begin0 - .quad Lset20818 -.set Lset20819, Ltmp4047-Lfunc_begin0 - .quad Lset20819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20820, Ltmp4084-Lfunc_begin0 - .quad Lset20820 -.set Lset20821, Ltmp4085-Lfunc_begin0 - .quad Lset20821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20822, Ltmp4106-Lfunc_begin0 - .quad Lset20822 -.set Lset20823, Ltmp4107-Lfunc_begin0 - .quad Lset20823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20824, Ltmp4146-Lfunc_begin0 - .quad Lset20824 -.set Lset20825, Ltmp4147-Lfunc_begin0 - .quad Lset20825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20826, Ltmp4187-Lfunc_begin0 - .quad Lset20826 -.set Lset20827, Ltmp4188-Lfunc_begin0 - .quad Lset20827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20828, Ltmp4227-Lfunc_begin0 - .quad Lset20828 -.set Lset20829, Ltmp4228-Lfunc_begin0 - .quad Lset20829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20830, Ltmp4268-Lfunc_begin0 - .quad Lset20830 -.set Lset20831, Ltmp4269-Lfunc_begin0 - .quad Lset20831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20832, Ltmp4308-Lfunc_begin0 - .quad Lset20832 -.set Lset20833, Ltmp4309-Lfunc_begin0 - .quad Lset20833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20834, Ltmp4349-Lfunc_begin0 - .quad Lset20834 -.set Lset20835, Ltmp4350-Lfunc_begin0 - .quad Lset20835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20836, Ltmp4380-Lfunc_begin0 - .quad Lset20836 -.set Lset20837, Ltmp4381-Lfunc_begin0 - .quad Lset20837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20838, Ltmp4412-Lfunc_begin0 - .quad Lset20838 -.set Lset20839, Ltmp4414-Lfunc_begin0 - .quad Lset20839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20840, Ltmp4454-Lfunc_begin0 - .quad Lset20840 -.set Lset20841, Ltmp4455-Lfunc_begin0 - .quad Lset20841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20842, Ltmp4495-Lfunc_begin0 - .quad Lset20842 -.set Lset20843, Ltmp4496-Lfunc_begin0 - .quad Lset20843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20844, Ltmp4579-Lfunc_begin0 - .quad Lset20844 -.set Lset20845, Ltmp4581-Lfunc_begin0 - .quad Lset20845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20846, Ltmp4649-Lfunc_begin0 - .quad Lset20846 -.set Lset20847, Ltmp4651-Lfunc_begin0 - .quad Lset20847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20848, Ltmp4717-Lfunc_begin0 - .quad Lset20848 -.set Lset20849, Ltmp4719-Lfunc_begin0 - .quad Lset20849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20850, Ltmp4783-Lfunc_begin0 - .quad Lset20850 -.set Lset20851, Ltmp4784-Lfunc_begin0 - .quad Lset20851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20852, Ltmp4813-Lfunc_begin0 - .quad Lset20852 -.set Lset20853, Ltmp4814-Lfunc_begin0 - .quad Lset20853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20854, Ltmp4843-Lfunc_begin0 - .quad Lset20854 -.set Lset20855, Ltmp4844-Lfunc_begin0 - .quad Lset20855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20856, Ltmp4902-Lfunc_begin0 - .quad Lset20856 -.set Lset20857, Ltmp4903-Lfunc_begin0 - .quad Lset20857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20858, Ltmp4943-Lfunc_begin0 - .quad Lset20858 -.set Lset20859, Ltmp4944-Lfunc_begin0 - .quad Lset20859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20860, Ltmp5000-Lfunc_begin0 - .quad Lset20860 -.set Lset20861, Ltmp5001-Lfunc_begin0 - .quad Lset20861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20862, Ltmp5040-Lfunc_begin0 - .quad Lset20862 -.set Lset20863, Ltmp5041-Lfunc_begin0 - .quad Lset20863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20864, Ltmp5078-Lfunc_begin0 - .quad Lset20864 -.set Lset20865, Ltmp5079-Lfunc_begin0 - .quad Lset20865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20866, Ltmp5114-Lfunc_begin0 - .quad Lset20866 -.set Lset20867, Ltmp5115-Lfunc_begin0 - .quad Lset20867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20868, Ltmp5146-Lfunc_begin0 - .quad Lset20868 -.set Lset20869, Ltmp5147-Lfunc_begin0 - .quad Lset20869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20870, Ltmp5178-Lfunc_begin0 - .quad Lset20870 -.set Lset20871, Ltmp5179-Lfunc_begin0 - .quad Lset20871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20872, Ltmp5210-Lfunc_begin0 - .quad Lset20872 -.set Lset20873, Ltmp5211-Lfunc_begin0 - .quad Lset20873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20874, Ltmp5228-Lfunc_begin0 - .quad Lset20874 -.set Lset20875, Ltmp5229-Lfunc_begin0 - .quad Lset20875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20876, Ltmp5246-Lfunc_begin0 - .quad Lset20876 -.set Lset20877, Ltmp5247-Lfunc_begin0 - .quad Lset20877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20878, Ltmp5271-Lfunc_begin0 - .quad Lset20878 -.set Lset20879, Ltmp5272-Lfunc_begin0 - .quad Lset20879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20880, Ltmp5296-Lfunc_begin0 - .quad Lset20880 -.set Lset20881, Ltmp5297-Lfunc_begin0 - .quad Lset20881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20882, Ltmp5322-Lfunc_begin0 - .quad Lset20882 -.set Lset20883, Ltmp5323-Lfunc_begin0 - .quad Lset20883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20884, Ltmp5347-Lfunc_begin0 - .quad Lset20884 -.set Lset20885, Ltmp5348-Lfunc_begin0 - .quad Lset20885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20886, Ltmp5372-Lfunc_begin0 - .quad Lset20886 -.set Lset20887, Ltmp5373-Lfunc_begin0 - .quad Lset20887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20888, Ltmp5397-Lfunc_begin0 - .quad Lset20888 -.set Lset20889, Ltmp5398-Lfunc_begin0 - .quad Lset20889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20890, Ltmp5422-Lfunc_begin0 - .quad Lset20890 -.set Lset20891, Ltmp5423-Lfunc_begin0 - .quad Lset20891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20892, Ltmp5447-Lfunc_begin0 - .quad Lset20892 -.set Lset20893, Ltmp5448-Lfunc_begin0 - .quad Lset20893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20894, Ltmp5472-Lfunc_begin0 - .quad Lset20894 -.set Lset20895, Ltmp5473-Lfunc_begin0 - .quad Lset20895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20896, Ltmp5498-Lfunc_begin0 - .quad Lset20896 -.set Lset20897, Ltmp5499-Lfunc_begin0 - .quad Lset20897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20898, Ltmp5523-Lfunc_begin0 - .quad Lset20898 -.set Lset20899, Ltmp5524-Lfunc_begin0 - .quad Lset20899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20900, Ltmp5548-Lfunc_begin0 - .quad Lset20900 -.set Lset20901, Ltmp5549-Lfunc_begin0 - .quad Lset20901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20902, Ltmp5573-Lfunc_begin0 - .quad Lset20902 -.set Lset20903, Ltmp5574-Lfunc_begin0 - .quad Lset20903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20904, Ltmp5598-Lfunc_begin0 - .quad Lset20904 -.set Lset20905, Ltmp5599-Lfunc_begin0 - .quad Lset20905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20906, Ltmp5631-Lfunc_begin0 - .quad Lset20906 -.set Lset20907, Ltmp5632-Lfunc_begin0 - .quad Lset20907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20908, Ltmp5662-Lfunc_begin0 - .quad Lset20908 -.set Lset20909, Ltmp5663-Lfunc_begin0 - .quad Lset20909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20910, Ltmp5687-Lfunc_begin0 - .quad Lset20910 -.set Lset20911, Ltmp5688-Lfunc_begin0 - .quad Lset20911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20912, Ltmp5712-Lfunc_begin0 - .quad Lset20912 -.set Lset20913, Ltmp5713-Lfunc_begin0 - .quad Lset20913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20914, Ltmp5737-Lfunc_begin0 - .quad Lset20914 -.set Lset20915, Ltmp5738-Lfunc_begin0 - .quad Lset20915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20916, Ltmp5767-Lfunc_begin0 - .quad Lset20916 -.set Lset20917, Ltmp5768-Lfunc_begin0 - .quad Lset20917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20918, Ltmp5795-Lfunc_begin0 - .quad Lset20918 -.set Lset20919, Ltmp5796-Lfunc_begin0 - .quad Lset20919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20920, Ltmp5814-Lfunc_begin0 - .quad Lset20920 -.set Lset20921, Ltmp5815-Lfunc_begin0 - .quad Lset20921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20922, Ltmp5833-Lfunc_begin0 - .quad Lset20922 -.set Lset20923, Ltmp5834-Lfunc_begin0 - .quad Lset20923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20924, Ltmp5852-Lfunc_begin0 - .quad Lset20924 -.set Lset20925, Ltmp5853-Lfunc_begin0 - .quad Lset20925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20926, Ltmp5871-Lfunc_begin0 - .quad Lset20926 -.set Lset20927, Ltmp5872-Lfunc_begin0 - .quad Lset20927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20928, Ltmp5890-Lfunc_begin0 - .quad Lset20928 -.set Lset20929, Ltmp5891-Lfunc_begin0 - .quad Lset20929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20930, Ltmp5920-Lfunc_begin0 - .quad Lset20930 -.set Lset20931, Ltmp5921-Lfunc_begin0 - .quad Lset20931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc266: -.set Lset20932, Ltmp1186-Lfunc_begin0 - .quad Lset20932 -.set Lset20933, Ltmp1187-Lfunc_begin0 - .quad Lset20933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20934, Ltmp1215-Lfunc_begin0 - .quad Lset20934 -.set Lset20935, Ltmp1216-Lfunc_begin0 - .quad Lset20935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20936, Ltmp1237-Lfunc_begin0 - .quad Lset20936 -.set Lset20937, Ltmp1238-Lfunc_begin0 - .quad Lset20937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20938, Ltmp1260-Lfunc_begin0 - .quad Lset20938 -.set Lset20939, Ltmp1261-Lfunc_begin0 - .quad Lset20939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20940, Ltmp1281-Lfunc_begin0 - .quad Lset20940 -.set Lset20941, Ltmp1282-Lfunc_begin0 - .quad Lset20941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20942, Ltmp1314-Lfunc_begin0 - .quad Lset20942 -.set Lset20943, Ltmp1315-Lfunc_begin0 - .quad Lset20943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20944, Ltmp1338-Lfunc_begin0 - .quad Lset20944 -.set Lset20945, Ltmp1339-Lfunc_begin0 - .quad Lset20945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20946, Ltmp1368-Lfunc_begin0 - .quad Lset20946 -.set Lset20947, Ltmp1369-Lfunc_begin0 - .quad Lset20947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20948, Ltmp1462-Lfunc_begin0 - .quad Lset20948 -.set Lset20949, Ltmp1464-Lfunc_begin0 - .quad Lset20949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20950, Ltmp1557-Lfunc_begin0 - .quad Lset20950 -.set Lset20951, Ltmp1559-Lfunc_begin0 - .quad Lset20951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20952, Ltmp1713-Lfunc_begin0 - .quad Lset20952 -.set Lset20953, Ltmp1715-Lfunc_begin0 - .quad Lset20953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20954, Ltmp1864-Lfunc_begin0 - .quad Lset20954 -.set Lset20955, Ltmp1866-Lfunc_begin0 - .quad Lset20955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20956, Ltmp2004-Lfunc_begin0 - .quad Lset20956 -.set Lset20957, Ltmp2006-Lfunc_begin0 - .quad Lset20957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20958, Ltmp2074-Lfunc_begin0 - .quad Lset20958 -.set Lset20959, Ltmp2076-Lfunc_begin0 - .quad Lset20959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20960, Ltmp2120-Lfunc_begin0 - .quad Lset20960 -.set Lset20961, Ltmp2121-Lfunc_begin0 - .quad Lset20961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20962, Ltmp2193-Lfunc_begin0 - .quad Lset20962 -.set Lset20963, Ltmp2195-Lfunc_begin0 - .quad Lset20963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20964, Ltmp2253-Lfunc_begin0 - .quad Lset20964 -.set Lset20965, Ltmp2255-Lfunc_begin0 - .quad Lset20965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20966, Ltmp2302-Lfunc_begin0 - .quad Lset20966 -.set Lset20967, Ltmp2304-Lfunc_begin0 - .quad Lset20967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20968, Ltmp2351-Lfunc_begin0 - .quad Lset20968 -.set Lset20969, Ltmp2353-Lfunc_begin0 - .quad Lset20969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20970, Ltmp2400-Lfunc_begin0 - .quad Lset20970 -.set Lset20971, Ltmp2402-Lfunc_begin0 - .quad Lset20971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20972, Ltmp2444-Lfunc_begin0 - .quad Lset20972 -.set Lset20973, Ltmp2446-Lfunc_begin0 - .quad Lset20973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20974, Ltmp2499-Lfunc_begin0 - .quad Lset20974 -.set Lset20975, Ltmp2501-Lfunc_begin0 - .quad Lset20975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20976, Ltmp2554-Lfunc_begin0 - .quad Lset20976 -.set Lset20977, Ltmp2556-Lfunc_begin0 - .quad Lset20977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20978, Ltmp2609-Lfunc_begin0 - .quad Lset20978 -.set Lset20979, Ltmp2611-Lfunc_begin0 - .quad Lset20979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20980, Ltmp2673-Lfunc_begin0 - .quad Lset20980 -.set Lset20981, Ltmp2675-Lfunc_begin0 - .quad Lset20981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20982, Ltmp2738-Lfunc_begin0 - .quad Lset20982 -.set Lset20983, Ltmp2740-Lfunc_begin0 - .quad Lset20983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20984, Ltmp2811-Lfunc_begin0 - .quad Lset20984 -.set Lset20985, Ltmp2813-Lfunc_begin0 - .quad Lset20985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20986, Ltmp2871-Lfunc_begin0 - .quad Lset20986 -.set Lset20987, Ltmp2873-Lfunc_begin0 - .quad Lset20987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20988, Ltmp2922-Lfunc_begin0 - .quad Lset20988 -.set Lset20989, Ltmp2924-Lfunc_begin0 - .quad Lset20989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20990, Ltmp2957-Lfunc_begin0 - .quad Lset20990 -.set Lset20991, Ltmp2958-Lfunc_begin0 - .quad Lset20991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20992, Ltmp2997-Lfunc_begin0 - .quad Lset20992 -.set Lset20993, Ltmp2999-Lfunc_begin0 - .quad Lset20993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20994, Ltmp3024-Lfunc_begin0 - .quad Lset20994 -.set Lset20995, Ltmp3025-Lfunc_begin0 - .quad Lset20995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20996, Ltmp3047-Lfunc_begin0 - .quad Lset20996 -.set Lset20997, Ltmp3048-Lfunc_begin0 - .quad Lset20997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset20998, Ltmp3096-Lfunc_begin0 - .quad Lset20998 -.set Lset20999, Ltmp3097-Lfunc_begin0 - .quad Lset20999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21000, Ltmp3120-Lfunc_begin0 - .quad Lset21000 -.set Lset21001, Ltmp3122-Lfunc_begin0 - .quad Lset21001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21002, Ltmp3161-Lfunc_begin0 - .quad Lset21002 -.set Lset21003, Ltmp3163-Lfunc_begin0 - .quad Lset21003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21004, Ltmp3227-Lfunc_begin0 - .quad Lset21004 -.set Lset21005, Ltmp3228-Lfunc_begin0 - .quad Lset21005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21006, Ltmp3292-Lfunc_begin0 - .quad Lset21006 -.set Lset21007, Ltmp3293-Lfunc_begin0 - .quad Lset21007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21008, Ltmp3329-Lfunc_begin0 - .quad Lset21008 -.set Lset21009, Ltmp3330-Lfunc_begin0 - .quad Lset21009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21010, Ltmp3375-Lfunc_begin0 - .quad Lset21010 -.set Lset21011, Ltmp3376-Lfunc_begin0 - .quad Lset21011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21012, Ltmp3407-Lfunc_begin0 - .quad Lset21012 -.set Lset21013, Ltmp3408-Lfunc_begin0 - .quad Lset21013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21014, Ltmp3435-Lfunc_begin0 - .quad Lset21014 -.set Lset21015, Ltmp3436-Lfunc_begin0 - .quad Lset21015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21016, Ltmp3537-Lfunc_begin0 - .quad Lset21016 -.set Lset21017, Ltmp3538-Lfunc_begin0 - .quad Lset21017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21018, Ltmp3638-Lfunc_begin0 - .quad Lset21018 -.set Lset21019, Ltmp3640-Lfunc_begin0 - .quad Lset21019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21020, Ltmp3685-Lfunc_begin0 - .quad Lset21020 -.set Lset21021, Ltmp3686-Lfunc_begin0 - .quad Lset21021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21022, Ltmp3807-Lfunc_begin0 - .quad Lset21022 -.set Lset21023, Ltmp3809-Lfunc_begin0 - .quad Lset21023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21024, Ltmp3864-Lfunc_begin0 - .quad Lset21024 -.set Lset21025, Ltmp3865-Lfunc_begin0 - .quad Lset21025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21026, Ltmp3933-Lfunc_begin0 - .quad Lset21026 -.set Lset21027, Ltmp3934-Lfunc_begin0 - .quad Lset21027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21028, Ltmp3959-Lfunc_begin0 - .quad Lset21028 -.set Lset21029, Ltmp3960-Lfunc_begin0 - .quad Lset21029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21030, Ltmp3985-Lfunc_begin0 - .quad Lset21030 -.set Lset21031, Ltmp3986-Lfunc_begin0 - .quad Lset21031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21032, Ltmp4011-Lfunc_begin0 - .quad Lset21032 -.set Lset21033, Ltmp4012-Lfunc_begin0 - .quad Lset21033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21034, Ltmp4046-Lfunc_begin0 - .quad Lset21034 -.set Lset21035, Ltmp4047-Lfunc_begin0 - .quad Lset21035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21036, Ltmp4084-Lfunc_begin0 - .quad Lset21036 -.set Lset21037, Ltmp4085-Lfunc_begin0 - .quad Lset21037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21038, Ltmp4106-Lfunc_begin0 - .quad Lset21038 -.set Lset21039, Ltmp4107-Lfunc_begin0 - .quad Lset21039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21040, Ltmp4146-Lfunc_begin0 - .quad Lset21040 -.set Lset21041, Ltmp4147-Lfunc_begin0 - .quad Lset21041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21042, Ltmp4187-Lfunc_begin0 - .quad Lset21042 -.set Lset21043, Ltmp4188-Lfunc_begin0 - .quad Lset21043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21044, Ltmp4227-Lfunc_begin0 - .quad Lset21044 -.set Lset21045, Ltmp4228-Lfunc_begin0 - .quad Lset21045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21046, Ltmp4268-Lfunc_begin0 - .quad Lset21046 -.set Lset21047, Ltmp4269-Lfunc_begin0 - .quad Lset21047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21048, Ltmp4308-Lfunc_begin0 - .quad Lset21048 -.set Lset21049, Ltmp4309-Lfunc_begin0 - .quad Lset21049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21050, Ltmp4349-Lfunc_begin0 - .quad Lset21050 -.set Lset21051, Ltmp4350-Lfunc_begin0 - .quad Lset21051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21052, Ltmp4380-Lfunc_begin0 - .quad Lset21052 -.set Lset21053, Ltmp4381-Lfunc_begin0 - .quad Lset21053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21054, Ltmp4412-Lfunc_begin0 - .quad Lset21054 -.set Lset21055, Ltmp4414-Lfunc_begin0 - .quad Lset21055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21056, Ltmp4454-Lfunc_begin0 - .quad Lset21056 -.set Lset21057, Ltmp4455-Lfunc_begin0 - .quad Lset21057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21058, Ltmp4495-Lfunc_begin0 - .quad Lset21058 -.set Lset21059, Ltmp4496-Lfunc_begin0 - .quad Lset21059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21060, Ltmp4579-Lfunc_begin0 - .quad Lset21060 -.set Lset21061, Ltmp4581-Lfunc_begin0 - .quad Lset21061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21062, Ltmp4649-Lfunc_begin0 - .quad Lset21062 -.set Lset21063, Ltmp4651-Lfunc_begin0 - .quad Lset21063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21064, Ltmp4717-Lfunc_begin0 - .quad Lset21064 -.set Lset21065, Ltmp4719-Lfunc_begin0 - .quad Lset21065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21066, Ltmp4783-Lfunc_begin0 - .quad Lset21066 -.set Lset21067, Ltmp4784-Lfunc_begin0 - .quad Lset21067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21068, Ltmp4813-Lfunc_begin0 - .quad Lset21068 -.set Lset21069, Ltmp4814-Lfunc_begin0 - .quad Lset21069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21070, Ltmp4843-Lfunc_begin0 - .quad Lset21070 -.set Lset21071, Ltmp4844-Lfunc_begin0 - .quad Lset21071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21072, Ltmp4902-Lfunc_begin0 - .quad Lset21072 -.set Lset21073, Ltmp4903-Lfunc_begin0 - .quad Lset21073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21074, Ltmp4943-Lfunc_begin0 - .quad Lset21074 -.set Lset21075, Ltmp4944-Lfunc_begin0 - .quad Lset21075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21076, Ltmp5000-Lfunc_begin0 - .quad Lset21076 -.set Lset21077, Ltmp5001-Lfunc_begin0 - .quad Lset21077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21078, Ltmp5040-Lfunc_begin0 - .quad Lset21078 -.set Lset21079, Ltmp5041-Lfunc_begin0 - .quad Lset21079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21080, Ltmp5078-Lfunc_begin0 - .quad Lset21080 -.set Lset21081, Ltmp5079-Lfunc_begin0 - .quad Lset21081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21082, Ltmp5114-Lfunc_begin0 - .quad Lset21082 -.set Lset21083, Ltmp5115-Lfunc_begin0 - .quad Lset21083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21084, Ltmp5146-Lfunc_begin0 - .quad Lset21084 -.set Lset21085, Ltmp5147-Lfunc_begin0 - .quad Lset21085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21086, Ltmp5178-Lfunc_begin0 - .quad Lset21086 -.set Lset21087, Ltmp5179-Lfunc_begin0 - .quad Lset21087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21088, Ltmp5210-Lfunc_begin0 - .quad Lset21088 -.set Lset21089, Ltmp5211-Lfunc_begin0 - .quad Lset21089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21090, Ltmp5228-Lfunc_begin0 - .quad Lset21090 -.set Lset21091, Ltmp5229-Lfunc_begin0 - .quad Lset21091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21092, Ltmp5246-Lfunc_begin0 - .quad Lset21092 -.set Lset21093, Ltmp5247-Lfunc_begin0 - .quad Lset21093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21094, Ltmp5271-Lfunc_begin0 - .quad Lset21094 -.set Lset21095, Ltmp5272-Lfunc_begin0 - .quad Lset21095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21096, Ltmp5296-Lfunc_begin0 - .quad Lset21096 -.set Lset21097, Ltmp5297-Lfunc_begin0 - .quad Lset21097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21098, Ltmp5322-Lfunc_begin0 - .quad Lset21098 -.set Lset21099, Ltmp5323-Lfunc_begin0 - .quad Lset21099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21100, Ltmp5347-Lfunc_begin0 - .quad Lset21100 -.set Lset21101, Ltmp5348-Lfunc_begin0 - .quad Lset21101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21102, Ltmp5372-Lfunc_begin0 - .quad Lset21102 -.set Lset21103, Ltmp5373-Lfunc_begin0 - .quad Lset21103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21104, Ltmp5397-Lfunc_begin0 - .quad Lset21104 -.set Lset21105, Ltmp5398-Lfunc_begin0 - .quad Lset21105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21106, Ltmp5422-Lfunc_begin0 - .quad Lset21106 -.set Lset21107, Ltmp5423-Lfunc_begin0 - .quad Lset21107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21108, Ltmp5447-Lfunc_begin0 - .quad Lset21108 -.set Lset21109, Ltmp5448-Lfunc_begin0 - .quad Lset21109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21110, Ltmp5472-Lfunc_begin0 - .quad Lset21110 -.set Lset21111, Ltmp5473-Lfunc_begin0 - .quad Lset21111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21112, Ltmp5498-Lfunc_begin0 - .quad Lset21112 -.set Lset21113, Ltmp5499-Lfunc_begin0 - .quad Lset21113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21114, Ltmp5523-Lfunc_begin0 - .quad Lset21114 -.set Lset21115, Ltmp5524-Lfunc_begin0 - .quad Lset21115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21116, Ltmp5548-Lfunc_begin0 - .quad Lset21116 -.set Lset21117, Ltmp5549-Lfunc_begin0 - .quad Lset21117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21118, Ltmp5573-Lfunc_begin0 - .quad Lset21118 -.set Lset21119, Ltmp5574-Lfunc_begin0 - .quad Lset21119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21120, Ltmp5598-Lfunc_begin0 - .quad Lset21120 -.set Lset21121, Ltmp5599-Lfunc_begin0 - .quad Lset21121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21122, Ltmp5631-Lfunc_begin0 - .quad Lset21122 -.set Lset21123, Ltmp5632-Lfunc_begin0 - .quad Lset21123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21124, Ltmp5662-Lfunc_begin0 - .quad Lset21124 -.set Lset21125, Ltmp5663-Lfunc_begin0 - .quad Lset21125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21126, Ltmp5687-Lfunc_begin0 - .quad Lset21126 -.set Lset21127, Ltmp5688-Lfunc_begin0 - .quad Lset21127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21128, Ltmp5712-Lfunc_begin0 - .quad Lset21128 -.set Lset21129, Ltmp5713-Lfunc_begin0 - .quad Lset21129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21130, Ltmp5737-Lfunc_begin0 - .quad Lset21130 -.set Lset21131, Ltmp5738-Lfunc_begin0 - .quad Lset21131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21132, Ltmp5767-Lfunc_begin0 - .quad Lset21132 -.set Lset21133, Ltmp5768-Lfunc_begin0 - .quad Lset21133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21134, Ltmp5795-Lfunc_begin0 - .quad Lset21134 -.set Lset21135, Ltmp5796-Lfunc_begin0 - .quad Lset21135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21136, Ltmp5814-Lfunc_begin0 - .quad Lset21136 -.set Lset21137, Ltmp5815-Lfunc_begin0 - .quad Lset21137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21138, Ltmp5833-Lfunc_begin0 - .quad Lset21138 -.set Lset21139, Ltmp5834-Lfunc_begin0 - .quad Lset21139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21140, Ltmp5852-Lfunc_begin0 - .quad Lset21140 -.set Lset21141, Ltmp5853-Lfunc_begin0 - .quad Lset21141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21142, Ltmp5871-Lfunc_begin0 - .quad Lset21142 -.set Lset21143, Ltmp5872-Lfunc_begin0 - .quad Lset21143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21144, Ltmp5890-Lfunc_begin0 - .quad Lset21144 -.set Lset21145, Ltmp5891-Lfunc_begin0 - .quad Lset21145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21146, Ltmp5920-Lfunc_begin0 - .quad Lset21146 -.set Lset21147, Ltmp5921-Lfunc_begin0 - .quad Lset21147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc267: -.set Lset21148, Ltmp1186-Lfunc_begin0 - .quad Lset21148 -.set Lset21149, Ltmp1187-Lfunc_begin0 - .quad Lset21149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21150, Ltmp1215-Lfunc_begin0 - .quad Lset21150 -.set Lset21151, Ltmp1216-Lfunc_begin0 - .quad Lset21151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21152, Ltmp1237-Lfunc_begin0 - .quad Lset21152 -.set Lset21153, Ltmp1238-Lfunc_begin0 - .quad Lset21153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21154, Ltmp1260-Lfunc_begin0 - .quad Lset21154 -.set Lset21155, Ltmp1261-Lfunc_begin0 - .quad Lset21155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21156, Ltmp1281-Lfunc_begin0 - .quad Lset21156 -.set Lset21157, Ltmp1282-Lfunc_begin0 - .quad Lset21157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21158, Ltmp1314-Lfunc_begin0 - .quad Lset21158 -.set Lset21159, Ltmp1315-Lfunc_begin0 - .quad Lset21159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21160, Ltmp1338-Lfunc_begin0 - .quad Lset21160 -.set Lset21161, Ltmp1339-Lfunc_begin0 - .quad Lset21161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21162, Ltmp1368-Lfunc_begin0 - .quad Lset21162 -.set Lset21163, Ltmp1369-Lfunc_begin0 - .quad Lset21163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21164, Ltmp1462-Lfunc_begin0 - .quad Lset21164 -.set Lset21165, Ltmp1464-Lfunc_begin0 - .quad Lset21165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21166, Ltmp1557-Lfunc_begin0 - .quad Lset21166 -.set Lset21167, Ltmp1559-Lfunc_begin0 - .quad Lset21167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21168, Ltmp1713-Lfunc_begin0 - .quad Lset21168 -.set Lset21169, Ltmp1715-Lfunc_begin0 - .quad Lset21169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21170, Ltmp1864-Lfunc_begin0 - .quad Lset21170 -.set Lset21171, Ltmp1866-Lfunc_begin0 - .quad Lset21171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21172, Ltmp2004-Lfunc_begin0 - .quad Lset21172 -.set Lset21173, Ltmp2006-Lfunc_begin0 - .quad Lset21173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21174, Ltmp2074-Lfunc_begin0 - .quad Lset21174 -.set Lset21175, Ltmp2076-Lfunc_begin0 - .quad Lset21175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21176, Ltmp2120-Lfunc_begin0 - .quad Lset21176 -.set Lset21177, Ltmp2121-Lfunc_begin0 - .quad Lset21177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21178, Ltmp2193-Lfunc_begin0 - .quad Lset21178 -.set Lset21179, Ltmp2195-Lfunc_begin0 - .quad Lset21179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21180, Ltmp2253-Lfunc_begin0 - .quad Lset21180 -.set Lset21181, Ltmp2255-Lfunc_begin0 - .quad Lset21181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21182, Ltmp2302-Lfunc_begin0 - .quad Lset21182 -.set Lset21183, Ltmp2304-Lfunc_begin0 - .quad Lset21183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21184, Ltmp2351-Lfunc_begin0 - .quad Lset21184 -.set Lset21185, Ltmp2353-Lfunc_begin0 - .quad Lset21185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21186, Ltmp2400-Lfunc_begin0 - .quad Lset21186 -.set Lset21187, Ltmp2402-Lfunc_begin0 - .quad Lset21187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21188, Ltmp2444-Lfunc_begin0 - .quad Lset21188 -.set Lset21189, Ltmp2446-Lfunc_begin0 - .quad Lset21189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21190, Ltmp2499-Lfunc_begin0 - .quad Lset21190 -.set Lset21191, Ltmp2501-Lfunc_begin0 - .quad Lset21191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21192, Ltmp2554-Lfunc_begin0 - .quad Lset21192 -.set Lset21193, Ltmp2556-Lfunc_begin0 - .quad Lset21193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21194, Ltmp2609-Lfunc_begin0 - .quad Lset21194 -.set Lset21195, Ltmp2611-Lfunc_begin0 - .quad Lset21195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21196, Ltmp2673-Lfunc_begin0 - .quad Lset21196 -.set Lset21197, Ltmp2675-Lfunc_begin0 - .quad Lset21197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21198, Ltmp2738-Lfunc_begin0 - .quad Lset21198 -.set Lset21199, Ltmp2740-Lfunc_begin0 - .quad Lset21199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21200, Ltmp2811-Lfunc_begin0 - .quad Lset21200 -.set Lset21201, Ltmp2813-Lfunc_begin0 - .quad Lset21201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21202, Ltmp2871-Lfunc_begin0 - .quad Lset21202 -.set Lset21203, Ltmp2873-Lfunc_begin0 - .quad Lset21203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21204, Ltmp2922-Lfunc_begin0 - .quad Lset21204 -.set Lset21205, Ltmp2924-Lfunc_begin0 - .quad Lset21205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21206, Ltmp2957-Lfunc_begin0 - .quad Lset21206 -.set Lset21207, Ltmp2958-Lfunc_begin0 - .quad Lset21207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21208, Ltmp2997-Lfunc_begin0 - .quad Lset21208 -.set Lset21209, Ltmp2999-Lfunc_begin0 - .quad Lset21209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21210, Ltmp3024-Lfunc_begin0 - .quad Lset21210 -.set Lset21211, Ltmp3025-Lfunc_begin0 - .quad Lset21211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21212, Ltmp3047-Lfunc_begin0 - .quad Lset21212 -.set Lset21213, Ltmp3048-Lfunc_begin0 - .quad Lset21213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21214, Ltmp3096-Lfunc_begin0 - .quad Lset21214 -.set Lset21215, Ltmp3097-Lfunc_begin0 - .quad Lset21215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21216, Ltmp3120-Lfunc_begin0 - .quad Lset21216 -.set Lset21217, Ltmp3122-Lfunc_begin0 - .quad Lset21217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21218, Ltmp3161-Lfunc_begin0 - .quad Lset21218 -.set Lset21219, Ltmp3163-Lfunc_begin0 - .quad Lset21219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21220, Ltmp3227-Lfunc_begin0 - .quad Lset21220 -.set Lset21221, Ltmp3228-Lfunc_begin0 - .quad Lset21221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21222, Ltmp3292-Lfunc_begin0 - .quad Lset21222 -.set Lset21223, Ltmp3293-Lfunc_begin0 - .quad Lset21223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21224, Ltmp3329-Lfunc_begin0 - .quad Lset21224 -.set Lset21225, Ltmp3330-Lfunc_begin0 - .quad Lset21225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21226, Ltmp3375-Lfunc_begin0 - .quad Lset21226 -.set Lset21227, Ltmp3376-Lfunc_begin0 - .quad Lset21227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21228, Ltmp3407-Lfunc_begin0 - .quad Lset21228 -.set Lset21229, Ltmp3408-Lfunc_begin0 - .quad Lset21229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21230, Ltmp3435-Lfunc_begin0 - .quad Lset21230 -.set Lset21231, Ltmp3436-Lfunc_begin0 - .quad Lset21231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21232, Ltmp3537-Lfunc_begin0 - .quad Lset21232 -.set Lset21233, Ltmp3538-Lfunc_begin0 - .quad Lset21233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21234, Ltmp3638-Lfunc_begin0 - .quad Lset21234 -.set Lset21235, Ltmp3640-Lfunc_begin0 - .quad Lset21235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21236, Ltmp3685-Lfunc_begin0 - .quad Lset21236 -.set Lset21237, Ltmp3686-Lfunc_begin0 - .quad Lset21237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21238, Ltmp3807-Lfunc_begin0 - .quad Lset21238 -.set Lset21239, Ltmp3809-Lfunc_begin0 - .quad Lset21239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21240, Ltmp3864-Lfunc_begin0 - .quad Lset21240 -.set Lset21241, Ltmp3865-Lfunc_begin0 - .quad Lset21241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21242, Ltmp3933-Lfunc_begin0 - .quad Lset21242 -.set Lset21243, Ltmp3934-Lfunc_begin0 - .quad Lset21243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21244, Ltmp3959-Lfunc_begin0 - .quad Lset21244 -.set Lset21245, Ltmp3960-Lfunc_begin0 - .quad Lset21245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21246, Ltmp3985-Lfunc_begin0 - .quad Lset21246 -.set Lset21247, Ltmp3986-Lfunc_begin0 - .quad Lset21247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21248, Ltmp4011-Lfunc_begin0 - .quad Lset21248 -.set Lset21249, Ltmp4012-Lfunc_begin0 - .quad Lset21249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21250, Ltmp4046-Lfunc_begin0 - .quad Lset21250 -.set Lset21251, Ltmp4047-Lfunc_begin0 - .quad Lset21251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21252, Ltmp4084-Lfunc_begin0 - .quad Lset21252 -.set Lset21253, Ltmp4085-Lfunc_begin0 - .quad Lset21253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21254, Ltmp4106-Lfunc_begin0 - .quad Lset21254 -.set Lset21255, Ltmp4107-Lfunc_begin0 - .quad Lset21255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21256, Ltmp4146-Lfunc_begin0 - .quad Lset21256 -.set Lset21257, Ltmp4147-Lfunc_begin0 - .quad Lset21257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21258, Ltmp4187-Lfunc_begin0 - .quad Lset21258 -.set Lset21259, Ltmp4188-Lfunc_begin0 - .quad Lset21259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21260, Ltmp4227-Lfunc_begin0 - .quad Lset21260 -.set Lset21261, Ltmp4228-Lfunc_begin0 - .quad Lset21261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21262, Ltmp4268-Lfunc_begin0 - .quad Lset21262 -.set Lset21263, Ltmp4269-Lfunc_begin0 - .quad Lset21263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21264, Ltmp4308-Lfunc_begin0 - .quad Lset21264 -.set Lset21265, Ltmp4309-Lfunc_begin0 - .quad Lset21265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21266, Ltmp4349-Lfunc_begin0 - .quad Lset21266 -.set Lset21267, Ltmp4350-Lfunc_begin0 - .quad Lset21267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21268, Ltmp4380-Lfunc_begin0 - .quad Lset21268 -.set Lset21269, Ltmp4381-Lfunc_begin0 - .quad Lset21269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21270, Ltmp4412-Lfunc_begin0 - .quad Lset21270 -.set Lset21271, Ltmp4414-Lfunc_begin0 - .quad Lset21271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21272, Ltmp4454-Lfunc_begin0 - .quad Lset21272 -.set Lset21273, Ltmp4455-Lfunc_begin0 - .quad Lset21273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21274, Ltmp4495-Lfunc_begin0 - .quad Lset21274 -.set Lset21275, Ltmp4496-Lfunc_begin0 - .quad Lset21275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21276, Ltmp4579-Lfunc_begin0 - .quad Lset21276 -.set Lset21277, Ltmp4581-Lfunc_begin0 - .quad Lset21277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21278, Ltmp4649-Lfunc_begin0 - .quad Lset21278 -.set Lset21279, Ltmp4651-Lfunc_begin0 - .quad Lset21279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21280, Ltmp4717-Lfunc_begin0 - .quad Lset21280 -.set Lset21281, Ltmp4719-Lfunc_begin0 - .quad Lset21281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21282, Ltmp4783-Lfunc_begin0 - .quad Lset21282 -.set Lset21283, Ltmp4784-Lfunc_begin0 - .quad Lset21283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21284, Ltmp4813-Lfunc_begin0 - .quad Lset21284 -.set Lset21285, Ltmp4814-Lfunc_begin0 - .quad Lset21285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21286, Ltmp4843-Lfunc_begin0 - .quad Lset21286 -.set Lset21287, Ltmp4844-Lfunc_begin0 - .quad Lset21287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21288, Ltmp4902-Lfunc_begin0 - .quad Lset21288 -.set Lset21289, Ltmp4903-Lfunc_begin0 - .quad Lset21289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21290, Ltmp4943-Lfunc_begin0 - .quad Lset21290 -.set Lset21291, Ltmp4944-Lfunc_begin0 - .quad Lset21291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21292, Ltmp5000-Lfunc_begin0 - .quad Lset21292 -.set Lset21293, Ltmp5001-Lfunc_begin0 - .quad Lset21293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21294, Ltmp5040-Lfunc_begin0 - .quad Lset21294 -.set Lset21295, Ltmp5041-Lfunc_begin0 - .quad Lset21295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21296, Ltmp5078-Lfunc_begin0 - .quad Lset21296 -.set Lset21297, Ltmp5079-Lfunc_begin0 - .quad Lset21297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21298, Ltmp5114-Lfunc_begin0 - .quad Lset21298 -.set Lset21299, Ltmp5115-Lfunc_begin0 - .quad Lset21299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21300, Ltmp5146-Lfunc_begin0 - .quad Lset21300 -.set Lset21301, Ltmp5147-Lfunc_begin0 - .quad Lset21301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21302, Ltmp5178-Lfunc_begin0 - .quad Lset21302 -.set Lset21303, Ltmp5179-Lfunc_begin0 - .quad Lset21303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21304, Ltmp5210-Lfunc_begin0 - .quad Lset21304 -.set Lset21305, Ltmp5211-Lfunc_begin0 - .quad Lset21305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21306, Ltmp5228-Lfunc_begin0 - .quad Lset21306 -.set Lset21307, Ltmp5229-Lfunc_begin0 - .quad Lset21307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21308, Ltmp5246-Lfunc_begin0 - .quad Lset21308 -.set Lset21309, Ltmp5247-Lfunc_begin0 - .quad Lset21309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21310, Ltmp5271-Lfunc_begin0 - .quad Lset21310 -.set Lset21311, Ltmp5272-Lfunc_begin0 - .quad Lset21311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21312, Ltmp5296-Lfunc_begin0 - .quad Lset21312 -.set Lset21313, Ltmp5297-Lfunc_begin0 - .quad Lset21313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21314, Ltmp5322-Lfunc_begin0 - .quad Lset21314 -.set Lset21315, Ltmp5323-Lfunc_begin0 - .quad Lset21315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21316, Ltmp5347-Lfunc_begin0 - .quad Lset21316 -.set Lset21317, Ltmp5348-Lfunc_begin0 - .quad Lset21317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21318, Ltmp5372-Lfunc_begin0 - .quad Lset21318 -.set Lset21319, Ltmp5373-Lfunc_begin0 - .quad Lset21319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21320, Ltmp5397-Lfunc_begin0 - .quad Lset21320 -.set Lset21321, Ltmp5398-Lfunc_begin0 - .quad Lset21321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21322, Ltmp5422-Lfunc_begin0 - .quad Lset21322 -.set Lset21323, Ltmp5423-Lfunc_begin0 - .quad Lset21323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21324, Ltmp5447-Lfunc_begin0 - .quad Lset21324 -.set Lset21325, Ltmp5448-Lfunc_begin0 - .quad Lset21325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21326, Ltmp5472-Lfunc_begin0 - .quad Lset21326 -.set Lset21327, Ltmp5473-Lfunc_begin0 - .quad Lset21327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21328, Ltmp5498-Lfunc_begin0 - .quad Lset21328 -.set Lset21329, Ltmp5499-Lfunc_begin0 - .quad Lset21329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21330, Ltmp5523-Lfunc_begin0 - .quad Lset21330 -.set Lset21331, Ltmp5524-Lfunc_begin0 - .quad Lset21331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21332, Ltmp5548-Lfunc_begin0 - .quad Lset21332 -.set Lset21333, Ltmp5549-Lfunc_begin0 - .quad Lset21333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21334, Ltmp5573-Lfunc_begin0 - .quad Lset21334 -.set Lset21335, Ltmp5574-Lfunc_begin0 - .quad Lset21335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21336, Ltmp5598-Lfunc_begin0 - .quad Lset21336 -.set Lset21337, Ltmp5599-Lfunc_begin0 - .quad Lset21337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21338, Ltmp5631-Lfunc_begin0 - .quad Lset21338 -.set Lset21339, Ltmp5632-Lfunc_begin0 - .quad Lset21339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21340, Ltmp5662-Lfunc_begin0 - .quad Lset21340 -.set Lset21341, Ltmp5663-Lfunc_begin0 - .quad Lset21341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21342, Ltmp5687-Lfunc_begin0 - .quad Lset21342 -.set Lset21343, Ltmp5688-Lfunc_begin0 - .quad Lset21343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21344, Ltmp5712-Lfunc_begin0 - .quad Lset21344 -.set Lset21345, Ltmp5713-Lfunc_begin0 - .quad Lset21345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21346, Ltmp5737-Lfunc_begin0 - .quad Lset21346 -.set Lset21347, Ltmp5738-Lfunc_begin0 - .quad Lset21347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21348, Ltmp5767-Lfunc_begin0 - .quad Lset21348 -.set Lset21349, Ltmp5768-Lfunc_begin0 - .quad Lset21349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21350, Ltmp5795-Lfunc_begin0 - .quad Lset21350 -.set Lset21351, Ltmp5796-Lfunc_begin0 - .quad Lset21351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21352, Ltmp5814-Lfunc_begin0 - .quad Lset21352 -.set Lset21353, Ltmp5815-Lfunc_begin0 - .quad Lset21353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21354, Ltmp5833-Lfunc_begin0 - .quad Lset21354 -.set Lset21355, Ltmp5834-Lfunc_begin0 - .quad Lset21355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21356, Ltmp5852-Lfunc_begin0 - .quad Lset21356 -.set Lset21357, Ltmp5853-Lfunc_begin0 - .quad Lset21357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21358, Ltmp5871-Lfunc_begin0 - .quad Lset21358 -.set Lset21359, Ltmp5872-Lfunc_begin0 - .quad Lset21359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21360, Ltmp5890-Lfunc_begin0 - .quad Lset21360 -.set Lset21361, Ltmp5891-Lfunc_begin0 - .quad Lset21361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21362, Ltmp5920-Lfunc_begin0 - .quad Lset21362 -.set Lset21363, Ltmp5921-Lfunc_begin0 - .quad Lset21363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc268: -.set Lset21364, Ltmp1186-Lfunc_begin0 - .quad Lset21364 -.set Lset21365, Ltmp1187-Lfunc_begin0 - .quad Lset21365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21366, Ltmp1215-Lfunc_begin0 - .quad Lset21366 -.set Lset21367, Ltmp1216-Lfunc_begin0 - .quad Lset21367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21368, Ltmp1237-Lfunc_begin0 - .quad Lset21368 -.set Lset21369, Ltmp1238-Lfunc_begin0 - .quad Lset21369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21370, Ltmp1260-Lfunc_begin0 - .quad Lset21370 -.set Lset21371, Ltmp1261-Lfunc_begin0 - .quad Lset21371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21372, Ltmp1281-Lfunc_begin0 - .quad Lset21372 -.set Lset21373, Ltmp1282-Lfunc_begin0 - .quad Lset21373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21374, Ltmp1314-Lfunc_begin0 - .quad Lset21374 -.set Lset21375, Ltmp1315-Lfunc_begin0 - .quad Lset21375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21376, Ltmp1338-Lfunc_begin0 - .quad Lset21376 -.set Lset21377, Ltmp1339-Lfunc_begin0 - .quad Lset21377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21378, Ltmp1368-Lfunc_begin0 - .quad Lset21378 -.set Lset21379, Ltmp1369-Lfunc_begin0 - .quad Lset21379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21380, Ltmp1462-Lfunc_begin0 - .quad Lset21380 -.set Lset21381, Ltmp1464-Lfunc_begin0 - .quad Lset21381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21382, Ltmp1557-Lfunc_begin0 - .quad Lset21382 -.set Lset21383, Ltmp1559-Lfunc_begin0 - .quad Lset21383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21384, Ltmp1713-Lfunc_begin0 - .quad Lset21384 -.set Lset21385, Ltmp1715-Lfunc_begin0 - .quad Lset21385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21386, Ltmp1864-Lfunc_begin0 - .quad Lset21386 -.set Lset21387, Ltmp1866-Lfunc_begin0 - .quad Lset21387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21388, Ltmp2004-Lfunc_begin0 - .quad Lset21388 -.set Lset21389, Ltmp2006-Lfunc_begin0 - .quad Lset21389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21390, Ltmp2074-Lfunc_begin0 - .quad Lset21390 -.set Lset21391, Ltmp2076-Lfunc_begin0 - .quad Lset21391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21392, Ltmp2120-Lfunc_begin0 - .quad Lset21392 -.set Lset21393, Ltmp2121-Lfunc_begin0 - .quad Lset21393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21394, Ltmp2193-Lfunc_begin0 - .quad Lset21394 -.set Lset21395, Ltmp2195-Lfunc_begin0 - .quad Lset21395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21396, Ltmp2253-Lfunc_begin0 - .quad Lset21396 -.set Lset21397, Ltmp2255-Lfunc_begin0 - .quad Lset21397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21398, Ltmp2302-Lfunc_begin0 - .quad Lset21398 -.set Lset21399, Ltmp2304-Lfunc_begin0 - .quad Lset21399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21400, Ltmp2351-Lfunc_begin0 - .quad Lset21400 -.set Lset21401, Ltmp2353-Lfunc_begin0 - .quad Lset21401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21402, Ltmp2400-Lfunc_begin0 - .quad Lset21402 -.set Lset21403, Ltmp2402-Lfunc_begin0 - .quad Lset21403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21404, Ltmp2444-Lfunc_begin0 - .quad Lset21404 -.set Lset21405, Ltmp2446-Lfunc_begin0 - .quad Lset21405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21406, Ltmp2499-Lfunc_begin0 - .quad Lset21406 -.set Lset21407, Ltmp2501-Lfunc_begin0 - .quad Lset21407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21408, Ltmp2554-Lfunc_begin0 - .quad Lset21408 -.set Lset21409, Ltmp2556-Lfunc_begin0 - .quad Lset21409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21410, Ltmp2609-Lfunc_begin0 - .quad Lset21410 -.set Lset21411, Ltmp2611-Lfunc_begin0 - .quad Lset21411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21412, Ltmp2673-Lfunc_begin0 - .quad Lset21412 -.set Lset21413, Ltmp2675-Lfunc_begin0 - .quad Lset21413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21414, Ltmp2738-Lfunc_begin0 - .quad Lset21414 -.set Lset21415, Ltmp2740-Lfunc_begin0 - .quad Lset21415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21416, Ltmp2811-Lfunc_begin0 - .quad Lset21416 -.set Lset21417, Ltmp2813-Lfunc_begin0 - .quad Lset21417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21418, Ltmp2871-Lfunc_begin0 - .quad Lset21418 -.set Lset21419, Ltmp2873-Lfunc_begin0 - .quad Lset21419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21420, Ltmp2922-Lfunc_begin0 - .quad Lset21420 -.set Lset21421, Ltmp2924-Lfunc_begin0 - .quad Lset21421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21422, Ltmp2957-Lfunc_begin0 - .quad Lset21422 -.set Lset21423, Ltmp2958-Lfunc_begin0 - .quad Lset21423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21424, Ltmp2997-Lfunc_begin0 - .quad Lset21424 -.set Lset21425, Ltmp2999-Lfunc_begin0 - .quad Lset21425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21426, Ltmp3024-Lfunc_begin0 - .quad Lset21426 -.set Lset21427, Ltmp3025-Lfunc_begin0 - .quad Lset21427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21428, Ltmp3047-Lfunc_begin0 - .quad Lset21428 -.set Lset21429, Ltmp3048-Lfunc_begin0 - .quad Lset21429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21430, Ltmp3096-Lfunc_begin0 - .quad Lset21430 -.set Lset21431, Ltmp3097-Lfunc_begin0 - .quad Lset21431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21432, Ltmp3120-Lfunc_begin0 - .quad Lset21432 -.set Lset21433, Ltmp3122-Lfunc_begin0 - .quad Lset21433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21434, Ltmp3161-Lfunc_begin0 - .quad Lset21434 -.set Lset21435, Ltmp3163-Lfunc_begin0 - .quad Lset21435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21436, Ltmp3227-Lfunc_begin0 - .quad Lset21436 -.set Lset21437, Ltmp3228-Lfunc_begin0 - .quad Lset21437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21438, Ltmp3292-Lfunc_begin0 - .quad Lset21438 -.set Lset21439, Ltmp3293-Lfunc_begin0 - .quad Lset21439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21440, Ltmp3329-Lfunc_begin0 - .quad Lset21440 -.set Lset21441, Ltmp3330-Lfunc_begin0 - .quad Lset21441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21442, Ltmp3375-Lfunc_begin0 - .quad Lset21442 -.set Lset21443, Ltmp3376-Lfunc_begin0 - .quad Lset21443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21444, Ltmp3407-Lfunc_begin0 - .quad Lset21444 -.set Lset21445, Ltmp3408-Lfunc_begin0 - .quad Lset21445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21446, Ltmp3435-Lfunc_begin0 - .quad Lset21446 -.set Lset21447, Ltmp3436-Lfunc_begin0 - .quad Lset21447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21448, Ltmp3537-Lfunc_begin0 - .quad Lset21448 -.set Lset21449, Ltmp3538-Lfunc_begin0 - .quad Lset21449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21450, Ltmp3638-Lfunc_begin0 - .quad Lset21450 -.set Lset21451, Ltmp3640-Lfunc_begin0 - .quad Lset21451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21452, Ltmp3685-Lfunc_begin0 - .quad Lset21452 -.set Lset21453, Ltmp3686-Lfunc_begin0 - .quad Lset21453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21454, Ltmp3807-Lfunc_begin0 - .quad Lset21454 -.set Lset21455, Ltmp3809-Lfunc_begin0 - .quad Lset21455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21456, Ltmp3864-Lfunc_begin0 - .quad Lset21456 -.set Lset21457, Ltmp3865-Lfunc_begin0 - .quad Lset21457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21458, Ltmp3933-Lfunc_begin0 - .quad Lset21458 -.set Lset21459, Ltmp3934-Lfunc_begin0 - .quad Lset21459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21460, Ltmp3959-Lfunc_begin0 - .quad Lset21460 -.set Lset21461, Ltmp3960-Lfunc_begin0 - .quad Lset21461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21462, Ltmp3985-Lfunc_begin0 - .quad Lset21462 -.set Lset21463, Ltmp3986-Lfunc_begin0 - .quad Lset21463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21464, Ltmp4011-Lfunc_begin0 - .quad Lset21464 -.set Lset21465, Ltmp4012-Lfunc_begin0 - .quad Lset21465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21466, Ltmp4046-Lfunc_begin0 - .quad Lset21466 -.set Lset21467, Ltmp4047-Lfunc_begin0 - .quad Lset21467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21468, Ltmp4084-Lfunc_begin0 - .quad Lset21468 -.set Lset21469, Ltmp4085-Lfunc_begin0 - .quad Lset21469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21470, Ltmp4106-Lfunc_begin0 - .quad Lset21470 -.set Lset21471, Ltmp4107-Lfunc_begin0 - .quad Lset21471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21472, Ltmp4146-Lfunc_begin0 - .quad Lset21472 -.set Lset21473, Ltmp4147-Lfunc_begin0 - .quad Lset21473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21474, Ltmp4187-Lfunc_begin0 - .quad Lset21474 -.set Lset21475, Ltmp4188-Lfunc_begin0 - .quad Lset21475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21476, Ltmp4227-Lfunc_begin0 - .quad Lset21476 -.set Lset21477, Ltmp4228-Lfunc_begin0 - .quad Lset21477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21478, Ltmp4268-Lfunc_begin0 - .quad Lset21478 -.set Lset21479, Ltmp4269-Lfunc_begin0 - .quad Lset21479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21480, Ltmp4308-Lfunc_begin0 - .quad Lset21480 -.set Lset21481, Ltmp4309-Lfunc_begin0 - .quad Lset21481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21482, Ltmp4349-Lfunc_begin0 - .quad Lset21482 -.set Lset21483, Ltmp4350-Lfunc_begin0 - .quad Lset21483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21484, Ltmp4380-Lfunc_begin0 - .quad Lset21484 -.set Lset21485, Ltmp4381-Lfunc_begin0 - .quad Lset21485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21486, Ltmp4412-Lfunc_begin0 - .quad Lset21486 -.set Lset21487, Ltmp4414-Lfunc_begin0 - .quad Lset21487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21488, Ltmp4454-Lfunc_begin0 - .quad Lset21488 -.set Lset21489, Ltmp4455-Lfunc_begin0 - .quad Lset21489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21490, Ltmp4495-Lfunc_begin0 - .quad Lset21490 -.set Lset21491, Ltmp4496-Lfunc_begin0 - .quad Lset21491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21492, Ltmp4579-Lfunc_begin0 - .quad Lset21492 -.set Lset21493, Ltmp4581-Lfunc_begin0 - .quad Lset21493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21494, Ltmp4649-Lfunc_begin0 - .quad Lset21494 -.set Lset21495, Ltmp4651-Lfunc_begin0 - .quad Lset21495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21496, Ltmp4717-Lfunc_begin0 - .quad Lset21496 -.set Lset21497, Ltmp4719-Lfunc_begin0 - .quad Lset21497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21498, Ltmp4783-Lfunc_begin0 - .quad Lset21498 -.set Lset21499, Ltmp4784-Lfunc_begin0 - .quad Lset21499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21500, Ltmp4813-Lfunc_begin0 - .quad Lset21500 -.set Lset21501, Ltmp4814-Lfunc_begin0 - .quad Lset21501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21502, Ltmp4843-Lfunc_begin0 - .quad Lset21502 -.set Lset21503, Ltmp4844-Lfunc_begin0 - .quad Lset21503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21504, Ltmp4902-Lfunc_begin0 - .quad Lset21504 -.set Lset21505, Ltmp4903-Lfunc_begin0 - .quad Lset21505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21506, Ltmp4943-Lfunc_begin0 - .quad Lset21506 -.set Lset21507, Ltmp4944-Lfunc_begin0 - .quad Lset21507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21508, Ltmp5000-Lfunc_begin0 - .quad Lset21508 -.set Lset21509, Ltmp5001-Lfunc_begin0 - .quad Lset21509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21510, Ltmp5040-Lfunc_begin0 - .quad Lset21510 -.set Lset21511, Ltmp5041-Lfunc_begin0 - .quad Lset21511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21512, Ltmp5078-Lfunc_begin0 - .quad Lset21512 -.set Lset21513, Ltmp5079-Lfunc_begin0 - .quad Lset21513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21514, Ltmp5114-Lfunc_begin0 - .quad Lset21514 -.set Lset21515, Ltmp5115-Lfunc_begin0 - .quad Lset21515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21516, Ltmp5146-Lfunc_begin0 - .quad Lset21516 -.set Lset21517, Ltmp5147-Lfunc_begin0 - .quad Lset21517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21518, Ltmp5178-Lfunc_begin0 - .quad Lset21518 -.set Lset21519, Ltmp5179-Lfunc_begin0 - .quad Lset21519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21520, Ltmp5210-Lfunc_begin0 - .quad Lset21520 -.set Lset21521, Ltmp5211-Lfunc_begin0 - .quad Lset21521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21522, Ltmp5228-Lfunc_begin0 - .quad Lset21522 -.set Lset21523, Ltmp5229-Lfunc_begin0 - .quad Lset21523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21524, Ltmp5246-Lfunc_begin0 - .quad Lset21524 -.set Lset21525, Ltmp5247-Lfunc_begin0 - .quad Lset21525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21526, Ltmp5271-Lfunc_begin0 - .quad Lset21526 -.set Lset21527, Ltmp5272-Lfunc_begin0 - .quad Lset21527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21528, Ltmp5296-Lfunc_begin0 - .quad Lset21528 -.set Lset21529, Ltmp5297-Lfunc_begin0 - .quad Lset21529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21530, Ltmp5322-Lfunc_begin0 - .quad Lset21530 -.set Lset21531, Ltmp5323-Lfunc_begin0 - .quad Lset21531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21532, Ltmp5347-Lfunc_begin0 - .quad Lset21532 -.set Lset21533, Ltmp5348-Lfunc_begin0 - .quad Lset21533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21534, Ltmp5372-Lfunc_begin0 - .quad Lset21534 -.set Lset21535, Ltmp5373-Lfunc_begin0 - .quad Lset21535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21536, Ltmp5397-Lfunc_begin0 - .quad Lset21536 -.set Lset21537, Ltmp5398-Lfunc_begin0 - .quad Lset21537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21538, Ltmp5422-Lfunc_begin0 - .quad Lset21538 -.set Lset21539, Ltmp5423-Lfunc_begin0 - .quad Lset21539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21540, Ltmp5447-Lfunc_begin0 - .quad Lset21540 -.set Lset21541, Ltmp5448-Lfunc_begin0 - .quad Lset21541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21542, Ltmp5472-Lfunc_begin0 - .quad Lset21542 -.set Lset21543, Ltmp5473-Lfunc_begin0 - .quad Lset21543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21544, Ltmp5498-Lfunc_begin0 - .quad Lset21544 -.set Lset21545, Ltmp5499-Lfunc_begin0 - .quad Lset21545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21546, Ltmp5523-Lfunc_begin0 - .quad Lset21546 -.set Lset21547, Ltmp5524-Lfunc_begin0 - .quad Lset21547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21548, Ltmp5548-Lfunc_begin0 - .quad Lset21548 -.set Lset21549, Ltmp5549-Lfunc_begin0 - .quad Lset21549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21550, Ltmp5573-Lfunc_begin0 - .quad Lset21550 -.set Lset21551, Ltmp5574-Lfunc_begin0 - .quad Lset21551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21552, Ltmp5598-Lfunc_begin0 - .quad Lset21552 -.set Lset21553, Ltmp5599-Lfunc_begin0 - .quad Lset21553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21554, Ltmp5631-Lfunc_begin0 - .quad Lset21554 -.set Lset21555, Ltmp5632-Lfunc_begin0 - .quad Lset21555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21556, Ltmp5662-Lfunc_begin0 - .quad Lset21556 -.set Lset21557, Ltmp5663-Lfunc_begin0 - .quad Lset21557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21558, Ltmp5687-Lfunc_begin0 - .quad Lset21558 -.set Lset21559, Ltmp5688-Lfunc_begin0 - .quad Lset21559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21560, Ltmp5712-Lfunc_begin0 - .quad Lset21560 -.set Lset21561, Ltmp5713-Lfunc_begin0 - .quad Lset21561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21562, Ltmp5737-Lfunc_begin0 - .quad Lset21562 -.set Lset21563, Ltmp5738-Lfunc_begin0 - .quad Lset21563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21564, Ltmp5767-Lfunc_begin0 - .quad Lset21564 -.set Lset21565, Ltmp5768-Lfunc_begin0 - .quad Lset21565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21566, Ltmp5795-Lfunc_begin0 - .quad Lset21566 -.set Lset21567, Ltmp5796-Lfunc_begin0 - .quad Lset21567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21568, Ltmp5814-Lfunc_begin0 - .quad Lset21568 -.set Lset21569, Ltmp5815-Lfunc_begin0 - .quad Lset21569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21570, Ltmp5833-Lfunc_begin0 - .quad Lset21570 -.set Lset21571, Ltmp5834-Lfunc_begin0 - .quad Lset21571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21572, Ltmp5852-Lfunc_begin0 - .quad Lset21572 -.set Lset21573, Ltmp5853-Lfunc_begin0 - .quad Lset21573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21574, Ltmp5871-Lfunc_begin0 - .quad Lset21574 -.set Lset21575, Ltmp5872-Lfunc_begin0 - .quad Lset21575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21576, Ltmp5890-Lfunc_begin0 - .quad Lset21576 -.set Lset21577, Ltmp5891-Lfunc_begin0 - .quad Lset21577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21578, Ltmp5920-Lfunc_begin0 - .quad Lset21578 -.set Lset21579, Ltmp5921-Lfunc_begin0 - .quad Lset21579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc269: -.set Lset21580, Ltmp1186-Lfunc_begin0 - .quad Lset21580 -.set Lset21581, Ltmp1187-Lfunc_begin0 - .quad Lset21581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21582, Ltmp1215-Lfunc_begin0 - .quad Lset21582 -.set Lset21583, Ltmp1216-Lfunc_begin0 - .quad Lset21583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21584, Ltmp1237-Lfunc_begin0 - .quad Lset21584 -.set Lset21585, Ltmp1238-Lfunc_begin0 - .quad Lset21585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21586, Ltmp1260-Lfunc_begin0 - .quad Lset21586 -.set Lset21587, Ltmp1261-Lfunc_begin0 - .quad Lset21587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21588, Ltmp1281-Lfunc_begin0 - .quad Lset21588 -.set Lset21589, Ltmp1282-Lfunc_begin0 - .quad Lset21589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21590, Ltmp1314-Lfunc_begin0 - .quad Lset21590 -.set Lset21591, Ltmp1315-Lfunc_begin0 - .quad Lset21591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21592, Ltmp1338-Lfunc_begin0 - .quad Lset21592 -.set Lset21593, Ltmp1339-Lfunc_begin0 - .quad Lset21593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21594, Ltmp1368-Lfunc_begin0 - .quad Lset21594 -.set Lset21595, Ltmp1369-Lfunc_begin0 - .quad Lset21595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21596, Ltmp1462-Lfunc_begin0 - .quad Lset21596 -.set Lset21597, Ltmp1464-Lfunc_begin0 - .quad Lset21597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21598, Ltmp1557-Lfunc_begin0 - .quad Lset21598 -.set Lset21599, Ltmp1559-Lfunc_begin0 - .quad Lset21599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21600, Ltmp1713-Lfunc_begin0 - .quad Lset21600 -.set Lset21601, Ltmp1715-Lfunc_begin0 - .quad Lset21601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21602, Ltmp1864-Lfunc_begin0 - .quad Lset21602 -.set Lset21603, Ltmp1866-Lfunc_begin0 - .quad Lset21603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21604, Ltmp2004-Lfunc_begin0 - .quad Lset21604 -.set Lset21605, Ltmp2006-Lfunc_begin0 - .quad Lset21605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21606, Ltmp2074-Lfunc_begin0 - .quad Lset21606 -.set Lset21607, Ltmp2076-Lfunc_begin0 - .quad Lset21607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21608, Ltmp2120-Lfunc_begin0 - .quad Lset21608 -.set Lset21609, Ltmp2121-Lfunc_begin0 - .quad Lset21609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21610, Ltmp2193-Lfunc_begin0 - .quad Lset21610 -.set Lset21611, Ltmp2195-Lfunc_begin0 - .quad Lset21611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21612, Ltmp2253-Lfunc_begin0 - .quad Lset21612 -.set Lset21613, Ltmp2255-Lfunc_begin0 - .quad Lset21613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21614, Ltmp2302-Lfunc_begin0 - .quad Lset21614 -.set Lset21615, Ltmp2304-Lfunc_begin0 - .quad Lset21615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21616, Ltmp2351-Lfunc_begin0 - .quad Lset21616 -.set Lset21617, Ltmp2353-Lfunc_begin0 - .quad Lset21617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21618, Ltmp2400-Lfunc_begin0 - .quad Lset21618 -.set Lset21619, Ltmp2402-Lfunc_begin0 - .quad Lset21619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21620, Ltmp2444-Lfunc_begin0 - .quad Lset21620 -.set Lset21621, Ltmp2446-Lfunc_begin0 - .quad Lset21621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21622, Ltmp2499-Lfunc_begin0 - .quad Lset21622 -.set Lset21623, Ltmp2501-Lfunc_begin0 - .quad Lset21623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21624, Ltmp2554-Lfunc_begin0 - .quad Lset21624 -.set Lset21625, Ltmp2556-Lfunc_begin0 - .quad Lset21625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21626, Ltmp2609-Lfunc_begin0 - .quad Lset21626 -.set Lset21627, Ltmp2611-Lfunc_begin0 - .quad Lset21627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21628, Ltmp2673-Lfunc_begin0 - .quad Lset21628 -.set Lset21629, Ltmp2675-Lfunc_begin0 - .quad Lset21629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21630, Ltmp2738-Lfunc_begin0 - .quad Lset21630 -.set Lset21631, Ltmp2740-Lfunc_begin0 - .quad Lset21631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21632, Ltmp2811-Lfunc_begin0 - .quad Lset21632 -.set Lset21633, Ltmp2813-Lfunc_begin0 - .quad Lset21633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21634, Ltmp2871-Lfunc_begin0 - .quad Lset21634 -.set Lset21635, Ltmp2873-Lfunc_begin0 - .quad Lset21635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21636, Ltmp2922-Lfunc_begin0 - .quad Lset21636 -.set Lset21637, Ltmp2924-Lfunc_begin0 - .quad Lset21637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21638, Ltmp2957-Lfunc_begin0 - .quad Lset21638 -.set Lset21639, Ltmp2958-Lfunc_begin0 - .quad Lset21639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21640, Ltmp2997-Lfunc_begin0 - .quad Lset21640 -.set Lset21641, Ltmp2999-Lfunc_begin0 - .quad Lset21641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21642, Ltmp3024-Lfunc_begin0 - .quad Lset21642 -.set Lset21643, Ltmp3025-Lfunc_begin0 - .quad Lset21643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21644, Ltmp3047-Lfunc_begin0 - .quad Lset21644 -.set Lset21645, Ltmp3048-Lfunc_begin0 - .quad Lset21645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21646, Ltmp3096-Lfunc_begin0 - .quad Lset21646 -.set Lset21647, Ltmp3097-Lfunc_begin0 - .quad Lset21647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21648, Ltmp3120-Lfunc_begin0 - .quad Lset21648 -.set Lset21649, Ltmp3122-Lfunc_begin0 - .quad Lset21649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21650, Ltmp3161-Lfunc_begin0 - .quad Lset21650 -.set Lset21651, Ltmp3163-Lfunc_begin0 - .quad Lset21651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21652, Ltmp3227-Lfunc_begin0 - .quad Lset21652 -.set Lset21653, Ltmp3228-Lfunc_begin0 - .quad Lset21653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21654, Ltmp3292-Lfunc_begin0 - .quad Lset21654 -.set Lset21655, Ltmp3293-Lfunc_begin0 - .quad Lset21655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21656, Ltmp3329-Lfunc_begin0 - .quad Lset21656 -.set Lset21657, Ltmp3330-Lfunc_begin0 - .quad Lset21657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21658, Ltmp3375-Lfunc_begin0 - .quad Lset21658 -.set Lset21659, Ltmp3376-Lfunc_begin0 - .quad Lset21659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21660, Ltmp3407-Lfunc_begin0 - .quad Lset21660 -.set Lset21661, Ltmp3408-Lfunc_begin0 - .quad Lset21661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21662, Ltmp3435-Lfunc_begin0 - .quad Lset21662 -.set Lset21663, Ltmp3436-Lfunc_begin0 - .quad Lset21663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21664, Ltmp3537-Lfunc_begin0 - .quad Lset21664 -.set Lset21665, Ltmp3538-Lfunc_begin0 - .quad Lset21665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21666, Ltmp3638-Lfunc_begin0 - .quad Lset21666 -.set Lset21667, Ltmp3640-Lfunc_begin0 - .quad Lset21667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21668, Ltmp3685-Lfunc_begin0 - .quad Lset21668 -.set Lset21669, Ltmp3686-Lfunc_begin0 - .quad Lset21669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21670, Ltmp3807-Lfunc_begin0 - .quad Lset21670 -.set Lset21671, Ltmp3809-Lfunc_begin0 - .quad Lset21671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21672, Ltmp3864-Lfunc_begin0 - .quad Lset21672 -.set Lset21673, Ltmp3865-Lfunc_begin0 - .quad Lset21673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21674, Ltmp3933-Lfunc_begin0 - .quad Lset21674 -.set Lset21675, Ltmp3934-Lfunc_begin0 - .quad Lset21675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21676, Ltmp3959-Lfunc_begin0 - .quad Lset21676 -.set Lset21677, Ltmp3960-Lfunc_begin0 - .quad Lset21677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21678, Ltmp3985-Lfunc_begin0 - .quad Lset21678 -.set Lset21679, Ltmp3986-Lfunc_begin0 - .quad Lset21679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21680, Ltmp4011-Lfunc_begin0 - .quad Lset21680 -.set Lset21681, Ltmp4012-Lfunc_begin0 - .quad Lset21681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21682, Ltmp4046-Lfunc_begin0 - .quad Lset21682 -.set Lset21683, Ltmp4047-Lfunc_begin0 - .quad Lset21683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21684, Ltmp4084-Lfunc_begin0 - .quad Lset21684 -.set Lset21685, Ltmp4085-Lfunc_begin0 - .quad Lset21685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21686, Ltmp4106-Lfunc_begin0 - .quad Lset21686 -.set Lset21687, Ltmp4107-Lfunc_begin0 - .quad Lset21687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21688, Ltmp4146-Lfunc_begin0 - .quad Lset21688 -.set Lset21689, Ltmp4147-Lfunc_begin0 - .quad Lset21689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21690, Ltmp4187-Lfunc_begin0 - .quad Lset21690 -.set Lset21691, Ltmp4188-Lfunc_begin0 - .quad Lset21691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21692, Ltmp4227-Lfunc_begin0 - .quad Lset21692 -.set Lset21693, Ltmp4228-Lfunc_begin0 - .quad Lset21693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21694, Ltmp4268-Lfunc_begin0 - .quad Lset21694 -.set Lset21695, Ltmp4269-Lfunc_begin0 - .quad Lset21695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21696, Ltmp4308-Lfunc_begin0 - .quad Lset21696 -.set Lset21697, Ltmp4309-Lfunc_begin0 - .quad Lset21697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21698, Ltmp4349-Lfunc_begin0 - .quad Lset21698 -.set Lset21699, Ltmp4350-Lfunc_begin0 - .quad Lset21699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21700, Ltmp4380-Lfunc_begin0 - .quad Lset21700 -.set Lset21701, Ltmp4381-Lfunc_begin0 - .quad Lset21701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21702, Ltmp4412-Lfunc_begin0 - .quad Lset21702 -.set Lset21703, Ltmp4414-Lfunc_begin0 - .quad Lset21703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21704, Ltmp4454-Lfunc_begin0 - .quad Lset21704 -.set Lset21705, Ltmp4455-Lfunc_begin0 - .quad Lset21705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21706, Ltmp4495-Lfunc_begin0 - .quad Lset21706 -.set Lset21707, Ltmp4496-Lfunc_begin0 - .quad Lset21707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21708, Ltmp4579-Lfunc_begin0 - .quad Lset21708 -.set Lset21709, Ltmp4581-Lfunc_begin0 - .quad Lset21709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21710, Ltmp4649-Lfunc_begin0 - .quad Lset21710 -.set Lset21711, Ltmp4651-Lfunc_begin0 - .quad Lset21711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21712, Ltmp4717-Lfunc_begin0 - .quad Lset21712 -.set Lset21713, Ltmp4719-Lfunc_begin0 - .quad Lset21713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21714, Ltmp4783-Lfunc_begin0 - .quad Lset21714 -.set Lset21715, Ltmp4784-Lfunc_begin0 - .quad Lset21715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21716, Ltmp4813-Lfunc_begin0 - .quad Lset21716 -.set Lset21717, Ltmp4814-Lfunc_begin0 - .quad Lset21717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21718, Ltmp4843-Lfunc_begin0 - .quad Lset21718 -.set Lset21719, Ltmp4844-Lfunc_begin0 - .quad Lset21719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21720, Ltmp4902-Lfunc_begin0 - .quad Lset21720 -.set Lset21721, Ltmp4903-Lfunc_begin0 - .quad Lset21721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21722, Ltmp4943-Lfunc_begin0 - .quad Lset21722 -.set Lset21723, Ltmp4944-Lfunc_begin0 - .quad Lset21723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21724, Ltmp5000-Lfunc_begin0 - .quad Lset21724 -.set Lset21725, Ltmp5001-Lfunc_begin0 - .quad Lset21725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21726, Ltmp5040-Lfunc_begin0 - .quad Lset21726 -.set Lset21727, Ltmp5041-Lfunc_begin0 - .quad Lset21727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21728, Ltmp5078-Lfunc_begin0 - .quad Lset21728 -.set Lset21729, Ltmp5079-Lfunc_begin0 - .quad Lset21729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21730, Ltmp5114-Lfunc_begin0 - .quad Lset21730 -.set Lset21731, Ltmp5115-Lfunc_begin0 - .quad Lset21731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21732, Ltmp5146-Lfunc_begin0 - .quad Lset21732 -.set Lset21733, Ltmp5147-Lfunc_begin0 - .quad Lset21733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21734, Ltmp5178-Lfunc_begin0 - .quad Lset21734 -.set Lset21735, Ltmp5179-Lfunc_begin0 - .quad Lset21735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21736, Ltmp5210-Lfunc_begin0 - .quad Lset21736 -.set Lset21737, Ltmp5211-Lfunc_begin0 - .quad Lset21737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21738, Ltmp5228-Lfunc_begin0 - .quad Lset21738 -.set Lset21739, Ltmp5229-Lfunc_begin0 - .quad Lset21739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21740, Ltmp5246-Lfunc_begin0 - .quad Lset21740 -.set Lset21741, Ltmp5247-Lfunc_begin0 - .quad Lset21741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21742, Ltmp5271-Lfunc_begin0 - .quad Lset21742 -.set Lset21743, Ltmp5272-Lfunc_begin0 - .quad Lset21743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21744, Ltmp5296-Lfunc_begin0 - .quad Lset21744 -.set Lset21745, Ltmp5297-Lfunc_begin0 - .quad Lset21745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21746, Ltmp5322-Lfunc_begin0 - .quad Lset21746 -.set Lset21747, Ltmp5323-Lfunc_begin0 - .quad Lset21747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21748, Ltmp5347-Lfunc_begin0 - .quad Lset21748 -.set Lset21749, Ltmp5348-Lfunc_begin0 - .quad Lset21749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21750, Ltmp5372-Lfunc_begin0 - .quad Lset21750 -.set Lset21751, Ltmp5373-Lfunc_begin0 - .quad Lset21751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21752, Ltmp5397-Lfunc_begin0 - .quad Lset21752 -.set Lset21753, Ltmp5398-Lfunc_begin0 - .quad Lset21753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21754, Ltmp5422-Lfunc_begin0 - .quad Lset21754 -.set Lset21755, Ltmp5423-Lfunc_begin0 - .quad Lset21755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21756, Ltmp5447-Lfunc_begin0 - .quad Lset21756 -.set Lset21757, Ltmp5448-Lfunc_begin0 - .quad Lset21757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21758, Ltmp5472-Lfunc_begin0 - .quad Lset21758 -.set Lset21759, Ltmp5473-Lfunc_begin0 - .quad Lset21759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21760, Ltmp5498-Lfunc_begin0 - .quad Lset21760 -.set Lset21761, Ltmp5499-Lfunc_begin0 - .quad Lset21761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21762, Ltmp5523-Lfunc_begin0 - .quad Lset21762 -.set Lset21763, Ltmp5524-Lfunc_begin0 - .quad Lset21763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21764, Ltmp5548-Lfunc_begin0 - .quad Lset21764 -.set Lset21765, Ltmp5549-Lfunc_begin0 - .quad Lset21765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21766, Ltmp5573-Lfunc_begin0 - .quad Lset21766 -.set Lset21767, Ltmp5574-Lfunc_begin0 - .quad Lset21767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21768, Ltmp5598-Lfunc_begin0 - .quad Lset21768 -.set Lset21769, Ltmp5599-Lfunc_begin0 - .quad Lset21769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21770, Ltmp5631-Lfunc_begin0 - .quad Lset21770 -.set Lset21771, Ltmp5632-Lfunc_begin0 - .quad Lset21771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21772, Ltmp5662-Lfunc_begin0 - .quad Lset21772 -.set Lset21773, Ltmp5663-Lfunc_begin0 - .quad Lset21773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21774, Ltmp5687-Lfunc_begin0 - .quad Lset21774 -.set Lset21775, Ltmp5688-Lfunc_begin0 - .quad Lset21775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21776, Ltmp5712-Lfunc_begin0 - .quad Lset21776 -.set Lset21777, Ltmp5713-Lfunc_begin0 - .quad Lset21777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21778, Ltmp5737-Lfunc_begin0 - .quad Lset21778 -.set Lset21779, Ltmp5738-Lfunc_begin0 - .quad Lset21779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21780, Ltmp5767-Lfunc_begin0 - .quad Lset21780 -.set Lset21781, Ltmp5768-Lfunc_begin0 - .quad Lset21781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21782, Ltmp5795-Lfunc_begin0 - .quad Lset21782 -.set Lset21783, Ltmp5796-Lfunc_begin0 - .quad Lset21783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21784, Ltmp5814-Lfunc_begin0 - .quad Lset21784 -.set Lset21785, Ltmp5815-Lfunc_begin0 - .quad Lset21785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21786, Ltmp5833-Lfunc_begin0 - .quad Lset21786 -.set Lset21787, Ltmp5834-Lfunc_begin0 - .quad Lset21787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21788, Ltmp5852-Lfunc_begin0 - .quad Lset21788 -.set Lset21789, Ltmp5853-Lfunc_begin0 - .quad Lset21789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21790, Ltmp5871-Lfunc_begin0 - .quad Lset21790 -.set Lset21791, Ltmp5872-Lfunc_begin0 - .quad Lset21791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21792, Ltmp5890-Lfunc_begin0 - .quad Lset21792 -.set Lset21793, Ltmp5891-Lfunc_begin0 - .quad Lset21793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21794, Ltmp5920-Lfunc_begin0 - .quad Lset21794 -.set Lset21795, Ltmp5921-Lfunc_begin0 - .quad Lset21795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc270: -.set Lset21796, Ltmp1186-Lfunc_begin0 - .quad Lset21796 -.set Lset21797, Ltmp1187-Lfunc_begin0 - .quad Lset21797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21798, Ltmp1215-Lfunc_begin0 - .quad Lset21798 -.set Lset21799, Ltmp1216-Lfunc_begin0 - .quad Lset21799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21800, Ltmp1237-Lfunc_begin0 - .quad Lset21800 -.set Lset21801, Ltmp1238-Lfunc_begin0 - .quad Lset21801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21802, Ltmp1260-Lfunc_begin0 - .quad Lset21802 -.set Lset21803, Ltmp1261-Lfunc_begin0 - .quad Lset21803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21804, Ltmp1281-Lfunc_begin0 - .quad Lset21804 -.set Lset21805, Ltmp1282-Lfunc_begin0 - .quad Lset21805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21806, Ltmp1314-Lfunc_begin0 - .quad Lset21806 -.set Lset21807, Ltmp1315-Lfunc_begin0 - .quad Lset21807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21808, Ltmp1338-Lfunc_begin0 - .quad Lset21808 -.set Lset21809, Ltmp1339-Lfunc_begin0 - .quad Lset21809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21810, Ltmp1368-Lfunc_begin0 - .quad Lset21810 -.set Lset21811, Ltmp1369-Lfunc_begin0 - .quad Lset21811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21812, Ltmp1462-Lfunc_begin0 - .quad Lset21812 -.set Lset21813, Ltmp1464-Lfunc_begin0 - .quad Lset21813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21814, Ltmp1557-Lfunc_begin0 - .quad Lset21814 -.set Lset21815, Ltmp1559-Lfunc_begin0 - .quad Lset21815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21816, Ltmp1713-Lfunc_begin0 - .quad Lset21816 -.set Lset21817, Ltmp1715-Lfunc_begin0 - .quad Lset21817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21818, Ltmp1864-Lfunc_begin0 - .quad Lset21818 -.set Lset21819, Ltmp1866-Lfunc_begin0 - .quad Lset21819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21820, Ltmp2004-Lfunc_begin0 - .quad Lset21820 -.set Lset21821, Ltmp2006-Lfunc_begin0 - .quad Lset21821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21822, Ltmp2074-Lfunc_begin0 - .quad Lset21822 -.set Lset21823, Ltmp2076-Lfunc_begin0 - .quad Lset21823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21824, Ltmp2120-Lfunc_begin0 - .quad Lset21824 -.set Lset21825, Ltmp2121-Lfunc_begin0 - .quad Lset21825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21826, Ltmp2193-Lfunc_begin0 - .quad Lset21826 -.set Lset21827, Ltmp2195-Lfunc_begin0 - .quad Lset21827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21828, Ltmp2253-Lfunc_begin0 - .quad Lset21828 -.set Lset21829, Ltmp2255-Lfunc_begin0 - .quad Lset21829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21830, Ltmp2302-Lfunc_begin0 - .quad Lset21830 -.set Lset21831, Ltmp2304-Lfunc_begin0 - .quad Lset21831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21832, Ltmp2351-Lfunc_begin0 - .quad Lset21832 -.set Lset21833, Ltmp2353-Lfunc_begin0 - .quad Lset21833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21834, Ltmp2400-Lfunc_begin0 - .quad Lset21834 -.set Lset21835, Ltmp2402-Lfunc_begin0 - .quad Lset21835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21836, Ltmp2444-Lfunc_begin0 - .quad Lset21836 -.set Lset21837, Ltmp2446-Lfunc_begin0 - .quad Lset21837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21838, Ltmp2499-Lfunc_begin0 - .quad Lset21838 -.set Lset21839, Ltmp2501-Lfunc_begin0 - .quad Lset21839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21840, Ltmp2554-Lfunc_begin0 - .quad Lset21840 -.set Lset21841, Ltmp2556-Lfunc_begin0 - .quad Lset21841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21842, Ltmp2609-Lfunc_begin0 - .quad Lset21842 -.set Lset21843, Ltmp2611-Lfunc_begin0 - .quad Lset21843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21844, Ltmp2673-Lfunc_begin0 - .quad Lset21844 -.set Lset21845, Ltmp2675-Lfunc_begin0 - .quad Lset21845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21846, Ltmp2738-Lfunc_begin0 - .quad Lset21846 -.set Lset21847, Ltmp2740-Lfunc_begin0 - .quad Lset21847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21848, Ltmp2811-Lfunc_begin0 - .quad Lset21848 -.set Lset21849, Ltmp2813-Lfunc_begin0 - .quad Lset21849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21850, Ltmp2871-Lfunc_begin0 - .quad Lset21850 -.set Lset21851, Ltmp2873-Lfunc_begin0 - .quad Lset21851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21852, Ltmp2922-Lfunc_begin0 - .quad Lset21852 -.set Lset21853, Ltmp2924-Lfunc_begin0 - .quad Lset21853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21854, Ltmp2957-Lfunc_begin0 - .quad Lset21854 -.set Lset21855, Ltmp2958-Lfunc_begin0 - .quad Lset21855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21856, Ltmp2997-Lfunc_begin0 - .quad Lset21856 -.set Lset21857, Ltmp2999-Lfunc_begin0 - .quad Lset21857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21858, Ltmp3024-Lfunc_begin0 - .quad Lset21858 -.set Lset21859, Ltmp3025-Lfunc_begin0 - .quad Lset21859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21860, Ltmp3047-Lfunc_begin0 - .quad Lset21860 -.set Lset21861, Ltmp3048-Lfunc_begin0 - .quad Lset21861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21862, Ltmp3096-Lfunc_begin0 - .quad Lset21862 -.set Lset21863, Ltmp3097-Lfunc_begin0 - .quad Lset21863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21864, Ltmp3120-Lfunc_begin0 - .quad Lset21864 -.set Lset21865, Ltmp3122-Lfunc_begin0 - .quad Lset21865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21866, Ltmp3161-Lfunc_begin0 - .quad Lset21866 -.set Lset21867, Ltmp3163-Lfunc_begin0 - .quad Lset21867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21868, Ltmp3227-Lfunc_begin0 - .quad Lset21868 -.set Lset21869, Ltmp3228-Lfunc_begin0 - .quad Lset21869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21870, Ltmp3292-Lfunc_begin0 - .quad Lset21870 -.set Lset21871, Ltmp3293-Lfunc_begin0 - .quad Lset21871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21872, Ltmp3329-Lfunc_begin0 - .quad Lset21872 -.set Lset21873, Ltmp3330-Lfunc_begin0 - .quad Lset21873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21874, Ltmp3375-Lfunc_begin0 - .quad Lset21874 -.set Lset21875, Ltmp3376-Lfunc_begin0 - .quad Lset21875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21876, Ltmp3407-Lfunc_begin0 - .quad Lset21876 -.set Lset21877, Ltmp3408-Lfunc_begin0 - .quad Lset21877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21878, Ltmp3435-Lfunc_begin0 - .quad Lset21878 -.set Lset21879, Ltmp3436-Lfunc_begin0 - .quad Lset21879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21880, Ltmp3537-Lfunc_begin0 - .quad Lset21880 -.set Lset21881, Ltmp3538-Lfunc_begin0 - .quad Lset21881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21882, Ltmp3638-Lfunc_begin0 - .quad Lset21882 -.set Lset21883, Ltmp3640-Lfunc_begin0 - .quad Lset21883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21884, Ltmp3685-Lfunc_begin0 - .quad Lset21884 -.set Lset21885, Ltmp3686-Lfunc_begin0 - .quad Lset21885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21886, Ltmp3807-Lfunc_begin0 - .quad Lset21886 -.set Lset21887, Ltmp3809-Lfunc_begin0 - .quad Lset21887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21888, Ltmp3864-Lfunc_begin0 - .quad Lset21888 -.set Lset21889, Ltmp3865-Lfunc_begin0 - .quad Lset21889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21890, Ltmp3933-Lfunc_begin0 - .quad Lset21890 -.set Lset21891, Ltmp3934-Lfunc_begin0 - .quad Lset21891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21892, Ltmp3959-Lfunc_begin0 - .quad Lset21892 -.set Lset21893, Ltmp3960-Lfunc_begin0 - .quad Lset21893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21894, Ltmp3985-Lfunc_begin0 - .quad Lset21894 -.set Lset21895, Ltmp3986-Lfunc_begin0 - .quad Lset21895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21896, Ltmp4011-Lfunc_begin0 - .quad Lset21896 -.set Lset21897, Ltmp4012-Lfunc_begin0 - .quad Lset21897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21898, Ltmp4046-Lfunc_begin0 - .quad Lset21898 -.set Lset21899, Ltmp4047-Lfunc_begin0 - .quad Lset21899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21900, Ltmp4084-Lfunc_begin0 - .quad Lset21900 -.set Lset21901, Ltmp4085-Lfunc_begin0 - .quad Lset21901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21902, Ltmp4106-Lfunc_begin0 - .quad Lset21902 -.set Lset21903, Ltmp4107-Lfunc_begin0 - .quad Lset21903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21904, Ltmp4146-Lfunc_begin0 - .quad Lset21904 -.set Lset21905, Ltmp4147-Lfunc_begin0 - .quad Lset21905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21906, Ltmp4187-Lfunc_begin0 - .quad Lset21906 -.set Lset21907, Ltmp4188-Lfunc_begin0 - .quad Lset21907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21908, Ltmp4227-Lfunc_begin0 - .quad Lset21908 -.set Lset21909, Ltmp4228-Lfunc_begin0 - .quad Lset21909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21910, Ltmp4268-Lfunc_begin0 - .quad Lset21910 -.set Lset21911, Ltmp4269-Lfunc_begin0 - .quad Lset21911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21912, Ltmp4308-Lfunc_begin0 - .quad Lset21912 -.set Lset21913, Ltmp4309-Lfunc_begin0 - .quad Lset21913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21914, Ltmp4349-Lfunc_begin0 - .quad Lset21914 -.set Lset21915, Ltmp4350-Lfunc_begin0 - .quad Lset21915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21916, Ltmp4380-Lfunc_begin0 - .quad Lset21916 -.set Lset21917, Ltmp4381-Lfunc_begin0 - .quad Lset21917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21918, Ltmp4412-Lfunc_begin0 - .quad Lset21918 -.set Lset21919, Ltmp4414-Lfunc_begin0 - .quad Lset21919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21920, Ltmp4454-Lfunc_begin0 - .quad Lset21920 -.set Lset21921, Ltmp4455-Lfunc_begin0 - .quad Lset21921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21922, Ltmp4495-Lfunc_begin0 - .quad Lset21922 -.set Lset21923, Ltmp4496-Lfunc_begin0 - .quad Lset21923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21924, Ltmp4579-Lfunc_begin0 - .quad Lset21924 -.set Lset21925, Ltmp4581-Lfunc_begin0 - .quad Lset21925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21926, Ltmp4649-Lfunc_begin0 - .quad Lset21926 -.set Lset21927, Ltmp4651-Lfunc_begin0 - .quad Lset21927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21928, Ltmp4717-Lfunc_begin0 - .quad Lset21928 -.set Lset21929, Ltmp4719-Lfunc_begin0 - .quad Lset21929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21930, Ltmp4783-Lfunc_begin0 - .quad Lset21930 -.set Lset21931, Ltmp4784-Lfunc_begin0 - .quad Lset21931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21932, Ltmp4813-Lfunc_begin0 - .quad Lset21932 -.set Lset21933, Ltmp4814-Lfunc_begin0 - .quad Lset21933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21934, Ltmp4843-Lfunc_begin0 - .quad Lset21934 -.set Lset21935, Ltmp4844-Lfunc_begin0 - .quad Lset21935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21936, Ltmp4902-Lfunc_begin0 - .quad Lset21936 -.set Lset21937, Ltmp4903-Lfunc_begin0 - .quad Lset21937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21938, Ltmp4943-Lfunc_begin0 - .quad Lset21938 -.set Lset21939, Ltmp4944-Lfunc_begin0 - .quad Lset21939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21940, Ltmp5000-Lfunc_begin0 - .quad Lset21940 -.set Lset21941, Ltmp5001-Lfunc_begin0 - .quad Lset21941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21942, Ltmp5040-Lfunc_begin0 - .quad Lset21942 -.set Lset21943, Ltmp5041-Lfunc_begin0 - .quad Lset21943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21944, Ltmp5078-Lfunc_begin0 - .quad Lset21944 -.set Lset21945, Ltmp5079-Lfunc_begin0 - .quad Lset21945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21946, Ltmp5114-Lfunc_begin0 - .quad Lset21946 -.set Lset21947, Ltmp5115-Lfunc_begin0 - .quad Lset21947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21948, Ltmp5146-Lfunc_begin0 - .quad Lset21948 -.set Lset21949, Ltmp5147-Lfunc_begin0 - .quad Lset21949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21950, Ltmp5178-Lfunc_begin0 - .quad Lset21950 -.set Lset21951, Ltmp5179-Lfunc_begin0 - .quad Lset21951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21952, Ltmp5210-Lfunc_begin0 - .quad Lset21952 -.set Lset21953, Ltmp5211-Lfunc_begin0 - .quad Lset21953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21954, Ltmp5228-Lfunc_begin0 - .quad Lset21954 -.set Lset21955, Ltmp5229-Lfunc_begin0 - .quad Lset21955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21956, Ltmp5246-Lfunc_begin0 - .quad Lset21956 -.set Lset21957, Ltmp5247-Lfunc_begin0 - .quad Lset21957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21958, Ltmp5271-Lfunc_begin0 - .quad Lset21958 -.set Lset21959, Ltmp5272-Lfunc_begin0 - .quad Lset21959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21960, Ltmp5296-Lfunc_begin0 - .quad Lset21960 -.set Lset21961, Ltmp5297-Lfunc_begin0 - .quad Lset21961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21962, Ltmp5322-Lfunc_begin0 - .quad Lset21962 -.set Lset21963, Ltmp5323-Lfunc_begin0 - .quad Lset21963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21964, Ltmp5347-Lfunc_begin0 - .quad Lset21964 -.set Lset21965, Ltmp5348-Lfunc_begin0 - .quad Lset21965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21966, Ltmp5372-Lfunc_begin0 - .quad Lset21966 -.set Lset21967, Ltmp5373-Lfunc_begin0 - .quad Lset21967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21968, Ltmp5397-Lfunc_begin0 - .quad Lset21968 -.set Lset21969, Ltmp5398-Lfunc_begin0 - .quad Lset21969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21970, Ltmp5422-Lfunc_begin0 - .quad Lset21970 -.set Lset21971, Ltmp5423-Lfunc_begin0 - .quad Lset21971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21972, Ltmp5447-Lfunc_begin0 - .quad Lset21972 -.set Lset21973, Ltmp5448-Lfunc_begin0 - .quad Lset21973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21974, Ltmp5472-Lfunc_begin0 - .quad Lset21974 -.set Lset21975, Ltmp5473-Lfunc_begin0 - .quad Lset21975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21976, Ltmp5498-Lfunc_begin0 - .quad Lset21976 -.set Lset21977, Ltmp5499-Lfunc_begin0 - .quad Lset21977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21978, Ltmp5523-Lfunc_begin0 - .quad Lset21978 -.set Lset21979, Ltmp5524-Lfunc_begin0 - .quad Lset21979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21980, Ltmp5548-Lfunc_begin0 - .quad Lset21980 -.set Lset21981, Ltmp5549-Lfunc_begin0 - .quad Lset21981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21982, Ltmp5573-Lfunc_begin0 - .quad Lset21982 -.set Lset21983, Ltmp5574-Lfunc_begin0 - .quad Lset21983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21984, Ltmp5598-Lfunc_begin0 - .quad Lset21984 -.set Lset21985, Ltmp5599-Lfunc_begin0 - .quad Lset21985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21986, Ltmp5631-Lfunc_begin0 - .quad Lset21986 -.set Lset21987, Ltmp5632-Lfunc_begin0 - .quad Lset21987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21988, Ltmp5662-Lfunc_begin0 - .quad Lset21988 -.set Lset21989, Ltmp5663-Lfunc_begin0 - .quad Lset21989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21990, Ltmp5687-Lfunc_begin0 - .quad Lset21990 -.set Lset21991, Ltmp5688-Lfunc_begin0 - .quad Lset21991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21992, Ltmp5712-Lfunc_begin0 - .quad Lset21992 -.set Lset21993, Ltmp5713-Lfunc_begin0 - .quad Lset21993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21994, Ltmp5737-Lfunc_begin0 - .quad Lset21994 -.set Lset21995, Ltmp5738-Lfunc_begin0 - .quad Lset21995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21996, Ltmp5767-Lfunc_begin0 - .quad Lset21996 -.set Lset21997, Ltmp5768-Lfunc_begin0 - .quad Lset21997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset21998, Ltmp5795-Lfunc_begin0 - .quad Lset21998 -.set Lset21999, Ltmp5796-Lfunc_begin0 - .quad Lset21999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22000, Ltmp5814-Lfunc_begin0 - .quad Lset22000 -.set Lset22001, Ltmp5815-Lfunc_begin0 - .quad Lset22001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22002, Ltmp5833-Lfunc_begin0 - .quad Lset22002 -.set Lset22003, Ltmp5834-Lfunc_begin0 - .quad Lset22003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22004, Ltmp5852-Lfunc_begin0 - .quad Lset22004 -.set Lset22005, Ltmp5853-Lfunc_begin0 - .quad Lset22005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22006, Ltmp5871-Lfunc_begin0 - .quad Lset22006 -.set Lset22007, Ltmp5872-Lfunc_begin0 - .quad Lset22007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22008, Ltmp5890-Lfunc_begin0 - .quad Lset22008 -.set Lset22009, Ltmp5891-Lfunc_begin0 - .quad Lset22009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22010, Ltmp5920-Lfunc_begin0 - .quad Lset22010 -.set Lset22011, Ltmp5921-Lfunc_begin0 - .quad Lset22011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc271: -.set Lset22012, Ltmp1186-Lfunc_begin0 - .quad Lset22012 -.set Lset22013, Ltmp1187-Lfunc_begin0 - .quad Lset22013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22014, Ltmp1215-Lfunc_begin0 - .quad Lset22014 -.set Lset22015, Ltmp1216-Lfunc_begin0 - .quad Lset22015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22016, Ltmp1237-Lfunc_begin0 - .quad Lset22016 -.set Lset22017, Ltmp1238-Lfunc_begin0 - .quad Lset22017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22018, Ltmp1260-Lfunc_begin0 - .quad Lset22018 -.set Lset22019, Ltmp1261-Lfunc_begin0 - .quad Lset22019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22020, Ltmp1281-Lfunc_begin0 - .quad Lset22020 -.set Lset22021, Ltmp1282-Lfunc_begin0 - .quad Lset22021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22022, Ltmp1314-Lfunc_begin0 - .quad Lset22022 -.set Lset22023, Ltmp1315-Lfunc_begin0 - .quad Lset22023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22024, Ltmp1338-Lfunc_begin0 - .quad Lset22024 -.set Lset22025, Ltmp1339-Lfunc_begin0 - .quad Lset22025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22026, Ltmp1368-Lfunc_begin0 - .quad Lset22026 -.set Lset22027, Ltmp1369-Lfunc_begin0 - .quad Lset22027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22028, Ltmp1462-Lfunc_begin0 - .quad Lset22028 -.set Lset22029, Ltmp1464-Lfunc_begin0 - .quad Lset22029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22030, Ltmp1557-Lfunc_begin0 - .quad Lset22030 -.set Lset22031, Ltmp1559-Lfunc_begin0 - .quad Lset22031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22032, Ltmp1713-Lfunc_begin0 - .quad Lset22032 -.set Lset22033, Ltmp1715-Lfunc_begin0 - .quad Lset22033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22034, Ltmp1864-Lfunc_begin0 - .quad Lset22034 -.set Lset22035, Ltmp1866-Lfunc_begin0 - .quad Lset22035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22036, Ltmp2004-Lfunc_begin0 - .quad Lset22036 -.set Lset22037, Ltmp2006-Lfunc_begin0 - .quad Lset22037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22038, Ltmp2074-Lfunc_begin0 - .quad Lset22038 -.set Lset22039, Ltmp2076-Lfunc_begin0 - .quad Lset22039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22040, Ltmp2120-Lfunc_begin0 - .quad Lset22040 -.set Lset22041, Ltmp2121-Lfunc_begin0 - .quad Lset22041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22042, Ltmp2193-Lfunc_begin0 - .quad Lset22042 -.set Lset22043, Ltmp2195-Lfunc_begin0 - .quad Lset22043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22044, Ltmp2253-Lfunc_begin0 - .quad Lset22044 -.set Lset22045, Ltmp2255-Lfunc_begin0 - .quad Lset22045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22046, Ltmp2302-Lfunc_begin0 - .quad Lset22046 -.set Lset22047, Ltmp2304-Lfunc_begin0 - .quad Lset22047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22048, Ltmp2351-Lfunc_begin0 - .quad Lset22048 -.set Lset22049, Ltmp2353-Lfunc_begin0 - .quad Lset22049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22050, Ltmp2400-Lfunc_begin0 - .quad Lset22050 -.set Lset22051, Ltmp2402-Lfunc_begin0 - .quad Lset22051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22052, Ltmp2444-Lfunc_begin0 - .quad Lset22052 -.set Lset22053, Ltmp2446-Lfunc_begin0 - .quad Lset22053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22054, Ltmp2499-Lfunc_begin0 - .quad Lset22054 -.set Lset22055, Ltmp2501-Lfunc_begin0 - .quad Lset22055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22056, Ltmp2554-Lfunc_begin0 - .quad Lset22056 -.set Lset22057, Ltmp2556-Lfunc_begin0 - .quad Lset22057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22058, Ltmp2609-Lfunc_begin0 - .quad Lset22058 -.set Lset22059, Ltmp2611-Lfunc_begin0 - .quad Lset22059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22060, Ltmp2673-Lfunc_begin0 - .quad Lset22060 -.set Lset22061, Ltmp2675-Lfunc_begin0 - .quad Lset22061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22062, Ltmp2738-Lfunc_begin0 - .quad Lset22062 -.set Lset22063, Ltmp2740-Lfunc_begin0 - .quad Lset22063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22064, Ltmp2811-Lfunc_begin0 - .quad Lset22064 -.set Lset22065, Ltmp2813-Lfunc_begin0 - .quad Lset22065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22066, Ltmp2871-Lfunc_begin0 - .quad Lset22066 -.set Lset22067, Ltmp2873-Lfunc_begin0 - .quad Lset22067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22068, Ltmp2922-Lfunc_begin0 - .quad Lset22068 -.set Lset22069, Ltmp2924-Lfunc_begin0 - .quad Lset22069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22070, Ltmp2957-Lfunc_begin0 - .quad Lset22070 -.set Lset22071, Ltmp2958-Lfunc_begin0 - .quad Lset22071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22072, Ltmp2997-Lfunc_begin0 - .quad Lset22072 -.set Lset22073, Ltmp2999-Lfunc_begin0 - .quad Lset22073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22074, Ltmp3024-Lfunc_begin0 - .quad Lset22074 -.set Lset22075, Ltmp3025-Lfunc_begin0 - .quad Lset22075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22076, Ltmp3047-Lfunc_begin0 - .quad Lset22076 -.set Lset22077, Ltmp3048-Lfunc_begin0 - .quad Lset22077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22078, Ltmp3096-Lfunc_begin0 - .quad Lset22078 -.set Lset22079, Ltmp3097-Lfunc_begin0 - .quad Lset22079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22080, Ltmp3120-Lfunc_begin0 - .quad Lset22080 -.set Lset22081, Ltmp3122-Lfunc_begin0 - .quad Lset22081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22082, Ltmp3161-Lfunc_begin0 - .quad Lset22082 -.set Lset22083, Ltmp3163-Lfunc_begin0 - .quad Lset22083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22084, Ltmp3227-Lfunc_begin0 - .quad Lset22084 -.set Lset22085, Ltmp3228-Lfunc_begin0 - .quad Lset22085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22086, Ltmp3292-Lfunc_begin0 - .quad Lset22086 -.set Lset22087, Ltmp3293-Lfunc_begin0 - .quad Lset22087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22088, Ltmp3329-Lfunc_begin0 - .quad Lset22088 -.set Lset22089, Ltmp3330-Lfunc_begin0 - .quad Lset22089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22090, Ltmp3375-Lfunc_begin0 - .quad Lset22090 -.set Lset22091, Ltmp3376-Lfunc_begin0 - .quad Lset22091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22092, Ltmp3407-Lfunc_begin0 - .quad Lset22092 -.set Lset22093, Ltmp3408-Lfunc_begin0 - .quad Lset22093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22094, Ltmp3435-Lfunc_begin0 - .quad Lset22094 -.set Lset22095, Ltmp3436-Lfunc_begin0 - .quad Lset22095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22096, Ltmp3537-Lfunc_begin0 - .quad Lset22096 -.set Lset22097, Ltmp3538-Lfunc_begin0 - .quad Lset22097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22098, Ltmp3638-Lfunc_begin0 - .quad Lset22098 -.set Lset22099, Ltmp3640-Lfunc_begin0 - .quad Lset22099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22100, Ltmp3685-Lfunc_begin0 - .quad Lset22100 -.set Lset22101, Ltmp3686-Lfunc_begin0 - .quad Lset22101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22102, Ltmp3807-Lfunc_begin0 - .quad Lset22102 -.set Lset22103, Ltmp3809-Lfunc_begin0 - .quad Lset22103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22104, Ltmp3864-Lfunc_begin0 - .quad Lset22104 -.set Lset22105, Ltmp3865-Lfunc_begin0 - .quad Lset22105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22106, Ltmp3933-Lfunc_begin0 - .quad Lset22106 -.set Lset22107, Ltmp3934-Lfunc_begin0 - .quad Lset22107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22108, Ltmp3959-Lfunc_begin0 - .quad Lset22108 -.set Lset22109, Ltmp3960-Lfunc_begin0 - .quad Lset22109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22110, Ltmp3985-Lfunc_begin0 - .quad Lset22110 -.set Lset22111, Ltmp3986-Lfunc_begin0 - .quad Lset22111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22112, Ltmp4011-Lfunc_begin0 - .quad Lset22112 -.set Lset22113, Ltmp4012-Lfunc_begin0 - .quad Lset22113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22114, Ltmp4046-Lfunc_begin0 - .quad Lset22114 -.set Lset22115, Ltmp4047-Lfunc_begin0 - .quad Lset22115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22116, Ltmp4084-Lfunc_begin0 - .quad Lset22116 -.set Lset22117, Ltmp4085-Lfunc_begin0 - .quad Lset22117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22118, Ltmp4106-Lfunc_begin0 - .quad Lset22118 -.set Lset22119, Ltmp4107-Lfunc_begin0 - .quad Lset22119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22120, Ltmp4146-Lfunc_begin0 - .quad Lset22120 -.set Lset22121, Ltmp4147-Lfunc_begin0 - .quad Lset22121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22122, Ltmp4187-Lfunc_begin0 - .quad Lset22122 -.set Lset22123, Ltmp4188-Lfunc_begin0 - .quad Lset22123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22124, Ltmp4227-Lfunc_begin0 - .quad Lset22124 -.set Lset22125, Ltmp4228-Lfunc_begin0 - .quad Lset22125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22126, Ltmp4268-Lfunc_begin0 - .quad Lset22126 -.set Lset22127, Ltmp4269-Lfunc_begin0 - .quad Lset22127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22128, Ltmp4308-Lfunc_begin0 - .quad Lset22128 -.set Lset22129, Ltmp4309-Lfunc_begin0 - .quad Lset22129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22130, Ltmp4349-Lfunc_begin0 - .quad Lset22130 -.set Lset22131, Ltmp4350-Lfunc_begin0 - .quad Lset22131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22132, Ltmp4380-Lfunc_begin0 - .quad Lset22132 -.set Lset22133, Ltmp4381-Lfunc_begin0 - .quad Lset22133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22134, Ltmp4412-Lfunc_begin0 - .quad Lset22134 -.set Lset22135, Ltmp4414-Lfunc_begin0 - .quad Lset22135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22136, Ltmp4454-Lfunc_begin0 - .quad Lset22136 -.set Lset22137, Ltmp4455-Lfunc_begin0 - .quad Lset22137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22138, Ltmp4495-Lfunc_begin0 - .quad Lset22138 -.set Lset22139, Ltmp4496-Lfunc_begin0 - .quad Lset22139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22140, Ltmp4579-Lfunc_begin0 - .quad Lset22140 -.set Lset22141, Ltmp4581-Lfunc_begin0 - .quad Lset22141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22142, Ltmp4649-Lfunc_begin0 - .quad Lset22142 -.set Lset22143, Ltmp4651-Lfunc_begin0 - .quad Lset22143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22144, Ltmp4717-Lfunc_begin0 - .quad Lset22144 -.set Lset22145, Ltmp4719-Lfunc_begin0 - .quad Lset22145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22146, Ltmp4783-Lfunc_begin0 - .quad Lset22146 -.set Lset22147, Ltmp4784-Lfunc_begin0 - .quad Lset22147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22148, Ltmp4813-Lfunc_begin0 - .quad Lset22148 -.set Lset22149, Ltmp4814-Lfunc_begin0 - .quad Lset22149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22150, Ltmp4843-Lfunc_begin0 - .quad Lset22150 -.set Lset22151, Ltmp4844-Lfunc_begin0 - .quad Lset22151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22152, Ltmp4902-Lfunc_begin0 - .quad Lset22152 -.set Lset22153, Ltmp4903-Lfunc_begin0 - .quad Lset22153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22154, Ltmp4943-Lfunc_begin0 - .quad Lset22154 -.set Lset22155, Ltmp4944-Lfunc_begin0 - .quad Lset22155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22156, Ltmp5000-Lfunc_begin0 - .quad Lset22156 -.set Lset22157, Ltmp5001-Lfunc_begin0 - .quad Lset22157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22158, Ltmp5040-Lfunc_begin0 - .quad Lset22158 -.set Lset22159, Ltmp5041-Lfunc_begin0 - .quad Lset22159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22160, Ltmp5078-Lfunc_begin0 - .quad Lset22160 -.set Lset22161, Ltmp5079-Lfunc_begin0 - .quad Lset22161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22162, Ltmp5114-Lfunc_begin0 - .quad Lset22162 -.set Lset22163, Ltmp5115-Lfunc_begin0 - .quad Lset22163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22164, Ltmp5146-Lfunc_begin0 - .quad Lset22164 -.set Lset22165, Ltmp5147-Lfunc_begin0 - .quad Lset22165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22166, Ltmp5178-Lfunc_begin0 - .quad Lset22166 -.set Lset22167, Ltmp5179-Lfunc_begin0 - .quad Lset22167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22168, Ltmp5210-Lfunc_begin0 - .quad Lset22168 -.set Lset22169, Ltmp5211-Lfunc_begin0 - .quad Lset22169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22170, Ltmp5228-Lfunc_begin0 - .quad Lset22170 -.set Lset22171, Ltmp5229-Lfunc_begin0 - .quad Lset22171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22172, Ltmp5246-Lfunc_begin0 - .quad Lset22172 -.set Lset22173, Ltmp5247-Lfunc_begin0 - .quad Lset22173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22174, Ltmp5271-Lfunc_begin0 - .quad Lset22174 -.set Lset22175, Ltmp5272-Lfunc_begin0 - .quad Lset22175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22176, Ltmp5296-Lfunc_begin0 - .quad Lset22176 -.set Lset22177, Ltmp5297-Lfunc_begin0 - .quad Lset22177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22178, Ltmp5322-Lfunc_begin0 - .quad Lset22178 -.set Lset22179, Ltmp5323-Lfunc_begin0 - .quad Lset22179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22180, Ltmp5347-Lfunc_begin0 - .quad Lset22180 -.set Lset22181, Ltmp5348-Lfunc_begin0 - .quad Lset22181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22182, Ltmp5372-Lfunc_begin0 - .quad Lset22182 -.set Lset22183, Ltmp5373-Lfunc_begin0 - .quad Lset22183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22184, Ltmp5397-Lfunc_begin0 - .quad Lset22184 -.set Lset22185, Ltmp5398-Lfunc_begin0 - .quad Lset22185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22186, Ltmp5422-Lfunc_begin0 - .quad Lset22186 -.set Lset22187, Ltmp5423-Lfunc_begin0 - .quad Lset22187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22188, Ltmp5447-Lfunc_begin0 - .quad Lset22188 -.set Lset22189, Ltmp5448-Lfunc_begin0 - .quad Lset22189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22190, Ltmp5472-Lfunc_begin0 - .quad Lset22190 -.set Lset22191, Ltmp5473-Lfunc_begin0 - .quad Lset22191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22192, Ltmp5498-Lfunc_begin0 - .quad Lset22192 -.set Lset22193, Ltmp5499-Lfunc_begin0 - .quad Lset22193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22194, Ltmp5523-Lfunc_begin0 - .quad Lset22194 -.set Lset22195, Ltmp5524-Lfunc_begin0 - .quad Lset22195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22196, Ltmp5548-Lfunc_begin0 - .quad Lset22196 -.set Lset22197, Ltmp5549-Lfunc_begin0 - .quad Lset22197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22198, Ltmp5573-Lfunc_begin0 - .quad Lset22198 -.set Lset22199, Ltmp5574-Lfunc_begin0 - .quad Lset22199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22200, Ltmp5598-Lfunc_begin0 - .quad Lset22200 -.set Lset22201, Ltmp5599-Lfunc_begin0 - .quad Lset22201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22202, Ltmp5631-Lfunc_begin0 - .quad Lset22202 -.set Lset22203, Ltmp5632-Lfunc_begin0 - .quad Lset22203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22204, Ltmp5662-Lfunc_begin0 - .quad Lset22204 -.set Lset22205, Ltmp5663-Lfunc_begin0 - .quad Lset22205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22206, Ltmp5687-Lfunc_begin0 - .quad Lset22206 -.set Lset22207, Ltmp5688-Lfunc_begin0 - .quad Lset22207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22208, Ltmp5712-Lfunc_begin0 - .quad Lset22208 -.set Lset22209, Ltmp5713-Lfunc_begin0 - .quad Lset22209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22210, Ltmp5737-Lfunc_begin0 - .quad Lset22210 -.set Lset22211, Ltmp5738-Lfunc_begin0 - .quad Lset22211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22212, Ltmp5767-Lfunc_begin0 - .quad Lset22212 -.set Lset22213, Ltmp5768-Lfunc_begin0 - .quad Lset22213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22214, Ltmp5795-Lfunc_begin0 - .quad Lset22214 -.set Lset22215, Ltmp5796-Lfunc_begin0 - .quad Lset22215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22216, Ltmp5814-Lfunc_begin0 - .quad Lset22216 -.set Lset22217, Ltmp5815-Lfunc_begin0 - .quad Lset22217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22218, Ltmp5833-Lfunc_begin0 - .quad Lset22218 -.set Lset22219, Ltmp5834-Lfunc_begin0 - .quad Lset22219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22220, Ltmp5852-Lfunc_begin0 - .quad Lset22220 -.set Lset22221, Ltmp5853-Lfunc_begin0 - .quad Lset22221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22222, Ltmp5871-Lfunc_begin0 - .quad Lset22222 -.set Lset22223, Ltmp5872-Lfunc_begin0 - .quad Lset22223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22224, Ltmp5890-Lfunc_begin0 - .quad Lset22224 -.set Lset22225, Ltmp5891-Lfunc_begin0 - .quad Lset22225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22226, Ltmp5920-Lfunc_begin0 - .quad Lset22226 -.set Lset22227, Ltmp5921-Lfunc_begin0 - .quad Lset22227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc272: -.set Lset22228, Ltmp1186-Lfunc_begin0 - .quad Lset22228 -.set Lset22229, Ltmp1187-Lfunc_begin0 - .quad Lset22229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22230, Ltmp1215-Lfunc_begin0 - .quad Lset22230 -.set Lset22231, Ltmp1216-Lfunc_begin0 - .quad Lset22231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22232, Ltmp1237-Lfunc_begin0 - .quad Lset22232 -.set Lset22233, Ltmp1238-Lfunc_begin0 - .quad Lset22233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22234, Ltmp1260-Lfunc_begin0 - .quad Lset22234 -.set Lset22235, Ltmp1261-Lfunc_begin0 - .quad Lset22235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22236, Ltmp1281-Lfunc_begin0 - .quad Lset22236 -.set Lset22237, Ltmp1282-Lfunc_begin0 - .quad Lset22237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22238, Ltmp1314-Lfunc_begin0 - .quad Lset22238 -.set Lset22239, Ltmp1315-Lfunc_begin0 - .quad Lset22239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22240, Ltmp1338-Lfunc_begin0 - .quad Lset22240 -.set Lset22241, Ltmp1339-Lfunc_begin0 - .quad Lset22241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22242, Ltmp1368-Lfunc_begin0 - .quad Lset22242 -.set Lset22243, Ltmp1369-Lfunc_begin0 - .quad Lset22243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22244, Ltmp1462-Lfunc_begin0 - .quad Lset22244 -.set Lset22245, Ltmp1464-Lfunc_begin0 - .quad Lset22245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22246, Ltmp1557-Lfunc_begin0 - .quad Lset22246 -.set Lset22247, Ltmp1559-Lfunc_begin0 - .quad Lset22247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22248, Ltmp1713-Lfunc_begin0 - .quad Lset22248 -.set Lset22249, Ltmp1715-Lfunc_begin0 - .quad Lset22249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22250, Ltmp1864-Lfunc_begin0 - .quad Lset22250 -.set Lset22251, Ltmp1866-Lfunc_begin0 - .quad Lset22251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22252, Ltmp2004-Lfunc_begin0 - .quad Lset22252 -.set Lset22253, Ltmp2006-Lfunc_begin0 - .quad Lset22253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22254, Ltmp2074-Lfunc_begin0 - .quad Lset22254 -.set Lset22255, Ltmp2076-Lfunc_begin0 - .quad Lset22255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22256, Ltmp2120-Lfunc_begin0 - .quad Lset22256 -.set Lset22257, Ltmp2121-Lfunc_begin0 - .quad Lset22257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22258, Ltmp2193-Lfunc_begin0 - .quad Lset22258 -.set Lset22259, Ltmp2195-Lfunc_begin0 - .quad Lset22259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22260, Ltmp2253-Lfunc_begin0 - .quad Lset22260 -.set Lset22261, Ltmp2255-Lfunc_begin0 - .quad Lset22261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22262, Ltmp2302-Lfunc_begin0 - .quad Lset22262 -.set Lset22263, Ltmp2304-Lfunc_begin0 - .quad Lset22263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22264, Ltmp2351-Lfunc_begin0 - .quad Lset22264 -.set Lset22265, Ltmp2353-Lfunc_begin0 - .quad Lset22265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22266, Ltmp2400-Lfunc_begin0 - .quad Lset22266 -.set Lset22267, Ltmp2402-Lfunc_begin0 - .quad Lset22267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22268, Ltmp2444-Lfunc_begin0 - .quad Lset22268 -.set Lset22269, Ltmp2446-Lfunc_begin0 - .quad Lset22269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22270, Ltmp2499-Lfunc_begin0 - .quad Lset22270 -.set Lset22271, Ltmp2501-Lfunc_begin0 - .quad Lset22271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22272, Ltmp2554-Lfunc_begin0 - .quad Lset22272 -.set Lset22273, Ltmp2556-Lfunc_begin0 - .quad Lset22273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22274, Ltmp2609-Lfunc_begin0 - .quad Lset22274 -.set Lset22275, Ltmp2611-Lfunc_begin0 - .quad Lset22275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22276, Ltmp2673-Lfunc_begin0 - .quad Lset22276 -.set Lset22277, Ltmp2675-Lfunc_begin0 - .quad Lset22277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22278, Ltmp2738-Lfunc_begin0 - .quad Lset22278 -.set Lset22279, Ltmp2740-Lfunc_begin0 - .quad Lset22279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22280, Ltmp2811-Lfunc_begin0 - .quad Lset22280 -.set Lset22281, Ltmp2813-Lfunc_begin0 - .quad Lset22281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22282, Ltmp2871-Lfunc_begin0 - .quad Lset22282 -.set Lset22283, Ltmp2873-Lfunc_begin0 - .quad Lset22283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22284, Ltmp2922-Lfunc_begin0 - .quad Lset22284 -.set Lset22285, Ltmp2924-Lfunc_begin0 - .quad Lset22285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22286, Ltmp2957-Lfunc_begin0 - .quad Lset22286 -.set Lset22287, Ltmp2958-Lfunc_begin0 - .quad Lset22287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22288, Ltmp2997-Lfunc_begin0 - .quad Lset22288 -.set Lset22289, Ltmp2999-Lfunc_begin0 - .quad Lset22289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22290, Ltmp3024-Lfunc_begin0 - .quad Lset22290 -.set Lset22291, Ltmp3025-Lfunc_begin0 - .quad Lset22291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22292, Ltmp3047-Lfunc_begin0 - .quad Lset22292 -.set Lset22293, Ltmp3048-Lfunc_begin0 - .quad Lset22293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22294, Ltmp3096-Lfunc_begin0 - .quad Lset22294 -.set Lset22295, Ltmp3097-Lfunc_begin0 - .quad Lset22295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22296, Ltmp3120-Lfunc_begin0 - .quad Lset22296 -.set Lset22297, Ltmp3122-Lfunc_begin0 - .quad Lset22297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22298, Ltmp3161-Lfunc_begin0 - .quad Lset22298 -.set Lset22299, Ltmp3163-Lfunc_begin0 - .quad Lset22299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22300, Ltmp3227-Lfunc_begin0 - .quad Lset22300 -.set Lset22301, Ltmp3228-Lfunc_begin0 - .quad Lset22301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22302, Ltmp3292-Lfunc_begin0 - .quad Lset22302 -.set Lset22303, Ltmp3293-Lfunc_begin0 - .quad Lset22303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22304, Ltmp3329-Lfunc_begin0 - .quad Lset22304 -.set Lset22305, Ltmp3330-Lfunc_begin0 - .quad Lset22305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22306, Ltmp3375-Lfunc_begin0 - .quad Lset22306 -.set Lset22307, Ltmp3376-Lfunc_begin0 - .quad Lset22307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22308, Ltmp3407-Lfunc_begin0 - .quad Lset22308 -.set Lset22309, Ltmp3408-Lfunc_begin0 - .quad Lset22309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22310, Ltmp3435-Lfunc_begin0 - .quad Lset22310 -.set Lset22311, Ltmp3436-Lfunc_begin0 - .quad Lset22311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22312, Ltmp3537-Lfunc_begin0 - .quad Lset22312 -.set Lset22313, Ltmp3538-Lfunc_begin0 - .quad Lset22313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22314, Ltmp3638-Lfunc_begin0 - .quad Lset22314 -.set Lset22315, Ltmp3640-Lfunc_begin0 - .quad Lset22315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22316, Ltmp3685-Lfunc_begin0 - .quad Lset22316 -.set Lset22317, Ltmp3686-Lfunc_begin0 - .quad Lset22317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22318, Ltmp3807-Lfunc_begin0 - .quad Lset22318 -.set Lset22319, Ltmp3809-Lfunc_begin0 - .quad Lset22319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22320, Ltmp3864-Lfunc_begin0 - .quad Lset22320 -.set Lset22321, Ltmp3865-Lfunc_begin0 - .quad Lset22321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22322, Ltmp3933-Lfunc_begin0 - .quad Lset22322 -.set Lset22323, Ltmp3934-Lfunc_begin0 - .quad Lset22323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22324, Ltmp3959-Lfunc_begin0 - .quad Lset22324 -.set Lset22325, Ltmp3960-Lfunc_begin0 - .quad Lset22325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22326, Ltmp3985-Lfunc_begin0 - .quad Lset22326 -.set Lset22327, Ltmp3986-Lfunc_begin0 - .quad Lset22327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22328, Ltmp4011-Lfunc_begin0 - .quad Lset22328 -.set Lset22329, Ltmp4012-Lfunc_begin0 - .quad Lset22329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22330, Ltmp4046-Lfunc_begin0 - .quad Lset22330 -.set Lset22331, Ltmp4047-Lfunc_begin0 - .quad Lset22331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22332, Ltmp4084-Lfunc_begin0 - .quad Lset22332 -.set Lset22333, Ltmp4085-Lfunc_begin0 - .quad Lset22333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22334, Ltmp4106-Lfunc_begin0 - .quad Lset22334 -.set Lset22335, Ltmp4107-Lfunc_begin0 - .quad Lset22335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22336, Ltmp4146-Lfunc_begin0 - .quad Lset22336 -.set Lset22337, Ltmp4147-Lfunc_begin0 - .quad Lset22337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22338, Ltmp4187-Lfunc_begin0 - .quad Lset22338 -.set Lset22339, Ltmp4188-Lfunc_begin0 - .quad Lset22339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22340, Ltmp4227-Lfunc_begin0 - .quad Lset22340 -.set Lset22341, Ltmp4228-Lfunc_begin0 - .quad Lset22341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22342, Ltmp4268-Lfunc_begin0 - .quad Lset22342 -.set Lset22343, Ltmp4269-Lfunc_begin0 - .quad Lset22343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22344, Ltmp4308-Lfunc_begin0 - .quad Lset22344 -.set Lset22345, Ltmp4309-Lfunc_begin0 - .quad Lset22345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22346, Ltmp4349-Lfunc_begin0 - .quad Lset22346 -.set Lset22347, Ltmp4350-Lfunc_begin0 - .quad Lset22347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22348, Ltmp4380-Lfunc_begin0 - .quad Lset22348 -.set Lset22349, Ltmp4381-Lfunc_begin0 - .quad Lset22349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22350, Ltmp4412-Lfunc_begin0 - .quad Lset22350 -.set Lset22351, Ltmp4414-Lfunc_begin0 - .quad Lset22351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22352, Ltmp4454-Lfunc_begin0 - .quad Lset22352 -.set Lset22353, Ltmp4455-Lfunc_begin0 - .quad Lset22353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22354, Ltmp4495-Lfunc_begin0 - .quad Lset22354 -.set Lset22355, Ltmp4496-Lfunc_begin0 - .quad Lset22355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22356, Ltmp4579-Lfunc_begin0 - .quad Lset22356 -.set Lset22357, Ltmp4581-Lfunc_begin0 - .quad Lset22357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22358, Ltmp4649-Lfunc_begin0 - .quad Lset22358 -.set Lset22359, Ltmp4651-Lfunc_begin0 - .quad Lset22359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22360, Ltmp4717-Lfunc_begin0 - .quad Lset22360 -.set Lset22361, Ltmp4719-Lfunc_begin0 - .quad Lset22361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22362, Ltmp4783-Lfunc_begin0 - .quad Lset22362 -.set Lset22363, Ltmp4784-Lfunc_begin0 - .quad Lset22363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22364, Ltmp4813-Lfunc_begin0 - .quad Lset22364 -.set Lset22365, Ltmp4814-Lfunc_begin0 - .quad Lset22365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22366, Ltmp4843-Lfunc_begin0 - .quad Lset22366 -.set Lset22367, Ltmp4844-Lfunc_begin0 - .quad Lset22367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22368, Ltmp4902-Lfunc_begin0 - .quad Lset22368 -.set Lset22369, Ltmp4903-Lfunc_begin0 - .quad Lset22369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22370, Ltmp4943-Lfunc_begin0 - .quad Lset22370 -.set Lset22371, Ltmp4944-Lfunc_begin0 - .quad Lset22371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22372, Ltmp5000-Lfunc_begin0 - .quad Lset22372 -.set Lset22373, Ltmp5001-Lfunc_begin0 - .quad Lset22373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22374, Ltmp5040-Lfunc_begin0 - .quad Lset22374 -.set Lset22375, Ltmp5041-Lfunc_begin0 - .quad Lset22375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22376, Ltmp5078-Lfunc_begin0 - .quad Lset22376 -.set Lset22377, Ltmp5079-Lfunc_begin0 - .quad Lset22377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22378, Ltmp5114-Lfunc_begin0 - .quad Lset22378 -.set Lset22379, Ltmp5115-Lfunc_begin0 - .quad Lset22379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22380, Ltmp5146-Lfunc_begin0 - .quad Lset22380 -.set Lset22381, Ltmp5147-Lfunc_begin0 - .quad Lset22381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22382, Ltmp5178-Lfunc_begin0 - .quad Lset22382 -.set Lset22383, Ltmp5179-Lfunc_begin0 - .quad Lset22383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22384, Ltmp5210-Lfunc_begin0 - .quad Lset22384 -.set Lset22385, Ltmp5211-Lfunc_begin0 - .quad Lset22385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22386, Ltmp5228-Lfunc_begin0 - .quad Lset22386 -.set Lset22387, Ltmp5229-Lfunc_begin0 - .quad Lset22387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22388, Ltmp5246-Lfunc_begin0 - .quad Lset22388 -.set Lset22389, Ltmp5247-Lfunc_begin0 - .quad Lset22389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22390, Ltmp5271-Lfunc_begin0 - .quad Lset22390 -.set Lset22391, Ltmp5272-Lfunc_begin0 - .quad Lset22391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22392, Ltmp5296-Lfunc_begin0 - .quad Lset22392 -.set Lset22393, Ltmp5297-Lfunc_begin0 - .quad Lset22393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22394, Ltmp5322-Lfunc_begin0 - .quad Lset22394 -.set Lset22395, Ltmp5323-Lfunc_begin0 - .quad Lset22395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22396, Ltmp5347-Lfunc_begin0 - .quad Lset22396 -.set Lset22397, Ltmp5348-Lfunc_begin0 - .quad Lset22397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22398, Ltmp5372-Lfunc_begin0 - .quad Lset22398 -.set Lset22399, Ltmp5373-Lfunc_begin0 - .quad Lset22399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22400, Ltmp5397-Lfunc_begin0 - .quad Lset22400 -.set Lset22401, Ltmp5398-Lfunc_begin0 - .quad Lset22401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22402, Ltmp5422-Lfunc_begin0 - .quad Lset22402 -.set Lset22403, Ltmp5423-Lfunc_begin0 - .quad Lset22403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22404, Ltmp5447-Lfunc_begin0 - .quad Lset22404 -.set Lset22405, Ltmp5448-Lfunc_begin0 - .quad Lset22405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22406, Ltmp5472-Lfunc_begin0 - .quad Lset22406 -.set Lset22407, Ltmp5473-Lfunc_begin0 - .quad Lset22407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22408, Ltmp5498-Lfunc_begin0 - .quad Lset22408 -.set Lset22409, Ltmp5499-Lfunc_begin0 - .quad Lset22409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22410, Ltmp5523-Lfunc_begin0 - .quad Lset22410 -.set Lset22411, Ltmp5524-Lfunc_begin0 - .quad Lset22411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22412, Ltmp5548-Lfunc_begin0 - .quad Lset22412 -.set Lset22413, Ltmp5549-Lfunc_begin0 - .quad Lset22413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22414, Ltmp5573-Lfunc_begin0 - .quad Lset22414 -.set Lset22415, Ltmp5574-Lfunc_begin0 - .quad Lset22415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22416, Ltmp5598-Lfunc_begin0 - .quad Lset22416 -.set Lset22417, Ltmp5599-Lfunc_begin0 - .quad Lset22417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22418, Ltmp5631-Lfunc_begin0 - .quad Lset22418 -.set Lset22419, Ltmp5632-Lfunc_begin0 - .quad Lset22419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22420, Ltmp5662-Lfunc_begin0 - .quad Lset22420 -.set Lset22421, Ltmp5663-Lfunc_begin0 - .quad Lset22421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22422, Ltmp5687-Lfunc_begin0 - .quad Lset22422 -.set Lset22423, Ltmp5688-Lfunc_begin0 - .quad Lset22423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22424, Ltmp5712-Lfunc_begin0 - .quad Lset22424 -.set Lset22425, Ltmp5713-Lfunc_begin0 - .quad Lset22425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22426, Ltmp5737-Lfunc_begin0 - .quad Lset22426 -.set Lset22427, Ltmp5738-Lfunc_begin0 - .quad Lset22427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22428, Ltmp5767-Lfunc_begin0 - .quad Lset22428 -.set Lset22429, Ltmp5768-Lfunc_begin0 - .quad Lset22429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22430, Ltmp5795-Lfunc_begin0 - .quad Lset22430 -.set Lset22431, Ltmp5796-Lfunc_begin0 - .quad Lset22431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22432, Ltmp5814-Lfunc_begin0 - .quad Lset22432 -.set Lset22433, Ltmp5815-Lfunc_begin0 - .quad Lset22433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22434, Ltmp5833-Lfunc_begin0 - .quad Lset22434 -.set Lset22435, Ltmp5834-Lfunc_begin0 - .quad Lset22435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22436, Ltmp5852-Lfunc_begin0 - .quad Lset22436 -.set Lset22437, Ltmp5853-Lfunc_begin0 - .quad Lset22437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22438, Ltmp5871-Lfunc_begin0 - .quad Lset22438 -.set Lset22439, Ltmp5872-Lfunc_begin0 - .quad Lset22439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22440, Ltmp5890-Lfunc_begin0 - .quad Lset22440 -.set Lset22441, Ltmp5891-Lfunc_begin0 - .quad Lset22441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22442, Ltmp5920-Lfunc_begin0 - .quad Lset22442 -.set Lset22443, Ltmp5921-Lfunc_begin0 - .quad Lset22443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc273: -.set Lset22444, Ltmp1186-Lfunc_begin0 - .quad Lset22444 -.set Lset22445, Ltmp1187-Lfunc_begin0 - .quad Lset22445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22446, Ltmp1215-Lfunc_begin0 - .quad Lset22446 -.set Lset22447, Ltmp1216-Lfunc_begin0 - .quad Lset22447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22448, Ltmp1237-Lfunc_begin0 - .quad Lset22448 -.set Lset22449, Ltmp1238-Lfunc_begin0 - .quad Lset22449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22450, Ltmp1260-Lfunc_begin0 - .quad Lset22450 -.set Lset22451, Ltmp1261-Lfunc_begin0 - .quad Lset22451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22452, Ltmp1281-Lfunc_begin0 - .quad Lset22452 -.set Lset22453, Ltmp1282-Lfunc_begin0 - .quad Lset22453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22454, Ltmp1314-Lfunc_begin0 - .quad Lset22454 -.set Lset22455, Ltmp1315-Lfunc_begin0 - .quad Lset22455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22456, Ltmp1338-Lfunc_begin0 - .quad Lset22456 -.set Lset22457, Ltmp1339-Lfunc_begin0 - .quad Lset22457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22458, Ltmp1368-Lfunc_begin0 - .quad Lset22458 -.set Lset22459, Ltmp1369-Lfunc_begin0 - .quad Lset22459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22460, Ltmp1462-Lfunc_begin0 - .quad Lset22460 -.set Lset22461, Ltmp1464-Lfunc_begin0 - .quad Lset22461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22462, Ltmp1557-Lfunc_begin0 - .quad Lset22462 -.set Lset22463, Ltmp1559-Lfunc_begin0 - .quad Lset22463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22464, Ltmp1713-Lfunc_begin0 - .quad Lset22464 -.set Lset22465, Ltmp1715-Lfunc_begin0 - .quad Lset22465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22466, Ltmp1864-Lfunc_begin0 - .quad Lset22466 -.set Lset22467, Ltmp1866-Lfunc_begin0 - .quad Lset22467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22468, Ltmp2004-Lfunc_begin0 - .quad Lset22468 -.set Lset22469, Ltmp2006-Lfunc_begin0 - .quad Lset22469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22470, Ltmp2074-Lfunc_begin0 - .quad Lset22470 -.set Lset22471, Ltmp2076-Lfunc_begin0 - .quad Lset22471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22472, Ltmp2120-Lfunc_begin0 - .quad Lset22472 -.set Lset22473, Ltmp2121-Lfunc_begin0 - .quad Lset22473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22474, Ltmp2193-Lfunc_begin0 - .quad Lset22474 -.set Lset22475, Ltmp2195-Lfunc_begin0 - .quad Lset22475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22476, Ltmp2253-Lfunc_begin0 - .quad Lset22476 -.set Lset22477, Ltmp2255-Lfunc_begin0 - .quad Lset22477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22478, Ltmp2302-Lfunc_begin0 - .quad Lset22478 -.set Lset22479, Ltmp2304-Lfunc_begin0 - .quad Lset22479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22480, Ltmp2351-Lfunc_begin0 - .quad Lset22480 -.set Lset22481, Ltmp2353-Lfunc_begin0 - .quad Lset22481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22482, Ltmp2400-Lfunc_begin0 - .quad Lset22482 -.set Lset22483, Ltmp2402-Lfunc_begin0 - .quad Lset22483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22484, Ltmp2444-Lfunc_begin0 - .quad Lset22484 -.set Lset22485, Ltmp2446-Lfunc_begin0 - .quad Lset22485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22486, Ltmp2499-Lfunc_begin0 - .quad Lset22486 -.set Lset22487, Ltmp2501-Lfunc_begin0 - .quad Lset22487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22488, Ltmp2554-Lfunc_begin0 - .quad Lset22488 -.set Lset22489, Ltmp2556-Lfunc_begin0 - .quad Lset22489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22490, Ltmp2609-Lfunc_begin0 - .quad Lset22490 -.set Lset22491, Ltmp2611-Lfunc_begin0 - .quad Lset22491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22492, Ltmp2673-Lfunc_begin0 - .quad Lset22492 -.set Lset22493, Ltmp2675-Lfunc_begin0 - .quad Lset22493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22494, Ltmp2738-Lfunc_begin0 - .quad Lset22494 -.set Lset22495, Ltmp2740-Lfunc_begin0 - .quad Lset22495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22496, Ltmp2811-Lfunc_begin0 - .quad Lset22496 -.set Lset22497, Ltmp2813-Lfunc_begin0 - .quad Lset22497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22498, Ltmp2871-Lfunc_begin0 - .quad Lset22498 -.set Lset22499, Ltmp2873-Lfunc_begin0 - .quad Lset22499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22500, Ltmp2922-Lfunc_begin0 - .quad Lset22500 -.set Lset22501, Ltmp2924-Lfunc_begin0 - .quad Lset22501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22502, Ltmp2957-Lfunc_begin0 - .quad Lset22502 -.set Lset22503, Ltmp2958-Lfunc_begin0 - .quad Lset22503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22504, Ltmp2997-Lfunc_begin0 - .quad Lset22504 -.set Lset22505, Ltmp2999-Lfunc_begin0 - .quad Lset22505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22506, Ltmp3024-Lfunc_begin0 - .quad Lset22506 -.set Lset22507, Ltmp3025-Lfunc_begin0 - .quad Lset22507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22508, Ltmp3047-Lfunc_begin0 - .quad Lset22508 -.set Lset22509, Ltmp3048-Lfunc_begin0 - .quad Lset22509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22510, Ltmp3096-Lfunc_begin0 - .quad Lset22510 -.set Lset22511, Ltmp3097-Lfunc_begin0 - .quad Lset22511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22512, Ltmp3120-Lfunc_begin0 - .quad Lset22512 -.set Lset22513, Ltmp3122-Lfunc_begin0 - .quad Lset22513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22514, Ltmp3161-Lfunc_begin0 - .quad Lset22514 -.set Lset22515, Ltmp3163-Lfunc_begin0 - .quad Lset22515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22516, Ltmp3227-Lfunc_begin0 - .quad Lset22516 -.set Lset22517, Ltmp3228-Lfunc_begin0 - .quad Lset22517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22518, Ltmp3292-Lfunc_begin0 - .quad Lset22518 -.set Lset22519, Ltmp3293-Lfunc_begin0 - .quad Lset22519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22520, Ltmp3329-Lfunc_begin0 - .quad Lset22520 -.set Lset22521, Ltmp3330-Lfunc_begin0 - .quad Lset22521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22522, Ltmp3375-Lfunc_begin0 - .quad Lset22522 -.set Lset22523, Ltmp3376-Lfunc_begin0 - .quad Lset22523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22524, Ltmp3407-Lfunc_begin0 - .quad Lset22524 -.set Lset22525, Ltmp3408-Lfunc_begin0 - .quad Lset22525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22526, Ltmp3435-Lfunc_begin0 - .quad Lset22526 -.set Lset22527, Ltmp3436-Lfunc_begin0 - .quad Lset22527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22528, Ltmp3537-Lfunc_begin0 - .quad Lset22528 -.set Lset22529, Ltmp3538-Lfunc_begin0 - .quad Lset22529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22530, Ltmp3638-Lfunc_begin0 - .quad Lset22530 -.set Lset22531, Ltmp3640-Lfunc_begin0 - .quad Lset22531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22532, Ltmp3685-Lfunc_begin0 - .quad Lset22532 -.set Lset22533, Ltmp3686-Lfunc_begin0 - .quad Lset22533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22534, Ltmp3807-Lfunc_begin0 - .quad Lset22534 -.set Lset22535, Ltmp3809-Lfunc_begin0 - .quad Lset22535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22536, Ltmp3864-Lfunc_begin0 - .quad Lset22536 -.set Lset22537, Ltmp3865-Lfunc_begin0 - .quad Lset22537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22538, Ltmp3933-Lfunc_begin0 - .quad Lset22538 -.set Lset22539, Ltmp3934-Lfunc_begin0 - .quad Lset22539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22540, Ltmp3959-Lfunc_begin0 - .quad Lset22540 -.set Lset22541, Ltmp3960-Lfunc_begin0 - .quad Lset22541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22542, Ltmp3985-Lfunc_begin0 - .quad Lset22542 -.set Lset22543, Ltmp3986-Lfunc_begin0 - .quad Lset22543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22544, Ltmp4011-Lfunc_begin0 - .quad Lset22544 -.set Lset22545, Ltmp4012-Lfunc_begin0 - .quad Lset22545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22546, Ltmp4046-Lfunc_begin0 - .quad Lset22546 -.set Lset22547, Ltmp4047-Lfunc_begin0 - .quad Lset22547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22548, Ltmp4084-Lfunc_begin0 - .quad Lset22548 -.set Lset22549, Ltmp4085-Lfunc_begin0 - .quad Lset22549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22550, Ltmp4106-Lfunc_begin0 - .quad Lset22550 -.set Lset22551, Ltmp4107-Lfunc_begin0 - .quad Lset22551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22552, Ltmp4146-Lfunc_begin0 - .quad Lset22552 -.set Lset22553, Ltmp4147-Lfunc_begin0 - .quad Lset22553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22554, Ltmp4187-Lfunc_begin0 - .quad Lset22554 -.set Lset22555, Ltmp4188-Lfunc_begin0 - .quad Lset22555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22556, Ltmp4227-Lfunc_begin0 - .quad Lset22556 -.set Lset22557, Ltmp4228-Lfunc_begin0 - .quad Lset22557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22558, Ltmp4268-Lfunc_begin0 - .quad Lset22558 -.set Lset22559, Ltmp4269-Lfunc_begin0 - .quad Lset22559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22560, Ltmp4308-Lfunc_begin0 - .quad Lset22560 -.set Lset22561, Ltmp4309-Lfunc_begin0 - .quad Lset22561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22562, Ltmp4349-Lfunc_begin0 - .quad Lset22562 -.set Lset22563, Ltmp4350-Lfunc_begin0 - .quad Lset22563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22564, Ltmp4380-Lfunc_begin0 - .quad Lset22564 -.set Lset22565, Ltmp4381-Lfunc_begin0 - .quad Lset22565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22566, Ltmp4412-Lfunc_begin0 - .quad Lset22566 -.set Lset22567, Ltmp4414-Lfunc_begin0 - .quad Lset22567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22568, Ltmp4454-Lfunc_begin0 - .quad Lset22568 -.set Lset22569, Ltmp4455-Lfunc_begin0 - .quad Lset22569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22570, Ltmp4495-Lfunc_begin0 - .quad Lset22570 -.set Lset22571, Ltmp4496-Lfunc_begin0 - .quad Lset22571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22572, Ltmp4579-Lfunc_begin0 - .quad Lset22572 -.set Lset22573, Ltmp4581-Lfunc_begin0 - .quad Lset22573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22574, Ltmp4649-Lfunc_begin0 - .quad Lset22574 -.set Lset22575, Ltmp4651-Lfunc_begin0 - .quad Lset22575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22576, Ltmp4717-Lfunc_begin0 - .quad Lset22576 -.set Lset22577, Ltmp4719-Lfunc_begin0 - .quad Lset22577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22578, Ltmp4783-Lfunc_begin0 - .quad Lset22578 -.set Lset22579, Ltmp4784-Lfunc_begin0 - .quad Lset22579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22580, Ltmp4813-Lfunc_begin0 - .quad Lset22580 -.set Lset22581, Ltmp4814-Lfunc_begin0 - .quad Lset22581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22582, Ltmp4843-Lfunc_begin0 - .quad Lset22582 -.set Lset22583, Ltmp4844-Lfunc_begin0 - .quad Lset22583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22584, Ltmp4902-Lfunc_begin0 - .quad Lset22584 -.set Lset22585, Ltmp4903-Lfunc_begin0 - .quad Lset22585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22586, Ltmp4943-Lfunc_begin0 - .quad Lset22586 -.set Lset22587, Ltmp4944-Lfunc_begin0 - .quad Lset22587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22588, Ltmp5000-Lfunc_begin0 - .quad Lset22588 -.set Lset22589, Ltmp5001-Lfunc_begin0 - .quad Lset22589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22590, Ltmp5040-Lfunc_begin0 - .quad Lset22590 -.set Lset22591, Ltmp5041-Lfunc_begin0 - .quad Lset22591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22592, Ltmp5078-Lfunc_begin0 - .quad Lset22592 -.set Lset22593, Ltmp5079-Lfunc_begin0 - .quad Lset22593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22594, Ltmp5114-Lfunc_begin0 - .quad Lset22594 -.set Lset22595, Ltmp5115-Lfunc_begin0 - .quad Lset22595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22596, Ltmp5146-Lfunc_begin0 - .quad Lset22596 -.set Lset22597, Ltmp5147-Lfunc_begin0 - .quad Lset22597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22598, Ltmp5178-Lfunc_begin0 - .quad Lset22598 -.set Lset22599, Ltmp5179-Lfunc_begin0 - .quad Lset22599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22600, Ltmp5210-Lfunc_begin0 - .quad Lset22600 -.set Lset22601, Ltmp5211-Lfunc_begin0 - .quad Lset22601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22602, Ltmp5228-Lfunc_begin0 - .quad Lset22602 -.set Lset22603, Ltmp5229-Lfunc_begin0 - .quad Lset22603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22604, Ltmp5246-Lfunc_begin0 - .quad Lset22604 -.set Lset22605, Ltmp5247-Lfunc_begin0 - .quad Lset22605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22606, Ltmp5271-Lfunc_begin0 - .quad Lset22606 -.set Lset22607, Ltmp5272-Lfunc_begin0 - .quad Lset22607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22608, Ltmp5296-Lfunc_begin0 - .quad Lset22608 -.set Lset22609, Ltmp5297-Lfunc_begin0 - .quad Lset22609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22610, Ltmp5322-Lfunc_begin0 - .quad Lset22610 -.set Lset22611, Ltmp5323-Lfunc_begin0 - .quad Lset22611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22612, Ltmp5347-Lfunc_begin0 - .quad Lset22612 -.set Lset22613, Ltmp5348-Lfunc_begin0 - .quad Lset22613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22614, Ltmp5372-Lfunc_begin0 - .quad Lset22614 -.set Lset22615, Ltmp5373-Lfunc_begin0 - .quad Lset22615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22616, Ltmp5397-Lfunc_begin0 - .quad Lset22616 -.set Lset22617, Ltmp5398-Lfunc_begin0 - .quad Lset22617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22618, Ltmp5422-Lfunc_begin0 - .quad Lset22618 -.set Lset22619, Ltmp5423-Lfunc_begin0 - .quad Lset22619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22620, Ltmp5447-Lfunc_begin0 - .quad Lset22620 -.set Lset22621, Ltmp5448-Lfunc_begin0 - .quad Lset22621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22622, Ltmp5472-Lfunc_begin0 - .quad Lset22622 -.set Lset22623, Ltmp5473-Lfunc_begin0 - .quad Lset22623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22624, Ltmp5498-Lfunc_begin0 - .quad Lset22624 -.set Lset22625, Ltmp5499-Lfunc_begin0 - .quad Lset22625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22626, Ltmp5523-Lfunc_begin0 - .quad Lset22626 -.set Lset22627, Ltmp5524-Lfunc_begin0 - .quad Lset22627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22628, Ltmp5548-Lfunc_begin0 - .quad Lset22628 -.set Lset22629, Ltmp5549-Lfunc_begin0 - .quad Lset22629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22630, Ltmp5573-Lfunc_begin0 - .quad Lset22630 -.set Lset22631, Ltmp5574-Lfunc_begin0 - .quad Lset22631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22632, Ltmp5598-Lfunc_begin0 - .quad Lset22632 -.set Lset22633, Ltmp5599-Lfunc_begin0 - .quad Lset22633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22634, Ltmp5631-Lfunc_begin0 - .quad Lset22634 -.set Lset22635, Ltmp5632-Lfunc_begin0 - .quad Lset22635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22636, Ltmp5662-Lfunc_begin0 - .quad Lset22636 -.set Lset22637, Ltmp5663-Lfunc_begin0 - .quad Lset22637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22638, Ltmp5687-Lfunc_begin0 - .quad Lset22638 -.set Lset22639, Ltmp5688-Lfunc_begin0 - .quad Lset22639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22640, Ltmp5712-Lfunc_begin0 - .quad Lset22640 -.set Lset22641, Ltmp5713-Lfunc_begin0 - .quad Lset22641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22642, Ltmp5737-Lfunc_begin0 - .quad Lset22642 -.set Lset22643, Ltmp5738-Lfunc_begin0 - .quad Lset22643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22644, Ltmp5767-Lfunc_begin0 - .quad Lset22644 -.set Lset22645, Ltmp5768-Lfunc_begin0 - .quad Lset22645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22646, Ltmp5795-Lfunc_begin0 - .quad Lset22646 -.set Lset22647, Ltmp5796-Lfunc_begin0 - .quad Lset22647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22648, Ltmp5814-Lfunc_begin0 - .quad Lset22648 -.set Lset22649, Ltmp5815-Lfunc_begin0 - .quad Lset22649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22650, Ltmp5833-Lfunc_begin0 - .quad Lset22650 -.set Lset22651, Ltmp5834-Lfunc_begin0 - .quad Lset22651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22652, Ltmp5852-Lfunc_begin0 - .quad Lset22652 -.set Lset22653, Ltmp5853-Lfunc_begin0 - .quad Lset22653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22654, Ltmp5871-Lfunc_begin0 - .quad Lset22654 -.set Lset22655, Ltmp5872-Lfunc_begin0 - .quad Lset22655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22656, Ltmp5890-Lfunc_begin0 - .quad Lset22656 -.set Lset22657, Ltmp5891-Lfunc_begin0 - .quad Lset22657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22658, Ltmp5920-Lfunc_begin0 - .quad Lset22658 -.set Lset22659, Ltmp5921-Lfunc_begin0 - .quad Lset22659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc274: -.set Lset22660, Ltmp1186-Lfunc_begin0 - .quad Lset22660 -.set Lset22661, Ltmp1187-Lfunc_begin0 - .quad Lset22661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22662, Ltmp1215-Lfunc_begin0 - .quad Lset22662 -.set Lset22663, Ltmp1216-Lfunc_begin0 - .quad Lset22663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22664, Ltmp1237-Lfunc_begin0 - .quad Lset22664 -.set Lset22665, Ltmp1238-Lfunc_begin0 - .quad Lset22665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22666, Ltmp1260-Lfunc_begin0 - .quad Lset22666 -.set Lset22667, Ltmp1261-Lfunc_begin0 - .quad Lset22667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22668, Ltmp1281-Lfunc_begin0 - .quad Lset22668 -.set Lset22669, Ltmp1282-Lfunc_begin0 - .quad Lset22669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22670, Ltmp1314-Lfunc_begin0 - .quad Lset22670 -.set Lset22671, Ltmp1315-Lfunc_begin0 - .quad Lset22671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22672, Ltmp1338-Lfunc_begin0 - .quad Lset22672 -.set Lset22673, Ltmp1339-Lfunc_begin0 - .quad Lset22673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22674, Ltmp1368-Lfunc_begin0 - .quad Lset22674 -.set Lset22675, Ltmp1369-Lfunc_begin0 - .quad Lset22675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22676, Ltmp1462-Lfunc_begin0 - .quad Lset22676 -.set Lset22677, Ltmp1464-Lfunc_begin0 - .quad Lset22677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22678, Ltmp1557-Lfunc_begin0 - .quad Lset22678 -.set Lset22679, Ltmp1559-Lfunc_begin0 - .quad Lset22679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22680, Ltmp1713-Lfunc_begin0 - .quad Lset22680 -.set Lset22681, Ltmp1715-Lfunc_begin0 - .quad Lset22681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22682, Ltmp1864-Lfunc_begin0 - .quad Lset22682 -.set Lset22683, Ltmp1866-Lfunc_begin0 - .quad Lset22683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22684, Ltmp2004-Lfunc_begin0 - .quad Lset22684 -.set Lset22685, Ltmp2006-Lfunc_begin0 - .quad Lset22685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22686, Ltmp2074-Lfunc_begin0 - .quad Lset22686 -.set Lset22687, Ltmp2076-Lfunc_begin0 - .quad Lset22687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22688, Ltmp2120-Lfunc_begin0 - .quad Lset22688 -.set Lset22689, Ltmp2121-Lfunc_begin0 - .quad Lset22689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22690, Ltmp2193-Lfunc_begin0 - .quad Lset22690 -.set Lset22691, Ltmp2195-Lfunc_begin0 - .quad Lset22691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22692, Ltmp2253-Lfunc_begin0 - .quad Lset22692 -.set Lset22693, Ltmp2255-Lfunc_begin0 - .quad Lset22693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22694, Ltmp2302-Lfunc_begin0 - .quad Lset22694 -.set Lset22695, Ltmp2304-Lfunc_begin0 - .quad Lset22695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22696, Ltmp2351-Lfunc_begin0 - .quad Lset22696 -.set Lset22697, Ltmp2353-Lfunc_begin0 - .quad Lset22697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22698, Ltmp2400-Lfunc_begin0 - .quad Lset22698 -.set Lset22699, Ltmp2402-Lfunc_begin0 - .quad Lset22699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22700, Ltmp2444-Lfunc_begin0 - .quad Lset22700 -.set Lset22701, Ltmp2446-Lfunc_begin0 - .quad Lset22701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22702, Ltmp2499-Lfunc_begin0 - .quad Lset22702 -.set Lset22703, Ltmp2501-Lfunc_begin0 - .quad Lset22703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22704, Ltmp2554-Lfunc_begin0 - .quad Lset22704 -.set Lset22705, Ltmp2556-Lfunc_begin0 - .quad Lset22705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22706, Ltmp2609-Lfunc_begin0 - .quad Lset22706 -.set Lset22707, Ltmp2611-Lfunc_begin0 - .quad Lset22707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22708, Ltmp2673-Lfunc_begin0 - .quad Lset22708 -.set Lset22709, Ltmp2675-Lfunc_begin0 - .quad Lset22709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22710, Ltmp2738-Lfunc_begin0 - .quad Lset22710 -.set Lset22711, Ltmp2740-Lfunc_begin0 - .quad Lset22711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22712, Ltmp2811-Lfunc_begin0 - .quad Lset22712 -.set Lset22713, Ltmp2813-Lfunc_begin0 - .quad Lset22713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22714, Ltmp2871-Lfunc_begin0 - .quad Lset22714 -.set Lset22715, Ltmp2873-Lfunc_begin0 - .quad Lset22715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22716, Ltmp2922-Lfunc_begin0 - .quad Lset22716 -.set Lset22717, Ltmp2924-Lfunc_begin0 - .quad Lset22717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22718, Ltmp2957-Lfunc_begin0 - .quad Lset22718 -.set Lset22719, Ltmp2958-Lfunc_begin0 - .quad Lset22719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22720, Ltmp2997-Lfunc_begin0 - .quad Lset22720 -.set Lset22721, Ltmp2999-Lfunc_begin0 - .quad Lset22721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22722, Ltmp3024-Lfunc_begin0 - .quad Lset22722 -.set Lset22723, Ltmp3025-Lfunc_begin0 - .quad Lset22723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22724, Ltmp3047-Lfunc_begin0 - .quad Lset22724 -.set Lset22725, Ltmp3048-Lfunc_begin0 - .quad Lset22725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22726, Ltmp3096-Lfunc_begin0 - .quad Lset22726 -.set Lset22727, Ltmp3097-Lfunc_begin0 - .quad Lset22727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22728, Ltmp3120-Lfunc_begin0 - .quad Lset22728 -.set Lset22729, Ltmp3122-Lfunc_begin0 - .quad Lset22729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22730, Ltmp3161-Lfunc_begin0 - .quad Lset22730 -.set Lset22731, Ltmp3163-Lfunc_begin0 - .quad Lset22731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22732, Ltmp3227-Lfunc_begin0 - .quad Lset22732 -.set Lset22733, Ltmp3228-Lfunc_begin0 - .quad Lset22733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22734, Ltmp3292-Lfunc_begin0 - .quad Lset22734 -.set Lset22735, Ltmp3293-Lfunc_begin0 - .quad Lset22735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22736, Ltmp3329-Lfunc_begin0 - .quad Lset22736 -.set Lset22737, Ltmp3330-Lfunc_begin0 - .quad Lset22737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22738, Ltmp3375-Lfunc_begin0 - .quad Lset22738 -.set Lset22739, Ltmp3376-Lfunc_begin0 - .quad Lset22739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22740, Ltmp3407-Lfunc_begin0 - .quad Lset22740 -.set Lset22741, Ltmp3408-Lfunc_begin0 - .quad Lset22741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22742, Ltmp3435-Lfunc_begin0 - .quad Lset22742 -.set Lset22743, Ltmp3436-Lfunc_begin0 - .quad Lset22743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22744, Ltmp3537-Lfunc_begin0 - .quad Lset22744 -.set Lset22745, Ltmp3538-Lfunc_begin0 - .quad Lset22745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22746, Ltmp3638-Lfunc_begin0 - .quad Lset22746 -.set Lset22747, Ltmp3640-Lfunc_begin0 - .quad Lset22747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22748, Ltmp3685-Lfunc_begin0 - .quad Lset22748 -.set Lset22749, Ltmp3686-Lfunc_begin0 - .quad Lset22749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22750, Ltmp3807-Lfunc_begin0 - .quad Lset22750 -.set Lset22751, Ltmp3809-Lfunc_begin0 - .quad Lset22751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22752, Ltmp3864-Lfunc_begin0 - .quad Lset22752 -.set Lset22753, Ltmp3865-Lfunc_begin0 - .quad Lset22753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22754, Ltmp3933-Lfunc_begin0 - .quad Lset22754 -.set Lset22755, Ltmp3934-Lfunc_begin0 - .quad Lset22755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22756, Ltmp3959-Lfunc_begin0 - .quad Lset22756 -.set Lset22757, Ltmp3960-Lfunc_begin0 - .quad Lset22757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22758, Ltmp3985-Lfunc_begin0 - .quad Lset22758 -.set Lset22759, Ltmp3986-Lfunc_begin0 - .quad Lset22759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22760, Ltmp4011-Lfunc_begin0 - .quad Lset22760 -.set Lset22761, Ltmp4012-Lfunc_begin0 - .quad Lset22761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22762, Ltmp4046-Lfunc_begin0 - .quad Lset22762 -.set Lset22763, Ltmp4047-Lfunc_begin0 - .quad Lset22763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22764, Ltmp4084-Lfunc_begin0 - .quad Lset22764 -.set Lset22765, Ltmp4085-Lfunc_begin0 - .quad Lset22765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22766, Ltmp4106-Lfunc_begin0 - .quad Lset22766 -.set Lset22767, Ltmp4107-Lfunc_begin0 - .quad Lset22767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22768, Ltmp4146-Lfunc_begin0 - .quad Lset22768 -.set Lset22769, Ltmp4147-Lfunc_begin0 - .quad Lset22769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22770, Ltmp4187-Lfunc_begin0 - .quad Lset22770 -.set Lset22771, Ltmp4188-Lfunc_begin0 - .quad Lset22771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22772, Ltmp4227-Lfunc_begin0 - .quad Lset22772 -.set Lset22773, Ltmp4228-Lfunc_begin0 - .quad Lset22773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22774, Ltmp4268-Lfunc_begin0 - .quad Lset22774 -.set Lset22775, Ltmp4269-Lfunc_begin0 - .quad Lset22775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22776, Ltmp4308-Lfunc_begin0 - .quad Lset22776 -.set Lset22777, Ltmp4309-Lfunc_begin0 - .quad Lset22777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22778, Ltmp4349-Lfunc_begin0 - .quad Lset22778 -.set Lset22779, Ltmp4350-Lfunc_begin0 - .quad Lset22779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22780, Ltmp4380-Lfunc_begin0 - .quad Lset22780 -.set Lset22781, Ltmp4381-Lfunc_begin0 - .quad Lset22781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22782, Ltmp4412-Lfunc_begin0 - .quad Lset22782 -.set Lset22783, Ltmp4414-Lfunc_begin0 - .quad Lset22783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22784, Ltmp4454-Lfunc_begin0 - .quad Lset22784 -.set Lset22785, Ltmp4455-Lfunc_begin0 - .quad Lset22785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22786, Ltmp4495-Lfunc_begin0 - .quad Lset22786 -.set Lset22787, Ltmp4496-Lfunc_begin0 - .quad Lset22787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22788, Ltmp4579-Lfunc_begin0 - .quad Lset22788 -.set Lset22789, Ltmp4581-Lfunc_begin0 - .quad Lset22789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22790, Ltmp4649-Lfunc_begin0 - .quad Lset22790 -.set Lset22791, Ltmp4651-Lfunc_begin0 - .quad Lset22791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22792, Ltmp4717-Lfunc_begin0 - .quad Lset22792 -.set Lset22793, Ltmp4719-Lfunc_begin0 - .quad Lset22793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22794, Ltmp4783-Lfunc_begin0 - .quad Lset22794 -.set Lset22795, Ltmp4784-Lfunc_begin0 - .quad Lset22795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22796, Ltmp4813-Lfunc_begin0 - .quad Lset22796 -.set Lset22797, Ltmp4814-Lfunc_begin0 - .quad Lset22797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22798, Ltmp4843-Lfunc_begin0 - .quad Lset22798 -.set Lset22799, Ltmp4844-Lfunc_begin0 - .quad Lset22799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22800, Ltmp4902-Lfunc_begin0 - .quad Lset22800 -.set Lset22801, Ltmp4903-Lfunc_begin0 - .quad Lset22801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22802, Ltmp4943-Lfunc_begin0 - .quad Lset22802 -.set Lset22803, Ltmp4944-Lfunc_begin0 - .quad Lset22803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22804, Ltmp5000-Lfunc_begin0 - .quad Lset22804 -.set Lset22805, Ltmp5001-Lfunc_begin0 - .quad Lset22805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22806, Ltmp5040-Lfunc_begin0 - .quad Lset22806 -.set Lset22807, Ltmp5041-Lfunc_begin0 - .quad Lset22807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22808, Ltmp5078-Lfunc_begin0 - .quad Lset22808 -.set Lset22809, Ltmp5079-Lfunc_begin0 - .quad Lset22809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22810, Ltmp5114-Lfunc_begin0 - .quad Lset22810 -.set Lset22811, Ltmp5115-Lfunc_begin0 - .quad Lset22811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22812, Ltmp5146-Lfunc_begin0 - .quad Lset22812 -.set Lset22813, Ltmp5147-Lfunc_begin0 - .quad Lset22813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22814, Ltmp5178-Lfunc_begin0 - .quad Lset22814 -.set Lset22815, Ltmp5179-Lfunc_begin0 - .quad Lset22815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22816, Ltmp5210-Lfunc_begin0 - .quad Lset22816 -.set Lset22817, Ltmp5211-Lfunc_begin0 - .quad Lset22817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22818, Ltmp5228-Lfunc_begin0 - .quad Lset22818 -.set Lset22819, Ltmp5229-Lfunc_begin0 - .quad Lset22819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22820, Ltmp5246-Lfunc_begin0 - .quad Lset22820 -.set Lset22821, Ltmp5247-Lfunc_begin0 - .quad Lset22821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22822, Ltmp5271-Lfunc_begin0 - .quad Lset22822 -.set Lset22823, Ltmp5272-Lfunc_begin0 - .quad Lset22823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22824, Ltmp5296-Lfunc_begin0 - .quad Lset22824 -.set Lset22825, Ltmp5297-Lfunc_begin0 - .quad Lset22825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22826, Ltmp5322-Lfunc_begin0 - .quad Lset22826 -.set Lset22827, Ltmp5323-Lfunc_begin0 - .quad Lset22827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22828, Ltmp5347-Lfunc_begin0 - .quad Lset22828 -.set Lset22829, Ltmp5348-Lfunc_begin0 - .quad Lset22829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22830, Ltmp5372-Lfunc_begin0 - .quad Lset22830 -.set Lset22831, Ltmp5373-Lfunc_begin0 - .quad Lset22831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22832, Ltmp5397-Lfunc_begin0 - .quad Lset22832 -.set Lset22833, Ltmp5398-Lfunc_begin0 - .quad Lset22833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22834, Ltmp5422-Lfunc_begin0 - .quad Lset22834 -.set Lset22835, Ltmp5423-Lfunc_begin0 - .quad Lset22835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22836, Ltmp5447-Lfunc_begin0 - .quad Lset22836 -.set Lset22837, Ltmp5448-Lfunc_begin0 - .quad Lset22837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22838, Ltmp5472-Lfunc_begin0 - .quad Lset22838 -.set Lset22839, Ltmp5473-Lfunc_begin0 - .quad Lset22839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22840, Ltmp5498-Lfunc_begin0 - .quad Lset22840 -.set Lset22841, Ltmp5499-Lfunc_begin0 - .quad Lset22841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22842, Ltmp5523-Lfunc_begin0 - .quad Lset22842 -.set Lset22843, Ltmp5524-Lfunc_begin0 - .quad Lset22843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22844, Ltmp5548-Lfunc_begin0 - .quad Lset22844 -.set Lset22845, Ltmp5549-Lfunc_begin0 - .quad Lset22845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22846, Ltmp5573-Lfunc_begin0 - .quad Lset22846 -.set Lset22847, Ltmp5574-Lfunc_begin0 - .quad Lset22847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22848, Ltmp5598-Lfunc_begin0 - .quad Lset22848 -.set Lset22849, Ltmp5599-Lfunc_begin0 - .quad Lset22849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22850, Ltmp5631-Lfunc_begin0 - .quad Lset22850 -.set Lset22851, Ltmp5632-Lfunc_begin0 - .quad Lset22851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22852, Ltmp5662-Lfunc_begin0 - .quad Lset22852 -.set Lset22853, Ltmp5663-Lfunc_begin0 - .quad Lset22853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22854, Ltmp5687-Lfunc_begin0 - .quad Lset22854 -.set Lset22855, Ltmp5688-Lfunc_begin0 - .quad Lset22855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22856, Ltmp5712-Lfunc_begin0 - .quad Lset22856 -.set Lset22857, Ltmp5713-Lfunc_begin0 - .quad Lset22857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22858, Ltmp5737-Lfunc_begin0 - .quad Lset22858 -.set Lset22859, Ltmp5738-Lfunc_begin0 - .quad Lset22859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22860, Ltmp5767-Lfunc_begin0 - .quad Lset22860 -.set Lset22861, Ltmp5768-Lfunc_begin0 - .quad Lset22861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22862, Ltmp5795-Lfunc_begin0 - .quad Lset22862 -.set Lset22863, Ltmp5796-Lfunc_begin0 - .quad Lset22863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22864, Ltmp5814-Lfunc_begin0 - .quad Lset22864 -.set Lset22865, Ltmp5815-Lfunc_begin0 - .quad Lset22865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22866, Ltmp5833-Lfunc_begin0 - .quad Lset22866 -.set Lset22867, Ltmp5834-Lfunc_begin0 - .quad Lset22867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22868, Ltmp5852-Lfunc_begin0 - .quad Lset22868 -.set Lset22869, Ltmp5853-Lfunc_begin0 - .quad Lset22869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22870, Ltmp5871-Lfunc_begin0 - .quad Lset22870 -.set Lset22871, Ltmp5872-Lfunc_begin0 - .quad Lset22871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22872, Ltmp5890-Lfunc_begin0 - .quad Lset22872 -.set Lset22873, Ltmp5891-Lfunc_begin0 - .quad Lset22873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22874, Ltmp5920-Lfunc_begin0 - .quad Lset22874 -.set Lset22875, Ltmp5921-Lfunc_begin0 - .quad Lset22875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc275: -.set Lset22876, Ltmp1186-Lfunc_begin0 - .quad Lset22876 -.set Lset22877, Ltmp1187-Lfunc_begin0 - .quad Lset22877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22878, Ltmp1215-Lfunc_begin0 - .quad Lset22878 -.set Lset22879, Ltmp1216-Lfunc_begin0 - .quad Lset22879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22880, Ltmp1237-Lfunc_begin0 - .quad Lset22880 -.set Lset22881, Ltmp1238-Lfunc_begin0 - .quad Lset22881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22882, Ltmp1260-Lfunc_begin0 - .quad Lset22882 -.set Lset22883, Ltmp1261-Lfunc_begin0 - .quad Lset22883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22884, Ltmp1281-Lfunc_begin0 - .quad Lset22884 -.set Lset22885, Ltmp1282-Lfunc_begin0 - .quad Lset22885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22886, Ltmp1314-Lfunc_begin0 - .quad Lset22886 -.set Lset22887, Ltmp1315-Lfunc_begin0 - .quad Lset22887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22888, Ltmp1338-Lfunc_begin0 - .quad Lset22888 -.set Lset22889, Ltmp1339-Lfunc_begin0 - .quad Lset22889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22890, Ltmp1368-Lfunc_begin0 - .quad Lset22890 -.set Lset22891, Ltmp1369-Lfunc_begin0 - .quad Lset22891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22892, Ltmp1462-Lfunc_begin0 - .quad Lset22892 -.set Lset22893, Ltmp1464-Lfunc_begin0 - .quad Lset22893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22894, Ltmp1557-Lfunc_begin0 - .quad Lset22894 -.set Lset22895, Ltmp1559-Lfunc_begin0 - .quad Lset22895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22896, Ltmp1713-Lfunc_begin0 - .quad Lset22896 -.set Lset22897, Ltmp1715-Lfunc_begin0 - .quad Lset22897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22898, Ltmp1864-Lfunc_begin0 - .quad Lset22898 -.set Lset22899, Ltmp1866-Lfunc_begin0 - .quad Lset22899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22900, Ltmp2004-Lfunc_begin0 - .quad Lset22900 -.set Lset22901, Ltmp2006-Lfunc_begin0 - .quad Lset22901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22902, Ltmp2074-Lfunc_begin0 - .quad Lset22902 -.set Lset22903, Ltmp2076-Lfunc_begin0 - .quad Lset22903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22904, Ltmp2120-Lfunc_begin0 - .quad Lset22904 -.set Lset22905, Ltmp2121-Lfunc_begin0 - .quad Lset22905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22906, Ltmp2193-Lfunc_begin0 - .quad Lset22906 -.set Lset22907, Ltmp2195-Lfunc_begin0 - .quad Lset22907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22908, Ltmp2253-Lfunc_begin0 - .quad Lset22908 -.set Lset22909, Ltmp2255-Lfunc_begin0 - .quad Lset22909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22910, Ltmp2302-Lfunc_begin0 - .quad Lset22910 -.set Lset22911, Ltmp2304-Lfunc_begin0 - .quad Lset22911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22912, Ltmp2351-Lfunc_begin0 - .quad Lset22912 -.set Lset22913, Ltmp2353-Lfunc_begin0 - .quad Lset22913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22914, Ltmp2400-Lfunc_begin0 - .quad Lset22914 -.set Lset22915, Ltmp2402-Lfunc_begin0 - .quad Lset22915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22916, Ltmp2444-Lfunc_begin0 - .quad Lset22916 -.set Lset22917, Ltmp2446-Lfunc_begin0 - .quad Lset22917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22918, Ltmp2499-Lfunc_begin0 - .quad Lset22918 -.set Lset22919, Ltmp2501-Lfunc_begin0 - .quad Lset22919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22920, Ltmp2554-Lfunc_begin0 - .quad Lset22920 -.set Lset22921, Ltmp2556-Lfunc_begin0 - .quad Lset22921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22922, Ltmp2609-Lfunc_begin0 - .quad Lset22922 -.set Lset22923, Ltmp2611-Lfunc_begin0 - .quad Lset22923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22924, Ltmp2673-Lfunc_begin0 - .quad Lset22924 -.set Lset22925, Ltmp2675-Lfunc_begin0 - .quad Lset22925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22926, Ltmp2738-Lfunc_begin0 - .quad Lset22926 -.set Lset22927, Ltmp2740-Lfunc_begin0 - .quad Lset22927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22928, Ltmp2811-Lfunc_begin0 - .quad Lset22928 -.set Lset22929, Ltmp2813-Lfunc_begin0 - .quad Lset22929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22930, Ltmp2871-Lfunc_begin0 - .quad Lset22930 -.set Lset22931, Ltmp2873-Lfunc_begin0 - .quad Lset22931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22932, Ltmp2922-Lfunc_begin0 - .quad Lset22932 -.set Lset22933, Ltmp2924-Lfunc_begin0 - .quad Lset22933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22934, Ltmp2957-Lfunc_begin0 - .quad Lset22934 -.set Lset22935, Ltmp2958-Lfunc_begin0 - .quad Lset22935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22936, Ltmp2997-Lfunc_begin0 - .quad Lset22936 -.set Lset22937, Ltmp2999-Lfunc_begin0 - .quad Lset22937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22938, Ltmp3024-Lfunc_begin0 - .quad Lset22938 -.set Lset22939, Ltmp3025-Lfunc_begin0 - .quad Lset22939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22940, Ltmp3047-Lfunc_begin0 - .quad Lset22940 -.set Lset22941, Ltmp3048-Lfunc_begin0 - .quad Lset22941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22942, Ltmp3096-Lfunc_begin0 - .quad Lset22942 -.set Lset22943, Ltmp3097-Lfunc_begin0 - .quad Lset22943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22944, Ltmp3120-Lfunc_begin0 - .quad Lset22944 -.set Lset22945, Ltmp3122-Lfunc_begin0 - .quad Lset22945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22946, Ltmp3161-Lfunc_begin0 - .quad Lset22946 -.set Lset22947, Ltmp3163-Lfunc_begin0 - .quad Lset22947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22948, Ltmp3227-Lfunc_begin0 - .quad Lset22948 -.set Lset22949, Ltmp3228-Lfunc_begin0 - .quad Lset22949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22950, Ltmp3292-Lfunc_begin0 - .quad Lset22950 -.set Lset22951, Ltmp3293-Lfunc_begin0 - .quad Lset22951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22952, Ltmp3329-Lfunc_begin0 - .quad Lset22952 -.set Lset22953, Ltmp3330-Lfunc_begin0 - .quad Lset22953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22954, Ltmp3375-Lfunc_begin0 - .quad Lset22954 -.set Lset22955, Ltmp3376-Lfunc_begin0 - .quad Lset22955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22956, Ltmp3407-Lfunc_begin0 - .quad Lset22956 -.set Lset22957, Ltmp3408-Lfunc_begin0 - .quad Lset22957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22958, Ltmp3435-Lfunc_begin0 - .quad Lset22958 -.set Lset22959, Ltmp3436-Lfunc_begin0 - .quad Lset22959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22960, Ltmp3537-Lfunc_begin0 - .quad Lset22960 -.set Lset22961, Ltmp3538-Lfunc_begin0 - .quad Lset22961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22962, Ltmp3638-Lfunc_begin0 - .quad Lset22962 -.set Lset22963, Ltmp3640-Lfunc_begin0 - .quad Lset22963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22964, Ltmp3685-Lfunc_begin0 - .quad Lset22964 -.set Lset22965, Ltmp3686-Lfunc_begin0 - .quad Lset22965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22966, Ltmp3807-Lfunc_begin0 - .quad Lset22966 -.set Lset22967, Ltmp3809-Lfunc_begin0 - .quad Lset22967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22968, Ltmp3864-Lfunc_begin0 - .quad Lset22968 -.set Lset22969, Ltmp3865-Lfunc_begin0 - .quad Lset22969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22970, Ltmp3933-Lfunc_begin0 - .quad Lset22970 -.set Lset22971, Ltmp3934-Lfunc_begin0 - .quad Lset22971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22972, Ltmp3959-Lfunc_begin0 - .quad Lset22972 -.set Lset22973, Ltmp3960-Lfunc_begin0 - .quad Lset22973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22974, Ltmp3985-Lfunc_begin0 - .quad Lset22974 -.set Lset22975, Ltmp3986-Lfunc_begin0 - .quad Lset22975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22976, Ltmp4011-Lfunc_begin0 - .quad Lset22976 -.set Lset22977, Ltmp4012-Lfunc_begin0 - .quad Lset22977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22978, Ltmp4046-Lfunc_begin0 - .quad Lset22978 -.set Lset22979, Ltmp4047-Lfunc_begin0 - .quad Lset22979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22980, Ltmp4084-Lfunc_begin0 - .quad Lset22980 -.set Lset22981, Ltmp4085-Lfunc_begin0 - .quad Lset22981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22982, Ltmp4106-Lfunc_begin0 - .quad Lset22982 -.set Lset22983, Ltmp4107-Lfunc_begin0 - .quad Lset22983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22984, Ltmp4146-Lfunc_begin0 - .quad Lset22984 -.set Lset22985, Ltmp4147-Lfunc_begin0 - .quad Lset22985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22986, Ltmp4187-Lfunc_begin0 - .quad Lset22986 -.set Lset22987, Ltmp4188-Lfunc_begin0 - .quad Lset22987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22988, Ltmp4227-Lfunc_begin0 - .quad Lset22988 -.set Lset22989, Ltmp4228-Lfunc_begin0 - .quad Lset22989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22990, Ltmp4268-Lfunc_begin0 - .quad Lset22990 -.set Lset22991, Ltmp4269-Lfunc_begin0 - .quad Lset22991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22992, Ltmp4308-Lfunc_begin0 - .quad Lset22992 -.set Lset22993, Ltmp4309-Lfunc_begin0 - .quad Lset22993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22994, Ltmp4349-Lfunc_begin0 - .quad Lset22994 -.set Lset22995, Ltmp4350-Lfunc_begin0 - .quad Lset22995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22996, Ltmp4380-Lfunc_begin0 - .quad Lset22996 -.set Lset22997, Ltmp4381-Lfunc_begin0 - .quad Lset22997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset22998, Ltmp4412-Lfunc_begin0 - .quad Lset22998 -.set Lset22999, Ltmp4414-Lfunc_begin0 - .quad Lset22999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23000, Ltmp4454-Lfunc_begin0 - .quad Lset23000 -.set Lset23001, Ltmp4455-Lfunc_begin0 - .quad Lset23001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23002, Ltmp4495-Lfunc_begin0 - .quad Lset23002 -.set Lset23003, Ltmp4496-Lfunc_begin0 - .quad Lset23003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23004, Ltmp4579-Lfunc_begin0 - .quad Lset23004 -.set Lset23005, Ltmp4581-Lfunc_begin0 - .quad Lset23005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23006, Ltmp4649-Lfunc_begin0 - .quad Lset23006 -.set Lset23007, Ltmp4651-Lfunc_begin0 - .quad Lset23007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23008, Ltmp4717-Lfunc_begin0 - .quad Lset23008 -.set Lset23009, Ltmp4719-Lfunc_begin0 - .quad Lset23009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23010, Ltmp4783-Lfunc_begin0 - .quad Lset23010 -.set Lset23011, Ltmp4784-Lfunc_begin0 - .quad Lset23011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23012, Ltmp4813-Lfunc_begin0 - .quad Lset23012 -.set Lset23013, Ltmp4814-Lfunc_begin0 - .quad Lset23013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23014, Ltmp4843-Lfunc_begin0 - .quad Lset23014 -.set Lset23015, Ltmp4844-Lfunc_begin0 - .quad Lset23015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23016, Ltmp4902-Lfunc_begin0 - .quad Lset23016 -.set Lset23017, Ltmp4903-Lfunc_begin0 - .quad Lset23017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23018, Ltmp4943-Lfunc_begin0 - .quad Lset23018 -.set Lset23019, Ltmp4944-Lfunc_begin0 - .quad Lset23019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23020, Ltmp5000-Lfunc_begin0 - .quad Lset23020 -.set Lset23021, Ltmp5001-Lfunc_begin0 - .quad Lset23021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23022, Ltmp5040-Lfunc_begin0 - .quad Lset23022 -.set Lset23023, Ltmp5041-Lfunc_begin0 - .quad Lset23023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23024, Ltmp5078-Lfunc_begin0 - .quad Lset23024 -.set Lset23025, Ltmp5079-Lfunc_begin0 - .quad Lset23025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23026, Ltmp5114-Lfunc_begin0 - .quad Lset23026 -.set Lset23027, Ltmp5115-Lfunc_begin0 - .quad Lset23027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23028, Ltmp5146-Lfunc_begin0 - .quad Lset23028 -.set Lset23029, Ltmp5147-Lfunc_begin0 - .quad Lset23029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23030, Ltmp5178-Lfunc_begin0 - .quad Lset23030 -.set Lset23031, Ltmp5179-Lfunc_begin0 - .quad Lset23031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23032, Ltmp5210-Lfunc_begin0 - .quad Lset23032 -.set Lset23033, Ltmp5211-Lfunc_begin0 - .quad Lset23033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23034, Ltmp5228-Lfunc_begin0 - .quad Lset23034 -.set Lset23035, Ltmp5229-Lfunc_begin0 - .quad Lset23035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23036, Ltmp5246-Lfunc_begin0 - .quad Lset23036 -.set Lset23037, Ltmp5247-Lfunc_begin0 - .quad Lset23037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23038, Ltmp5271-Lfunc_begin0 - .quad Lset23038 -.set Lset23039, Ltmp5272-Lfunc_begin0 - .quad Lset23039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23040, Ltmp5296-Lfunc_begin0 - .quad Lset23040 -.set Lset23041, Ltmp5297-Lfunc_begin0 - .quad Lset23041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23042, Ltmp5322-Lfunc_begin0 - .quad Lset23042 -.set Lset23043, Ltmp5323-Lfunc_begin0 - .quad Lset23043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23044, Ltmp5347-Lfunc_begin0 - .quad Lset23044 -.set Lset23045, Ltmp5348-Lfunc_begin0 - .quad Lset23045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23046, Ltmp5372-Lfunc_begin0 - .quad Lset23046 -.set Lset23047, Ltmp5373-Lfunc_begin0 - .quad Lset23047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23048, Ltmp5397-Lfunc_begin0 - .quad Lset23048 -.set Lset23049, Ltmp5398-Lfunc_begin0 - .quad Lset23049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23050, Ltmp5422-Lfunc_begin0 - .quad Lset23050 -.set Lset23051, Ltmp5423-Lfunc_begin0 - .quad Lset23051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23052, Ltmp5447-Lfunc_begin0 - .quad Lset23052 -.set Lset23053, Ltmp5448-Lfunc_begin0 - .quad Lset23053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23054, Ltmp5472-Lfunc_begin0 - .quad Lset23054 -.set Lset23055, Ltmp5473-Lfunc_begin0 - .quad Lset23055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23056, Ltmp5498-Lfunc_begin0 - .quad Lset23056 -.set Lset23057, Ltmp5499-Lfunc_begin0 - .quad Lset23057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23058, Ltmp5523-Lfunc_begin0 - .quad Lset23058 -.set Lset23059, Ltmp5524-Lfunc_begin0 - .quad Lset23059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23060, Ltmp5548-Lfunc_begin0 - .quad Lset23060 -.set Lset23061, Ltmp5549-Lfunc_begin0 - .quad Lset23061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23062, Ltmp5573-Lfunc_begin0 - .quad Lset23062 -.set Lset23063, Ltmp5574-Lfunc_begin0 - .quad Lset23063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23064, Ltmp5598-Lfunc_begin0 - .quad Lset23064 -.set Lset23065, Ltmp5599-Lfunc_begin0 - .quad Lset23065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23066, Ltmp5631-Lfunc_begin0 - .quad Lset23066 -.set Lset23067, Ltmp5632-Lfunc_begin0 - .quad Lset23067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23068, Ltmp5662-Lfunc_begin0 - .quad Lset23068 -.set Lset23069, Ltmp5663-Lfunc_begin0 - .quad Lset23069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23070, Ltmp5687-Lfunc_begin0 - .quad Lset23070 -.set Lset23071, Ltmp5688-Lfunc_begin0 - .quad Lset23071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23072, Ltmp5712-Lfunc_begin0 - .quad Lset23072 -.set Lset23073, Ltmp5713-Lfunc_begin0 - .quad Lset23073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23074, Ltmp5737-Lfunc_begin0 - .quad Lset23074 -.set Lset23075, Ltmp5738-Lfunc_begin0 - .quad Lset23075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23076, Ltmp5767-Lfunc_begin0 - .quad Lset23076 -.set Lset23077, Ltmp5768-Lfunc_begin0 - .quad Lset23077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23078, Ltmp5795-Lfunc_begin0 - .quad Lset23078 -.set Lset23079, Ltmp5796-Lfunc_begin0 - .quad Lset23079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23080, Ltmp5814-Lfunc_begin0 - .quad Lset23080 -.set Lset23081, Ltmp5815-Lfunc_begin0 - .quad Lset23081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23082, Ltmp5833-Lfunc_begin0 - .quad Lset23082 -.set Lset23083, Ltmp5834-Lfunc_begin0 - .quad Lset23083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23084, Ltmp5852-Lfunc_begin0 - .quad Lset23084 -.set Lset23085, Ltmp5853-Lfunc_begin0 - .quad Lset23085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23086, Ltmp5871-Lfunc_begin0 - .quad Lset23086 -.set Lset23087, Ltmp5872-Lfunc_begin0 - .quad Lset23087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23088, Ltmp5890-Lfunc_begin0 - .quad Lset23088 -.set Lset23089, Ltmp5891-Lfunc_begin0 - .quad Lset23089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23090, Ltmp5920-Lfunc_begin0 - .quad Lset23090 -.set Lset23091, Ltmp5921-Lfunc_begin0 - .quad Lset23091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc276: -.set Lset23092, Ltmp1186-Lfunc_begin0 - .quad Lset23092 -.set Lset23093, Ltmp1187-Lfunc_begin0 - .quad Lset23093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23094, Ltmp1215-Lfunc_begin0 - .quad Lset23094 -.set Lset23095, Ltmp1216-Lfunc_begin0 - .quad Lset23095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23096, Ltmp1237-Lfunc_begin0 - .quad Lset23096 -.set Lset23097, Ltmp1238-Lfunc_begin0 - .quad Lset23097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23098, Ltmp1260-Lfunc_begin0 - .quad Lset23098 -.set Lset23099, Ltmp1261-Lfunc_begin0 - .quad Lset23099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23100, Ltmp1281-Lfunc_begin0 - .quad Lset23100 -.set Lset23101, Ltmp1282-Lfunc_begin0 - .quad Lset23101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23102, Ltmp1314-Lfunc_begin0 - .quad Lset23102 -.set Lset23103, Ltmp1315-Lfunc_begin0 - .quad Lset23103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23104, Ltmp1338-Lfunc_begin0 - .quad Lset23104 -.set Lset23105, Ltmp1339-Lfunc_begin0 - .quad Lset23105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23106, Ltmp1368-Lfunc_begin0 - .quad Lset23106 -.set Lset23107, Ltmp1369-Lfunc_begin0 - .quad Lset23107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23108, Ltmp1462-Lfunc_begin0 - .quad Lset23108 -.set Lset23109, Ltmp1464-Lfunc_begin0 - .quad Lset23109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23110, Ltmp1557-Lfunc_begin0 - .quad Lset23110 -.set Lset23111, Ltmp1559-Lfunc_begin0 - .quad Lset23111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23112, Ltmp1713-Lfunc_begin0 - .quad Lset23112 -.set Lset23113, Ltmp1715-Lfunc_begin0 - .quad Lset23113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23114, Ltmp1864-Lfunc_begin0 - .quad Lset23114 -.set Lset23115, Ltmp1866-Lfunc_begin0 - .quad Lset23115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23116, Ltmp2004-Lfunc_begin0 - .quad Lset23116 -.set Lset23117, Ltmp2006-Lfunc_begin0 - .quad Lset23117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23118, Ltmp2074-Lfunc_begin0 - .quad Lset23118 -.set Lset23119, Ltmp2076-Lfunc_begin0 - .quad Lset23119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23120, Ltmp2120-Lfunc_begin0 - .quad Lset23120 -.set Lset23121, Ltmp2121-Lfunc_begin0 - .quad Lset23121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23122, Ltmp2193-Lfunc_begin0 - .quad Lset23122 -.set Lset23123, Ltmp2195-Lfunc_begin0 - .quad Lset23123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23124, Ltmp2253-Lfunc_begin0 - .quad Lset23124 -.set Lset23125, Ltmp2255-Lfunc_begin0 - .quad Lset23125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23126, Ltmp2302-Lfunc_begin0 - .quad Lset23126 -.set Lset23127, Ltmp2304-Lfunc_begin0 - .quad Lset23127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23128, Ltmp2351-Lfunc_begin0 - .quad Lset23128 -.set Lset23129, Ltmp2353-Lfunc_begin0 - .quad Lset23129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23130, Ltmp2400-Lfunc_begin0 - .quad Lset23130 -.set Lset23131, Ltmp2402-Lfunc_begin0 - .quad Lset23131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23132, Ltmp2444-Lfunc_begin0 - .quad Lset23132 -.set Lset23133, Ltmp2446-Lfunc_begin0 - .quad Lset23133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23134, Ltmp2499-Lfunc_begin0 - .quad Lset23134 -.set Lset23135, Ltmp2501-Lfunc_begin0 - .quad Lset23135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23136, Ltmp2554-Lfunc_begin0 - .quad Lset23136 -.set Lset23137, Ltmp2556-Lfunc_begin0 - .quad Lset23137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23138, Ltmp2609-Lfunc_begin0 - .quad Lset23138 -.set Lset23139, Ltmp2611-Lfunc_begin0 - .quad Lset23139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23140, Ltmp2673-Lfunc_begin0 - .quad Lset23140 -.set Lset23141, Ltmp2675-Lfunc_begin0 - .quad Lset23141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23142, Ltmp2738-Lfunc_begin0 - .quad Lset23142 -.set Lset23143, Ltmp2740-Lfunc_begin0 - .quad Lset23143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23144, Ltmp2811-Lfunc_begin0 - .quad Lset23144 -.set Lset23145, Ltmp2813-Lfunc_begin0 - .quad Lset23145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23146, Ltmp2871-Lfunc_begin0 - .quad Lset23146 -.set Lset23147, Ltmp2873-Lfunc_begin0 - .quad Lset23147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23148, Ltmp2922-Lfunc_begin0 - .quad Lset23148 -.set Lset23149, Ltmp2924-Lfunc_begin0 - .quad Lset23149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23150, Ltmp2957-Lfunc_begin0 - .quad Lset23150 -.set Lset23151, Ltmp2958-Lfunc_begin0 - .quad Lset23151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23152, Ltmp2997-Lfunc_begin0 - .quad Lset23152 -.set Lset23153, Ltmp2999-Lfunc_begin0 - .quad Lset23153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23154, Ltmp3024-Lfunc_begin0 - .quad Lset23154 -.set Lset23155, Ltmp3025-Lfunc_begin0 - .quad Lset23155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23156, Ltmp3047-Lfunc_begin0 - .quad Lset23156 -.set Lset23157, Ltmp3048-Lfunc_begin0 - .quad Lset23157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23158, Ltmp3096-Lfunc_begin0 - .quad Lset23158 -.set Lset23159, Ltmp3097-Lfunc_begin0 - .quad Lset23159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23160, Ltmp3120-Lfunc_begin0 - .quad Lset23160 -.set Lset23161, Ltmp3122-Lfunc_begin0 - .quad Lset23161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23162, Ltmp3161-Lfunc_begin0 - .quad Lset23162 -.set Lset23163, Ltmp3163-Lfunc_begin0 - .quad Lset23163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23164, Ltmp3227-Lfunc_begin0 - .quad Lset23164 -.set Lset23165, Ltmp3228-Lfunc_begin0 - .quad Lset23165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23166, Ltmp3292-Lfunc_begin0 - .quad Lset23166 -.set Lset23167, Ltmp3293-Lfunc_begin0 - .quad Lset23167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23168, Ltmp3329-Lfunc_begin0 - .quad Lset23168 -.set Lset23169, Ltmp3330-Lfunc_begin0 - .quad Lset23169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23170, Ltmp3375-Lfunc_begin0 - .quad Lset23170 -.set Lset23171, Ltmp3376-Lfunc_begin0 - .quad Lset23171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23172, Ltmp3407-Lfunc_begin0 - .quad Lset23172 -.set Lset23173, Ltmp3408-Lfunc_begin0 - .quad Lset23173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23174, Ltmp3435-Lfunc_begin0 - .quad Lset23174 -.set Lset23175, Ltmp3436-Lfunc_begin0 - .quad Lset23175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23176, Ltmp3537-Lfunc_begin0 - .quad Lset23176 -.set Lset23177, Ltmp3538-Lfunc_begin0 - .quad Lset23177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23178, Ltmp3638-Lfunc_begin0 - .quad Lset23178 -.set Lset23179, Ltmp3640-Lfunc_begin0 - .quad Lset23179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23180, Ltmp3685-Lfunc_begin0 - .quad Lset23180 -.set Lset23181, Ltmp3686-Lfunc_begin0 - .quad Lset23181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23182, Ltmp3807-Lfunc_begin0 - .quad Lset23182 -.set Lset23183, Ltmp3809-Lfunc_begin0 - .quad Lset23183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23184, Ltmp3864-Lfunc_begin0 - .quad Lset23184 -.set Lset23185, Ltmp3865-Lfunc_begin0 - .quad Lset23185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23186, Ltmp3933-Lfunc_begin0 - .quad Lset23186 -.set Lset23187, Ltmp3934-Lfunc_begin0 - .quad Lset23187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23188, Ltmp3959-Lfunc_begin0 - .quad Lset23188 -.set Lset23189, Ltmp3960-Lfunc_begin0 - .quad Lset23189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23190, Ltmp3985-Lfunc_begin0 - .quad Lset23190 -.set Lset23191, Ltmp3986-Lfunc_begin0 - .quad Lset23191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23192, Ltmp4011-Lfunc_begin0 - .quad Lset23192 -.set Lset23193, Ltmp4012-Lfunc_begin0 - .quad Lset23193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23194, Ltmp4046-Lfunc_begin0 - .quad Lset23194 -.set Lset23195, Ltmp4047-Lfunc_begin0 - .quad Lset23195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23196, Ltmp4084-Lfunc_begin0 - .quad Lset23196 -.set Lset23197, Ltmp4085-Lfunc_begin0 - .quad Lset23197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23198, Ltmp4106-Lfunc_begin0 - .quad Lset23198 -.set Lset23199, Ltmp4107-Lfunc_begin0 - .quad Lset23199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23200, Ltmp4146-Lfunc_begin0 - .quad Lset23200 -.set Lset23201, Ltmp4147-Lfunc_begin0 - .quad Lset23201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23202, Ltmp4187-Lfunc_begin0 - .quad Lset23202 -.set Lset23203, Ltmp4188-Lfunc_begin0 - .quad Lset23203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23204, Ltmp4227-Lfunc_begin0 - .quad Lset23204 -.set Lset23205, Ltmp4228-Lfunc_begin0 - .quad Lset23205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23206, Ltmp4268-Lfunc_begin0 - .quad Lset23206 -.set Lset23207, Ltmp4269-Lfunc_begin0 - .quad Lset23207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23208, Ltmp4308-Lfunc_begin0 - .quad Lset23208 -.set Lset23209, Ltmp4309-Lfunc_begin0 - .quad Lset23209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23210, Ltmp4349-Lfunc_begin0 - .quad Lset23210 -.set Lset23211, Ltmp4350-Lfunc_begin0 - .quad Lset23211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23212, Ltmp4380-Lfunc_begin0 - .quad Lset23212 -.set Lset23213, Ltmp4381-Lfunc_begin0 - .quad Lset23213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23214, Ltmp4412-Lfunc_begin0 - .quad Lset23214 -.set Lset23215, Ltmp4414-Lfunc_begin0 - .quad Lset23215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23216, Ltmp4454-Lfunc_begin0 - .quad Lset23216 -.set Lset23217, Ltmp4455-Lfunc_begin0 - .quad Lset23217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23218, Ltmp4495-Lfunc_begin0 - .quad Lset23218 -.set Lset23219, Ltmp4496-Lfunc_begin0 - .quad Lset23219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23220, Ltmp4579-Lfunc_begin0 - .quad Lset23220 -.set Lset23221, Ltmp4581-Lfunc_begin0 - .quad Lset23221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23222, Ltmp4649-Lfunc_begin0 - .quad Lset23222 -.set Lset23223, Ltmp4651-Lfunc_begin0 - .quad Lset23223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23224, Ltmp4717-Lfunc_begin0 - .quad Lset23224 -.set Lset23225, Ltmp4719-Lfunc_begin0 - .quad Lset23225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23226, Ltmp4783-Lfunc_begin0 - .quad Lset23226 -.set Lset23227, Ltmp4784-Lfunc_begin0 - .quad Lset23227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23228, Ltmp4813-Lfunc_begin0 - .quad Lset23228 -.set Lset23229, Ltmp4814-Lfunc_begin0 - .quad Lset23229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23230, Ltmp4843-Lfunc_begin0 - .quad Lset23230 -.set Lset23231, Ltmp4844-Lfunc_begin0 - .quad Lset23231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23232, Ltmp4902-Lfunc_begin0 - .quad Lset23232 -.set Lset23233, Ltmp4903-Lfunc_begin0 - .quad Lset23233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23234, Ltmp4943-Lfunc_begin0 - .quad Lset23234 -.set Lset23235, Ltmp4944-Lfunc_begin0 - .quad Lset23235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23236, Ltmp5000-Lfunc_begin0 - .quad Lset23236 -.set Lset23237, Ltmp5001-Lfunc_begin0 - .quad Lset23237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23238, Ltmp5040-Lfunc_begin0 - .quad Lset23238 -.set Lset23239, Ltmp5041-Lfunc_begin0 - .quad Lset23239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23240, Ltmp5078-Lfunc_begin0 - .quad Lset23240 -.set Lset23241, Ltmp5079-Lfunc_begin0 - .quad Lset23241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23242, Ltmp5114-Lfunc_begin0 - .quad Lset23242 -.set Lset23243, Ltmp5115-Lfunc_begin0 - .quad Lset23243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23244, Ltmp5146-Lfunc_begin0 - .quad Lset23244 -.set Lset23245, Ltmp5147-Lfunc_begin0 - .quad Lset23245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23246, Ltmp5178-Lfunc_begin0 - .quad Lset23246 -.set Lset23247, Ltmp5179-Lfunc_begin0 - .quad Lset23247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23248, Ltmp5210-Lfunc_begin0 - .quad Lset23248 -.set Lset23249, Ltmp5211-Lfunc_begin0 - .quad Lset23249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23250, Ltmp5228-Lfunc_begin0 - .quad Lset23250 -.set Lset23251, Ltmp5229-Lfunc_begin0 - .quad Lset23251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23252, Ltmp5246-Lfunc_begin0 - .quad Lset23252 -.set Lset23253, Ltmp5247-Lfunc_begin0 - .quad Lset23253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23254, Ltmp5271-Lfunc_begin0 - .quad Lset23254 -.set Lset23255, Ltmp5272-Lfunc_begin0 - .quad Lset23255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23256, Ltmp5296-Lfunc_begin0 - .quad Lset23256 -.set Lset23257, Ltmp5297-Lfunc_begin0 - .quad Lset23257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23258, Ltmp5322-Lfunc_begin0 - .quad Lset23258 -.set Lset23259, Ltmp5323-Lfunc_begin0 - .quad Lset23259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23260, Ltmp5347-Lfunc_begin0 - .quad Lset23260 -.set Lset23261, Ltmp5348-Lfunc_begin0 - .quad Lset23261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23262, Ltmp5372-Lfunc_begin0 - .quad Lset23262 -.set Lset23263, Ltmp5373-Lfunc_begin0 - .quad Lset23263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23264, Ltmp5397-Lfunc_begin0 - .quad Lset23264 -.set Lset23265, Ltmp5398-Lfunc_begin0 - .quad Lset23265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23266, Ltmp5422-Lfunc_begin0 - .quad Lset23266 -.set Lset23267, Ltmp5423-Lfunc_begin0 - .quad Lset23267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23268, Ltmp5447-Lfunc_begin0 - .quad Lset23268 -.set Lset23269, Ltmp5448-Lfunc_begin0 - .quad Lset23269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23270, Ltmp5472-Lfunc_begin0 - .quad Lset23270 -.set Lset23271, Ltmp5473-Lfunc_begin0 - .quad Lset23271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23272, Ltmp5498-Lfunc_begin0 - .quad Lset23272 -.set Lset23273, Ltmp5499-Lfunc_begin0 - .quad Lset23273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23274, Ltmp5523-Lfunc_begin0 - .quad Lset23274 -.set Lset23275, Ltmp5524-Lfunc_begin0 - .quad Lset23275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23276, Ltmp5548-Lfunc_begin0 - .quad Lset23276 -.set Lset23277, Ltmp5549-Lfunc_begin0 - .quad Lset23277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23278, Ltmp5573-Lfunc_begin0 - .quad Lset23278 -.set Lset23279, Ltmp5574-Lfunc_begin0 - .quad Lset23279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23280, Ltmp5598-Lfunc_begin0 - .quad Lset23280 -.set Lset23281, Ltmp5599-Lfunc_begin0 - .quad Lset23281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23282, Ltmp5631-Lfunc_begin0 - .quad Lset23282 -.set Lset23283, Ltmp5632-Lfunc_begin0 - .quad Lset23283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23284, Ltmp5662-Lfunc_begin0 - .quad Lset23284 -.set Lset23285, Ltmp5663-Lfunc_begin0 - .quad Lset23285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23286, Ltmp5687-Lfunc_begin0 - .quad Lset23286 -.set Lset23287, Ltmp5688-Lfunc_begin0 - .quad Lset23287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23288, Ltmp5712-Lfunc_begin0 - .quad Lset23288 -.set Lset23289, Ltmp5713-Lfunc_begin0 - .quad Lset23289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23290, Ltmp5737-Lfunc_begin0 - .quad Lset23290 -.set Lset23291, Ltmp5738-Lfunc_begin0 - .quad Lset23291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23292, Ltmp5767-Lfunc_begin0 - .quad Lset23292 -.set Lset23293, Ltmp5768-Lfunc_begin0 - .quad Lset23293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23294, Ltmp5795-Lfunc_begin0 - .quad Lset23294 -.set Lset23295, Ltmp5796-Lfunc_begin0 - .quad Lset23295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23296, Ltmp5814-Lfunc_begin0 - .quad Lset23296 -.set Lset23297, Ltmp5815-Lfunc_begin0 - .quad Lset23297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23298, Ltmp5833-Lfunc_begin0 - .quad Lset23298 -.set Lset23299, Ltmp5834-Lfunc_begin0 - .quad Lset23299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23300, Ltmp5852-Lfunc_begin0 - .quad Lset23300 -.set Lset23301, Ltmp5853-Lfunc_begin0 - .quad Lset23301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23302, Ltmp5871-Lfunc_begin0 - .quad Lset23302 -.set Lset23303, Ltmp5872-Lfunc_begin0 - .quad Lset23303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23304, Ltmp5890-Lfunc_begin0 - .quad Lset23304 -.set Lset23305, Ltmp5891-Lfunc_begin0 - .quad Lset23305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23306, Ltmp5920-Lfunc_begin0 - .quad Lset23306 -.set Lset23307, Ltmp5921-Lfunc_begin0 - .quad Lset23307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc277: -.set Lset23308, Ltmp1186-Lfunc_begin0 - .quad Lset23308 -.set Lset23309, Ltmp1187-Lfunc_begin0 - .quad Lset23309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23310, Ltmp1215-Lfunc_begin0 - .quad Lset23310 -.set Lset23311, Ltmp1216-Lfunc_begin0 - .quad Lset23311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23312, Ltmp1237-Lfunc_begin0 - .quad Lset23312 -.set Lset23313, Ltmp1238-Lfunc_begin0 - .quad Lset23313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23314, Ltmp1260-Lfunc_begin0 - .quad Lset23314 -.set Lset23315, Ltmp1261-Lfunc_begin0 - .quad Lset23315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23316, Ltmp1281-Lfunc_begin0 - .quad Lset23316 -.set Lset23317, Ltmp1282-Lfunc_begin0 - .quad Lset23317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23318, Ltmp1314-Lfunc_begin0 - .quad Lset23318 -.set Lset23319, Ltmp1315-Lfunc_begin0 - .quad Lset23319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23320, Ltmp1338-Lfunc_begin0 - .quad Lset23320 -.set Lset23321, Ltmp1339-Lfunc_begin0 - .quad Lset23321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23322, Ltmp1368-Lfunc_begin0 - .quad Lset23322 -.set Lset23323, Ltmp1369-Lfunc_begin0 - .quad Lset23323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23324, Ltmp1462-Lfunc_begin0 - .quad Lset23324 -.set Lset23325, Ltmp1464-Lfunc_begin0 - .quad Lset23325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23326, Ltmp1557-Lfunc_begin0 - .quad Lset23326 -.set Lset23327, Ltmp1559-Lfunc_begin0 - .quad Lset23327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23328, Ltmp1713-Lfunc_begin0 - .quad Lset23328 -.set Lset23329, Ltmp1715-Lfunc_begin0 - .quad Lset23329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23330, Ltmp1864-Lfunc_begin0 - .quad Lset23330 -.set Lset23331, Ltmp1866-Lfunc_begin0 - .quad Lset23331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23332, Ltmp2004-Lfunc_begin0 - .quad Lset23332 -.set Lset23333, Ltmp2006-Lfunc_begin0 - .quad Lset23333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23334, Ltmp2074-Lfunc_begin0 - .quad Lset23334 -.set Lset23335, Ltmp2076-Lfunc_begin0 - .quad Lset23335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23336, Ltmp2120-Lfunc_begin0 - .quad Lset23336 -.set Lset23337, Ltmp2121-Lfunc_begin0 - .quad Lset23337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23338, Ltmp2193-Lfunc_begin0 - .quad Lset23338 -.set Lset23339, Ltmp2195-Lfunc_begin0 - .quad Lset23339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23340, Ltmp2253-Lfunc_begin0 - .quad Lset23340 -.set Lset23341, Ltmp2255-Lfunc_begin0 - .quad Lset23341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23342, Ltmp2302-Lfunc_begin0 - .quad Lset23342 -.set Lset23343, Ltmp2304-Lfunc_begin0 - .quad Lset23343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23344, Ltmp2351-Lfunc_begin0 - .quad Lset23344 -.set Lset23345, Ltmp2353-Lfunc_begin0 - .quad Lset23345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23346, Ltmp2400-Lfunc_begin0 - .quad Lset23346 -.set Lset23347, Ltmp2402-Lfunc_begin0 - .quad Lset23347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23348, Ltmp2444-Lfunc_begin0 - .quad Lset23348 -.set Lset23349, Ltmp2446-Lfunc_begin0 - .quad Lset23349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23350, Ltmp2499-Lfunc_begin0 - .quad Lset23350 -.set Lset23351, Ltmp2501-Lfunc_begin0 - .quad Lset23351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23352, Ltmp2554-Lfunc_begin0 - .quad Lset23352 -.set Lset23353, Ltmp2556-Lfunc_begin0 - .quad Lset23353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23354, Ltmp2609-Lfunc_begin0 - .quad Lset23354 -.set Lset23355, Ltmp2611-Lfunc_begin0 - .quad Lset23355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23356, Ltmp2673-Lfunc_begin0 - .quad Lset23356 -.set Lset23357, Ltmp2675-Lfunc_begin0 - .quad Lset23357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23358, Ltmp2738-Lfunc_begin0 - .quad Lset23358 -.set Lset23359, Ltmp2740-Lfunc_begin0 - .quad Lset23359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23360, Ltmp2811-Lfunc_begin0 - .quad Lset23360 -.set Lset23361, Ltmp2813-Lfunc_begin0 - .quad Lset23361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23362, Ltmp2871-Lfunc_begin0 - .quad Lset23362 -.set Lset23363, Ltmp2873-Lfunc_begin0 - .quad Lset23363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23364, Ltmp2922-Lfunc_begin0 - .quad Lset23364 -.set Lset23365, Ltmp2924-Lfunc_begin0 - .quad Lset23365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23366, Ltmp2957-Lfunc_begin0 - .quad Lset23366 -.set Lset23367, Ltmp2958-Lfunc_begin0 - .quad Lset23367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23368, Ltmp2997-Lfunc_begin0 - .quad Lset23368 -.set Lset23369, Ltmp2999-Lfunc_begin0 - .quad Lset23369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23370, Ltmp3024-Lfunc_begin0 - .quad Lset23370 -.set Lset23371, Ltmp3025-Lfunc_begin0 - .quad Lset23371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23372, Ltmp3047-Lfunc_begin0 - .quad Lset23372 -.set Lset23373, Ltmp3048-Lfunc_begin0 - .quad Lset23373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23374, Ltmp3096-Lfunc_begin0 - .quad Lset23374 -.set Lset23375, Ltmp3097-Lfunc_begin0 - .quad Lset23375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23376, Ltmp3120-Lfunc_begin0 - .quad Lset23376 -.set Lset23377, Ltmp3122-Lfunc_begin0 - .quad Lset23377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23378, Ltmp3161-Lfunc_begin0 - .quad Lset23378 -.set Lset23379, Ltmp3163-Lfunc_begin0 - .quad Lset23379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23380, Ltmp3227-Lfunc_begin0 - .quad Lset23380 -.set Lset23381, Ltmp3228-Lfunc_begin0 - .quad Lset23381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23382, Ltmp3292-Lfunc_begin0 - .quad Lset23382 -.set Lset23383, Ltmp3293-Lfunc_begin0 - .quad Lset23383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23384, Ltmp3329-Lfunc_begin0 - .quad Lset23384 -.set Lset23385, Ltmp3330-Lfunc_begin0 - .quad Lset23385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23386, Ltmp3375-Lfunc_begin0 - .quad Lset23386 -.set Lset23387, Ltmp3376-Lfunc_begin0 - .quad Lset23387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23388, Ltmp3407-Lfunc_begin0 - .quad Lset23388 -.set Lset23389, Ltmp3408-Lfunc_begin0 - .quad Lset23389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23390, Ltmp3435-Lfunc_begin0 - .quad Lset23390 -.set Lset23391, Ltmp3436-Lfunc_begin0 - .quad Lset23391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23392, Ltmp3537-Lfunc_begin0 - .quad Lset23392 -.set Lset23393, Ltmp3538-Lfunc_begin0 - .quad Lset23393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23394, Ltmp3638-Lfunc_begin0 - .quad Lset23394 -.set Lset23395, Ltmp3640-Lfunc_begin0 - .quad Lset23395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23396, Ltmp3685-Lfunc_begin0 - .quad Lset23396 -.set Lset23397, Ltmp3686-Lfunc_begin0 - .quad Lset23397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23398, Ltmp3807-Lfunc_begin0 - .quad Lset23398 -.set Lset23399, Ltmp3809-Lfunc_begin0 - .quad Lset23399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23400, Ltmp3864-Lfunc_begin0 - .quad Lset23400 -.set Lset23401, Ltmp3865-Lfunc_begin0 - .quad Lset23401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23402, Ltmp3933-Lfunc_begin0 - .quad Lset23402 -.set Lset23403, Ltmp3934-Lfunc_begin0 - .quad Lset23403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23404, Ltmp3959-Lfunc_begin0 - .quad Lset23404 -.set Lset23405, Ltmp3960-Lfunc_begin0 - .quad Lset23405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23406, Ltmp3985-Lfunc_begin0 - .quad Lset23406 -.set Lset23407, Ltmp3986-Lfunc_begin0 - .quad Lset23407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23408, Ltmp4011-Lfunc_begin0 - .quad Lset23408 -.set Lset23409, Ltmp4012-Lfunc_begin0 - .quad Lset23409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23410, Ltmp4046-Lfunc_begin0 - .quad Lset23410 -.set Lset23411, Ltmp4047-Lfunc_begin0 - .quad Lset23411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23412, Ltmp4084-Lfunc_begin0 - .quad Lset23412 -.set Lset23413, Ltmp4085-Lfunc_begin0 - .quad Lset23413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23414, Ltmp4106-Lfunc_begin0 - .quad Lset23414 -.set Lset23415, Ltmp4107-Lfunc_begin0 - .quad Lset23415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23416, Ltmp4146-Lfunc_begin0 - .quad Lset23416 -.set Lset23417, Ltmp4147-Lfunc_begin0 - .quad Lset23417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23418, Ltmp4187-Lfunc_begin0 - .quad Lset23418 -.set Lset23419, Ltmp4188-Lfunc_begin0 - .quad Lset23419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23420, Ltmp4227-Lfunc_begin0 - .quad Lset23420 -.set Lset23421, Ltmp4228-Lfunc_begin0 - .quad Lset23421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23422, Ltmp4268-Lfunc_begin0 - .quad Lset23422 -.set Lset23423, Ltmp4269-Lfunc_begin0 - .quad Lset23423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23424, Ltmp4308-Lfunc_begin0 - .quad Lset23424 -.set Lset23425, Ltmp4309-Lfunc_begin0 - .quad Lset23425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23426, Ltmp4349-Lfunc_begin0 - .quad Lset23426 -.set Lset23427, Ltmp4350-Lfunc_begin0 - .quad Lset23427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23428, Ltmp4380-Lfunc_begin0 - .quad Lset23428 -.set Lset23429, Ltmp4381-Lfunc_begin0 - .quad Lset23429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23430, Ltmp4412-Lfunc_begin0 - .quad Lset23430 -.set Lset23431, Ltmp4414-Lfunc_begin0 - .quad Lset23431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23432, Ltmp4454-Lfunc_begin0 - .quad Lset23432 -.set Lset23433, Ltmp4455-Lfunc_begin0 - .quad Lset23433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23434, Ltmp4495-Lfunc_begin0 - .quad Lset23434 -.set Lset23435, Ltmp4496-Lfunc_begin0 - .quad Lset23435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23436, Ltmp4579-Lfunc_begin0 - .quad Lset23436 -.set Lset23437, Ltmp4581-Lfunc_begin0 - .quad Lset23437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23438, Ltmp4649-Lfunc_begin0 - .quad Lset23438 -.set Lset23439, Ltmp4651-Lfunc_begin0 - .quad Lset23439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23440, Ltmp4717-Lfunc_begin0 - .quad Lset23440 -.set Lset23441, Ltmp4719-Lfunc_begin0 - .quad Lset23441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23442, Ltmp4783-Lfunc_begin0 - .quad Lset23442 -.set Lset23443, Ltmp4784-Lfunc_begin0 - .quad Lset23443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23444, Ltmp4813-Lfunc_begin0 - .quad Lset23444 -.set Lset23445, Ltmp4814-Lfunc_begin0 - .quad Lset23445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23446, Ltmp4843-Lfunc_begin0 - .quad Lset23446 -.set Lset23447, Ltmp4844-Lfunc_begin0 - .quad Lset23447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23448, Ltmp4902-Lfunc_begin0 - .quad Lset23448 -.set Lset23449, Ltmp4903-Lfunc_begin0 - .quad Lset23449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23450, Ltmp4943-Lfunc_begin0 - .quad Lset23450 -.set Lset23451, Ltmp4944-Lfunc_begin0 - .quad Lset23451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23452, Ltmp5000-Lfunc_begin0 - .quad Lset23452 -.set Lset23453, Ltmp5001-Lfunc_begin0 - .quad Lset23453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23454, Ltmp5040-Lfunc_begin0 - .quad Lset23454 -.set Lset23455, Ltmp5041-Lfunc_begin0 - .quad Lset23455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23456, Ltmp5078-Lfunc_begin0 - .quad Lset23456 -.set Lset23457, Ltmp5079-Lfunc_begin0 - .quad Lset23457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23458, Ltmp5114-Lfunc_begin0 - .quad Lset23458 -.set Lset23459, Ltmp5115-Lfunc_begin0 - .quad Lset23459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23460, Ltmp5146-Lfunc_begin0 - .quad Lset23460 -.set Lset23461, Ltmp5147-Lfunc_begin0 - .quad Lset23461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23462, Ltmp5178-Lfunc_begin0 - .quad Lset23462 -.set Lset23463, Ltmp5179-Lfunc_begin0 - .quad Lset23463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23464, Ltmp5210-Lfunc_begin0 - .quad Lset23464 -.set Lset23465, Ltmp5211-Lfunc_begin0 - .quad Lset23465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23466, Ltmp5228-Lfunc_begin0 - .quad Lset23466 -.set Lset23467, Ltmp5229-Lfunc_begin0 - .quad Lset23467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23468, Ltmp5246-Lfunc_begin0 - .quad Lset23468 -.set Lset23469, Ltmp5247-Lfunc_begin0 - .quad Lset23469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23470, Ltmp5271-Lfunc_begin0 - .quad Lset23470 -.set Lset23471, Ltmp5272-Lfunc_begin0 - .quad Lset23471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23472, Ltmp5296-Lfunc_begin0 - .quad Lset23472 -.set Lset23473, Ltmp5297-Lfunc_begin0 - .quad Lset23473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23474, Ltmp5322-Lfunc_begin0 - .quad Lset23474 -.set Lset23475, Ltmp5323-Lfunc_begin0 - .quad Lset23475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23476, Ltmp5347-Lfunc_begin0 - .quad Lset23476 -.set Lset23477, Ltmp5348-Lfunc_begin0 - .quad Lset23477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23478, Ltmp5372-Lfunc_begin0 - .quad Lset23478 -.set Lset23479, Ltmp5373-Lfunc_begin0 - .quad Lset23479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23480, Ltmp5397-Lfunc_begin0 - .quad Lset23480 -.set Lset23481, Ltmp5398-Lfunc_begin0 - .quad Lset23481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23482, Ltmp5422-Lfunc_begin0 - .quad Lset23482 -.set Lset23483, Ltmp5423-Lfunc_begin0 - .quad Lset23483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23484, Ltmp5447-Lfunc_begin0 - .quad Lset23484 -.set Lset23485, Ltmp5448-Lfunc_begin0 - .quad Lset23485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23486, Ltmp5472-Lfunc_begin0 - .quad Lset23486 -.set Lset23487, Ltmp5473-Lfunc_begin0 - .quad Lset23487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23488, Ltmp5498-Lfunc_begin0 - .quad Lset23488 -.set Lset23489, Ltmp5499-Lfunc_begin0 - .quad Lset23489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23490, Ltmp5523-Lfunc_begin0 - .quad Lset23490 -.set Lset23491, Ltmp5524-Lfunc_begin0 - .quad Lset23491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23492, Ltmp5548-Lfunc_begin0 - .quad Lset23492 -.set Lset23493, Ltmp5549-Lfunc_begin0 - .quad Lset23493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23494, Ltmp5573-Lfunc_begin0 - .quad Lset23494 -.set Lset23495, Ltmp5574-Lfunc_begin0 - .quad Lset23495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23496, Ltmp5598-Lfunc_begin0 - .quad Lset23496 -.set Lset23497, Ltmp5599-Lfunc_begin0 - .quad Lset23497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23498, Ltmp5631-Lfunc_begin0 - .quad Lset23498 -.set Lset23499, Ltmp5632-Lfunc_begin0 - .quad Lset23499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23500, Ltmp5662-Lfunc_begin0 - .quad Lset23500 -.set Lset23501, Ltmp5663-Lfunc_begin0 - .quad Lset23501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23502, Ltmp5687-Lfunc_begin0 - .quad Lset23502 -.set Lset23503, Ltmp5688-Lfunc_begin0 - .quad Lset23503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23504, Ltmp5712-Lfunc_begin0 - .quad Lset23504 -.set Lset23505, Ltmp5713-Lfunc_begin0 - .quad Lset23505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23506, Ltmp5737-Lfunc_begin0 - .quad Lset23506 -.set Lset23507, Ltmp5738-Lfunc_begin0 - .quad Lset23507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23508, Ltmp5767-Lfunc_begin0 - .quad Lset23508 -.set Lset23509, Ltmp5768-Lfunc_begin0 - .quad Lset23509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23510, Ltmp5795-Lfunc_begin0 - .quad Lset23510 -.set Lset23511, Ltmp5796-Lfunc_begin0 - .quad Lset23511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23512, Ltmp5814-Lfunc_begin0 - .quad Lset23512 -.set Lset23513, Ltmp5815-Lfunc_begin0 - .quad Lset23513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23514, Ltmp5833-Lfunc_begin0 - .quad Lset23514 -.set Lset23515, Ltmp5834-Lfunc_begin0 - .quad Lset23515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23516, Ltmp5852-Lfunc_begin0 - .quad Lset23516 -.set Lset23517, Ltmp5853-Lfunc_begin0 - .quad Lset23517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23518, Ltmp5871-Lfunc_begin0 - .quad Lset23518 -.set Lset23519, Ltmp5872-Lfunc_begin0 - .quad Lset23519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23520, Ltmp5890-Lfunc_begin0 - .quad Lset23520 -.set Lset23521, Ltmp5891-Lfunc_begin0 - .quad Lset23521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23522, Ltmp5920-Lfunc_begin0 - .quad Lset23522 -.set Lset23523, Ltmp5921-Lfunc_begin0 - .quad Lset23523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc278: -.set Lset23524, Ltmp1186-Lfunc_begin0 - .quad Lset23524 -.set Lset23525, Ltmp1187-Lfunc_begin0 - .quad Lset23525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23526, Ltmp1215-Lfunc_begin0 - .quad Lset23526 -.set Lset23527, Ltmp1216-Lfunc_begin0 - .quad Lset23527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23528, Ltmp1237-Lfunc_begin0 - .quad Lset23528 -.set Lset23529, Ltmp1238-Lfunc_begin0 - .quad Lset23529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23530, Ltmp1260-Lfunc_begin0 - .quad Lset23530 -.set Lset23531, Ltmp1261-Lfunc_begin0 - .quad Lset23531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23532, Ltmp1281-Lfunc_begin0 - .quad Lset23532 -.set Lset23533, Ltmp1282-Lfunc_begin0 - .quad Lset23533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23534, Ltmp1314-Lfunc_begin0 - .quad Lset23534 -.set Lset23535, Ltmp1315-Lfunc_begin0 - .quad Lset23535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23536, Ltmp1338-Lfunc_begin0 - .quad Lset23536 -.set Lset23537, Ltmp1339-Lfunc_begin0 - .quad Lset23537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23538, Ltmp1368-Lfunc_begin0 - .quad Lset23538 -.set Lset23539, Ltmp1369-Lfunc_begin0 - .quad Lset23539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23540, Ltmp1462-Lfunc_begin0 - .quad Lset23540 -.set Lset23541, Ltmp1464-Lfunc_begin0 - .quad Lset23541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23542, Ltmp1557-Lfunc_begin0 - .quad Lset23542 -.set Lset23543, Ltmp1559-Lfunc_begin0 - .quad Lset23543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23544, Ltmp1713-Lfunc_begin0 - .quad Lset23544 -.set Lset23545, Ltmp1715-Lfunc_begin0 - .quad Lset23545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23546, Ltmp1864-Lfunc_begin0 - .quad Lset23546 -.set Lset23547, Ltmp1866-Lfunc_begin0 - .quad Lset23547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23548, Ltmp2004-Lfunc_begin0 - .quad Lset23548 -.set Lset23549, Ltmp2006-Lfunc_begin0 - .quad Lset23549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23550, Ltmp2074-Lfunc_begin0 - .quad Lset23550 -.set Lset23551, Ltmp2076-Lfunc_begin0 - .quad Lset23551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23552, Ltmp2120-Lfunc_begin0 - .quad Lset23552 -.set Lset23553, Ltmp2121-Lfunc_begin0 - .quad Lset23553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23554, Ltmp2193-Lfunc_begin0 - .quad Lset23554 -.set Lset23555, Ltmp2195-Lfunc_begin0 - .quad Lset23555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23556, Ltmp2253-Lfunc_begin0 - .quad Lset23556 -.set Lset23557, Ltmp2255-Lfunc_begin0 - .quad Lset23557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23558, Ltmp2302-Lfunc_begin0 - .quad Lset23558 -.set Lset23559, Ltmp2304-Lfunc_begin0 - .quad Lset23559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23560, Ltmp2351-Lfunc_begin0 - .quad Lset23560 -.set Lset23561, Ltmp2353-Lfunc_begin0 - .quad Lset23561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23562, Ltmp2400-Lfunc_begin0 - .quad Lset23562 -.set Lset23563, Ltmp2402-Lfunc_begin0 - .quad Lset23563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23564, Ltmp2444-Lfunc_begin0 - .quad Lset23564 -.set Lset23565, Ltmp2446-Lfunc_begin0 - .quad Lset23565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23566, Ltmp2499-Lfunc_begin0 - .quad Lset23566 -.set Lset23567, Ltmp2501-Lfunc_begin0 - .quad Lset23567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23568, Ltmp2554-Lfunc_begin0 - .quad Lset23568 -.set Lset23569, Ltmp2556-Lfunc_begin0 - .quad Lset23569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23570, Ltmp2609-Lfunc_begin0 - .quad Lset23570 -.set Lset23571, Ltmp2611-Lfunc_begin0 - .quad Lset23571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23572, Ltmp2673-Lfunc_begin0 - .quad Lset23572 -.set Lset23573, Ltmp2675-Lfunc_begin0 - .quad Lset23573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23574, Ltmp2738-Lfunc_begin0 - .quad Lset23574 -.set Lset23575, Ltmp2740-Lfunc_begin0 - .quad Lset23575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23576, Ltmp2811-Lfunc_begin0 - .quad Lset23576 -.set Lset23577, Ltmp2813-Lfunc_begin0 - .quad Lset23577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23578, Ltmp2871-Lfunc_begin0 - .quad Lset23578 -.set Lset23579, Ltmp2873-Lfunc_begin0 - .quad Lset23579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23580, Ltmp2922-Lfunc_begin0 - .quad Lset23580 -.set Lset23581, Ltmp2924-Lfunc_begin0 - .quad Lset23581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23582, Ltmp2957-Lfunc_begin0 - .quad Lset23582 -.set Lset23583, Ltmp2958-Lfunc_begin0 - .quad Lset23583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23584, Ltmp2997-Lfunc_begin0 - .quad Lset23584 -.set Lset23585, Ltmp2999-Lfunc_begin0 - .quad Lset23585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23586, Ltmp3024-Lfunc_begin0 - .quad Lset23586 -.set Lset23587, Ltmp3025-Lfunc_begin0 - .quad Lset23587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23588, Ltmp3047-Lfunc_begin0 - .quad Lset23588 -.set Lset23589, Ltmp3048-Lfunc_begin0 - .quad Lset23589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23590, Ltmp3096-Lfunc_begin0 - .quad Lset23590 -.set Lset23591, Ltmp3097-Lfunc_begin0 - .quad Lset23591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23592, Ltmp3120-Lfunc_begin0 - .quad Lset23592 -.set Lset23593, Ltmp3122-Lfunc_begin0 - .quad Lset23593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23594, Ltmp3161-Lfunc_begin0 - .quad Lset23594 -.set Lset23595, Ltmp3163-Lfunc_begin0 - .quad Lset23595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23596, Ltmp3227-Lfunc_begin0 - .quad Lset23596 -.set Lset23597, Ltmp3228-Lfunc_begin0 - .quad Lset23597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23598, Ltmp3292-Lfunc_begin0 - .quad Lset23598 -.set Lset23599, Ltmp3293-Lfunc_begin0 - .quad Lset23599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23600, Ltmp3329-Lfunc_begin0 - .quad Lset23600 -.set Lset23601, Ltmp3330-Lfunc_begin0 - .quad Lset23601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23602, Ltmp3375-Lfunc_begin0 - .quad Lset23602 -.set Lset23603, Ltmp3376-Lfunc_begin0 - .quad Lset23603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23604, Ltmp3407-Lfunc_begin0 - .quad Lset23604 -.set Lset23605, Ltmp3408-Lfunc_begin0 - .quad Lset23605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23606, Ltmp3435-Lfunc_begin0 - .quad Lset23606 -.set Lset23607, Ltmp3436-Lfunc_begin0 - .quad Lset23607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23608, Ltmp3537-Lfunc_begin0 - .quad Lset23608 -.set Lset23609, Ltmp3538-Lfunc_begin0 - .quad Lset23609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23610, Ltmp3638-Lfunc_begin0 - .quad Lset23610 -.set Lset23611, Ltmp3640-Lfunc_begin0 - .quad Lset23611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23612, Ltmp3685-Lfunc_begin0 - .quad Lset23612 -.set Lset23613, Ltmp3686-Lfunc_begin0 - .quad Lset23613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23614, Ltmp3807-Lfunc_begin0 - .quad Lset23614 -.set Lset23615, Ltmp3809-Lfunc_begin0 - .quad Lset23615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23616, Ltmp3864-Lfunc_begin0 - .quad Lset23616 -.set Lset23617, Ltmp3865-Lfunc_begin0 - .quad Lset23617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23618, Ltmp3933-Lfunc_begin0 - .quad Lset23618 -.set Lset23619, Ltmp3934-Lfunc_begin0 - .quad Lset23619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23620, Ltmp3959-Lfunc_begin0 - .quad Lset23620 -.set Lset23621, Ltmp3960-Lfunc_begin0 - .quad Lset23621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23622, Ltmp3985-Lfunc_begin0 - .quad Lset23622 -.set Lset23623, Ltmp3986-Lfunc_begin0 - .quad Lset23623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23624, Ltmp4011-Lfunc_begin0 - .quad Lset23624 -.set Lset23625, Ltmp4012-Lfunc_begin0 - .quad Lset23625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23626, Ltmp4046-Lfunc_begin0 - .quad Lset23626 -.set Lset23627, Ltmp4047-Lfunc_begin0 - .quad Lset23627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23628, Ltmp4084-Lfunc_begin0 - .quad Lset23628 -.set Lset23629, Ltmp4085-Lfunc_begin0 - .quad Lset23629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23630, Ltmp4106-Lfunc_begin0 - .quad Lset23630 -.set Lset23631, Ltmp4107-Lfunc_begin0 - .quad Lset23631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23632, Ltmp4146-Lfunc_begin0 - .quad Lset23632 -.set Lset23633, Ltmp4147-Lfunc_begin0 - .quad Lset23633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23634, Ltmp4187-Lfunc_begin0 - .quad Lset23634 -.set Lset23635, Ltmp4188-Lfunc_begin0 - .quad Lset23635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23636, Ltmp4227-Lfunc_begin0 - .quad Lset23636 -.set Lset23637, Ltmp4228-Lfunc_begin0 - .quad Lset23637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23638, Ltmp4268-Lfunc_begin0 - .quad Lset23638 -.set Lset23639, Ltmp4269-Lfunc_begin0 - .quad Lset23639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23640, Ltmp4308-Lfunc_begin0 - .quad Lset23640 -.set Lset23641, Ltmp4309-Lfunc_begin0 - .quad Lset23641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23642, Ltmp4349-Lfunc_begin0 - .quad Lset23642 -.set Lset23643, Ltmp4350-Lfunc_begin0 - .quad Lset23643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23644, Ltmp4380-Lfunc_begin0 - .quad Lset23644 -.set Lset23645, Ltmp4381-Lfunc_begin0 - .quad Lset23645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23646, Ltmp4412-Lfunc_begin0 - .quad Lset23646 -.set Lset23647, Ltmp4414-Lfunc_begin0 - .quad Lset23647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23648, Ltmp4454-Lfunc_begin0 - .quad Lset23648 -.set Lset23649, Ltmp4455-Lfunc_begin0 - .quad Lset23649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23650, Ltmp4495-Lfunc_begin0 - .quad Lset23650 -.set Lset23651, Ltmp4496-Lfunc_begin0 - .quad Lset23651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23652, Ltmp4579-Lfunc_begin0 - .quad Lset23652 -.set Lset23653, Ltmp4581-Lfunc_begin0 - .quad Lset23653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23654, Ltmp4649-Lfunc_begin0 - .quad Lset23654 -.set Lset23655, Ltmp4651-Lfunc_begin0 - .quad Lset23655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23656, Ltmp4717-Lfunc_begin0 - .quad Lset23656 -.set Lset23657, Ltmp4719-Lfunc_begin0 - .quad Lset23657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23658, Ltmp4783-Lfunc_begin0 - .quad Lset23658 -.set Lset23659, Ltmp4784-Lfunc_begin0 - .quad Lset23659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23660, Ltmp4813-Lfunc_begin0 - .quad Lset23660 -.set Lset23661, Ltmp4814-Lfunc_begin0 - .quad Lset23661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23662, Ltmp4843-Lfunc_begin0 - .quad Lset23662 -.set Lset23663, Ltmp4844-Lfunc_begin0 - .quad Lset23663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23664, Ltmp4902-Lfunc_begin0 - .quad Lset23664 -.set Lset23665, Ltmp4903-Lfunc_begin0 - .quad Lset23665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23666, Ltmp4943-Lfunc_begin0 - .quad Lset23666 -.set Lset23667, Ltmp4944-Lfunc_begin0 - .quad Lset23667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23668, Ltmp5000-Lfunc_begin0 - .quad Lset23668 -.set Lset23669, Ltmp5001-Lfunc_begin0 - .quad Lset23669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23670, Ltmp5040-Lfunc_begin0 - .quad Lset23670 -.set Lset23671, Ltmp5041-Lfunc_begin0 - .quad Lset23671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23672, Ltmp5078-Lfunc_begin0 - .quad Lset23672 -.set Lset23673, Ltmp5079-Lfunc_begin0 - .quad Lset23673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23674, Ltmp5114-Lfunc_begin0 - .quad Lset23674 -.set Lset23675, Ltmp5115-Lfunc_begin0 - .quad Lset23675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23676, Ltmp5146-Lfunc_begin0 - .quad Lset23676 -.set Lset23677, Ltmp5147-Lfunc_begin0 - .quad Lset23677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23678, Ltmp5178-Lfunc_begin0 - .quad Lset23678 -.set Lset23679, Ltmp5179-Lfunc_begin0 - .quad Lset23679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23680, Ltmp5210-Lfunc_begin0 - .quad Lset23680 -.set Lset23681, Ltmp5211-Lfunc_begin0 - .quad Lset23681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23682, Ltmp5228-Lfunc_begin0 - .quad Lset23682 -.set Lset23683, Ltmp5229-Lfunc_begin0 - .quad Lset23683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23684, Ltmp5246-Lfunc_begin0 - .quad Lset23684 -.set Lset23685, Ltmp5247-Lfunc_begin0 - .quad Lset23685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23686, Ltmp5271-Lfunc_begin0 - .quad Lset23686 -.set Lset23687, Ltmp5272-Lfunc_begin0 - .quad Lset23687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23688, Ltmp5296-Lfunc_begin0 - .quad Lset23688 -.set Lset23689, Ltmp5297-Lfunc_begin0 - .quad Lset23689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23690, Ltmp5322-Lfunc_begin0 - .quad Lset23690 -.set Lset23691, Ltmp5323-Lfunc_begin0 - .quad Lset23691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23692, Ltmp5347-Lfunc_begin0 - .quad Lset23692 -.set Lset23693, Ltmp5348-Lfunc_begin0 - .quad Lset23693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23694, Ltmp5372-Lfunc_begin0 - .quad Lset23694 -.set Lset23695, Ltmp5373-Lfunc_begin0 - .quad Lset23695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23696, Ltmp5397-Lfunc_begin0 - .quad Lset23696 -.set Lset23697, Ltmp5398-Lfunc_begin0 - .quad Lset23697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23698, Ltmp5422-Lfunc_begin0 - .quad Lset23698 -.set Lset23699, Ltmp5423-Lfunc_begin0 - .quad Lset23699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23700, Ltmp5447-Lfunc_begin0 - .quad Lset23700 -.set Lset23701, Ltmp5448-Lfunc_begin0 - .quad Lset23701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23702, Ltmp5472-Lfunc_begin0 - .quad Lset23702 -.set Lset23703, Ltmp5473-Lfunc_begin0 - .quad Lset23703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23704, Ltmp5498-Lfunc_begin0 - .quad Lset23704 -.set Lset23705, Ltmp5499-Lfunc_begin0 - .quad Lset23705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23706, Ltmp5523-Lfunc_begin0 - .quad Lset23706 -.set Lset23707, Ltmp5524-Lfunc_begin0 - .quad Lset23707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23708, Ltmp5548-Lfunc_begin0 - .quad Lset23708 -.set Lset23709, Ltmp5549-Lfunc_begin0 - .quad Lset23709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23710, Ltmp5573-Lfunc_begin0 - .quad Lset23710 -.set Lset23711, Ltmp5574-Lfunc_begin0 - .quad Lset23711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23712, Ltmp5598-Lfunc_begin0 - .quad Lset23712 -.set Lset23713, Ltmp5599-Lfunc_begin0 - .quad Lset23713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23714, Ltmp5631-Lfunc_begin0 - .quad Lset23714 -.set Lset23715, Ltmp5632-Lfunc_begin0 - .quad Lset23715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23716, Ltmp5662-Lfunc_begin0 - .quad Lset23716 -.set Lset23717, Ltmp5663-Lfunc_begin0 - .quad Lset23717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23718, Ltmp5687-Lfunc_begin0 - .quad Lset23718 -.set Lset23719, Ltmp5688-Lfunc_begin0 - .quad Lset23719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23720, Ltmp5712-Lfunc_begin0 - .quad Lset23720 -.set Lset23721, Ltmp5713-Lfunc_begin0 - .quad Lset23721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23722, Ltmp5737-Lfunc_begin0 - .quad Lset23722 -.set Lset23723, Ltmp5738-Lfunc_begin0 - .quad Lset23723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23724, Ltmp5767-Lfunc_begin0 - .quad Lset23724 -.set Lset23725, Ltmp5768-Lfunc_begin0 - .quad Lset23725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23726, Ltmp5795-Lfunc_begin0 - .quad Lset23726 -.set Lset23727, Ltmp5796-Lfunc_begin0 - .quad Lset23727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23728, Ltmp5814-Lfunc_begin0 - .quad Lset23728 -.set Lset23729, Ltmp5815-Lfunc_begin0 - .quad Lset23729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23730, Ltmp5833-Lfunc_begin0 - .quad Lset23730 -.set Lset23731, Ltmp5834-Lfunc_begin0 - .quad Lset23731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23732, Ltmp5852-Lfunc_begin0 - .quad Lset23732 -.set Lset23733, Ltmp5853-Lfunc_begin0 - .quad Lset23733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23734, Ltmp5871-Lfunc_begin0 - .quad Lset23734 -.set Lset23735, Ltmp5872-Lfunc_begin0 - .quad Lset23735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23736, Ltmp5890-Lfunc_begin0 - .quad Lset23736 -.set Lset23737, Ltmp5891-Lfunc_begin0 - .quad Lset23737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23738, Ltmp5920-Lfunc_begin0 - .quad Lset23738 -.set Lset23739, Ltmp5921-Lfunc_begin0 - .quad Lset23739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc279: -.set Lset23740, Ltmp1186-Lfunc_begin0 - .quad Lset23740 -.set Lset23741, Ltmp1187-Lfunc_begin0 - .quad Lset23741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23742, Ltmp1215-Lfunc_begin0 - .quad Lset23742 -.set Lset23743, Ltmp1216-Lfunc_begin0 - .quad Lset23743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23744, Ltmp1237-Lfunc_begin0 - .quad Lset23744 -.set Lset23745, Ltmp1238-Lfunc_begin0 - .quad Lset23745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23746, Ltmp1260-Lfunc_begin0 - .quad Lset23746 -.set Lset23747, Ltmp1261-Lfunc_begin0 - .quad Lset23747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23748, Ltmp1281-Lfunc_begin0 - .quad Lset23748 -.set Lset23749, Ltmp1282-Lfunc_begin0 - .quad Lset23749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23750, Ltmp1314-Lfunc_begin0 - .quad Lset23750 -.set Lset23751, Ltmp1315-Lfunc_begin0 - .quad Lset23751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23752, Ltmp1338-Lfunc_begin0 - .quad Lset23752 -.set Lset23753, Ltmp1339-Lfunc_begin0 - .quad Lset23753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23754, Ltmp1368-Lfunc_begin0 - .quad Lset23754 -.set Lset23755, Ltmp1369-Lfunc_begin0 - .quad Lset23755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23756, Ltmp1462-Lfunc_begin0 - .quad Lset23756 -.set Lset23757, Ltmp1464-Lfunc_begin0 - .quad Lset23757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23758, Ltmp1557-Lfunc_begin0 - .quad Lset23758 -.set Lset23759, Ltmp1559-Lfunc_begin0 - .quad Lset23759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23760, Ltmp1713-Lfunc_begin0 - .quad Lset23760 -.set Lset23761, Ltmp1715-Lfunc_begin0 - .quad Lset23761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23762, Ltmp1864-Lfunc_begin0 - .quad Lset23762 -.set Lset23763, Ltmp1866-Lfunc_begin0 - .quad Lset23763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23764, Ltmp2004-Lfunc_begin0 - .quad Lset23764 -.set Lset23765, Ltmp2006-Lfunc_begin0 - .quad Lset23765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23766, Ltmp2074-Lfunc_begin0 - .quad Lset23766 -.set Lset23767, Ltmp2076-Lfunc_begin0 - .quad Lset23767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23768, Ltmp2120-Lfunc_begin0 - .quad Lset23768 -.set Lset23769, Ltmp2121-Lfunc_begin0 - .quad Lset23769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23770, Ltmp2193-Lfunc_begin0 - .quad Lset23770 -.set Lset23771, Ltmp2195-Lfunc_begin0 - .quad Lset23771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23772, Ltmp2253-Lfunc_begin0 - .quad Lset23772 -.set Lset23773, Ltmp2255-Lfunc_begin0 - .quad Lset23773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23774, Ltmp2302-Lfunc_begin0 - .quad Lset23774 -.set Lset23775, Ltmp2304-Lfunc_begin0 - .quad Lset23775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23776, Ltmp2351-Lfunc_begin0 - .quad Lset23776 -.set Lset23777, Ltmp2353-Lfunc_begin0 - .quad Lset23777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23778, Ltmp2400-Lfunc_begin0 - .quad Lset23778 -.set Lset23779, Ltmp2402-Lfunc_begin0 - .quad Lset23779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23780, Ltmp2444-Lfunc_begin0 - .quad Lset23780 -.set Lset23781, Ltmp2446-Lfunc_begin0 - .quad Lset23781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23782, Ltmp2499-Lfunc_begin0 - .quad Lset23782 -.set Lset23783, Ltmp2501-Lfunc_begin0 - .quad Lset23783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23784, Ltmp2554-Lfunc_begin0 - .quad Lset23784 -.set Lset23785, Ltmp2556-Lfunc_begin0 - .quad Lset23785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23786, Ltmp2609-Lfunc_begin0 - .quad Lset23786 -.set Lset23787, Ltmp2611-Lfunc_begin0 - .quad Lset23787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23788, Ltmp2673-Lfunc_begin0 - .quad Lset23788 -.set Lset23789, Ltmp2675-Lfunc_begin0 - .quad Lset23789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23790, Ltmp2738-Lfunc_begin0 - .quad Lset23790 -.set Lset23791, Ltmp2740-Lfunc_begin0 - .quad Lset23791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23792, Ltmp2811-Lfunc_begin0 - .quad Lset23792 -.set Lset23793, Ltmp2813-Lfunc_begin0 - .quad Lset23793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23794, Ltmp2871-Lfunc_begin0 - .quad Lset23794 -.set Lset23795, Ltmp2873-Lfunc_begin0 - .quad Lset23795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23796, Ltmp2922-Lfunc_begin0 - .quad Lset23796 -.set Lset23797, Ltmp2924-Lfunc_begin0 - .quad Lset23797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23798, Ltmp2957-Lfunc_begin0 - .quad Lset23798 -.set Lset23799, Ltmp2958-Lfunc_begin0 - .quad Lset23799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23800, Ltmp2997-Lfunc_begin0 - .quad Lset23800 -.set Lset23801, Ltmp2999-Lfunc_begin0 - .quad Lset23801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23802, Ltmp3024-Lfunc_begin0 - .quad Lset23802 -.set Lset23803, Ltmp3025-Lfunc_begin0 - .quad Lset23803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23804, Ltmp3047-Lfunc_begin0 - .quad Lset23804 -.set Lset23805, Ltmp3048-Lfunc_begin0 - .quad Lset23805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23806, Ltmp3096-Lfunc_begin0 - .quad Lset23806 -.set Lset23807, Ltmp3097-Lfunc_begin0 - .quad Lset23807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23808, Ltmp3120-Lfunc_begin0 - .quad Lset23808 -.set Lset23809, Ltmp3122-Lfunc_begin0 - .quad Lset23809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23810, Ltmp3161-Lfunc_begin0 - .quad Lset23810 -.set Lset23811, Ltmp3163-Lfunc_begin0 - .quad Lset23811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23812, Ltmp3227-Lfunc_begin0 - .quad Lset23812 -.set Lset23813, Ltmp3228-Lfunc_begin0 - .quad Lset23813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23814, Ltmp3292-Lfunc_begin0 - .quad Lset23814 -.set Lset23815, Ltmp3293-Lfunc_begin0 - .quad Lset23815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23816, Ltmp3329-Lfunc_begin0 - .quad Lset23816 -.set Lset23817, Ltmp3330-Lfunc_begin0 - .quad Lset23817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23818, Ltmp3375-Lfunc_begin0 - .quad Lset23818 -.set Lset23819, Ltmp3376-Lfunc_begin0 - .quad Lset23819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23820, Ltmp3407-Lfunc_begin0 - .quad Lset23820 -.set Lset23821, Ltmp3408-Lfunc_begin0 - .quad Lset23821 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23822, Ltmp3435-Lfunc_begin0 - .quad Lset23822 -.set Lset23823, Ltmp3436-Lfunc_begin0 - .quad Lset23823 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23824, Ltmp3537-Lfunc_begin0 - .quad Lset23824 -.set Lset23825, Ltmp3538-Lfunc_begin0 - .quad Lset23825 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23826, Ltmp3638-Lfunc_begin0 - .quad Lset23826 -.set Lset23827, Ltmp3640-Lfunc_begin0 - .quad Lset23827 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23828, Ltmp3685-Lfunc_begin0 - .quad Lset23828 -.set Lset23829, Ltmp3686-Lfunc_begin0 - .quad Lset23829 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23830, Ltmp3807-Lfunc_begin0 - .quad Lset23830 -.set Lset23831, Ltmp3809-Lfunc_begin0 - .quad Lset23831 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23832, Ltmp3864-Lfunc_begin0 - .quad Lset23832 -.set Lset23833, Ltmp3865-Lfunc_begin0 - .quad Lset23833 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23834, Ltmp3933-Lfunc_begin0 - .quad Lset23834 -.set Lset23835, Ltmp3934-Lfunc_begin0 - .quad Lset23835 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23836, Ltmp3959-Lfunc_begin0 - .quad Lset23836 -.set Lset23837, Ltmp3960-Lfunc_begin0 - .quad Lset23837 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23838, Ltmp3985-Lfunc_begin0 - .quad Lset23838 -.set Lset23839, Ltmp3986-Lfunc_begin0 - .quad Lset23839 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23840, Ltmp4011-Lfunc_begin0 - .quad Lset23840 -.set Lset23841, Ltmp4012-Lfunc_begin0 - .quad Lset23841 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23842, Ltmp4046-Lfunc_begin0 - .quad Lset23842 -.set Lset23843, Ltmp4047-Lfunc_begin0 - .quad Lset23843 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23844, Ltmp4084-Lfunc_begin0 - .quad Lset23844 -.set Lset23845, Ltmp4085-Lfunc_begin0 - .quad Lset23845 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23846, Ltmp4106-Lfunc_begin0 - .quad Lset23846 -.set Lset23847, Ltmp4107-Lfunc_begin0 - .quad Lset23847 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23848, Ltmp4146-Lfunc_begin0 - .quad Lset23848 -.set Lset23849, Ltmp4147-Lfunc_begin0 - .quad Lset23849 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23850, Ltmp4187-Lfunc_begin0 - .quad Lset23850 -.set Lset23851, Ltmp4188-Lfunc_begin0 - .quad Lset23851 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23852, Ltmp4227-Lfunc_begin0 - .quad Lset23852 -.set Lset23853, Ltmp4228-Lfunc_begin0 - .quad Lset23853 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23854, Ltmp4268-Lfunc_begin0 - .quad Lset23854 -.set Lset23855, Ltmp4269-Lfunc_begin0 - .quad Lset23855 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23856, Ltmp4308-Lfunc_begin0 - .quad Lset23856 -.set Lset23857, Ltmp4309-Lfunc_begin0 - .quad Lset23857 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23858, Ltmp4349-Lfunc_begin0 - .quad Lset23858 -.set Lset23859, Ltmp4350-Lfunc_begin0 - .quad Lset23859 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23860, Ltmp4380-Lfunc_begin0 - .quad Lset23860 -.set Lset23861, Ltmp4381-Lfunc_begin0 - .quad Lset23861 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23862, Ltmp4412-Lfunc_begin0 - .quad Lset23862 -.set Lset23863, Ltmp4414-Lfunc_begin0 - .quad Lset23863 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23864, Ltmp4454-Lfunc_begin0 - .quad Lset23864 -.set Lset23865, Ltmp4455-Lfunc_begin0 - .quad Lset23865 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23866, Ltmp4495-Lfunc_begin0 - .quad Lset23866 -.set Lset23867, Ltmp4496-Lfunc_begin0 - .quad Lset23867 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23868, Ltmp4579-Lfunc_begin0 - .quad Lset23868 -.set Lset23869, Ltmp4581-Lfunc_begin0 - .quad Lset23869 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23870, Ltmp4649-Lfunc_begin0 - .quad Lset23870 -.set Lset23871, Ltmp4651-Lfunc_begin0 - .quad Lset23871 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23872, Ltmp4717-Lfunc_begin0 - .quad Lset23872 -.set Lset23873, Ltmp4719-Lfunc_begin0 - .quad Lset23873 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23874, Ltmp4783-Lfunc_begin0 - .quad Lset23874 -.set Lset23875, Ltmp4784-Lfunc_begin0 - .quad Lset23875 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23876, Ltmp4813-Lfunc_begin0 - .quad Lset23876 -.set Lset23877, Ltmp4814-Lfunc_begin0 - .quad Lset23877 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23878, Ltmp4843-Lfunc_begin0 - .quad Lset23878 -.set Lset23879, Ltmp4844-Lfunc_begin0 - .quad Lset23879 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23880, Ltmp4902-Lfunc_begin0 - .quad Lset23880 -.set Lset23881, Ltmp4903-Lfunc_begin0 - .quad Lset23881 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23882, Ltmp4943-Lfunc_begin0 - .quad Lset23882 -.set Lset23883, Ltmp4944-Lfunc_begin0 - .quad Lset23883 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23884, Ltmp5000-Lfunc_begin0 - .quad Lset23884 -.set Lset23885, Ltmp5001-Lfunc_begin0 - .quad Lset23885 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23886, Ltmp5040-Lfunc_begin0 - .quad Lset23886 -.set Lset23887, Ltmp5041-Lfunc_begin0 - .quad Lset23887 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23888, Ltmp5078-Lfunc_begin0 - .quad Lset23888 -.set Lset23889, Ltmp5079-Lfunc_begin0 - .quad Lset23889 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23890, Ltmp5114-Lfunc_begin0 - .quad Lset23890 -.set Lset23891, Ltmp5115-Lfunc_begin0 - .quad Lset23891 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23892, Ltmp5146-Lfunc_begin0 - .quad Lset23892 -.set Lset23893, Ltmp5147-Lfunc_begin0 - .quad Lset23893 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23894, Ltmp5178-Lfunc_begin0 - .quad Lset23894 -.set Lset23895, Ltmp5179-Lfunc_begin0 - .quad Lset23895 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23896, Ltmp5210-Lfunc_begin0 - .quad Lset23896 -.set Lset23897, Ltmp5211-Lfunc_begin0 - .quad Lset23897 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23898, Ltmp5228-Lfunc_begin0 - .quad Lset23898 -.set Lset23899, Ltmp5229-Lfunc_begin0 - .quad Lset23899 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23900, Ltmp5246-Lfunc_begin0 - .quad Lset23900 -.set Lset23901, Ltmp5247-Lfunc_begin0 - .quad Lset23901 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23902, Ltmp5271-Lfunc_begin0 - .quad Lset23902 -.set Lset23903, Ltmp5272-Lfunc_begin0 - .quad Lset23903 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23904, Ltmp5296-Lfunc_begin0 - .quad Lset23904 -.set Lset23905, Ltmp5297-Lfunc_begin0 - .quad Lset23905 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23906, Ltmp5322-Lfunc_begin0 - .quad Lset23906 -.set Lset23907, Ltmp5323-Lfunc_begin0 - .quad Lset23907 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23908, Ltmp5347-Lfunc_begin0 - .quad Lset23908 -.set Lset23909, Ltmp5348-Lfunc_begin0 - .quad Lset23909 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23910, Ltmp5372-Lfunc_begin0 - .quad Lset23910 -.set Lset23911, Ltmp5373-Lfunc_begin0 - .quad Lset23911 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23912, Ltmp5397-Lfunc_begin0 - .quad Lset23912 -.set Lset23913, Ltmp5398-Lfunc_begin0 - .quad Lset23913 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23914, Ltmp5422-Lfunc_begin0 - .quad Lset23914 -.set Lset23915, Ltmp5423-Lfunc_begin0 - .quad Lset23915 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23916, Ltmp5447-Lfunc_begin0 - .quad Lset23916 -.set Lset23917, Ltmp5448-Lfunc_begin0 - .quad Lset23917 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23918, Ltmp5472-Lfunc_begin0 - .quad Lset23918 -.set Lset23919, Ltmp5473-Lfunc_begin0 - .quad Lset23919 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23920, Ltmp5498-Lfunc_begin0 - .quad Lset23920 -.set Lset23921, Ltmp5499-Lfunc_begin0 - .quad Lset23921 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23922, Ltmp5523-Lfunc_begin0 - .quad Lset23922 -.set Lset23923, Ltmp5524-Lfunc_begin0 - .quad Lset23923 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23924, Ltmp5548-Lfunc_begin0 - .quad Lset23924 -.set Lset23925, Ltmp5549-Lfunc_begin0 - .quad Lset23925 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23926, Ltmp5573-Lfunc_begin0 - .quad Lset23926 -.set Lset23927, Ltmp5574-Lfunc_begin0 - .quad Lset23927 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23928, Ltmp5598-Lfunc_begin0 - .quad Lset23928 -.set Lset23929, Ltmp5599-Lfunc_begin0 - .quad Lset23929 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23930, Ltmp5631-Lfunc_begin0 - .quad Lset23930 -.set Lset23931, Ltmp5632-Lfunc_begin0 - .quad Lset23931 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23932, Ltmp5662-Lfunc_begin0 - .quad Lset23932 -.set Lset23933, Ltmp5663-Lfunc_begin0 - .quad Lset23933 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23934, Ltmp5687-Lfunc_begin0 - .quad Lset23934 -.set Lset23935, Ltmp5688-Lfunc_begin0 - .quad Lset23935 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23936, Ltmp5712-Lfunc_begin0 - .quad Lset23936 -.set Lset23937, Ltmp5713-Lfunc_begin0 - .quad Lset23937 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23938, Ltmp5737-Lfunc_begin0 - .quad Lset23938 -.set Lset23939, Ltmp5738-Lfunc_begin0 - .quad Lset23939 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23940, Ltmp5767-Lfunc_begin0 - .quad Lset23940 -.set Lset23941, Ltmp5768-Lfunc_begin0 - .quad Lset23941 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23942, Ltmp5795-Lfunc_begin0 - .quad Lset23942 -.set Lset23943, Ltmp5796-Lfunc_begin0 - .quad Lset23943 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23944, Ltmp5814-Lfunc_begin0 - .quad Lset23944 -.set Lset23945, Ltmp5815-Lfunc_begin0 - .quad Lset23945 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23946, Ltmp5833-Lfunc_begin0 - .quad Lset23946 -.set Lset23947, Ltmp5834-Lfunc_begin0 - .quad Lset23947 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23948, Ltmp5852-Lfunc_begin0 - .quad Lset23948 -.set Lset23949, Ltmp5853-Lfunc_begin0 - .quad Lset23949 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23950, Ltmp5871-Lfunc_begin0 - .quad Lset23950 -.set Lset23951, Ltmp5872-Lfunc_begin0 - .quad Lset23951 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23952, Ltmp5890-Lfunc_begin0 - .quad Lset23952 -.set Lset23953, Ltmp5891-Lfunc_begin0 - .quad Lset23953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23954, Ltmp5920-Lfunc_begin0 - .quad Lset23954 -.set Lset23955, Ltmp5921-Lfunc_begin0 - .quad Lset23955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc280: -.set Lset23956, Ltmp1186-Lfunc_begin0 - .quad Lset23956 -.set Lset23957, Ltmp1187-Lfunc_begin0 - .quad Lset23957 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23958, Ltmp1215-Lfunc_begin0 - .quad Lset23958 -.set Lset23959, Ltmp1216-Lfunc_begin0 - .quad Lset23959 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23960, Ltmp1237-Lfunc_begin0 - .quad Lset23960 -.set Lset23961, Ltmp1238-Lfunc_begin0 - .quad Lset23961 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23962, Ltmp1260-Lfunc_begin0 - .quad Lset23962 -.set Lset23963, Ltmp1261-Lfunc_begin0 - .quad Lset23963 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23964, Ltmp1281-Lfunc_begin0 - .quad Lset23964 -.set Lset23965, Ltmp1282-Lfunc_begin0 - .quad Lset23965 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23966, Ltmp1314-Lfunc_begin0 - .quad Lset23966 -.set Lset23967, Ltmp1315-Lfunc_begin0 - .quad Lset23967 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23968, Ltmp1338-Lfunc_begin0 - .quad Lset23968 -.set Lset23969, Ltmp1339-Lfunc_begin0 - .quad Lset23969 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23970, Ltmp1368-Lfunc_begin0 - .quad Lset23970 -.set Lset23971, Ltmp1369-Lfunc_begin0 - .quad Lset23971 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23972, Ltmp1462-Lfunc_begin0 - .quad Lset23972 -.set Lset23973, Ltmp1464-Lfunc_begin0 - .quad Lset23973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23974, Ltmp1557-Lfunc_begin0 - .quad Lset23974 -.set Lset23975, Ltmp1559-Lfunc_begin0 - .quad Lset23975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23976, Ltmp1713-Lfunc_begin0 - .quad Lset23976 -.set Lset23977, Ltmp1715-Lfunc_begin0 - .quad Lset23977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23978, Ltmp1864-Lfunc_begin0 - .quad Lset23978 -.set Lset23979, Ltmp1866-Lfunc_begin0 - .quad Lset23979 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23980, Ltmp2004-Lfunc_begin0 - .quad Lset23980 -.set Lset23981, Ltmp2006-Lfunc_begin0 - .quad Lset23981 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23982, Ltmp2074-Lfunc_begin0 - .quad Lset23982 -.set Lset23983, Ltmp2076-Lfunc_begin0 - .quad Lset23983 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23984, Ltmp2120-Lfunc_begin0 - .quad Lset23984 -.set Lset23985, Ltmp2121-Lfunc_begin0 - .quad Lset23985 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23986, Ltmp2193-Lfunc_begin0 - .quad Lset23986 -.set Lset23987, Ltmp2195-Lfunc_begin0 - .quad Lset23987 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23988, Ltmp2253-Lfunc_begin0 - .quad Lset23988 -.set Lset23989, Ltmp2255-Lfunc_begin0 - .quad Lset23989 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23990, Ltmp2302-Lfunc_begin0 - .quad Lset23990 -.set Lset23991, Ltmp2304-Lfunc_begin0 - .quad Lset23991 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23992, Ltmp2351-Lfunc_begin0 - .quad Lset23992 -.set Lset23993, Ltmp2353-Lfunc_begin0 - .quad Lset23993 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23994, Ltmp2400-Lfunc_begin0 - .quad Lset23994 -.set Lset23995, Ltmp2402-Lfunc_begin0 - .quad Lset23995 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23996, Ltmp2444-Lfunc_begin0 - .quad Lset23996 -.set Lset23997, Ltmp2446-Lfunc_begin0 - .quad Lset23997 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset23998, Ltmp2499-Lfunc_begin0 - .quad Lset23998 -.set Lset23999, Ltmp2501-Lfunc_begin0 - .quad Lset23999 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24000, Ltmp2554-Lfunc_begin0 - .quad Lset24000 -.set Lset24001, Ltmp2556-Lfunc_begin0 - .quad Lset24001 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24002, Ltmp2609-Lfunc_begin0 - .quad Lset24002 -.set Lset24003, Ltmp2611-Lfunc_begin0 - .quad Lset24003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24004, Ltmp2673-Lfunc_begin0 - .quad Lset24004 -.set Lset24005, Ltmp2675-Lfunc_begin0 - .quad Lset24005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24006, Ltmp2738-Lfunc_begin0 - .quad Lset24006 -.set Lset24007, Ltmp2740-Lfunc_begin0 - .quad Lset24007 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24008, Ltmp2811-Lfunc_begin0 - .quad Lset24008 -.set Lset24009, Ltmp2813-Lfunc_begin0 - .quad Lset24009 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24010, Ltmp2871-Lfunc_begin0 - .quad Lset24010 -.set Lset24011, Ltmp2873-Lfunc_begin0 - .quad Lset24011 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24012, Ltmp2922-Lfunc_begin0 - .quad Lset24012 -.set Lset24013, Ltmp2924-Lfunc_begin0 - .quad Lset24013 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24014, Ltmp2957-Lfunc_begin0 - .quad Lset24014 -.set Lset24015, Ltmp2958-Lfunc_begin0 - .quad Lset24015 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24016, Ltmp2997-Lfunc_begin0 - .quad Lset24016 -.set Lset24017, Ltmp2999-Lfunc_begin0 - .quad Lset24017 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24018, Ltmp3024-Lfunc_begin0 - .quad Lset24018 -.set Lset24019, Ltmp3025-Lfunc_begin0 - .quad Lset24019 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24020, Ltmp3047-Lfunc_begin0 - .quad Lset24020 -.set Lset24021, Ltmp3048-Lfunc_begin0 - .quad Lset24021 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24022, Ltmp3096-Lfunc_begin0 - .quad Lset24022 -.set Lset24023, Ltmp3097-Lfunc_begin0 - .quad Lset24023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24024, Ltmp3120-Lfunc_begin0 - .quad Lset24024 -.set Lset24025, Ltmp3122-Lfunc_begin0 - .quad Lset24025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24026, Ltmp3161-Lfunc_begin0 - .quad Lset24026 -.set Lset24027, Ltmp3163-Lfunc_begin0 - .quad Lset24027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24028, Ltmp3227-Lfunc_begin0 - .quad Lset24028 -.set Lset24029, Ltmp3228-Lfunc_begin0 - .quad Lset24029 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24030, Ltmp3292-Lfunc_begin0 - .quad Lset24030 -.set Lset24031, Ltmp3293-Lfunc_begin0 - .quad Lset24031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24032, Ltmp3329-Lfunc_begin0 - .quad Lset24032 -.set Lset24033, Ltmp3330-Lfunc_begin0 - .quad Lset24033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24034, Ltmp3375-Lfunc_begin0 - .quad Lset24034 -.set Lset24035, Ltmp3376-Lfunc_begin0 - .quad Lset24035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24036, Ltmp3407-Lfunc_begin0 - .quad Lset24036 -.set Lset24037, Ltmp3408-Lfunc_begin0 - .quad Lset24037 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24038, Ltmp3435-Lfunc_begin0 - .quad Lset24038 -.set Lset24039, Ltmp3436-Lfunc_begin0 - .quad Lset24039 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24040, Ltmp3537-Lfunc_begin0 - .quad Lset24040 -.set Lset24041, Ltmp3538-Lfunc_begin0 - .quad Lset24041 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24042, Ltmp3638-Lfunc_begin0 - .quad Lset24042 -.set Lset24043, Ltmp3640-Lfunc_begin0 - .quad Lset24043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24044, Ltmp3685-Lfunc_begin0 - .quad Lset24044 -.set Lset24045, Ltmp3686-Lfunc_begin0 - .quad Lset24045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24046, Ltmp3807-Lfunc_begin0 - .quad Lset24046 -.set Lset24047, Ltmp3809-Lfunc_begin0 - .quad Lset24047 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24048, Ltmp3864-Lfunc_begin0 - .quad Lset24048 -.set Lset24049, Ltmp3865-Lfunc_begin0 - .quad Lset24049 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24050, Ltmp3933-Lfunc_begin0 - .quad Lset24050 -.set Lset24051, Ltmp3934-Lfunc_begin0 - .quad Lset24051 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24052, Ltmp3959-Lfunc_begin0 - .quad Lset24052 -.set Lset24053, Ltmp3960-Lfunc_begin0 - .quad Lset24053 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24054, Ltmp3985-Lfunc_begin0 - .quad Lset24054 -.set Lset24055, Ltmp3986-Lfunc_begin0 - .quad Lset24055 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24056, Ltmp4011-Lfunc_begin0 - .quad Lset24056 -.set Lset24057, Ltmp4012-Lfunc_begin0 - .quad Lset24057 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24058, Ltmp4046-Lfunc_begin0 - .quad Lset24058 -.set Lset24059, Ltmp4047-Lfunc_begin0 - .quad Lset24059 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24060, Ltmp4084-Lfunc_begin0 - .quad Lset24060 -.set Lset24061, Ltmp4085-Lfunc_begin0 - .quad Lset24061 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24062, Ltmp4106-Lfunc_begin0 - .quad Lset24062 -.set Lset24063, Ltmp4107-Lfunc_begin0 - .quad Lset24063 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24064, Ltmp4146-Lfunc_begin0 - .quad Lset24064 -.set Lset24065, Ltmp4147-Lfunc_begin0 - .quad Lset24065 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24066, Ltmp4187-Lfunc_begin0 - .quad Lset24066 -.set Lset24067, Ltmp4188-Lfunc_begin0 - .quad Lset24067 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24068, Ltmp4227-Lfunc_begin0 - .quad Lset24068 -.set Lset24069, Ltmp4228-Lfunc_begin0 - .quad Lset24069 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24070, Ltmp4268-Lfunc_begin0 - .quad Lset24070 -.set Lset24071, Ltmp4269-Lfunc_begin0 - .quad Lset24071 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24072, Ltmp4308-Lfunc_begin0 - .quad Lset24072 -.set Lset24073, Ltmp4309-Lfunc_begin0 - .quad Lset24073 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24074, Ltmp4349-Lfunc_begin0 - .quad Lset24074 -.set Lset24075, Ltmp4350-Lfunc_begin0 - .quad Lset24075 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24076, Ltmp4380-Lfunc_begin0 - .quad Lset24076 -.set Lset24077, Ltmp4381-Lfunc_begin0 - .quad Lset24077 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24078, Ltmp4412-Lfunc_begin0 - .quad Lset24078 -.set Lset24079, Ltmp4414-Lfunc_begin0 - .quad Lset24079 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24080, Ltmp4454-Lfunc_begin0 - .quad Lset24080 -.set Lset24081, Ltmp4455-Lfunc_begin0 - .quad Lset24081 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24082, Ltmp4495-Lfunc_begin0 - .quad Lset24082 -.set Lset24083, Ltmp4496-Lfunc_begin0 - .quad Lset24083 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24084, Ltmp4579-Lfunc_begin0 - .quad Lset24084 -.set Lset24085, Ltmp4581-Lfunc_begin0 - .quad Lset24085 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24086, Ltmp4649-Lfunc_begin0 - .quad Lset24086 -.set Lset24087, Ltmp4651-Lfunc_begin0 - .quad Lset24087 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24088, Ltmp4717-Lfunc_begin0 - .quad Lset24088 -.set Lset24089, Ltmp4719-Lfunc_begin0 - .quad Lset24089 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24090, Ltmp4783-Lfunc_begin0 - .quad Lset24090 -.set Lset24091, Ltmp4784-Lfunc_begin0 - .quad Lset24091 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24092, Ltmp4813-Lfunc_begin0 - .quad Lset24092 -.set Lset24093, Ltmp4814-Lfunc_begin0 - .quad Lset24093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24094, Ltmp4843-Lfunc_begin0 - .quad Lset24094 -.set Lset24095, Ltmp4844-Lfunc_begin0 - .quad Lset24095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24096, Ltmp4902-Lfunc_begin0 - .quad Lset24096 -.set Lset24097, Ltmp4903-Lfunc_begin0 - .quad Lset24097 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24098, Ltmp4943-Lfunc_begin0 - .quad Lset24098 -.set Lset24099, Ltmp4944-Lfunc_begin0 - .quad Lset24099 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24100, Ltmp5000-Lfunc_begin0 - .quad Lset24100 -.set Lset24101, Ltmp5001-Lfunc_begin0 - .quad Lset24101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24102, Ltmp5040-Lfunc_begin0 - .quad Lset24102 -.set Lset24103, Ltmp5041-Lfunc_begin0 - .quad Lset24103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24104, Ltmp5078-Lfunc_begin0 - .quad Lset24104 -.set Lset24105, Ltmp5079-Lfunc_begin0 - .quad Lset24105 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24106, Ltmp5114-Lfunc_begin0 - .quad Lset24106 -.set Lset24107, Ltmp5115-Lfunc_begin0 - .quad Lset24107 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24108, Ltmp5146-Lfunc_begin0 - .quad Lset24108 -.set Lset24109, Ltmp5147-Lfunc_begin0 - .quad Lset24109 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24110, Ltmp5178-Lfunc_begin0 - .quad Lset24110 -.set Lset24111, Ltmp5179-Lfunc_begin0 - .quad Lset24111 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24112, Ltmp5210-Lfunc_begin0 - .quad Lset24112 -.set Lset24113, Ltmp5211-Lfunc_begin0 - .quad Lset24113 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24114, Ltmp5228-Lfunc_begin0 - .quad Lset24114 -.set Lset24115, Ltmp5229-Lfunc_begin0 - .quad Lset24115 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24116, Ltmp5246-Lfunc_begin0 - .quad Lset24116 -.set Lset24117, Ltmp5247-Lfunc_begin0 - .quad Lset24117 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24118, Ltmp5271-Lfunc_begin0 - .quad Lset24118 -.set Lset24119, Ltmp5272-Lfunc_begin0 - .quad Lset24119 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24120, Ltmp5296-Lfunc_begin0 - .quad Lset24120 -.set Lset24121, Ltmp5297-Lfunc_begin0 - .quad Lset24121 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24122, Ltmp5322-Lfunc_begin0 - .quad Lset24122 -.set Lset24123, Ltmp5323-Lfunc_begin0 - .quad Lset24123 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24124, Ltmp5347-Lfunc_begin0 - .quad Lset24124 -.set Lset24125, Ltmp5348-Lfunc_begin0 - .quad Lset24125 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24126, Ltmp5372-Lfunc_begin0 - .quad Lset24126 -.set Lset24127, Ltmp5373-Lfunc_begin0 - .quad Lset24127 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24128, Ltmp5397-Lfunc_begin0 - .quad Lset24128 -.set Lset24129, Ltmp5398-Lfunc_begin0 - .quad Lset24129 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24130, Ltmp5422-Lfunc_begin0 - .quad Lset24130 -.set Lset24131, Ltmp5423-Lfunc_begin0 - .quad Lset24131 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24132, Ltmp5447-Lfunc_begin0 - .quad Lset24132 -.set Lset24133, Ltmp5448-Lfunc_begin0 - .quad Lset24133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24134, Ltmp5472-Lfunc_begin0 - .quad Lset24134 -.set Lset24135, Ltmp5473-Lfunc_begin0 - .quad Lset24135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24136, Ltmp5498-Lfunc_begin0 - .quad Lset24136 -.set Lset24137, Ltmp5499-Lfunc_begin0 - .quad Lset24137 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24138, Ltmp5523-Lfunc_begin0 - .quad Lset24138 -.set Lset24139, Ltmp5524-Lfunc_begin0 - .quad Lset24139 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24140, Ltmp5548-Lfunc_begin0 - .quad Lset24140 -.set Lset24141, Ltmp5549-Lfunc_begin0 - .quad Lset24141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24142, Ltmp5573-Lfunc_begin0 - .quad Lset24142 -.set Lset24143, Ltmp5574-Lfunc_begin0 - .quad Lset24143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24144, Ltmp5598-Lfunc_begin0 - .quad Lset24144 -.set Lset24145, Ltmp5599-Lfunc_begin0 - .quad Lset24145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24146, Ltmp5631-Lfunc_begin0 - .quad Lset24146 -.set Lset24147, Ltmp5632-Lfunc_begin0 - .quad Lset24147 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24148, Ltmp5662-Lfunc_begin0 - .quad Lset24148 -.set Lset24149, Ltmp5663-Lfunc_begin0 - .quad Lset24149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24150, Ltmp5687-Lfunc_begin0 - .quad Lset24150 -.set Lset24151, Ltmp5688-Lfunc_begin0 - .quad Lset24151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24152, Ltmp5712-Lfunc_begin0 - .quad Lset24152 -.set Lset24153, Ltmp5713-Lfunc_begin0 - .quad Lset24153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24154, Ltmp5737-Lfunc_begin0 - .quad Lset24154 -.set Lset24155, Ltmp5738-Lfunc_begin0 - .quad Lset24155 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24156, Ltmp5767-Lfunc_begin0 - .quad Lset24156 -.set Lset24157, Ltmp5768-Lfunc_begin0 - .quad Lset24157 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24158, Ltmp5795-Lfunc_begin0 - .quad Lset24158 -.set Lset24159, Ltmp5796-Lfunc_begin0 - .quad Lset24159 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24160, Ltmp5814-Lfunc_begin0 - .quad Lset24160 -.set Lset24161, Ltmp5815-Lfunc_begin0 - .quad Lset24161 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24162, Ltmp5833-Lfunc_begin0 - .quad Lset24162 -.set Lset24163, Ltmp5834-Lfunc_begin0 - .quad Lset24163 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24164, Ltmp5852-Lfunc_begin0 - .quad Lset24164 -.set Lset24165, Ltmp5853-Lfunc_begin0 - .quad Lset24165 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24166, Ltmp5871-Lfunc_begin0 - .quad Lset24166 -.set Lset24167, Ltmp5872-Lfunc_begin0 - .quad Lset24167 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24168, Ltmp5890-Lfunc_begin0 - .quad Lset24168 -.set Lset24169, Ltmp5891-Lfunc_begin0 - .quad Lset24169 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24170, Ltmp5920-Lfunc_begin0 - .quad Lset24170 -.set Lset24171, Ltmp5921-Lfunc_begin0 - .quad Lset24171 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc281: -.set Lset24172, Ltmp1186-Lfunc_begin0 - .quad Lset24172 -.set Lset24173, Ltmp1187-Lfunc_begin0 - .quad Lset24173 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24174, Ltmp1215-Lfunc_begin0 - .quad Lset24174 -.set Lset24175, Ltmp1216-Lfunc_begin0 - .quad Lset24175 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24176, Ltmp1237-Lfunc_begin0 - .quad Lset24176 -.set Lset24177, Ltmp1238-Lfunc_begin0 - .quad Lset24177 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24178, Ltmp1260-Lfunc_begin0 - .quad Lset24178 -.set Lset24179, Ltmp1261-Lfunc_begin0 - .quad Lset24179 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24180, Ltmp1281-Lfunc_begin0 - .quad Lset24180 -.set Lset24181, Ltmp1282-Lfunc_begin0 - .quad Lset24181 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24182, Ltmp1314-Lfunc_begin0 - .quad Lset24182 -.set Lset24183, Ltmp1315-Lfunc_begin0 - .quad Lset24183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24184, Ltmp1338-Lfunc_begin0 - .quad Lset24184 -.set Lset24185, Ltmp1339-Lfunc_begin0 - .quad Lset24185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24186, Ltmp1368-Lfunc_begin0 - .quad Lset24186 -.set Lset24187, Ltmp1369-Lfunc_begin0 - .quad Lset24187 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24188, Ltmp1462-Lfunc_begin0 - .quad Lset24188 -.set Lset24189, Ltmp1464-Lfunc_begin0 - .quad Lset24189 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24190, Ltmp1557-Lfunc_begin0 - .quad Lset24190 -.set Lset24191, Ltmp1559-Lfunc_begin0 - .quad Lset24191 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24192, Ltmp1713-Lfunc_begin0 - .quad Lset24192 -.set Lset24193, Ltmp1715-Lfunc_begin0 - .quad Lset24193 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24194, Ltmp1864-Lfunc_begin0 - .quad Lset24194 -.set Lset24195, Ltmp1866-Lfunc_begin0 - .quad Lset24195 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24196, Ltmp2004-Lfunc_begin0 - .quad Lset24196 -.set Lset24197, Ltmp2006-Lfunc_begin0 - .quad Lset24197 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24198, Ltmp2074-Lfunc_begin0 - .quad Lset24198 -.set Lset24199, Ltmp2076-Lfunc_begin0 - .quad Lset24199 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24200, Ltmp2120-Lfunc_begin0 - .quad Lset24200 -.set Lset24201, Ltmp2121-Lfunc_begin0 - .quad Lset24201 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24202, Ltmp2193-Lfunc_begin0 - .quad Lset24202 -.set Lset24203, Ltmp2195-Lfunc_begin0 - .quad Lset24203 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24204, Ltmp2253-Lfunc_begin0 - .quad Lset24204 -.set Lset24205, Ltmp2255-Lfunc_begin0 - .quad Lset24205 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24206, Ltmp2302-Lfunc_begin0 - .quad Lset24206 -.set Lset24207, Ltmp2304-Lfunc_begin0 - .quad Lset24207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24208, Ltmp2351-Lfunc_begin0 - .quad Lset24208 -.set Lset24209, Ltmp2353-Lfunc_begin0 - .quad Lset24209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24210, Ltmp2400-Lfunc_begin0 - .quad Lset24210 -.set Lset24211, Ltmp2402-Lfunc_begin0 - .quad Lset24211 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24212, Ltmp2444-Lfunc_begin0 - .quad Lset24212 -.set Lset24213, Ltmp2446-Lfunc_begin0 - .quad Lset24213 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24214, Ltmp2499-Lfunc_begin0 - .quad Lset24214 -.set Lset24215, Ltmp2501-Lfunc_begin0 - .quad Lset24215 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24216, Ltmp2554-Lfunc_begin0 - .quad Lset24216 -.set Lset24217, Ltmp2556-Lfunc_begin0 - .quad Lset24217 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24218, Ltmp2609-Lfunc_begin0 - .quad Lset24218 -.set Lset24219, Ltmp2611-Lfunc_begin0 - .quad Lset24219 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24220, Ltmp2673-Lfunc_begin0 - .quad Lset24220 -.set Lset24221, Ltmp2675-Lfunc_begin0 - .quad Lset24221 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24222, Ltmp2738-Lfunc_begin0 - .quad Lset24222 -.set Lset24223, Ltmp2740-Lfunc_begin0 - .quad Lset24223 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24224, Ltmp2811-Lfunc_begin0 - .quad Lset24224 -.set Lset24225, Ltmp2813-Lfunc_begin0 - .quad Lset24225 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24226, Ltmp2871-Lfunc_begin0 - .quad Lset24226 -.set Lset24227, Ltmp2873-Lfunc_begin0 - .quad Lset24227 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24228, Ltmp2922-Lfunc_begin0 - .quad Lset24228 -.set Lset24229, Ltmp2924-Lfunc_begin0 - .quad Lset24229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24230, Ltmp2957-Lfunc_begin0 - .quad Lset24230 -.set Lset24231, Ltmp2958-Lfunc_begin0 - .quad Lset24231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24232, Ltmp2997-Lfunc_begin0 - .quad Lset24232 -.set Lset24233, Ltmp2999-Lfunc_begin0 - .quad Lset24233 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24234, Ltmp3024-Lfunc_begin0 - .quad Lset24234 -.set Lset24235, Ltmp3025-Lfunc_begin0 - .quad Lset24235 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24236, Ltmp3047-Lfunc_begin0 - .quad Lset24236 -.set Lset24237, Ltmp3048-Lfunc_begin0 - .quad Lset24237 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24238, Ltmp3096-Lfunc_begin0 - .quad Lset24238 -.set Lset24239, Ltmp3097-Lfunc_begin0 - .quad Lset24239 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24240, Ltmp3120-Lfunc_begin0 - .quad Lset24240 -.set Lset24241, Ltmp3122-Lfunc_begin0 - .quad Lset24241 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24242, Ltmp3161-Lfunc_begin0 - .quad Lset24242 -.set Lset24243, Ltmp3163-Lfunc_begin0 - .quad Lset24243 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24244, Ltmp3227-Lfunc_begin0 - .quad Lset24244 -.set Lset24245, Ltmp3228-Lfunc_begin0 - .quad Lset24245 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24246, Ltmp3292-Lfunc_begin0 - .quad Lset24246 -.set Lset24247, Ltmp3293-Lfunc_begin0 - .quad Lset24247 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24248, Ltmp3329-Lfunc_begin0 - .quad Lset24248 -.set Lset24249, Ltmp3330-Lfunc_begin0 - .quad Lset24249 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24250, Ltmp3375-Lfunc_begin0 - .quad Lset24250 -.set Lset24251, Ltmp3376-Lfunc_begin0 - .quad Lset24251 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24252, Ltmp3407-Lfunc_begin0 - .quad Lset24252 -.set Lset24253, Ltmp3408-Lfunc_begin0 - .quad Lset24253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24254, Ltmp3435-Lfunc_begin0 - .quad Lset24254 -.set Lset24255, Ltmp3436-Lfunc_begin0 - .quad Lset24255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24256, Ltmp3537-Lfunc_begin0 - .quad Lset24256 -.set Lset24257, Ltmp3538-Lfunc_begin0 - .quad Lset24257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24258, Ltmp3638-Lfunc_begin0 - .quad Lset24258 -.set Lset24259, Ltmp3640-Lfunc_begin0 - .quad Lset24259 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24260, Ltmp3685-Lfunc_begin0 - .quad Lset24260 -.set Lset24261, Ltmp3686-Lfunc_begin0 - .quad Lset24261 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24262, Ltmp3807-Lfunc_begin0 - .quad Lset24262 -.set Lset24263, Ltmp3809-Lfunc_begin0 - .quad Lset24263 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24264, Ltmp3864-Lfunc_begin0 - .quad Lset24264 -.set Lset24265, Ltmp3865-Lfunc_begin0 - .quad Lset24265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24266, Ltmp3933-Lfunc_begin0 - .quad Lset24266 -.set Lset24267, Ltmp3934-Lfunc_begin0 - .quad Lset24267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24268, Ltmp3959-Lfunc_begin0 - .quad Lset24268 -.set Lset24269, Ltmp3960-Lfunc_begin0 - .quad Lset24269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24270, Ltmp3985-Lfunc_begin0 - .quad Lset24270 -.set Lset24271, Ltmp3986-Lfunc_begin0 - .quad Lset24271 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24272, Ltmp4011-Lfunc_begin0 - .quad Lset24272 -.set Lset24273, Ltmp4012-Lfunc_begin0 - .quad Lset24273 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24274, Ltmp4046-Lfunc_begin0 - .quad Lset24274 -.set Lset24275, Ltmp4047-Lfunc_begin0 - .quad Lset24275 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24276, Ltmp4084-Lfunc_begin0 - .quad Lset24276 -.set Lset24277, Ltmp4085-Lfunc_begin0 - .quad Lset24277 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24278, Ltmp4106-Lfunc_begin0 - .quad Lset24278 -.set Lset24279, Ltmp4107-Lfunc_begin0 - .quad Lset24279 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24280, Ltmp4146-Lfunc_begin0 - .quad Lset24280 -.set Lset24281, Ltmp4147-Lfunc_begin0 - .quad Lset24281 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24282, Ltmp4187-Lfunc_begin0 - .quad Lset24282 -.set Lset24283, Ltmp4188-Lfunc_begin0 - .quad Lset24283 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24284, Ltmp4227-Lfunc_begin0 - .quad Lset24284 -.set Lset24285, Ltmp4228-Lfunc_begin0 - .quad Lset24285 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24286, Ltmp4268-Lfunc_begin0 - .quad Lset24286 -.set Lset24287, Ltmp4269-Lfunc_begin0 - .quad Lset24287 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24288, Ltmp4308-Lfunc_begin0 - .quad Lset24288 -.set Lset24289, Ltmp4309-Lfunc_begin0 - .quad Lset24289 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24290, Ltmp4349-Lfunc_begin0 - .quad Lset24290 -.set Lset24291, Ltmp4350-Lfunc_begin0 - .quad Lset24291 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24292, Ltmp4380-Lfunc_begin0 - .quad Lset24292 -.set Lset24293, Ltmp4381-Lfunc_begin0 - .quad Lset24293 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24294, Ltmp4412-Lfunc_begin0 - .quad Lset24294 -.set Lset24295, Ltmp4414-Lfunc_begin0 - .quad Lset24295 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24296, Ltmp4454-Lfunc_begin0 - .quad Lset24296 -.set Lset24297, Ltmp4455-Lfunc_begin0 - .quad Lset24297 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24298, Ltmp4495-Lfunc_begin0 - .quad Lset24298 -.set Lset24299, Ltmp4496-Lfunc_begin0 - .quad Lset24299 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24300, Ltmp4579-Lfunc_begin0 - .quad Lset24300 -.set Lset24301, Ltmp4581-Lfunc_begin0 - .quad Lset24301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24302, Ltmp4649-Lfunc_begin0 - .quad Lset24302 -.set Lset24303, Ltmp4651-Lfunc_begin0 - .quad Lset24303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24304, Ltmp4717-Lfunc_begin0 - .quad Lset24304 -.set Lset24305, Ltmp4719-Lfunc_begin0 - .quad Lset24305 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24306, Ltmp4783-Lfunc_begin0 - .quad Lset24306 -.set Lset24307, Ltmp4784-Lfunc_begin0 - .quad Lset24307 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24308, Ltmp4813-Lfunc_begin0 - .quad Lset24308 -.set Lset24309, Ltmp4814-Lfunc_begin0 - .quad Lset24309 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24310, Ltmp4843-Lfunc_begin0 - .quad Lset24310 -.set Lset24311, Ltmp4844-Lfunc_begin0 - .quad Lset24311 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24312, Ltmp4902-Lfunc_begin0 - .quad Lset24312 -.set Lset24313, Ltmp4903-Lfunc_begin0 - .quad Lset24313 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24314, Ltmp4943-Lfunc_begin0 - .quad Lset24314 -.set Lset24315, Ltmp4944-Lfunc_begin0 - .quad Lset24315 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24316, Ltmp5000-Lfunc_begin0 - .quad Lset24316 -.set Lset24317, Ltmp5001-Lfunc_begin0 - .quad Lset24317 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24318, Ltmp5040-Lfunc_begin0 - .quad Lset24318 -.set Lset24319, Ltmp5041-Lfunc_begin0 - .quad Lset24319 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24320, Ltmp5078-Lfunc_begin0 - .quad Lset24320 -.set Lset24321, Ltmp5079-Lfunc_begin0 - .quad Lset24321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24322, Ltmp5114-Lfunc_begin0 - .quad Lset24322 -.set Lset24323, Ltmp5115-Lfunc_begin0 - .quad Lset24323 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24324, Ltmp5146-Lfunc_begin0 - .quad Lset24324 -.set Lset24325, Ltmp5147-Lfunc_begin0 - .quad Lset24325 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24326, Ltmp5178-Lfunc_begin0 - .quad Lset24326 -.set Lset24327, Ltmp5179-Lfunc_begin0 - .quad Lset24327 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24328, Ltmp5210-Lfunc_begin0 - .quad Lset24328 -.set Lset24329, Ltmp5211-Lfunc_begin0 - .quad Lset24329 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24330, Ltmp5228-Lfunc_begin0 - .quad Lset24330 -.set Lset24331, Ltmp5229-Lfunc_begin0 - .quad Lset24331 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24332, Ltmp5246-Lfunc_begin0 - .quad Lset24332 -.set Lset24333, Ltmp5247-Lfunc_begin0 - .quad Lset24333 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24334, Ltmp5271-Lfunc_begin0 - .quad Lset24334 -.set Lset24335, Ltmp5272-Lfunc_begin0 - .quad Lset24335 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24336, Ltmp5296-Lfunc_begin0 - .quad Lset24336 -.set Lset24337, Ltmp5297-Lfunc_begin0 - .quad Lset24337 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24338, Ltmp5322-Lfunc_begin0 - .quad Lset24338 -.set Lset24339, Ltmp5323-Lfunc_begin0 - .quad Lset24339 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24340, Ltmp5347-Lfunc_begin0 - .quad Lset24340 -.set Lset24341, Ltmp5348-Lfunc_begin0 - .quad Lset24341 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24342, Ltmp5372-Lfunc_begin0 - .quad Lset24342 -.set Lset24343, Ltmp5373-Lfunc_begin0 - .quad Lset24343 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24344, Ltmp5397-Lfunc_begin0 - .quad Lset24344 -.set Lset24345, Ltmp5398-Lfunc_begin0 - .quad Lset24345 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24346, Ltmp5422-Lfunc_begin0 - .quad Lset24346 -.set Lset24347, Ltmp5423-Lfunc_begin0 - .quad Lset24347 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24348, Ltmp5447-Lfunc_begin0 - .quad Lset24348 -.set Lset24349, Ltmp5448-Lfunc_begin0 - .quad Lset24349 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24350, Ltmp5472-Lfunc_begin0 - .quad Lset24350 -.set Lset24351, Ltmp5473-Lfunc_begin0 - .quad Lset24351 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24352, Ltmp5498-Lfunc_begin0 - .quad Lset24352 -.set Lset24353, Ltmp5499-Lfunc_begin0 - .quad Lset24353 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24354, Ltmp5523-Lfunc_begin0 - .quad Lset24354 -.set Lset24355, Ltmp5524-Lfunc_begin0 - .quad Lset24355 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24356, Ltmp5548-Lfunc_begin0 - .quad Lset24356 -.set Lset24357, Ltmp5549-Lfunc_begin0 - .quad Lset24357 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24358, Ltmp5573-Lfunc_begin0 - .quad Lset24358 -.set Lset24359, Ltmp5574-Lfunc_begin0 - .quad Lset24359 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24360, Ltmp5598-Lfunc_begin0 - .quad Lset24360 -.set Lset24361, Ltmp5599-Lfunc_begin0 - .quad Lset24361 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24362, Ltmp5631-Lfunc_begin0 - .quad Lset24362 -.set Lset24363, Ltmp5632-Lfunc_begin0 - .quad Lset24363 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24364, Ltmp5662-Lfunc_begin0 - .quad Lset24364 -.set Lset24365, Ltmp5663-Lfunc_begin0 - .quad Lset24365 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24366, Ltmp5687-Lfunc_begin0 - .quad Lset24366 -.set Lset24367, Ltmp5688-Lfunc_begin0 - .quad Lset24367 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24368, Ltmp5712-Lfunc_begin0 - .quad Lset24368 -.set Lset24369, Ltmp5713-Lfunc_begin0 - .quad Lset24369 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24370, Ltmp5737-Lfunc_begin0 - .quad Lset24370 -.set Lset24371, Ltmp5738-Lfunc_begin0 - .quad Lset24371 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24372, Ltmp5767-Lfunc_begin0 - .quad Lset24372 -.set Lset24373, Ltmp5768-Lfunc_begin0 - .quad Lset24373 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24374, Ltmp5795-Lfunc_begin0 - .quad Lset24374 -.set Lset24375, Ltmp5796-Lfunc_begin0 - .quad Lset24375 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24376, Ltmp5814-Lfunc_begin0 - .quad Lset24376 -.set Lset24377, Ltmp5815-Lfunc_begin0 - .quad Lset24377 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24378, Ltmp5833-Lfunc_begin0 - .quad Lset24378 -.set Lset24379, Ltmp5834-Lfunc_begin0 - .quad Lset24379 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24380, Ltmp5852-Lfunc_begin0 - .quad Lset24380 -.set Lset24381, Ltmp5853-Lfunc_begin0 - .quad Lset24381 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24382, Ltmp5871-Lfunc_begin0 - .quad Lset24382 -.set Lset24383, Ltmp5872-Lfunc_begin0 - .quad Lset24383 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24384, Ltmp5890-Lfunc_begin0 - .quad Lset24384 -.set Lset24385, Ltmp5891-Lfunc_begin0 - .quad Lset24385 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24386, Ltmp5920-Lfunc_begin0 - .quad Lset24386 -.set Lset24387, Ltmp5921-Lfunc_begin0 - .quad Lset24387 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc282: -.set Lset24388, Ltmp1186-Lfunc_begin0 - .quad Lset24388 -.set Lset24389, Ltmp1187-Lfunc_begin0 - .quad Lset24389 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24390, Ltmp1215-Lfunc_begin0 - .quad Lset24390 -.set Lset24391, Ltmp1216-Lfunc_begin0 - .quad Lset24391 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24392, Ltmp1237-Lfunc_begin0 - .quad Lset24392 -.set Lset24393, Ltmp1238-Lfunc_begin0 - .quad Lset24393 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24394, Ltmp1260-Lfunc_begin0 - .quad Lset24394 -.set Lset24395, Ltmp1261-Lfunc_begin0 - .quad Lset24395 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24396, Ltmp1281-Lfunc_begin0 - .quad Lset24396 -.set Lset24397, Ltmp1282-Lfunc_begin0 - .quad Lset24397 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24398, Ltmp1314-Lfunc_begin0 - .quad Lset24398 -.set Lset24399, Ltmp1315-Lfunc_begin0 - .quad Lset24399 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24400, Ltmp1338-Lfunc_begin0 - .quad Lset24400 -.set Lset24401, Ltmp1339-Lfunc_begin0 - .quad Lset24401 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24402, Ltmp1368-Lfunc_begin0 - .quad Lset24402 -.set Lset24403, Ltmp1369-Lfunc_begin0 - .quad Lset24403 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24404, Ltmp1462-Lfunc_begin0 - .quad Lset24404 -.set Lset24405, Ltmp1464-Lfunc_begin0 - .quad Lset24405 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24406, Ltmp1557-Lfunc_begin0 - .quad Lset24406 -.set Lset24407, Ltmp1559-Lfunc_begin0 - .quad Lset24407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24408, Ltmp1713-Lfunc_begin0 - .quad Lset24408 -.set Lset24409, Ltmp1715-Lfunc_begin0 - .quad Lset24409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24410, Ltmp1864-Lfunc_begin0 - .quad Lset24410 -.set Lset24411, Ltmp1866-Lfunc_begin0 - .quad Lset24411 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24412, Ltmp2004-Lfunc_begin0 - .quad Lset24412 -.set Lset24413, Ltmp2006-Lfunc_begin0 - .quad Lset24413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24414, Ltmp2074-Lfunc_begin0 - .quad Lset24414 -.set Lset24415, Ltmp2076-Lfunc_begin0 - .quad Lset24415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24416, Ltmp2120-Lfunc_begin0 - .quad Lset24416 -.set Lset24417, Ltmp2121-Lfunc_begin0 - .quad Lset24417 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24418, Ltmp2193-Lfunc_begin0 - .quad Lset24418 -.set Lset24419, Ltmp2195-Lfunc_begin0 - .quad Lset24419 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24420, Ltmp2253-Lfunc_begin0 - .quad Lset24420 -.set Lset24421, Ltmp2255-Lfunc_begin0 - .quad Lset24421 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24422, Ltmp2302-Lfunc_begin0 - .quad Lset24422 -.set Lset24423, Ltmp2304-Lfunc_begin0 - .quad Lset24423 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24424, Ltmp2351-Lfunc_begin0 - .quad Lset24424 -.set Lset24425, Ltmp2353-Lfunc_begin0 - .quad Lset24425 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24426, Ltmp2400-Lfunc_begin0 - .quad Lset24426 -.set Lset24427, Ltmp2402-Lfunc_begin0 - .quad Lset24427 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24428, Ltmp2444-Lfunc_begin0 - .quad Lset24428 -.set Lset24429, Ltmp2446-Lfunc_begin0 - .quad Lset24429 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24430, Ltmp2499-Lfunc_begin0 - .quad Lset24430 -.set Lset24431, Ltmp2501-Lfunc_begin0 - .quad Lset24431 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24432, Ltmp2554-Lfunc_begin0 - .quad Lset24432 -.set Lset24433, Ltmp2556-Lfunc_begin0 - .quad Lset24433 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24434, Ltmp2609-Lfunc_begin0 - .quad Lset24434 -.set Lset24435, Ltmp2611-Lfunc_begin0 - .quad Lset24435 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24436, Ltmp2673-Lfunc_begin0 - .quad Lset24436 -.set Lset24437, Ltmp2675-Lfunc_begin0 - .quad Lset24437 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24438, Ltmp2738-Lfunc_begin0 - .quad Lset24438 -.set Lset24439, Ltmp2740-Lfunc_begin0 - .quad Lset24439 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24440, Ltmp2811-Lfunc_begin0 - .quad Lset24440 -.set Lset24441, Ltmp2813-Lfunc_begin0 - .quad Lset24441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24442, Ltmp2871-Lfunc_begin0 - .quad Lset24442 -.set Lset24443, Ltmp2873-Lfunc_begin0 - .quad Lset24443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24444, Ltmp2922-Lfunc_begin0 - .quad Lset24444 -.set Lset24445, Ltmp2924-Lfunc_begin0 - .quad Lset24445 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24446, Ltmp2957-Lfunc_begin0 - .quad Lset24446 -.set Lset24447, Ltmp2958-Lfunc_begin0 - .quad Lset24447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24448, Ltmp2997-Lfunc_begin0 - .quad Lset24448 -.set Lset24449, Ltmp2999-Lfunc_begin0 - .quad Lset24449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24450, Ltmp3024-Lfunc_begin0 - .quad Lset24450 -.set Lset24451, Ltmp3025-Lfunc_begin0 - .quad Lset24451 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24452, Ltmp3047-Lfunc_begin0 - .quad Lset24452 -.set Lset24453, Ltmp3048-Lfunc_begin0 - .quad Lset24453 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24454, Ltmp3096-Lfunc_begin0 - .quad Lset24454 -.set Lset24455, Ltmp3097-Lfunc_begin0 - .quad Lset24455 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24456, Ltmp3120-Lfunc_begin0 - .quad Lset24456 -.set Lset24457, Ltmp3122-Lfunc_begin0 - .quad Lset24457 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24458, Ltmp3161-Lfunc_begin0 - .quad Lset24458 -.set Lset24459, Ltmp3163-Lfunc_begin0 - .quad Lset24459 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24460, Ltmp3227-Lfunc_begin0 - .quad Lset24460 -.set Lset24461, Ltmp3228-Lfunc_begin0 - .quad Lset24461 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24462, Ltmp3292-Lfunc_begin0 - .quad Lset24462 -.set Lset24463, Ltmp3293-Lfunc_begin0 - .quad Lset24463 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24464, Ltmp3329-Lfunc_begin0 - .quad Lset24464 -.set Lset24465, Ltmp3330-Lfunc_begin0 - .quad Lset24465 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24466, Ltmp3375-Lfunc_begin0 - .quad Lset24466 -.set Lset24467, Ltmp3376-Lfunc_begin0 - .quad Lset24467 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24468, Ltmp3407-Lfunc_begin0 - .quad Lset24468 -.set Lset24469, Ltmp3408-Lfunc_begin0 - .quad Lset24469 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24470, Ltmp3435-Lfunc_begin0 - .quad Lset24470 -.set Lset24471, Ltmp3436-Lfunc_begin0 - .quad Lset24471 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24472, Ltmp3537-Lfunc_begin0 - .quad Lset24472 -.set Lset24473, Ltmp3538-Lfunc_begin0 - .quad Lset24473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24474, Ltmp3638-Lfunc_begin0 - .quad Lset24474 -.set Lset24475, Ltmp3640-Lfunc_begin0 - .quad Lset24475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24476, Ltmp3685-Lfunc_begin0 - .quad Lset24476 -.set Lset24477, Ltmp3686-Lfunc_begin0 - .quad Lset24477 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24478, Ltmp3807-Lfunc_begin0 - .quad Lset24478 -.set Lset24479, Ltmp3809-Lfunc_begin0 - .quad Lset24479 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24480, Ltmp3864-Lfunc_begin0 - .quad Lset24480 -.set Lset24481, Ltmp3865-Lfunc_begin0 - .quad Lset24481 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24482, Ltmp3933-Lfunc_begin0 - .quad Lset24482 -.set Lset24483, Ltmp3934-Lfunc_begin0 - .quad Lset24483 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24484, Ltmp3959-Lfunc_begin0 - .quad Lset24484 -.set Lset24485, Ltmp3960-Lfunc_begin0 - .quad Lset24485 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24486, Ltmp3985-Lfunc_begin0 - .quad Lset24486 -.set Lset24487, Ltmp3986-Lfunc_begin0 - .quad Lset24487 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24488, Ltmp4011-Lfunc_begin0 - .quad Lset24488 -.set Lset24489, Ltmp4012-Lfunc_begin0 - .quad Lset24489 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24490, Ltmp4046-Lfunc_begin0 - .quad Lset24490 -.set Lset24491, Ltmp4047-Lfunc_begin0 - .quad Lset24491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24492, Ltmp4084-Lfunc_begin0 - .quad Lset24492 -.set Lset24493, Ltmp4085-Lfunc_begin0 - .quad Lset24493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24494, Ltmp4106-Lfunc_begin0 - .quad Lset24494 -.set Lset24495, Ltmp4107-Lfunc_begin0 - .quad Lset24495 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24496, Ltmp4146-Lfunc_begin0 - .quad Lset24496 -.set Lset24497, Ltmp4147-Lfunc_begin0 - .quad Lset24497 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24498, Ltmp4187-Lfunc_begin0 - .quad Lset24498 -.set Lset24499, Ltmp4188-Lfunc_begin0 - .quad Lset24499 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24500, Ltmp4227-Lfunc_begin0 - .quad Lset24500 -.set Lset24501, Ltmp4228-Lfunc_begin0 - .quad Lset24501 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24502, Ltmp4268-Lfunc_begin0 - .quad Lset24502 -.set Lset24503, Ltmp4269-Lfunc_begin0 - .quad Lset24503 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24504, Ltmp4308-Lfunc_begin0 - .quad Lset24504 -.set Lset24505, Ltmp4309-Lfunc_begin0 - .quad Lset24505 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24506, Ltmp4349-Lfunc_begin0 - .quad Lset24506 -.set Lset24507, Ltmp4350-Lfunc_begin0 - .quad Lset24507 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24508, Ltmp4380-Lfunc_begin0 - .quad Lset24508 -.set Lset24509, Ltmp4381-Lfunc_begin0 - .quad Lset24509 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24510, Ltmp4412-Lfunc_begin0 - .quad Lset24510 -.set Lset24511, Ltmp4414-Lfunc_begin0 - .quad Lset24511 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24512, Ltmp4454-Lfunc_begin0 - .quad Lset24512 -.set Lset24513, Ltmp4455-Lfunc_begin0 - .quad Lset24513 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24514, Ltmp4495-Lfunc_begin0 - .quad Lset24514 -.set Lset24515, Ltmp4496-Lfunc_begin0 - .quad Lset24515 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24516, Ltmp4579-Lfunc_begin0 - .quad Lset24516 -.set Lset24517, Ltmp4581-Lfunc_begin0 - .quad Lset24517 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24518, Ltmp4649-Lfunc_begin0 - .quad Lset24518 -.set Lset24519, Ltmp4651-Lfunc_begin0 - .quad Lset24519 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24520, Ltmp4717-Lfunc_begin0 - .quad Lset24520 -.set Lset24521, Ltmp4719-Lfunc_begin0 - .quad Lset24521 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24522, Ltmp4783-Lfunc_begin0 - .quad Lset24522 -.set Lset24523, Ltmp4784-Lfunc_begin0 - .quad Lset24523 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24524, Ltmp4813-Lfunc_begin0 - .quad Lset24524 -.set Lset24525, Ltmp4814-Lfunc_begin0 - .quad Lset24525 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24526, Ltmp4843-Lfunc_begin0 - .quad Lset24526 -.set Lset24527, Ltmp4844-Lfunc_begin0 - .quad Lset24527 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24528, Ltmp4902-Lfunc_begin0 - .quad Lset24528 -.set Lset24529, Ltmp4903-Lfunc_begin0 - .quad Lset24529 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24530, Ltmp4943-Lfunc_begin0 - .quad Lset24530 -.set Lset24531, Ltmp4944-Lfunc_begin0 - .quad Lset24531 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24532, Ltmp5000-Lfunc_begin0 - .quad Lset24532 -.set Lset24533, Ltmp5001-Lfunc_begin0 - .quad Lset24533 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24534, Ltmp5040-Lfunc_begin0 - .quad Lset24534 -.set Lset24535, Ltmp5041-Lfunc_begin0 - .quad Lset24535 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24536, Ltmp5078-Lfunc_begin0 - .quad Lset24536 -.set Lset24537, Ltmp5079-Lfunc_begin0 - .quad Lset24537 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24538, Ltmp5114-Lfunc_begin0 - .quad Lset24538 -.set Lset24539, Ltmp5115-Lfunc_begin0 - .quad Lset24539 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24540, Ltmp5146-Lfunc_begin0 - .quad Lset24540 -.set Lset24541, Ltmp5147-Lfunc_begin0 - .quad Lset24541 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24542, Ltmp5178-Lfunc_begin0 - .quad Lset24542 -.set Lset24543, Ltmp5179-Lfunc_begin0 - .quad Lset24543 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24544, Ltmp5210-Lfunc_begin0 - .quad Lset24544 -.set Lset24545, Ltmp5211-Lfunc_begin0 - .quad Lset24545 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24546, Ltmp5228-Lfunc_begin0 - .quad Lset24546 -.set Lset24547, Ltmp5229-Lfunc_begin0 - .quad Lset24547 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24548, Ltmp5246-Lfunc_begin0 - .quad Lset24548 -.set Lset24549, Ltmp5247-Lfunc_begin0 - .quad Lset24549 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24550, Ltmp5271-Lfunc_begin0 - .quad Lset24550 -.set Lset24551, Ltmp5272-Lfunc_begin0 - .quad Lset24551 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24552, Ltmp5296-Lfunc_begin0 - .quad Lset24552 -.set Lset24553, Ltmp5297-Lfunc_begin0 - .quad Lset24553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24554, Ltmp5322-Lfunc_begin0 - .quad Lset24554 -.set Lset24555, Ltmp5323-Lfunc_begin0 - .quad Lset24555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24556, Ltmp5347-Lfunc_begin0 - .quad Lset24556 -.set Lset24557, Ltmp5348-Lfunc_begin0 - .quad Lset24557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24558, Ltmp5372-Lfunc_begin0 - .quad Lset24558 -.set Lset24559, Ltmp5373-Lfunc_begin0 - .quad Lset24559 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24560, Ltmp5397-Lfunc_begin0 - .quad Lset24560 -.set Lset24561, Ltmp5398-Lfunc_begin0 - .quad Lset24561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24562, Ltmp5422-Lfunc_begin0 - .quad Lset24562 -.set Lset24563, Ltmp5423-Lfunc_begin0 - .quad Lset24563 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24564, Ltmp5447-Lfunc_begin0 - .quad Lset24564 -.set Lset24565, Ltmp5448-Lfunc_begin0 - .quad Lset24565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24566, Ltmp5472-Lfunc_begin0 - .quad Lset24566 -.set Lset24567, Ltmp5473-Lfunc_begin0 - .quad Lset24567 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24568, Ltmp5498-Lfunc_begin0 - .quad Lset24568 -.set Lset24569, Ltmp5499-Lfunc_begin0 - .quad Lset24569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24570, Ltmp5523-Lfunc_begin0 - .quad Lset24570 -.set Lset24571, Ltmp5524-Lfunc_begin0 - .quad Lset24571 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24572, Ltmp5548-Lfunc_begin0 - .quad Lset24572 -.set Lset24573, Ltmp5549-Lfunc_begin0 - .quad Lset24573 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24574, Ltmp5573-Lfunc_begin0 - .quad Lset24574 -.set Lset24575, Ltmp5574-Lfunc_begin0 - .quad Lset24575 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24576, Ltmp5598-Lfunc_begin0 - .quad Lset24576 -.set Lset24577, Ltmp5599-Lfunc_begin0 - .quad Lset24577 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24578, Ltmp5631-Lfunc_begin0 - .quad Lset24578 -.set Lset24579, Ltmp5632-Lfunc_begin0 - .quad Lset24579 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24580, Ltmp5662-Lfunc_begin0 - .quad Lset24580 -.set Lset24581, Ltmp5663-Lfunc_begin0 - .quad Lset24581 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24582, Ltmp5687-Lfunc_begin0 - .quad Lset24582 -.set Lset24583, Ltmp5688-Lfunc_begin0 - .quad Lset24583 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24584, Ltmp5712-Lfunc_begin0 - .quad Lset24584 -.set Lset24585, Ltmp5713-Lfunc_begin0 - .quad Lset24585 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24586, Ltmp5737-Lfunc_begin0 - .quad Lset24586 -.set Lset24587, Ltmp5738-Lfunc_begin0 - .quad Lset24587 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24588, Ltmp5767-Lfunc_begin0 - .quad Lset24588 -.set Lset24589, Ltmp5768-Lfunc_begin0 - .quad Lset24589 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24590, Ltmp5795-Lfunc_begin0 - .quad Lset24590 -.set Lset24591, Ltmp5796-Lfunc_begin0 - .quad Lset24591 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24592, Ltmp5814-Lfunc_begin0 - .quad Lset24592 -.set Lset24593, Ltmp5815-Lfunc_begin0 - .quad Lset24593 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24594, Ltmp5833-Lfunc_begin0 - .quad Lset24594 -.set Lset24595, Ltmp5834-Lfunc_begin0 - .quad Lset24595 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24596, Ltmp5852-Lfunc_begin0 - .quad Lset24596 -.set Lset24597, Ltmp5853-Lfunc_begin0 - .quad Lset24597 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24598, Ltmp5871-Lfunc_begin0 - .quad Lset24598 -.set Lset24599, Ltmp5872-Lfunc_begin0 - .quad Lset24599 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24600, Ltmp5890-Lfunc_begin0 - .quad Lset24600 -.set Lset24601, Ltmp5891-Lfunc_begin0 - .quad Lset24601 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24602, Ltmp5920-Lfunc_begin0 - .quad Lset24602 -.set Lset24603, Ltmp5921-Lfunc_begin0 - .quad Lset24603 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc283: -.set Lset24604, Ltmp1186-Lfunc_begin0 - .quad Lset24604 -.set Lset24605, Ltmp1187-Lfunc_begin0 - .quad Lset24605 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24606, Ltmp1215-Lfunc_begin0 - .quad Lset24606 -.set Lset24607, Ltmp1216-Lfunc_begin0 - .quad Lset24607 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24608, Ltmp1237-Lfunc_begin0 - .quad Lset24608 -.set Lset24609, Ltmp1238-Lfunc_begin0 - .quad Lset24609 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24610, Ltmp1260-Lfunc_begin0 - .quad Lset24610 -.set Lset24611, Ltmp1261-Lfunc_begin0 - .quad Lset24611 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24612, Ltmp1281-Lfunc_begin0 - .quad Lset24612 -.set Lset24613, Ltmp1282-Lfunc_begin0 - .quad Lset24613 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24614, Ltmp1314-Lfunc_begin0 - .quad Lset24614 -.set Lset24615, Ltmp1315-Lfunc_begin0 - .quad Lset24615 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24616, Ltmp1338-Lfunc_begin0 - .quad Lset24616 -.set Lset24617, Ltmp1339-Lfunc_begin0 - .quad Lset24617 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24618, Ltmp1368-Lfunc_begin0 - .quad Lset24618 -.set Lset24619, Ltmp1369-Lfunc_begin0 - .quad Lset24619 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24620, Ltmp1462-Lfunc_begin0 - .quad Lset24620 -.set Lset24621, Ltmp1464-Lfunc_begin0 - .quad Lset24621 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24622, Ltmp1557-Lfunc_begin0 - .quad Lset24622 -.set Lset24623, Ltmp1559-Lfunc_begin0 - .quad Lset24623 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24624, Ltmp1713-Lfunc_begin0 - .quad Lset24624 -.set Lset24625, Ltmp1715-Lfunc_begin0 - .quad Lset24625 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24626, Ltmp1864-Lfunc_begin0 - .quad Lset24626 -.set Lset24627, Ltmp1866-Lfunc_begin0 - .quad Lset24627 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24628, Ltmp2004-Lfunc_begin0 - .quad Lset24628 -.set Lset24629, Ltmp2006-Lfunc_begin0 - .quad Lset24629 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24630, Ltmp2074-Lfunc_begin0 - .quad Lset24630 -.set Lset24631, Ltmp2076-Lfunc_begin0 - .quad Lset24631 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24632, Ltmp2120-Lfunc_begin0 - .quad Lset24632 -.set Lset24633, Ltmp2121-Lfunc_begin0 - .quad Lset24633 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24634, Ltmp2193-Lfunc_begin0 - .quad Lset24634 -.set Lset24635, Ltmp2195-Lfunc_begin0 - .quad Lset24635 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24636, Ltmp2253-Lfunc_begin0 - .quad Lset24636 -.set Lset24637, Ltmp2255-Lfunc_begin0 - .quad Lset24637 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24638, Ltmp2302-Lfunc_begin0 - .quad Lset24638 -.set Lset24639, Ltmp2304-Lfunc_begin0 - .quad Lset24639 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24640, Ltmp2351-Lfunc_begin0 - .quad Lset24640 -.set Lset24641, Ltmp2353-Lfunc_begin0 - .quad Lset24641 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24642, Ltmp2400-Lfunc_begin0 - .quad Lset24642 -.set Lset24643, Ltmp2402-Lfunc_begin0 - .quad Lset24643 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24644, Ltmp2444-Lfunc_begin0 - .quad Lset24644 -.set Lset24645, Ltmp2446-Lfunc_begin0 - .quad Lset24645 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24646, Ltmp2499-Lfunc_begin0 - .quad Lset24646 -.set Lset24647, Ltmp2501-Lfunc_begin0 - .quad Lset24647 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24648, Ltmp2554-Lfunc_begin0 - .quad Lset24648 -.set Lset24649, Ltmp2556-Lfunc_begin0 - .quad Lset24649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24650, Ltmp2609-Lfunc_begin0 - .quad Lset24650 -.set Lset24651, Ltmp2611-Lfunc_begin0 - .quad Lset24651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24652, Ltmp2673-Lfunc_begin0 - .quad Lset24652 -.set Lset24653, Ltmp2675-Lfunc_begin0 - .quad Lset24653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24654, Ltmp2738-Lfunc_begin0 - .quad Lset24654 -.set Lset24655, Ltmp2740-Lfunc_begin0 - .quad Lset24655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24656, Ltmp2811-Lfunc_begin0 - .quad Lset24656 -.set Lset24657, Ltmp2813-Lfunc_begin0 - .quad Lset24657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24658, Ltmp2871-Lfunc_begin0 - .quad Lset24658 -.set Lset24659, Ltmp2873-Lfunc_begin0 - .quad Lset24659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24660, Ltmp2922-Lfunc_begin0 - .quad Lset24660 -.set Lset24661, Ltmp2924-Lfunc_begin0 - .quad Lset24661 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24662, Ltmp2957-Lfunc_begin0 - .quad Lset24662 -.set Lset24663, Ltmp2958-Lfunc_begin0 - .quad Lset24663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24664, Ltmp2997-Lfunc_begin0 - .quad Lset24664 -.set Lset24665, Ltmp2999-Lfunc_begin0 - .quad Lset24665 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24666, Ltmp3024-Lfunc_begin0 - .quad Lset24666 -.set Lset24667, Ltmp3025-Lfunc_begin0 - .quad Lset24667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24668, Ltmp3047-Lfunc_begin0 - .quad Lset24668 -.set Lset24669, Ltmp3048-Lfunc_begin0 - .quad Lset24669 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24670, Ltmp3096-Lfunc_begin0 - .quad Lset24670 -.set Lset24671, Ltmp3097-Lfunc_begin0 - .quad Lset24671 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24672, Ltmp3120-Lfunc_begin0 - .quad Lset24672 -.set Lset24673, Ltmp3122-Lfunc_begin0 - .quad Lset24673 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24674, Ltmp3161-Lfunc_begin0 - .quad Lset24674 -.set Lset24675, Ltmp3163-Lfunc_begin0 - .quad Lset24675 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24676, Ltmp3227-Lfunc_begin0 - .quad Lset24676 -.set Lset24677, Ltmp3228-Lfunc_begin0 - .quad Lset24677 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24678, Ltmp3292-Lfunc_begin0 - .quad Lset24678 -.set Lset24679, Ltmp3293-Lfunc_begin0 - .quad Lset24679 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24680, Ltmp3329-Lfunc_begin0 - .quad Lset24680 -.set Lset24681, Ltmp3330-Lfunc_begin0 - .quad Lset24681 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24682, Ltmp3375-Lfunc_begin0 - .quad Lset24682 -.set Lset24683, Ltmp3376-Lfunc_begin0 - .quad Lset24683 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24684, Ltmp3407-Lfunc_begin0 - .quad Lset24684 -.set Lset24685, Ltmp3408-Lfunc_begin0 - .quad Lset24685 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24686, Ltmp3435-Lfunc_begin0 - .quad Lset24686 -.set Lset24687, Ltmp3436-Lfunc_begin0 - .quad Lset24687 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24688, Ltmp3537-Lfunc_begin0 - .quad Lset24688 -.set Lset24689, Ltmp3538-Lfunc_begin0 - .quad Lset24689 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24690, Ltmp3638-Lfunc_begin0 - .quad Lset24690 -.set Lset24691, Ltmp3640-Lfunc_begin0 - .quad Lset24691 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24692, Ltmp3685-Lfunc_begin0 - .quad Lset24692 -.set Lset24693, Ltmp3686-Lfunc_begin0 - .quad Lset24693 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24694, Ltmp3807-Lfunc_begin0 - .quad Lset24694 -.set Lset24695, Ltmp3809-Lfunc_begin0 - .quad Lset24695 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24696, Ltmp3864-Lfunc_begin0 - .quad Lset24696 -.set Lset24697, Ltmp3865-Lfunc_begin0 - .quad Lset24697 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24698, Ltmp3933-Lfunc_begin0 - .quad Lset24698 -.set Lset24699, Ltmp3934-Lfunc_begin0 - .quad Lset24699 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24700, Ltmp3959-Lfunc_begin0 - .quad Lset24700 -.set Lset24701, Ltmp3960-Lfunc_begin0 - .quad Lset24701 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24702, Ltmp3985-Lfunc_begin0 - .quad Lset24702 -.set Lset24703, Ltmp3986-Lfunc_begin0 - .quad Lset24703 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24704, Ltmp4011-Lfunc_begin0 - .quad Lset24704 -.set Lset24705, Ltmp4012-Lfunc_begin0 - .quad Lset24705 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24706, Ltmp4046-Lfunc_begin0 - .quad Lset24706 -.set Lset24707, Ltmp4047-Lfunc_begin0 - .quad Lset24707 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24708, Ltmp4084-Lfunc_begin0 - .quad Lset24708 -.set Lset24709, Ltmp4085-Lfunc_begin0 - .quad Lset24709 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24710, Ltmp4106-Lfunc_begin0 - .quad Lset24710 -.set Lset24711, Ltmp4107-Lfunc_begin0 - .quad Lset24711 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24712, Ltmp4146-Lfunc_begin0 - .quad Lset24712 -.set Lset24713, Ltmp4147-Lfunc_begin0 - .quad Lset24713 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24714, Ltmp4187-Lfunc_begin0 - .quad Lset24714 -.set Lset24715, Ltmp4188-Lfunc_begin0 - .quad Lset24715 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24716, Ltmp4227-Lfunc_begin0 - .quad Lset24716 -.set Lset24717, Ltmp4228-Lfunc_begin0 - .quad Lset24717 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24718, Ltmp4268-Lfunc_begin0 - .quad Lset24718 -.set Lset24719, Ltmp4269-Lfunc_begin0 - .quad Lset24719 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24720, Ltmp4308-Lfunc_begin0 - .quad Lset24720 -.set Lset24721, Ltmp4309-Lfunc_begin0 - .quad Lset24721 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24722, Ltmp4349-Lfunc_begin0 - .quad Lset24722 -.set Lset24723, Ltmp4350-Lfunc_begin0 - .quad Lset24723 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24724, Ltmp4380-Lfunc_begin0 - .quad Lset24724 -.set Lset24725, Ltmp4381-Lfunc_begin0 - .quad Lset24725 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24726, Ltmp4412-Lfunc_begin0 - .quad Lset24726 -.set Lset24727, Ltmp4414-Lfunc_begin0 - .quad Lset24727 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24728, Ltmp4454-Lfunc_begin0 - .quad Lset24728 -.set Lset24729, Ltmp4455-Lfunc_begin0 - .quad Lset24729 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24730, Ltmp4495-Lfunc_begin0 - .quad Lset24730 -.set Lset24731, Ltmp4496-Lfunc_begin0 - .quad Lset24731 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24732, Ltmp4579-Lfunc_begin0 - .quad Lset24732 -.set Lset24733, Ltmp4581-Lfunc_begin0 - .quad Lset24733 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24734, Ltmp4649-Lfunc_begin0 - .quad Lset24734 -.set Lset24735, Ltmp4651-Lfunc_begin0 - .quad Lset24735 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24736, Ltmp4717-Lfunc_begin0 - .quad Lset24736 -.set Lset24737, Ltmp4719-Lfunc_begin0 - .quad Lset24737 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24738, Ltmp4783-Lfunc_begin0 - .quad Lset24738 -.set Lset24739, Ltmp4784-Lfunc_begin0 - .quad Lset24739 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24740, Ltmp4813-Lfunc_begin0 - .quad Lset24740 -.set Lset24741, Ltmp4814-Lfunc_begin0 - .quad Lset24741 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24742, Ltmp4843-Lfunc_begin0 - .quad Lset24742 -.set Lset24743, Ltmp4844-Lfunc_begin0 - .quad Lset24743 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24744, Ltmp4902-Lfunc_begin0 - .quad Lset24744 -.set Lset24745, Ltmp4903-Lfunc_begin0 - .quad Lset24745 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24746, Ltmp4943-Lfunc_begin0 - .quad Lset24746 -.set Lset24747, Ltmp4944-Lfunc_begin0 - .quad Lset24747 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24748, Ltmp5000-Lfunc_begin0 - .quad Lset24748 -.set Lset24749, Ltmp5001-Lfunc_begin0 - .quad Lset24749 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24750, Ltmp5040-Lfunc_begin0 - .quad Lset24750 -.set Lset24751, Ltmp5041-Lfunc_begin0 - .quad Lset24751 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24752, Ltmp5078-Lfunc_begin0 - .quad Lset24752 -.set Lset24753, Ltmp5079-Lfunc_begin0 - .quad Lset24753 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24754, Ltmp5114-Lfunc_begin0 - .quad Lset24754 -.set Lset24755, Ltmp5115-Lfunc_begin0 - .quad Lset24755 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24756, Ltmp5146-Lfunc_begin0 - .quad Lset24756 -.set Lset24757, Ltmp5147-Lfunc_begin0 - .quad Lset24757 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24758, Ltmp5178-Lfunc_begin0 - .quad Lset24758 -.set Lset24759, Ltmp5179-Lfunc_begin0 - .quad Lset24759 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24760, Ltmp5210-Lfunc_begin0 - .quad Lset24760 -.set Lset24761, Ltmp5211-Lfunc_begin0 - .quad Lset24761 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24762, Ltmp5228-Lfunc_begin0 - .quad Lset24762 -.set Lset24763, Ltmp5229-Lfunc_begin0 - .quad Lset24763 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24764, Ltmp5246-Lfunc_begin0 - .quad Lset24764 -.set Lset24765, Ltmp5247-Lfunc_begin0 - .quad Lset24765 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24766, Ltmp5271-Lfunc_begin0 - .quad Lset24766 -.set Lset24767, Ltmp5272-Lfunc_begin0 - .quad Lset24767 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24768, Ltmp5296-Lfunc_begin0 - .quad Lset24768 -.set Lset24769, Ltmp5297-Lfunc_begin0 - .quad Lset24769 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24770, Ltmp5322-Lfunc_begin0 - .quad Lset24770 -.set Lset24771, Ltmp5323-Lfunc_begin0 - .quad Lset24771 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24772, Ltmp5347-Lfunc_begin0 - .quad Lset24772 -.set Lset24773, Ltmp5348-Lfunc_begin0 - .quad Lset24773 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24774, Ltmp5372-Lfunc_begin0 - .quad Lset24774 -.set Lset24775, Ltmp5373-Lfunc_begin0 - .quad Lset24775 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24776, Ltmp5397-Lfunc_begin0 - .quad Lset24776 -.set Lset24777, Ltmp5398-Lfunc_begin0 - .quad Lset24777 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24778, Ltmp5422-Lfunc_begin0 - .quad Lset24778 -.set Lset24779, Ltmp5423-Lfunc_begin0 - .quad Lset24779 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24780, Ltmp5447-Lfunc_begin0 - .quad Lset24780 -.set Lset24781, Ltmp5448-Lfunc_begin0 - .quad Lset24781 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24782, Ltmp5472-Lfunc_begin0 - .quad Lset24782 -.set Lset24783, Ltmp5473-Lfunc_begin0 - .quad Lset24783 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24784, Ltmp5498-Lfunc_begin0 - .quad Lset24784 -.set Lset24785, Ltmp5499-Lfunc_begin0 - .quad Lset24785 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24786, Ltmp5523-Lfunc_begin0 - .quad Lset24786 -.set Lset24787, Ltmp5524-Lfunc_begin0 - .quad Lset24787 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24788, Ltmp5548-Lfunc_begin0 - .quad Lset24788 -.set Lset24789, Ltmp5549-Lfunc_begin0 - .quad Lset24789 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24790, Ltmp5573-Lfunc_begin0 - .quad Lset24790 -.set Lset24791, Ltmp5574-Lfunc_begin0 - .quad Lset24791 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24792, Ltmp5598-Lfunc_begin0 - .quad Lset24792 -.set Lset24793, Ltmp5599-Lfunc_begin0 - .quad Lset24793 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24794, Ltmp5631-Lfunc_begin0 - .quad Lset24794 -.set Lset24795, Ltmp5632-Lfunc_begin0 - .quad Lset24795 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24796, Ltmp5662-Lfunc_begin0 - .quad Lset24796 -.set Lset24797, Ltmp5663-Lfunc_begin0 - .quad Lset24797 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24798, Ltmp5687-Lfunc_begin0 - .quad Lset24798 -.set Lset24799, Ltmp5688-Lfunc_begin0 - .quad Lset24799 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24800, Ltmp5712-Lfunc_begin0 - .quad Lset24800 -.set Lset24801, Ltmp5713-Lfunc_begin0 - .quad Lset24801 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24802, Ltmp5737-Lfunc_begin0 - .quad Lset24802 -.set Lset24803, Ltmp5738-Lfunc_begin0 - .quad Lset24803 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24804, Ltmp5767-Lfunc_begin0 - .quad Lset24804 -.set Lset24805, Ltmp5768-Lfunc_begin0 - .quad Lset24805 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24806, Ltmp5795-Lfunc_begin0 - .quad Lset24806 -.set Lset24807, Ltmp5796-Lfunc_begin0 - .quad Lset24807 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24808, Ltmp5814-Lfunc_begin0 - .quad Lset24808 -.set Lset24809, Ltmp5815-Lfunc_begin0 - .quad Lset24809 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24810, Ltmp5833-Lfunc_begin0 - .quad Lset24810 -.set Lset24811, Ltmp5834-Lfunc_begin0 - .quad Lset24811 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24812, Ltmp5852-Lfunc_begin0 - .quad Lset24812 -.set Lset24813, Ltmp5853-Lfunc_begin0 - .quad Lset24813 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24814, Ltmp5871-Lfunc_begin0 - .quad Lset24814 -.set Lset24815, Ltmp5872-Lfunc_begin0 - .quad Lset24815 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24816, Ltmp5890-Lfunc_begin0 - .quad Lset24816 -.set Lset24817, Ltmp5891-Lfunc_begin0 - .quad Lset24817 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24818, Ltmp5920-Lfunc_begin0 - .quad Lset24818 -.set Lset24819, Ltmp5921-Lfunc_begin0 - .quad Lset24819 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc284: -.set Lset24820, Ltmp1186-Lfunc_begin0 - .quad Lset24820 -.set Lset24821, Lfunc_end21-Lfunc_begin0 - .quad Lset24821 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 136 ## -120 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc285: -.set Lset24822, Ltmp1291-Lfunc_begin0 - .quad Lset24822 -.set Lset24823, Ltmp1293-Lfunc_begin0 - .quad Lset24823 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc286: -.set Lset24824, Ltmp1323-Lfunc_begin0 - .quad Lset24824 -.set Lset24825, Ltmp1331-Lfunc_begin0 - .quad Lset24825 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset24826, Ltmp6165-Lfunc_begin0 - .quad Lset24826 -.set Lset24827, Ltmp6166-Lfunc_begin0 - .quad Lset24827 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc287: -.set Lset24828, Ltmp1325-Lfunc_begin0 - .quad Lset24828 -.set Lset24829, Ltmp1326-Lfunc_begin0 - .quad Lset24829 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc288: -.set Lset24830, Ltmp1349-Lfunc_begin0 - .quad Lset24830 -.set Lset24831, Ltmp1361-Lfunc_begin0 - .quad Lset24831 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset24832, Ltmp6166-Lfunc_begin0 - .quad Lset24832 -.set Lset24833, Ltmp6167-Lfunc_begin0 - .quad Lset24833 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc289: -.set Lset24834, Ltmp1350-Lfunc_begin0 - .quad Lset24834 -.set Lset24835, Ltmp1352-Lfunc_begin0 - .quad Lset24835 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc290: -.set Lset24836, Ltmp1369-Lfunc_begin0 - .quad Lset24836 -.set Lset24837, Ltmp1381-Lfunc_begin0 - .quad Lset24837 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24838, Ltmp1387-Lfunc_begin0 - .quad Lset24838 -.set Lset24839, Ltmp1410-Lfunc_begin0 - .quad Lset24839 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24840, Ltmp1421-Lfunc_begin0 - .quad Lset24840 -.set Lset24841, Ltmp1434-Lfunc_begin0 - .quad Lset24841 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24842, Ltmp1439-Lfunc_begin0 - .quad Lset24842 -.set Lset24843, Ltmp1454-Lfunc_begin0 - .quad Lset24843 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24844, Ltmp6168-Lfunc_begin0 - .quad Lset24844 -.set Lset24845, Ltmp6169-Lfunc_begin0 - .quad Lset24845 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24846, Ltmp6302-Lfunc_begin0 - .quad Lset24846 -.set Lset24847, Ltmp6304-Lfunc_begin0 - .quad Lset24847 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc291: -.set Lset24848, Ltmp1369-Lfunc_begin0 - .quad Lset24848 -.set Lset24849, Ltmp1381-Lfunc_begin0 - .quad Lset24849 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset24850, Ltmp1387-Lfunc_begin0 - .quad Lset24850 -.set Lset24851, Ltmp1402-Lfunc_begin0 - .quad Lset24851 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset24852, Ltmp1402-Lfunc_begin0 - .quad Lset24852 -.set Lset24853, Ltmp1406-Lfunc_begin0 - .quad Lset24853 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset24854, Ltmp1406-Lfunc_begin0 - .quad Lset24854 -.set Lset24855, Ltmp1409-Lfunc_begin0 - .quad Lset24855 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset24856, Ltmp1420-Lfunc_begin0 - .quad Lset24856 -.set Lset24857, Ltmp1432-Lfunc_begin0 - .quad Lset24857 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset24858, Ltmp1439-Lfunc_begin0 - .quad Lset24858 -.set Lset24859, Ltmp1443-Lfunc_begin0 - .quad Lset24859 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset24860, Ltmp1443-Lfunc_begin0 - .quad Lset24860 -.set Lset24861, Ltmp1447-Lfunc_begin0 - .quad Lset24861 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset24862, Ltmp6302-Lfunc_begin0 - .quad Lset24862 -.set Lset24863, Ltmp6303-Lfunc_begin0 - .quad Lset24863 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc292: -.set Lset24864, Ltmp1373-Lfunc_begin0 - .quad Lset24864 -.set Lset24865, Ltmp1379-Lfunc_begin0 - .quad Lset24865 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc293: -.set Lset24866, Ltmp1375-Lfunc_begin0 - .quad Lset24866 -.set Lset24867, Ltmp1378-Lfunc_begin0 - .quad Lset24867 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc294: -.set Lset24868, Ltmp1379-Lfunc_begin0 - .quad Lset24868 -.set Lset24869, Ltmp1380-Lfunc_begin0 - .quad Lset24869 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc295: -.set Lset24870, Ltmp1391-Lfunc_begin0 - .quad Lset24870 -.set Lset24871, Ltmp1397-Lfunc_begin0 - .quad Lset24871 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc296: -.set Lset24872, Ltmp1393-Lfunc_begin0 - .quad Lset24872 -.set Lset24873, Ltmp1396-Lfunc_begin0 - .quad Lset24873 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc297: -.set Lset24874, Ltmp1397-Lfunc_begin0 - .quad Lset24874 -.set Lset24875, Ltmp1398-Lfunc_begin0 - .quad Lset24875 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc298: -.set Lset24876, Ltmp1399-Lfunc_begin0 - .quad Lset24876 -.set Lset24877, Ltmp1403-Lfunc_begin0 - .quad Lset24877 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset24878, Ltmp1427-Lfunc_begin0 - .quad Lset24878 -.set Lset24879, Ltmp1432-Lfunc_begin0 - .quad Lset24879 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc299: -.set Lset24880, Ltmp1399-Lfunc_begin0 - .quad Lset24880 -.set Lset24881, Ltmp1403-Lfunc_begin0 - .quad Lset24881 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset24882, Ltmp1427-Lfunc_begin0 - .quad Lset24882 -.set Lset24883, Ltmp1432-Lfunc_begin0 - .quad Lset24883 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc300: -.set Lset24884, Ltmp1404-Lfunc_begin0 - .quad Lset24884 -.set Lset24885, Ltmp1406-Lfunc_begin0 - .quad Lset24885 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24886, Ltmp1430-Lfunc_begin0 - .quad Lset24886 -.set Lset24887, Ltmp1435-Lfunc_begin0 - .quad Lset24887 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24888, Ltmp1444-Lfunc_begin0 - .quad Lset24888 -.set Lset24889, Ltmp1448-Lfunc_begin0 - .quad Lset24889 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc301: -.set Lset24890, Ltmp1404-Lfunc_begin0 - .quad Lset24890 -.set Lset24891, Ltmp1406-Lfunc_begin0 - .quad Lset24891 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24892, Ltmp1430-Lfunc_begin0 - .quad Lset24892 -.set Lset24893, Ltmp1432-Lfunc_begin0 - .quad Lset24893 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24894, Ltmp1445-Lfunc_begin0 - .quad Lset24894 -.set Lset24895, Ltmp1448-Lfunc_begin0 - .quad Lset24895 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc302: -.set Lset24896, Ltmp1464-Lfunc_begin0 - .quad Lset24896 -.set Lset24897, Ltmp1476-Lfunc_begin0 - .quad Lset24897 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24898, Ltmp1482-Lfunc_begin0 - .quad Lset24898 -.set Lset24899, Ltmp1504-Lfunc_begin0 - .quad Lset24899 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24900, Ltmp1515-Lfunc_begin0 - .quad Lset24900 -.set Lset24901, Ltmp1529-Lfunc_begin0 - .quad Lset24901 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24902, Ltmp1534-Lfunc_begin0 - .quad Lset24902 -.set Lset24903, Ltmp1549-Lfunc_begin0 - .quad Lset24903 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset24904, Ltmp5941-Lfunc_begin0 - .quad Lset24904 -.set Lset24905, Ltmp5943-Lfunc_begin0 - .quad Lset24905 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc303: -.set Lset24906, Ltmp1464-Lfunc_begin0 - .quad Lset24906 -.set Lset24907, Ltmp1476-Lfunc_begin0 - .quad Lset24907 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24908, Ltmp1482-Lfunc_begin0 - .quad Lset24908 -.set Lset24909, Ltmp1497-Lfunc_begin0 - .quad Lset24909 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24910, Ltmp1497-Lfunc_begin0 - .quad Lset24910 -.set Lset24911, Ltmp1501-Lfunc_begin0 - .quad Lset24911 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset24912, Ltmp1501-Lfunc_begin0 - .quad Lset24912 -.set Lset24913, Ltmp1503-Lfunc_begin0 - .quad Lset24913 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24914, Ltmp1514-Lfunc_begin0 - .quad Lset24914 -.set Lset24915, Ltmp1527-Lfunc_begin0 - .quad Lset24915 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24916, Ltmp1534-Lfunc_begin0 - .quad Lset24916 -.set Lset24917, Ltmp1538-Lfunc_begin0 - .quad Lset24917 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24918, Ltmp1538-Lfunc_begin0 - .quad Lset24918 -.set Lset24919, Ltmp1542-Lfunc_begin0 - .quad Lset24919 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset24920, Ltmp5941-Lfunc_begin0 - .quad Lset24920 -.set Lset24921, Ltmp5942-Lfunc_begin0 - .quad Lset24921 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc304: -.set Lset24922, Ltmp1468-Lfunc_begin0 - .quad Lset24922 -.set Lset24923, Ltmp1474-Lfunc_begin0 - .quad Lset24923 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc305: -.set Lset24924, Ltmp1470-Lfunc_begin0 - .quad Lset24924 -.set Lset24925, Ltmp1473-Lfunc_begin0 - .quad Lset24925 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc306: -.set Lset24926, Ltmp1474-Lfunc_begin0 - .quad Lset24926 -.set Lset24927, Ltmp1475-Lfunc_begin0 - .quad Lset24927 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc307: -.set Lset24928, Ltmp1486-Lfunc_begin0 - .quad Lset24928 -.set Lset24929, Ltmp1492-Lfunc_begin0 - .quad Lset24929 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc308: -.set Lset24930, Ltmp1488-Lfunc_begin0 - .quad Lset24930 -.set Lset24931, Ltmp1491-Lfunc_begin0 - .quad Lset24931 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc309: -.set Lset24932, Ltmp1492-Lfunc_begin0 - .quad Lset24932 -.set Lset24933, Ltmp1493-Lfunc_begin0 - .quad Lset24933 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc310: -.set Lset24934, Ltmp1494-Lfunc_begin0 - .quad Lset24934 -.set Lset24935, Ltmp1498-Lfunc_begin0 - .quad Lset24935 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset24936, Ltmp1522-Lfunc_begin0 - .quad Lset24936 -.set Lset24937, Ltmp1527-Lfunc_begin0 - .quad Lset24937 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc311: -.set Lset24938, Ltmp1494-Lfunc_begin0 - .quad Lset24938 -.set Lset24939, Ltmp1498-Lfunc_begin0 - .quad Lset24939 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset24940, Ltmp1522-Lfunc_begin0 - .quad Lset24940 -.set Lset24941, Ltmp1527-Lfunc_begin0 - .quad Lset24941 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc312: -.set Lset24942, Ltmp1499-Lfunc_begin0 - .quad Lset24942 -.set Lset24943, Ltmp1501-Lfunc_begin0 - .quad Lset24943 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24944, Ltmp1525-Lfunc_begin0 - .quad Lset24944 -.set Lset24945, Ltmp1530-Lfunc_begin0 - .quad Lset24945 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24946, Ltmp1539-Lfunc_begin0 - .quad Lset24946 -.set Lset24947, Ltmp1543-Lfunc_begin0 - .quad Lset24947 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc313: -.set Lset24948, Ltmp1499-Lfunc_begin0 - .quad Lset24948 -.set Lset24949, Ltmp1501-Lfunc_begin0 - .quad Lset24949 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24950, Ltmp1525-Lfunc_begin0 - .quad Lset24950 -.set Lset24951, Ltmp1527-Lfunc_begin0 - .quad Lset24951 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset24952, Ltmp1540-Lfunc_begin0 - .quad Lset24952 -.set Lset24953, Ltmp1543-Lfunc_begin0 - .quad Lset24953 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc314: -.set Lset24954, Ltmp1559-Lfunc_begin0 - .quad Lset24954 -.set Lset24955, Ltmp1571-Lfunc_begin0 - .quad Lset24955 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24956, Ltmp1577-Lfunc_begin0 - .quad Lset24956 -.set Lset24957, Ltmp1593-Lfunc_begin0 - .quad Lset24957 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24958, Ltmp1593-Lfunc_begin0 - .quad Lset24958 -.set Lset24959, Ltmp1599-Lfunc_begin0 - .quad Lset24959 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset24960, Ltmp1599-Lfunc_begin0 - .quad Lset24960 -.set Lset24961, Ltmp1607-Lfunc_begin0 - .quad Lset24961 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24962, Ltmp1608-Lfunc_begin0 - .quad Lset24962 -.set Lset24963, Ltmp1620-Lfunc_begin0 - .quad Lset24963 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24964, Ltmp1626-Lfunc_begin0 - .quad Lset24964 -.set Lset24965, Ltmp1633-Lfunc_begin0 - .quad Lset24965 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24966, Ltmp1640-Lfunc_begin0 - .quad Lset24966 -.set Lset24967, Ltmp1643-Lfunc_begin0 - .quad Lset24967 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24968, Ltmp1649-Lfunc_begin0 - .quad Lset24968 -.set Lset24969, Ltmp1651-Lfunc_begin0 - .quad Lset24969 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24970, Ltmp1665-Lfunc_begin0 - .quad Lset24970 -.set Lset24971, Ltmp1676-Lfunc_begin0 - .quad Lset24971 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24972, Ltmp1683-Lfunc_begin0 - .quad Lset24972 -.set Lset24973, Ltmp1685-Lfunc_begin0 - .quad Lset24973 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24974, Ltmp1685-Lfunc_begin0 - .quad Lset24974 -.set Lset24975, Ltmp1691-Lfunc_begin0 - .quad Lset24975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset24976, Ltmp1691-Lfunc_begin0 - .quad Lset24976 -.set Lset24977, Ltmp1693-Lfunc_begin0 - .quad Lset24977 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc315: -.set Lset24978, Ltmp1559-Lfunc_begin0 - .quad Lset24978 -.set Lset24979, Ltmp1571-Lfunc_begin0 - .quad Lset24979 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24980, Ltmp1577-Lfunc_begin0 - .quad Lset24980 -.set Lset24981, Ltmp1594-Lfunc_begin0 - .quad Lset24981 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24982, Ltmp1594-Lfunc_begin0 - .quad Lset24982 -.set Lset24983, Ltmp1596-Lfunc_begin0 - .quad Lset24983 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset24984, Ltmp1599-Lfunc_begin0 - .quad Lset24984 -.set Lset24985, Ltmp1601-Lfunc_begin0 - .quad Lset24985 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24986, Ltmp1608-Lfunc_begin0 - .quad Lset24986 -.set Lset24987, Ltmp1617-Lfunc_begin0 - .quad Lset24987 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24988, Ltmp1626-Lfunc_begin0 - .quad Lset24988 -.set Lset24989, Ltmp1630-Lfunc_begin0 - .quad Lset24989 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24990, Ltmp1640-Lfunc_begin0 - .quad Lset24990 -.set Lset24991, Ltmp1644-Lfunc_begin0 - .quad Lset24991 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24992, Ltmp1649-Lfunc_begin0 - .quad Lset24992 -.set Lset24993, Ltmp1652-Lfunc_begin0 - .quad Lset24993 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24994, Ltmp1664-Lfunc_begin0 - .quad Lset24994 -.set Lset24995, Ltmp1676-Lfunc_begin0 - .quad Lset24995 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24996, Ltmp1683-Lfunc_begin0 - .quad Lset24996 -.set Lset24997, Ltmp1688-Lfunc_begin0 - .quad Lset24997 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset24998, Ltmp1688-Lfunc_begin0 - .quad Lset24998 -.set Lset24999, Ltmp1691-Lfunc_begin0 - .quad Lset24999 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc316: -.set Lset25000, Ltmp1559-Lfunc_begin0 - .quad Lset25000 -.set Lset25001, Ltmp1571-Lfunc_begin0 - .quad Lset25001 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25002, Ltmp1577-Lfunc_begin0 - .quad Lset25002 -.set Lset25003, Ltmp1602-Lfunc_begin0 - .quad Lset25003 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25004, Ltmp1608-Lfunc_begin0 - .quad Lset25004 -.set Lset25005, Ltmp1642-Lfunc_begin0 - .quad Lset25005 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25006, Ltmp1645-Lfunc_begin0 - .quad Lset25006 -.set Lset25007, Ltmp1647-Lfunc_begin0 - .quad Lset25007 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25008, Ltmp1649-Lfunc_begin0 - .quad Lset25008 -.set Lset25009, Ltmp1650-Lfunc_begin0 - .quad Lset25009 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25010, Ltmp1653-Lfunc_begin0 - .quad Lset25010 -.set Lset25011, Ltmp1655-Lfunc_begin0 - .quad Lset25011 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25012, Ltmp1662-Lfunc_begin0 - .quad Lset25012 -.set Lset25013, Ltmp1678-Lfunc_begin0 - .quad Lset25013 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25014, Ltmp1683-Lfunc_begin0 - .quad Lset25014 -.set Lset25015, Ltmp1704-Lfunc_begin0 - .quad Lset25015 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25016, Ltmp6051-Lfunc_begin0 - .quad Lset25016 -.set Lset25017, Ltmp6052-Lfunc_begin0 - .quad Lset25017 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25018, Ltmp6144-Lfunc_begin0 - .quad Lset25018 -.set Lset25019, Ltmp6145-Lfunc_begin0 - .quad Lset25019 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25020, Ltmp6304-Lfunc_begin0 - .quad Lset25020 -.set Lset25021, Ltmp6307-Lfunc_begin0 - .quad Lset25021 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc317: -.set Lset25022, Ltmp1561-Lfunc_begin0 - .quad Lset25022 -.set Lset25023, Ltmp1571-Lfunc_begin0 - .quad Lset25023 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25024, Ltmp1608-Lfunc_begin0 - .quad Lset25024 -.set Lset25025, Ltmp1626-Lfunc_begin0 - .quad Lset25025 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25026, Ltmp1640-Lfunc_begin0 - .quad Lset25026 -.set Lset25027, Ltmp1649-Lfunc_begin0 - .quad Lset25027 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc318: -.set Lset25028, Ltmp1568-Lfunc_begin0 - .quad Lset25028 -.set Lset25029, Ltmp1571-Lfunc_begin0 - .quad Lset25029 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc319: -.set Lset25030, Ltmp1579-Lfunc_begin0 - .quad Lset25030 -.set Lset25031, Ltmp1587-Lfunc_begin0 - .quad Lset25031 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25032, Ltmp1626-Lfunc_begin0 - .quad Lset25032 -.set Lset25033, Ltmp1640-Lfunc_begin0 - .quad Lset25033 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25034, Ltmp1649-Lfunc_begin0 - .quad Lset25034 -.set Lset25035, Ltmp1656-Lfunc_begin0 - .quad Lset25035 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc320: -.set Lset25036, Ltmp1585-Lfunc_begin0 - .quad Lset25036 -.set Lset25037, Ltmp1587-Lfunc_begin0 - .quad Lset25037 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25038, Ltmp1649-Lfunc_begin0 - .quad Lset25038 -.set Lset25039, Ltmp1652-Lfunc_begin0 - .quad Lset25039 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc321: -.set Lset25040, Ltmp1588-Lfunc_begin0 - .quad Lset25040 -.set Lset25041, Ltmp1589-Lfunc_begin0 - .quad Lset25041 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc322: -.set Lset25042, Ltmp1589-Lfunc_begin0 - .quad Lset25042 -.set Lset25043, Ltmp1595-Lfunc_begin0 - .quad Lset25043 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25044, Ltmp1671-Lfunc_begin0 - .quad Lset25044 -.set Lset25045, Ltmp1676-Lfunc_begin0 - .quad Lset25045 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc323: -.set Lset25046, Ltmp1589-Lfunc_begin0 - .quad Lset25046 -.set Lset25047, Ltmp1595-Lfunc_begin0 - .quad Lset25047 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25048, Ltmp1671-Lfunc_begin0 - .quad Lset25048 -.set Lset25049, Ltmp1676-Lfunc_begin0 - .quad Lset25049 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc324: -.set Lset25050, Ltmp1598-Lfunc_begin0 - .quad Lset25050 -.set Lset25051, Ltmp1599-Lfunc_begin0 - .quad Lset25051 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25052, Ltmp1674-Lfunc_begin0 - .quad Lset25052 -.set Lset25053, Ltmp1679-Lfunc_begin0 - .quad Lset25053 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25054, Ltmp1689-Lfunc_begin0 - .quad Lset25054 -.set Lset25055, Ltmp1695-Lfunc_begin0 - .quad Lset25055 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc325: -.set Lset25056, Ltmp1598-Lfunc_begin0 - .quad Lset25056 -.set Lset25057, Ltmp1599-Lfunc_begin0 - .quad Lset25057 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25058, Ltmp1674-Lfunc_begin0 - .quad Lset25058 -.set Lset25059, Ltmp1676-Lfunc_begin0 - .quad Lset25059 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25060, Ltmp1691-Lfunc_begin0 - .quad Lset25060 -.set Lset25061, Ltmp1695-Lfunc_begin0 - .quad Lset25061 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc326: -.set Lset25062, Ltmp1609-Lfunc_begin0 - .quad Lset25062 -.set Lset25063, Ltmp1612-Lfunc_begin0 - .quad Lset25063 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25064, Ltmp1640-Lfunc_begin0 - .quad Lset25064 -.set Lset25065, Ltmp1641-Lfunc_begin0 - .quad Lset25065 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc327: -.set Lset25066, Ltmp1612-Lfunc_begin0 - .quad Lset25066 -.set Lset25067, Ltmp1613-Lfunc_begin0 - .quad Lset25067 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc328: -.set Lset25068, Ltmp1615-Lfunc_begin0 - .quad Lset25068 -.set Lset25069, Ltmp1616-Lfunc_begin0 - .quad Lset25069 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25070, Ltmp1616-Lfunc_begin0 - .quad Lset25070 -.set Lset25071, Ltmp1646-Lfunc_begin0 - .quad Lset25071 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 176 ## -208 - .byte 126 ## -.set Lset25072, Ltmp1646-Lfunc_begin0 - .quad Lset25072 -.set Lset25073, Ltmp1648-Lfunc_begin0 - .quad Lset25073 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc329: -.set Lset25074, Ltmp1622-Lfunc_begin0 - .quad Lset25074 -.set Lset25075, Ltmp1625-Lfunc_begin0 - .quad Lset25075 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25076, Ltmp1645-Lfunc_begin0 - .quad Lset25076 -.set Lset25077, Ltmp1648-Lfunc_begin0 - .quad Lset25077 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc330: -.set Lset25078, Ltmp1625-Lfunc_begin0 - .quad Lset25078 -.set Lset25079, Ltmp1626-Lfunc_begin0 - .quad Lset25079 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc331: -.set Lset25080, Ltmp1628-Lfunc_begin0 - .quad Lset25080 -.set Lset25081, Ltmp1629-Lfunc_begin0 - .quad Lset25081 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25082, Ltmp1629-Lfunc_begin0 - .quad Lset25082 -.set Lset25083, Ltmp1654-Lfunc_begin0 - .quad Lset25083 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -200 - .byte 126 ## -.set Lset25084, Ltmp1654-Lfunc_begin0 - .quad Lset25084 -.set Lset25085, Ltmp1656-Lfunc_begin0 - .quad Lset25085 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc332: -.set Lset25086, Ltmp1635-Lfunc_begin0 - .quad Lset25086 -.set Lset25087, Ltmp1638-Lfunc_begin0 - .quad Lset25087 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25088, Ltmp1653-Lfunc_begin0 - .quad Lset25088 -.set Lset25089, Ltmp1656-Lfunc_begin0 - .quad Lset25089 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc333: -.set Lset25090, Ltmp1638-Lfunc_begin0 - .quad Lset25090 -.set Lset25091, Ltmp1640-Lfunc_begin0 - .quad Lset25091 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc334: -.set Lset25092, Ltmp1665-Lfunc_begin0 - .quad Lset25092 -.set Lset25093, Ltmp1667-Lfunc_begin0 - .quad Lset25093 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc335: -.set Lset25094, Ltmp1665-Lfunc_begin0 - .quad Lset25094 -.set Lset25095, Ltmp1667-Lfunc_begin0 - .quad Lset25095 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc336: -.set Lset25096, Ltmp1715-Lfunc_begin0 - .quad Lset25096 -.set Lset25097, Ltmp1727-Lfunc_begin0 - .quad Lset25097 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25098, Ltmp1733-Lfunc_begin0 - .quad Lset25098 -.set Lset25099, Ltmp1747-Lfunc_begin0 - .quad Lset25099 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25100, Ltmp1747-Lfunc_begin0 - .quad Lset25100 -.set Lset25101, Ltmp1752-Lfunc_begin0 - .quad Lset25101 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset25102, Ltmp1752-Lfunc_begin0 - .quad Lset25102 -.set Lset25103, Ltmp1759-Lfunc_begin0 - .quad Lset25103 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25104, Ltmp1760-Lfunc_begin0 - .quad Lset25104 -.set Lset25105, Ltmp1772-Lfunc_begin0 - .quad Lset25105 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25106, Ltmp1778-Lfunc_begin0 - .quad Lset25106 -.set Lset25107, Ltmp1785-Lfunc_begin0 - .quad Lset25107 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25108, Ltmp1792-Lfunc_begin0 - .quad Lset25108 -.set Lset25109, Ltmp1795-Lfunc_begin0 - .quad Lset25109 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25110, Ltmp1801-Lfunc_begin0 - .quad Lset25110 -.set Lset25111, Ltmp1803-Lfunc_begin0 - .quad Lset25111 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25112, Ltmp1817-Lfunc_begin0 - .quad Lset25112 -.set Lset25113, Ltmp1828-Lfunc_begin0 - .quad Lset25113 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25114, Ltmp1835-Lfunc_begin0 - .quad Lset25114 -.set Lset25115, Ltmp1836-Lfunc_begin0 - .quad Lset25115 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25116, Ltmp1836-Lfunc_begin0 - .quad Lset25116 -.set Lset25117, Lfunc_end21-Lfunc_begin0 - .quad Lset25117 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc337: -.set Lset25118, Ltmp1715-Lfunc_begin0 - .quad Lset25118 -.set Lset25119, Ltmp1727-Lfunc_begin0 - .quad Lset25119 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25120, Ltmp1733-Lfunc_begin0 - .quad Lset25120 -.set Lset25121, Ltmp1754-Lfunc_begin0 - .quad Lset25121 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25122, Ltmp1760-Lfunc_begin0 - .quad Lset25122 -.set Lset25123, Ltmp1794-Lfunc_begin0 - .quad Lset25123 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25124, Ltmp1797-Lfunc_begin0 - .quad Lset25124 -.set Lset25125, Ltmp1799-Lfunc_begin0 - .quad Lset25125 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25126, Ltmp1801-Lfunc_begin0 - .quad Lset25126 -.set Lset25127, Ltmp1802-Lfunc_begin0 - .quad Lset25127 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25128, Ltmp1805-Lfunc_begin0 - .quad Lset25128 -.set Lset25129, Ltmp1807-Lfunc_begin0 - .quad Lset25129 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25130, Ltmp1814-Lfunc_begin0 - .quad Lset25130 -.set Lset25131, Ltmp1830-Lfunc_begin0 - .quad Lset25131 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25132, Ltmp1835-Lfunc_begin0 - .quad Lset25132 -.set Lset25133, Ltmp1855-Lfunc_begin0 - .quad Lset25133 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25134, Ltmp5945-Lfunc_begin0 - .quad Lset25134 -.set Lset25135, Ltmp5946-Lfunc_begin0 - .quad Lset25135 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25136, Ltmp6052-Lfunc_begin0 - .quad Lset25136 -.set Lset25137, Ltmp6055-Lfunc_begin0 - .quad Lset25137 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25138, Ltmp6174-Lfunc_begin0 - .quad Lset25138 -.set Lset25139, Ltmp6175-Lfunc_begin0 - .quad Lset25139 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc338: -.set Lset25140, Ltmp1717-Lfunc_begin0 - .quad Lset25140 -.set Lset25141, Ltmp1727-Lfunc_begin0 - .quad Lset25141 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25142, Ltmp1760-Lfunc_begin0 - .quad Lset25142 -.set Lset25143, Ltmp1778-Lfunc_begin0 - .quad Lset25143 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25144, Ltmp1792-Lfunc_begin0 - .quad Lset25144 -.set Lset25145, Ltmp1801-Lfunc_begin0 - .quad Lset25145 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc339: -.set Lset25146, Ltmp1724-Lfunc_begin0 - .quad Lset25146 -.set Lset25147, Ltmp1727-Lfunc_begin0 - .quad Lset25147 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc340: -.set Lset25148, Ltmp1735-Lfunc_begin0 - .quad Lset25148 -.set Lset25149, Ltmp1743-Lfunc_begin0 - .quad Lset25149 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25150, Ltmp1778-Lfunc_begin0 - .quad Lset25150 -.set Lset25151, Ltmp1792-Lfunc_begin0 - .quad Lset25151 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25152, Ltmp1801-Lfunc_begin0 - .quad Lset25152 -.set Lset25153, Ltmp1808-Lfunc_begin0 - .quad Lset25153 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc341: -.set Lset25154, Ltmp1741-Lfunc_begin0 - .quad Lset25154 -.set Lset25155, Ltmp1743-Lfunc_begin0 - .quad Lset25155 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25156, Ltmp1801-Lfunc_begin0 - .quad Lset25156 -.set Lset25157, Ltmp1804-Lfunc_begin0 - .quad Lset25157 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc342: -.set Lset25158, Ltmp1744-Lfunc_begin0 - .quad Lset25158 -.set Lset25159, Ltmp1745-Lfunc_begin0 - .quad Lset25159 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc343: -.set Lset25160, Ltmp1745-Lfunc_begin0 - .quad Lset25160 -.set Lset25161, Ltmp1749-Lfunc_begin0 - .quad Lset25161 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25162, Ltmp1823-Lfunc_begin0 - .quad Lset25162 -.set Lset25163, Ltmp1828-Lfunc_begin0 - .quad Lset25163 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc344: -.set Lset25164, Ltmp1745-Lfunc_begin0 - .quad Lset25164 -.set Lset25165, Ltmp1749-Lfunc_begin0 - .quad Lset25165 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25166, Ltmp1823-Lfunc_begin0 - .quad Lset25166 -.set Lset25167, Ltmp1828-Lfunc_begin0 - .quad Lset25167 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc345: -.set Lset25168, Ltmp1751-Lfunc_begin0 - .quad Lset25168 -.set Lset25169, Ltmp1752-Lfunc_begin0 - .quad Lset25169 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25170, Ltmp1826-Lfunc_begin0 - .quad Lset25170 -.set Lset25171, Ltmp1831-Lfunc_begin0 - .quad Lset25171 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25172, Ltmp1840-Lfunc_begin0 - .quad Lset25172 -.set Lset25173, Ltmp1846-Lfunc_begin0 - .quad Lset25173 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc346: -.set Lset25174, Ltmp1751-Lfunc_begin0 - .quad Lset25174 -.set Lset25175, Ltmp1752-Lfunc_begin0 - .quad Lset25175 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25176, Ltmp1826-Lfunc_begin0 - .quad Lset25176 -.set Lset25177, Ltmp1828-Lfunc_begin0 - .quad Lset25177 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25178, Ltmp1842-Lfunc_begin0 - .quad Lset25178 -.set Lset25179, Ltmp1846-Lfunc_begin0 - .quad Lset25179 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc347: -.set Lset25180, Ltmp1761-Lfunc_begin0 - .quad Lset25180 -.set Lset25181, Ltmp1764-Lfunc_begin0 - .quad Lset25181 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25182, Ltmp1792-Lfunc_begin0 - .quad Lset25182 -.set Lset25183, Ltmp1793-Lfunc_begin0 - .quad Lset25183 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc348: -.set Lset25184, Ltmp1764-Lfunc_begin0 - .quad Lset25184 -.set Lset25185, Ltmp1765-Lfunc_begin0 - .quad Lset25185 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc349: -.set Lset25186, Ltmp1767-Lfunc_begin0 - .quad Lset25186 -.set Lset25187, Ltmp1768-Lfunc_begin0 - .quad Lset25187 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25188, Ltmp1768-Lfunc_begin0 - .quad Lset25188 -.set Lset25189, Ltmp1798-Lfunc_begin0 - .quad Lset25189 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 192 ## -192 - .byte 126 ## -.set Lset25190, Ltmp1798-Lfunc_begin0 - .quad Lset25190 -.set Lset25191, Ltmp1800-Lfunc_begin0 - .quad Lset25191 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc350: -.set Lset25192, Ltmp1774-Lfunc_begin0 - .quad Lset25192 -.set Lset25193, Ltmp1777-Lfunc_begin0 - .quad Lset25193 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25194, Ltmp1797-Lfunc_begin0 - .quad Lset25194 -.set Lset25195, Ltmp1800-Lfunc_begin0 - .quad Lset25195 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc351: -.set Lset25196, Ltmp1777-Lfunc_begin0 - .quad Lset25196 -.set Lset25197, Ltmp1778-Lfunc_begin0 - .quad Lset25197 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc352: -.set Lset25198, Ltmp1780-Lfunc_begin0 - .quad Lset25198 -.set Lset25199, Ltmp1781-Lfunc_begin0 - .quad Lset25199 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25200, Ltmp1781-Lfunc_begin0 - .quad Lset25200 -.set Lset25201, Ltmp1806-Lfunc_begin0 - .quad Lset25201 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 200 ## -184 - .byte 126 ## -.set Lset25202, Ltmp1806-Lfunc_begin0 - .quad Lset25202 -.set Lset25203, Ltmp1808-Lfunc_begin0 - .quad Lset25203 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc353: -.set Lset25204, Ltmp1787-Lfunc_begin0 - .quad Lset25204 -.set Lset25205, Ltmp1790-Lfunc_begin0 - .quad Lset25205 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25206, Ltmp1805-Lfunc_begin0 - .quad Lset25206 -.set Lset25207, Ltmp1808-Lfunc_begin0 - .quad Lset25207 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc354: -.set Lset25208, Ltmp1790-Lfunc_begin0 - .quad Lset25208 -.set Lset25209, Ltmp1792-Lfunc_begin0 - .quad Lset25209 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc355: -.set Lset25210, Ltmp1817-Lfunc_begin0 - .quad Lset25210 -.set Lset25211, Ltmp1819-Lfunc_begin0 - .quad Lset25211 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc356: -.set Lset25212, Ltmp1817-Lfunc_begin0 - .quad Lset25212 -.set Lset25213, Ltmp1819-Lfunc_begin0 - .quad Lset25213 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc357: -.set Lset25214, Ltmp1872-Lfunc_begin0 - .quad Lset25214 -.set Lset25215, Ltmp1890-Lfunc_begin0 - .quad Lset25215 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25216, Ltmp1891-Lfunc_begin0 - .quad Lset25216 -.set Lset25217, Ltmp1904-Lfunc_begin0 - .quad Lset25217 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25218, Ltmp1910-Lfunc_begin0 - .quad Lset25218 -.set Lset25219, Ltmp1917-Lfunc_begin0 - .quad Lset25219 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25220, Ltmp1924-Lfunc_begin0 - .quad Lset25220 -.set Lset25221, Ltmp1927-Lfunc_begin0 - .quad Lset25221 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25222, Ltmp1933-Lfunc_begin0 - .quad Lset25222 -.set Lset25223, Ltmp1935-Lfunc_begin0 - .quad Lset25223 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25224, Ltmp1949-Lfunc_begin0 - .quad Lset25224 -.set Lset25225, Ltmp1969-Lfunc_begin0 - .quad Lset25225 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25226, Ltmp1971-Lfunc_begin0 - .quad Lset25226 -.set Lset25227, Ltmp1996-Lfunc_begin0 - .quad Lset25227 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25228, Ltmp5946-Lfunc_begin0 - .quad Lset25228 -.set Lset25229, Ltmp5947-Lfunc_begin0 - .quad Lset25229 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25230, Ltmp6175-Lfunc_begin0 - .quad Lset25230 -.set Lset25231, Ltmp6176-Lfunc_begin0 - .quad Lset25231 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc358: -.set Lset25232, Ltmp1872-Lfunc_begin0 - .quad Lset25232 -.set Lset25233, Ltmp1885-Lfunc_begin0 - .quad Lset25233 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25234, Ltmp1891-Lfunc_begin0 - .quad Lset25234 -.set Lset25235, Ltmp1926-Lfunc_begin0 - .quad Lset25235 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25236, Ltmp1929-Lfunc_begin0 - .quad Lset25236 -.set Lset25237, Ltmp1931-Lfunc_begin0 - .quad Lset25237 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25238, Ltmp1933-Lfunc_begin0 - .quad Lset25238 -.set Lset25239, Ltmp1934-Lfunc_begin0 - .quad Lset25239 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25240, Ltmp1937-Lfunc_begin0 - .quad Lset25240 -.set Lset25241, Ltmp1939-Lfunc_begin0 - .quad Lset25241 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25242, Ltmp1946-Lfunc_begin0 - .quad Lset25242 -.set Lset25243, Ltmp1968-Lfunc_begin0 - .quad Lset25243 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25244, Ltmp1971-Lfunc_begin0 - .quad Lset25244 -.set Lset25245, Ltmp1991-Lfunc_begin0 - .quad Lset25245 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25246, Ltmp5946-Lfunc_begin0 - .quad Lset25246 -.set Lset25247, Ltmp5947-Lfunc_begin0 - .quad Lset25247 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25248, Ltmp6175-Lfunc_begin0 - .quad Lset25248 -.set Lset25249, Ltmp6177-Lfunc_begin0 - .quad Lset25249 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25250, Ltmp6308-Lfunc_begin0 - .quad Lset25250 -.set Lset25251, Ltmp6309-Lfunc_begin0 - .quad Lset25251 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc359: -.set Lset25252, Ltmp1874-Lfunc_begin0 - .quad Lset25252 -.set Lset25253, Ltmp1881-Lfunc_begin0 - .quad Lset25253 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25254, Ltmp1910-Lfunc_begin0 - .quad Lset25254 -.set Lset25255, Ltmp1924-Lfunc_begin0 - .quad Lset25255 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25256, Ltmp1933-Lfunc_begin0 - .quad Lset25256 -.set Lset25257, Ltmp1940-Lfunc_begin0 - .quad Lset25257 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc360: -.set Lset25258, Ltmp1879-Lfunc_begin0 - .quad Lset25258 -.set Lset25259, Ltmp1881-Lfunc_begin0 - .quad Lset25259 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25260, Ltmp1933-Lfunc_begin0 - .quad Lset25260 -.set Lset25261, Ltmp1936-Lfunc_begin0 - .quad Lset25261 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc361: -.set Lset25262, Ltmp1882-Lfunc_begin0 - .quad Lset25262 -.set Lset25263, Ltmp1883-Lfunc_begin0 - .quad Lset25263 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc362: -.set Lset25264, Ltmp1891-Lfunc_begin0 - .quad Lset25264 -.set Lset25265, Ltmp1910-Lfunc_begin0 - .quad Lset25265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25266, Ltmp1924-Lfunc_begin0 - .quad Lset25266 -.set Lset25267, Ltmp1933-Lfunc_begin0 - .quad Lset25267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25268, Ltmp1973-Lfunc_begin0 - .quad Lset25268 -.set Lset25269, Ltmp1982-Lfunc_begin0 - .quad Lset25269 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc363: -.set Lset25270, Ltmp1893-Lfunc_begin0 - .quad Lset25270 -.set Lset25271, Ltmp1896-Lfunc_begin0 - .quad Lset25271 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25272, Ltmp1924-Lfunc_begin0 - .quad Lset25272 -.set Lset25273, Ltmp1925-Lfunc_begin0 - .quad Lset25273 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc364: -.set Lset25274, Ltmp1896-Lfunc_begin0 - .quad Lset25274 -.set Lset25275, Ltmp1897-Lfunc_begin0 - .quad Lset25275 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc365: -.set Lset25276, Ltmp1899-Lfunc_begin0 - .quad Lset25276 -.set Lset25277, Ltmp1900-Lfunc_begin0 - .quad Lset25277 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25278, Ltmp1900-Lfunc_begin0 - .quad Lset25278 -.set Lset25279, Ltmp1930-Lfunc_begin0 - .quad Lset25279 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 208 ## -176 - .byte 126 ## -.set Lset25280, Ltmp1930-Lfunc_begin0 - .quad Lset25280 -.set Lset25281, Ltmp1932-Lfunc_begin0 - .quad Lset25281 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc366: -.set Lset25282, Ltmp1906-Lfunc_begin0 - .quad Lset25282 -.set Lset25283, Ltmp1909-Lfunc_begin0 - .quad Lset25283 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25284, Ltmp1929-Lfunc_begin0 - .quad Lset25284 -.set Lset25285, Ltmp1932-Lfunc_begin0 - .quad Lset25285 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc367: -.set Lset25286, Ltmp1909-Lfunc_begin0 - .quad Lset25286 -.set Lset25287, Ltmp1910-Lfunc_begin0 - .quad Lset25287 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc368: -.set Lset25288, Ltmp1912-Lfunc_begin0 - .quad Lset25288 -.set Lset25289, Ltmp1913-Lfunc_begin0 - .quad Lset25289 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset25290, Ltmp1913-Lfunc_begin0 - .quad Lset25290 -.set Lset25291, Ltmp1938-Lfunc_begin0 - .quad Lset25291 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 216 ## -168 - .byte 126 ## -.set Lset25292, Ltmp1938-Lfunc_begin0 - .quad Lset25292 -.set Lset25293, Ltmp1940-Lfunc_begin0 - .quad Lset25293 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc369: -.set Lset25294, Ltmp1919-Lfunc_begin0 - .quad Lset25294 -.set Lset25295, Ltmp1922-Lfunc_begin0 - .quad Lset25295 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25296, Ltmp1937-Lfunc_begin0 - .quad Lset25296 -.set Lset25297, Ltmp1940-Lfunc_begin0 - .quad Lset25297 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc370: -.set Lset25298, Ltmp1922-Lfunc_begin0 - .quad Lset25298 -.set Lset25299, Ltmp1924-Lfunc_begin0 - .quad Lset25299 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc371: -.set Lset25300, Ltmp1949-Lfunc_begin0 - .quad Lset25300 -.set Lset25301, Ltmp1951-Lfunc_begin0 - .quad Lset25301 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc372: -.set Lset25302, Ltmp1949-Lfunc_begin0 - .quad Lset25302 -.set Lset25303, Ltmp1951-Lfunc_begin0 - .quad Lset25303 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc373: -.set Lset25304, Ltmp1955-Lfunc_begin0 - .quad Lset25304 -.set Lset25305, Ltmp1970-Lfunc_begin0 - .quad Lset25305 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset25306, Ltmp1982-Lfunc_begin0 - .quad Lset25306 -.set Lset25307, Ltmp1997-Lfunc_begin0 - .quad Lset25307 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset25308, Ltmp5946-Lfunc_begin0 - .quad Lset25308 -.set Lset25309, Ltmp5947-Lfunc_begin0 - .quad Lset25309 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc374: -.set Lset25310, Ltmp1955-Lfunc_begin0 - .quad Lset25310 -.set Lset25311, Ltmp1960-Lfunc_begin0 - .quad Lset25311 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25312, Ltmp1982-Lfunc_begin0 - .quad Lset25312 -.set Lset25313, Ltmp1985-Lfunc_begin0 - .quad Lset25313 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc375: -.set Lset25314, Ltmp1958-Lfunc_begin0 - .quad Lset25314 -.set Lset25315, Ltmp1970-Lfunc_begin0 - .quad Lset25315 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25316, Ltmp1987-Lfunc_begin0 - .quad Lset25316 -.set Lset25317, Ltmp1992-Lfunc_begin0 - .quad Lset25317 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25318, Ltmp5946-Lfunc_begin0 - .quad Lset25318 -.set Lset25319, Ltmp5947-Lfunc_begin0 - .quad Lset25319 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc376: -.set Lset25320, Ltmp1958-Lfunc_begin0 - .quad Lset25320 -.set Lset25321, Ltmp1964-Lfunc_begin0 - .quad Lset25321 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25322, Ltmp1987-Lfunc_begin0 - .quad Lset25322 -.set Lset25323, Ltmp1989-Lfunc_begin0 - .quad Lset25323 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25324, Ltmp5946-Lfunc_begin0 - .quad Lset25324 -.set Lset25325, Ltmp5947-Lfunc_begin0 - .quad Lset25325 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc377: -.set Lset25326, Ltmp1979-Lfunc_begin0 - .quad Lset25326 -.set Lset25327, Ltmp1982-Lfunc_begin0 - .quad Lset25327 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc378: -.set Lset25328, Ltmp2006-Lfunc_begin0 - .quad Lset25328 -.set Lset25329, Ltmp2012-Lfunc_begin0 - .quad Lset25329 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25330, Ltmp2027-Lfunc_begin0 - .quad Lset25330 -.set Lset25331, Ltmp2059-Lfunc_begin0 - .quad Lset25331 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25332, Ltmp2061-Lfunc_begin0 - .quad Lset25332 -.set Lset25333, Ltmp2064-Lfunc_begin0 - .quad Lset25333 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25334, Ltmp6177-Lfunc_begin0 - .quad Lset25334 -.set Lset25335, Ltmp6178-Lfunc_begin0 - .quad Lset25335 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25336, Ltmp6179-Lfunc_begin0 - .quad Lset25336 -.set Lset25337, Ltmp6180-Lfunc_begin0 - .quad Lset25337 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25338, Ltmp6181-Lfunc_begin0 - .quad Lset25338 -.set Lset25339, Ltmp6182-Lfunc_begin0 - .quad Lset25339 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25340, Ltmp6309-Lfunc_begin0 - .quad Lset25340 -.set Lset25341, Ltmp6311-Lfunc_begin0 - .quad Lset25341 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25342, Ltmp6314-Lfunc_begin0 - .quad Lset25342 -.set Lset25343, Ltmp6315-Lfunc_begin0 - .quad Lset25343 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25344, Ltmp6317-Lfunc_begin0 - .quad Lset25344 -.set Lset25345, Ltmp6318-Lfunc_begin0 - .quad Lset25345 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc379: -.set Lset25346, Ltmp2006-Lfunc_begin0 - .quad Lset25346 -.set Lset25347, Ltmp2012-Lfunc_begin0 - .quad Lset25347 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25348, Ltmp2025-Lfunc_begin0 - .quad Lset25348 -.set Lset25349, Ltmp2046-Lfunc_begin0 - .quad Lset25349 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25350, Ltmp2061-Lfunc_begin0 - .quad Lset25350 -.set Lset25351, Ltmp2064-Lfunc_begin0 - .quad Lset25351 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25352, Ltmp6309-Lfunc_begin0 - .quad Lset25352 -.set Lset25353, Ltmp6310-Lfunc_begin0 - .quad Lset25353 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25354, Ltmp6312-Lfunc_begin0 - .quad Lset25354 -.set Lset25355, Ltmp6313-Lfunc_begin0 - .quad Lset25355 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25356, Ltmp6314-Lfunc_begin0 - .quad Lset25356 -.set Lset25357, Ltmp6316-Lfunc_begin0 - .quad Lset25357 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25358, Ltmp6317-Lfunc_begin0 - .quad Lset25358 -.set Lset25359, Ltmp6319-Lfunc_begin0 - .quad Lset25359 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc380: -.set Lset25360, Ltmp2027-Lfunc_begin0 - .quad Lset25360 -.set Lset25361, Ltmp2029-Lfunc_begin0 - .quad Lset25361 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc381: -.set Lset25362, Ltmp2034-Lfunc_begin0 - .quad Lset25362 -.set Lset25363, Ltmp2043-Lfunc_begin0 - .quad Lset25363 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc382: -.set Lset25364, Ltmp2035-Lfunc_begin0 - .quad Lset25364 -.set Lset25365, Ltmp2043-Lfunc_begin0 - .quad Lset25365 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc383: -.set Lset25366, Ltmp2035-Lfunc_begin0 - .quad Lset25366 -.set Lset25367, Ltmp2041-Lfunc_begin0 - .quad Lset25367 - .short 3 ## Loc expr size - .byte 120 ## DW_OP_breg8 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc384: -.set Lset25368, Ltmp2043-Lfunc_begin0 - .quad Lset25368 -.set Lset25369, Ltmp2050-Lfunc_begin0 - .quad Lset25369 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25370, Ltmp6177-Lfunc_begin0 - .quad Lset25370 -.set Lset25371, Ltmp6179-Lfunc_begin0 - .quad Lset25371 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc385: -.set Lset25372, Ltmp2043-Lfunc_begin0 - .quad Lset25372 -.set Lset25373, Ltmp2051-Lfunc_begin0 - .quad Lset25373 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25374, Ltmp2061-Lfunc_begin0 - .quad Lset25374 -.set Lset25375, Ltmp2064-Lfunc_begin0 - .quad Lset25375 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25376, Ltmp6177-Lfunc_begin0 - .quad Lset25376 -.set Lset25377, Ltmp6179-Lfunc_begin0 - .quad Lset25377 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc386: -.set Lset25378, Ltmp2089-Lfunc_begin0 - .quad Lset25378 -.set Lset25379, Ltmp2094-Lfunc_begin0 - .quad Lset25379 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25380, Ltmp6055-Lfunc_begin0 - .quad Lset25380 -.set Lset25381, Ltmp6056-Lfunc_begin0 - .quad Lset25381 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25382, Ltmp6320-Lfunc_begin0 - .quad Lset25382 -.set Lset25383, Ltmp6321-Lfunc_begin0 - .quad Lset25383 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc387: -.set Lset25384, Ltmp2089-Lfunc_begin0 - .quad Lset25384 -.set Lset25385, Ltmp2103-Lfunc_begin0 - .quad Lset25385 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25386, Ltmp6055-Lfunc_begin0 - .quad Lset25386 -.set Lset25387, Ltmp6056-Lfunc_begin0 - .quad Lset25387 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25388, Ltmp6320-Lfunc_begin0 - .quad Lset25388 -.set Lset25389, Ltmp6321-Lfunc_begin0 - .quad Lset25389 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc388: -.set Lset25390, Ltmp2095-Lfunc_begin0 - .quad Lset25390 -.set Lset25391, Ltmp2099-Lfunc_begin0 - .quad Lset25391 - .short 1 ## Loc expr size - .byte 85 ## super-register DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc389: -.set Lset25392, Ltmp2097-Lfunc_begin0 - .quad Lset25392 -.set Lset25393, Ltmp2102-Lfunc_begin0 - .quad Lset25393 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc390: -.set Lset25394, Ltmp2121-Lfunc_begin0 - .quad Lset25394 -.set Lset25395, Ltmp2127-Lfunc_begin0 - .quad Lset25395 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25396, Ltmp2137-Lfunc_begin0 - .quad Lset25396 -.set Lset25397, Ltmp2140-Lfunc_begin0 - .quad Lset25397 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25398, Ltmp2150-Lfunc_begin0 - .quad Lset25398 -.set Lset25399, Ltmp2180-Lfunc_begin0 - .quad Lset25399 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25400, Ltmp6183-Lfunc_begin0 - .quad Lset25400 -.set Lset25401, Ltmp6184-Lfunc_begin0 - .quad Lset25401 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25402, Ltmp6187-Lfunc_begin0 - .quad Lset25402 -.set Lset25403, Ltmp6189-Lfunc_begin0 - .quad Lset25403 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25404, Ltmp6190-Lfunc_begin0 - .quad Lset25404 -.set Lset25405, Ltmp6192-Lfunc_begin0 - .quad Lset25405 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25406, Ltmp6193-Lfunc_begin0 - .quad Lset25406 -.set Lset25407, Ltmp6195-Lfunc_begin0 - .quad Lset25407 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25408, Ltmp6196-Lfunc_begin0 - .quad Lset25408 -.set Lset25409, Ltmp6198-Lfunc_begin0 - .quad Lset25409 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc391: -.set Lset25410, Ltmp2121-Lfunc_begin0 - .quad Lset25410 -.set Lset25411, Ltmp2127-Lfunc_begin0 - .quad Lset25411 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25412, Ltmp2137-Lfunc_begin0 - .quad Lset25412 -.set Lset25413, Ltmp2140-Lfunc_begin0 - .quad Lset25413 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25414, Ltmp2149-Lfunc_begin0 - .quad Lset25414 -.set Lset25415, Ltmp2185-Lfunc_begin0 - .quad Lset25415 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25416, Ltmp5947-Lfunc_begin0 - .quad Lset25416 -.set Lset25417, Ltmp5948-Lfunc_begin0 - .quad Lset25417 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25418, Ltmp6183-Lfunc_begin0 - .quad Lset25418 -.set Lset25419, Ltmp6185-Lfunc_begin0 - .quad Lset25419 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25420, Ltmp6187-Lfunc_begin0 - .quad Lset25420 -.set Lset25421, Ltmp6188-Lfunc_begin0 - .quad Lset25421 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25422, Ltmp6190-Lfunc_begin0 - .quad Lset25422 -.set Lset25423, Ltmp6191-Lfunc_begin0 - .quad Lset25423 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25424, Ltmp6193-Lfunc_begin0 - .quad Lset25424 -.set Lset25425, Ltmp6194-Lfunc_begin0 - .quad Lset25425 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25426, Ltmp6196-Lfunc_begin0 - .quad Lset25426 -.set Lset25427, Ltmp6197-Lfunc_begin0 - .quad Lset25427 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc392: -.set Lset25428, Ltmp2137-Lfunc_begin0 - .quad Lset25428 -.set Lset25429, Ltmp2140-Lfunc_begin0 - .quad Lset25429 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25430, Ltmp2173-Lfunc_begin0 - .quad Lset25430 -.set Lset25431, Ltmp2177-Lfunc_begin0 - .quad Lset25431 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25432, Ltmp2179-Lfunc_begin0 - .quad Lset25432 -.set Lset25433, Ltmp2181-Lfunc_begin0 - .quad Lset25433 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc393: -.set Lset25434, Ltmp2150-Lfunc_begin0 - .quad Lset25434 -.set Lset25435, Ltmp2154-Lfunc_begin0 - .quad Lset25435 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25436, Ltmp6187-Lfunc_begin0 - .quad Lset25436 -.set Lset25437, Ltmp6188-Lfunc_begin0 - .quad Lset25437 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc394: -.set Lset25438, Ltmp2163-Lfunc_begin0 - .quad Lset25438 -.set Lset25439, Ltmp2173-Lfunc_begin0 - .quad Lset25439 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc395: -.set Lset25440, Ltmp2164-Lfunc_begin0 - .quad Lset25440 -.set Lset25441, Ltmp2173-Lfunc_begin0 - .quad Lset25441 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc396: -.set Lset25442, Ltmp2165-Lfunc_begin0 - .quad Lset25442 -.set Lset25443, Ltmp2171-Lfunc_begin0 - .quad Lset25443 - .short 3 ## Loc expr size - .byte 120 ## DW_OP_breg8 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc397: -.set Lset25444, Ltmp2173-Lfunc_begin0 - .quad Lset25444 -.set Lset25445, Ltmp2177-Lfunc_begin0 - .quad Lset25445 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25446, Ltmp2179-Lfunc_begin0 - .quad Lset25446 -.set Lset25447, Ltmp2181-Lfunc_begin0 - .quad Lset25447 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc398: -.set Lset25448, Ltmp2195-Lfunc_begin0 - .quad Lset25448 -.set Lset25449, Ltmp2197-Lfunc_begin0 - .quad Lset25449 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25450, Ltmp2229-Lfunc_begin0 - .quad Lset25450 -.set Lset25451, Ltmp2234-Lfunc_begin0 - .quad Lset25451 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25452, Ltmp2236-Lfunc_begin0 - .quad Lset25452 -.set Lset25453, Ltmp2237-Lfunc_begin0 - .quad Lset25453 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc399: -.set Lset25454, Ltmp2195-Lfunc_begin0 - .quad Lset25454 -.set Lset25455, Ltmp2197-Lfunc_begin0 - .quad Lset25455 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25456, Ltmp2229-Lfunc_begin0 - .quad Lset25456 -.set Lset25457, Ltmp2234-Lfunc_begin0 - .quad Lset25457 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25458, Ltmp2236-Lfunc_begin0 - .quad Lset25458 -.set Lset25459, Ltmp2240-Lfunc_begin0 - .quad Lset25459 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc400: -.set Lset25460, Ltmp2195-Lfunc_begin0 - .quad Lset25460 -.set Lset25461, Ltmp2196-Lfunc_begin0 - .quad Lset25461 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25462, Ltmp2216-Lfunc_begin0 - .quad Lset25462 -.set Lset25463, Ltmp2233-Lfunc_begin0 - .quad Lset25463 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25464, Ltmp2235-Lfunc_begin0 - .quad Lset25464 -.set Lset25465, Ltmp2244-Lfunc_begin0 - .quad Lset25465 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25466, Ltmp6329-Lfunc_begin0 - .quad Lset25466 -.set Lset25467, Ltmp6333-Lfunc_begin0 - .quad Lset25467 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc401: -.set Lset25468, Ltmp2195-Lfunc_begin0 - .quad Lset25468 -.set Lset25469, Ltmp2200-Lfunc_begin0 - .quad Lset25469 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25470, Ltmp2211-Lfunc_begin0 - .quad Lset25470 -.set Lset25471, Ltmp2239-Lfunc_begin0 - .quad Lset25471 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25472, Ltmp6199-Lfunc_begin0 - .quad Lset25472 -.set Lset25473, Ltmp6200-Lfunc_begin0 - .quad Lset25473 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25474, Ltmp6326-Lfunc_begin0 - .quad Lset25474 -.set Lset25475, Ltmp6333-Lfunc_begin0 - .quad Lset25475 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc402: -.set Lset25476, Ltmp2213-Lfunc_begin0 - .quad Lset25476 -.set Lset25477, Ltmp2228-Lfunc_begin0 - .quad Lset25477 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25478, Ltmp2235-Lfunc_begin0 - .quad Lset25478 -.set Lset25479, Ltmp2236-Lfunc_begin0 - .quad Lset25479 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25480, Ltmp6327-Lfunc_begin0 - .quad Lset25480 -.set Lset25481, Ltmp6328-Lfunc_begin0 - .quad Lset25481 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25482, Ltmp6329-Lfunc_begin0 - .quad Lset25482 -.set Lset25483, Ltmp6330-Lfunc_begin0 - .quad Lset25483 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25484, Ltmp6331-Lfunc_begin0 - .quad Lset25484 -.set Lset25485, Ltmp6332-Lfunc_begin0 - .quad Lset25485 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc403: -.set Lset25486, Ltmp2216-Lfunc_begin0 - .quad Lset25486 -.set Lset25487, Ltmp2221-Lfunc_begin0 - .quad Lset25487 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25488, Ltmp6329-Lfunc_begin0 - .quad Lset25488 -.set Lset25489, Ltmp6331-Lfunc_begin0 - .quad Lset25489 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc404: -.set Lset25490, Ltmp2265-Lfunc_begin0 - .quad Lset25490 -.set Lset25491, Ltmp2285-Lfunc_begin0 - .quad Lset25491 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25492, Ltmp2289-Lfunc_begin0 - .quad Lset25492 -.set Lset25493, Ltmp2294-Lfunc_begin0 - .quad Lset25493 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25494, Ltmp6201-Lfunc_begin0 - .quad Lset25494 -.set Lset25495, Ltmp6202-Lfunc_begin0 - .quad Lset25495 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc405: -.set Lset25496, Ltmp2267-Lfunc_begin0 - .quad Lset25496 -.set Lset25497, Ltmp2285-Lfunc_begin0 - .quad Lset25497 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25498, Ltmp2289-Lfunc_begin0 - .quad Lset25498 -.set Lset25499, Ltmp2294-Lfunc_begin0 - .quad Lset25499 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc406: -.set Lset25500, Ltmp2271-Lfunc_begin0 - .quad Lset25500 -.set Lset25501, Ltmp2274-Lfunc_begin0 - .quad Lset25501 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc407: -.set Lset25502, Ltmp2276-Lfunc_begin0 - .quad Lset25502 -.set Lset25503, Ltmp2281-Lfunc_begin0 - .quad Lset25503 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25504, Ltmp2290-Lfunc_begin0 - .quad Lset25504 -.set Lset25505, Ltmp2293-Lfunc_begin0 - .quad Lset25505 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc408: -.set Lset25506, Ltmp2280-Lfunc_begin0 - .quad Lset25506 -.set Lset25507, Ltmp2281-Lfunc_begin0 - .quad Lset25507 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25508, Ltmp2292-Lfunc_begin0 - .quad Lset25508 -.set Lset25509, Ltmp2294-Lfunc_begin0 - .quad Lset25509 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc409: -.set Lset25510, Ltmp2314-Lfunc_begin0 - .quad Lset25510 -.set Lset25511, Ltmp2334-Lfunc_begin0 - .quad Lset25511 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25512, Ltmp2338-Lfunc_begin0 - .quad Lset25512 -.set Lset25513, Ltmp2343-Lfunc_begin0 - .quad Lset25513 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25514, Ltmp5950-Lfunc_begin0 - .quad Lset25514 -.set Lset25515, Ltmp5951-Lfunc_begin0 - .quad Lset25515 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc410: -.set Lset25516, Ltmp2316-Lfunc_begin0 - .quad Lset25516 -.set Lset25517, Ltmp2334-Lfunc_begin0 - .quad Lset25517 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25518, Ltmp2338-Lfunc_begin0 - .quad Lset25518 -.set Lset25519, Ltmp2343-Lfunc_begin0 - .quad Lset25519 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc411: -.set Lset25520, Ltmp2320-Lfunc_begin0 - .quad Lset25520 -.set Lset25521, Ltmp2323-Lfunc_begin0 - .quad Lset25521 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc412: -.set Lset25522, Ltmp2325-Lfunc_begin0 - .quad Lset25522 -.set Lset25523, Ltmp2330-Lfunc_begin0 - .quad Lset25523 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25524, Ltmp2339-Lfunc_begin0 - .quad Lset25524 -.set Lset25525, Ltmp2342-Lfunc_begin0 - .quad Lset25525 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc413: -.set Lset25526, Ltmp2329-Lfunc_begin0 - .quad Lset25526 -.set Lset25527, Ltmp2330-Lfunc_begin0 - .quad Lset25527 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25528, Ltmp2341-Lfunc_begin0 - .quad Lset25528 -.set Lset25529, Ltmp2343-Lfunc_begin0 - .quad Lset25529 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc414: -.set Lset25530, Ltmp2363-Lfunc_begin0 - .quad Lset25530 -.set Lset25531, Ltmp2383-Lfunc_begin0 - .quad Lset25531 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25532, Ltmp2387-Lfunc_begin0 - .quad Lset25532 -.set Lset25533, Ltmp2392-Lfunc_begin0 - .quad Lset25533 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25534, Ltmp6145-Lfunc_begin0 - .quad Lset25534 -.set Lset25535, Ltmp6146-Lfunc_begin0 - .quad Lset25535 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc415: -.set Lset25536, Ltmp2365-Lfunc_begin0 - .quad Lset25536 -.set Lset25537, Ltmp2383-Lfunc_begin0 - .quad Lset25537 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25538, Ltmp2387-Lfunc_begin0 - .quad Lset25538 -.set Lset25539, Ltmp2392-Lfunc_begin0 - .quad Lset25539 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc416: -.set Lset25540, Ltmp2369-Lfunc_begin0 - .quad Lset25540 -.set Lset25541, Ltmp2372-Lfunc_begin0 - .quad Lset25541 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc417: -.set Lset25542, Ltmp2374-Lfunc_begin0 - .quad Lset25542 -.set Lset25543, Ltmp2379-Lfunc_begin0 - .quad Lset25543 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25544, Ltmp2388-Lfunc_begin0 - .quad Lset25544 -.set Lset25545, Ltmp2391-Lfunc_begin0 - .quad Lset25545 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc418: -.set Lset25546, Ltmp2378-Lfunc_begin0 - .quad Lset25546 -.set Lset25547, Ltmp2379-Lfunc_begin0 - .quad Lset25547 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25548, Ltmp2390-Lfunc_begin0 - .quad Lset25548 -.set Lset25549, Ltmp2392-Lfunc_begin0 - .quad Lset25549 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc419: -.set Lset25550, Ltmp2412-Lfunc_begin0 - .quad Lset25550 -.set Lset25551, Ltmp2426-Lfunc_begin0 - .quad Lset25551 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25552, Ltmp2430-Lfunc_begin0 - .quad Lset25552 -.set Lset25553, Ltmp2436-Lfunc_begin0 - .quad Lset25553 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25554, Ltmp6334-Lfunc_begin0 - .quad Lset25554 -.set Lset25555, Ltmp6335-Lfunc_begin0 - .quad Lset25555 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc420: -.set Lset25556, Ltmp2414-Lfunc_begin0 - .quad Lset25556 -.set Lset25557, Ltmp2426-Lfunc_begin0 - .quad Lset25557 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25558, Ltmp2430-Lfunc_begin0 - .quad Lset25558 -.set Lset25559, Ltmp2436-Lfunc_begin0 - .quad Lset25559 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc421: -.set Lset25560, Ltmp2417-Lfunc_begin0 - .quad Lset25560 -.set Lset25561, Ltmp2422-Lfunc_begin0 - .quad Lset25561 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25562, Ltmp2431-Lfunc_begin0 - .quad Lset25562 -.set Lset25563, Ltmp2435-Lfunc_begin0 - .quad Lset25563 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc422: -.set Lset25564, Ltmp2421-Lfunc_begin0 - .quad Lset25564 -.set Lset25565, Ltmp2422-Lfunc_begin0 - .quad Lset25565 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25566, Ltmp2434-Lfunc_begin0 - .quad Lset25566 -.set Lset25567, Ltmp2436-Lfunc_begin0 - .quad Lset25567 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc423: -.set Lset25568, Ltmp2446-Lfunc_begin0 - .quad Lset25568 -.set Lset25569, Ltmp2450-Lfunc_begin0 - .quad Lset25569 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25570, Ltmp2482-Lfunc_begin0 - .quad Lset25570 -.set Lset25571, Ltmp2483-Lfunc_begin0 - .quad Lset25571 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc424: -.set Lset25572, Ltmp2446-Lfunc_begin0 - .quad Lset25572 -.set Lset25573, Ltmp2448-Lfunc_begin0 - .quad Lset25573 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25574, Ltmp2481-Lfunc_begin0 - .quad Lset25574 -.set Lset25575, Ltmp2483-Lfunc_begin0 - .quad Lset25575 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc425: -.set Lset25576, Ltmp2446-Lfunc_begin0 - .quad Lset25576 -.set Lset25577, Ltmp2450-Lfunc_begin0 - .quad Lset25577 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25578, Ltmp2465-Lfunc_begin0 - .quad Lset25578 -.set Lset25579, Ltmp2471-Lfunc_begin0 - .quad Lset25579 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25580, Ltmp2478-Lfunc_begin0 - .quad Lset25580 -.set Lset25581, Ltmp2483-Lfunc_begin0 - .quad Lset25581 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc426: -.set Lset25582, Ltmp2446-Lfunc_begin0 - .quad Lset25582 -.set Lset25583, Ltmp2450-Lfunc_begin0 - .quad Lset25583 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25584, Ltmp2462-Lfunc_begin0 - .quad Lset25584 -.set Lset25585, Ltmp2487-Lfunc_begin0 - .quad Lset25585 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc427: -.set Lset25586, Ltmp2446-Lfunc_begin0 - .quad Lset25586 -.set Lset25587, Ltmp2450-Lfunc_begin0 - .quad Lset25587 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25588, Ltmp2460-Lfunc_begin0 - .quad Lset25588 -.set Lset25589, Ltmp2487-Lfunc_begin0 - .quad Lset25589 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25590, Ltmp5954-Lfunc_begin0 - .quad Lset25590 -.set Lset25591, Ltmp5955-Lfunc_begin0 - .quad Lset25591 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc428: -.set Lset25592, Ltmp2469-Lfunc_begin0 - .quad Lset25592 -.set Lset25593, Ltmp2470-Lfunc_begin0 - .quad Lset25593 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc429: -.set Lset25594, Ltmp2472-Lfunc_begin0 - .quad Lset25594 -.set Lset25595, Ltmp2476-Lfunc_begin0 - .quad Lset25595 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc430: -.set Lset25596, Ltmp2473-Lfunc_begin0 - .quad Lset25596 -.set Lset25597, Ltmp2480-Lfunc_begin0 - .quad Lset25597 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc431: -.set Lset25598, Ltmp2501-Lfunc_begin0 - .quad Lset25598 -.set Lset25599, Ltmp2505-Lfunc_begin0 - .quad Lset25599 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25600, Ltmp2537-Lfunc_begin0 - .quad Lset25600 -.set Lset25601, Ltmp2538-Lfunc_begin0 - .quad Lset25601 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc432: -.set Lset25602, Ltmp2501-Lfunc_begin0 - .quad Lset25602 -.set Lset25603, Ltmp2503-Lfunc_begin0 - .quad Lset25603 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25604, Ltmp2536-Lfunc_begin0 - .quad Lset25604 -.set Lset25605, Ltmp2538-Lfunc_begin0 - .quad Lset25605 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc433: -.set Lset25606, Ltmp2501-Lfunc_begin0 - .quad Lset25606 -.set Lset25607, Ltmp2505-Lfunc_begin0 - .quad Lset25607 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25608, Ltmp2520-Lfunc_begin0 - .quad Lset25608 -.set Lset25609, Ltmp2526-Lfunc_begin0 - .quad Lset25609 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25610, Ltmp2533-Lfunc_begin0 - .quad Lset25610 -.set Lset25611, Ltmp2538-Lfunc_begin0 - .quad Lset25611 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc434: -.set Lset25612, Ltmp2501-Lfunc_begin0 - .quad Lset25612 -.set Lset25613, Ltmp2505-Lfunc_begin0 - .quad Lset25613 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25614, Ltmp2517-Lfunc_begin0 - .quad Lset25614 -.set Lset25615, Ltmp2542-Lfunc_begin0 - .quad Lset25615 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc435: -.set Lset25616, Ltmp2501-Lfunc_begin0 - .quad Lset25616 -.set Lset25617, Ltmp2505-Lfunc_begin0 - .quad Lset25617 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25618, Ltmp2515-Lfunc_begin0 - .quad Lset25618 -.set Lset25619, Ltmp2542-Lfunc_begin0 - .quad Lset25619 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25620, Ltmp6057-Lfunc_begin0 - .quad Lset25620 -.set Lset25621, Ltmp6058-Lfunc_begin0 - .quad Lset25621 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc436: -.set Lset25622, Ltmp2524-Lfunc_begin0 - .quad Lset25622 -.set Lset25623, Ltmp2525-Lfunc_begin0 - .quad Lset25623 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc437: -.set Lset25624, Ltmp2527-Lfunc_begin0 - .quad Lset25624 -.set Lset25625, Ltmp2531-Lfunc_begin0 - .quad Lset25625 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc438: -.set Lset25626, Ltmp2528-Lfunc_begin0 - .quad Lset25626 -.set Lset25627, Ltmp2535-Lfunc_begin0 - .quad Lset25627 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc439: -.set Lset25628, Ltmp2556-Lfunc_begin0 - .quad Lset25628 -.set Lset25629, Ltmp2560-Lfunc_begin0 - .quad Lset25629 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25630, Ltmp2592-Lfunc_begin0 - .quad Lset25630 -.set Lset25631, Ltmp2593-Lfunc_begin0 - .quad Lset25631 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc440: -.set Lset25632, Ltmp2556-Lfunc_begin0 - .quad Lset25632 -.set Lset25633, Ltmp2558-Lfunc_begin0 - .quad Lset25633 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25634, Ltmp2591-Lfunc_begin0 - .quad Lset25634 -.set Lset25635, Ltmp2593-Lfunc_begin0 - .quad Lset25635 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc441: -.set Lset25636, Ltmp2556-Lfunc_begin0 - .quad Lset25636 -.set Lset25637, Ltmp2560-Lfunc_begin0 - .quad Lset25637 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25638, Ltmp2575-Lfunc_begin0 - .quad Lset25638 -.set Lset25639, Ltmp2581-Lfunc_begin0 - .quad Lset25639 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25640, Ltmp2588-Lfunc_begin0 - .quad Lset25640 -.set Lset25641, Ltmp2593-Lfunc_begin0 - .quad Lset25641 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc442: -.set Lset25642, Ltmp2556-Lfunc_begin0 - .quad Lset25642 -.set Lset25643, Ltmp2560-Lfunc_begin0 - .quad Lset25643 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25644, Ltmp2572-Lfunc_begin0 - .quad Lset25644 -.set Lset25645, Ltmp2597-Lfunc_begin0 - .quad Lset25645 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc443: -.set Lset25646, Ltmp2556-Lfunc_begin0 - .quad Lset25646 -.set Lset25647, Ltmp2560-Lfunc_begin0 - .quad Lset25647 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25648, Ltmp2570-Lfunc_begin0 - .quad Lset25648 -.set Lset25649, Ltmp2597-Lfunc_begin0 - .quad Lset25649 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25650, Ltmp6337-Lfunc_begin0 - .quad Lset25650 -.set Lset25651, Ltmp6338-Lfunc_begin0 - .quad Lset25651 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc444: -.set Lset25652, Ltmp2579-Lfunc_begin0 - .quad Lset25652 -.set Lset25653, Ltmp2580-Lfunc_begin0 - .quad Lset25653 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc445: -.set Lset25654, Ltmp2582-Lfunc_begin0 - .quad Lset25654 -.set Lset25655, Ltmp2586-Lfunc_begin0 - .quad Lset25655 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc446: -.set Lset25656, Ltmp2583-Lfunc_begin0 - .quad Lset25656 -.set Lset25657, Ltmp2590-Lfunc_begin0 - .quad Lset25657 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc447: -.set Lset25658, Ltmp2611-Lfunc_begin0 - .quad Lset25658 -.set Lset25659, Ltmp2617-Lfunc_begin0 - .quad Lset25659 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25660, Ltmp2656-Lfunc_begin0 - .quad Lset25660 -.set Lset25661, Ltmp2657-Lfunc_begin0 - .quad Lset25661 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc448: -.set Lset25662, Ltmp2611-Lfunc_begin0 - .quad Lset25662 -.set Lset25663, Ltmp2613-Lfunc_begin0 - .quad Lset25663 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25664, Ltmp2655-Lfunc_begin0 - .quad Lset25664 -.set Lset25665, Ltmp2657-Lfunc_begin0 - .quad Lset25665 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc449: -.set Lset25666, Ltmp2611-Lfunc_begin0 - .quad Lset25666 -.set Lset25667, Ltmp2618-Lfunc_begin0 - .quad Lset25667 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25668, Ltmp2636-Lfunc_begin0 - .quad Lset25668 -.set Lset25669, Ltmp2643-Lfunc_begin0 - .quad Lset25669 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25670, Ltmp2652-Lfunc_begin0 - .quad Lset25670 -.set Lset25671, Ltmp2657-Lfunc_begin0 - .quad Lset25671 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc450: -.set Lset25672, Ltmp2611-Lfunc_begin0 - .quad Lset25672 -.set Lset25673, Ltmp2621-Lfunc_begin0 - .quad Lset25673 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25674, Ltmp2633-Lfunc_begin0 - .quad Lset25674 -.set Lset25675, Ltmp2661-Lfunc_begin0 - .quad Lset25675 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc451: -.set Lset25676, Ltmp2611-Lfunc_begin0 - .quad Lset25676 -.set Lset25677, Ltmp2621-Lfunc_begin0 - .quad Lset25677 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25678, Ltmp2631-Lfunc_begin0 - .quad Lset25678 -.set Lset25679, Ltmp2661-Lfunc_begin0 - .quad Lset25679 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25680, Ltmp6340-Lfunc_begin0 - .quad Lset25680 -.set Lset25681, Ltmp6341-Lfunc_begin0 - .quad Lset25681 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc452: -.set Lset25682, Ltmp2615-Lfunc_begin0 - .quad Lset25682 -.set Lset25683, Ltmp2621-Lfunc_begin0 - .quad Lset25683 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25684, Ltmp2640-Lfunc_begin0 - .quad Lset25684 -.set Lset25685, Ltmp2645-Lfunc_begin0 - .quad Lset25685 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc453: -.set Lset25686, Ltmp2615-Lfunc_begin0 - .quad Lset25686 -.set Lset25687, Ltmp2620-Lfunc_begin0 - .quad Lset25687 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25688, Ltmp2640-Lfunc_begin0 - .quad Lset25688 -.set Lset25689, Ltmp2645-Lfunc_begin0 - .quad Lset25689 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc454: -.set Lset25690, Ltmp2636-Lfunc_begin0 - .quad Lset25690 -.set Lset25691, Ltmp2638-Lfunc_begin0 - .quad Lset25691 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25692, Ltmp2652-Lfunc_begin0 - .quad Lset25692 -.set Lset25693, Ltmp2654-Lfunc_begin0 - .quad Lset25693 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc455: -.set Lset25694, Ltmp2646-Lfunc_begin0 - .quad Lset25694 -.set Lset25695, Ltmp2650-Lfunc_begin0 - .quad Lset25695 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc456: -.set Lset25696, Ltmp2647-Lfunc_begin0 - .quad Lset25696 -.set Lset25697, Ltmp2654-Lfunc_begin0 - .quad Lset25697 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc457: -.set Lset25698, Ltmp2675-Lfunc_begin0 - .quad Lset25698 -.set Lset25699, Ltmp2681-Lfunc_begin0 - .quad Lset25699 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25700, Ltmp2721-Lfunc_begin0 - .quad Lset25700 -.set Lset25701, Ltmp2722-Lfunc_begin0 - .quad Lset25701 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc458: -.set Lset25702, Ltmp2675-Lfunc_begin0 - .quad Lset25702 -.set Lset25703, Ltmp2677-Lfunc_begin0 - .quad Lset25703 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25704, Ltmp2720-Lfunc_begin0 - .quad Lset25704 -.set Lset25705, Ltmp2722-Lfunc_begin0 - .quad Lset25705 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc459: -.set Lset25706, Ltmp2675-Lfunc_begin0 - .quad Lset25706 -.set Lset25707, Ltmp2683-Lfunc_begin0 - .quad Lset25707 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25708, Ltmp2701-Lfunc_begin0 - .quad Lset25708 -.set Lset25709, Ltmp2708-Lfunc_begin0 - .quad Lset25709 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25710, Ltmp2717-Lfunc_begin0 - .quad Lset25710 -.set Lset25711, Ltmp2722-Lfunc_begin0 - .quad Lset25711 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc460: -.set Lset25712, Ltmp2675-Lfunc_begin0 - .quad Lset25712 -.set Lset25713, Ltmp2686-Lfunc_begin0 - .quad Lset25713 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25714, Ltmp2698-Lfunc_begin0 - .quad Lset25714 -.set Lset25715, Ltmp2726-Lfunc_begin0 - .quad Lset25715 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc461: -.set Lset25716, Ltmp2675-Lfunc_begin0 - .quad Lset25716 -.set Lset25717, Ltmp2686-Lfunc_begin0 - .quad Lset25717 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25718, Ltmp2696-Lfunc_begin0 - .quad Lset25718 -.set Lset25719, Ltmp2726-Lfunc_begin0 - .quad Lset25719 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25720, Ltmp6204-Lfunc_begin0 - .quad Lset25720 -.set Lset25721, Ltmp6205-Lfunc_begin0 - .quad Lset25721 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc462: -.set Lset25722, Ltmp2679-Lfunc_begin0 - .quad Lset25722 -.set Lset25723, Ltmp2686-Lfunc_begin0 - .quad Lset25723 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset25724, Ltmp2705-Lfunc_begin0 - .quad Lset25724 -.set Lset25725, Ltmp2710-Lfunc_begin0 - .quad Lset25725 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc463: -.set Lset25726, Ltmp2701-Lfunc_begin0 - .quad Lset25726 -.set Lset25727, Ltmp2703-Lfunc_begin0 - .quad Lset25727 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset25728, Ltmp2717-Lfunc_begin0 - .quad Lset25728 -.set Lset25729, Ltmp2719-Lfunc_begin0 - .quad Lset25729 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc464: -.set Lset25730, Ltmp2711-Lfunc_begin0 - .quad Lset25730 -.set Lset25731, Ltmp2715-Lfunc_begin0 - .quad Lset25731 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc465: -.set Lset25732, Ltmp2712-Lfunc_begin0 - .quad Lset25732 -.set Lset25733, Ltmp2719-Lfunc_begin0 - .quad Lset25733 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc466: -.set Lset25734, Ltmp2750-Lfunc_begin0 - .quad Lset25734 -.set Lset25735, Ltmp2759-Lfunc_begin0 - .quad Lset25735 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25736, Ltmp2765-Lfunc_begin0 - .quad Lset25736 -.set Lset25737, Ltmp2778-Lfunc_begin0 - .quad Lset25737 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25738, Ltmp2782-Lfunc_begin0 - .quad Lset25738 -.set Lset25739, Ltmp2790-Lfunc_begin0 - .quad Lset25739 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25740, Ltmp6060-Lfunc_begin0 - .quad Lset25740 -.set Lset25741, Ltmp6061-Lfunc_begin0 - .quad Lset25741 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc467: -.set Lset25742, Ltmp2752-Lfunc_begin0 - .quad Lset25742 -.set Lset25743, Ltmp2778-Lfunc_begin0 - .quad Lset25743 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25744, Ltmp2782-Lfunc_begin0 - .quad Lset25744 -.set Lset25745, Ltmp2790-Lfunc_begin0 - .quad Lset25745 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25746, Ltmp2797-Lfunc_begin0 - .quad Lset25746 -.set Lset25747, Ltmp2798-Lfunc_begin0 - .quad Lset25747 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25748, Ltmp6062-Lfunc_begin0 - .quad Lset25748 -.set Lset25749, Ltmp6064-Lfunc_begin0 - .quad Lset25749 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc468: -.set Lset25750, Ltmp2756-Lfunc_begin0 - .quad Lset25750 -.set Lset25751, Ltmp2764-Lfunc_begin0 - .quad Lset25751 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25752, Ltmp2797-Lfunc_begin0 - .quad Lset25752 -.set Lset25753, Ltmp2800-Lfunc_begin0 - .quad Lset25753 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25754, Ltmp6062-Lfunc_begin0 - .quad Lset25754 -.set Lset25755, Ltmp6064-Lfunc_begin0 - .quad Lset25755 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc469: -.set Lset25756, Ltmp2756-Lfunc_begin0 - .quad Lset25756 -.set Lset25757, Ltmp2764-Lfunc_begin0 - .quad Lset25757 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25758, Ltmp2797-Lfunc_begin0 - .quad Lset25758 -.set Lset25759, Ltmp2800-Lfunc_begin0 - .quad Lset25759 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25760, Ltmp6062-Lfunc_begin0 - .quad Lset25760 -.set Lset25761, Ltmp6064-Lfunc_begin0 - .quad Lset25761 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc470: -.set Lset25762, Ltmp2759-Lfunc_begin0 - .quad Lset25762 -.set Lset25763, Ltmp2765-Lfunc_begin0 - .quad Lset25763 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25764, Ltmp2797-Lfunc_begin0 - .quad Lset25764 -.set Lset25765, Ltmp2801-Lfunc_begin0 - .quad Lset25765 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25766, Ltmp6062-Lfunc_begin0 - .quad Lset25766 -.set Lset25767, Ltmp6063-Lfunc_begin0 - .quad Lset25767 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc471: -.set Lset25768, Ltmp2759-Lfunc_begin0 - .quad Lset25768 -.set Lset25769, Ltmp2765-Lfunc_begin0 - .quad Lset25769 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25770, Ltmp2797-Lfunc_begin0 - .quad Lset25770 -.set Lset25771, Ltmp2801-Lfunc_begin0 - .quad Lset25771 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25772, Ltmp6062-Lfunc_begin0 - .quad Lset25772 -.set Lset25773, Ltmp6063-Lfunc_begin0 - .quad Lset25773 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc472: -.set Lset25774, Ltmp2766-Lfunc_begin0 - .quad Lset25774 -.set Lset25775, Ltmp2774-Lfunc_begin0 - .quad Lset25775 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25776, Ltmp2783-Lfunc_begin0 - .quad Lset25776 -.set Lset25777, Ltmp2790-Lfunc_begin0 - .quad Lset25777 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc473: -.set Lset25778, Ltmp2773-Lfunc_begin0 - .quad Lset25778 -.set Lset25779, Ltmp2774-Lfunc_begin0 - .quad Lset25779 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25780, Ltmp2788-Lfunc_begin0 - .quad Lset25780 -.set Lset25781, Ltmp2789-Lfunc_begin0 - .quad Lset25781 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25782, Ltmp2789-Lfunc_begin0 - .quad Lset25782 -.set Lset25783, Ltmp2791-Lfunc_begin0 - .quad Lset25783 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset25784, Ltmp2791-Lfunc_begin0 - .quad Lset25784 -.set Lset25785, Ltmp2792-Lfunc_begin0 - .quad Lset25785 - .short 1 ## Loc expr size - .byte 100 ## DW_OP_reg20 - .quad 0 - .quad 0 -Ldebug_loc474: -.set Lset25786, Ltmp2790-Lfunc_begin0 - .quad Lset25786 -.set Lset25787, Ltmp2792-Lfunc_begin0 - .quad Lset25787 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25788, Ltmp2792-Lfunc_begin0 - .quad Lset25788 -.set Lset25789, Ltmp2794-Lfunc_begin0 - .quad Lset25789 - .short 1 ## Loc expr size - .byte 100 ## DW_OP_reg20 -.set Lset25790, Ltmp2795-Lfunc_begin0 - .quad Lset25790 -.set Lset25791, Ltmp2797-Lfunc_begin0 - .quad Lset25791 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc475: -.set Lset25792, Ltmp2799-Lfunc_begin0 - .quad Lset25792 -.set Lset25793, Ltmp2802-Lfunc_begin0 - .quad Lset25793 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc476: -.set Lset25794, Ltmp2823-Lfunc_begin0 - .quad Lset25794 -.set Lset25795, Ltmp2832-Lfunc_begin0 - .quad Lset25795 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25796, Ltmp2838-Lfunc_begin0 - .quad Lset25796 -.set Lset25797, Ltmp2848-Lfunc_begin0 - .quad Lset25797 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25798, Ltmp2852-Lfunc_begin0 - .quad Lset25798 -.set Lset25799, Ltmp2857-Lfunc_begin0 - .quad Lset25799 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25800, Ltmp6207-Lfunc_begin0 - .quad Lset25800 -.set Lset25801, Ltmp6208-Lfunc_begin0 - .quad Lset25801 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc477: -.set Lset25802, Ltmp2825-Lfunc_begin0 - .quad Lset25802 -.set Lset25803, Ltmp2848-Lfunc_begin0 - .quad Lset25803 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25804, Ltmp2852-Lfunc_begin0 - .quad Lset25804 -.set Lset25805, Ltmp2858-Lfunc_begin0 - .quad Lset25805 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25806, Ltmp5956-Lfunc_begin0 - .quad Lset25806 -.set Lset25807, Ltmp5958-Lfunc_begin0 - .quad Lset25807 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc478: -.set Lset25808, Ltmp2829-Lfunc_begin0 - .quad Lset25808 -.set Lset25809, Ltmp2837-Lfunc_begin0 - .quad Lset25809 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25810, Ltmp2857-Lfunc_begin0 - .quad Lset25810 -.set Lset25811, Ltmp2862-Lfunc_begin0 - .quad Lset25811 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25812, Ltmp5956-Lfunc_begin0 - .quad Lset25812 -.set Lset25813, Ltmp5958-Lfunc_begin0 - .quad Lset25813 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc479: -.set Lset25814, Ltmp2829-Lfunc_begin0 - .quad Lset25814 -.set Lset25815, Ltmp2837-Lfunc_begin0 - .quad Lset25815 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25816, Ltmp2857-Lfunc_begin0 - .quad Lset25816 -.set Lset25817, Ltmp2862-Lfunc_begin0 - .quad Lset25817 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset25818, Ltmp5956-Lfunc_begin0 - .quad Lset25818 -.set Lset25819, Ltmp5958-Lfunc_begin0 - .quad Lset25819 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc480: -.set Lset25820, Ltmp2832-Lfunc_begin0 - .quad Lset25820 -.set Lset25821, Ltmp2838-Lfunc_begin0 - .quad Lset25821 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25822, Ltmp2857-Lfunc_begin0 - .quad Lset25822 -.set Lset25823, Ltmp2860-Lfunc_begin0 - .quad Lset25823 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25824, Ltmp5956-Lfunc_begin0 - .quad Lset25824 -.set Lset25825, Ltmp5957-Lfunc_begin0 - .quad Lset25825 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc481: -.set Lset25826, Ltmp2832-Lfunc_begin0 - .quad Lset25826 -.set Lset25827, Ltmp2838-Lfunc_begin0 - .quad Lset25827 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25828, Ltmp2857-Lfunc_begin0 - .quad Lset25828 -.set Lset25829, Ltmp2860-Lfunc_begin0 - .quad Lset25829 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25830, Ltmp5956-Lfunc_begin0 - .quad Lset25830 -.set Lset25831, Ltmp5957-Lfunc_begin0 - .quad Lset25831 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc482: -.set Lset25832, Ltmp2839-Lfunc_begin0 - .quad Lset25832 -.set Lset25833, Ltmp2844-Lfunc_begin0 - .quad Lset25833 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25834, Ltmp2853-Lfunc_begin0 - .quad Lset25834 -.set Lset25835, Ltmp2856-Lfunc_begin0 - .quad Lset25835 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc483: -.set Lset25836, Ltmp2843-Lfunc_begin0 - .quad Lset25836 -.set Lset25837, Ltmp2844-Lfunc_begin0 - .quad Lset25837 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25838, Ltmp2855-Lfunc_begin0 - .quad Lset25838 -.set Lset25839, Ltmp2857-Lfunc_begin0 - .quad Lset25839 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc484: -.set Lset25840, Ltmp2859-Lfunc_begin0 - .quad Lset25840 -.set Lset25841, Ltmp2862-Lfunc_begin0 - .quad Lset25841 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc485: -.set Lset25842, Ltmp2884-Lfunc_begin0 - .quad Lset25842 -.set Lset25843, Ltmp2901-Lfunc_begin0 - .quad Lset25843 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25844, Ltmp2904-Lfunc_begin0 - .quad Lset25844 -.set Lset25845, Ltmp2912-Lfunc_begin0 - .quad Lset25845 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25846, Ltmp6343-Lfunc_begin0 - .quad Lset25846 -.set Lset25847, Ltmp6344-Lfunc_begin0 - .quad Lset25847 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc486: -.set Lset25848, Ltmp2886-Lfunc_begin0 - .quad Lset25848 -.set Lset25849, Ltmp2901-Lfunc_begin0 - .quad Lset25849 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25850, Ltmp2904-Lfunc_begin0 - .quad Lset25850 -.set Lset25851, Ltmp2912-Lfunc_begin0 - .quad Lset25851 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc487: -.set Lset25852, Ltmp2889-Lfunc_begin0 - .quad Lset25852 -.set Lset25853, Ltmp2897-Lfunc_begin0 - .quad Lset25853 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25854, Ltmp2905-Lfunc_begin0 - .quad Lset25854 -.set Lset25855, Ltmp2912-Lfunc_begin0 - .quad Lset25855 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc488: -.set Lset25856, Ltmp2896-Lfunc_begin0 - .quad Lset25856 -.set Lset25857, Ltmp2897-Lfunc_begin0 - .quad Lset25857 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25858, Ltmp2911-Lfunc_begin0 - .quad Lset25858 -.set Lset25859, Ltmp2912-Lfunc_begin0 - .quad Lset25859 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc489: -.set Lset25860, Ltmp2935-Lfunc_begin0 - .quad Lset25860 -.set Lset25861, Ltmp2947-Lfunc_begin0 - .quad Lset25861 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc490: -.set Lset25862, Ltmp2941-Lfunc_begin0 - .quad Lset25862 -.set Lset25863, Ltmp2942-Lfunc_begin0 - .quad Lset25863 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc491: -.set Lset25864, Ltmp2958-Lfunc_begin0 - .quad Lset25864 -.set Lset25865, Ltmp2962-Lfunc_begin0 - .quad Lset25865 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset25866, Ltmp2981-Lfunc_begin0 - .quad Lset25866 -.set Lset25867, Ltmp2982-Lfunc_begin0 - .quad Lset25867 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc492: -.set Lset25868, Ltmp2958-Lfunc_begin0 - .quad Lset25868 -.set Lset25869, Ltmp2960-Lfunc_begin0 - .quad Lset25869 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset25870, Ltmp2980-Lfunc_begin0 - .quad Lset25870 -.set Lset25871, Ltmp2982-Lfunc_begin0 - .quad Lset25871 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc493: -.set Lset25872, Ltmp2958-Lfunc_begin0 - .quad Lset25872 -.set Lset25873, Ltmp2962-Lfunc_begin0 - .quad Lset25873 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25874, Ltmp2973-Lfunc_begin0 - .quad Lset25874 -.set Lset25875, Ltmp2986-Lfunc_begin0 - .quad Lset25875 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc494: -.set Lset25876, Ltmp2977-Lfunc_begin0 - .quad Lset25876 -.set Lset25877, Ltmp2978-Lfunc_begin0 - .quad Lset25877 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc495: -.set Lset25878, Ltmp2999-Lfunc_begin0 - .quad Lset25878 -.set Lset25879, Ltmp3000-Lfunc_begin0 - .quad Lset25879 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25880, Ltmp3016-Lfunc_begin0 - .quad Lset25880 -.set Lset25881, Ltmp3021-Lfunc_begin0 - .quad Lset25881 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc496: -.set Lset25882, Ltmp3076-Lfunc_begin0 - .quad Lset25882 -.set Lset25883, Ltmp3078-Lfunc_begin0 - .quad Lset25883 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc497: -.set Lset25884, Ltmp3077-Lfunc_begin0 - .quad Lset25884 -.set Lset25885, Ltmp3080-Lfunc_begin0 - .quad Lset25885 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc498: -.set Lset25886, Ltmp3077-Lfunc_begin0 - .quad Lset25886 -.set Lset25887, Ltmp3080-Lfunc_begin0 - .quad Lset25887 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc499: -.set Lset25888, Ltmp3132-Lfunc_begin0 - .quad Lset25888 -.set Lset25889, Ltmp3136-Lfunc_begin0 - .quad Lset25889 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc500: -.set Lset25890, Ltmp3133-Lfunc_begin0 - .quad Lset25890 -.set Lset25891, Ltmp3136-Lfunc_begin0 - .quad Lset25891 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc501: -.set Lset25892, Ltmp3136-Lfunc_begin0 - .quad Lset25892 -.set Lset25893, Ltmp3142-Lfunc_begin0 - .quad Lset25893 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25894, Ltmp3151-Lfunc_begin0 - .quad Lset25894 -.set Lset25895, Ltmp3152-Lfunc_begin0 - .quad Lset25895 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc502: -.set Lset25896, Ltmp3143-Lfunc_begin0 - .quad Lset25896 -.set Lset25897, Ltmp3145-Lfunc_begin0 - .quad Lset25897 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc503: -.set Lset25898, Ltmp3173-Lfunc_begin0 - .quad Lset25898 -.set Lset25899, Ltmp3189-Lfunc_begin0 - .quad Lset25899 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25900, Ltmp3200-Lfunc_begin0 - .quad Lset25900 -.set Lset25901, Ltmp3203-Lfunc_begin0 - .quad Lset25901 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25902, Ltmp6211-Lfunc_begin0 - .quad Lset25902 -.set Lset25903, Ltmp6212-Lfunc_begin0 - .quad Lset25903 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc504: -.set Lset25904, Ltmp3175-Lfunc_begin0 - .quad Lset25904 -.set Lset25905, Ltmp3192-Lfunc_begin0 - .quad Lset25905 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25906, Ltmp3200-Lfunc_begin0 - .quad Lset25906 -.set Lset25907, Ltmp3203-Lfunc_begin0 - .quad Lset25907 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc505: -.set Lset25908, Ltmp3180-Lfunc_begin0 - .quad Lset25908 -.set Lset25909, Ltmp3183-Lfunc_begin0 - .quad Lset25909 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25910, Ltmp3194-Lfunc_begin0 - .quad Lset25910 -.set Lset25911, Ltmp3200-Lfunc_begin0 - .quad Lset25911 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25912, Ltmp3204-Lfunc_begin0 - .quad Lset25912 -.set Lset25913, Ltmp3212-Lfunc_begin0 - .quad Lset25913 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc506: -.set Lset25914, Ltmp3213-Lfunc_begin0 - .quad Lset25914 -.set Lset25915, Ltmp3215-Lfunc_begin0 - .quad Lset25915 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc507: -.set Lset25916, Ltmp3238-Lfunc_begin0 - .quad Lset25916 -.set Lset25917, Ltmp3254-Lfunc_begin0 - .quad Lset25917 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25918, Ltmp3265-Lfunc_begin0 - .quad Lset25918 -.set Lset25919, Ltmp3268-Lfunc_begin0 - .quad Lset25919 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset25920, Ltmp5959-Lfunc_begin0 - .quad Lset25920 -.set Lset25921, Ltmp5960-Lfunc_begin0 - .quad Lset25921 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc508: -.set Lset25922, Ltmp3240-Lfunc_begin0 - .quad Lset25922 -.set Lset25923, Ltmp3257-Lfunc_begin0 - .quad Lset25923 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset25924, Ltmp3265-Lfunc_begin0 - .quad Lset25924 -.set Lset25925, Ltmp3268-Lfunc_begin0 - .quad Lset25925 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc509: -.set Lset25926, Ltmp3245-Lfunc_begin0 - .quad Lset25926 -.set Lset25927, Ltmp3248-Lfunc_begin0 - .quad Lset25927 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25928, Ltmp3259-Lfunc_begin0 - .quad Lset25928 -.set Lset25929, Ltmp3265-Lfunc_begin0 - .quad Lset25929 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25930, Ltmp3269-Lfunc_begin0 - .quad Lset25930 -.set Lset25931, Ltmp3277-Lfunc_begin0 - .quad Lset25931 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc510: -.set Lset25932, Ltmp3278-Lfunc_begin0 - .quad Lset25932 -.set Lset25933, Ltmp3280-Lfunc_begin0 - .quad Lset25933 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc511: -.set Lset25934, Ltmp3314-Lfunc_begin0 - .quad Lset25934 -.set Lset25935, Ltmp3316-Lfunc_begin0 - .quad Lset25935 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc512: -.set Lset25936, Ltmp3340-Lfunc_begin0 - .quad Lset25936 -.set Lset25937, Ltmp3353-Lfunc_begin0 - .quad Lset25937 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc513: -.set Lset25938, Ltmp3340-Lfunc_begin0 - .quad Lset25938 -.set Lset25939, Ltmp3342-Lfunc_begin0 - .quad Lset25939 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc514: -.set Lset25940, Ltmp3359-Lfunc_begin0 - .quad Lset25940 -.set Lset25941, Ltmp3361-Lfunc_begin0 - .quad Lset25941 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc515: -.set Lset25942, Ltmp3385-Lfunc_begin0 - .quad Lset25942 -.set Lset25943, Ltmp3390-Lfunc_begin0 - .quad Lset25943 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc516: -.set Lset25944, Ltmp3388-Lfunc_begin0 - .quad Lset25944 -.set Lset25945, Ltmp3390-Lfunc_begin0 - .quad Lset25945 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset25946, Ltmp3390-Lfunc_begin0 - .quad Lset25946 -.set Lset25947, Ltmp3398-Lfunc_begin0 - .quad Lset25947 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25948, Ltmp3408-Lfunc_begin0 - .quad Lset25948 -.set Lset25949, Ltmp3410-Lfunc_begin0 - .quad Lset25949 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25950, Ltmp6349-Lfunc_begin0 - .quad Lset25950 -.set Lset25951, Ltmp6350-Lfunc_begin0 - .quad Lset25951 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25952, Ltmp6426-Lfunc_begin0 - .quad Lset25952 -.set Lset25953, Ltmp6427-Lfunc_begin0 - .quad Lset25953 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc517: -.set Lset25954, Ltmp3437-Lfunc_begin0 - .quad Lset25954 -.set Lset25955, Ltmp3448-Lfunc_begin0 - .quad Lset25955 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset25956, Ltmp3448-Lfunc_begin0 - .quad Lset25956 -.set Lset25957, Ltmp6427-Lfunc_begin0 - .quad Lset25957 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset25958, Ltmp6427-Lfunc_begin0 - .quad Lset25958 -.set Lset25959, Ltmp6429-Lfunc_begin0 - .quad Lset25959 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc518: -.set Lset25960, Ltmp3438-Lfunc_begin0 - .quad Lset25960 -.set Lset25961, Ltmp3464-Lfunc_begin0 - .quad Lset25961 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25962, Ltmp6425-Lfunc_begin0 - .quad Lset25962 -.set Lset25963, Ltmp6426-Lfunc_begin0 - .quad Lset25963 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset25964, Ltmp6427-Lfunc_begin0 - .quad Lset25964 -.set Lset25965, Ltmp6431-Lfunc_begin0 - .quad Lset25965 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc519: -.set Lset25966, Ltmp3441-Lfunc_begin0 - .quad Lset25966 -.set Lset25967, Ltmp3462-Lfunc_begin0 - .quad Lset25967 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25968, Ltmp6425-Lfunc_begin0 - .quad Lset25968 -.set Lset25969, Ltmp6426-Lfunc_begin0 - .quad Lset25969 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset25970, Ltmp6429-Lfunc_begin0 - .quad Lset25970 -.set Lset25971, Ltmp6430-Lfunc_begin0 - .quad Lset25971 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc520: -.set Lset25972, Ltmp3442-Lfunc_begin0 - .quad Lset25972 -.set Lset25973, Ltmp3465-Lfunc_begin0 - .quad Lset25973 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25974, Ltmp6425-Lfunc_begin0 - .quad Lset25974 -.set Lset25975, Ltmp6426-Lfunc_begin0 - .quad Lset25975 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset25976, Ltmp6429-Lfunc_begin0 - .quad Lset25976 -.set Lset25977, Lfunc_end21-Lfunc_begin0 - .quad Lset25977 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc521: -.set Lset25978, Ltmp3445-Lfunc_begin0 - .quad Lset25978 -.set Lset25979, Ltmp3465-Lfunc_begin0 - .quad Lset25979 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset25980, Ltmp6425-Lfunc_begin0 - .quad Lset25980 -.set Lset25981, Ltmp6426-Lfunc_begin0 - .quad Lset25981 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset25982, Ltmp6429-Lfunc_begin0 - .quad Lset25982 -.set Lset25983, Lfunc_end21-Lfunc_begin0 - .quad Lset25983 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc522: -.set Lset25984, Ltmp3450-Lfunc_begin0 - .quad Lset25984 -.set Lset25985, Ltmp3454-Lfunc_begin0 - .quad Lset25985 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc523: -.set Lset25986, Ltmp3467-Lfunc_begin0 - .quad Lset25986 -.set Lset25987, Ltmp3475-Lfunc_begin0 - .quad Lset25987 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset25988, Ltmp3476-Lfunc_begin0 - .quad Lset25988 -.set Lset25989, Ltmp3477-Lfunc_begin0 - .quad Lset25989 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset25990, Ltmp3479-Lfunc_begin0 - .quad Lset25990 -.set Lset25991, Ltmp3485-Lfunc_begin0 - .quad Lset25991 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset25992, Ltmp5923-Lfunc_begin0 - .quad Lset25992 -.set Lset25993, Ltmp5926-Lfunc_begin0 - .quad Lset25993 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc524: -.set Lset25994, Ltmp3478-Lfunc_begin0 - .quad Lset25994 -.set Lset25995, Ltmp3488-Lfunc_begin0 - .quad Lset25995 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset25996, Ltmp5923-Lfunc_begin0 - .quad Lset25996 -.set Lset25997, Ltmp5924-Lfunc_begin0 - .quad Lset25997 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset25998, Ltmp6423-Lfunc_begin0 - .quad Lset25998 -.set Lset25999, Ltmp6425-Lfunc_begin0 - .quad Lset25999 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc525: -.set Lset26000, Ltmp3493-Lfunc_begin0 - .quad Lset26000 -.set Lset26001, Ltmp3499-Lfunc_begin0 - .quad Lset26001 - .short 1 ## Loc expr size - .byte 99 ## DW_OP_reg19 -.set Lset26002, Ltmp3507-Lfunc_begin0 - .quad Lset26002 -.set Lset26003, Ltmp3513-Lfunc_begin0 - .quad Lset26003 - .short 1 ## Loc expr size - .byte 99 ## DW_OP_reg19 - .quad 0 - .quad 0 -Ldebug_loc526: -.set Lset26004, Ltmp3494-Lfunc_begin0 - .quad Lset26004 -.set Lset26005, Ltmp3499-Lfunc_begin0 - .quad Lset26005 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26006, Ltmp3507-Lfunc_begin0 - .quad Lset26006 -.set Lset26007, Ltmp3513-Lfunc_begin0 - .quad Lset26007 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 - .quad 0 - .quad 0 -Ldebug_loc527: -.set Lset26008, Ltmp3495-Lfunc_begin0 - .quad Lset26008 -.set Lset26009, Ltmp3499-Lfunc_begin0 - .quad Lset26009 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset26010, Ltmp3507-Lfunc_begin0 - .quad Lset26010 -.set Lset26011, Ltmp3513-Lfunc_begin0 - .quad Lset26011 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc528: -.set Lset26012, Ltmp3505-Lfunc_begin0 - .quad Lset26012 -.set Lset26013, Ltmp3507-Lfunc_begin0 - .quad Lset26013 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26014, Ltmp3523-Lfunc_begin0 - .quad Lset26014 -.set Lset26015, Ltmp3530-Lfunc_begin0 - .quad Lset26015 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc529: -.set Lset26016, Ltmp3505-Lfunc_begin0 - .quad Lset26016 -.set Lset26017, Ltmp3507-Lfunc_begin0 - .quad Lset26017 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26018, Ltmp3522-Lfunc_begin0 - .quad Lset26018 -.set Lset26019, Ltmp3530-Lfunc_begin0 - .quad Lset26019 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc530: -.set Lset26020, Ltmp3505-Lfunc_begin0 - .quad Lset26020 -.set Lset26021, Ltmp3507-Lfunc_begin0 - .quad Lset26021 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26022, Ltmp3521-Lfunc_begin0 - .quad Lset26022 -.set Lset26023, Ltmp3530-Lfunc_begin0 - .quad Lset26023 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc531: -.set Lset26024, Ltmp3544-Lfunc_begin0 - .quad Lset26024 -.set Lset26025, Ltmp3554-Lfunc_begin0 - .quad Lset26025 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26026, Ltmp3562-Lfunc_begin0 - .quad Lset26026 -.set Lset26027, Ltmp3620-Lfunc_begin0 - .quad Lset26027 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26028, Ltmp5961-Lfunc_begin0 - .quad Lset26028 -.set Lset26029, Ltmp5963-Lfunc_begin0 - .quad Lset26029 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26030, Ltmp5964-Lfunc_begin0 - .quad Lset26030 -.set Lset26031, Ltmp5965-Lfunc_begin0 - .quad Lset26031 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26032, Ltmp6148-Lfunc_begin0 - .quad Lset26032 -.set Lset26033, Ltmp6150-Lfunc_begin0 - .quad Lset26033 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc532: -.set Lset26034, Ltmp3545-Lfunc_begin0 - .quad Lset26034 -.set Lset26035, Ltmp3614-Lfunc_begin0 - .quad Lset26035 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 224 ## -288 - .byte 125 ## -.set Lset26036, Ltmp3614-Lfunc_begin0 - .quad Lset26036 -.set Lset26037, Ltmp3615-Lfunc_begin0 - .quad Lset26037 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset26038, Ltmp5961-Lfunc_begin0 - .quad Lset26038 -.set Lset26039, Lfunc_end21-Lfunc_begin0 - .quad Lset26039 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 224 ## -288 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc533: -.set Lset26040, Ltmp3549-Lfunc_begin0 - .quad Lset26040 -.set Lset26041, Ltmp3551-Lfunc_begin0 - .quad Lset26041 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26042, Ltmp3616-Lfunc_begin0 - .quad Lset26042 -.set Lset26043, Ltmp3621-Lfunc_begin0 - .quad Lset26043 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc534: -.set Lset26044, Ltmp3550-Lfunc_begin0 - .quad Lset26044 -.set Lset26045, Ltmp3619-Lfunc_begin0 - .quad Lset26045 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 232 ## -280 - .byte 125 ## -.set Lset26046, Ltmp3619-Lfunc_begin0 - .quad Lset26046 -.set Lset26047, Ltmp3621-Lfunc_begin0 - .quad Lset26047 - .short 2 ## Loc expr size - .byte 117 ## DW_OP_breg5 - .byte 0 ## 0 -.set Lset26048, Ltmp3626-Lfunc_begin0 - .quad Lset26048 -.set Lset26049, Ltmp3628-Lfunc_begin0 - .quad Lset26049 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset26050, Ltmp5962-Lfunc_begin0 - .quad Lset26050 -.set Lset26051, Lfunc_end21-Lfunc_begin0 - .quad Lset26051 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 232 ## -280 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc535: -.set Lset26052, Ltmp3556-Lfunc_begin0 - .quad Lset26052 -.set Lset26053, Ltmp3626-Lfunc_begin0 - .quad Lset26053 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 216 ## -296 - .byte 125 ## -.set Lset26054, Ltmp3626-Lfunc_begin0 - .quad Lset26054 -.set Lset26055, Ltmp3627-Lfunc_begin0 - .quad Lset26055 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26056, Ltmp5963-Lfunc_begin0 - .quad Lset26056 -.set Lset26057, Lfunc_end21-Lfunc_begin0 - .quad Lset26057 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 216 ## -296 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc536: -.set Lset26058, Ltmp3562-Lfunc_begin0 - .quad Lset26058 -.set Lset26059, Ltmp3564-Lfunc_begin0 - .quad Lset26059 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc537: -.set Lset26060, Ltmp3562-Lfunc_begin0 - .quad Lset26060 -.set Lset26061, Ltmp3564-Lfunc_begin0 - .quad Lset26061 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc538: -.set Lset26062, Ltmp3562-Lfunc_begin0 - .quad Lset26062 -.set Lset26063, Ltmp3564-Lfunc_begin0 - .quad Lset26063 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc539: -.set Lset26064, Ltmp3571-Lfunc_begin0 - .quad Lset26064 -.set Lset26065, Ltmp3577-Lfunc_begin0 - .quad Lset26065 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26066, Ltmp3586-Lfunc_begin0 - .quad Lset26066 -.set Lset26067, Ltmp3610-Lfunc_begin0 - .quad Lset26067 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc540: -.set Lset26068, Ltmp3572-Lfunc_begin0 - .quad Lset26068 -.set Lset26069, Lfunc_end21-Lfunc_begin0 - .quad Lset26069 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc541: -.set Lset26070, Ltmp3572-Lfunc_begin0 - .quad Lset26070 -.set Lset26071, Ltmp3581-Lfunc_begin0 - .quad Lset26071 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## -.set Lset26072, Ltmp3581-Lfunc_begin0 - .quad Lset26072 -.set Lset26073, Ltmp3583-Lfunc_begin0 - .quad Lset26073 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26074, Ltmp3586-Lfunc_begin0 - .quad Lset26074 -.set Lset26075, Lfunc_end21-Lfunc_begin0 - .quad Lset26075 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -144 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc542: -.set Lset26076, Ltmp3581-Lfunc_begin0 - .quad Lset26076 -.set Lset26077, Ltmp3585-Lfunc_begin0 - .quad Lset26077 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26078, Ltmp6148-Lfunc_begin0 - .quad Lset26078 -.set Lset26079, Ltmp6149-Lfunc_begin0 - .quad Lset26079 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc543: -.set Lset26080, Ltmp3588-Lfunc_begin0 - .quad Lset26080 -.set Lset26081, Ltmp3589-Lfunc_begin0 - .quad Lset26081 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset26082, Ltmp3589-Lfunc_begin0 - .quad Lset26082 -.set Lset26083, Ltmp3596-Lfunc_begin0 - .quad Lset26083 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26084, Ltmp3597-Lfunc_begin0 - .quad Lset26084 -.set Lset26085, Ltmp3601-Lfunc_begin0 - .quad Lset26085 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 208 ## -304 - .byte 125 ## -.set Lset26086, Ltmp3601-Lfunc_begin0 - .quad Lset26086 -.set Lset26087, Ltmp3609-Lfunc_begin0 - .quad Lset26087 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26088, Ltmp3609-Lfunc_begin0 - .quad Lset26088 -.set Lset26089, Lfunc_end21-Lfunc_begin0 - .quad Lset26089 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 208 ## -304 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc544: -.set Lset26090, Ltmp3616-Lfunc_begin0 - .quad Lset26090 -.set Lset26091, Ltmp3619-Lfunc_begin0 - .quad Lset26091 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc545: -.set Lset26092, Ltmp3655-Lfunc_begin0 - .quad Lset26092 -.set Lset26093, Ltmp3661-Lfunc_begin0 - .quad Lset26093 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc546: -.set Lset26094, Ltmp3655-Lfunc_begin0 - .quad Lset26094 -.set Lset26095, Ltmp3661-Lfunc_begin0 - .quad Lset26095 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc547: -.set Lset26096, Ltmp3669-Lfunc_begin0 - .quad Lset26096 -.set Lset26097, Ltmp3676-Lfunc_begin0 - .quad Lset26097 - .short 3 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value -.set Lset26098, Ltmp6072-Lfunc_begin0 - .quad Lset26098 -.set Lset26099, Ltmp6073-Lfunc_begin0 - .quad Lset26099 - .short 3 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc548: -.set Lset26100, Ltmp3669-Lfunc_begin0 - .quad Lset26100 -.set Lset26101, Ltmp3676-Lfunc_begin0 - .quad Lset26101 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset26102, Ltmp6072-Lfunc_begin0 - .quad Lset26102 -.set Lset26103, Ltmp6073-Lfunc_begin0 - .quad Lset26103 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc549: -.set Lset26104, Ltmp3692-Lfunc_begin0 - .quad Lset26104 -.set Lset26105, Ltmp3698-Lfunc_begin0 - .quad Lset26105 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26106, Ltmp3720-Lfunc_begin0 - .quad Lset26106 -.set Lset26107, Ltmp3808-Lfunc_begin0 - .quad Lset26107 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26108, Ltmp5935-Lfunc_begin0 - .quad Lset26108 -.set Lset26109, Ltmp5936-Lfunc_begin0 - .quad Lset26109 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26110, Ltmp6216-Lfunc_begin0 - .quad Lset26110 -.set Lset26111, Ltmp6217-Lfunc_begin0 - .quad Lset26111 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26112, Ltmp6356-Lfunc_begin0 - .quad Lset26112 -.set Lset26113, Ltmp6357-Lfunc_begin0 - .quad Lset26113 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc550: -.set Lset26114, Ltmp3700-Lfunc_begin0 - .quad Lset26114 -.set Lset26115, Ltmp3708-Lfunc_begin0 - .quad Lset26115 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset26116, Ltmp3709-Lfunc_begin0 - .quad Lset26116 -.set Lset26117, Ltmp3730-Lfunc_begin0 - .quad Lset26117 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset26118, Ltmp3731-Lfunc_begin0 - .quad Lset26118 -.set Lset26119, Ltmp3737-Lfunc_begin0 - .quad Lset26119 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26120, Ltmp3739-Lfunc_begin0 - .quad Lset26120 -.set Lset26121, Ltmp3744-Lfunc_begin0 - .quad Lset26121 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset26122, Ltmp6353-Lfunc_begin0 - .quad Lset26122 -.set Lset26123, Ltmp6356-Lfunc_begin0 - .quad Lset26123 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc551: -.set Lset26124, Ltmp3702-Lfunc_begin0 - .quad Lset26124 -.set Lset26125, Ltmp3712-Lfunc_begin0 - .quad Lset26125 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset26126, Ltmp3715-Lfunc_begin0 - .quad Lset26126 -.set Lset26127, Ltmp3726-Lfunc_begin0 - .quad Lset26127 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset26128, Ltmp3739-Lfunc_begin0 - .quad Lset26128 -.set Lset26129, Ltmp3743-Lfunc_begin0 - .quad Lset26129 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset26130, Ltmp6354-Lfunc_begin0 - .quad Lset26130 -.set Lset26131, Ltmp6356-Lfunc_begin0 - .quad Lset26131 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc552: -.set Lset26132, Ltmp3718-Lfunc_begin0 - .quad Lset26132 -.set Lset26133, Ltmp3801-Lfunc_begin0 - .quad Lset26133 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset26134, Ltmp5935-Lfunc_begin0 - .quad Lset26134 -.set Lset26135, Ltmp5936-Lfunc_begin0 - .quad Lset26135 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset26136, Ltmp6216-Lfunc_begin0 - .quad Lset26136 -.set Lset26137, Ltmp6217-Lfunc_begin0 - .quad Lset26137 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset26138, Ltmp6355-Lfunc_begin0 - .quad Lset26138 -.set Lset26139, Ltmp6357-Lfunc_begin0 - .quad Lset26139 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc553: -.set Lset26140, Ltmp3740-Lfunc_begin0 - .quad Lset26140 -.set Lset26141, Ltmp3799-Lfunc_begin0 - .quad Lset26141 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26142, Ltmp5935-Lfunc_begin0 - .quad Lset26142 -.set Lset26143, Ltmp5936-Lfunc_begin0 - .quad Lset26143 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26144, Ltmp6216-Lfunc_begin0 - .quad Lset26144 -.set Lset26145, Ltmp6217-Lfunc_begin0 - .quad Lset26145 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26146, Ltmp6356-Lfunc_begin0 - .quad Lset26146 -.set Lset26147, Ltmp6357-Lfunc_begin0 - .quad Lset26147 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc554: -.set Lset26148, Ltmp3745-Lfunc_begin0 - .quad Lset26148 -.set Lset26149, Ltmp3758-Lfunc_begin0 - .quad Lset26149 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26150, Ltmp3759-Lfunc_begin0 - .quad Lset26150 -.set Lset26151, Ltmp3761-Lfunc_begin0 - .quad Lset26151 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26152, Ltmp3763-Lfunc_begin0 - .quad Lset26152 -.set Lset26153, Ltmp3764-Lfunc_begin0 - .quad Lset26153 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26154, Ltmp3767-Lfunc_begin0 - .quad Lset26154 -.set Lset26155, Ltmp3799-Lfunc_begin0 - .quad Lset26155 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26156, Ltmp5935-Lfunc_begin0 - .quad Lset26156 -.set Lset26157, Ltmp5936-Lfunc_begin0 - .quad Lset26157 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26158, Ltmp6216-Lfunc_begin0 - .quad Lset26158 -.set Lset26159, Ltmp6217-Lfunc_begin0 - .quad Lset26159 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26160, Ltmp6356-Lfunc_begin0 - .quad Lset26160 -.set Lset26161, Ltmp6357-Lfunc_begin0 - .quad Lset26161 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc555: -.set Lset26162, Ltmp3745-Lfunc_begin0 - .quad Lset26162 -.set Lset26163, Ltmp3746-Lfunc_begin0 - .quad Lset26163 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26164, Ltmp3767-Lfunc_begin0 - .quad Lset26164 -.set Lset26165, Ltmp3768-Lfunc_begin0 - .quad Lset26165 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc556: -.set Lset26166, Ltmp3745-Lfunc_begin0 - .quad Lset26166 -.set Lset26167, Ltmp3746-Lfunc_begin0 - .quad Lset26167 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26168, Ltmp3767-Lfunc_begin0 - .quad Lset26168 -.set Lset26169, Ltmp3768-Lfunc_begin0 - .quad Lset26169 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc557: -.set Lset26170, Ltmp3745-Lfunc_begin0 - .quad Lset26170 -.set Lset26171, Ltmp3746-Lfunc_begin0 - .quad Lset26171 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26172, Ltmp3767-Lfunc_begin0 - .quad Lset26172 -.set Lset26173, Ltmp3768-Lfunc_begin0 - .quad Lset26173 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc558: -.set Lset26174, Ltmp3745-Lfunc_begin0 - .quad Lset26174 -.set Lset26175, Ltmp3746-Lfunc_begin0 - .quad Lset26175 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26176, Ltmp3767-Lfunc_begin0 - .quad Lset26176 -.set Lset26177, Ltmp3768-Lfunc_begin0 - .quad Lset26177 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc559: -.set Lset26178, Ltmp3745-Lfunc_begin0 - .quad Lset26178 -.set Lset26179, Ltmp3746-Lfunc_begin0 - .quad Lset26179 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26180, Ltmp3767-Lfunc_begin0 - .quad Lset26180 -.set Lset26181, Ltmp3768-Lfunc_begin0 - .quad Lset26181 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc560: -.set Lset26182, Ltmp3746-Lfunc_begin0 - .quad Lset26182 -.set Lset26183, Ltmp3747-Lfunc_begin0 - .quad Lset26183 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset26184, Ltmp3747-Lfunc_begin0 - .quad Lset26184 -.set Lset26185, Ltmp3760-Lfunc_begin0 - .quad Lset26185 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 232 ## -152 - .byte 126 ## -.set Lset26186, Ltmp3760-Lfunc_begin0 - .quad Lset26186 -.set Lset26187, Ltmp3761-Lfunc_begin0 - .quad Lset26187 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26188, Ltmp6216-Lfunc_begin0 - .quad Lset26188 -.set Lset26189, Lfunc_end21-Lfunc_begin0 - .quad Lset26189 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 232 ## -152 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc561: -.set Lset26190, Ltmp3753-Lfunc_begin0 - .quad Lset26190 -.set Lset26191, Ltmp3754-Lfunc_begin0 - .quad Lset26191 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc562: -.set Lset26192, Ltmp3754-Lfunc_begin0 - .quad Lset26192 -.set Lset26193, Ltmp3755-Lfunc_begin0 - .quad Lset26193 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26194, Ltmp3775-Lfunc_begin0 - .quad Lset26194 -.set Lset26195, Ltmp3776-Lfunc_begin0 - .quad Lset26195 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset26196, Ltmp3776-Lfunc_begin0 - .quad Lset26196 -.set Lset26197, Ltmp3784-Lfunc_begin0 - .quad Lset26197 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 224 ## -160 - .byte 126 ## -.set Lset26198, Ltmp3784-Lfunc_begin0 - .quad Lset26198 -.set Lset26199, Ltmp3785-Lfunc_begin0 - .quad Lset26199 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26200, Ltmp6356-Lfunc_begin0 - .quad Lset26200 -.set Lset26201, Lfunc_end21-Lfunc_begin0 - .quad Lset26201 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 224 ## -160 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc563: -.set Lset26202, Ltmp3763-Lfunc_begin0 - .quad Lset26202 -.set Lset26203, Ltmp3768-Lfunc_begin0 - .quad Lset26203 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26204, Ltmp3796-Lfunc_begin0 - .quad Lset26204 -.set Lset26205, Ltmp3799-Lfunc_begin0 - .quad Lset26205 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc564: -.set Lset26206, Ltmp3782-Lfunc_begin0 - .quad Lset26206 -.set Lset26207, Ltmp3783-Lfunc_begin0 - .quad Lset26207 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc565: -.set Lset26208, Ltmp3792-Lfunc_begin0 - .quad Lset26208 -.set Lset26209, Ltmp3793-Lfunc_begin0 - .quad Lset26209 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc566: -.set Lset26210, Ltmp3820-Lfunc_begin0 - .quad Lset26210 -.set Lset26211, Ltmp3837-Lfunc_begin0 - .quad Lset26211 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc567: -.set Lset26212, Ltmp3820-Lfunc_begin0 - .quad Lset26212 -.set Lset26213, Ltmp3840-Lfunc_begin0 - .quad Lset26213 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26214, Ltmp3841-Lfunc_begin0 - .quad Lset26214 -.set Lset26215, Ltmp3846-Lfunc_begin0 - .quad Lset26215 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26216, Ltmp5965-Lfunc_begin0 - .quad Lset26216 -.set Lset26217, Ltmp5966-Lfunc_begin0 - .quad Lset26217 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26218, Ltmp5967-Lfunc_begin0 - .quad Lset26218 -.set Lset26219, Ltmp5968-Lfunc_begin0 - .quad Lset26219 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc568: -.set Lset26220, Ltmp3821-Lfunc_begin0 - .quad Lset26220 -.set Lset26221, Ltmp3837-Lfunc_begin0 - .quad Lset26221 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc569: -.set Lset26222, Ltmp3821-Lfunc_begin0 - .quad Lset26222 -.set Lset26223, Ltmp3839-Lfunc_begin0 - .quad Lset26223 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26224, Ltmp3841-Lfunc_begin0 - .quad Lset26224 -.set Lset26225, Ltmp3846-Lfunc_begin0 - .quad Lset26225 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26226, Ltmp5965-Lfunc_begin0 - .quad Lset26226 -.set Lset26227, Ltmp5969-Lfunc_begin0 - .quad Lset26227 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc570: -.set Lset26228, Ltmp3821-Lfunc_begin0 - .quad Lset26228 -.set Lset26229, Ltmp3823-Lfunc_begin0 - .quad Lset26229 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc571: -.set Lset26230, Ltmp3824-Lfunc_begin0 - .quad Lset26230 -.set Lset26231, Ltmp3828-Lfunc_begin0 - .quad Lset26231 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset26232, Ltmp3828-Lfunc_begin0 - .quad Lset26232 -.set Lset26233, Ltmp3831-Lfunc_begin0 - .quad Lset26233 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26234, Ltmp3834-Lfunc_begin0 - .quad Lset26234 -.set Lset26235, Ltmp3836-Lfunc_begin0 - .quad Lset26235 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc572: -.set Lset26236, Ltmp3826-Lfunc_begin0 - .quad Lset26236 -.set Lset26237, Ltmp3827-Lfunc_begin0 - .quad Lset26237 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc573: -.set Lset26238, Ltmp3830-Lfunc_begin0 - .quad Lset26238 -.set Lset26239, Ltmp3832-Lfunc_begin0 - .quad Lset26239 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26240, Ltmp3835-Lfunc_begin0 - .quad Lset26240 -.set Lset26241, Ltmp3837-Lfunc_begin0 - .quad Lset26241 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc574: -.set Lset26242, Ltmp3865-Lfunc_begin0 - .quad Lset26242 -.set Lset26243, Ltmp3881-Lfunc_begin0 - .quad Lset26243 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26244, Ltmp3892-Lfunc_begin0 - .quad Lset26244 -.set Lset26245, Ltmp3893-Lfunc_begin0 - .quad Lset26245 - .short 1 ## Loc expr size - .byte 93 ## super-register DW_OP_reg13 -.set Lset26246, Ltmp3893-Lfunc_begin0 - .quad Lset26246 -.set Lset26247, Ltmp3912-Lfunc_begin0 - .quad Lset26247 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26248, Ltmp5934-Lfunc_begin0 - .quad Lset26248 -.set Lset26249, Ltmp5935-Lfunc_begin0 - .quad Lset26249 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc575: -.set Lset26250, Ltmp3865-Lfunc_begin0 - .quad Lset26250 -.set Lset26251, Ltmp3880-Lfunc_begin0 - .quad Lset26251 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26252, Ltmp3880-Lfunc_begin0 - .quad Lset26252 -.set Lset26253, Ltmp3881-Lfunc_begin0 - .quad Lset26253 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset26254, Ltmp3893-Lfunc_begin0 - .quad Lset26254 -.set Lset26255, Ltmp3896-Lfunc_begin0 - .quad Lset26255 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26256, Ltmp3896-Lfunc_begin0 - .quad Lset26256 -.set Lset26257, Ltmp3916-Lfunc_begin0 - .quad Lset26257 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset26258, Ltmp5934-Lfunc_begin0 - .quad Lset26258 -.set Lset26259, Ltmp5935-Lfunc_begin0 - .quad Lset26259 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc576: -.set Lset26260, Ltmp3880-Lfunc_begin0 - .quad Lset26260 -.set Lset26261, Ltmp3901-Lfunc_begin0 - .quad Lset26261 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset26262, Ltmp3901-Lfunc_begin0 - .quad Lset26262 -.set Lset26263, Ltmp3904-Lfunc_begin0 - .quad Lset26263 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26264, Ltmp3906-Lfunc_begin0 - .quad Lset26264 -.set Lset26265, Ltmp3908-Lfunc_begin0 - .quad Lset26265 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26266, Ltmp3911-Lfunc_begin0 - .quad Lset26266 -.set Lset26267, Ltmp3918-Lfunc_begin0 - .quad Lset26267 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset26268, Ltmp5934-Lfunc_begin0 - .quad Lset26268 -.set Lset26269, Ltmp5935-Lfunc_begin0 - .quad Lset26269 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc577: -.set Lset26270, Ltmp3934-Lfunc_begin0 - .quad Lset26270 -.set Lset26271, Ltmp3935-Lfunc_begin0 - .quad Lset26271 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26272, Ltmp3945-Lfunc_begin0 - .quad Lset26272 -.set Lset26273, Ltmp3956-Lfunc_begin0 - .quad Lset26273 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26274, Ltmp6217-Lfunc_begin0 - .quad Lset26274 -.set Lset26275, Ltmp6219-Lfunc_begin0 - .quad Lset26275 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26276, Ltmp6358-Lfunc_begin0 - .quad Lset26276 -.set Lset26277, Ltmp6361-Lfunc_begin0 - .quad Lset26277 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc578: -.set Lset26278, Ltmp3947-Lfunc_begin0 - .quad Lset26278 -.set Lset26279, Ltmp3950-Lfunc_begin0 - .quad Lset26279 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26280, Ltmp6217-Lfunc_begin0 - .quad Lset26280 -.set Lset26281, Ltmp6218-Lfunc_begin0 - .quad Lset26281 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26282, Ltmp6359-Lfunc_begin0 - .quad Lset26282 -.set Lset26283, Ltmp6360-Lfunc_begin0 - .quad Lset26283 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc579: -.set Lset26284, Ltmp3960-Lfunc_begin0 - .quad Lset26284 -.set Lset26285, Ltmp3961-Lfunc_begin0 - .quad Lset26285 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26286, Ltmp3971-Lfunc_begin0 - .quad Lset26286 -.set Lset26287, Ltmp3982-Lfunc_begin0 - .quad Lset26287 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26288, Ltmp6220-Lfunc_begin0 - .quad Lset26288 -.set Lset26289, Ltmp6225-Lfunc_begin0 - .quad Lset26289 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc580: -.set Lset26290, Ltmp3973-Lfunc_begin0 - .quad Lset26290 -.set Lset26291, Ltmp3976-Lfunc_begin0 - .quad Lset26291 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26292, Ltmp6221-Lfunc_begin0 - .quad Lset26292 -.set Lset26293, Ltmp6222-Lfunc_begin0 - .quad Lset26293 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26294, Ltmp6223-Lfunc_begin0 - .quad Lset26294 -.set Lset26295, Ltmp6224-Lfunc_begin0 - .quad Lset26295 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc581: -.set Lset26296, Ltmp3986-Lfunc_begin0 - .quad Lset26296 -.set Lset26297, Ltmp3987-Lfunc_begin0 - .quad Lset26297 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26298, Ltmp3997-Lfunc_begin0 - .quad Lset26298 -.set Lset26299, Ltmp4008-Lfunc_begin0 - .quad Lset26299 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26300, Ltmp6226-Lfunc_begin0 - .quad Lset26300 -.set Lset26301, Ltmp6231-Lfunc_begin0 - .quad Lset26301 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc582: -.set Lset26302, Ltmp3999-Lfunc_begin0 - .quad Lset26302 -.set Lset26303, Ltmp4002-Lfunc_begin0 - .quad Lset26303 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26304, Ltmp6227-Lfunc_begin0 - .quad Lset26304 -.set Lset26305, Ltmp6228-Lfunc_begin0 - .quad Lset26305 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26306, Ltmp6229-Lfunc_begin0 - .quad Lset26306 -.set Lset26307, Ltmp6230-Lfunc_begin0 - .quad Lset26307 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc583: -.set Lset26308, Ltmp4022-Lfunc_begin0 - .quad Lset26308 -.set Lset26309, Ltmp4027-Lfunc_begin0 - .quad Lset26309 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26310, Ltmp5971-Lfunc_begin0 - .quad Lset26310 -.set Lset26311, Ltmp5976-Lfunc_begin0 - .quad Lset26311 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc584: -.set Lset26312, Ltmp4024-Lfunc_begin0 - .quad Lset26312 -.set Lset26313, Ltmp4030-Lfunc_begin0 - .quad Lset26313 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26314, Ltmp4033-Lfunc_begin0 - .quad Lset26314 -.set Lset26315, Ltmp4034-Lfunc_begin0 - .quad Lset26315 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26316, Ltmp5972-Lfunc_begin0 - .quad Lset26316 -.set Lset26317, Ltmp5973-Lfunc_begin0 - .quad Lset26317 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26318, Ltmp5974-Lfunc_begin0 - .quad Lset26318 -.set Lset26319, Ltmp5975-Lfunc_begin0 - .quad Lset26319 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc585: -.set Lset26320, Ltmp4027-Lfunc_begin0 - .quad Lset26320 -.set Lset26321, Ltmp4037-Lfunc_begin0 - .quad Lset26321 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc586: -.set Lset26322, Ltmp4027-Lfunc_begin0 - .quad Lset26322 -.set Lset26323, Ltmp4031-Lfunc_begin0 - .quad Lset26323 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26324, Ltmp4033-Lfunc_begin0 - .quad Lset26324 -.set Lset26325, Ltmp4035-Lfunc_begin0 - .quad Lset26325 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc587: -.set Lset26326, Ltmp4047-Lfunc_begin0 - .quad Lset26326 -.set Lset26327, Ltmp4048-Lfunc_begin0 - .quad Lset26327 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26328, Ltmp4063-Lfunc_begin0 - .quad Lset26328 -.set Lset26329, Ltmp4081-Lfunc_begin0 - .quad Lset26329 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc588: -.set Lset26330, Ltmp4058-Lfunc_begin0 - .quad Lset26330 -.set Lset26331, Ltmp4067-Lfunc_begin0 - .quad Lset26331 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26332, Ltmp4070-Lfunc_begin0 - .quad Lset26332 -.set Lset26333, Ltmp4071-Lfunc_begin0 - .quad Lset26333 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26334, Ltmp5977-Lfunc_begin0 - .quad Lset26334 -.set Lset26335, Ltmp5978-Lfunc_begin0 - .quad Lset26335 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26336, Ltmp5979-Lfunc_begin0 - .quad Lset26336 -.set Lset26337, Ltmp5980-Lfunc_begin0 - .quad Lset26337 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26338, Ltmp5981-Lfunc_begin0 - .quad Lset26338 -.set Lset26339, Ltmp5982-Lfunc_begin0 - .quad Lset26339 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc589: -.set Lset26340, Ltmp4060-Lfunc_begin0 - .quad Lset26340 -.set Lset26341, Ltmp4063-Lfunc_begin0 - .quad Lset26341 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26342, Ltmp5979-Lfunc_begin0 - .quad Lset26342 -.set Lset26343, Ltmp5983-Lfunc_begin0 - .quad Lset26343 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc590: -.set Lset26344, Ltmp4064-Lfunc_begin0 - .quad Lset26344 -.set Lset26345, Ltmp4068-Lfunc_begin0 - .quad Lset26345 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26346, Ltmp4070-Lfunc_begin0 - .quad Lset26346 -.set Lset26347, Ltmp4073-Lfunc_begin0 - .quad Lset26347 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc591: -.set Lset26348, Ltmp4097-Lfunc_begin0 - .quad Lset26348 -.set Lset26349, Ltmp4098-Lfunc_begin0 - .quad Lset26349 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc592: -.set Lset26350, Ltmp4117-Lfunc_begin0 - .quad Lset26350 -.set Lset26351, Ltmp4122-Lfunc_begin0 - .quad Lset26351 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26352, Ltmp6076-Lfunc_begin0 - .quad Lset26352 -.set Lset26353, Ltmp6081-Lfunc_begin0 - .quad Lset26353 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc593: -.set Lset26354, Ltmp4119-Lfunc_begin0 - .quad Lset26354 -.set Lset26355, Ltmp4130-Lfunc_begin0 - .quad Lset26355 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26356, Ltmp4139-Lfunc_begin0 - .quad Lset26356 -.set Lset26357, Ltmp4140-Lfunc_begin0 - .quad Lset26357 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26358, Ltmp6077-Lfunc_begin0 - .quad Lset26358 -.set Lset26359, Ltmp6078-Lfunc_begin0 - .quad Lset26359 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26360, Ltmp6079-Lfunc_begin0 - .quad Lset26360 -.set Lset26361, Ltmp6080-Lfunc_begin0 - .quad Lset26361 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc594: -.set Lset26362, Ltmp4123-Lfunc_begin0 - .quad Lset26362 -.set Lset26363, Ltmp4134-Lfunc_begin0 - .quad Lset26363 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset26364, Ltmp4139-Lfunc_begin0 - .quad Lset26364 -.set Lset26365, Ltmp4140-Lfunc_begin0 - .quad Lset26365 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc595: -.set Lset26366, Ltmp4128-Lfunc_begin0 - .quad Lset26366 -.set Lset26367, Ltmp4131-Lfunc_begin0 - .quad Lset26367 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc596: -.set Lset26368, Ltmp4157-Lfunc_begin0 - .quad Lset26368 -.set Lset26369, Ltmp4162-Lfunc_begin0 - .quad Lset26369 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26370, Ltmp6231-Lfunc_begin0 - .quad Lset26370 -.set Lset26371, Ltmp6232-Lfunc_begin0 - .quad Lset26371 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26372, Ltmp6361-Lfunc_begin0 - .quad Lset26372 -.set Lset26373, Ltmp6365-Lfunc_begin0 - .quad Lset26373 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc597: -.set Lset26374, Ltmp4159-Lfunc_begin0 - .quad Lset26374 -.set Lset26375, Ltmp4171-Lfunc_begin0 - .quad Lset26375 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26376, Ltmp4180-Lfunc_begin0 - .quad Lset26376 -.set Lset26377, Ltmp4181-Lfunc_begin0 - .quad Lset26377 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26378, Ltmp6361-Lfunc_begin0 - .quad Lset26378 -.set Lset26379, Ltmp6362-Lfunc_begin0 - .quad Lset26379 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26380, Ltmp6363-Lfunc_begin0 - .quad Lset26380 -.set Lset26381, Ltmp6364-Lfunc_begin0 - .quad Lset26381 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc598: -.set Lset26382, Ltmp4163-Lfunc_begin0 - .quad Lset26382 -.set Lset26383, Ltmp4168-Lfunc_begin0 - .quad Lset26383 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset26384, Ltmp4180-Lfunc_begin0 - .quad Lset26384 -.set Lset26385, Ltmp4181-Lfunc_begin0 - .quad Lset26385 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc599: -.set Lset26386, Ltmp4169-Lfunc_begin0 - .quad Lset26386 -.set Lset26387, Ltmp4172-Lfunc_begin0 - .quad Lset26387 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc600: -.set Lset26388, Ltmp4198-Lfunc_begin0 - .quad Lset26388 -.set Lset26389, Ltmp4203-Lfunc_begin0 - .quad Lset26389 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26390, Ltmp6366-Lfunc_begin0 - .quad Lset26390 -.set Lset26391, Ltmp6371-Lfunc_begin0 - .quad Lset26391 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc601: -.set Lset26392, Ltmp4200-Lfunc_begin0 - .quad Lset26392 -.set Lset26393, Ltmp4211-Lfunc_begin0 - .quad Lset26393 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26394, Ltmp4220-Lfunc_begin0 - .quad Lset26394 -.set Lset26395, Ltmp4221-Lfunc_begin0 - .quad Lset26395 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26396, Ltmp6367-Lfunc_begin0 - .quad Lset26396 -.set Lset26397, Ltmp6368-Lfunc_begin0 - .quad Lset26397 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26398, Ltmp6369-Lfunc_begin0 - .quad Lset26398 -.set Lset26399, Ltmp6370-Lfunc_begin0 - .quad Lset26399 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc602: -.set Lset26400, Ltmp4204-Lfunc_begin0 - .quad Lset26400 -.set Lset26401, Ltmp4215-Lfunc_begin0 - .quad Lset26401 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset26402, Ltmp4220-Lfunc_begin0 - .quad Lset26402 -.set Lset26403, Ltmp4221-Lfunc_begin0 - .quad Lset26403 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc603: -.set Lset26404, Ltmp4209-Lfunc_begin0 - .quad Lset26404 -.set Lset26405, Ltmp4212-Lfunc_begin0 - .quad Lset26405 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc604: -.set Lset26406, Ltmp4238-Lfunc_begin0 - .quad Lset26406 -.set Lset26407, Ltmp4249-Lfunc_begin0 - .quad Lset26407 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26408, Ltmp4261-Lfunc_begin0 - .quad Lset26408 -.set Lset26409, Ltmp4262-Lfunc_begin0 - .quad Lset26409 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26410, Ltmp6233-Lfunc_begin0 - .quad Lset26410 -.set Lset26411, Ltmp6238-Lfunc_begin0 - .quad Lset26411 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc605: -.set Lset26412, Ltmp4240-Lfunc_begin0 - .quad Lset26412 -.set Lset26413, Ltmp4243-Lfunc_begin0 - .quad Lset26413 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26414, Ltmp6234-Lfunc_begin0 - .quad Lset26414 -.set Lset26415, Ltmp6235-Lfunc_begin0 - .quad Lset26415 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26416, Ltmp6236-Lfunc_begin0 - .quad Lset26416 -.set Lset26417, Ltmp6237-Lfunc_begin0 - .quad Lset26417 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc606: -.set Lset26418, Ltmp4244-Lfunc_begin0 - .quad Lset26418 -.set Lset26419, Ltmp4252-Lfunc_begin0 - .quad Lset26419 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset26420, Ltmp4261-Lfunc_begin0 - .quad Lset26420 -.set Lset26421, Ltmp4262-Lfunc_begin0 - .quad Lset26421 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc607: -.set Lset26422, Ltmp4250-Lfunc_begin0 - .quad Lset26422 -.set Lset26423, Ltmp4253-Lfunc_begin0 - .quad Lset26423 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc608: -.set Lset26424, Ltmp4279-Lfunc_begin0 - .quad Lset26424 -.set Lset26425, Ltmp4284-Lfunc_begin0 - .quad Lset26425 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26426, Ltmp6239-Lfunc_begin0 - .quad Lset26426 -.set Lset26427, Ltmp6244-Lfunc_begin0 - .quad Lset26427 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc609: -.set Lset26428, Ltmp4281-Lfunc_begin0 - .quad Lset26428 -.set Lset26429, Ltmp4292-Lfunc_begin0 - .quad Lset26429 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26430, Ltmp4301-Lfunc_begin0 - .quad Lset26430 -.set Lset26431, Ltmp4302-Lfunc_begin0 - .quad Lset26431 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26432, Ltmp6240-Lfunc_begin0 - .quad Lset26432 -.set Lset26433, Ltmp6241-Lfunc_begin0 - .quad Lset26433 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26434, Ltmp6242-Lfunc_begin0 - .quad Lset26434 -.set Lset26435, Ltmp6243-Lfunc_begin0 - .quad Lset26435 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc610: -.set Lset26436, Ltmp4285-Lfunc_begin0 - .quad Lset26436 -.set Lset26437, Ltmp4296-Lfunc_begin0 - .quad Lset26437 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset26438, Ltmp4301-Lfunc_begin0 - .quad Lset26438 -.set Lset26439, Ltmp4302-Lfunc_begin0 - .quad Lset26439 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc611: -.set Lset26440, Ltmp4290-Lfunc_begin0 - .quad Lset26440 -.set Lset26441, Ltmp4293-Lfunc_begin0 - .quad Lset26441 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc612: -.set Lset26442, Ltmp4319-Lfunc_begin0 - .quad Lset26442 -.set Lset26443, Ltmp4330-Lfunc_begin0 - .quad Lset26443 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26444, Ltmp4342-Lfunc_begin0 - .quad Lset26444 -.set Lset26445, Ltmp4343-Lfunc_begin0 - .quad Lset26445 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26446, Ltmp5984-Lfunc_begin0 - .quad Lset26446 -.set Lset26447, Ltmp5989-Lfunc_begin0 - .quad Lset26447 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc613: -.set Lset26448, Ltmp4321-Lfunc_begin0 - .quad Lset26448 -.set Lset26449, Ltmp4324-Lfunc_begin0 - .quad Lset26449 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26450, Ltmp5985-Lfunc_begin0 - .quad Lset26450 -.set Lset26451, Ltmp5986-Lfunc_begin0 - .quad Lset26451 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26452, Ltmp5987-Lfunc_begin0 - .quad Lset26452 -.set Lset26453, Ltmp5988-Lfunc_begin0 - .quad Lset26453 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc614: -.set Lset26454, Ltmp4325-Lfunc_begin0 - .quad Lset26454 -.set Lset26455, Ltmp4333-Lfunc_begin0 - .quad Lset26455 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset26456, Ltmp4342-Lfunc_begin0 - .quad Lset26456 -.set Lset26457, Ltmp4343-Lfunc_begin0 - .quad Lset26457 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc615: -.set Lset26458, Ltmp4331-Lfunc_begin0 - .quad Lset26458 -.set Lset26459, Ltmp4334-Lfunc_begin0 - .quad Lset26459 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc616: -.set Lset26460, Ltmp4350-Lfunc_begin0 - .quad Lset26460 -.set Lset26461, Ltmp4351-Lfunc_begin0 - .quad Lset26461 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26462, Ltmp4367-Lfunc_begin0 - .quad Lset26462 -.set Lset26463, Ltmp4377-Lfunc_begin0 - .quad Lset26463 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc617: -.set Lset26464, Ltmp4360-Lfunc_begin0 - .quad Lset26464 -.set Lset26465, Ltmp4361-Lfunc_begin0 - .quad Lset26465 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26466, Ltmp4364-Lfunc_begin0 - .quad Lset26466 -.set Lset26467, Ltmp4367-Lfunc_begin0 - .quad Lset26467 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26468, Ltmp6083-Lfunc_begin0 - .quad Lset26468 -.set Lset26469, Ltmp6085-Lfunc_begin0 - .quad Lset26469 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc618: -.set Lset26470, Ltmp4382-Lfunc_begin0 - .quad Lset26470 -.set Lset26471, Ltmp4386-Lfunc_begin0 - .quad Lset26471 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26472, Ltmp4393-Lfunc_begin0 - .quad Lset26472 -.set Lset26473, Ltmp4409-Lfunc_begin0 - .quad Lset26473 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26474, Ltmp6371-Lfunc_begin0 - .quad Lset26474 -.set Lset26475, Ltmp6372-Lfunc_begin0 - .quad Lset26475 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26476, Ltmp6373-Lfunc_begin0 - .quad Lset26476 -.set Lset26477, Ltmp6374-Lfunc_begin0 - .quad Lset26477 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc619: -.set Lset26478, Ltmp4383-Lfunc_begin0 - .quad Lset26478 -.set Lset26479, Ltmp4384-Lfunc_begin0 - .quad Lset26479 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26480, Ltmp4401-Lfunc_begin0 - .quad Lset26480 -.set Lset26481, Ltmp4409-Lfunc_begin0 - .quad Lset26481 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc620: -.set Lset26482, Ltmp4395-Lfunc_begin0 - .quad Lset26482 -.set Lset26483, Ltmp4402-Lfunc_begin0 - .quad Lset26483 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26484, Ltmp6373-Lfunc_begin0 - .quad Lset26484 -.set Lset26485, Ltmp6375-Lfunc_begin0 - .quad Lset26485 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc621: -.set Lset26486, Ltmp4414-Lfunc_begin0 - .quad Lset26486 -.set Lset26487, Ltmp4415-Lfunc_begin0 - .quad Lset26487 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26488, Ltmp4430-Lfunc_begin0 - .quad Lset26488 -.set Lset26489, Ltmp4436-Lfunc_begin0 - .quad Lset26489 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26490, Ltmp5989-Lfunc_begin0 - .quad Lset26490 -.set Lset26491, Ltmp5990-Lfunc_begin0 - .quad Lset26491 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc622: -.set Lset26492, Ltmp4430-Lfunc_begin0 - .quad Lset26492 -.set Lset26493, Ltmp4436-Lfunc_begin0 - .quad Lset26493 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26494, Ltmp5989-Lfunc_begin0 - .quad Lset26494 -.set Lset26495, Ltmp5990-Lfunc_begin0 - .quad Lset26495 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc623: -.set Lset26496, Ltmp4455-Lfunc_begin0 - .quad Lset26496 -.set Lset26497, Ltmp4456-Lfunc_begin0 - .quad Lset26497 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26498, Ltmp4471-Lfunc_begin0 - .quad Lset26498 -.set Lset26499, Ltmp4477-Lfunc_begin0 - .quad Lset26499 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26500, Ltmp5990-Lfunc_begin0 - .quad Lset26500 -.set Lset26501, Ltmp5991-Lfunc_begin0 - .quad Lset26501 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc624: -.set Lset26502, Ltmp4471-Lfunc_begin0 - .quad Lset26502 -.set Lset26503, Ltmp4477-Lfunc_begin0 - .quad Lset26503 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26504, Ltmp5990-Lfunc_begin0 - .quad Lset26504 -.set Lset26505, Ltmp5991-Lfunc_begin0 - .quad Lset26505 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc625: -.set Lset26506, Ltmp4496-Lfunc_begin0 - .quad Lset26506 -.set Lset26507, Ltmp4509-Lfunc_begin0 - .quad Lset26507 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26508, Ltmp4515-Lfunc_begin0 - .quad Lset26508 -.set Lset26509, Ltmp4540-Lfunc_begin0 - .quad Lset26509 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26510, Ltmp4552-Lfunc_begin0 - .quad Lset26510 -.set Lset26511, Ltmp4571-Lfunc_begin0 - .quad Lset26511 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26512, Ltmp6085-Lfunc_begin0 - .quad Lset26512 -.set Lset26513, Ltmp6087-Lfunc_begin0 - .quad Lset26513 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26514, Ltmp6244-Lfunc_begin0 - .quad Lset26514 -.set Lset26515, Ltmp6245-Lfunc_begin0 - .quad Lset26515 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc626: -.set Lset26516, Ltmp4496-Lfunc_begin0 - .quad Lset26516 -.set Lset26517, Ltmp4500-Lfunc_begin0 - .quad Lset26517 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26518, Ltmp4515-Lfunc_begin0 - .quad Lset26518 -.set Lset26519, Ltmp4527-Lfunc_begin0 - .quad Lset26519 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26520, Ltmp4536-Lfunc_begin0 - .quad Lset26520 -.set Lset26521, Ltmp4545-Lfunc_begin0 - .quad Lset26521 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26522, Ltmp4551-Lfunc_begin0 - .quad Lset26522 -.set Lset26523, Ltmp4566-Lfunc_begin0 - .quad Lset26523 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26524, Ltmp4567-Lfunc_begin0 - .quad Lset26524 -.set Lset26525, Ltmp4568-Lfunc_begin0 - .quad Lset26525 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26526, Ltmp6086-Lfunc_begin0 - .quad Lset26526 -.set Lset26527, Ltmp6087-Lfunc_begin0 - .quad Lset26527 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc627: -.set Lset26528, Ltmp4498-Lfunc_begin0 - .quad Lset26528 -.set Lset26529, Ltmp4507-Lfunc_begin0 - .quad Lset26529 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc628: -.set Lset26530, Ltmp4502-Lfunc_begin0 - .quad Lset26530 -.set Lset26531, Ltmp4506-Lfunc_begin0 - .quad Lset26531 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc629: -.set Lset26532, Ltmp4507-Lfunc_begin0 - .quad Lset26532 -.set Lset26533, Ltmp4508-Lfunc_begin0 - .quad Lset26533 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc630: -.set Lset26534, Ltmp4515-Lfunc_begin0 - .quad Lset26534 -.set Lset26535, Ltmp4518-Lfunc_begin0 - .quad Lset26535 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26536, Ltmp4558-Lfunc_begin0 - .quad Lset26536 -.set Lset26537, Ltmp4563-Lfunc_begin0 - .quad Lset26537 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc631: -.set Lset26538, Ltmp4515-Lfunc_begin0 - .quad Lset26538 -.set Lset26539, Ltmp4518-Lfunc_begin0 - .quad Lset26539 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26540, Ltmp4558-Lfunc_begin0 - .quad Lset26540 -.set Lset26541, Ltmp4563-Lfunc_begin0 - .quad Lset26541 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc632: -.set Lset26542, Ltmp4519-Lfunc_begin0 - .quad Lset26542 -.set Lset26543, Ltmp4523-Lfunc_begin0 - .quad Lset26543 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26544, Ltmp4561-Lfunc_begin0 - .quad Lset26544 -.set Lset26545, Ltmp4564-Lfunc_begin0 - .quad Lset26545 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc633: -.set Lset26546, Ltmp4519-Lfunc_begin0 - .quad Lset26546 -.set Lset26547, Ltmp4521-Lfunc_begin0 - .quad Lset26547 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26548, Ltmp4561-Lfunc_begin0 - .quad Lset26548 -.set Lset26549, Ltmp4564-Lfunc_begin0 - .quad Lset26549 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc634: -.set Lset26550, Ltmp4525-Lfunc_begin0 - .quad Lset26550 -.set Lset26551, Ltmp4534-Lfunc_begin0 - .quad Lset26551 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc635: -.set Lset26552, Ltmp4529-Lfunc_begin0 - .quad Lset26552 -.set Lset26553, Ltmp4533-Lfunc_begin0 - .quad Lset26553 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc636: -.set Lset26554, Ltmp4534-Lfunc_begin0 - .quad Lset26554 -.set Lset26555, Ltmp4535-Lfunc_begin0 - .quad Lset26555 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc637: -.set Lset26556, Ltmp4581-Lfunc_begin0 - .quad Lset26556 -.set Lset26557, Ltmp4587-Lfunc_begin0 - .quad Lset26557 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26558, Ltmp4599-Lfunc_begin0 - .quad Lset26558 -.set Lset26559, Ltmp4611-Lfunc_begin0 - .quad Lset26559 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset26560, Ltmp4611-Lfunc_begin0 - .quad Lset26560 -.set Lset26561, Ltmp4619-Lfunc_begin0 - .quad Lset26561 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26562, Ltmp4619-Lfunc_begin0 - .quad Lset26562 -.set Lset26563, Ltmp6087-Lfunc_begin0 - .quad Lset26563 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## -.set Lset26564, Ltmp6087-Lfunc_begin0 - .quad Lset26564 -.set Lset26565, Ltmp6090-Lfunc_begin0 - .quad Lset26565 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26566, Ltmp6091-Lfunc_begin0 - .quad Lset26566 -.set Lset26567, Ltmp6093-Lfunc_begin0 - .quad Lset26567 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26568, Ltmp6245-Lfunc_begin0 - .quad Lset26568 -.set Lset26569, Lfunc_end21-Lfunc_begin0 - .quad Lset26569 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -112 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc638: -.set Lset26570, Ltmp4581-Lfunc_begin0 - .quad Lset26570 -.set Lset26571, Ltmp4589-Lfunc_begin0 - .quad Lset26571 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26572, Ltmp4599-Lfunc_begin0 - .quad Lset26572 -.set Lset26573, Ltmp4601-Lfunc_begin0 - .quad Lset26573 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26574, Ltmp4609-Lfunc_begin0 - .quad Lset26574 -.set Lset26575, Ltmp4641-Lfunc_begin0 - .quad Lset26575 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26576, Ltmp6087-Lfunc_begin0 - .quad Lset26576 -.set Lset26577, Ltmp6089-Lfunc_begin0 - .quad Lset26577 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26578, Ltmp6091-Lfunc_begin0 - .quad Lset26578 -.set Lset26579, Ltmp6092-Lfunc_begin0 - .quad Lset26579 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26580, Ltmp6245-Lfunc_begin0 - .quad Lset26580 -.set Lset26581, Ltmp6246-Lfunc_begin0 - .quad Lset26581 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26582, Ltmp6382-Lfunc_begin0 - .quad Lset26582 -.set Lset26583, Ltmp6383-Lfunc_begin0 - .quad Lset26583 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc639: -.set Lset26584, Ltmp4599-Lfunc_begin0 - .quad Lset26584 -.set Lset26585, Ltmp4601-Lfunc_begin0 - .quad Lset26585 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26586, Ltmp4632-Lfunc_begin0 - .quad Lset26586 -.set Lset26587, Ltmp4636-Lfunc_begin0 - .quad Lset26587 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26588, Ltmp4637-Lfunc_begin0 - .quad Lset26588 -.set Lset26589, Ltmp4639-Lfunc_begin0 - .quad Lset26589 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc640: -.set Lset26590, Ltmp4622-Lfunc_begin0 - .quad Lset26590 -.set Lset26591, Ltmp4632-Lfunc_begin0 - .quad Lset26591 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc641: -.set Lset26592, Ltmp4623-Lfunc_begin0 - .quad Lset26592 -.set Lset26593, Ltmp4632-Lfunc_begin0 - .quad Lset26593 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc642: -.set Lset26594, Ltmp4624-Lfunc_begin0 - .quad Lset26594 -.set Lset26595, Ltmp4630-Lfunc_begin0 - .quad Lset26595 - .short 3 ## Loc expr size - .byte 120 ## DW_OP_breg8 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc643: -.set Lset26596, Ltmp4632-Lfunc_begin0 - .quad Lset26596 -.set Lset26597, Ltmp4636-Lfunc_begin0 - .quad Lset26597 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26598, Ltmp4637-Lfunc_begin0 - .quad Lset26598 -.set Lset26599, Ltmp4639-Lfunc_begin0 - .quad Lset26599 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc644: -.set Lset26600, Ltmp4651-Lfunc_begin0 - .quad Lset26600 -.set Lset26601, Ltmp4657-Lfunc_begin0 - .quad Lset26601 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26602, Ltmp4667-Lfunc_begin0 - .quad Lset26602 -.set Lset26603, Ltmp4670-Lfunc_begin0 - .quad Lset26603 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26604, Ltmp4681-Lfunc_begin0 - .quad Lset26604 -.set Lset26605, Ltmp4705-Lfunc_begin0 - .quad Lset26605 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26606, Ltmp5993-Lfunc_begin0 - .quad Lset26606 -.set Lset26607, Ltmp5995-Lfunc_begin0 - .quad Lset26607 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26608, Ltmp6247-Lfunc_begin0 - .quad Lset26608 -.set Lset26609, Ltmp6248-Lfunc_begin0 - .quad Lset26609 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26610, Ltmp6250-Lfunc_begin0 - .quad Lset26610 -.set Lset26611, Ltmp6252-Lfunc_begin0 - .quad Lset26611 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26612, Ltmp6253-Lfunc_begin0 - .quad Lset26612 -.set Lset26613, Ltmp6255-Lfunc_begin0 - .quad Lset26613 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc645: -.set Lset26614, Ltmp4651-Lfunc_begin0 - .quad Lset26614 -.set Lset26615, Ltmp4657-Lfunc_begin0 - .quad Lset26615 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26616, Ltmp4667-Lfunc_begin0 - .quad Lset26616 -.set Lset26617, Ltmp4670-Lfunc_begin0 - .quad Lset26617 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26618, Ltmp4679-Lfunc_begin0 - .quad Lset26618 -.set Lset26619, Ltmp4709-Lfunc_begin0 - .quad Lset26619 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26620, Ltmp5993-Lfunc_begin0 - .quad Lset26620 -.set Lset26621, Ltmp5994-Lfunc_begin0 - .quad Lset26621 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26622, Ltmp5997-Lfunc_begin0 - .quad Lset26622 -.set Lset26623, Ltmp5998-Lfunc_begin0 - .quad Lset26623 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26624, Ltmp6247-Lfunc_begin0 - .quad Lset26624 -.set Lset26625, Ltmp6249-Lfunc_begin0 - .quad Lset26625 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26626, Ltmp6250-Lfunc_begin0 - .quad Lset26626 -.set Lset26627, Ltmp6251-Lfunc_begin0 - .quad Lset26627 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26628, Ltmp6253-Lfunc_begin0 - .quad Lset26628 -.set Lset26629, Ltmp6254-Lfunc_begin0 - .quad Lset26629 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc646: -.set Lset26630, Ltmp4667-Lfunc_begin0 - .quad Lset26630 -.set Lset26631, Ltmp4670-Lfunc_begin0 - .quad Lset26631 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26632, Ltmp4699-Lfunc_begin0 - .quad Lset26632 -.set Lset26633, Ltmp4703-Lfunc_begin0 - .quad Lset26633 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26634, Ltmp4704-Lfunc_begin0 - .quad Lset26634 -.set Lset26635, Ltmp4707-Lfunc_begin0 - .quad Lset26635 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc647: -.set Lset26636, Ltmp4689-Lfunc_begin0 - .quad Lset26636 -.set Lset26637, Ltmp4699-Lfunc_begin0 - .quad Lset26637 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc648: -.set Lset26638, Ltmp4690-Lfunc_begin0 - .quad Lset26638 -.set Lset26639, Ltmp4699-Lfunc_begin0 - .quad Lset26639 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc649: -.set Lset26640, Ltmp4691-Lfunc_begin0 - .quad Lset26640 -.set Lset26641, Ltmp4697-Lfunc_begin0 - .quad Lset26641 - .short 3 ## Loc expr size - .byte 120 ## DW_OP_breg8 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc650: -.set Lset26642, Ltmp4699-Lfunc_begin0 - .quad Lset26642 -.set Lset26643, Ltmp4703-Lfunc_begin0 - .quad Lset26643 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26644, Ltmp4704-Lfunc_begin0 - .quad Lset26644 -.set Lset26645, Ltmp4707-Lfunc_begin0 - .quad Lset26645 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc651: -.set Lset26646, Ltmp4719-Lfunc_begin0 - .quad Lset26646 -.set Lset26647, Ltmp4723-Lfunc_begin0 - .quad Lset26647 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26648, Ltmp4765-Lfunc_begin0 - .quad Lset26648 -.set Lset26649, Ltmp4770-Lfunc_begin0 - .quad Lset26649 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26650, Ltmp4771-Lfunc_begin0 - .quad Lset26650 -.set Lset26651, Ltmp4773-Lfunc_begin0 - .quad Lset26651 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc652: -.set Lset26652, Ltmp4719-Lfunc_begin0 - .quad Lset26652 -.set Lset26653, Ltmp4720-Lfunc_begin0 - .quad Lset26653 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26654, Ltmp4748-Lfunc_begin0 - .quad Lset26654 -.set Lset26655, Ltmp4768-Lfunc_begin0 - .quad Lset26655 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26656, Ltmp6096-Lfunc_begin0 - .quad Lset26656 -.set Lset26657, Ltmp6105-Lfunc_begin0 - .quad Lset26657 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc653: -.set Lset26658, Ltmp4719-Lfunc_begin0 - .quad Lset26658 -.set Lset26659, Ltmp4727-Lfunc_begin0 - .quad Lset26659 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset26660, Ltmp4747-Lfunc_begin0 - .quad Lset26660 -.set Lset26661, Ltmp4775-Lfunc_begin0 - .quad Lset26661 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset26662, Ltmp6096-Lfunc_begin0 - .quad Lset26662 -.set Lset26663, Ltmp6107-Lfunc_begin0 - .quad Lset26663 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc654: -.set Lset26664, Ltmp4719-Lfunc_begin0 - .quad Lset26664 -.set Lset26665, Ltmp4723-Lfunc_begin0 - .quad Lset26665 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26666, Ltmp4736-Lfunc_begin0 - .quad Lset26666 -.set Lset26667, Ltmp4775-Lfunc_begin0 - .quad Lset26667 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26668, Ltmp6000-Lfunc_begin0 - .quad Lset26668 -.set Lset26669, Ltmp6001-Lfunc_begin0 - .quad Lset26669 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26670, Ltmp6094-Lfunc_begin0 - .quad Lset26670 -.set Lset26671, Ltmp6095-Lfunc_begin0 - .quad Lset26671 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26672, Ltmp6096-Lfunc_begin0 - .quad Lset26672 -.set Lset26673, Ltmp6097-Lfunc_begin0 - .quad Lset26673 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26674, Ltmp6098-Lfunc_begin0 - .quad Lset26674 -.set Lset26675, Ltmp6099-Lfunc_begin0 - .quad Lset26675 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26676, Ltmp6100-Lfunc_begin0 - .quad Lset26676 -.set Lset26677, Ltmp6101-Lfunc_begin0 - .quad Lset26677 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26678, Ltmp6102-Lfunc_begin0 - .quad Lset26678 -.set Lset26679, Ltmp6103-Lfunc_begin0 - .quad Lset26679 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26680, Ltmp6105-Lfunc_begin0 - .quad Lset26680 -.set Lset26681, Ltmp6106-Lfunc_begin0 - .quad Lset26681 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26682, Ltmp6152-Lfunc_begin0 - .quad Lset26682 -.set Lset26683, Ltmp6153-Lfunc_begin0 - .quad Lset26683 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc655: -.set Lset26684, Ltmp4736-Lfunc_begin0 - .quad Lset26684 -.set Lset26685, Ltmp4743-Lfunc_begin0 - .quad Lset26685 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26686, Ltmp6152-Lfunc_begin0 - .quad Lset26686 -.set Lset26687, Ltmp6153-Lfunc_begin0 - .quad Lset26687 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc656: -.set Lset26688, Ltmp4748-Lfunc_begin0 - .quad Lset26688 -.set Lset26689, Ltmp4749-Lfunc_begin0 - .quad Lset26689 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc657: -.set Lset26690, Ltmp4752-Lfunc_begin0 - .quad Lset26690 -.set Lset26691, Ltmp4757-Lfunc_begin0 - .quad Lset26691 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26692, Ltmp6102-Lfunc_begin0 - .quad Lset26692 -.set Lset26693, Ltmp6104-Lfunc_begin0 - .quad Lset26693 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc658: -.set Lset26694, Ltmp4756-Lfunc_begin0 - .quad Lset26694 -.set Lset26695, Ltmp4765-Lfunc_begin0 - .quad Lset26695 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc659: -.set Lset26696, Ltmp4756-Lfunc_begin0 - .quad Lset26696 -.set Lset26697, Ltmp4763-Lfunc_begin0 - .quad Lset26697 - .short 3 ## Loc expr size - .byte 120 ## DW_OP_breg8 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc660: -.set Lset26698, Ltmp4765-Lfunc_begin0 - .quad Lset26698 -.set Lset26699, Ltmp4770-Lfunc_begin0 - .quad Lset26699 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset26700, Ltmp4771-Lfunc_begin0 - .quad Lset26700 -.set Lset26701, Ltmp4773-Lfunc_begin0 - .quad Lset26701 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc661: -.set Lset26702, Ltmp4795-Lfunc_begin0 - .quad Lset26702 -.set Lset26703, Ltmp4801-Lfunc_begin0 - .quad Lset26703 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26704, Ltmp6004-Lfunc_begin0 - .quad Lset26704 -.set Lset26705, Ltmp6005-Lfunc_begin0 - .quad Lset26705 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26706, Ltmp6154-Lfunc_begin0 - .quad Lset26706 -.set Lset26707, Ltmp6157-Lfunc_begin0 - .quad Lset26707 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc662: -.set Lset26708, Ltmp4799-Lfunc_begin0 - .quad Lset26708 -.set Lset26709, Ltmp4804-Lfunc_begin0 - .quad Lset26709 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26710, Ltmp6155-Lfunc_begin0 - .quad Lset26710 -.set Lset26711, Ltmp6156-Lfunc_begin0 - .quad Lset26711 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc663: -.set Lset26712, Ltmp4801-Lfunc_begin0 - .quad Lset26712 -.set Lset26713, Ltmp4805-Lfunc_begin0 - .quad Lset26713 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc664: -.set Lset26714, Ltmp4801-Lfunc_begin0 - .quad Lset26714 -.set Lset26715, Ltmp4805-Lfunc_begin0 - .quad Lset26715 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc665: -.set Lset26716, Ltmp4804-Lfunc_begin0 - .quad Lset26716 -.set Lset26717, Ltmp4810-Lfunc_begin0 - .quad Lset26717 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc666: -.set Lset26718, Ltmp4825-Lfunc_begin0 - .quad Lset26718 -.set Lset26719, Ltmp4831-Lfunc_begin0 - .quad Lset26719 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26720, Ltmp6110-Lfunc_begin0 - .quad Lset26720 -.set Lset26721, Ltmp6114-Lfunc_begin0 - .quad Lset26721 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc667: -.set Lset26722, Ltmp4829-Lfunc_begin0 - .quad Lset26722 -.set Lset26723, Ltmp4834-Lfunc_begin0 - .quad Lset26723 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26724, Ltmp6112-Lfunc_begin0 - .quad Lset26724 -.set Lset26725, Ltmp6113-Lfunc_begin0 - .quad Lset26725 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26726, Ltmp6114-Lfunc_begin0 - .quad Lset26726 -.set Lset26727, Ltmp6116-Lfunc_begin0 - .quad Lset26727 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc668: -.set Lset26728, Ltmp4831-Lfunc_begin0 - .quad Lset26728 -.set Lset26729, Ltmp4835-Lfunc_begin0 - .quad Lset26729 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset26730, Ltmp6114-Lfunc_begin0 - .quad Lset26730 -.set Lset26731, Ltmp6115-Lfunc_begin0 - .quad Lset26731 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc669: -.set Lset26732, Ltmp4831-Lfunc_begin0 - .quad Lset26732 -.set Lset26733, Ltmp4835-Lfunc_begin0 - .quad Lset26733 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26734, Ltmp6114-Lfunc_begin0 - .quad Lset26734 -.set Lset26735, Ltmp6115-Lfunc_begin0 - .quad Lset26735 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc670: -.set Lset26736, Ltmp4834-Lfunc_begin0 - .quad Lset26736 -.set Lset26737, Ltmp4840-Lfunc_begin0 - .quad Lset26737 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc671: -.set Lset26738, Ltmp4854-Lfunc_begin0 - .quad Lset26738 -.set Lset26739, Ltmp4890-Lfunc_begin0 - .quad Lset26739 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26740, Ltmp4893-Lfunc_begin0 - .quad Lset26740 -.set Lset26741, Ltmp4896-Lfunc_begin0 - .quad Lset26741 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26742, Ltmp6117-Lfunc_begin0 - .quad Lset26742 -.set Lset26743, Ltmp6120-Lfunc_begin0 - .quad Lset26743 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26744, Ltmp6256-Lfunc_begin0 - .quad Lset26744 -.set Lset26745, Ltmp6258-Lfunc_begin0 - .quad Lset26745 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26746, Ltmp6384-Lfunc_begin0 - .quad Lset26746 -.set Lset26747, Ltmp6385-Lfunc_begin0 - .quad Lset26747 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc672: -.set Lset26748, Ltmp4857-Lfunc_begin0 - .quad Lset26748 -.set Lset26749, Ltmp4864-Lfunc_begin0 - .quad Lset26749 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26750, Ltmp6119-Lfunc_begin0 - .quad Lset26750 -.set Lset26751, Ltmp6120-Lfunc_begin0 - .quad Lset26751 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26752, Ltmp6256-Lfunc_begin0 - .quad Lset26752 -.set Lset26753, Ltmp6258-Lfunc_begin0 - .quad Lset26753 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc673: -.set Lset26754, Ltmp4859-Lfunc_begin0 - .quad Lset26754 -.set Lset26755, Ltmp4879-Lfunc_begin0 - .quad Lset26755 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26756, Ltmp4886-Lfunc_begin0 - .quad Lset26756 -.set Lset26757, Ltmp4889-Lfunc_begin0 - .quad Lset26757 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26758, Ltmp6256-Lfunc_begin0 - .quad Lset26758 -.set Lset26759, Ltmp6257-Lfunc_begin0 - .quad Lset26759 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc674: -.set Lset26760, Ltmp4863-Lfunc_begin0 - .quad Lset26760 -.set Lset26761, Ltmp4891-Lfunc_begin0 - .quad Lset26761 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26762, Ltmp4893-Lfunc_begin0 - .quad Lset26762 -.set Lset26763, Ltmp4896-Lfunc_begin0 - .quad Lset26763 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26764, Ltmp6384-Lfunc_begin0 - .quad Lset26764 -.set Lset26765, Ltmp6385-Lfunc_begin0 - .quad Lset26765 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc675: -.set Lset26766, Ltmp4866-Lfunc_begin0 - .quad Lset26766 -.set Lset26767, Ltmp4870-Lfunc_begin0 - .quad Lset26767 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26768, Ltmp4886-Lfunc_begin0 - .quad Lset26768 -.set Lset26769, Ltmp4887-Lfunc_begin0 - .quad Lset26769 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc676: -.set Lset26770, Ltmp4869-Lfunc_begin0 - .quad Lset26770 -.set Lset26771, Ltmp4870-Lfunc_begin0 - .quad Lset26771 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc677: -.set Lset26772, Ltmp4870-Lfunc_begin0 - .quad Lset26772 -.set Lset26773, Ltmp4874-Lfunc_begin0 - .quad Lset26773 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26774, Ltmp4887-Lfunc_begin0 - .quad Lset26774 -.set Lset26775, Ltmp4888-Lfunc_begin0 - .quad Lset26775 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc678: -.set Lset26776, Ltmp4873-Lfunc_begin0 - .quad Lset26776 -.set Lset26777, Ltmp4874-Lfunc_begin0 - .quad Lset26777 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc679: -.set Lset26778, Ltmp4878-Lfunc_begin0 - .quad Lset26778 -.set Lset26779, Ltmp4885-Lfunc_begin0 - .quad Lset26779 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -272 - .byte 125 ## -.set Lset26780, Ltmp4885-Lfunc_begin0 - .quad Lset26780 -.set Lset26781, Ltmp4886-Lfunc_begin0 - .quad Lset26781 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26782, Ltmp4893-Lfunc_begin0 - .quad Lset26782 -.set Lset26783, Ltmp4894-Lfunc_begin0 - .quad Lset26783 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -272 - .byte 125 ## -.set Lset26784, Ltmp4894-Lfunc_begin0 - .quad Lset26784 -.set Lset26785, Ltmp4895-Lfunc_begin0 - .quad Lset26785 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26786, Ltmp6384-Lfunc_begin0 - .quad Lset26786 -.set Lset26787, Lfunc_end21-Lfunc_begin0 - .quad Lset26787 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 240 ## -272 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc680: -.set Lset26788, Ltmp4881-Lfunc_begin0 - .quad Lset26788 -.set Lset26789, Ltmp4886-Lfunc_begin0 - .quad Lset26789 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26790, Ltmp4893-Lfunc_begin0 - .quad Lset26790 -.set Lset26791, Ltmp4896-Lfunc_begin0 - .quad Lset26791 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc681: -.set Lset26792, Ltmp4884-Lfunc_begin0 - .quad Lset26792 -.set Lset26793, Ltmp4886-Lfunc_begin0 - .quad Lset26793 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc682: -.set Lset26794, Ltmp4913-Lfunc_begin0 - .quad Lset26794 -.set Lset26795, Ltmp4936-Lfunc_begin0 - .quad Lset26795 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26796, Ltmp6005-Lfunc_begin0 - .quad Lset26796 -.set Lset26797, Ltmp6006-Lfunc_begin0 - .quad Lset26797 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26798, Ltmp6008-Lfunc_begin0 - .quad Lset26798 -.set Lset26799, Ltmp6009-Lfunc_begin0 - .quad Lset26799 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26800, Ltmp6259-Lfunc_begin0 - .quad Lset26800 -.set Lset26801, Ltmp6260-Lfunc_begin0 - .quad Lset26801 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26802, Ltmp6261-Lfunc_begin0 - .quad Lset26802 -.set Lset26803, Ltmp6262-Lfunc_begin0 - .quad Lset26803 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26804, Ltmp6263-Lfunc_begin0 - .quad Lset26804 -.set Lset26805, Ltmp6264-Lfunc_begin0 - .quad Lset26805 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc683: -.set Lset26806, Ltmp4916-Lfunc_begin0 - .quad Lset26806 -.set Lset26807, Ltmp4920-Lfunc_begin0 - .quad Lset26807 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26808, Ltmp6005-Lfunc_begin0 - .quad Lset26808 -.set Lset26809, Ltmp6008-Lfunc_begin0 - .quad Lset26809 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26810, Ltmp6263-Lfunc_begin0 - .quad Lset26810 -.set Lset26811, Ltmp6265-Lfunc_begin0 - .quad Lset26811 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc684: -.set Lset26812, Ltmp4918-Lfunc_begin0 - .quad Lset26812 -.set Lset26813, Ltmp4928-Lfunc_begin0 - .quad Lset26813 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26814, Ltmp4929-Lfunc_begin0 - .quad Lset26814 -.set Lset26815, Ltmp4935-Lfunc_begin0 - .quad Lset26815 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26816, Ltmp6005-Lfunc_begin0 - .quad Lset26816 -.set Lset26817, Ltmp6007-Lfunc_begin0 - .quad Lset26817 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26818, Ltmp6008-Lfunc_begin0 - .quad Lset26818 -.set Lset26819, Ltmp6010-Lfunc_begin0 - .quad Lset26819 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc685: -.set Lset26820, Ltmp4921-Lfunc_begin0 - .quad Lset26820 -.set Lset26821, Ltmp4936-Lfunc_begin0 - .quad Lset26821 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26822, Ltmp6008-Lfunc_begin0 - .quad Lset26822 -.set Lset26823, Ltmp6011-Lfunc_begin0 - .quad Lset26823 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc686: -.set Lset26824, Ltmp4921-Lfunc_begin0 - .quad Lset26824 -.set Lset26825, Ltmp4923-Lfunc_begin0 - .quad Lset26825 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc687: -.set Lset26826, Ltmp4927-Lfunc_begin0 - .quad Lset26826 -.set Lset26827, Ltmp4929-Lfunc_begin0 - .quad Lset26827 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc688: -.set Lset26828, Ltmp4954-Lfunc_begin0 - .quad Lset26828 -.set Lset26829, Ltmp4988-Lfunc_begin0 - .quad Lset26829 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26830, Ltmp4991-Lfunc_begin0 - .quad Lset26830 -.set Lset26831, Ltmp4994-Lfunc_begin0 - .quad Lset26831 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26832, Ltmp6265-Lfunc_begin0 - .quad Lset26832 -.set Lset26833, Ltmp6266-Lfunc_begin0 - .quad Lset26833 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset26834, Ltmp6386-Lfunc_begin0 - .quad Lset26834 -.set Lset26835, Ltmp6391-Lfunc_begin0 - .quad Lset26835 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc689: -.set Lset26836, Ltmp4957-Lfunc_begin0 - .quad Lset26836 -.set Lset26837, Ltmp4964-Lfunc_begin0 - .quad Lset26837 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26838, Ltmp6388-Lfunc_begin0 - .quad Lset26838 -.set Lset26839, Ltmp6391-Lfunc_begin0 - .quad Lset26839 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc690: -.set Lset26840, Ltmp4959-Lfunc_begin0 - .quad Lset26840 -.set Lset26841, Ltmp4978-Lfunc_begin0 - .quad Lset26841 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26842, Ltmp4984-Lfunc_begin0 - .quad Lset26842 -.set Lset26843, Ltmp4987-Lfunc_begin0 - .quad Lset26843 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset26844, Ltmp6389-Lfunc_begin0 - .quad Lset26844 -.set Lset26845, Ltmp6390-Lfunc_begin0 - .quad Lset26845 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc691: -.set Lset26846, Ltmp4963-Lfunc_begin0 - .quad Lset26846 -.set Lset26847, Ltmp4989-Lfunc_begin0 - .quad Lset26847 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26848, Ltmp4991-Lfunc_begin0 - .quad Lset26848 -.set Lset26849, Ltmp4994-Lfunc_begin0 - .quad Lset26849 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset26850, Ltmp6265-Lfunc_begin0 - .quad Lset26850 -.set Lset26851, Ltmp6266-Lfunc_begin0 - .quad Lset26851 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc692: -.set Lset26852, Ltmp4966-Lfunc_begin0 - .quad Lset26852 -.set Lset26853, Ltmp4970-Lfunc_begin0 - .quad Lset26853 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26854, Ltmp4984-Lfunc_begin0 - .quad Lset26854 -.set Lset26855, Ltmp4985-Lfunc_begin0 - .quad Lset26855 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc693: -.set Lset26856, Ltmp4969-Lfunc_begin0 - .quad Lset26856 -.set Lset26857, Ltmp4970-Lfunc_begin0 - .quad Lset26857 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc694: -.set Lset26858, Ltmp4970-Lfunc_begin0 - .quad Lset26858 -.set Lset26859, Ltmp4974-Lfunc_begin0 - .quad Lset26859 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26860, Ltmp4985-Lfunc_begin0 - .quad Lset26860 -.set Lset26861, Ltmp4986-Lfunc_begin0 - .quad Lset26861 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc695: -.set Lset26862, Ltmp4973-Lfunc_begin0 - .quad Lset26862 -.set Lset26863, Ltmp4974-Lfunc_begin0 - .quad Lset26863 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc696: -.set Lset26864, Ltmp4977-Lfunc_begin0 - .quad Lset26864 -.set Lset26865, Ltmp4992-Lfunc_begin0 - .quad Lset26865 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -264 - .byte 125 ## -.set Lset26866, Ltmp4992-Lfunc_begin0 - .quad Lset26866 -.set Lset26867, Ltmp4993-Lfunc_begin0 - .quad Lset26867 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset26868, Ltmp6265-Lfunc_begin0 - .quad Lset26868 -.set Lset26869, Lfunc_end21-Lfunc_begin0 - .quad Lset26869 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 248 ## -264 - .byte 125 ## - .quad 0 - .quad 0 -Ldebug_loc697: -.set Lset26870, Ltmp4980-Lfunc_begin0 - .quad Lset26870 -.set Lset26871, Ltmp4984-Lfunc_begin0 - .quad Lset26871 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset26872, Ltmp4991-Lfunc_begin0 - .quad Lset26872 -.set Lset26873, Ltmp4994-Lfunc_begin0 - .quad Lset26873 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc698: -.set Lset26874, Ltmp4983-Lfunc_begin0 - .quad Lset26874 -.set Lset26875, Ltmp4984-Lfunc_begin0 - .quad Lset26875 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc699: -.set Lset26876, Ltmp5011-Lfunc_begin0 - .quad Lset26876 -.set Lset26877, Ltmp5033-Lfunc_begin0 - .quad Lset26877 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26878, Ltmp6013-Lfunc_begin0 - .quad Lset26878 -.set Lset26879, Ltmp6014-Lfunc_begin0 - .quad Lset26879 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26880, Ltmp6015-Lfunc_begin0 - .quad Lset26880 -.set Lset26881, Ltmp6016-Lfunc_begin0 - .quad Lset26881 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26882, Ltmp6017-Lfunc_begin0 - .quad Lset26882 -.set Lset26883, Ltmp6018-Lfunc_begin0 - .quad Lset26883 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26884, Ltmp6019-Lfunc_begin0 - .quad Lset26884 -.set Lset26885, Ltmp6020-Lfunc_begin0 - .quad Lset26885 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26886, Ltmp6157-Lfunc_begin0 - .quad Lset26886 -.set Lset26887, Ltmp6158-Lfunc_begin0 - .quad Lset26887 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc700: -.set Lset26888, Ltmp5014-Lfunc_begin0 - .quad Lset26888 -.set Lset26889, Ltmp5018-Lfunc_begin0 - .quad Lset26889 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26890, Ltmp6017-Lfunc_begin0 - .quad Lset26890 -.set Lset26891, Ltmp6022-Lfunc_begin0 - .quad Lset26891 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc701: -.set Lset26892, Ltmp5016-Lfunc_begin0 - .quad Lset26892 -.set Lset26893, Ltmp5026-Lfunc_begin0 - .quad Lset26893 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26894, Ltmp5027-Lfunc_begin0 - .quad Lset26894 -.set Lset26895, Ltmp5033-Lfunc_begin0 - .quad Lset26895 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26896, Ltmp6019-Lfunc_begin0 - .quad Lset26896 -.set Lset26897, Ltmp6021-Lfunc_begin0 - .quad Lset26897 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26898, Ltmp6157-Lfunc_begin0 - .quad Lset26898 -.set Lset26899, Ltmp6159-Lfunc_begin0 - .quad Lset26899 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc702: -.set Lset26900, Ltmp5019-Lfunc_begin0 - .quad Lset26900 -.set Lset26901, Ltmp5033-Lfunc_begin0 - .quad Lset26901 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset26902, Ltmp6157-Lfunc_begin0 - .quad Lset26902 -.set Lset26903, Ltmp6160-Lfunc_begin0 - .quad Lset26903 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc703: -.set Lset26904, Ltmp5019-Lfunc_begin0 - .quad Lset26904 -.set Lset26905, Ltmp5021-Lfunc_begin0 - .quad Lset26905 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc704: -.set Lset26906, Ltmp5025-Lfunc_begin0 - .quad Lset26906 -.set Lset26907, Ltmp5027-Lfunc_begin0 - .quad Lset26907 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc705: -.set Lset26908, Ltmp5045-Lfunc_begin0 - .quad Lset26908 -.set Lset26909, Ltmp5061-Lfunc_begin0 - .quad Lset26909 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -256 - .byte 126 ## -.set Lset26910, Ltmp5061-Lfunc_begin0 - .quad Lset26910 -.set Lset26911, Ltmp5067-Lfunc_begin0 - .quad Lset26911 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26912, Ltmp6022-Lfunc_begin0 - .quad Lset26912 -.set Lset26913, Lfunc_end21-Lfunc_begin0 - .quad Lset26913 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 128 ## -256 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc706: -.set Lset26914, Ltmp5064-Lfunc_begin0 - .quad Lset26914 -.set Lset26915, Ltmp5071-Lfunc_begin0 - .quad Lset26915 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc707: -.set Lset26916, Ltmp5065-Lfunc_begin0 - .quad Lset26916 -.set Lset26917, Ltmp5068-Lfunc_begin0 - .quad Lset26917 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc708: -.set Lset26918, Ltmp5101-Lfunc_begin0 - .quad Lset26918 -.set Lset26919, Ltmp5107-Lfunc_begin0 - .quad Lset26919 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc709: -.set Lset26920, Ltmp5102-Lfunc_begin0 - .quad Lset26920 -.set Lset26921, Ltmp5104-Lfunc_begin0 - .quad Lset26921 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc710: -.set Lset26922, Ltmp5127-Lfunc_begin0 - .quad Lset26922 -.set Lset26923, Ltmp5139-Lfunc_begin0 - .quad Lset26923 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26924, Ltmp6122-Lfunc_begin0 - .quad Lset26924 -.set Lset26925, Ltmp6123-Lfunc_begin0 - .quad Lset26925 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc711: -.set Lset26926, Ltmp5128-Lfunc_begin0 - .quad Lset26926 -.set Lset26927, Ltmp5130-Lfunc_begin0 - .quad Lset26927 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc712: -.set Lset26928, Ltmp5159-Lfunc_begin0 - .quad Lset26928 -.set Lset26929, Ltmp5171-Lfunc_begin0 - .quad Lset26929 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26930, Ltmp6391-Lfunc_begin0 - .quad Lset26930 -.set Lset26931, Ltmp6392-Lfunc_begin0 - .quad Lset26931 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc713: -.set Lset26932, Ltmp5160-Lfunc_begin0 - .quad Lset26932 -.set Lset26933, Ltmp5162-Lfunc_begin0 - .quad Lset26933 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc714: -.set Lset26934, Ltmp5191-Lfunc_begin0 - .quad Lset26934 -.set Lset26935, Ltmp5203-Lfunc_begin0 - .quad Lset26935 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset26936, Ltmp6394-Lfunc_begin0 - .quad Lset26936 -.set Lset26937, Ltmp6395-Lfunc_begin0 - .quad Lset26937 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc715: -.set Lset26938, Ltmp5192-Lfunc_begin0 - .quad Lset26938 -.set Lset26939, Ltmp5194-Lfunc_begin0 - .quad Lset26939 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc716: -.set Lset26940, Ltmp5247-Lfunc_begin0 - .quad Lset26940 -.set Lset26941, Ltmp5250-Lfunc_begin0 - .quad Lset26941 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26942, Ltmp5260-Lfunc_begin0 - .quad Lset26942 -.set Lset26943, Ltmp5268-Lfunc_begin0 - .quad Lset26943 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26944, Ltmp6268-Lfunc_begin0 - .quad Lset26944 -.set Lset26945, Ltmp6269-Lfunc_begin0 - .quad Lset26945 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26946, Ltmp6270-Lfunc_begin0 - .quad Lset26946 -.set Lset26947, Ltmp6271-Lfunc_begin0 - .quad Lset26947 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc717: -.set Lset26948, Ltmp5247-Lfunc_begin0 - .quad Lset26948 -.set Lset26949, Ltmp5248-Lfunc_begin0 - .quad Lset26949 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26950, Ltmp5258-Lfunc_begin0 - .quad Lset26950 -.set Lset26951, Ltmp5268-Lfunc_begin0 - .quad Lset26951 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26952, Ltmp6267-Lfunc_begin0 - .quad Lset26952 -.set Lset26953, Ltmp6272-Lfunc_begin0 - .quad Lset26953 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc718: -.set Lset26954, Ltmp5272-Lfunc_begin0 - .quad Lset26954 -.set Lset26955, Ltmp5275-Lfunc_begin0 - .quad Lset26955 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26956, Ltmp5285-Lfunc_begin0 - .quad Lset26956 -.set Lset26957, Ltmp5293-Lfunc_begin0 - .quad Lset26957 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26958, Ltmp6274-Lfunc_begin0 - .quad Lset26958 -.set Lset26959, Ltmp6275-Lfunc_begin0 - .quad Lset26959 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26960, Ltmp6276-Lfunc_begin0 - .quad Lset26960 -.set Lset26961, Ltmp6277-Lfunc_begin0 - .quad Lset26961 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc719: -.set Lset26962, Ltmp5272-Lfunc_begin0 - .quad Lset26962 -.set Lset26963, Ltmp5273-Lfunc_begin0 - .quad Lset26963 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26964, Ltmp5283-Lfunc_begin0 - .quad Lset26964 -.set Lset26965, Ltmp5293-Lfunc_begin0 - .quad Lset26965 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26966, Ltmp6273-Lfunc_begin0 - .quad Lset26966 -.set Lset26967, Ltmp6278-Lfunc_begin0 - .quad Lset26967 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc720: -.set Lset26968, Ltmp5297-Lfunc_begin0 - .quad Lset26968 -.set Lset26969, Ltmp5298-Lfunc_begin0 - .quad Lset26969 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26970, Ltmp5308-Lfunc_begin0 - .quad Lset26970 -.set Lset26971, Ltmp5319-Lfunc_begin0 - .quad Lset26971 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26972, Ltmp6023-Lfunc_begin0 - .quad Lset26972 -.set Lset26973, Ltmp6027-Lfunc_begin0 - .quad Lset26973 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26974, Ltmp6279-Lfunc_begin0 - .quad Lset26974 -.set Lset26975, Ltmp6280-Lfunc_begin0 - .quad Lset26975 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc721: -.set Lset26976, Ltmp5310-Lfunc_begin0 - .quad Lset26976 -.set Lset26977, Ltmp5313-Lfunc_begin0 - .quad Lset26977 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26978, Ltmp6023-Lfunc_begin0 - .quad Lset26978 -.set Lset26979, Ltmp6024-Lfunc_begin0 - .quad Lset26979 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26980, Ltmp6025-Lfunc_begin0 - .quad Lset26980 -.set Lset26981, Ltmp6026-Lfunc_begin0 - .quad Lset26981 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc722: -.set Lset26982, Ltmp5323-Lfunc_begin0 - .quad Lset26982 -.set Lset26983, Ltmp5326-Lfunc_begin0 - .quad Lset26983 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26984, Ltmp5336-Lfunc_begin0 - .quad Lset26984 -.set Lset26985, Ltmp5344-Lfunc_begin0 - .quad Lset26985 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26986, Ltmp6029-Lfunc_begin0 - .quad Lset26986 -.set Lset26987, Ltmp6030-Lfunc_begin0 - .quad Lset26987 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26988, Ltmp6031-Lfunc_begin0 - .quad Lset26988 -.set Lset26989, Ltmp6032-Lfunc_begin0 - .quad Lset26989 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc723: -.set Lset26990, Ltmp5323-Lfunc_begin0 - .quad Lset26990 -.set Lset26991, Ltmp5324-Lfunc_begin0 - .quad Lset26991 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26992, Ltmp5334-Lfunc_begin0 - .quad Lset26992 -.set Lset26993, Ltmp5344-Lfunc_begin0 - .quad Lset26993 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset26994, Ltmp6028-Lfunc_begin0 - .quad Lset26994 -.set Lset26995, Ltmp6033-Lfunc_begin0 - .quad Lset26995 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc724: -.set Lset26996, Ltmp5348-Lfunc_begin0 - .quad Lset26996 -.set Lset26997, Ltmp5351-Lfunc_begin0 - .quad Lset26997 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset26998, Ltmp5361-Lfunc_begin0 - .quad Lset26998 -.set Lset26999, Ltmp5369-Lfunc_begin0 - .quad Lset26999 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27000, Ltmp6161-Lfunc_begin0 - .quad Lset27000 -.set Lset27001, Ltmp6162-Lfunc_begin0 - .quad Lset27001 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27002, Ltmp6163-Lfunc_begin0 - .quad Lset27002 -.set Lset27003, Ltmp6164-Lfunc_begin0 - .quad Lset27003 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc725: -.set Lset27004, Ltmp5348-Lfunc_begin0 - .quad Lset27004 -.set Lset27005, Ltmp5349-Lfunc_begin0 - .quad Lset27005 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27006, Ltmp5359-Lfunc_begin0 - .quad Lset27006 -.set Lset27007, Ltmp5369-Lfunc_begin0 - .quad Lset27007 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27008, Ltmp6034-Lfunc_begin0 - .quad Lset27008 -.set Lset27009, Ltmp6035-Lfunc_begin0 - .quad Lset27009 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27010, Ltmp6161-Lfunc_begin0 - .quad Lset27010 -.set Lset27011, Ltmp6165-Lfunc_begin0 - .quad Lset27011 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc726: -.set Lset27012, Ltmp5373-Lfunc_begin0 - .quad Lset27012 -.set Lset27013, Ltmp5376-Lfunc_begin0 - .quad Lset27013 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27014, Ltmp5386-Lfunc_begin0 - .quad Lset27014 -.set Lset27015, Ltmp5394-Lfunc_begin0 - .quad Lset27015 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27016, Ltmp6127-Lfunc_begin0 - .quad Lset27016 -.set Lset27017, Ltmp6128-Lfunc_begin0 - .quad Lset27017 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27018, Ltmp6129-Lfunc_begin0 - .quad Lset27018 -.set Lset27019, Ltmp6130-Lfunc_begin0 - .quad Lset27019 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc727: -.set Lset27020, Ltmp5373-Lfunc_begin0 - .quad Lset27020 -.set Lset27021, Ltmp5374-Lfunc_begin0 - .quad Lset27021 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27022, Ltmp5384-Lfunc_begin0 - .quad Lset27022 -.set Lset27023, Ltmp5394-Lfunc_begin0 - .quad Lset27023 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27024, Ltmp6126-Lfunc_begin0 - .quad Lset27024 -.set Lset27025, Ltmp6131-Lfunc_begin0 - .quad Lset27025 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc728: -.set Lset27026, Ltmp5398-Lfunc_begin0 - .quad Lset27026 -.set Lset27027, Ltmp5400-Lfunc_begin0 - .quad Lset27027 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27028, Ltmp5410-Lfunc_begin0 - .quad Lset27028 -.set Lset27029, Ltmp5419-Lfunc_begin0 - .quad Lset27029 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27030, Ltmp6133-Lfunc_begin0 - .quad Lset27030 -.set Lset27031, Ltmp6134-Lfunc_begin0 - .quad Lset27031 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27032, Ltmp6135-Lfunc_begin0 - .quad Lset27032 -.set Lset27033, Ltmp6136-Lfunc_begin0 - .quad Lset27033 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc729: -.set Lset27034, Ltmp5408-Lfunc_begin0 - .quad Lset27034 -.set Lset27035, Ltmp5413-Lfunc_begin0 - .quad Lset27035 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27036, Ltmp6132-Lfunc_begin0 - .quad Lset27036 -.set Lset27037, Ltmp6137-Lfunc_begin0 - .quad Lset27037 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc730: -.set Lset27038, Ltmp5423-Lfunc_begin0 - .quad Lset27038 -.set Lset27039, Ltmp5426-Lfunc_begin0 - .quad Lset27039 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27040, Ltmp5436-Lfunc_begin0 - .quad Lset27040 -.set Lset27041, Ltmp5444-Lfunc_begin0 - .quad Lset27041 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27042, Ltmp6396-Lfunc_begin0 - .quad Lset27042 -.set Lset27043, Ltmp6397-Lfunc_begin0 - .quad Lset27043 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27044, Ltmp6398-Lfunc_begin0 - .quad Lset27044 -.set Lset27045, Ltmp6399-Lfunc_begin0 - .quad Lset27045 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc731: -.set Lset27046, Ltmp5423-Lfunc_begin0 - .quad Lset27046 -.set Lset27047, Ltmp5424-Lfunc_begin0 - .quad Lset27047 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27048, Ltmp5434-Lfunc_begin0 - .quad Lset27048 -.set Lset27049, Ltmp5444-Lfunc_begin0 - .quad Lset27049 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27050, Ltmp6280-Lfunc_begin0 - .quad Lset27050 -.set Lset27051, Ltmp6281-Lfunc_begin0 - .quad Lset27051 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27052, Ltmp6396-Lfunc_begin0 - .quad Lset27052 -.set Lset27053, Ltmp6400-Lfunc_begin0 - .quad Lset27053 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc732: -.set Lset27054, Ltmp5448-Lfunc_begin0 - .quad Lset27054 -.set Lset27055, Ltmp5451-Lfunc_begin0 - .quad Lset27055 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27056, Ltmp5461-Lfunc_begin0 - .quad Lset27056 -.set Lset27057, Ltmp5469-Lfunc_begin0 - .quad Lset27057 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27058, Ltmp6402-Lfunc_begin0 - .quad Lset27058 -.set Lset27059, Ltmp6403-Lfunc_begin0 - .quad Lset27059 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27060, Ltmp6404-Lfunc_begin0 - .quad Lset27060 -.set Lset27061, Ltmp6405-Lfunc_begin0 - .quad Lset27061 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc733: -.set Lset27062, Ltmp5448-Lfunc_begin0 - .quad Lset27062 -.set Lset27063, Ltmp5449-Lfunc_begin0 - .quad Lset27063 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27064, Ltmp5459-Lfunc_begin0 - .quad Lset27064 -.set Lset27065, Ltmp5469-Lfunc_begin0 - .quad Lset27065 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27066, Ltmp6401-Lfunc_begin0 - .quad Lset27066 -.set Lset27067, Ltmp6406-Lfunc_begin0 - .quad Lset27067 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc734: -.set Lset27068, Ltmp5473-Lfunc_begin0 - .quad Lset27068 -.set Lset27069, Ltmp5474-Lfunc_begin0 - .quad Lset27069 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27070, Ltmp5484-Lfunc_begin0 - .quad Lset27070 -.set Lset27071, Ltmp5495-Lfunc_begin0 - .quad Lset27071 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27072, Ltmp6407-Lfunc_begin0 - .quad Lset27072 -.set Lset27073, Ltmp6412-Lfunc_begin0 - .quad Lset27073 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc735: -.set Lset27074, Ltmp5486-Lfunc_begin0 - .quad Lset27074 -.set Lset27075, Ltmp5489-Lfunc_begin0 - .quad Lset27075 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27076, Ltmp6408-Lfunc_begin0 - .quad Lset27076 -.set Lset27077, Ltmp6409-Lfunc_begin0 - .quad Lset27077 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27078, Ltmp6410-Lfunc_begin0 - .quad Lset27078 -.set Lset27079, Ltmp6411-Lfunc_begin0 - .quad Lset27079 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc736: -.set Lset27080, Ltmp5499-Lfunc_begin0 - .quad Lset27080 -.set Lset27081, Ltmp5502-Lfunc_begin0 - .quad Lset27081 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27082, Ltmp5512-Lfunc_begin0 - .quad Lset27082 -.set Lset27083, Ltmp5520-Lfunc_begin0 - .quad Lset27083 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27084, Ltmp6283-Lfunc_begin0 - .quad Lset27084 -.set Lset27085, Ltmp6284-Lfunc_begin0 - .quad Lset27085 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27086, Ltmp6285-Lfunc_begin0 - .quad Lset27086 -.set Lset27087, Ltmp6286-Lfunc_begin0 - .quad Lset27087 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc737: -.set Lset27088, Ltmp5499-Lfunc_begin0 - .quad Lset27088 -.set Lset27089, Ltmp5500-Lfunc_begin0 - .quad Lset27089 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27090, Ltmp5510-Lfunc_begin0 - .quad Lset27090 -.set Lset27091, Ltmp5520-Lfunc_begin0 - .quad Lset27091 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27092, Ltmp6282-Lfunc_begin0 - .quad Lset27092 -.set Lset27093, Ltmp6287-Lfunc_begin0 - .quad Lset27093 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc738: -.set Lset27094, Ltmp5524-Lfunc_begin0 - .quad Lset27094 -.set Lset27095, Ltmp5527-Lfunc_begin0 - .quad Lset27095 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27096, Ltmp5537-Lfunc_begin0 - .quad Lset27096 -.set Lset27097, Ltmp5545-Lfunc_begin0 - .quad Lset27097 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27098, Ltmp6289-Lfunc_begin0 - .quad Lset27098 -.set Lset27099, Ltmp6290-Lfunc_begin0 - .quad Lset27099 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27100, Ltmp6291-Lfunc_begin0 - .quad Lset27100 -.set Lset27101, Ltmp6292-Lfunc_begin0 - .quad Lset27101 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc739: -.set Lset27102, Ltmp5524-Lfunc_begin0 - .quad Lset27102 -.set Lset27103, Ltmp5525-Lfunc_begin0 - .quad Lset27103 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27104, Ltmp5535-Lfunc_begin0 - .quad Lset27104 -.set Lset27105, Ltmp5545-Lfunc_begin0 - .quad Lset27105 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27106, Ltmp6288-Lfunc_begin0 - .quad Lset27106 -.set Lset27107, Ltmp6293-Lfunc_begin0 - .quad Lset27107 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc740: -.set Lset27108, Ltmp5549-Lfunc_begin0 - .quad Lset27108 -.set Lset27109, Ltmp5552-Lfunc_begin0 - .quad Lset27109 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27110, Ltmp5562-Lfunc_begin0 - .quad Lset27110 -.set Lset27111, Ltmp5570-Lfunc_begin0 - .quad Lset27111 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27112, Ltmp6035-Lfunc_begin0 - .quad Lset27112 -.set Lset27113, Ltmp6036-Lfunc_begin0 - .quad Lset27113 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27114, Ltmp6037-Lfunc_begin0 - .quad Lset27114 -.set Lset27115, Ltmp6038-Lfunc_begin0 - .quad Lset27115 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc741: -.set Lset27116, Ltmp5549-Lfunc_begin0 - .quad Lset27116 -.set Lset27117, Ltmp5550-Lfunc_begin0 - .quad Lset27117 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27118, Ltmp5560-Lfunc_begin0 - .quad Lset27118 -.set Lset27119, Ltmp5570-Lfunc_begin0 - .quad Lset27119 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27120, Ltmp6035-Lfunc_begin0 - .quad Lset27120 -.set Lset27121, Ltmp6039-Lfunc_begin0 - .quad Lset27121 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27122, Ltmp6294-Lfunc_begin0 - .quad Lset27122 -.set Lset27123, Ltmp6295-Lfunc_begin0 - .quad Lset27123 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc742: -.set Lset27124, Ltmp5574-Lfunc_begin0 - .quad Lset27124 -.set Lset27125, Ltmp5577-Lfunc_begin0 - .quad Lset27125 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27126, Ltmp5587-Lfunc_begin0 - .quad Lset27126 -.set Lset27127, Ltmp5595-Lfunc_begin0 - .quad Lset27127 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27128, Ltmp6041-Lfunc_begin0 - .quad Lset27128 -.set Lset27129, Ltmp6042-Lfunc_begin0 - .quad Lset27129 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27130, Ltmp6043-Lfunc_begin0 - .quad Lset27130 -.set Lset27131, Ltmp6044-Lfunc_begin0 - .quad Lset27131 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc743: -.set Lset27132, Ltmp5574-Lfunc_begin0 - .quad Lset27132 -.set Lset27133, Ltmp5575-Lfunc_begin0 - .quad Lset27133 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27134, Ltmp5585-Lfunc_begin0 - .quad Lset27134 -.set Lset27135, Ltmp5595-Lfunc_begin0 - .quad Lset27135 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27136, Ltmp6040-Lfunc_begin0 - .quad Lset27136 -.set Lset27137, Ltmp6045-Lfunc_begin0 - .quad Lset27137 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc744: -.set Lset27138, Ltmp5599-Lfunc_begin0 - .quad Lset27138 -.set Lset27139, Ltmp5604-Lfunc_begin0 - .quad Lset27139 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27140, Ltmp5620-Lfunc_begin0 - .quad Lset27140 -.set Lset27141, Ltmp5623-Lfunc_begin0 - .quad Lset27141 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc745: -.set Lset27142, Ltmp5603-Lfunc_begin0 - .quad Lset27142 -.set Lset27143, Ltmp5608-Lfunc_begin0 - .quad Lset27143 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -240 - .byte 126 ## -.set Lset27144, Ltmp5608-Lfunc_begin0 - .quad Lset27144 -.set Lset27145, Ltmp5609-Lfunc_begin0 - .quad Lset27145 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27146, Ltmp5622-Lfunc_begin0 - .quad Lset27146 -.set Lset27147, Ltmp5628-Lfunc_begin0 - .quad Lset27147 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27148, Ltmp6412-Lfunc_begin0 - .quad Lset27148 -.set Lset27149, Lfunc_end21-Lfunc_begin0 - .quad Lset27149 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 144 ## -240 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc746: -.set Lset27150, Ltmp5632-Lfunc_begin0 - .quad Lset27150 -.set Lset27151, Ltmp5637-Lfunc_begin0 - .quad Lset27151 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27152, Ltmp5652-Lfunc_begin0 - .quad Lset27152 -.set Lset27153, Ltmp5654-Lfunc_begin0 - .quad Lset27153 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc747: -.set Lset27154, Ltmp5636-Lfunc_begin0 - .quad Lset27154 -.set Lset27155, Ltmp5653-Lfunc_begin0 - .quad Lset27155 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -232 - .byte 126 ## -.set Lset27156, Ltmp5653-Lfunc_begin0 - .quad Lset27156 -.set Lset27157, Ltmp5654-Lfunc_begin0 - .quad Lset27157 - .short 2 ## Loc expr size - .byte 117 ## DW_OP_breg5 - .byte 0 ## 0 -.set Lset27158, Ltmp6295-Lfunc_begin0 - .quad Lset27158 -.set Lset27159, Lfunc_end21-Lfunc_begin0 - .quad Lset27159 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 152 ## -232 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc748: -.set Lset27160, Ltmp5742-Lfunc_begin0 - .quad Lset27160 -.set Lset27161, Ltmp5747-Lfunc_begin0 - .quad Lset27161 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -224 - .byte 126 ## -.set Lset27162, Ltmp5747-Lfunc_begin0 - .quad Lset27162 -.set Lset27163, Ltmp5748-Lfunc_begin0 - .quad Lset27163 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27164, Ltmp5758-Lfunc_begin0 - .quad Lset27164 -.set Lset27165, Ltmp5764-Lfunc_begin0 - .quad Lset27165 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27166, Ltmp6049-Lfunc_begin0 - .quad Lset27166 -.set Lset27167, Lfunc_end21-Lfunc_begin0 - .quad Lset27167 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 160 ## -224 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc749: -.set Lset27168, Ltmp5909-Lfunc_begin0 - .quad Lset27168 -.set Lset27169, Ltmp5913-Lfunc_begin0 - .quad Lset27169 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27170, Ltmp6418-Lfunc_begin0 - .quad Lset27170 -.set Lset27171, Ltmp6419-Lfunc_begin0 - .quad Lset27171 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc750: -.set Lset27172, Lfunc_begin22-Lfunc_begin0 - .quad Lset27172 -.set Lset27173, Ltmp6434-Lfunc_begin0 - .quad Lset27173 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27174, Ltmp6434-Lfunc_begin0 - .quad Lset27174 -.set Lset27175, Ltmp6462-Lfunc_begin0 - .quad Lset27175 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27176, Ltmp6464-Lfunc_begin0 - .quad Lset27176 -.set Lset27177, Lfunc_end22-Lfunc_begin0 - .quad Lset27177 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc751: -.set Lset27178, Lfunc_begin22-Lfunc_begin0 - .quad Lset27178 -.set Lset27179, Ltmp6434-Lfunc_begin0 - .quad Lset27179 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27180, Ltmp6434-Lfunc_begin0 - .quad Lset27180 -.set Lset27181, Ltmp6441-Lfunc_begin0 - .quad Lset27181 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27182, Ltmp6441-Lfunc_begin0 - .quad Lset27182 -.set Lset27183, Ltmp6465-Lfunc_begin0 - .quad Lset27183 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 -.set Lset27184, Ltmp6465-Lfunc_begin0 - .quad Lset27184 -.set Lset27185, Lfunc_end22-Lfunc_begin0 - .quad Lset27185 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc752: -.set Lset27186, Lfunc_begin22-Lfunc_begin0 - .quad Lset27186 -.set Lset27187, Ltmp6434-Lfunc_begin0 - .quad Lset27187 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27188, Ltmp6434-Lfunc_begin0 - .quad Lset27188 -.set Lset27189, Lfunc_end22-Lfunc_begin0 - .quad Lset27189 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 - .quad 0 - .quad 0 -Ldebug_loc753: -.set Lset27190, Lfunc_begin22-Lfunc_begin0 - .quad Lset27190 -.set Lset27191, Ltmp6434-Lfunc_begin0 - .quad Lset27191 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27192, Ltmp6434-Lfunc_begin0 - .quad Lset27192 -.set Lset27193, Lfunc_end22-Lfunc_begin0 - .quad Lset27193 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 184 ## -72 - .byte 127 ## - .quad 0 - .quad 0 -Ldebug_loc754: -.set Lset27194, Lfunc_begin22-Lfunc_begin0 - .quad Lset27194 -.set Lset27195, Ltmp6434-Lfunc_begin0 - .quad Lset27195 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset27196, Ltmp6434-Lfunc_begin0 - .quad Lset27196 -.set Lset27197, Lfunc_end22-Lfunc_begin0 - .quad Lset27197 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc755: -.set Lset27198, Ltmp6433-Lfunc_begin0 - .quad Lset27198 -.set Lset27199, Ltmp6437-Lfunc_begin0 - .quad Lset27199 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset27200, Ltmp6439-Lfunc_begin0 - .quad Lset27200 -.set Lset27201, Lfunc_end22-Lfunc_begin0 - .quad Lset27201 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc756: -.set Lset27202, Ltmp6435-Lfunc_begin0 - .quad Lset27202 -.set Lset27203, Ltmp6461-Lfunc_begin0 - .quad Lset27203 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27204, Ltmp6464-Lfunc_begin0 - .quad Lset27204 -.set Lset27205, Lfunc_end22-Lfunc_begin0 - .quad Lset27205 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc757: -.set Lset27206, Ltmp6436-Lfunc_begin0 - .quad Lset27206 -.set Lset27207, Ltmp6447-Lfunc_begin0 - .quad Lset27207 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27208, Ltmp6464-Lfunc_begin0 - .quad Lset27208 -.set Lset27209, Lfunc_end22-Lfunc_begin0 - .quad Lset27209 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc758: -.set Lset27210, Ltmp6438-Lfunc_begin0 - .quad Lset27210 -.set Lset27211, Ltmp6463-Lfunc_begin0 - .quad Lset27211 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27212, Ltmp6464-Lfunc_begin0 - .quad Lset27212 -.set Lset27213, Lfunc_end22-Lfunc_begin0 - .quad Lset27213 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc759: -.set Lset27214, Ltmp6439-Lfunc_begin0 - .quad Lset27214 -.set Lset27215, Ltmp6444-Lfunc_begin0 - .quad Lset27215 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27216, Ltmp6464-Lfunc_begin0 - .quad Lset27216 -.set Lset27217, Lfunc_end22-Lfunc_begin0 - .quad Lset27217 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc760: -.set Lset27218, Ltmp6444-Lfunc_begin0 - .quad Lset27218 -.set Lset27219, Ltmp6448-Lfunc_begin0 - .quad Lset27219 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset27220, Ltmp6448-Lfunc_begin0 - .quad Lset27220 -.set Lset27221, Ltmp6454-Lfunc_begin0 - .quad Lset27221 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc761: -.set Lset27222, Lfunc_begin23-Lfunc_begin0 - .quad Lset27222 -.set Lset27223, Ltmp6471-Lfunc_begin0 - .quad Lset27223 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27224, Ltmp6472-Lfunc_begin0 - .quad Lset27224 -.set Lset27225, Ltmp6473-Lfunc_begin0 - .quad Lset27225 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27226, Ltmp6474-Lfunc_begin0 - .quad Lset27226 -.set Lset27227, Ltmp6477-Lfunc_begin0 - .quad Lset27227 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27228, Ltmp6478-Lfunc_begin0 - .quad Lset27228 -.set Lset27229, Ltmp6481-Lfunc_begin0 - .quad Lset27229 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27230, Ltmp6482-Lfunc_begin0 - .quad Lset27230 -.set Lset27231, Ltmp6485-Lfunc_begin0 - .quad Lset27231 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27232, Ltmp6486-Lfunc_begin0 - .quad Lset27232 -.set Lset27233, Ltmp6491-Lfunc_begin0 - .quad Lset27233 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27234, Ltmp6492-Lfunc_begin0 - .quad Lset27234 -.set Lset27235, Ltmp6497-Lfunc_begin0 - .quad Lset27235 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27236, Ltmp6498-Lfunc_begin0 - .quad Lset27236 -.set Lset27237, Ltmp6499-Lfunc_begin0 - .quad Lset27237 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27238, Ltmp6500-Lfunc_begin0 - .quad Lset27238 -.set Lset27239, Ltmp6503-Lfunc_begin0 - .quad Lset27239 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27240, Ltmp6504-Lfunc_begin0 - .quad Lset27240 -.set Lset27241, Ltmp6505-Lfunc_begin0 - .quad Lset27241 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27242, Ltmp6506-Lfunc_begin0 - .quad Lset27242 -.set Lset27243, Ltmp6507-Lfunc_begin0 - .quad Lset27243 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27244, Ltmp6508-Lfunc_begin0 - .quad Lset27244 -.set Lset27245, Ltmp6509-Lfunc_begin0 - .quad Lset27245 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27246, Ltmp6510-Lfunc_begin0 - .quad Lset27246 -.set Lset27247, Ltmp6511-Lfunc_begin0 - .quad Lset27247 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27248, Ltmp6512-Lfunc_begin0 - .quad Lset27248 -.set Lset27249, Ltmp6514-Lfunc_begin0 - .quad Lset27249 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27250, Ltmp6515-Lfunc_begin0 - .quad Lset27250 -.set Lset27251, Ltmp6516-Lfunc_begin0 - .quad Lset27251 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27252, Ltmp6517-Lfunc_begin0 - .quad Lset27252 -.set Lset27253, Ltmp6518-Lfunc_begin0 - .quad Lset27253 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27254, Ltmp6520-Lfunc_begin0 - .quad Lset27254 -.set Lset27255, Ltmp6521-Lfunc_begin0 - .quad Lset27255 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc762: -.set Lset27256, Lfunc_begin23-Lfunc_begin0 - .quad Lset27256 -.set Lset27257, Ltmp6489-Lfunc_begin0 - .quad Lset27257 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27258, Ltmp6492-Lfunc_begin0 - .quad Lset27258 -.set Lset27259, Ltmp6513-Lfunc_begin0 - .quad Lset27259 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27260, Ltmp6515-Lfunc_begin0 - .quad Lset27260 -.set Lset27261, Ltmp6519-Lfunc_begin0 - .quad Lset27261 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc763: -.set Lset27262, Lfunc_begin24-Lfunc_begin0 - .quad Lset27262 -.set Lset27263, Ltmp6528-Lfunc_begin0 - .quad Lset27263 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27264, Ltmp6528-Lfunc_begin0 - .quad Lset27264 -.set Lset27265, Ltmp6546-Lfunc_begin0 - .quad Lset27265 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27266, Ltmp6600-Lfunc_begin0 - .quad Lset27266 -.set Lset27267, Ltmp6607-Lfunc_begin0 - .quad Lset27267 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27268, Ltmp6616-Lfunc_begin0 - .quad Lset27268 -.set Lset27269, Ltmp6617-Lfunc_begin0 - .quad Lset27269 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27270, Ltmp6617-Lfunc_begin0 - .quad Lset27270 -.set Lset27271, Ltmp6620-Lfunc_begin0 - .quad Lset27271 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc764: -.set Lset27272, Lfunc_begin24-Lfunc_begin0 - .quad Lset27272 -.set Lset27273, Ltmp6527-Lfunc_begin0 - .quad Lset27273 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27274, Ltmp6527-Lfunc_begin0 - .quad Lset27274 -.set Lset27275, Ltmp6535-Lfunc_begin0 - .quad Lset27275 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27276, Ltmp6616-Lfunc_begin0 - .quad Lset27276 -.set Lset27277, Ltmp6617-Lfunc_begin0 - .quad Lset27277 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc765: -.set Lset27278, Ltmp6524-Lfunc_begin0 - .quad Lset27278 -.set Lset27279, Ltmp6528-Lfunc_begin0 - .quad Lset27279 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27280, Ltmp6528-Lfunc_begin0 - .quad Lset27280 -.set Lset27281, Ltmp6546-Lfunc_begin0 - .quad Lset27281 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27282, Ltmp6600-Lfunc_begin0 - .quad Lset27282 -.set Lset27283, Ltmp6605-Lfunc_begin0 - .quad Lset27283 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27284, Ltmp6617-Lfunc_begin0 - .quad Lset27284 -.set Lset27285, Ltmp6620-Lfunc_begin0 - .quad Lset27285 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc766: -.set Lset27286, Ltmp6529-Lfunc_begin0 - .quad Lset27286 -.set Lset27287, Ltmp6615-Lfunc_begin0 - .quad Lset27287 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27288, Ltmp6617-Lfunc_begin0 - .quad Lset27288 -.set Lset27289, Lfunc_end24-Lfunc_begin0 - .quad Lset27289 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc767: -.set Lset27290, Ltmp6536-Lfunc_begin0 - .quad Lset27290 -.set Lset27291, Ltmp6605-Lfunc_begin0 - .quad Lset27291 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27292, Ltmp6607-Lfunc_begin0 - .quad Lset27292 -.set Lset27293, Ltmp6613-Lfunc_begin0 - .quad Lset27293 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27294, Ltmp6617-Lfunc_begin0 - .quad Lset27294 -.set Lset27295, Lfunc_end24-Lfunc_begin0 - .quad Lset27295 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc768: -.set Lset27296, Ltmp6537-Lfunc_begin0 - .quad Lset27296 -.set Lset27297, Ltmp6544-Lfunc_begin0 - .quad Lset27297 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27298, Ltmp6600-Lfunc_begin0 - .quad Lset27298 -.set Lset27299, Ltmp6604-Lfunc_begin0 - .quad Lset27299 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27300, Ltmp6617-Lfunc_begin0 - .quad Lset27300 -.set Lset27301, Ltmp6618-Lfunc_begin0 - .quad Lset27301 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc769: -.set Lset27302, Ltmp6538-Lfunc_begin0 - .quad Lset27302 -.set Lset27303, Ltmp6539-Lfunc_begin0 - .quad Lset27303 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc770: -.set Lset27304, Ltmp6541-Lfunc_begin0 - .quad Lset27304 -.set Lset27305, Ltmp6605-Lfunc_begin0 - .quad Lset27305 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27306, Ltmp6607-Lfunc_begin0 - .quad Lset27306 -.set Lset27307, Ltmp6614-Lfunc_begin0 - .quad Lset27307 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27308, Ltmp6617-Lfunc_begin0 - .quad Lset27308 -.set Lset27309, Lfunc_end24-Lfunc_begin0 - .quad Lset27309 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc771: -.set Lset27310, Ltmp6546-Lfunc_begin0 - .quad Lset27310 -.set Lset27311, Ltmp6549-Lfunc_begin0 - .quad Lset27311 - .short 3 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 112 ## -16 - .byte 159 ## DW_OP_stack_value -.set Lset27312, Ltmp6549-Lfunc_begin0 - .quad Lset27312 -.set Lset27313, Ltmp6553-Lfunc_begin0 - .quad Lset27313 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27314, Ltmp6553-Lfunc_begin0 - .quad Lset27314 -.set Lset27315, Ltmp6556-Lfunc_begin0 - .quad Lset27315 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 112 ## -16 - .byte 159 ## DW_OP_stack_value -.set Lset27316, Ltmp6556-Lfunc_begin0 - .quad Lset27316 -.set Lset27317, Ltmp6570-Lfunc_begin0 - .quad Lset27317 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27318, Ltmp6572-Lfunc_begin0 - .quad Lset27318 -.set Lset27319, Ltmp6577-Lfunc_begin0 - .quad Lset27319 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27320, Ltmp6579-Lfunc_begin0 - .quad Lset27320 -.set Lset27321, Ltmp6593-Lfunc_begin0 - .quad Lset27321 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27322, Ltmp6595-Lfunc_begin0 - .quad Lset27322 -.set Lset27323, Ltmp6597-Lfunc_begin0 - .quad Lset27323 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27324, Ltmp6599-Lfunc_begin0 - .quad Lset27324 -.set Lset27325, Ltmp6600-Lfunc_begin0 - .quad Lset27325 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27326, Ltmp6620-Lfunc_begin0 - .quad Lset27326 -.set Lset27327, Lfunc_end24-Lfunc_begin0 - .quad Lset27327 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc772: -.set Lset27328, Ltmp6547-Lfunc_begin0 - .quad Lset27328 -.set Lset27329, Lfunc_end24-Lfunc_begin0 - .quad Lset27329 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc773: -.set Lset27330, Ltmp6548-Lfunc_begin0 - .quad Lset27330 -.set Lset27331, Ltmp6600-Lfunc_begin0 - .quad Lset27331 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27332, Ltmp6607-Lfunc_begin0 - .quad Lset27332 -.set Lset27333, Ltmp6610-Lfunc_begin0 - .quad Lset27333 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27334, Ltmp6620-Lfunc_begin0 - .quad Lset27334 -.set Lset27335, Lfunc_end24-Lfunc_begin0 - .quad Lset27335 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc774: -.set Lset27336, Ltmp6552-Lfunc_begin0 - .quad Lset27336 -.set Lset27337, Ltmp6553-Lfunc_begin0 - .quad Lset27337 - .short 12 ## Loc expr size - .byte 125 ## DW_OP_breg13 - .byte 0 ## 0 - .byte 16 ## DW_OP_constu - .byte 255 ## 4294967295 - .byte 255 ## - .byte 255 ## - .byte 255 ## - .byte 15 ## - .byte 26 ## DW_OP_and - .byte 49 ## DW_OP_lit1 - .byte 28 ## DW_OP_minus - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc775: -.set Lset27338, Lfunc_begin25-Lfunc_begin0 - .quad Lset27338 -.set Lset27339, Ltmp6625-Lfunc_begin0 - .quad Lset27339 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc776: -.set Lset27340, Ltmp6624-Lfunc_begin0 - .quad Lset27340 -.set Lset27341, Ltmp6629-Lfunc_begin0 - .quad Lset27341 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc777: -.set Lset27342, Ltmp6626-Lfunc_begin0 - .quad Lset27342 -.set Lset27343, Ltmp6629-Lfunc_begin0 - .quad Lset27343 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc778: -.set Lset27344, Ltmp6627-Lfunc_begin0 - .quad Lset27344 -.set Lset27345, Ltmp6629-Lfunc_begin0 - .quad Lset27345 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc779: -.set Lset27346, Ltmp6628-Lfunc_begin0 - .quad Lset27346 -.set Lset27347, Ltmp6629-Lfunc_begin0 - .quad Lset27347 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc780: -.set Lset27348, Lfunc_begin26-Lfunc_begin0 - .quad Lset27348 -.set Lset27349, Ltmp6631-Lfunc_begin0 - .quad Lset27349 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27350, Ltmp6631-Lfunc_begin0 - .quad Lset27350 -.set Lset27351, Ltmp6661-Lfunc_begin0 - .quad Lset27351 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27352, Ltmp6662-Lfunc_begin0 - .quad Lset27352 -.set Lset27353, Lfunc_end26-Lfunc_begin0 - .quad Lset27353 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc781: -.set Lset27354, Lfunc_begin26-Lfunc_begin0 - .quad Lset27354 -.set Lset27355, Ltmp6634-Lfunc_begin0 - .quad Lset27355 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset27356, Ltmp6635-Lfunc_begin0 - .quad Lset27356 -.set Lset27357, Ltmp6638-Lfunc_begin0 - .quad Lset27357 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset27358, Ltmp6638-Lfunc_begin0 - .quad Lset27358 -.set Lset27359, Ltmp6667-Lfunc_begin0 - .quad Lset27359 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 220 ## -164 - .byte 126 ## -.set Lset27360, Ltmp6667-Lfunc_begin0 - .quad Lset27360 -.set Lset27361, Ltmp6668-Lfunc_begin0 - .quad Lset27361 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset27362, Ltmp6670-Lfunc_begin0 - .quad Lset27362 -.set Lset27363, Lfunc_end26-Lfunc_begin0 - .quad Lset27363 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 220 ## -164 - .byte 126 ## - .quad 0 - .quad 0 -Ldebug_loc782: -.set Lset27364, Lfunc_begin26-Lfunc_begin0 - .quad Lset27364 -.set Lset27365, Ltmp6645-Lfunc_begin0 - .quad Lset27365 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset27366, Ltmp6645-Lfunc_begin0 - .quad Lset27366 -.set Lset27367, Ltmp6667-Lfunc_begin0 - .quad Lset27367 - .short 3 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 216 ## -168 - .byte 126 ## -.set Lset27368, Ltmp6667-Lfunc_begin0 - .quad Lset27368 -.set Lset27369, Ltmp6669-Lfunc_begin0 - .quad Lset27369 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset27370, Ltmp6670-Lfunc_begin0 - .quad Lset27370 -.set Lset27371, Ltmp6671-Lfunc_begin0 - .quad Lset27371 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc783: -.set Lset27372, Ltmp6636-Lfunc_begin0 - .quad Lset27372 -.set Lset27373, Ltmp6644-Lfunc_begin0 - .quad Lset27373 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27374, Ltmp6667-Lfunc_begin0 - .quad Lset27374 -.set Lset27375, Ltmp6672-Lfunc_begin0 - .quad Lset27375 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc784: -.set Lset27376, Ltmp6640-Lfunc_begin0 - .quad Lset27376 -.set Lset27377, Ltmp6651-Lfunc_begin0 - .quad Lset27377 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27378, Ltmp6663-Lfunc_begin0 - .quad Lset27378 -.set Lset27379, Ltmp6664-Lfunc_begin0 - .quad Lset27379 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc785: -.set Lset27380, Ltmp6641-Lfunc_begin0 - .quad Lset27380 -.set Lset27381, Ltmp6647-Lfunc_begin0 - .quad Lset27381 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc786: -.set Lset27382, Ltmp6642-Lfunc_begin0 - .quad Lset27382 -.set Lset27383, Ltmp6648-Lfunc_begin0 - .quad Lset27383 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc787: -.set Lset27384, Ltmp6643-Lfunc_begin0 - .quad Lset27384 -.set Lset27385, Ltmp6651-Lfunc_begin0 - .quad Lset27385 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset27386, Ltmp6663-Lfunc_begin0 - .quad Lset27386 -.set Lset27387, Ltmp6664-Lfunc_begin0 - .quad Lset27387 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc788: -.set Lset27388, Ltmp6653-Lfunc_begin0 - .quad Lset27388 -.set Lset27389, Ltmp6655-Lfunc_begin0 - .quad Lset27389 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27390, Ltmp6665-Lfunc_begin0 - .quad Lset27390 -.set Lset27391, Ltmp6666-Lfunc_begin0 - .quad Lset27391 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc789: -.set Lset27392, Lfunc_begin27-Lfunc_begin0 - .quad Lset27392 -.set Lset27393, Ltmp6674-Lfunc_begin0 - .quad Lset27393 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27394, Ltmp6674-Lfunc_begin0 - .quad Lset27394 -.set Lset27395, Ltmp6689-Lfunc_begin0 - .quad Lset27395 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27396, Ltmp6691-Lfunc_begin0 - .quad Lset27396 -.set Lset27397, Lfunc_end27-Lfunc_begin0 - .quad Lset27397 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc790: -.set Lset27398, Lfunc_begin27-Lfunc_begin0 - .quad Lset27398 -.set Lset27399, Ltmp6674-Lfunc_begin0 - .quad Lset27399 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27400, Ltmp6674-Lfunc_begin0 - .quad Lset27400 -.set Lset27401, Ltmp6690-Lfunc_begin0 - .quad Lset27401 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27402, Ltmp6691-Lfunc_begin0 - .quad Lset27402 -.set Lset27403, Lfunc_end27-Lfunc_begin0 - .quad Lset27403 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc791: -.set Lset27404, Lfunc_begin27-Lfunc_begin0 - .quad Lset27404 -.set Lset27405, Ltmp6674-Lfunc_begin0 - .quad Lset27405 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27406, Ltmp6674-Lfunc_begin0 - .quad Lset27406 -.set Lset27407, Ltmp6684-Lfunc_begin0 - .quad Lset27407 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27408, Ltmp6691-Lfunc_begin0 - .quad Lset27408 -.set Lset27409, Ltmp6696-Lfunc_begin0 - .quad Lset27409 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc792: -.set Lset27410, Ltmp6673-Lfunc_begin0 - .quad Lset27410 -.set Lset27411, Ltmp6675-Lfunc_begin0 - .quad Lset27411 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27412, Ltmp6676-Lfunc_begin0 - .quad Lset27412 -.set Lset27413, Ltmp6681-Lfunc_begin0 - .quad Lset27413 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27414, Ltmp6694-Lfunc_begin0 - .quad Lset27414 -.set Lset27415, Ltmp6696-Lfunc_begin0 - .quad Lset27415 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc793: -.set Lset27416, Ltmp6676-Lfunc_begin0 - .quad Lset27416 -.set Lset27417, Ltmp6680-Lfunc_begin0 - .quad Lset27417 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27418, Ltmp6695-Lfunc_begin0 - .quad Lset27418 -.set Lset27419, Ltmp6696-Lfunc_begin0 - .quad Lset27419 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc794: -.set Lset27420, Ltmp6676-Lfunc_begin0 - .quad Lset27420 -.set Lset27421, Ltmp6680-Lfunc_begin0 - .quad Lset27421 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27422, Ltmp6691-Lfunc_begin0 - .quad Lset27422 -.set Lset27423, Ltmp6692-Lfunc_begin0 - .quad Lset27423 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27424, Ltmp6695-Lfunc_begin0 - .quad Lset27424 -.set Lset27425, Ltmp6696-Lfunc_begin0 - .quad Lset27425 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc795: -.set Lset27426, Lfunc_begin28-Lfunc_begin0 - .quad Lset27426 -.set Lset27427, Ltmp6699-Lfunc_begin0 - .quad Lset27427 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27428, Ltmp6699-Lfunc_begin0 - .quad Lset27428 -.set Lset27429, Ltmp6714-Lfunc_begin0 - .quad Lset27429 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27430, Ltmp6716-Lfunc_begin0 - .quad Lset27430 -.set Lset27431, Lfunc_end28-Lfunc_begin0 - .quad Lset27431 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc796: -.set Lset27432, Lfunc_begin28-Lfunc_begin0 - .quad Lset27432 -.set Lset27433, Ltmp6699-Lfunc_begin0 - .quad Lset27433 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27434, Ltmp6699-Lfunc_begin0 - .quad Lset27434 -.set Lset27435, Ltmp6715-Lfunc_begin0 - .quad Lset27435 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27436, Ltmp6716-Lfunc_begin0 - .quad Lset27436 -.set Lset27437, Lfunc_end28-Lfunc_begin0 - .quad Lset27437 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc797: -.set Lset27438, Lfunc_begin28-Lfunc_begin0 - .quad Lset27438 -.set Lset27439, Ltmp6699-Lfunc_begin0 - .quad Lset27439 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27440, Ltmp6699-Lfunc_begin0 - .quad Lset27440 -.set Lset27441, Ltmp6709-Lfunc_begin0 - .quad Lset27441 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27442, Ltmp6716-Lfunc_begin0 - .quad Lset27442 -.set Lset27443, Ltmp6721-Lfunc_begin0 - .quad Lset27443 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc798: -.set Lset27444, Ltmp6698-Lfunc_begin0 - .quad Lset27444 -.set Lset27445, Ltmp6700-Lfunc_begin0 - .quad Lset27445 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27446, Ltmp6701-Lfunc_begin0 - .quad Lset27446 -.set Lset27447, Ltmp6706-Lfunc_begin0 - .quad Lset27447 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27448, Ltmp6719-Lfunc_begin0 - .quad Lset27448 -.set Lset27449, Ltmp6721-Lfunc_begin0 - .quad Lset27449 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc799: -.set Lset27450, Ltmp6701-Lfunc_begin0 - .quad Lset27450 -.set Lset27451, Ltmp6705-Lfunc_begin0 - .quad Lset27451 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27452, Ltmp6720-Lfunc_begin0 - .quad Lset27452 -.set Lset27453, Ltmp6721-Lfunc_begin0 - .quad Lset27453 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc800: -.set Lset27454, Ltmp6701-Lfunc_begin0 - .quad Lset27454 -.set Lset27455, Ltmp6705-Lfunc_begin0 - .quad Lset27455 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27456, Ltmp6716-Lfunc_begin0 - .quad Lset27456 -.set Lset27457, Ltmp6717-Lfunc_begin0 - .quad Lset27457 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27458, Ltmp6720-Lfunc_begin0 - .quad Lset27458 -.set Lset27459, Ltmp6721-Lfunc_begin0 - .quad Lset27459 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc801: -.set Lset27460, Lfunc_begin29-Lfunc_begin0 - .quad Lset27460 -.set Lset27461, Ltmp6724-Lfunc_begin0 - .quad Lset27461 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27462, Ltmp6724-Lfunc_begin0 - .quad Lset27462 -.set Lset27463, Ltmp6743-Lfunc_begin0 - .quad Lset27463 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27464, Ltmp6746-Lfunc_begin0 - .quad Lset27464 -.set Lset27465, Lfunc_end29-Lfunc_begin0 - .quad Lset27465 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc802: -.set Lset27466, Lfunc_begin29-Lfunc_begin0 - .quad Lset27466 -.set Lset27467, Ltmp6724-Lfunc_begin0 - .quad Lset27467 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27468, Ltmp6724-Lfunc_begin0 - .quad Lset27468 -.set Lset27469, Lfunc_end29-Lfunc_begin0 - .quad Lset27469 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc803: -.set Lset27470, Lfunc_begin29-Lfunc_begin0 - .quad Lset27470 -.set Lset27471, Ltmp6724-Lfunc_begin0 - .quad Lset27471 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27472, Ltmp6724-Lfunc_begin0 - .quad Lset27472 -.set Lset27473, Ltmp6738-Lfunc_begin0 - .quad Lset27473 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27474, Ltmp6746-Lfunc_begin0 - .quad Lset27474 -.set Lset27475, Ltmp6748-Lfunc_begin0 - .quad Lset27475 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc804: -.set Lset27476, Lfunc_begin29-Lfunc_begin0 - .quad Lset27476 -.set Lset27477, Ltmp6724-Lfunc_begin0 - .quad Lset27477 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27478, Ltmp6724-Lfunc_begin0 - .quad Lset27478 -.set Lset27479, Ltmp6733-Lfunc_begin0 - .quad Lset27479 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset27480, Ltmp6746-Lfunc_begin0 - .quad Lset27480 -.set Lset27481, Ltmp6748-Lfunc_begin0 - .quad Lset27481 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc805: -.set Lset27482, Lfunc_begin29-Lfunc_begin0 - .quad Lset27482 -.set Lset27483, Ltmp6724-Lfunc_begin0 - .quad Lset27483 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27484, Ltmp6724-Lfunc_begin0 - .quad Lset27484 -.set Lset27485, Ltmp6744-Lfunc_begin0 - .quad Lset27485 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset27486, Ltmp6746-Lfunc_begin0 - .quad Lset27486 -.set Lset27487, Lfunc_end29-Lfunc_begin0 - .quad Lset27487 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc806: -.set Lset27488, Ltmp6723-Lfunc_begin0 - .quad Lset27488 -.set Lset27489, Ltmp6725-Lfunc_begin0 - .quad Lset27489 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27490, Ltmp6726-Lfunc_begin0 - .quad Lset27490 -.set Lset27491, Ltmp6730-Lfunc_begin0 - .quad Lset27491 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27492, Ltmp6746-Lfunc_begin0 - .quad Lset27492 -.set Lset27493, Ltmp6748-Lfunc_begin0 - .quad Lset27493 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc807: -.set Lset27494, Ltmp6726-Lfunc_begin0 - .quad Lset27494 -.set Lset27495, Ltmp6730-Lfunc_begin0 - .quad Lset27495 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27496, Ltmp6746-Lfunc_begin0 - .quad Lset27496 -.set Lset27497, Ltmp6748-Lfunc_begin0 - .quad Lset27497 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc808: -.set Lset27498, Ltmp6726-Lfunc_begin0 - .quad Lset27498 -.set Lset27499, Ltmp6745-Lfunc_begin0 - .quad Lset27499 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27500, Ltmp6746-Lfunc_begin0 - .quad Lset27500 -.set Lset27501, Lfunc_end29-Lfunc_begin0 - .quad Lset27501 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc809: -.set Lset27502, Lfunc_begin30-Lfunc_begin0 - .quad Lset27502 -.set Lset27503, Ltmp6751-Lfunc_begin0 - .quad Lset27503 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27504, Ltmp6751-Lfunc_begin0 - .quad Lset27504 -.set Lset27505, Lfunc_end30-Lfunc_begin0 - .quad Lset27505 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc810: -.set Lset27506, Lfunc_begin30-Lfunc_begin0 - .quad Lset27506 -.set Lset27507, Ltmp6759-Lfunc_begin0 - .quad Lset27507 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27508, Ltmp6759-Lfunc_begin0 - .quad Lset27508 -.set Lset27509, Ltmp6835-Lfunc_begin0 - .quad Lset27509 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 64 ## -64 -.set Lset27510, Ltmp6835-Lfunc_begin0 - .quad Lset27510 -.set Lset27511, Ltmp6836-Lfunc_begin0 - .quad Lset27511 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27512, Ltmp6837-Lfunc_begin0 - .quad Lset27512 -.set Lset27513, Ltmp6838-Lfunc_begin0 - .quad Lset27513 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc811: -.set Lset27514, Lfunc_begin30-Lfunc_begin0 - .quad Lset27514 -.set Lset27515, Ltmp6751-Lfunc_begin0 - .quad Lset27515 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27516, Ltmp6751-Lfunc_begin0 - .quad Lset27516 -.set Lset27517, Ltmp6769-Lfunc_begin0 - .quad Lset27517 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27518, Ltmp6777-Lfunc_begin0 - .quad Lset27518 -.set Lset27519, Ltmp6780-Lfunc_begin0 - .quad Lset27519 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27520, Ltmp6783-Lfunc_begin0 - .quad Lset27520 -.set Lset27521, Ltmp6784-Lfunc_begin0 - .quad Lset27521 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27522, Ltmp6835-Lfunc_begin0 - .quad Lset27522 -.set Lset27523, Lfunc_end30-Lfunc_begin0 - .quad Lset27523 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc812: -.set Lset27524, Lfunc_begin30-Lfunc_begin0 - .quad Lset27524 -.set Lset27525, Ltmp6751-Lfunc_begin0 - .quad Lset27525 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27526, Ltmp6751-Lfunc_begin0 - .quad Lset27526 -.set Lset27527, Ltmp6754-Lfunc_begin0 - .quad Lset27527 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc813: -.set Lset27528, Lfunc_begin30-Lfunc_begin0 - .quad Lset27528 -.set Lset27529, Ltmp6765-Lfunc_begin0 - .quad Lset27529 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27530, Ltmp6777-Lfunc_begin0 - .quad Lset27530 -.set Lset27531, Ltmp6780-Lfunc_begin0 - .quad Lset27531 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27532, Ltmp6783-Lfunc_begin0 - .quad Lset27532 -.set Lset27533, Ltmp6787-Lfunc_begin0 - .quad Lset27533 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27534, Ltmp6798-Lfunc_begin0 - .quad Lset27534 -.set Lset27535, Ltmp6803-Lfunc_begin0 - .quad Lset27535 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27536, Ltmp6814-Lfunc_begin0 - .quad Lset27536 -.set Lset27537, Ltmp6821-Lfunc_begin0 - .quad Lset27537 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27538, Ltmp6827-Lfunc_begin0 - .quad Lset27538 -.set Lset27539, Ltmp6829-Lfunc_begin0 - .quad Lset27539 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27540, Ltmp6835-Lfunc_begin0 - .quad Lset27540 -.set Lset27541, Ltmp6839-Lfunc_begin0 - .quad Lset27541 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc814: -.set Lset27542, Ltmp6750-Lfunc_begin0 - .quad Lset27542 -.set Lset27543, Ltmp6751-Lfunc_begin0 - .quad Lset27543 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27544, Ltmp6751-Lfunc_begin0 - .quad Lset27544 -.set Lset27545, Ltmp6754-Lfunc_begin0 - .quad Lset27545 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27546, Ltmp6755-Lfunc_begin0 - .quad Lset27546 -.set Lset27547, Ltmp6768-Lfunc_begin0 - .quad Lset27547 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27548, Ltmp6769-Lfunc_begin0 - .quad Lset27548 -.set Lset27549, Ltmp6775-Lfunc_begin0 - .quad Lset27549 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27550, Ltmp6777-Lfunc_begin0 - .quad Lset27550 -.set Lset27551, Ltmp6780-Lfunc_begin0 - .quad Lset27551 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27552, Ltmp6783-Lfunc_begin0 - .quad Lset27552 -.set Lset27553, Ltmp6785-Lfunc_begin0 - .quad Lset27553 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27554, Ltmp6835-Lfunc_begin0 - .quad Lset27554 -.set Lset27555, Lfunc_end30-Lfunc_begin0 - .quad Lset27555 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc815: -.set Lset27556, Ltmp6757-Lfunc_begin0 - .quad Lset27556 -.set Lset27557, Ltmp6781-Lfunc_begin0 - .quad Lset27557 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27558, Ltmp6783-Lfunc_begin0 - .quad Lset27558 -.set Lset27559, Ltmp6835-Lfunc_begin0 - .quad Lset27559 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27560, Ltmp6837-Lfunc_begin0 - .quad Lset27560 -.set Lset27561, Lfunc_end30-Lfunc_begin0 - .quad Lset27561 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc816: -.set Lset27562, Ltmp6760-Lfunc_begin0 - .quad Lset27562 -.set Lset27563, Ltmp6782-Lfunc_begin0 - .quad Lset27563 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 -.set Lset27564, Ltmp6783-Lfunc_begin0 - .quad Lset27564 -.set Lset27565, Ltmp6835-Lfunc_begin0 - .quad Lset27565 - .short 1 ## Loc expr size - .byte 94 ## super-register DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc817: -.set Lset27566, Ltmp6778-Lfunc_begin0 - .quad Lset27566 -.set Lset27567, Ltmp6780-Lfunc_begin0 - .quad Lset27567 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27568, Ltmp6783-Lfunc_begin0 - .quad Lset27568 -.set Lset27569, Ltmp6835-Lfunc_begin0 - .quad Lset27569 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc818: -.set Lset27570, Ltmp6786-Lfunc_begin0 - .quad Lset27570 -.set Lset27571, Ltmp6787-Lfunc_begin0 - .quad Lset27571 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27572, Ltmp6791-Lfunc_begin0 - .quad Lset27572 -.set Lset27573, Ltmp6812-Lfunc_begin0 - .quad Lset27573 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27574, Ltmp6814-Lfunc_begin0 - .quad Lset27574 -.set Lset27575, Ltmp6830-Lfunc_begin0 - .quad Lset27575 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27576, Ltmp6832-Lfunc_begin0 - .quad Lset27576 -.set Lset27577, Ltmp6835-Lfunc_begin0 - .quad Lset27577 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc819: -.set Lset27578, Ltmp6786-Lfunc_begin0 - .quad Lset27578 -.set Lset27579, Ltmp6787-Lfunc_begin0 - .quad Lset27579 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27580, Ltmp6791-Lfunc_begin0 - .quad Lset27580 -.set Lset27581, Ltmp6792-Lfunc_begin0 - .quad Lset27581 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc820: -.set Lset27582, Ltmp6786-Lfunc_begin0 - .quad Lset27582 -.set Lset27583, Ltmp6787-Lfunc_begin0 - .quad Lset27583 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27584, Ltmp6791-Lfunc_begin0 - .quad Lset27584 -.set Lset27585, Ltmp6792-Lfunc_begin0 - .quad Lset27585 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc821: -.set Lset27586, Ltmp6786-Lfunc_begin0 - .quad Lset27586 -.set Lset27587, Ltmp6787-Lfunc_begin0 - .quad Lset27587 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27588, Ltmp6791-Lfunc_begin0 - .quad Lset27588 -.set Lset27589, Ltmp6792-Lfunc_begin0 - .quad Lset27589 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc822: -.set Lset27590, Ltmp6786-Lfunc_begin0 - .quad Lset27590 -.set Lset27591, Ltmp6787-Lfunc_begin0 - .quad Lset27591 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27592, Ltmp6791-Lfunc_begin0 - .quad Lset27592 -.set Lset27593, Ltmp6792-Lfunc_begin0 - .quad Lset27593 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc823: -.set Lset27594, Ltmp6786-Lfunc_begin0 - .quad Lset27594 -.set Lset27595, Ltmp6787-Lfunc_begin0 - .quad Lset27595 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27596, Ltmp6791-Lfunc_begin0 - .quad Lset27596 -.set Lset27597, Ltmp6792-Lfunc_begin0 - .quad Lset27597 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc824: -.set Lset27598, Ltmp6804-Lfunc_begin0 - .quad Lset27598 -.set Lset27599, Ltmp6805-Lfunc_begin0 - .quad Lset27599 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc825: -.set Lset27600, Ltmp6805-Lfunc_begin0 - .quad Lset27600 -.set Lset27601, Ltmp6806-Lfunc_begin0 - .quad Lset27601 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset27602, Ltmp6806-Lfunc_begin0 - .quad Lset27602 -.set Lset27603, Lfunc_end30-Lfunc_begin0 - .quad Lset27603 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc826: -.set Lset27604, Ltmp6817-Lfunc_begin0 - .quad Lset27604 -.set Lset27605, Ltmp6819-Lfunc_begin0 - .quad Lset27605 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc827: -.set Lset27606, Ltmp6819-Lfunc_begin0 - .quad Lset27606 -.set Lset27607, Ltmp6820-Lfunc_begin0 - .quad Lset27607 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset27608, Ltmp6820-Lfunc_begin0 - .quad Lset27608 -.set Lset27609, Lfunc_end30-Lfunc_begin0 - .quad Lset27609 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 72 ## -56 - .quad 0 - .quad 0 -Ldebug_loc828: -.set Lset27610, Ltmp6826-Lfunc_begin0 - .quad Lset27610 -.set Lset27611, Ltmp6827-Lfunc_begin0 - .quad Lset27611 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc829: -.set Lset27612, Lfunc_begin31-Lfunc_begin0 - .quad Lset27612 -.set Lset27613, Ltmp6840-Lfunc_begin0 - .quad Lset27613 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27614, Ltmp6840-Lfunc_begin0 - .quad Lset27614 -.set Lset27615, Ltmp6862-Lfunc_begin0 - .quad Lset27615 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27616, Ltmp6865-Lfunc_begin0 - .quad Lset27616 -.set Lset27617, Lfunc_end31-Lfunc_begin0 - .quad Lset27617 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc830: -.set Lset27618, Lfunc_begin31-Lfunc_begin0 - .quad Lset27618 -.set Lset27619, Ltmp6840-Lfunc_begin0 - .quad Lset27619 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27620, Ltmp6840-Lfunc_begin0 - .quad Lset27620 -.set Lset27621, Ltmp6863-Lfunc_begin0 - .quad Lset27621 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27622, Ltmp6865-Lfunc_begin0 - .quad Lset27622 -.set Lset27623, Lfunc_end31-Lfunc_begin0 - .quad Lset27623 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc831: -.set Lset27624, Lfunc_begin31-Lfunc_begin0 - .quad Lset27624 -.set Lset27625, Ltmp6840-Lfunc_begin0 - .quad Lset27625 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset27626, Ltmp6840-Lfunc_begin0 - .quad Lset27626 -.set Lset27627, Ltmp6861-Lfunc_begin0 - .quad Lset27627 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset27628, Ltmp6865-Lfunc_begin0 - .quad Lset27628 -.set Lset27629, Lfunc_end31-Lfunc_begin0 - .quad Lset27629 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc832: -.set Lset27630, Lfunc_begin31-Lfunc_begin0 - .quad Lset27630 -.set Lset27631, Ltmp6840-Lfunc_begin0 - .quad Lset27631 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27632, Ltmp6840-Lfunc_begin0 - .quad Lset27632 -.set Lset27633, Ltmp6864-Lfunc_begin0 - .quad Lset27633 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27634, Ltmp6865-Lfunc_begin0 - .quad Lset27634 -.set Lset27635, Lfunc_end31-Lfunc_begin0 - .quad Lset27635 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc833: -.set Lset27636, Lfunc_begin31-Lfunc_begin0 - .quad Lset27636 -.set Lset27637, Ltmp6844-Lfunc_begin0 - .quad Lset27637 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc834: -.set Lset27638, Ltmp6840-Lfunc_begin0 - .quad Lset27638 -.set Lset27639, Ltmp6841-Lfunc_begin0 - .quad Lset27639 - .short 4 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 32 ## 32 - .byte 6 ## DW_OP_deref - .byte 159 ## DW_OP_stack_value -.set Lset27640, Ltmp6841-Lfunc_begin0 - .quad Lset27640 -.set Lset27641, Ltmp6842-Lfunc_begin0 - .quad Lset27641 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27642, Ltmp6845-Lfunc_begin0 - .quad Lset27642 -.set Lset27643, Ltmp6857-Lfunc_begin0 - .quad Lset27643 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27644, Ltmp6866-Lfunc_begin0 - .quad Lset27644 -.set Lset27645, Ltmp6867-Lfunc_begin0 - .quad Lset27645 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc835: -.set Lset27646, Ltmp6854-Lfunc_begin0 - .quad Lset27646 -.set Lset27647, Ltmp6856-Lfunc_begin0 - .quad Lset27647 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc836: -.set Lset27648, Ltmp6854-Lfunc_begin0 - .quad Lset27648 -.set Lset27649, Ltmp6856-Lfunc_begin0 - .quad Lset27649 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc837: -.set Lset27650, Ltmp6855-Lfunc_begin0 - .quad Lset27650 -.set Lset27651, Ltmp6857-Lfunc_begin0 - .quad Lset27651 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc838: -.set Lset27652, Ltmp6855-Lfunc_begin0 - .quad Lset27652 -.set Lset27653, Ltmp6857-Lfunc_begin0 - .quad Lset27653 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc839: -.set Lset27654, Lfunc_begin32-Lfunc_begin0 - .quad Lset27654 -.set Lset27655, Ltmp6869-Lfunc_begin0 - .quad Lset27655 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27656, Ltmp6869-Lfunc_begin0 - .quad Lset27656 -.set Lset27657, Ltmp6910-Lfunc_begin0 - .quad Lset27657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27658, Ltmp6911-Lfunc_begin0 - .quad Lset27658 -.set Lset27659, Lfunc_end32-Lfunc_begin0 - .quad Lset27659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc840: -.set Lset27660, Lfunc_begin32-Lfunc_begin0 - .quad Lset27660 -.set Lset27661, Ltmp6869-Lfunc_begin0 - .quad Lset27661 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27662, Ltmp6869-Lfunc_begin0 - .quad Lset27662 -.set Lset27663, Ltmp6909-Lfunc_begin0 - .quad Lset27663 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27664, Ltmp6911-Lfunc_begin0 - .quad Lset27664 -.set Lset27665, Lfunc_end32-Lfunc_begin0 - .quad Lset27665 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc841: -.set Lset27666, Lfunc_begin32-Lfunc_begin0 - .quad Lset27666 -.set Lset27667, Ltmp6888-Lfunc_begin0 - .quad Lset27667 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27668, Ltmp6894-Lfunc_begin0 - .quad Lset27668 -.set Lset27669, Ltmp6902-Lfunc_begin0 - .quad Lset27669 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27670, Ltmp6912-Lfunc_begin0 - .quad Lset27670 -.set Lset27671, Ltmp6914-Lfunc_begin0 - .quad Lset27671 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27672, Ltmp6915-Lfunc_begin0 - .quad Lset27672 -.set Lset27673, Ltmp6918-Lfunc_begin0 - .quad Lset27673 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc842: -.set Lset27674, Lfunc_begin32-Lfunc_begin0 - .quad Lset27674 -.set Lset27675, Ltmp6891-Lfunc_begin0 - .quad Lset27675 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27676, Ltmp6894-Lfunc_begin0 - .quad Lset27676 -.set Lset27677, Ltmp6899-Lfunc_begin0 - .quad Lset27677 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27678, Ltmp6915-Lfunc_begin0 - .quad Lset27678 -.set Lset27679, Ltmp6917-Lfunc_begin0 - .quad Lset27679 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc843: -.set Lset27680, Lfunc_begin32-Lfunc_begin0 - .quad Lset27680 -.set Lset27681, Ltmp6872-Lfunc_begin0 - .quad Lset27681 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc844: -.set Lset27682, Ltmp6869-Lfunc_begin0 - .quad Lset27682 -.set Lset27683, Ltmp6870-Lfunc_begin0 - .quad Lset27683 - .short 4 ## Loc expr size - .byte 126 ## DW_OP_breg14 - .byte 32 ## 32 - .byte 6 ## DW_OP_deref - .byte 159 ## DW_OP_stack_value -.set Lset27684, Ltmp6870-Lfunc_begin0 - .quad Lset27684 -.set Lset27685, Ltmp6908-Lfunc_begin0 - .quad Lset27685 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset27686, Ltmp6911-Lfunc_begin0 - .quad Lset27686 -.set Lset27687, Lfunc_end32-Lfunc_begin0 - .quad Lset27687 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc845: -.set Lset27688, Ltmp6871-Lfunc_begin0 - .quad Lset27688 -.set Lset27689, Ltmp6892-Lfunc_begin0 - .quad Lset27689 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27690, Ltmp6894-Lfunc_begin0 - .quad Lset27690 -.set Lset27691, Ltmp6902-Lfunc_begin0 - .quad Lset27691 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27692, Ltmp6912-Lfunc_begin0 - .quad Lset27692 -.set Lset27693, Ltmp6913-Lfunc_begin0 - .quad Lset27693 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27694, Ltmp6915-Lfunc_begin0 - .quad Lset27694 -.set Lset27695, Ltmp6916-Lfunc_begin0 - .quad Lset27695 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc846: -.set Lset27696, Ltmp6871-Lfunc_begin0 - .quad Lset27696 -.set Lset27697, Ltmp6892-Lfunc_begin0 - .quad Lset27697 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc847: -.set Lset27698, Ltmp6871-Lfunc_begin0 - .quad Lset27698 -.set Lset27699, Ltmp6894-Lfunc_begin0 - .quad Lset27699 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc848: -.set Lset27700, Ltmp6872-Lfunc_begin0 - .quad Lset27700 -.set Lset27701, Ltmp6889-Lfunc_begin0 - .quad Lset27701 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc849: -.set Lset27702, Ltmp6872-Lfunc_begin0 - .quad Lset27702 -.set Lset27703, Ltmp6889-Lfunc_begin0 - .quad Lset27703 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset27704, Ltmp6894-Lfunc_begin0 - .quad Lset27704 -.set Lset27705, Ltmp6902-Lfunc_begin0 - .quad Lset27705 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset27706, Ltmp6912-Lfunc_begin0 - .quad Lset27706 -.set Lset27707, Ltmp6919-Lfunc_begin0 - .quad Lset27707 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc850: -.set Lset27708, Ltmp6872-Lfunc_begin0 - .quad Lset27708 -.set Lset27709, Ltmp6874-Lfunc_begin0 - .quad Lset27709 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc851: -.set Lset27710, Ltmp6875-Lfunc_begin0 - .quad Lset27710 -.set Lset27711, Ltmp6879-Lfunc_begin0 - .quad Lset27711 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset27712, Ltmp6879-Lfunc_begin0 - .quad Lset27712 -.set Lset27713, Ltmp6882-Lfunc_begin0 - .quad Lset27713 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27714, Ltmp6884-Lfunc_begin0 - .quad Lset27714 -.set Lset27715, Ltmp6886-Lfunc_begin0 - .quad Lset27715 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc852: -.set Lset27716, Ltmp6877-Lfunc_begin0 - .quad Lset27716 -.set Lset27717, Ltmp6878-Lfunc_begin0 - .quad Lset27717 - .short 1 ## Loc expr size - .byte 90 ## DW_OP_reg10 - .quad 0 - .quad 0 -Ldebug_loc853: -.set Lset27718, Ltmp6881-Lfunc_begin0 - .quad Lset27718 -.set Lset27719, Ltmp6883-Lfunc_begin0 - .quad Lset27719 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27720, Ltmp6885-Lfunc_begin0 - .quad Lset27720 -.set Lset27721, Ltmp6887-Lfunc_begin0 - .quad Lset27721 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc854: -.set Lset27722, Ltmp6888-Lfunc_begin0 - .quad Lset27722 -.set Lset27723, Ltmp6892-Lfunc_begin0 - .quad Lset27723 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc855: -.set Lset27724, Lfunc_begin33-Lfunc_begin0 - .quad Lset27724 -.set Lset27725, Ltmp6930-Lfunc_begin0 - .quad Lset27725 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27726, Ltmp6943-Lfunc_begin0 - .quad Lset27726 -.set Lset27727, Ltmp6949-Lfunc_begin0 - .quad Lset27727 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc856: -.set Lset27728, Lfunc_begin33-Lfunc_begin0 - .quad Lset27728 -.set Lset27729, Ltmp6930-Lfunc_begin0 - .quad Lset27729 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27730, Ltmp6943-Lfunc_begin0 - .quad Lset27730 -.set Lset27731, Ltmp6946-Lfunc_begin0 - .quad Lset27731 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27732, Ltmp6946-Lfunc_begin0 - .quad Lset27732 -.set Lset27733, Ltmp6951-Lfunc_begin0 - .quad Lset27733 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc857: -.set Lset27734, Lfunc_begin33-Lfunc_begin0 - .quad Lset27734 -.set Lset27735, Ltmp6922-Lfunc_begin0 - .quad Lset27735 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc858: -.set Lset27736, Lfunc_begin33-Lfunc_begin0 - .quad Lset27736 -.set Lset27737, Ltmp6930-Lfunc_begin0 - .quad Lset27737 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27738, Ltmp6943-Lfunc_begin0 - .quad Lset27738 -.set Lset27739, Ltmp6948-Lfunc_begin0 - .quad Lset27739 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27740, Ltmp6948-Lfunc_begin0 - .quad Lset27740 -.set Lset27741, Lfunc_end33-Lfunc_begin0 - .quad Lset27741 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 84 ## -44 - .quad 0 - .quad 0 -Ldebug_loc859: -.set Lset27742, Lfunc_begin33-Lfunc_begin0 - .quad Lset27742 -.set Lset27743, Ltmp6924-Lfunc_begin0 - .quad Lset27743 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27744, Ltmp6924-Lfunc_begin0 - .quad Lset27744 -.set Lset27745, Ltmp6927-Lfunc_begin0 - .quad Lset27745 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset27746, Ltmp6927-Lfunc_begin0 - .quad Lset27746 -.set Lset27747, Ltmp6943-Lfunc_begin0 - .quad Lset27747 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27748, Ltmp6943-Lfunc_begin0 - .quad Lset27748 -.set Lset27749, Ltmp6954-Lfunc_begin0 - .quad Lset27749 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset27750, Ltmp6954-Lfunc_begin0 - .quad Lset27750 -.set Lset27751, Ltmp6959-Lfunc_begin0 - .quad Lset27751 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 -.set Lset27752, Ltmp6972-Lfunc_begin0 - .quad Lset27752 -.set Lset27753, Ltmp6974-Lfunc_begin0 - .quad Lset27753 - .short 1 ## Loc expr size - .byte 88 ## super-register DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc860: -.set Lset27754, Ltmp6921-Lfunc_begin0 - .quad Lset27754 -.set Lset27755, Ltmp6932-Lfunc_begin0 - .quad Lset27755 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27756, Ltmp6943-Lfunc_begin0 - .quad Lset27756 -.set Lset27757, Ltmp6947-Lfunc_begin0 - .quad Lset27757 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27758, Ltmp6951-Lfunc_begin0 - .quad Lset27758 -.set Lset27759, Ltmp6956-Lfunc_begin0 - .quad Lset27759 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc861: -.set Lset27760, Ltmp6923-Lfunc_begin0 - .quad Lset27760 -.set Lset27761, Ltmp6924-Lfunc_begin0 - .quad Lset27761 - .short 1 ## Loc expr size - .byte 83 ## super-register DW_OP_reg3 -.set Lset27762, Ltmp6924-Lfunc_begin0 - .quad Lset27762 -.set Lset27763, Ltmp6971-Lfunc_begin0 - .quad Lset27763 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 -.set Lset27764, Ltmp6972-Lfunc_begin0 - .quad Lset27764 -.set Lset27765, Lfunc_end33-Lfunc_begin0 - .quad Lset27765 - .short 1 ## Loc expr size - .byte 92 ## super-register DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc862: -.set Lset27766, Ltmp6928-Lfunc_begin0 - .quad Lset27766 -.set Lset27767, Ltmp6943-Lfunc_begin0 - .quad Lset27767 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 -.set Lset27768, Ltmp6952-Lfunc_begin0 - .quad Lset27768 -.set Lset27769, Ltmp6974-Lfunc_begin0 - .quad Lset27769 - .short 1 ## Loc expr size - .byte 91 ## DW_OP_reg11 - .quad 0 - .quad 0 -Ldebug_loc863: -.set Lset27770, Ltmp6928-Lfunc_begin0 - .quad Lset27770 -.set Lset27771, Ltmp6934-Lfunc_begin0 - .quad Lset27771 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset27772, Ltmp6934-Lfunc_begin0 - .quad Lset27772 -.set Lset27773, Ltmp6937-Lfunc_begin0 - .quad Lset27773 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27774, Ltmp6939-Lfunc_begin0 - .quad Lset27774 -.set Lset27775, Ltmp6941-Lfunc_begin0 - .quad Lset27775 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27776, Ltmp6954-Lfunc_begin0 - .quad Lset27776 -.set Lset27777, Ltmp6956-Lfunc_begin0 - .quad Lset27777 - .short 3 ## Loc expr size - .byte 17 ## DW_OP_consts - .byte 0 ## 0 - .byte 159 ## DW_OP_stack_value -.set Lset27778, Ltmp6956-Lfunc_begin0 - .quad Lset27778 -.set Lset27779, Ltmp6960-Lfunc_begin0 - .quad Lset27779 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset27780, Ltmp6972-Lfunc_begin0 - .quad Lset27780 -.set Lset27781, Ltmp6973-Lfunc_begin0 - .quad Lset27781 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc864: -.set Lset27782, Lfunc_begin34-Lfunc_begin0 - .quad Lset27782 -.set Lset27783, Ltmp6978-Lfunc_begin0 - .quad Lset27783 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 -.set Lset27784, Ltmp6982-Lfunc_begin0 - .quad Lset27784 -.set Lset27785, Ltmp6983-Lfunc_begin0 - .quad Lset27785 - .short 1 ## Loc expr size - .byte 84 ## super-register DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc865: -.set Lset27786, Lfunc_begin34-Lfunc_begin0 - .quad Lset27786 -.set Lset27787, Ltmp6978-Lfunc_begin0 - .quad Lset27787 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 -.set Lset27788, Ltmp6982-Lfunc_begin0 - .quad Lset27788 -.set Lset27789, Ltmp6983-Lfunc_begin0 - .quad Lset27789 - .short 1 ## Loc expr size - .byte 81 ## super-register DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc866: -.set Lset27790, Ltmp6976-Lfunc_begin0 - .quad Lset27790 -.set Lset27791, Ltmp6980-Lfunc_begin0 - .quad Lset27791 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27792, Ltmp6982-Lfunc_begin0 - .quad Lset27792 -.set Lset27793, Ltmp6983-Lfunc_begin0 - .quad Lset27793 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc867: -.set Lset27794, Lfunc_begin35-Lfunc_begin0 - .quad Lset27794 -.set Lset27795, Ltmp6994-Lfunc_begin0 - .quad Lset27795 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27796, Ltmp6994-Lfunc_begin0 - .quad Lset27796 -.set Lset27797, Ltmp7007-Lfunc_begin0 - .quad Lset27797 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27798, Ltmp7009-Lfunc_begin0 - .quad Lset27798 -.set Lset27799, Lfunc_end35-Lfunc_begin0 - .quad Lset27799 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc868: -.set Lset27800, Lfunc_begin35-Lfunc_begin0 - .quad Lset27800 -.set Lset27801, Ltmp6994-Lfunc_begin0 - .quad Lset27801 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27802, Ltmp6994-Lfunc_begin0 - .quad Lset27802 -.set Lset27803, Ltmp7006-Lfunc_begin0 - .quad Lset27803 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27804, Ltmp7009-Lfunc_begin0 - .quad Lset27804 -.set Lset27805, Lfunc_end35-Lfunc_begin0 - .quad Lset27805 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc869: -.set Lset27806, Lfunc_begin35-Lfunc_begin0 - .quad Lset27806 -.set Lset27807, Ltmp6994-Lfunc_begin0 - .quad Lset27807 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27808, Ltmp6994-Lfunc_begin0 - .quad Lset27808 -.set Lset27809, Ltmp6997-Lfunc_begin0 - .quad Lset27809 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27810, Ltmp7009-Lfunc_begin0 - .quad Lset27810 -.set Lset27811, Ltmp7011-Lfunc_begin0 - .quad Lset27811 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc870: -.set Lset27812, Lfunc_begin35-Lfunc_begin0 - .quad Lset27812 -.set Lset27813, Ltmp6994-Lfunc_begin0 - .quad Lset27813 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27814, Ltmp6994-Lfunc_begin0 - .quad Lset27814 -.set Lset27815, Ltmp7008-Lfunc_begin0 - .quad Lset27815 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27816, Ltmp7009-Lfunc_begin0 - .quad Lset27816 -.set Lset27817, Lfunc_end35-Lfunc_begin0 - .quad Lset27817 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc871: -.set Lset27818, Ltmp6997-Lfunc_begin0 - .quad Lset27818 -.set Lset27819, Ltmp7002-Lfunc_begin0 - .quad Lset27819 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset27820, Ltmp7010-Lfunc_begin0 - .quad Lset27820 -.set Lset27821, Lfunc_end35-Lfunc_begin0 - .quad Lset27821 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 96 ## -32 - .quad 0 - .quad 0 -Ldebug_loc872: -.set Lset27822, Ltmp6999-Lfunc_begin0 - .quad Lset27822 -.set Lset27823, Ltmp7005-Lfunc_begin0 - .quad Lset27823 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc873: -.set Lset27824, Ltmp7000-Lfunc_begin0 - .quad Lset27824 -.set Lset27825, Ltmp7003-Lfunc_begin0 - .quad Lset27825 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc874: -.set Lset27826, Lfunc_begin36-Lfunc_begin0 - .quad Lset27826 -.set Lset27827, Ltmp7016-Lfunc_begin0 - .quad Lset27827 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27828, Ltmp7016-Lfunc_begin0 - .quad Lset27828 -.set Lset27829, Ltmp7027-Lfunc_begin0 - .quad Lset27829 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27830, Ltmp7029-Lfunc_begin0 - .quad Lset27830 -.set Lset27831, Lfunc_end36-Lfunc_begin0 - .quad Lset27831 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc875: -.set Lset27832, Lfunc_begin36-Lfunc_begin0 - .quad Lset27832 -.set Lset27833, Ltmp7016-Lfunc_begin0 - .quad Lset27833 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27834, Ltmp7016-Lfunc_begin0 - .quad Lset27834 -.set Lset27835, Ltmp7026-Lfunc_begin0 - .quad Lset27835 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27836, Ltmp7029-Lfunc_begin0 - .quad Lset27836 -.set Lset27837, Lfunc_end36-Lfunc_begin0 - .quad Lset27837 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc876: -.set Lset27838, Lfunc_begin36-Lfunc_begin0 - .quad Lset27838 -.set Lset27839, Ltmp7019-Lfunc_begin0 - .quad Lset27839 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27840, Ltmp7029-Lfunc_begin0 - .quad Lset27840 -.set Lset27841, Ltmp7031-Lfunc_begin0 - .quad Lset27841 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc877: -.set Lset27842, Lfunc_begin36-Lfunc_begin0 - .quad Lset27842 -.set Lset27843, Ltmp7016-Lfunc_begin0 - .quad Lset27843 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27844, Ltmp7016-Lfunc_begin0 - .quad Lset27844 -.set Lset27845, Ltmp7028-Lfunc_begin0 - .quad Lset27845 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 -.set Lset27846, Ltmp7029-Lfunc_begin0 - .quad Lset27846 -.set Lset27847, Lfunc_end36-Lfunc_begin0 - .quad Lset27847 - .short 1 ## Loc expr size - .byte 95 ## super-register DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc878: -.set Lset27848, Ltmp7018-Lfunc_begin0 - .quad Lset27848 -.set Lset27849, Ltmp7019-Lfunc_begin0 - .quad Lset27849 - .short 2 ## Loc expr size - .byte 113 ## DW_OP_breg1 - .byte 0 ## 0 -.set Lset27850, Ltmp7030-Lfunc_begin0 - .quad Lset27850 -.set Lset27851, Lfunc_end36-Lfunc_begin0 - .quad Lset27851 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 96 ## -32 - .quad 0 - .quad 0 -Ldebug_loc879: -.set Lset27852, Ltmp7020-Lfunc_begin0 - .quad Lset27852 -.set Lset27853, Ltmp7025-Lfunc_begin0 - .quad Lset27853 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc880: -.set Lset27854, Ltmp7021-Lfunc_begin0 - .quad Lset27854 -.set Lset27855, Ltmp7023-Lfunc_begin0 - .quad Lset27855 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc881: -.set Lset27856, Lfunc_begin37-Lfunc_begin0 - .quad Lset27856 -.set Lset27857, Ltmp7053-Lfunc_begin0 - .quad Lset27857 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc882: -.set Lset27858, Lfunc_begin37-Lfunc_begin0 - .quad Lset27858 -.set Lset27859, Ltmp7039-Lfunc_begin0 - .quad Lset27859 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27860, Ltmp7050-Lfunc_begin0 - .quad Lset27860 -.set Lset27861, Ltmp7051-Lfunc_begin0 - .quad Lset27861 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc883: -.set Lset27862, Lfunc_begin37-Lfunc_begin0 - .quad Lset27862 -.set Lset27863, Ltmp7055-Lfunc_begin0 - .quad Lset27863 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc884: -.set Lset27864, Lfunc_begin37-Lfunc_begin0 - .quad Lset27864 -.set Lset27865, Ltmp7041-Lfunc_begin0 - .quad Lset27865 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27866, Ltmp7050-Lfunc_begin0 - .quad Lset27866 -.set Lset27867, Ltmp7052-Lfunc_begin0 - .quad Lset27867 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc885: -.set Lset27868, Ltmp7036-Lfunc_begin0 - .quad Lset27868 -.set Lset27869, Ltmp7046-Lfunc_begin0 - .quad Lset27869 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27870, Ltmp7052-Lfunc_begin0 - .quad Lset27870 -.set Lset27871, Ltmp7055-Lfunc_begin0 - .quad Lset27871 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc886: -.set Lset27872, Ltmp7039-Lfunc_begin0 - .quad Lset27872 -.set Lset27873, Ltmp7050-Lfunc_begin0 - .quad Lset27873 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27874, Ltmp7052-Lfunc_begin0 - .quad Lset27874 -.set Lset27875, Ltmp7054-Lfunc_begin0 - .quad Lset27875 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc887: -.set Lset27876, Ltmp7040-Lfunc_begin0 - .quad Lset27876 -.set Lset27877, Ltmp7043-Lfunc_begin0 - .quad Lset27877 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc888: -.set Lset27878, Lfunc_begin38-Lfunc_begin0 - .quad Lset27878 -.set Lset27879, Ltmp7074-Lfunc_begin0 - .quad Lset27879 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc889: -.set Lset27880, Lfunc_begin38-Lfunc_begin0 - .quad Lset27880 -.set Lset27881, Ltmp7060-Lfunc_begin0 - .quad Lset27881 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27882, Ltmp7071-Lfunc_begin0 - .quad Lset27882 -.set Lset27883, Ltmp7072-Lfunc_begin0 - .quad Lset27883 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc890: -.set Lset27884, Lfunc_begin38-Lfunc_begin0 - .quad Lset27884 -.set Lset27885, Ltmp7076-Lfunc_begin0 - .quad Lset27885 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc891: -.set Lset27886, Lfunc_begin38-Lfunc_begin0 - .quad Lset27886 -.set Lset27887, Ltmp7062-Lfunc_begin0 - .quad Lset27887 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27888, Ltmp7071-Lfunc_begin0 - .quad Lset27888 -.set Lset27889, Ltmp7073-Lfunc_begin0 - .quad Lset27889 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc892: -.set Lset27890, Ltmp7057-Lfunc_begin0 - .quad Lset27890 -.set Lset27891, Ltmp7067-Lfunc_begin0 - .quad Lset27891 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27892, Ltmp7073-Lfunc_begin0 - .quad Lset27892 -.set Lset27893, Ltmp7076-Lfunc_begin0 - .quad Lset27893 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc893: -.set Lset27894, Ltmp7060-Lfunc_begin0 - .quad Lset27894 -.set Lset27895, Ltmp7071-Lfunc_begin0 - .quad Lset27895 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27896, Ltmp7073-Lfunc_begin0 - .quad Lset27896 -.set Lset27897, Ltmp7075-Lfunc_begin0 - .quad Lset27897 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc894: -.set Lset27898, Ltmp7061-Lfunc_begin0 - .quad Lset27898 -.set Lset27899, Ltmp7064-Lfunc_begin0 - .quad Lset27899 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc895: -.set Lset27900, Lfunc_begin39-Lfunc_begin0 - .quad Lset27900 -.set Lset27901, Ltmp7095-Lfunc_begin0 - .quad Lset27901 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc896: -.set Lset27902, Lfunc_begin39-Lfunc_begin0 - .quad Lset27902 -.set Lset27903, Ltmp7081-Lfunc_begin0 - .quad Lset27903 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27904, Ltmp7092-Lfunc_begin0 - .quad Lset27904 -.set Lset27905, Ltmp7093-Lfunc_begin0 - .quad Lset27905 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc897: -.set Lset27906, Lfunc_begin39-Lfunc_begin0 - .quad Lset27906 -.set Lset27907, Ltmp7097-Lfunc_begin0 - .quad Lset27907 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc898: -.set Lset27908, Lfunc_begin39-Lfunc_begin0 - .quad Lset27908 -.set Lset27909, Ltmp7083-Lfunc_begin0 - .quad Lset27909 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 -.set Lset27910, Ltmp7092-Lfunc_begin0 - .quad Lset27910 -.set Lset27911, Ltmp7094-Lfunc_begin0 - .quad Lset27911 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc899: -.set Lset27912, Ltmp7078-Lfunc_begin0 - .quad Lset27912 -.set Lset27913, Ltmp7088-Lfunc_begin0 - .quad Lset27913 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27914, Ltmp7094-Lfunc_begin0 - .quad Lset27914 -.set Lset27915, Ltmp7097-Lfunc_begin0 - .quad Lset27915 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc900: -.set Lset27916, Ltmp7081-Lfunc_begin0 - .quad Lset27916 -.set Lset27917, Ltmp7092-Lfunc_begin0 - .quad Lset27917 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27918, Ltmp7094-Lfunc_begin0 - .quad Lset27918 -.set Lset27919, Ltmp7096-Lfunc_begin0 - .quad Lset27919 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc901: -.set Lset27920, Ltmp7082-Lfunc_begin0 - .quad Lset27920 -.set Lset27921, Ltmp7085-Lfunc_begin0 - .quad Lset27921 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc902: -.set Lset27922, Lfunc_begin40-Lfunc_begin0 - .quad Lset27922 -.set Lset27923, Ltmp7112-Lfunc_begin0 - .quad Lset27923 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc903: -.set Lset27924, Lfunc_begin40-Lfunc_begin0 - .quad Lset27924 -.set Lset27925, Ltmp7099-Lfunc_begin0 - .quad Lset27925 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc904: -.set Lset27926, Lfunc_begin40-Lfunc_begin0 - .quad Lset27926 -.set Lset27927, Ltmp7114-Lfunc_begin0 - .quad Lset27927 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc905: -.set Lset27928, Lfunc_begin40-Lfunc_begin0 - .quad Lset27928 -.set Lset27929, Ltmp7101-Lfunc_begin0 - .quad Lset27929 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc906: -.set Lset27930, Lfunc_begin40-Lfunc_begin0 - .quad Lset27930 -.set Lset27931, Ltmp7106-Lfunc_begin0 - .quad Lset27931 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27932, Ltmp7110-Lfunc_begin0 - .quad Lset27932 -.set Lset27933, Ltmp7114-Lfunc_begin0 - .quad Lset27933 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc907: -.set Lset27934, Ltmp7099-Lfunc_begin0 - .quad Lset27934 -.set Lset27935, Ltmp7113-Lfunc_begin0 - .quad Lset27935 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc908: -.set Lset27936, Ltmp7100-Lfunc_begin0 - .quad Lset27936 -.set Lset27937, Ltmp7103-Lfunc_begin0 - .quad Lset27937 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc909: -.set Lset27938, Lfunc_begin41-Lfunc_begin0 - .quad Lset27938 -.set Lset27939, Ltmp7118-Lfunc_begin0 - .quad Lset27939 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27940, Ltmp7118-Lfunc_begin0 - .quad Lset27940 -.set Lset27941, Ltmp7137-Lfunc_begin0 - .quad Lset27941 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27942, Ltmp7140-Lfunc_begin0 - .quad Lset27942 -.set Lset27943, Lfunc_end41-Lfunc_begin0 - .quad Lset27943 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc910: -.set Lset27944, Lfunc_begin41-Lfunc_begin0 - .quad Lset27944 -.set Lset27945, Ltmp7118-Lfunc_begin0 - .quad Lset27945 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27946, Ltmp7118-Lfunc_begin0 - .quad Lset27946 -.set Lset27947, Ltmp7138-Lfunc_begin0 - .quad Lset27947 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27948, Ltmp7140-Lfunc_begin0 - .quad Lset27948 -.set Lset27949, Lfunc_end41-Lfunc_begin0 - .quad Lset27949 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc911: -.set Lset27950, Lfunc_begin41-Lfunc_begin0 - .quad Lset27950 -.set Lset27951, Ltmp7118-Lfunc_begin0 - .quad Lset27951 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27952, Ltmp7118-Lfunc_begin0 - .quad Lset27952 -.set Lset27953, Ltmp7139-Lfunc_begin0 - .quad Lset27953 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset27954, Ltmp7140-Lfunc_begin0 - .quad Lset27954 -.set Lset27955, Lfunc_end41-Lfunc_begin0 - .quad Lset27955 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc912: -.set Lset27956, Lfunc_begin41-Lfunc_begin0 - .quad Lset27956 -.set Lset27957, Ltmp7118-Lfunc_begin0 - .quad Lset27957 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset27958, Ltmp7118-Lfunc_begin0 - .quad Lset27958 -.set Lset27959, Ltmp7136-Lfunc_begin0 - .quad Lset27959 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27960, Ltmp7140-Lfunc_begin0 - .quad Lset27960 -.set Lset27961, Lfunc_end41-Lfunc_begin0 - .quad Lset27961 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc913: -.set Lset27962, Ltmp7116-Lfunc_begin0 - .quad Lset27962 -.set Lset27963, Ltmp7117-Lfunc_begin0 - .quad Lset27963 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27964, Ltmp7117-Lfunc_begin0 - .quad Lset27964 -.set Lset27965, Ltmp7119-Lfunc_begin0 - .quad Lset27965 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc914: -.set Lset27966, Ltmp7116-Lfunc_begin0 - .quad Lset27966 -.set Lset27967, Ltmp7117-Lfunc_begin0 - .quad Lset27967 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27968, Ltmp7117-Lfunc_begin0 - .quad Lset27968 -.set Lset27969, Ltmp7119-Lfunc_begin0 - .quad Lset27969 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc915: -.set Lset27970, Ltmp7122-Lfunc_begin0 - .quad Lset27970 -.set Lset27971, Ltmp7123-Lfunc_begin0 - .quad Lset27971 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc916: -.set Lset27972, Ltmp7125-Lfunc_begin0 - .quad Lset27972 -.set Lset27973, Ltmp7127-Lfunc_begin0 - .quad Lset27973 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -.set Lset27974, Ltmp7128-Lfunc_begin0 - .quad Lset27974 -.set Lset27975, Lfunc_end41-Lfunc_begin0 - .quad Lset27975 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc917: -.set Lset27976, Ltmp7132-Lfunc_begin0 - .quad Lset27976 -.set Lset27977, Ltmp7133-Lfunc_begin0 - .quad Lset27977 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset27978, Ltmp7133-Lfunc_begin0 - .quad Lset27978 -.set Lset27979, Ltmp7134-Lfunc_begin0 - .quad Lset27979 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset27980, Ltmp7141-Lfunc_begin0 - .quad Lset27980 -.set Lset27981, Lfunc_end41-Lfunc_begin0 - .quad Lset27981 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc918: -.set Lset27982, Lfunc_begin42-Lfunc_begin0 - .quad Lset27982 -.set Lset27983, Ltmp7150-Lfunc_begin0 - .quad Lset27983 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset27984, Ltmp7150-Lfunc_begin0 - .quad Lset27984 -.set Lset27985, Ltmp7170-Lfunc_begin0 - .quad Lset27985 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset27986, Ltmp7173-Lfunc_begin0 - .quad Lset27986 -.set Lset27987, Lfunc_end42-Lfunc_begin0 - .quad Lset27987 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc919: -.set Lset27988, Lfunc_begin42-Lfunc_begin0 - .quad Lset27988 -.set Lset27989, Ltmp7150-Lfunc_begin0 - .quad Lset27989 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset27990, Ltmp7150-Lfunc_begin0 - .quad Lset27990 -.set Lset27991, Ltmp7171-Lfunc_begin0 - .quad Lset27991 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset27992, Ltmp7173-Lfunc_begin0 - .quad Lset27992 -.set Lset27993, Lfunc_end42-Lfunc_begin0 - .quad Lset27993 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc920: -.set Lset27994, Lfunc_begin42-Lfunc_begin0 - .quad Lset27994 -.set Lset27995, Ltmp7150-Lfunc_begin0 - .quad Lset27995 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset27996, Ltmp7150-Lfunc_begin0 - .quad Lset27996 -.set Lset27997, Ltmp7169-Lfunc_begin0 - .quad Lset27997 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset27998, Ltmp7173-Lfunc_begin0 - .quad Lset27998 -.set Lset27999, Lfunc_end42-Lfunc_begin0 - .quad Lset27999 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc921: -.set Lset28000, Lfunc_begin42-Lfunc_begin0 - .quad Lset28000 -.set Lset28001, Ltmp7150-Lfunc_begin0 - .quad Lset28001 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28002, Ltmp7150-Lfunc_begin0 - .quad Lset28002 -.set Lset28003, Ltmp7172-Lfunc_begin0 - .quad Lset28003 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28004, Ltmp7173-Lfunc_begin0 - .quad Lset28004 -.set Lset28005, Lfunc_end42-Lfunc_begin0 - .quad Lset28005 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc922: -.set Lset28006, Ltmp7148-Lfunc_begin0 - .quad Lset28006 -.set Lset28007, Ltmp7149-Lfunc_begin0 - .quad Lset28007 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28008, Ltmp7149-Lfunc_begin0 - .quad Lset28008 -.set Lset28009, Ltmp7151-Lfunc_begin0 - .quad Lset28009 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc923: -.set Lset28010, Ltmp7148-Lfunc_begin0 - .quad Lset28010 -.set Lset28011, Ltmp7149-Lfunc_begin0 - .quad Lset28011 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28012, Ltmp7149-Lfunc_begin0 - .quad Lset28012 -.set Lset28013, Ltmp7151-Lfunc_begin0 - .quad Lset28013 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc924: -.set Lset28014, Ltmp7154-Lfunc_begin0 - .quad Lset28014 -.set Lset28015, Ltmp7155-Lfunc_begin0 - .quad Lset28015 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc925: -.set Lset28016, Ltmp7157-Lfunc_begin0 - .quad Lset28016 -.set Lset28017, Ltmp7159-Lfunc_begin0 - .quad Lset28017 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset28018, Ltmp7160-Lfunc_begin0 - .quad Lset28018 -.set Lset28019, Ltmp7166-Lfunc_begin0 - .quad Lset28019 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset28020, Ltmp7166-Lfunc_begin0 - .quad Lset28020 -.set Lset28021, Ltmp7167-Lfunc_begin0 - .quad Lset28021 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 - .quad 0 - .quad 0 -Ldebug_loc926: -.set Lset28022, Ltmp7164-Lfunc_begin0 - .quad Lset28022 -.set Lset28023, Ltmp7165-Lfunc_begin0 - .quad Lset28023 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -.set Lset28024, Ltmp7165-Lfunc_begin0 - .quad Lset28024 -.set Lset28025, Ltmp7168-Lfunc_begin0 - .quad Lset28025 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset28026, Ltmp7174-Lfunc_begin0 - .quad Lset28026 -.set Lset28027, Lfunc_end42-Lfunc_begin0 - .quad Lset28027 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc927: -.set Lset28028, Lfunc_begin43-Lfunc_begin0 - .quad Lset28028 -.set Lset28029, Ltmp7183-Lfunc_begin0 - .quad Lset28029 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28030, Ltmp7183-Lfunc_begin0 - .quad Lset28030 -.set Lset28031, Ltmp7202-Lfunc_begin0 - .quad Lset28031 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28032, Ltmp7205-Lfunc_begin0 - .quad Lset28032 -.set Lset28033, Lfunc_end43-Lfunc_begin0 - .quad Lset28033 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc928: -.set Lset28034, Lfunc_begin43-Lfunc_begin0 - .quad Lset28034 -.set Lset28035, Ltmp7183-Lfunc_begin0 - .quad Lset28035 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28036, Ltmp7183-Lfunc_begin0 - .quad Lset28036 -.set Lset28037, Ltmp7203-Lfunc_begin0 - .quad Lset28037 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28038, Ltmp7205-Lfunc_begin0 - .quad Lset28038 -.set Lset28039, Lfunc_end43-Lfunc_begin0 - .quad Lset28039 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc929: -.set Lset28040, Lfunc_begin43-Lfunc_begin0 - .quad Lset28040 -.set Lset28041, Ltmp7183-Lfunc_begin0 - .quad Lset28041 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28042, Ltmp7183-Lfunc_begin0 - .quad Lset28042 -.set Lset28043, Ltmp7204-Lfunc_begin0 - .quad Lset28043 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28044, Ltmp7205-Lfunc_begin0 - .quad Lset28044 -.set Lset28045, Lfunc_end43-Lfunc_begin0 - .quad Lset28045 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc930: -.set Lset28046, Lfunc_begin43-Lfunc_begin0 - .quad Lset28046 -.set Lset28047, Ltmp7183-Lfunc_begin0 - .quad Lset28047 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28048, Ltmp7183-Lfunc_begin0 - .quad Lset28048 -.set Lset28049, Ltmp7201-Lfunc_begin0 - .quad Lset28049 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28050, Ltmp7205-Lfunc_begin0 - .quad Lset28050 -.set Lset28051, Lfunc_end43-Lfunc_begin0 - .quad Lset28051 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc931: -.set Lset28052, Ltmp7181-Lfunc_begin0 - .quad Lset28052 -.set Lset28053, Ltmp7182-Lfunc_begin0 - .quad Lset28053 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28054, Ltmp7182-Lfunc_begin0 - .quad Lset28054 -.set Lset28055, Ltmp7184-Lfunc_begin0 - .quad Lset28055 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc932: -.set Lset28056, Ltmp7181-Lfunc_begin0 - .quad Lset28056 -.set Lset28057, Ltmp7182-Lfunc_begin0 - .quad Lset28057 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28058, Ltmp7182-Lfunc_begin0 - .quad Lset28058 -.set Lset28059, Ltmp7184-Lfunc_begin0 - .quad Lset28059 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc933: -.set Lset28060, Ltmp7187-Lfunc_begin0 - .quad Lset28060 -.set Lset28061, Ltmp7188-Lfunc_begin0 - .quad Lset28061 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc934: -.set Lset28062, Ltmp7190-Lfunc_begin0 - .quad Lset28062 -.set Lset28063, Ltmp7192-Lfunc_begin0 - .quad Lset28063 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -.set Lset28064, Ltmp7193-Lfunc_begin0 - .quad Lset28064 -.set Lset28065, Lfunc_end43-Lfunc_begin0 - .quad Lset28065 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc935: -.set Lset28066, Ltmp7197-Lfunc_begin0 - .quad Lset28066 -.set Lset28067, Ltmp7198-Lfunc_begin0 - .quad Lset28067 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset28068, Ltmp7198-Lfunc_begin0 - .quad Lset28068 -.set Lset28069, Ltmp7199-Lfunc_begin0 - .quad Lset28069 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset28070, Ltmp7206-Lfunc_begin0 - .quad Lset28070 -.set Lset28071, Lfunc_end43-Lfunc_begin0 - .quad Lset28071 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc936: -.set Lset28072, Lfunc_begin44-Lfunc_begin0 - .quad Lset28072 -.set Lset28073, Ltmp7215-Lfunc_begin0 - .quad Lset28073 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28074, Ltmp7215-Lfunc_begin0 - .quad Lset28074 -.set Lset28075, Ltmp7225-Lfunc_begin0 - .quad Lset28075 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28076, Ltmp7228-Lfunc_begin0 - .quad Lset28076 -.set Lset28077, Lfunc_end44-Lfunc_begin0 - .quad Lset28077 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc937: -.set Lset28078, Lfunc_begin44-Lfunc_begin0 - .quad Lset28078 -.set Lset28079, Ltmp7215-Lfunc_begin0 - .quad Lset28079 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28080, Ltmp7215-Lfunc_begin0 - .quad Lset28080 -.set Lset28081, Ltmp7226-Lfunc_begin0 - .quad Lset28081 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28082, Ltmp7228-Lfunc_begin0 - .quad Lset28082 -.set Lset28083, Lfunc_end44-Lfunc_begin0 - .quad Lset28083 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc938: -.set Lset28084, Lfunc_begin44-Lfunc_begin0 - .quad Lset28084 -.set Lset28085, Ltmp7215-Lfunc_begin0 - .quad Lset28085 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28086, Ltmp7215-Lfunc_begin0 - .quad Lset28086 -.set Lset28087, Ltmp7224-Lfunc_begin0 - .quad Lset28087 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28088, Ltmp7228-Lfunc_begin0 - .quad Lset28088 -.set Lset28089, Lfunc_end44-Lfunc_begin0 - .quad Lset28089 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc939: -.set Lset28090, Lfunc_begin44-Lfunc_begin0 - .quad Lset28090 -.set Lset28091, Ltmp7215-Lfunc_begin0 - .quad Lset28091 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28092, Ltmp7215-Lfunc_begin0 - .quad Lset28092 -.set Lset28093, Ltmp7227-Lfunc_begin0 - .quad Lset28093 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28094, Ltmp7228-Lfunc_begin0 - .quad Lset28094 -.set Lset28095, Lfunc_end44-Lfunc_begin0 - .quad Lset28095 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc940: -.set Lset28096, Ltmp7213-Lfunc_begin0 - .quad Lset28096 -.set Lset28097, Ltmp7214-Lfunc_begin0 - .quad Lset28097 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28098, Ltmp7214-Lfunc_begin0 - .quad Lset28098 -.set Lset28099, Ltmp7216-Lfunc_begin0 - .quad Lset28099 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc941: -.set Lset28100, Ltmp7216-Lfunc_begin0 - .quad Lset28100 -.set Lset28101, Ltmp7217-Lfunc_begin0 - .quad Lset28101 - .short 2 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 0 ## 0 -.set Lset28102, Ltmp7221-Lfunc_begin0 - .quad Lset28102 -.set Lset28103, Ltmp7222-Lfunc_begin0 - .quad Lset28103 - .short 1 ## Loc expr size - .byte 98 ## DW_OP_reg18 -.set Lset28104, Ltmp7229-Lfunc_begin0 - .quad Lset28104 -.set Lset28105, Lfunc_end44-Lfunc_begin0 - .quad Lset28105 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc942: -.set Lset28106, Ltmp7219-Lfunc_begin0 - .quad Lset28106 -.set Lset28107, Ltmp7220-Lfunc_begin0 - .quad Lset28107 - .short 2 ## Loc expr size - .byte 127 ## DW_OP_breg15 - .byte 0 ## 0 -.set Lset28108, Ltmp7220-Lfunc_begin0 - .quad Lset28108 -.set Lset28109, Ltmp7223-Lfunc_begin0 - .quad Lset28109 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset28110, Ltmp7232-Lfunc_begin0 - .quad Lset28110 -.set Lset28111, Lfunc_end44-Lfunc_begin0 - .quad Lset28111 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc943: -.set Lset28112, Lfunc_begin45-Lfunc_begin0 - .quad Lset28112 -.set Lset28113, Ltmp7241-Lfunc_begin0 - .quad Lset28113 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28114, Ltmp7241-Lfunc_begin0 - .quad Lset28114 -.set Lset28115, Ltmp7271-Lfunc_begin0 - .quad Lset28115 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28116, Ltmp7274-Lfunc_begin0 - .quad Lset28116 -.set Lset28117, Lfunc_end45-Lfunc_begin0 - .quad Lset28117 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc944: -.set Lset28118, Lfunc_begin45-Lfunc_begin0 - .quad Lset28118 -.set Lset28119, Ltmp7241-Lfunc_begin0 - .quad Lset28119 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28120, Ltmp7241-Lfunc_begin0 - .quad Lset28120 -.set Lset28121, Ltmp7272-Lfunc_begin0 - .quad Lset28121 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28122, Ltmp7274-Lfunc_begin0 - .quad Lset28122 -.set Lset28123, Lfunc_end45-Lfunc_begin0 - .quad Lset28123 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc945: -.set Lset28124, Lfunc_begin45-Lfunc_begin0 - .quad Lset28124 -.set Lset28125, Ltmp7241-Lfunc_begin0 - .quad Lset28125 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28126, Ltmp7241-Lfunc_begin0 - .quad Lset28126 -.set Lset28127, Ltmp7270-Lfunc_begin0 - .quad Lset28127 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28128, Ltmp7274-Lfunc_begin0 - .quad Lset28128 -.set Lset28129, Lfunc_end45-Lfunc_begin0 - .quad Lset28129 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc946: -.set Lset28130, Lfunc_begin45-Lfunc_begin0 - .quad Lset28130 -.set Lset28131, Ltmp7241-Lfunc_begin0 - .quad Lset28131 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28132, Ltmp7241-Lfunc_begin0 - .quad Lset28132 -.set Lset28133, Ltmp7273-Lfunc_begin0 - .quad Lset28133 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28134, Ltmp7274-Lfunc_begin0 - .quad Lset28134 -.set Lset28135, Lfunc_end45-Lfunc_begin0 - .quad Lset28135 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc947: -.set Lset28136, Ltmp7239-Lfunc_begin0 - .quad Lset28136 -.set Lset28137, Ltmp7240-Lfunc_begin0 - .quad Lset28137 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28138, Ltmp7240-Lfunc_begin0 - .quad Lset28138 -.set Lset28139, Ltmp7242-Lfunc_begin0 - .quad Lset28139 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc948: -.set Lset28140, Ltmp7243-Lfunc_begin0 - .quad Lset28140 -.set Lset28141, Ltmp7244-Lfunc_begin0 - .quad Lset28141 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28142, Ltmp7249-Lfunc_begin0 - .quad Lset28142 -.set Lset28143, Ltmp7252-Lfunc_begin0 - .quad Lset28143 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28144, Ltmp7255-Lfunc_begin0 - .quad Lset28144 -.set Lset28145, Ltmp7263-Lfunc_begin0 - .quad Lset28145 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset28146, Ltmp7263-Lfunc_begin0 - .quad Lset28146 -.set Lset28147, Ltmp7266-Lfunc_begin0 - .quad Lset28147 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc949: -.set Lset28148, Ltmp7247-Lfunc_begin0 - .quad Lset28148 -.set Lset28149, Ltmp7254-Lfunc_begin0 - .quad Lset28149 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28150, Ltmp7258-Lfunc_begin0 - .quad Lset28150 -.set Lset28151, Ltmp7262-Lfunc_begin0 - .quad Lset28151 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 -.set Lset28152, Ltmp7262-Lfunc_begin0 - .quad Lset28152 -.set Lset28153, Ltmp7269-Lfunc_begin0 - .quad Lset28153 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc950: -.set Lset28154, Ltmp7249-Lfunc_begin0 - .quad Lset28154 -.set Lset28155, Ltmp7252-Lfunc_begin0 - .quad Lset28155 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28156, Ltmp7263-Lfunc_begin0 - .quad Lset28156 -.set Lset28157, Ltmp7266-Lfunc_begin0 - .quad Lset28157 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc951: -.set Lset28158, Ltmp7249-Lfunc_begin0 - .quad Lset28158 -.set Lset28159, Ltmp7254-Lfunc_begin0 - .quad Lset28159 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28160, Ltmp7263-Lfunc_begin0 - .quad Lset28160 -.set Lset28161, Ltmp7268-Lfunc_begin0 - .quad Lset28161 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc952: -.set Lset28162, Lfunc_begin46-Lfunc_begin0 - .quad Lset28162 -.set Lset28163, Ltmp7279-Lfunc_begin0 - .quad Lset28163 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28164, Ltmp7279-Lfunc_begin0 - .quad Lset28164 -.set Lset28165, Ltmp7310-Lfunc_begin0 - .quad Lset28165 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28166, Ltmp7313-Lfunc_begin0 - .quad Lset28166 -.set Lset28167, Lfunc_end46-Lfunc_begin0 - .quad Lset28167 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc953: -.set Lset28168, Lfunc_begin46-Lfunc_begin0 - .quad Lset28168 -.set Lset28169, Ltmp7279-Lfunc_begin0 - .quad Lset28169 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28170, Ltmp7279-Lfunc_begin0 - .quad Lset28170 -.set Lset28171, Ltmp7311-Lfunc_begin0 - .quad Lset28171 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28172, Ltmp7313-Lfunc_begin0 - .quad Lset28172 -.set Lset28173, Lfunc_end46-Lfunc_begin0 - .quad Lset28173 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc954: -.set Lset28174, Lfunc_begin46-Lfunc_begin0 - .quad Lset28174 -.set Lset28175, Ltmp7279-Lfunc_begin0 - .quad Lset28175 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28176, Ltmp7279-Lfunc_begin0 - .quad Lset28176 -.set Lset28177, Ltmp7309-Lfunc_begin0 - .quad Lset28177 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28178, Ltmp7313-Lfunc_begin0 - .quad Lset28178 -.set Lset28179, Lfunc_end46-Lfunc_begin0 - .quad Lset28179 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc955: -.set Lset28180, Lfunc_begin46-Lfunc_begin0 - .quad Lset28180 -.set Lset28181, Ltmp7279-Lfunc_begin0 - .quad Lset28181 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28182, Ltmp7279-Lfunc_begin0 - .quad Lset28182 -.set Lset28183, Ltmp7312-Lfunc_begin0 - .quad Lset28183 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28184, Ltmp7313-Lfunc_begin0 - .quad Lset28184 -.set Lset28185, Lfunc_end46-Lfunc_begin0 - .quad Lset28185 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc956: -.set Lset28186, Ltmp7277-Lfunc_begin0 - .quad Lset28186 -.set Lset28187, Ltmp7278-Lfunc_begin0 - .quad Lset28187 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28188, Ltmp7278-Lfunc_begin0 - .quad Lset28188 -.set Lset28189, Ltmp7280-Lfunc_begin0 - .quad Lset28189 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc957: -.set Lset28190, Ltmp7281-Lfunc_begin0 - .quad Lset28190 -.set Lset28191, Ltmp7282-Lfunc_begin0 - .quad Lset28191 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28192, Ltmp7287-Lfunc_begin0 - .quad Lset28192 -.set Lset28193, Ltmp7290-Lfunc_begin0 - .quad Lset28193 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28194, Ltmp7293-Lfunc_begin0 - .quad Lset28194 -.set Lset28195, Ltmp7301-Lfunc_begin0 - .quad Lset28195 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset28196, Ltmp7301-Lfunc_begin0 - .quad Lset28196 -.set Lset28197, Ltmp7305-Lfunc_begin0 - .quad Lset28197 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc958: -.set Lset28198, Ltmp7285-Lfunc_begin0 - .quad Lset28198 -.set Lset28199, Ltmp7292-Lfunc_begin0 - .quad Lset28199 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28200, Ltmp7296-Lfunc_begin0 - .quad Lset28200 -.set Lset28201, Ltmp7300-Lfunc_begin0 - .quad Lset28201 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 -.set Lset28202, Ltmp7300-Lfunc_begin0 - .quad Lset28202 -.set Lset28203, Ltmp7308-Lfunc_begin0 - .quad Lset28203 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc959: -.set Lset28204, Ltmp7287-Lfunc_begin0 - .quad Lset28204 -.set Lset28205, Ltmp7290-Lfunc_begin0 - .quad Lset28205 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28206, Ltmp7301-Lfunc_begin0 - .quad Lset28206 -.set Lset28207, Ltmp7305-Lfunc_begin0 - .quad Lset28207 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc960: -.set Lset28208, Lfunc_begin47-Lfunc_begin0 - .quad Lset28208 -.set Lset28209, Ltmp7318-Lfunc_begin0 - .quad Lset28209 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28210, Ltmp7318-Lfunc_begin0 - .quad Lset28210 -.set Lset28211, Ltmp7329-Lfunc_begin0 - .quad Lset28211 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28212, Ltmp7332-Lfunc_begin0 - .quad Lset28212 -.set Lset28213, Lfunc_end47-Lfunc_begin0 - .quad Lset28213 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc961: -.set Lset28214, Lfunc_begin47-Lfunc_begin0 - .quad Lset28214 -.set Lset28215, Ltmp7318-Lfunc_begin0 - .quad Lset28215 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28216, Ltmp7318-Lfunc_begin0 - .quad Lset28216 -.set Lset28217, Ltmp7330-Lfunc_begin0 - .quad Lset28217 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28218, Ltmp7332-Lfunc_begin0 - .quad Lset28218 -.set Lset28219, Lfunc_end47-Lfunc_begin0 - .quad Lset28219 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc962: -.set Lset28220, Lfunc_begin47-Lfunc_begin0 - .quad Lset28220 -.set Lset28221, Ltmp7318-Lfunc_begin0 - .quad Lset28221 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28222, Ltmp7318-Lfunc_begin0 - .quad Lset28222 -.set Lset28223, Ltmp7328-Lfunc_begin0 - .quad Lset28223 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28224, Ltmp7332-Lfunc_begin0 - .quad Lset28224 -.set Lset28225, Lfunc_end47-Lfunc_begin0 - .quad Lset28225 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc963: -.set Lset28226, Lfunc_begin47-Lfunc_begin0 - .quad Lset28226 -.set Lset28227, Ltmp7318-Lfunc_begin0 - .quad Lset28227 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28228, Ltmp7318-Lfunc_begin0 - .quad Lset28228 -.set Lset28229, Ltmp7331-Lfunc_begin0 - .quad Lset28229 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28230, Ltmp7332-Lfunc_begin0 - .quad Lset28230 -.set Lset28231, Lfunc_end47-Lfunc_begin0 - .quad Lset28231 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc964: -.set Lset28232, Ltmp7316-Lfunc_begin0 - .quad Lset28232 -.set Lset28233, Ltmp7317-Lfunc_begin0 - .quad Lset28233 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28234, Ltmp7317-Lfunc_begin0 - .quad Lset28234 -.set Lset28235, Ltmp7319-Lfunc_begin0 - .quad Lset28235 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc965: -.set Lset28236, Ltmp7320-Lfunc_begin0 - .quad Lset28236 -.set Lset28237, Ltmp7321-Lfunc_begin0 - .quad Lset28237 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28238, Ltmp7333-Lfunc_begin0 - .quad Lset28238 -.set Lset28239, Lfunc_end47-Lfunc_begin0 - .quad Lset28239 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc966: -.set Lset28240, Ltmp7324-Lfunc_begin0 - .quad Lset28240 -.set Lset28241, Ltmp7326-Lfunc_begin0 - .quad Lset28241 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28242, Ltmp7336-Lfunc_begin0 - .quad Lset28242 -.set Lset28243, Lfunc_end47-Lfunc_begin0 - .quad Lset28243 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc967: -.set Lset28244, Lfunc_begin48-Lfunc_begin0 - .quad Lset28244 -.set Lset28245, Ltmp7345-Lfunc_begin0 - .quad Lset28245 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28246, Ltmp7345-Lfunc_begin0 - .quad Lset28246 -.set Lset28247, Ltmp7356-Lfunc_begin0 - .quad Lset28247 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28248, Ltmp7359-Lfunc_begin0 - .quad Lset28248 -.set Lset28249, Lfunc_end48-Lfunc_begin0 - .quad Lset28249 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc968: -.set Lset28250, Lfunc_begin48-Lfunc_begin0 - .quad Lset28250 -.set Lset28251, Ltmp7345-Lfunc_begin0 - .quad Lset28251 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28252, Ltmp7345-Lfunc_begin0 - .quad Lset28252 -.set Lset28253, Ltmp7357-Lfunc_begin0 - .quad Lset28253 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28254, Ltmp7359-Lfunc_begin0 - .quad Lset28254 -.set Lset28255, Lfunc_end48-Lfunc_begin0 - .quad Lset28255 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc969: -.set Lset28256, Lfunc_begin48-Lfunc_begin0 - .quad Lset28256 -.set Lset28257, Ltmp7345-Lfunc_begin0 - .quad Lset28257 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28258, Ltmp7345-Lfunc_begin0 - .quad Lset28258 -.set Lset28259, Ltmp7355-Lfunc_begin0 - .quad Lset28259 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28260, Ltmp7359-Lfunc_begin0 - .quad Lset28260 -.set Lset28261, Lfunc_end48-Lfunc_begin0 - .quad Lset28261 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc970: -.set Lset28262, Lfunc_begin48-Lfunc_begin0 - .quad Lset28262 -.set Lset28263, Ltmp7345-Lfunc_begin0 - .quad Lset28263 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28264, Ltmp7345-Lfunc_begin0 - .quad Lset28264 -.set Lset28265, Ltmp7358-Lfunc_begin0 - .quad Lset28265 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28266, Ltmp7359-Lfunc_begin0 - .quad Lset28266 -.set Lset28267, Lfunc_end48-Lfunc_begin0 - .quad Lset28267 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc971: -.set Lset28268, Ltmp7343-Lfunc_begin0 - .quad Lset28268 -.set Lset28269, Ltmp7344-Lfunc_begin0 - .quad Lset28269 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28270, Ltmp7344-Lfunc_begin0 - .quad Lset28270 -.set Lset28271, Ltmp7346-Lfunc_begin0 - .quad Lset28271 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc972: -.set Lset28272, Ltmp7347-Lfunc_begin0 - .quad Lset28272 -.set Lset28273, Ltmp7348-Lfunc_begin0 - .quad Lset28273 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28274, Ltmp7360-Lfunc_begin0 - .quad Lset28274 -.set Lset28275, Lfunc_end48-Lfunc_begin0 - .quad Lset28275 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc973: -.set Lset28276, Ltmp7351-Lfunc_begin0 - .quad Lset28276 -.set Lset28277, Ltmp7353-Lfunc_begin0 - .quad Lset28277 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28278, Ltmp7363-Lfunc_begin0 - .quad Lset28278 -.set Lset28279, Lfunc_end48-Lfunc_begin0 - .quad Lset28279 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc974: -.set Lset28280, Lfunc_begin49-Lfunc_begin0 - .quad Lset28280 -.set Lset28281, Ltmp7372-Lfunc_begin0 - .quad Lset28281 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28282, Ltmp7372-Lfunc_begin0 - .quad Lset28282 -.set Lset28283, Ltmp7383-Lfunc_begin0 - .quad Lset28283 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28284, Ltmp7386-Lfunc_begin0 - .quad Lset28284 -.set Lset28285, Lfunc_end49-Lfunc_begin0 - .quad Lset28285 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc975: -.set Lset28286, Lfunc_begin49-Lfunc_begin0 - .quad Lset28286 -.set Lset28287, Ltmp7372-Lfunc_begin0 - .quad Lset28287 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28288, Ltmp7372-Lfunc_begin0 - .quad Lset28288 -.set Lset28289, Ltmp7384-Lfunc_begin0 - .quad Lset28289 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28290, Ltmp7386-Lfunc_begin0 - .quad Lset28290 -.set Lset28291, Lfunc_end49-Lfunc_begin0 - .quad Lset28291 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc976: -.set Lset28292, Lfunc_begin49-Lfunc_begin0 - .quad Lset28292 -.set Lset28293, Ltmp7372-Lfunc_begin0 - .quad Lset28293 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28294, Ltmp7372-Lfunc_begin0 - .quad Lset28294 -.set Lset28295, Ltmp7382-Lfunc_begin0 - .quad Lset28295 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28296, Ltmp7386-Lfunc_begin0 - .quad Lset28296 -.set Lset28297, Lfunc_end49-Lfunc_begin0 - .quad Lset28297 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc977: -.set Lset28298, Lfunc_begin49-Lfunc_begin0 - .quad Lset28298 -.set Lset28299, Ltmp7372-Lfunc_begin0 - .quad Lset28299 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28300, Ltmp7372-Lfunc_begin0 - .quad Lset28300 -.set Lset28301, Ltmp7385-Lfunc_begin0 - .quad Lset28301 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28302, Ltmp7386-Lfunc_begin0 - .quad Lset28302 -.set Lset28303, Lfunc_end49-Lfunc_begin0 - .quad Lset28303 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc978: -.set Lset28304, Ltmp7370-Lfunc_begin0 - .quad Lset28304 -.set Lset28305, Ltmp7371-Lfunc_begin0 - .quad Lset28305 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28306, Ltmp7371-Lfunc_begin0 - .quad Lset28306 -.set Lset28307, Ltmp7373-Lfunc_begin0 - .quad Lset28307 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc979: -.set Lset28308, Ltmp7374-Lfunc_begin0 - .quad Lset28308 -.set Lset28309, Ltmp7375-Lfunc_begin0 - .quad Lset28309 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28310, Ltmp7387-Lfunc_begin0 - .quad Lset28310 -.set Lset28311, Lfunc_end49-Lfunc_begin0 - .quad Lset28311 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc980: -.set Lset28312, Ltmp7378-Lfunc_begin0 - .quad Lset28312 -.set Lset28313, Ltmp7380-Lfunc_begin0 - .quad Lset28313 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28314, Ltmp7390-Lfunc_begin0 - .quad Lset28314 -.set Lset28315, Lfunc_end49-Lfunc_begin0 - .quad Lset28315 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 88 ## -40 - .quad 0 - .quad 0 -Ldebug_loc981: -.set Lset28316, Lfunc_begin50-Lfunc_begin0 - .quad Lset28316 -.set Lset28317, Ltmp7402-Lfunc_begin0 - .quad Lset28317 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28318, Ltmp7407-Lfunc_begin0 - .quad Lset28318 -.set Lset28319, Ltmp7408-Lfunc_begin0 - .quad Lset28319 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28320, Ltmp7408-Lfunc_begin0 - .quad Lset28320 -.set Lset28321, Lfunc_end50-Lfunc_begin0 - .quad Lset28321 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc982: -.set Lset28322, Lfunc_begin50-Lfunc_begin0 - .quad Lset28322 -.set Lset28323, Ltmp7398-Lfunc_begin0 - .quad Lset28323 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28324, Ltmp7398-Lfunc_begin0 - .quad Lset28324 -.set Lset28325, Ltmp7406-Lfunc_begin0 - .quad Lset28325 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28326, Ltmp7407-Lfunc_begin0 - .quad Lset28326 -.set Lset28327, Lfunc_end50-Lfunc_begin0 - .quad Lset28327 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc983: -.set Lset28328, Lfunc_begin50-Lfunc_begin0 - .quad Lset28328 -.set Lset28329, Ltmp7398-Lfunc_begin0 - .quad Lset28329 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28330, Ltmp7398-Lfunc_begin0 - .quad Lset28330 -.set Lset28331, Ltmp7405-Lfunc_begin0 - .quad Lset28331 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28332, Ltmp7407-Lfunc_begin0 - .quad Lset28332 -.set Lset28333, Lfunc_end50-Lfunc_begin0 - .quad Lset28333 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc984: -.set Lset28334, Ltmp7397-Lfunc_begin0 - .quad Lset28334 -.set Lset28335, Ltmp7398-Lfunc_begin0 - .quad Lset28335 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28336, Ltmp7398-Lfunc_begin0 - .quad Lset28336 -.set Lset28337, Ltmp7400-Lfunc_begin0 - .quad Lset28337 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc985: -.set Lset28338, Ltmp7401-Lfunc_begin0 - .quad Lset28338 -.set Lset28339, Ltmp7403-Lfunc_begin0 - .quad Lset28339 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28340, Ltmp7409-Lfunc_begin0 - .quad Lset28340 -.set Lset28341, Lfunc_end50-Lfunc_begin0 - .quad Lset28341 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 96 ## -32 - .quad 0 - .quad 0 -Ldebug_loc986: -.set Lset28342, Lfunc_begin51-Lfunc_begin0 - .quad Lset28342 -.set Lset28343, Ltmp7449-Lfunc_begin0 - .quad Lset28343 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28344, Ltmp7453-Lfunc_begin0 - .quad Lset28344 -.set Lset28345, Ltmp7454-Lfunc_begin0 - .quad Lset28345 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28346, Ltmp7458-Lfunc_begin0 - .quad Lset28346 -.set Lset28347, Ltmp7459-Lfunc_begin0 - .quad Lset28347 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28348, Ltmp7463-Lfunc_begin0 - .quad Lset28348 -.set Lset28349, Ltmp7464-Lfunc_begin0 - .quad Lset28349 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28350, Ltmp7468-Lfunc_begin0 - .quad Lset28350 -.set Lset28351, Ltmp7469-Lfunc_begin0 - .quad Lset28351 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28352, Ltmp7473-Lfunc_begin0 - .quad Lset28352 -.set Lset28353, Ltmp7474-Lfunc_begin0 - .quad Lset28353 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28354, Ltmp7478-Lfunc_begin0 - .quad Lset28354 -.set Lset28355, Ltmp7479-Lfunc_begin0 - .quad Lset28355 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28356, Ltmp7481-Lfunc_begin0 - .quad Lset28356 -.set Lset28357, Ltmp7483-Lfunc_begin0 - .quad Lset28357 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc987: -.set Lset28358, Lfunc_begin51-Lfunc_begin0 - .quad Lset28358 -.set Lset28359, Ltmp7450-Lfunc_begin0 - .quad Lset28359 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28360, Ltmp7453-Lfunc_begin0 - .quad Lset28360 -.set Lset28361, Ltmp7455-Lfunc_begin0 - .quad Lset28361 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28362, Ltmp7458-Lfunc_begin0 - .quad Lset28362 -.set Lset28363, Ltmp7460-Lfunc_begin0 - .quad Lset28363 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28364, Ltmp7463-Lfunc_begin0 - .quad Lset28364 -.set Lset28365, Ltmp7465-Lfunc_begin0 - .quad Lset28365 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28366, Ltmp7468-Lfunc_begin0 - .quad Lset28366 -.set Lset28367, Ltmp7470-Lfunc_begin0 - .quad Lset28367 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28368, Ltmp7473-Lfunc_begin0 - .quad Lset28368 -.set Lset28369, Ltmp7475-Lfunc_begin0 - .quad Lset28369 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28370, Ltmp7478-Lfunc_begin0 - .quad Lset28370 -.set Lset28371, Ltmp7480-Lfunc_begin0 - .quad Lset28371 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28372, Ltmp7481-Lfunc_begin0 - .quad Lset28372 -.set Lset28373, Ltmp7483-Lfunc_begin0 - .quad Lset28373 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc988: -.set Lset28374, Lfunc_begin51-Lfunc_begin0 - .quad Lset28374 -.set Lset28375, Ltmp7438-Lfunc_begin0 - .quad Lset28375 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28376, Ltmp7444-Lfunc_begin0 - .quad Lset28376 -.set Lset28377, Ltmp7452-Lfunc_begin0 - .quad Lset28377 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28378, Ltmp7453-Lfunc_begin0 - .quad Lset28378 -.set Lset28379, Ltmp7457-Lfunc_begin0 - .quad Lset28379 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28380, Ltmp7458-Lfunc_begin0 - .quad Lset28380 -.set Lset28381, Ltmp7462-Lfunc_begin0 - .quad Lset28381 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28382, Ltmp7463-Lfunc_begin0 - .quad Lset28382 -.set Lset28383, Ltmp7467-Lfunc_begin0 - .quad Lset28383 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28384, Ltmp7468-Lfunc_begin0 - .quad Lset28384 -.set Lset28385, Ltmp7472-Lfunc_begin0 - .quad Lset28385 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28386, Ltmp7473-Lfunc_begin0 - .quad Lset28386 -.set Lset28387, Ltmp7477-Lfunc_begin0 - .quad Lset28387 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28388, Ltmp7481-Lfunc_begin0 - .quad Lset28388 -.set Lset28389, Ltmp7482-Lfunc_begin0 - .quad Lset28389 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc989: -.set Lset28390, Lfunc_begin51-Lfunc_begin0 - .quad Lset28390 -.set Lset28391, Ltmp7440-Lfunc_begin0 - .quad Lset28391 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28392, Ltmp7444-Lfunc_begin0 - .quad Lset28392 -.set Lset28393, Ltmp7451-Lfunc_begin0 - .quad Lset28393 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28394, Ltmp7453-Lfunc_begin0 - .quad Lset28394 -.set Lset28395, Ltmp7456-Lfunc_begin0 - .quad Lset28395 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28396, Ltmp7458-Lfunc_begin0 - .quad Lset28396 -.set Lset28397, Ltmp7461-Lfunc_begin0 - .quad Lset28397 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28398, Ltmp7463-Lfunc_begin0 - .quad Lset28398 -.set Lset28399, Ltmp7466-Lfunc_begin0 - .quad Lset28399 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28400, Ltmp7468-Lfunc_begin0 - .quad Lset28400 -.set Lset28401, Ltmp7471-Lfunc_begin0 - .quad Lset28401 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28402, Ltmp7473-Lfunc_begin0 - .quad Lset28402 -.set Lset28403, Ltmp7476-Lfunc_begin0 - .quad Lset28403 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28404, Ltmp7481-Lfunc_begin0 - .quad Lset28404 -.set Lset28405, Ltmp7483-Lfunc_begin0 - .quad Lset28405 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc990: -.set Lset28406, Ltmp7417-Lfunc_begin0 - .quad Lset28406 -.set Lset28407, Ltmp7419-Lfunc_begin0 - .quad Lset28407 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc991: -.set Lset28408, Ltmp7423-Lfunc_begin0 - .quad Lset28408 -.set Lset28409, Ltmp7432-Lfunc_begin0 - .quad Lset28409 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset28410, Ltmp7448-Lfunc_begin0 - .quad Lset28410 -.set Lset28411, Ltmp7458-Lfunc_begin0 - .quad Lset28411 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc992: -.set Lset28412, Ltmp7424-Lfunc_begin0 - .quad Lset28412 -.set Lset28413, Ltmp7432-Lfunc_begin0 - .quad Lset28413 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28414, Ltmp7448-Lfunc_begin0 - .quad Lset28414 -.set Lset28415, Ltmp7458-Lfunc_begin0 - .quad Lset28415 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc993: -.set Lset28416, Ltmp7425-Lfunc_begin0 - .quad Lset28416 -.set Lset28417, Ltmp7431-Lfunc_begin0 - .quad Lset28417 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value -.set Lset28418, Ltmp7448-Lfunc_begin0 - .quad Lset28418 -.set Lset28419, Ltmp7458-Lfunc_begin0 - .quad Lset28419 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc994: -.set Lset28420, Ltmp7432-Lfunc_begin0 - .quad Lset28420 -.set Lset28421, Ltmp7434-Lfunc_begin0 - .quad Lset28421 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28422, Ltmp7435-Lfunc_begin0 - .quad Lset28422 -.set Lset28423, Ltmp7443-Lfunc_begin0 - .quad Lset28423 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28424, Ltmp7478-Lfunc_begin0 - .quad Lset28424 -.set Lset28425, Ltmp7481-Lfunc_begin0 - .quad Lset28425 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc995: -.set Lset28426, Ltmp7432-Lfunc_begin0 - .quad Lset28426 -.set Lset28427, Ltmp7434-Lfunc_begin0 - .quad Lset28427 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28428, Ltmp7435-Lfunc_begin0 - .quad Lset28428 -.set Lset28429, Ltmp7443-Lfunc_begin0 - .quad Lset28429 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28430, Ltmp7478-Lfunc_begin0 - .quad Lset28430 -.set Lset28431, Ltmp7481-Lfunc_begin0 - .quad Lset28431 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc996: -.set Lset28432, Lfunc_begin52-Lfunc_begin0 - .quad Lset28432 -.set Lset28433, Ltmp7524-Lfunc_begin0 - .quad Lset28433 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28434, Ltmp7528-Lfunc_begin0 - .quad Lset28434 -.set Lset28435, Ltmp7529-Lfunc_begin0 - .quad Lset28435 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28436, Ltmp7533-Lfunc_begin0 - .quad Lset28436 -.set Lset28437, Ltmp7534-Lfunc_begin0 - .quad Lset28437 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28438, Ltmp7536-Lfunc_begin0 - .quad Lset28438 -.set Lset28439, Ltmp7537-Lfunc_begin0 - .quad Lset28439 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28440, Ltmp7541-Lfunc_begin0 - .quad Lset28440 -.set Lset28441, Ltmp7542-Lfunc_begin0 - .quad Lset28441 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28442, Ltmp7546-Lfunc_begin0 - .quad Lset28442 -.set Lset28443, Ltmp7547-Lfunc_begin0 - .quad Lset28443 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28444, Ltmp7551-Lfunc_begin0 - .quad Lset28444 -.set Lset28445, Ltmp7552-Lfunc_begin0 - .quad Lset28445 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28446, Ltmp7555-Lfunc_begin0 - .quad Lset28446 -.set Lset28447, Ltmp7556-Lfunc_begin0 - .quad Lset28447 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28448, Ltmp7559-Lfunc_begin0 - .quad Lset28448 -.set Lset28449, Ltmp7561-Lfunc_begin0 - .quad Lset28449 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc997: -.set Lset28450, Lfunc_begin52-Lfunc_begin0 - .quad Lset28450 -.set Lset28451, Ltmp7514-Lfunc_begin0 - .quad Lset28451 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28452, Ltmp7519-Lfunc_begin0 - .quad Lset28452 -.set Lset28453, Ltmp7525-Lfunc_begin0 - .quad Lset28453 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28454, Ltmp7528-Lfunc_begin0 - .quad Lset28454 -.set Lset28455, Ltmp7530-Lfunc_begin0 - .quad Lset28455 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28456, Ltmp7536-Lfunc_begin0 - .quad Lset28456 -.set Lset28457, Ltmp7538-Lfunc_begin0 - .quad Lset28457 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28458, Ltmp7541-Lfunc_begin0 - .quad Lset28458 -.set Lset28459, Ltmp7543-Lfunc_begin0 - .quad Lset28459 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28460, Ltmp7546-Lfunc_begin0 - .quad Lset28460 -.set Lset28461, Ltmp7548-Lfunc_begin0 - .quad Lset28461 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28462, Ltmp7551-Lfunc_begin0 - .quad Lset28462 -.set Lset28463, Ltmp7553-Lfunc_begin0 - .quad Lset28463 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28464, Ltmp7555-Lfunc_begin0 - .quad Lset28464 -.set Lset28465, Ltmp7557-Lfunc_begin0 - .quad Lset28465 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28466, Ltmp7559-Lfunc_begin0 - .quad Lset28466 -.set Lset28467, Ltmp7561-Lfunc_begin0 - .quad Lset28467 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc998: -.set Lset28468, Lfunc_begin52-Lfunc_begin0 - .quad Lset28468 -.set Lset28469, Ltmp7507-Lfunc_begin0 - .quad Lset28469 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28470, Ltmp7519-Lfunc_begin0 - .quad Lset28470 -.set Lset28471, Ltmp7527-Lfunc_begin0 - .quad Lset28471 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28472, Ltmp7528-Lfunc_begin0 - .quad Lset28472 -.set Lset28473, Ltmp7532-Lfunc_begin0 - .quad Lset28473 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28474, Ltmp7536-Lfunc_begin0 - .quad Lset28474 -.set Lset28475, Ltmp7540-Lfunc_begin0 - .quad Lset28475 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28476, Ltmp7541-Lfunc_begin0 - .quad Lset28476 -.set Lset28477, Ltmp7545-Lfunc_begin0 - .quad Lset28477 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28478, Ltmp7546-Lfunc_begin0 - .quad Lset28478 -.set Lset28479, Ltmp7550-Lfunc_begin0 - .quad Lset28479 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28480, Ltmp7559-Lfunc_begin0 - .quad Lset28480 -.set Lset28481, Ltmp7560-Lfunc_begin0 - .quad Lset28481 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc999: -.set Lset28482, Lfunc_begin52-Lfunc_begin0 - .quad Lset28482 -.set Lset28483, Ltmp7526-Lfunc_begin0 - .quad Lset28483 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28484, Ltmp7528-Lfunc_begin0 - .quad Lset28484 -.set Lset28485, Ltmp7531-Lfunc_begin0 - .quad Lset28485 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28486, Ltmp7533-Lfunc_begin0 - .quad Lset28486 -.set Lset28487, Ltmp7535-Lfunc_begin0 - .quad Lset28487 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28488, Ltmp7536-Lfunc_begin0 - .quad Lset28488 -.set Lset28489, Ltmp7539-Lfunc_begin0 - .quad Lset28489 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28490, Ltmp7541-Lfunc_begin0 - .quad Lset28490 -.set Lset28491, Ltmp7544-Lfunc_begin0 - .quad Lset28491 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28492, Ltmp7546-Lfunc_begin0 - .quad Lset28492 -.set Lset28493, Ltmp7549-Lfunc_begin0 - .quad Lset28493 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28494, Ltmp7551-Lfunc_begin0 - .quad Lset28494 -.set Lset28495, Ltmp7554-Lfunc_begin0 - .quad Lset28495 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28496, Ltmp7555-Lfunc_begin0 - .quad Lset28496 -.set Lset28497, Ltmp7558-Lfunc_begin0 - .quad Lset28497 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28498, Ltmp7559-Lfunc_begin0 - .quad Lset28498 -.set Lset28499, Ltmp7561-Lfunc_begin0 - .quad Lset28499 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc1000: -.set Lset28500, Ltmp7485-Lfunc_begin0 - .quad Lset28500 -.set Lset28501, Ltmp7487-Lfunc_begin0 - .quad Lset28501 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc1001: -.set Lset28502, Ltmp7491-Lfunc_begin0 - .quad Lset28502 -.set Lset28503, Ltmp7500-Lfunc_begin0 - .quad Lset28503 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 -.set Lset28504, Ltmp7523-Lfunc_begin0 - .quad Lset28504 -.set Lset28505, Ltmp7533-Lfunc_begin0 - .quad Lset28505 - .short 1 ## Loc expr size - .byte 89 ## DW_OP_reg9 - .quad 0 - .quad 0 -Ldebug_loc1002: -.set Lset28506, Ltmp7492-Lfunc_begin0 - .quad Lset28506 -.set Lset28507, Ltmp7500-Lfunc_begin0 - .quad Lset28507 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28508, Ltmp7523-Lfunc_begin0 - .quad Lset28508 -.set Lset28509, Ltmp7533-Lfunc_begin0 - .quad Lset28509 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1003: -.set Lset28510, Ltmp7493-Lfunc_begin0 - .quad Lset28510 -.set Lset28511, Ltmp7499-Lfunc_begin0 - .quad Lset28511 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value -.set Lset28512, Ltmp7523-Lfunc_begin0 - .quad Lset28512 -.set Lset28513, Ltmp7533-Lfunc_begin0 - .quad Lset28513 - .short 3 ## Loc expr size - .byte 115 ## DW_OP_breg3 - .byte 16 ## 16 - .byte 159 ## DW_OP_stack_value - .quad 0 - .quad 0 -Ldebug_loc1004: -.set Lset28514, Ltmp7500-Lfunc_begin0 - .quad Lset28514 -.set Lset28515, Ltmp7502-Lfunc_begin0 - .quad Lset28515 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28516, Ltmp7504-Lfunc_begin0 - .quad Lset28516 -.set Lset28517, Ltmp7511-Lfunc_begin0 - .quad Lset28517 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28518, Ltmp7551-Lfunc_begin0 - .quad Lset28518 -.set Lset28519, Ltmp7555-Lfunc_begin0 - .quad Lset28519 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc1005: -.set Lset28520, Ltmp7500-Lfunc_begin0 - .quad Lset28520 -.set Lset28521, Ltmp7503-Lfunc_begin0 - .quad Lset28521 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28522, Ltmp7504-Lfunc_begin0 - .quad Lset28522 -.set Lset28523, Ltmp7518-Lfunc_begin0 - .quad Lset28523 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28524, Ltmp7551-Lfunc_begin0 - .quad Lset28524 -.set Lset28525, Ltmp7559-Lfunc_begin0 - .quad Lset28525 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc1006: -.set Lset28526, Lfunc_begin53-Lfunc_begin0 - .quad Lset28526 -.set Lset28527, Ltmp7564-Lfunc_begin0 - .quad Lset28527 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28528, Ltmp7564-Lfunc_begin0 - .quad Lset28528 -.set Lset28529, Ltmp7582-Lfunc_begin0 - .quad Lset28529 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28530, Ltmp7584-Lfunc_begin0 - .quad Lset28530 -.set Lset28531, Ltmp7614-Lfunc_begin0 - .quad Lset28531 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28532, Ltmp7616-Lfunc_begin0 - .quad Lset28532 -.set Lset28533, Lfunc_end53-Lfunc_begin0 - .quad Lset28533 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc1007: -.set Lset28534, Lfunc_begin53-Lfunc_begin0 - .quad Lset28534 -.set Lset28535, Ltmp7564-Lfunc_begin0 - .quad Lset28535 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28536, Ltmp7564-Lfunc_begin0 - .quad Lset28536 -.set Lset28537, Ltmp7580-Lfunc_begin0 - .quad Lset28537 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28538, Ltmp7584-Lfunc_begin0 - .quad Lset28538 -.set Lset28539, Ltmp7612-Lfunc_begin0 - .quad Lset28539 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28540, Ltmp7616-Lfunc_begin0 - .quad Lset28540 -.set Lset28541, Lfunc_end53-Lfunc_begin0 - .quad Lset28541 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1008: -.set Lset28542, Lfunc_begin53-Lfunc_begin0 - .quad Lset28542 -.set Lset28543, Ltmp7564-Lfunc_begin0 - .quad Lset28543 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28544, Ltmp7564-Lfunc_begin0 - .quad Lset28544 -.set Lset28545, Ltmp7581-Lfunc_begin0 - .quad Lset28545 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28546, Ltmp7584-Lfunc_begin0 - .quad Lset28546 -.set Lset28547, Ltmp7613-Lfunc_begin0 - .quad Lset28547 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28548, Ltmp7616-Lfunc_begin0 - .quad Lset28548 -.set Lset28549, Lfunc_end53-Lfunc_begin0 - .quad Lset28549 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc1009: -.set Lset28550, Lfunc_begin53-Lfunc_begin0 - .quad Lset28550 -.set Lset28551, Ltmp7564-Lfunc_begin0 - .quad Lset28551 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28552, Ltmp7564-Lfunc_begin0 - .quad Lset28552 -.set Lset28553, Ltmp7583-Lfunc_begin0 - .quad Lset28553 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28554, Ltmp7584-Lfunc_begin0 - .quad Lset28554 -.set Lset28555, Ltmp7615-Lfunc_begin0 - .quad Lset28555 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28556, Ltmp7616-Lfunc_begin0 - .quad Lset28556 -.set Lset28557, Lfunc_end53-Lfunc_begin0 - .quad Lset28557 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1010: -.set Lset28558, Ltmp7562-Lfunc_begin0 - .quad Lset28558 -.set Lset28559, Ltmp7563-Lfunc_begin0 - .quad Lset28559 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28560, Ltmp7563-Lfunc_begin0 - .quad Lset28560 -.set Lset28561, Ltmp7566-Lfunc_begin0 - .quad Lset28561 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1011: -.set Lset28562, Ltmp7562-Lfunc_begin0 - .quad Lset28562 -.set Lset28563, Ltmp7563-Lfunc_begin0 - .quad Lset28563 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28564, Ltmp7563-Lfunc_begin0 - .quad Lset28564 -.set Lset28565, Ltmp7566-Lfunc_begin0 - .quad Lset28565 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1012: -.set Lset28566, Ltmp7562-Lfunc_begin0 - .quad Lset28566 -.set Lset28567, Ltmp7563-Lfunc_begin0 - .quad Lset28567 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28568, Ltmp7563-Lfunc_begin0 - .quad Lset28568 -.set Lset28569, Ltmp7566-Lfunc_begin0 - .quad Lset28569 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1013: -.set Lset28570, Ltmp7569-Lfunc_begin0 - .quad Lset28570 -.set Lset28571, Ltmp7574-Lfunc_begin0 - .quad Lset28571 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28572, Ltmp7595-Lfunc_begin0 - .quad Lset28572 -.set Lset28573, Ltmp7596-Lfunc_begin0 - .quad Lset28573 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 - .quad 0 - .quad 0 -Ldebug_loc1014: -.set Lset28574, Ltmp7569-Lfunc_begin0 - .quad Lset28574 -.set Lset28575, Ltmp7574-Lfunc_begin0 - .quad Lset28575 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28576, Ltmp7595-Lfunc_begin0 - .quad Lset28576 -.set Lset28577, Ltmp7596-Lfunc_begin0 - .quad Lset28577 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc1015: -.set Lset28578, Ltmp7572-Lfunc_begin0 - .quad Lset28578 -.set Lset28579, Ltmp7575-Lfunc_begin0 - .quad Lset28579 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28580, Ltmp7596-Lfunc_begin0 - .quad Lset28580 -.set Lset28581, Ltmp7599-Lfunc_begin0 - .quad Lset28581 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1016: -.set Lset28582, Ltmp7572-Lfunc_begin0 - .quad Lset28582 -.set Lset28583, Ltmp7575-Lfunc_begin0 - .quad Lset28583 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28584, Ltmp7596-Lfunc_begin0 - .quad Lset28584 -.set Lset28585, Ltmp7598-Lfunc_begin0 - .quad Lset28585 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1017: -.set Lset28586, Ltmp7586-Lfunc_begin0 - .quad Lset28586 -.set Lset28587, Ltmp7593-Lfunc_begin0 - .quad Lset28587 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1018: -.set Lset28588, Ltmp7589-Lfunc_begin0 - .quad Lset28588 -.set Lset28589, Ltmp7592-Lfunc_begin0 - .quad Lset28589 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc1019: -.set Lset28590, Ltmp7593-Lfunc_begin0 - .quad Lset28590 -.set Lset28591, Ltmp7594-Lfunc_begin0 - .quad Lset28591 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1020: -.set Lset28592, Ltmp7601-Lfunc_begin0 - .quad Lset28592 -.set Lset28593, Ltmp7608-Lfunc_begin0 - .quad Lset28593 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1021: -.set Lset28594, Ltmp7604-Lfunc_begin0 - .quad Lset28594 -.set Lset28595, Ltmp7607-Lfunc_begin0 - .quad Lset28595 - .short 1 ## Loc expr size - .byte 82 ## super-register DW_OP_reg2 - .quad 0 - .quad 0 -Ldebug_loc1022: -.set Lset28596, Ltmp7608-Lfunc_begin0 - .quad Lset28596 -.set Lset28597, Ltmp7609-Lfunc_begin0 - .quad Lset28597 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1023: -.set Lset28598, Lfunc_begin54-Lfunc_begin0 - .quad Lset28598 -.set Lset28599, Ltmp7623-Lfunc_begin0 - .quad Lset28599 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28600, Ltmp7623-Lfunc_begin0 - .quad Lset28600 -.set Lset28601, Ltmp7644-Lfunc_begin0 - .quad Lset28601 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28602, Ltmp7646-Lfunc_begin0 - .quad Lset28602 -.set Lset28603, Ltmp7677-Lfunc_begin0 - .quad Lset28603 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28604, Ltmp7679-Lfunc_begin0 - .quad Lset28604 -.set Lset28605, Ltmp7710-Lfunc_begin0 - .quad Lset28605 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28606, Ltmp7712-Lfunc_begin0 - .quad Lset28606 -.set Lset28607, Ltmp7719-Lfunc_begin0 - .quad Lset28607 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28608, Ltmp7721-Lfunc_begin0 - .quad Lset28608 -.set Lset28609, Ltmp7725-Lfunc_begin0 - .quad Lset28609 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28610, Ltmp7727-Lfunc_begin0 - .quad Lset28610 -.set Lset28611, Lfunc_end54-Lfunc_begin0 - .quad Lset28611 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc1024: -.set Lset28612, Lfunc_begin54-Lfunc_begin0 - .quad Lset28612 -.set Lset28613, Ltmp7623-Lfunc_begin0 - .quad Lset28613 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28614, Ltmp7623-Lfunc_begin0 - .quad Lset28614 -.set Lset28615, Ltmp7642-Lfunc_begin0 - .quad Lset28615 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28616, Ltmp7646-Lfunc_begin0 - .quad Lset28616 -.set Lset28617, Ltmp7648-Lfunc_begin0 - .quad Lset28617 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28618, Ltmp7658-Lfunc_begin0 - .quad Lset28618 -.set Lset28619, Ltmp7672-Lfunc_begin0 - .quad Lset28619 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28620, Ltmp7673-Lfunc_begin0 - .quad Lset28620 -.set Lset28621, Ltmp7675-Lfunc_begin0 - .quad Lset28621 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28622, Ltmp7695-Lfunc_begin0 - .quad Lset28622 -.set Lset28623, Ltmp7704-Lfunc_begin0 - .quad Lset28623 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28624, Ltmp7715-Lfunc_begin0 - .quad Lset28624 -.set Lset28625, Ltmp7717-Lfunc_begin0 - .quad Lset28625 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28626, Ltmp7721-Lfunc_begin0 - .quad Lset28626 -.set Lset28627, Ltmp7723-Lfunc_begin0 - .quad Lset28627 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28628, Ltmp7729-Lfunc_begin0 - .quad Lset28628 -.set Lset28629, Ltmp7730-Lfunc_begin0 - .quad Lset28629 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28630, Ltmp7731-Lfunc_begin0 - .quad Lset28630 -.set Lset28631, Lfunc_end54-Lfunc_begin0 - .quad Lset28631 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc1025: -.set Lset28632, Lfunc_begin54-Lfunc_begin0 - .quad Lset28632 -.set Lset28633, Ltmp7623-Lfunc_begin0 - .quad Lset28633 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28634, Ltmp7623-Lfunc_begin0 - .quad Lset28634 -.set Lset28635, Ltmp7643-Lfunc_begin0 - .quad Lset28635 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset28636, Ltmp7646-Lfunc_begin0 - .quad Lset28636 -.set Lset28637, Ltmp7676-Lfunc_begin0 - .quad Lset28637 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset28638, Ltmp7679-Lfunc_begin0 - .quad Lset28638 -.set Lset28639, Ltmp7709-Lfunc_begin0 - .quad Lset28639 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset28640, Ltmp7712-Lfunc_begin0 - .quad Lset28640 -.set Lset28641, Ltmp7718-Lfunc_begin0 - .quad Lset28641 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset28642, Ltmp7721-Lfunc_begin0 - .quad Lset28642 -.set Lset28643, Ltmp7724-Lfunc_begin0 - .quad Lset28643 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 -.set Lset28644, Ltmp7727-Lfunc_begin0 - .quad Lset28644 -.set Lset28645, Lfunc_end54-Lfunc_begin0 - .quad Lset28645 - .short 1 ## Loc expr size - .byte 93 ## DW_OP_reg13 - .quad 0 - .quad 0 -Ldebug_loc1026: -.set Lset28646, Lfunc_begin54-Lfunc_begin0 - .quad Lset28646 -.set Lset28647, Ltmp7623-Lfunc_begin0 - .quad Lset28647 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28648, Ltmp7623-Lfunc_begin0 - .quad Lset28648 -.set Lset28649, Ltmp7645-Lfunc_begin0 - .quad Lset28649 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28650, Ltmp7646-Lfunc_begin0 - .quad Lset28650 -.set Lset28651, Ltmp7678-Lfunc_begin0 - .quad Lset28651 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28652, Ltmp7679-Lfunc_begin0 - .quad Lset28652 -.set Lset28653, Ltmp7711-Lfunc_begin0 - .quad Lset28653 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28654, Ltmp7712-Lfunc_begin0 - .quad Lset28654 -.set Lset28655, Ltmp7720-Lfunc_begin0 - .quad Lset28655 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28656, Ltmp7721-Lfunc_begin0 - .quad Lset28656 -.set Lset28657, Ltmp7726-Lfunc_begin0 - .quad Lset28657 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 -.set Lset28658, Ltmp7727-Lfunc_begin0 - .quad Lset28658 -.set Lset28659, Lfunc_end54-Lfunc_begin0 - .quad Lset28659 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1027: -.set Lset28660, Ltmp7621-Lfunc_begin0 - .quad Lset28660 -.set Lset28661, Ltmp7622-Lfunc_begin0 - .quad Lset28661 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28662, Ltmp7622-Lfunc_begin0 - .quad Lset28662 -.set Lset28663, Ltmp7625-Lfunc_begin0 - .quad Lset28663 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1028: -.set Lset28664, Ltmp7621-Lfunc_begin0 - .quad Lset28664 -.set Lset28665, Ltmp7622-Lfunc_begin0 - .quad Lset28665 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28666, Ltmp7622-Lfunc_begin0 - .quad Lset28666 -.set Lset28667, Ltmp7625-Lfunc_begin0 - .quad Lset28667 - .short 1 ## Loc expr size - .byte 95 ## DW_OP_reg15 - .quad 0 - .quad 0 -Ldebug_loc1029: -.set Lset28668, Ltmp7628-Lfunc_begin0 - .quad Lset28668 -.set Lset28669, Ltmp7641-Lfunc_begin0 - .quad Lset28669 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28670, Ltmp7658-Lfunc_begin0 - .quad Lset28670 -.set Lset28671, Ltmp7662-Lfunc_begin0 - .quad Lset28671 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28672, Ltmp7729-Lfunc_begin0 - .quad Lset28672 -.set Lset28673, Ltmp7730-Lfunc_begin0 - .quad Lset28673 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1030: -.set Lset28674, Ltmp7628-Lfunc_begin0 - .quad Lset28674 -.set Lset28675, Ltmp7633-Lfunc_begin0 - .quad Lset28675 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28676, Ltmp7658-Lfunc_begin0 - .quad Lset28676 -.set Lset28677, Ltmp7659-Lfunc_begin0 - .quad Lset28677 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc1031: -.set Lset28678, Ltmp7631-Lfunc_begin0 - .quad Lset28678 -.set Lset28679, Ltmp7646-Lfunc_begin0 - .quad Lset28679 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28680, Ltmp7660-Lfunc_begin0 - .quad Lset28680 -.set Lset28681, Ltmp7662-Lfunc_begin0 - .quad Lset28681 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28682, Ltmp7729-Lfunc_begin0 - .quad Lset28682 -.set Lset28683, Ltmp7730-Lfunc_begin0 - .quad Lset28683 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc1032: -.set Lset28684, Ltmp7631-Lfunc_begin0 - .quad Lset28684 -.set Lset28685, Ltmp7637-Lfunc_begin0 - .quad Lset28685 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28686, Ltmp7660-Lfunc_begin0 - .quad Lset28686 -.set Lset28687, Ltmp7662-Lfunc_begin0 - .quad Lset28687 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 -.set Lset28688, Ltmp7729-Lfunc_begin0 - .quad Lset28688 -.set Lset28689, Ltmp7730-Lfunc_begin0 - .quad Lset28689 - .short 1 ## Loc expr size - .byte 88 ## DW_OP_reg8 - .quad 0 - .quad 0 -Ldebug_loc1033: -.set Lset28690, Ltmp7648-Lfunc_begin0 - .quad Lset28690 -.set Lset28691, Ltmp7658-Lfunc_begin0 - .quad Lset28691 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28692, Ltmp7679-Lfunc_begin0 - .quad Lset28692 -.set Lset28693, Ltmp7695-Lfunc_begin0 - .quad Lset28693 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28694, Ltmp7705-Lfunc_begin0 - .quad Lset28694 -.set Lset28695, Ltmp7708-Lfunc_begin0 - .quad Lset28695 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28696, Ltmp7712-Lfunc_begin0 - .quad Lset28696 -.set Lset28697, Ltmp7715-Lfunc_begin0 - .quad Lset28697 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 -.set Lset28698, Ltmp7730-Lfunc_begin0 - .quad Lset28698 -.set Lset28699, Ltmp7731-Lfunc_begin0 - .quad Lset28699 - .short 1 ## Loc expr size - .byte 92 ## DW_OP_reg12 - .quad 0 - .quad 0 -Ldebug_loc1034: -.set Lset28700, Ltmp7654-Lfunc_begin0 - .quad Lset28700 -.set Lset28701, Ltmp7657-Lfunc_begin0 - .quad Lset28701 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset28702, Ltmp7705-Lfunc_begin0 - .quad Lset28702 -.set Lset28703, Ltmp7706-Lfunc_begin0 - .quad Lset28703 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1035: -.set Lset28704, Ltmp7664-Lfunc_begin0 - .quad Lset28704 -.set Lset28705, Ltmp7672-Lfunc_begin0 - .quad Lset28705 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28706, Ltmp7695-Lfunc_begin0 - .quad Lset28706 -.set Lset28707, Ltmp7704-Lfunc_begin0 - .quad Lset28707 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28708, Ltmp7715-Lfunc_begin0 - .quad Lset28708 -.set Lset28709, Ltmp7716-Lfunc_begin0 - .quad Lset28709 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28710, Ltmp7721-Lfunc_begin0 - .quad Lset28710 -.set Lset28711, Ltmp7723-Lfunc_begin0 - .quad Lset28711 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28712, Ltmp7731-Lfunc_begin0 - .quad Lset28712 -.set Lset28713, Lfunc_end54-Lfunc_begin0 - .quad Lset28713 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 -Ldebug_loc1036: -.set Lset28714, Ltmp7669-Lfunc_begin0 - .quad Lset28714 -.set Lset28715, Ltmp7672-Lfunc_begin0 - .quad Lset28715 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset28716, Ltmp7715-Lfunc_begin0 - .quad Lset28716 -.set Lset28717, Ltmp7721-Lfunc_begin0 - .quad Lset28717 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1037: -.set Lset28718, Ltmp7672-Lfunc_begin0 - .quad Lset28718 -.set Lset28719, Ltmp7673-Lfunc_begin0 - .quad Lset28719 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1038: -.set Lset28720, Ltmp7681-Lfunc_begin0 - .quad Lset28720 -.set Lset28721, Ltmp7684-Lfunc_begin0 - .quad Lset28721 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset28722, Ltmp7706-Lfunc_begin0 - .quad Lset28722 -.set Lset28723, Ltmp7707-Lfunc_begin0 - .quad Lset28723 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1039: -.set Lset28724, Ltmp7684-Lfunc_begin0 - .quad Lset28724 -.set Lset28725, Ltmp7685-Lfunc_begin0 - .quad Lset28725 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1040: -.set Lset28726, Ltmp7685-Lfunc_begin0 - .quad Lset28726 -.set Lset28727, Ltmp7686-Lfunc_begin0 - .quad Lset28727 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset28728, Ltmp7686-Lfunc_begin0 - .quad Lset28728 -.set Lset28729, Ltmp7713-Lfunc_begin0 - .quad Lset28729 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset28730, Ltmp7713-Lfunc_begin0 - .quad Lset28730 -.set Lset28731, Ltmp7714-Lfunc_begin0 - .quad Lset28731 - .short 1 ## Loc expr size - .byte 97 ## DW_OP_reg17 -.set Lset28732, Ltmp7730-Lfunc_begin0 - .quad Lset28732 -.set Lset28733, Lfunc_end54-Lfunc_begin0 - .quad Lset28733 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc1041: -.set Lset28734, Ltmp7691-Lfunc_begin0 - .quad Lset28734 -.set Lset28735, Ltmp7694-Lfunc_begin0 - .quad Lset28735 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset28736, Ltmp7712-Lfunc_begin0 - .quad Lset28736 -.set Lset28737, Ltmp7714-Lfunc_begin0 - .quad Lset28737 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1042: -.set Lset28738, Ltmp7695-Lfunc_begin0 - .quad Lset28738 -.set Lset28739, Ltmp7696-Lfunc_begin0 - .quad Lset28739 - .short 2 ## Loc expr size - .byte 48 ## DW_OP_lit0 - .byte 159 ## DW_OP_stack_value -.set Lset28740, Ltmp7696-Lfunc_begin0 - .quad Lset28740 -.set Lset28741, Ltmp7722-Lfunc_begin0 - .quad Lset28741 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 -.set Lset28742, Ltmp7722-Lfunc_begin0 - .quad Lset28742 -.set Lset28743, Ltmp7723-Lfunc_begin0 - .quad Lset28743 - .short 1 ## Loc expr size - .byte 82 ## DW_OP_reg2 -.set Lset28744, Ltmp7731-Lfunc_begin0 - .quad Lset28744 -.set Lset28745, Lfunc_end54-Lfunc_begin0 - .quad Lset28745 - .short 2 ## Loc expr size - .byte 118 ## DW_OP_breg6 - .byte 80 ## -48 - .quad 0 - .quad 0 -Ldebug_loc1043: -.set Lset28746, Ltmp7701-Lfunc_begin0 - .quad Lset28746 -.set Lset28747, Ltmp7704-Lfunc_begin0 - .quad Lset28747 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 -.set Lset28748, Ltmp7721-Lfunc_begin0 - .quad Lset28748 -.set Lset28749, Ltmp7723-Lfunc_begin0 - .quad Lset28749 - .short 1 ## Loc expr size - .byte 80 ## super-register DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1044: -.set Lset28750, Ltmp7704-Lfunc_begin0 - .quad Lset28750 -.set Lset28751, Ltmp7705-Lfunc_begin0 - .quad Lset28751 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 - .quad 0 - .quad 0 -Ldebug_loc1045: -.set Lset28752, Lfunc_begin55-Lfunc_begin0 - .quad Lset28752 -.set Lset28753, Ltmp7737-Lfunc_begin0 - .quad Lset28753 - .short 1 ## Loc expr size - .byte 85 ## DW_OP_reg5 -.set Lset28754, Ltmp7737-Lfunc_begin0 - .quad Lset28754 -.set Lset28755, Ltmp7745-Lfunc_begin0 - .quad Lset28755 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 -.set Lset28756, Ltmp7746-Lfunc_begin0 - .quad Lset28756 -.set Lset28757, Lfunc_end55-Lfunc_begin0 - .quad Lset28757 - .short 1 ## Loc expr size - .byte 94 ## DW_OP_reg14 - .quad 0 - .quad 0 -Ldebug_loc1046: -.set Lset28758, Lfunc_begin55-Lfunc_begin0 - .quad Lset28758 -.set Lset28759, Ltmp7741-Lfunc_begin0 - .quad Lset28759 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28760, Ltmp7741-Lfunc_begin0 - .quad Lset28760 -.set Lset28761, Ltmp7743-Lfunc_begin0 - .quad Lset28761 - .short 1 ## Loc expr size - .byte 80 ## DW_OP_reg0 -.set Lset28762, Ltmp7746-Lfunc_begin0 - .quad Lset28762 -.set Lset28763, Ltmp7747-Lfunc_begin0 - .quad Lset28763 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 -.set Lset28764, Ltmp7748-Lfunc_begin0 - .quad Lset28764 -.set Lset28765, Ltmp7749-Lfunc_begin0 - .quad Lset28765 - .short 1 ## Loc expr size - .byte 84 ## DW_OP_reg4 - .quad 0 - .quad 0 -Ldebug_loc1047: -.set Lset28766, Lfunc_begin55-Lfunc_begin0 - .quad Lset28766 -.set Lset28767, Ltmp7742-Lfunc_begin0 - .quad Lset28767 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 -.set Lset28768, Ltmp7746-Lfunc_begin0 - .quad Lset28768 -.set Lset28769, Ltmp7750-Lfunc_begin0 - .quad Lset28769 - .short 1 ## Loc expr size - .byte 81 ## DW_OP_reg1 - .quad 0 - .quad 0 -Ldebug_loc1048: -.set Lset28770, Ltmp7741-Lfunc_begin0 - .quad Lset28770 -.set Lset28771, Ltmp7745-Lfunc_begin0 - .quad Lset28771 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 -.set Lset28772, Ltmp7751-Lfunc_begin0 - .quad Lset28772 -.set Lset28773, Ltmp7752-Lfunc_begin0 - .quad Lset28773 - .short 1 ## Loc expr size - .byte 83 ## DW_OP_reg3 - .quad 0 - .quad 0 - .section __DWARF,__debug_abbrev,regular,debug -Lsection_abbrev: - .byte 1 ## Abbreviation Code - .byte 17 ## DW_TAG_compile_unit - .byte 1 ## DW_CHILDREN_yes - .byte 37 ## DW_AT_producer - .byte 14 ## DW_FORM_strp - .byte 19 ## DW_AT_language - .byte 5 ## DW_FORM_data2 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 16 ## DW_AT_stmt_list - .byte 23 ## DW_FORM_sec_offset - .byte 27 ## DW_AT_comp_dir - .byte 14 ## DW_FORM_strp - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 2 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 3 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 2 ## DW_AT_location - .byte 24 ## DW_FORM_exprloc - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 4 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 5 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 6 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 85 ## DW_AT_ranges - .byte 23 ## DW_FORM_sec_offset - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 7 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 8 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 9 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 10 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 11 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 24 ## DW_FORM_exprloc - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 12 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 85 ## DW_AT_ranges - .byte 23 ## DW_FORM_sec_offset - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 13 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 14 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 24 ## DW_FORM_exprloc - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 15 ## Abbreviation Code - .byte 72 ## DW_TAG_call_site - .byte 0 ## DW_CHILDREN_no - .byte 127 ## DW_AT_call_origin - .byte 19 ## DW_FORM_ref4 - .byte 125 ## DW_AT_call_return_pc - .byte 1 ## DW_FORM_addr - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 16 ## Abbreviation Code - .byte 1 ## DW_TAG_array_type - .byte 1 ## DW_CHILDREN_yes - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 17 ## Abbreviation Code - .byte 33 ## DW_TAG_subrange_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 55 ## DW_AT_count - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 18 ## Abbreviation Code - .byte 15 ## DW_TAG_pointer_type - .byte 0 ## DW_CHILDREN_no - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 19 ## Abbreviation Code - .byte 36 ## DW_TAG_base_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 62 ## DW_AT_encoding - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 20 ## Abbreviation Code - .byte 4 ## DW_TAG_enumeration_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 21 ## Abbreviation Code - .byte 40 ## DW_TAG_enumerator - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 28 ## DW_AT_const_value - .byte 13 ## DW_FORM_sdata - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 22 ## Abbreviation Code - .byte 4 ## DW_TAG_enumeration_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 23 ## Abbreviation Code - .byte 4 ## DW_TAG_enumeration_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 24 ## Abbreviation Code - .byte 22 ## DW_TAG_typedef - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 25 ## Abbreviation Code - .byte 36 ## DW_TAG_base_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 62 ## DW_AT_encoding - .byte 11 ## DW_FORM_data1 - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 26 ## Abbreviation Code - .byte 15 ## DW_TAG_pointer_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 27 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 28 ## Abbreviation Code - .byte 13 ## DW_TAG_member - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 56 ## DW_AT_data_member_location - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 29 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 30 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 31 ## Abbreviation Code - .byte 13 ## DW_TAG_member - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 56 ## DW_AT_data_member_location - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 32 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 33 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 1 ## DW_CHILDREN_yes - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 34 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 35 ## Abbreviation Code - .byte 22 ## DW_TAG_typedef - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 36 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 5 ## DW_FORM_data2 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 37 ## Abbreviation Code - .byte 13 ## DW_TAG_member - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 56 ## DW_AT_data_member_location - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 38 ## Abbreviation Code - .byte 38 ## DW_TAG_const_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 39 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 60 ## DW_AT_declaration - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 40 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 0 ## DW_CHILDREN_no - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 41 ## Abbreviation Code - .byte 21 ## DW_TAG_subroutine_type - .byte 1 ## DW_CHILDREN_yes - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 42 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 43 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 44 ## Abbreviation Code - .byte 53 ## DW_TAG_volatile_type - .byte 0 ## DW_CHILDREN_no - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 45 ## Abbreviation Code - .byte 23 ## DW_TAG_union_type - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 46 ## Abbreviation Code - .byte 19 ## DW_TAG_structure_type - .byte 1 ## DW_CHILDREN_yes - .byte 11 ## DW_AT_byte_size - .byte 11 ## DW_FORM_data1 - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 47 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 48 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 49 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 23 ## DW_FORM_sec_offset - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 50 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 51 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 52 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 53 ## Abbreviation Code - .byte 11 ## DW_TAG_lexical_block - .byte 1 ## DW_CHILDREN_yes - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 54 ## Abbreviation Code - .byte 52 ## DW_TAG_variable - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 55 ## Abbreviation Code - .byte 29 ## DW_TAG_inlined_subroutine - .byte 1 ## DW_CHILDREN_yes - .byte 49 ## DW_AT_abstract_origin - .byte 19 ## DW_FORM_ref4 - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 88 ## DW_AT_call_file - .byte 11 ## DW_FORM_data1 - .byte 89 ## DW_AT_call_line - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 56 ## Abbreviation Code - .byte 72 ## DW_TAG_call_site - .byte 0 ## DW_CHILDREN_no - .byte 127 ## DW_AT_call_origin - .byte 19 ## DW_FORM_ref4 - .ascii "\202\001" ## DW_AT_call_tail_call - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 57 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 58 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 59 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 60 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 61 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 62 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 63 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 11 ## DW_FORM_data1 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 64 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 63 ## DW_AT_external - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 32 ## DW_AT_inline - .byte 11 ## DW_FORM_data1 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 65 ## Abbreviation Code - .byte 46 ## DW_TAG_subprogram - .byte 1 ## DW_CHILDREN_yes - .byte 17 ## DW_AT_low_pc - .byte 1 ## DW_FORM_addr - .byte 18 ## DW_AT_high_pc - .byte 6 ## DW_FORM_data4 - .byte 64 ## DW_AT_frame_base - .byte 24 ## DW_FORM_exprloc - .byte 122 ## DW_AT_call_all_calls - .byte 25 ## DW_FORM_flag_present - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 39 ## DW_AT_prototyped - .byte 25 ## DW_FORM_flag_present - .ascii "\341\177" ## DW_AT_APPLE_optimized - .byte 25 ## DW_FORM_flag_present - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 66 ## Abbreviation Code - .byte 5 ## DW_TAG_formal_parameter - .byte 0 ## DW_CHILDREN_no - .byte 2 ## DW_AT_location - .byte 24 ## DW_FORM_exprloc - .byte 3 ## DW_AT_name - .byte 14 ## DW_FORM_strp - .byte 58 ## DW_AT_decl_file - .byte 11 ## DW_FORM_data1 - .byte 59 ## DW_AT_decl_line - .byte 5 ## DW_FORM_data2 - .byte 73 ## DW_AT_type - .byte 19 ## DW_FORM_ref4 - .byte 0 ## EOM(1) - .byte 0 ## EOM(2) - .byte 0 ## EOM(3) - .section __DWARF,__debug_info,regular,debug -Lsection_info: -Lcu_begin0: - .long 29813 ## Length of Unit - .short 4 ## DWARF version number -.set Lset28774, Lsection_abbrev-Lsection_abbrev ## Offset Into Abbrev. Section - .long Lset28774 - .byte 8 ## Address Size (in bytes) - .byte 1 ## Abbrev [1] 0xb:0x746e DW_TAG_compile_unit - .long 0 ## DW_AT_producer - .short 12 ## DW_AT_language - .long 46 ## DW_AT_name -.set Lset28775, Lline_table_start0-Lsection_line ## DW_AT_stmt_list - .long Lset28775 - .long 81 ## DW_AT_comp_dir - ## DW_AT_APPLE_optimized - .quad Lfunc_begin0 ## DW_AT_low_pc -.set Lset28776, Lfunc_end55-Lfunc_begin0 ## DW_AT_high_pc - .long Lset28776 - .byte 2 ## Abbrev [2] 0x2a:0x32ff DW_TAG_subprogram - .quad Lfunc_begin21 ## DW_AT_low_pc -.set Lset28777, Lfunc_end21-Lfunc_begin21 ## DW_AT_high_pc - .long Lset28777 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4461 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1153 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 3 ## Abbrev [3] 0x44:0x16 DW_TAG_variable - .long 132 ## DW_AT_name - .long 13097 ## DW_AT_type - .byte 1 ## DW_AT_decl_file - .short 1156 ## DW_AT_decl_line - .byte 9 ## DW_AT_location - .byte 3 - .quad _luaV_execute.dispatch_table - .byte 4 ## Abbrev [4] 0x5a:0x10 DW_TAG_formal_parameter -.set Lset28778, Ldebug_loc182-Lsection_debug_loc ## DW_AT_location - .long Lset28778 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1153 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6a:0x10 DW_TAG_variable -.set Lset28779, Ldebug_loc185-Lsection_debug_loc ## DW_AT_location - .long Lset28779 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1276 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7a:0x10 DW_TAG_variable -.set Lset28780, Ldebug_loc186-Lsection_debug_loc ## DW_AT_location - .long Lset28780 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1277 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x8a:0x10 DW_TAG_variable -.set Lset28781, Ldebug_loc187-Lsection_debug_loc ## DW_AT_location - .long Lset28781 - .long 3029 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1278 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x9a:0x10 DW_TAG_variable -.set Lset28782, Ldebug_loc188-Lsection_debug_loc ## DW_AT_location - .long Lset28782 - .long 5178 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1281 ## DW_AT_decl_line - .long 16475 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xaa:0x10 DW_TAG_variable -.set Lset28783, Ldebug_loc190-Lsection_debug_loc ## DW_AT_location - .long Lset28783 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1279 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xba:0x10 DW_TAG_variable -.set Lset28784, Ldebug_loc191-Lsection_debug_loc ## DW_AT_location - .long Lset28784 - .long 5181 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1280 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xca:0x2fc7 DW_TAG_lexical_block -.set Lset28785, Ldebug_ranges311-Ldebug_range ## DW_AT_ranges - .long Lset28785 - .byte 5 ## Abbrev [5] 0xcf:0x10 DW_TAG_variable -.set Lset28786, Ldebug_loc189-Lsection_debug_loc ## DW_AT_location - .long Lset28786 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1295 ## DW_AT_decl_line - .long 16485 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xdf:0x10 DW_TAG_variable -.set Lset28787, Ldebug_loc192-Lsection_debug_loc ## DW_AT_location - .long Lset28787 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1296 ## DW_AT_decl_line - .long 18154 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xef:0x10 DW_TAG_variable -.set Lset28788, Ldebug_loc193-Lsection_debug_loc ## DW_AT_location - .long Lset28788 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1297 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xff:0x22 DW_TAG_lexical_block -.set Lset28789, Ldebug_ranges51-Ldebug_range ## DW_AT_ranges - .long Lset28789 - .byte 5 ## Abbrev [5] 0x104:0x10 DW_TAG_variable -.set Lset28790, Ldebug_loc749-Lsection_debug_loc ## DW_AT_location - .long Lset28790 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2459 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x114:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2456 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x121:0x22 DW_TAG_lexical_block -.set Lset28791, Ldebug_ranges52-Ldebug_range ## DW_AT_ranges - .long Lset28791 - .byte 5 ## Abbrev [5] 0x126:0x10 DW_TAG_variable -.set Lset28792, Ldebug_loc230-Lsection_debug_loc ## DW_AT_location - .long Lset28792 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1302 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x136:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1302 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x143:0x34 DW_TAG_lexical_block -.set Lset28793, Ldebug_ranges54-Ldebug_range ## DW_AT_ranges - .long Lset28793 - .byte 7 ## Abbrev [7] 0x148:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1306 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x154:0x22 DW_TAG_lexical_block -.set Lset28794, Ldebug_ranges53-Ldebug_range ## DW_AT_ranges - .long Lset28794 - .byte 5 ## Abbrev [5] 0x159:0x10 DW_TAG_variable -.set Lset28795, Ldebug_loc229-Lsection_debug_loc ## DW_AT_location - .long Lset28795 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1307 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x169:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1307 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x177:0x34 DW_TAG_lexical_block -.set Lset28796, Ldebug_ranges56-Ldebug_range ## DW_AT_ranges - .long Lset28796 - .byte 7 ## Abbrev [7] 0x17c:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1311 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x188:0x22 DW_TAG_lexical_block -.set Lset28797, Ldebug_ranges55-Ldebug_range ## DW_AT_ranges - .long Lset28797 - .byte 5 ## Abbrev [5] 0x18d:0x10 DW_TAG_variable -.set Lset28798, Ldebug_loc228-Lsection_debug_loc ## DW_AT_location - .long Lset28798 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1314 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x19d:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1314 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x1ab:0x1e DW_TAG_lexical_block - .quad Ltmp1267 ## DW_AT_low_pc -.set Lset28799, Ltmp1270-Ltmp1267 ## DW_AT_high_pc - .long Lset28799 - .byte 5 ## Abbrev [5] 0x1b8:0x10 DW_TAG_variable -.set Lset28800, Ldebug_loc227-Lsection_debug_loc ## DW_AT_location - .long Lset28800 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1318 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1c9:0x16 DW_TAG_lexical_block -.set Lset28801, Ldebug_ranges57-Ldebug_range ## DW_AT_ranges - .long Lset28801 - .byte 5 ## Abbrev [5] 0x1ce:0x10 DW_TAG_variable -.set Lset28802, Ldebug_loc285-Lsection_debug_loc ## DW_AT_location - .long Lset28802 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1323 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1df:0x3c DW_TAG_lexical_block -.set Lset28803, Ldebug_ranges59-Ldebug_range ## DW_AT_ranges - .long Lset28803 - .byte 5 ## Abbrev [5] 0x1e4:0x10 DW_TAG_variable -.set Lset28804, Ldebug_loc286-Lsection_debug_loc ## DW_AT_location - .long Lset28804 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1330 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1f4:0x26 DW_TAG_lexical_block -.set Lset28805, Ldebug_ranges58-Ldebug_range ## DW_AT_ranges - .long Lset28805 - .byte 5 ## Abbrev [5] 0x1f9:0x10 DW_TAG_variable -.set Lset28806, Ldebug_loc226-Lsection_debug_loc ## DW_AT_location - .long Lset28806 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1331 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x209:0x10 DW_TAG_variable -.set Lset28807, Ldebug_loc287-Lsection_debug_loc ## DW_AT_location - .long Lset28807 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1331 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x21b:0x3c DW_TAG_lexical_block -.set Lset28808, Ldebug_ranges61-Ldebug_range ## DW_AT_ranges - .long Lset28808 - .byte 5 ## Abbrev [5] 0x220:0x10 DW_TAG_variable -.set Lset28809, Ldebug_loc288-Lsection_debug_loc ## DW_AT_location - .long Lset28809 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1335 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x230:0x26 DW_TAG_lexical_block -.set Lset28810, Ldebug_ranges60-Ldebug_range ## DW_AT_ranges - .long Lset28810 - .byte 5 ## Abbrev [5] 0x235:0x10 DW_TAG_variable -.set Lset28811, Ldebug_loc225-Lsection_debug_loc ## DW_AT_location - .long Lset28811 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1336 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x245:0x10 DW_TAG_variable -.set Lset28812, Ldebug_loc289-Lsection_debug_loc ## DW_AT_location - .long Lset28812 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1336 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x257:0x15c DW_TAG_lexical_block -.set Lset28813, Ldebug_ranges65-Ldebug_range ## DW_AT_ranges - .long Lset28813 - .byte 5 ## Abbrev [5] 0x25c:0x10 DW_TAG_variable -.set Lset28814, Ldebug_loc290-Lsection_debug_loc ## DW_AT_location - .long Lset28814 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1342 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x26c:0x10 DW_TAG_variable -.set Lset28815, Ldebug_loc291-Lsection_debug_loc ## DW_AT_location - .long Lset28815 - .long 5200 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1341 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27c:0x6a DW_TAG_lexical_block - .quad Ltmp1370 ## DW_AT_low_pc -.set Lset28816, Ltmp1381-Ltmp1370 ## DW_AT_high_pc - .long Lset28816 - .byte 5 ## Abbrev [5] 0x289:0x10 DW_TAG_variable -.set Lset28817, Ldebug_loc292-Lsection_debug_loc ## DW_AT_location - .long Lset28817 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x299:0x4c DW_TAG_lexical_block - .quad Ltmp1374 ## DW_AT_low_pc -.set Lset28818, Ltmp1381-Ltmp1374 ## DW_AT_high_pc - .long Lset28818 - .byte 5 ## Abbrev [5] 0x2a6:0x10 DW_TAG_variable -.set Lset28819, Ldebug_loc293-Lsection_debug_loc ## DW_AT_location - .long Lset28819 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b6:0x10 DW_TAG_variable -.set Lset28820, Ldebug_loc294-Lsection_debug_loc ## DW_AT_location - .long Lset28820 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2c6:0x1e DW_TAG_lexical_block - .quad Ltmp1379 ## DW_AT_low_pc -.set Lset28821, Ltmp1381-Ltmp1379 ## DW_AT_high_pc - .long Lset28821 - .byte 5 ## Abbrev [5] 0x2d3:0x10 DW_TAG_variable -.set Lset28822, Ldebug_loc223-Lsection_debug_loc ## DW_AT_location - .long Lset28822 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x2e6:0x6a DW_TAG_lexical_block - .quad Ltmp1388 ## DW_AT_low_pc -.set Lset28823, Ltmp1399-Ltmp1388 ## DW_AT_high_pc - .long Lset28823 - .byte 5 ## Abbrev [5] 0x2f3:0x10 DW_TAG_variable -.set Lset28824, Ldebug_loc295-Lsection_debug_loc ## DW_AT_location - .long Lset28824 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x303:0x4c DW_TAG_lexical_block - .quad Ltmp1392 ## DW_AT_low_pc -.set Lset28825, Ltmp1399-Ltmp1392 ## DW_AT_high_pc - .long Lset28825 - .byte 5 ## Abbrev [5] 0x310:0x10 DW_TAG_variable -.set Lset28826, Ldebug_loc296-Lsection_debug_loc ## DW_AT_location - .long Lset28826 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x320:0x10 DW_TAG_variable -.set Lset28827, Ldebug_loc297-Lsection_debug_loc ## DW_AT_location - .long Lset28827 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x330:0x1e DW_TAG_lexical_block - .quad Ltmp1397 ## DW_AT_low_pc -.set Lset28828, Ltmp1399-Ltmp1397 ## DW_AT_high_pc - .long Lset28828 - .byte 5 ## Abbrev [5] 0x33d:0x10 DW_TAG_variable -.set Lset28829, Ldebug_loc222-Lsection_debug_loc ## DW_AT_location - .long Lset28829 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x350:0x62 DW_TAG_lexical_block -.set Lset28830, Ldebug_ranges64-Ldebug_range ## DW_AT_ranges - .long Lset28830 - .byte 5 ## Abbrev [5] 0x355:0x10 DW_TAG_variable -.set Lset28831, Ldebug_loc300-Lsection_debug_loc ## DW_AT_location - .long Lset28831 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x365:0x26 DW_TAG_lexical_block -.set Lset28832, Ldebug_ranges62-Ldebug_range ## DW_AT_ranges - .long Lset28832 - .byte 5 ## Abbrev [5] 0x36a:0x10 DW_TAG_variable -.set Lset28833, Ldebug_loc298-Lsection_debug_loc ## DW_AT_location - .long Lset28833 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x37a:0x10 DW_TAG_variable -.set Lset28834, Ldebug_loc299-Lsection_debug_loc ## DW_AT_location - .long Lset28834 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x38b:0x26 DW_TAG_lexical_block -.set Lset28835, Ldebug_ranges63-Ldebug_range ## DW_AT_ranges - .long Lset28835 - .byte 5 ## Abbrev [5] 0x390:0x10 DW_TAG_variable -.set Lset28836, Ldebug_loc224-Lsection_debug_loc ## DW_AT_location - .long Lset28836 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3a0:0x10 DW_TAG_variable -.set Lset28837, Ldebug_loc301-Lsection_debug_loc ## DW_AT_location - .long Lset28837 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1343 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3b3:0x15c DW_TAG_lexical_block -.set Lset28838, Ldebug_ranges69-Ldebug_range ## DW_AT_ranges - .long Lset28838 - .byte 5 ## Abbrev [5] 0x3b8:0x10 DW_TAG_variable -.set Lset28839, Ldebug_loc302-Lsection_debug_loc ## DW_AT_location - .long Lset28839 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1348 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x3c8:0x10 DW_TAG_variable -.set Lset28840, Ldebug_loc303-Lsection_debug_loc ## DW_AT_location - .long Lset28840 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1347 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x3d8:0x6a DW_TAG_lexical_block - .quad Ltmp1465 ## DW_AT_low_pc -.set Lset28841, Ltmp1476-Ltmp1465 ## DW_AT_high_pc - .long Lset28841 - .byte 5 ## Abbrev [5] 0x3e5:0x10 DW_TAG_variable -.set Lset28842, Ldebug_loc304-Lsection_debug_loc ## DW_AT_location - .long Lset28842 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x3f5:0x4c DW_TAG_lexical_block - .quad Ltmp1469 ## DW_AT_low_pc -.set Lset28843, Ltmp1476-Ltmp1469 ## DW_AT_high_pc - .long Lset28843 - .byte 5 ## Abbrev [5] 0x402:0x10 DW_TAG_variable -.set Lset28844, Ldebug_loc305-Lsection_debug_loc ## DW_AT_location - .long Lset28844 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x412:0x10 DW_TAG_variable -.set Lset28845, Ldebug_loc306-Lsection_debug_loc ## DW_AT_location - .long Lset28845 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x422:0x1e DW_TAG_lexical_block - .quad Ltmp1474 ## DW_AT_low_pc -.set Lset28846, Ltmp1476-Ltmp1474 ## DW_AT_high_pc - .long Lset28846 - .byte 5 ## Abbrev [5] 0x42f:0x10 DW_TAG_variable -.set Lset28847, Ldebug_loc220-Lsection_debug_loc ## DW_AT_location - .long Lset28847 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x442:0x6a DW_TAG_lexical_block - .quad Ltmp1483 ## DW_AT_low_pc -.set Lset28848, Ltmp1494-Ltmp1483 ## DW_AT_high_pc - .long Lset28848 - .byte 5 ## Abbrev [5] 0x44f:0x10 DW_TAG_variable -.set Lset28849, Ldebug_loc307-Lsection_debug_loc ## DW_AT_location - .long Lset28849 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x45f:0x4c DW_TAG_lexical_block - .quad Ltmp1487 ## DW_AT_low_pc -.set Lset28850, Ltmp1494-Ltmp1487 ## DW_AT_high_pc - .long Lset28850 - .byte 5 ## Abbrev [5] 0x46c:0x10 DW_TAG_variable -.set Lset28851, Ldebug_loc308-Lsection_debug_loc ## DW_AT_location - .long Lset28851 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x47c:0x10 DW_TAG_variable -.set Lset28852, Ldebug_loc309-Lsection_debug_loc ## DW_AT_location - .long Lset28852 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x48c:0x1e DW_TAG_lexical_block - .quad Ltmp1492 ## DW_AT_low_pc -.set Lset28853, Ltmp1494-Ltmp1492 ## DW_AT_high_pc - .long Lset28853 - .byte 5 ## Abbrev [5] 0x499:0x10 DW_TAG_variable -.set Lset28854, Ldebug_loc219-Lsection_debug_loc ## DW_AT_location - .long Lset28854 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4ac:0x62 DW_TAG_lexical_block -.set Lset28855, Ldebug_ranges68-Ldebug_range ## DW_AT_ranges - .long Lset28855 - .byte 5 ## Abbrev [5] 0x4b1:0x10 DW_TAG_variable -.set Lset28856, Ldebug_loc312-Lsection_debug_loc ## DW_AT_location - .long Lset28856 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4c1:0x26 DW_TAG_lexical_block -.set Lset28857, Ldebug_ranges66-Ldebug_range ## DW_AT_ranges - .long Lset28857 - .byte 5 ## Abbrev [5] 0x4c6:0x10 DW_TAG_variable -.set Lset28858, Ldebug_loc310-Lsection_debug_loc ## DW_AT_location - .long Lset28858 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4d6:0x10 DW_TAG_variable -.set Lset28859, Ldebug_loc311-Lsection_debug_loc ## DW_AT_location - .long Lset28859 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4e7:0x26 DW_TAG_lexical_block -.set Lset28860, Ldebug_ranges67-Ldebug_range ## DW_AT_ranges - .long Lset28860 - .byte 5 ## Abbrev [5] 0x4ec:0x10 DW_TAG_variable -.set Lset28861, Ldebug_loc221-Lsection_debug_loc ## DW_AT_location - .long Lset28861 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4fc:0x10 DW_TAG_variable -.set Lset28862, Ldebug_loc313-Lsection_debug_loc ## DW_AT_location - .long Lset28862 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1349 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x50f:0x1d1 DW_TAG_lexical_block -.set Lset28863, Ldebug_ranges82-Ldebug_range ## DW_AT_ranges - .long Lset28863 - .byte 5 ## Abbrev [5] 0x514:0x10 DW_TAG_variable -.set Lset28864, Ldebug_loc314-Lsection_debug_loc ## DW_AT_location - .long Lset28864 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1355 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x524:0x10 DW_TAG_variable -.set Lset28865, Ldebug_loc315-Lsection_debug_loc ## DW_AT_location - .long Lset28865 - .long 5200 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1353 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x534:0x10 DW_TAG_variable -.set Lset28866, Ldebug_loc316-Lsection_debug_loc ## DW_AT_location - .long Lset28866 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1354 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x544:0x9e DW_TAG_lexical_block -.set Lset28867, Ldebug_ranges74-Ldebug_range ## DW_AT_ranges - .long Lset28867 - .byte 5 ## Abbrev [5] 0x549:0x10 DW_TAG_variable -.set Lset28868, Ldebug_loc317-Lsection_debug_loc ## DW_AT_location - .long Lset28868 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x559:0x26 DW_TAG_lexical_block -.set Lset28869, Ldebug_ranges70-Ldebug_range ## DW_AT_ranges - .long Lset28869 - .byte 5 ## Abbrev [5] 0x55e:0x10 DW_TAG_variable -.set Lset28870, Ldebug_loc318-Lsection_debug_loc ## DW_AT_location - .long Lset28870 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x56e:0x10 DW_TAG_variable -.set Lset28871, Ldebug_loc321-Lsection_debug_loc ## DW_AT_location - .long Lset28871 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x57f:0x26 DW_TAG_lexical_block -.set Lset28872, Ldebug_ranges71-Ldebug_range ## DW_AT_ranges - .long Lset28872 - .byte 5 ## Abbrev [5] 0x584:0x10 DW_TAG_variable -.set Lset28873, Ldebug_loc326-Lsection_debug_loc ## DW_AT_location - .long Lset28873 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x594:0x10 DW_TAG_variable -.set Lset28874, Ldebug_loc327-Lsection_debug_loc ## DW_AT_location - .long Lset28874 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5a5:0x3c DW_TAG_lexical_block -.set Lset28875, Ldebug_ranges73-Ldebug_range ## DW_AT_ranges - .long Lset28875 - .byte 5 ## Abbrev [5] 0x5aa:0x10 DW_TAG_variable -.set Lset28876, Ldebug_loc328-Lsection_debug_loc ## DW_AT_location - .long Lset28876 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5ba:0x26 DW_TAG_lexical_block -.set Lset28877, Ldebug_ranges72-Ldebug_range ## DW_AT_ranges - .long Lset28877 - .byte 5 ## Abbrev [5] 0x5bf:0x10 DW_TAG_variable -.set Lset28878, Ldebug_loc329-Lsection_debug_loc ## DW_AT_location - .long Lset28878 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5cf:0x10 DW_TAG_variable -.set Lset28879, Ldebug_loc330-Lsection_debug_loc ## DW_AT_location - .long Lset28879 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5e2:0x9b DW_TAG_lexical_block -.set Lset28880, Ldebug_ranges78-Ldebug_range ## DW_AT_ranges - .long Lset28880 - .byte 5 ## Abbrev [5] 0x5e7:0x10 DW_TAG_variable -.set Lset28881, Ldebug_loc319-Lsection_debug_loc ## DW_AT_location - .long Lset28881 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5f7:0x22 DW_TAG_lexical_block -.set Lset28882, Ldebug_ranges75-Ldebug_range ## DW_AT_ranges - .long Lset28882 - .byte 5 ## Abbrev [5] 0x5fc:0x10 DW_TAG_variable -.set Lset28883, Ldebug_loc320-Lsection_debug_loc ## DW_AT_location - .long Lset28883 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x60c:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x619:0x63 DW_TAG_lexical_block -.set Lset28884, Ldebug_ranges77-Ldebug_range ## DW_AT_ranges - .long Lset28884 - .byte 5 ## Abbrev [5] 0x61e:0x10 DW_TAG_variable -.set Lset28885, Ldebug_loc331-Lsection_debug_loc ## DW_AT_location - .long Lset28885 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x62e:0x27 DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp1629 ## DW_AT_low_pc -.set Lset28886, Ltmp1630-Ltmp1629 ## DW_AT_high_pc - .long Lset28886 - .byte 1 ## DW_AT_call_file - .short 1356 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x642:0x9 DW_TAG_formal_parameter -.set Lset28887, Ldebug_loc335-Lsection_debug_loc ## DW_AT_location - .long Lset28887 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x64b:0x9 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\270~" - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x655:0x26 DW_TAG_lexical_block -.set Lset28888, Ldebug_ranges76-Ldebug_range ## DW_AT_ranges - .long Lset28888 - .byte 5 ## Abbrev [5] 0x65a:0x10 DW_TAG_variable -.set Lset28889, Ldebug_loc332-Lsection_debug_loc ## DW_AT_location - .long Lset28889 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x66a:0x10 DW_TAG_variable -.set Lset28890, Ldebug_loc333-Lsection_debug_loc ## DW_AT_location - .long Lset28890 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x67d:0x62 DW_TAG_lexical_block -.set Lset28891, Ldebug_ranges81-Ldebug_range ## DW_AT_ranges - .long Lset28891 - .byte 5 ## Abbrev [5] 0x682:0x10 DW_TAG_variable -.set Lset28892, Ldebug_loc324-Lsection_debug_loc ## DW_AT_location - .long Lset28892 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x692:0x26 DW_TAG_lexical_block -.set Lset28893, Ldebug_ranges79-Ldebug_range ## DW_AT_ranges - .long Lset28893 - .byte 5 ## Abbrev [5] 0x697:0x10 DW_TAG_variable -.set Lset28894, Ldebug_loc322-Lsection_debug_loc ## DW_AT_location - .long Lset28894 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6a7:0x10 DW_TAG_variable -.set Lset28895, Ldebug_loc323-Lsection_debug_loc ## DW_AT_location - .long Lset28895 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6b8:0x26 DW_TAG_lexical_block -.set Lset28896, Ldebug_ranges80-Ldebug_range ## DW_AT_ranges - .long Lset28896 - .byte 5 ## Abbrev [5] 0x6bd:0x10 DW_TAG_variable -.set Lset28897, Ldebug_loc325-Lsection_debug_loc ## DW_AT_location - .long Lset28897 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6cd:0x10 DW_TAG_variable -.set Lset28898, Ldebug_loc334-Lsection_debug_loc ## DW_AT_location - .long Lset28898 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1356 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6e0:0x1c1 DW_TAG_lexical_block -.set Lset28899, Ldebug_ranges95-Ldebug_range ## DW_AT_ranges - .long Lset28899 - .byte 5 ## Abbrev [5] 0x6e5:0x10 DW_TAG_variable -.set Lset28900, Ldebug_loc336-Lsection_debug_loc ## DW_AT_location - .long Lset28900 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1361 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6f5:0x10 DW_TAG_variable -.set Lset28901, Ldebug_loc337-Lsection_debug_loc ## DW_AT_location - .long Lset28901 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1360 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x705:0x9e DW_TAG_lexical_block -.set Lset28902, Ldebug_ranges87-Ldebug_range ## DW_AT_ranges - .long Lset28902 - .byte 5 ## Abbrev [5] 0x70a:0x10 DW_TAG_variable -.set Lset28903, Ldebug_loc338-Lsection_debug_loc ## DW_AT_location - .long Lset28903 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x71a:0x26 DW_TAG_lexical_block -.set Lset28904, Ldebug_ranges83-Ldebug_range ## DW_AT_ranges - .long Lset28904 - .byte 5 ## Abbrev [5] 0x71f:0x10 DW_TAG_variable -.set Lset28905, Ldebug_loc339-Lsection_debug_loc ## DW_AT_location - .long Lset28905 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x72f:0x10 DW_TAG_variable -.set Lset28906, Ldebug_loc342-Lsection_debug_loc ## DW_AT_location - .long Lset28906 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x740:0x26 DW_TAG_lexical_block -.set Lset28907, Ldebug_ranges84-Ldebug_range ## DW_AT_ranges - .long Lset28907 - .byte 5 ## Abbrev [5] 0x745:0x10 DW_TAG_variable -.set Lset28908, Ldebug_loc347-Lsection_debug_loc ## DW_AT_location - .long Lset28908 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x755:0x10 DW_TAG_variable -.set Lset28909, Ldebug_loc348-Lsection_debug_loc ## DW_AT_location - .long Lset28909 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x766:0x3c DW_TAG_lexical_block -.set Lset28910, Ldebug_ranges86-Ldebug_range ## DW_AT_ranges - .long Lset28910 - .byte 5 ## Abbrev [5] 0x76b:0x10 DW_TAG_variable -.set Lset28911, Ldebug_loc349-Lsection_debug_loc ## DW_AT_location - .long Lset28911 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x77b:0x26 DW_TAG_lexical_block -.set Lset28912, Ldebug_ranges85-Ldebug_range ## DW_AT_ranges - .long Lset28912 - .byte 5 ## Abbrev [5] 0x780:0x10 DW_TAG_variable -.set Lset28913, Ldebug_loc350-Lsection_debug_loc ## DW_AT_location - .long Lset28913 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x790:0x10 DW_TAG_variable -.set Lset28914, Ldebug_loc351-Lsection_debug_loc ## DW_AT_location - .long Lset28914 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7a3:0x9b DW_TAG_lexical_block -.set Lset28915, Ldebug_ranges91-Ldebug_range ## DW_AT_ranges - .long Lset28915 - .byte 5 ## Abbrev [5] 0x7a8:0x10 DW_TAG_variable -.set Lset28916, Ldebug_loc340-Lsection_debug_loc ## DW_AT_location - .long Lset28916 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7b8:0x22 DW_TAG_lexical_block -.set Lset28917, Ldebug_ranges88-Ldebug_range ## DW_AT_ranges - .long Lset28917 - .byte 5 ## Abbrev [5] 0x7bd:0x10 DW_TAG_variable -.set Lset28918, Ldebug_loc341-Lsection_debug_loc ## DW_AT_location - .long Lset28918 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7cd:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7da:0x63 DW_TAG_lexical_block -.set Lset28919, Ldebug_ranges90-Ldebug_range ## DW_AT_ranges - .long Lset28919 - .byte 5 ## Abbrev [5] 0x7df:0x10 DW_TAG_variable -.set Lset28920, Ldebug_loc352-Lsection_debug_loc ## DW_AT_location - .long Lset28920 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x7ef:0x27 DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp1781 ## DW_AT_low_pc -.set Lset28921, Ltmp1782-Ltmp1781 ## DW_AT_high_pc - .long Lset28921 - .byte 1 ## DW_AT_call_file - .short 1362 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x803:0x9 DW_TAG_formal_parameter -.set Lset28922, Ldebug_loc356-Lsection_debug_loc ## DW_AT_location - .long Lset28922 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x80c:0x9 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\310~" - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x816:0x26 DW_TAG_lexical_block -.set Lset28923, Ldebug_ranges89-Ldebug_range ## DW_AT_ranges - .long Lset28923 - .byte 5 ## Abbrev [5] 0x81b:0x10 DW_TAG_variable -.set Lset28924, Ldebug_loc353-Lsection_debug_loc ## DW_AT_location - .long Lset28924 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x82b:0x10 DW_TAG_variable -.set Lset28925, Ldebug_loc354-Lsection_debug_loc ## DW_AT_location - .long Lset28925 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x83e:0x62 DW_TAG_lexical_block -.set Lset28926, Ldebug_ranges94-Ldebug_range ## DW_AT_ranges - .long Lset28926 - .byte 5 ## Abbrev [5] 0x843:0x10 DW_TAG_variable -.set Lset28927, Ldebug_loc345-Lsection_debug_loc ## DW_AT_location - .long Lset28927 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x853:0x26 DW_TAG_lexical_block -.set Lset28928, Ldebug_ranges92-Ldebug_range ## DW_AT_ranges - .long Lset28928 - .byte 5 ## Abbrev [5] 0x858:0x10 DW_TAG_variable -.set Lset28929, Ldebug_loc343-Lsection_debug_loc ## DW_AT_location - .long Lset28929 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x868:0x10 DW_TAG_variable -.set Lset28930, Ldebug_loc344-Lsection_debug_loc ## DW_AT_location - .long Lset28930 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x879:0x26 DW_TAG_lexical_block -.set Lset28931, Ldebug_ranges93-Ldebug_range ## DW_AT_ranges - .long Lset28931 - .byte 5 ## Abbrev [5] 0x87e:0x10 DW_TAG_variable -.set Lset28932, Ldebug_loc346-Lsection_debug_loc ## DW_AT_location - .long Lset28932 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x88e:0x10 DW_TAG_variable -.set Lset28933, Ldebug_loc355-Lsection_debug_loc ## DW_AT_location - .long Lset28933 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1362 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x8a1:0x1bb DW_TAG_lexical_block -.set Lset28934, Ldebug_ranges107-Ldebug_range ## DW_AT_ranges - .long Lset28934 - .byte 5 ## Abbrev [5] 0x8a6:0x10 DW_TAG_variable -.set Lset28935, Ldebug_loc357-Lsection_debug_loc ## DW_AT_location - .long Lset28935 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1367 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x8b6:0x10 DW_TAG_variable -.set Lset28936, Ldebug_loc358-Lsection_debug_loc ## DW_AT_location - .long Lset28936 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1366 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x8c6:0x9b DW_TAG_lexical_block -.set Lset28937, Ldebug_ranges99-Ldebug_range ## DW_AT_ranges - .long Lset28937 - .byte 5 ## Abbrev [5] 0x8cb:0x10 DW_TAG_variable -.set Lset28938, Ldebug_loc359-Lsection_debug_loc ## DW_AT_location - .long Lset28938 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x8db:0x22 DW_TAG_lexical_block -.set Lset28939, Ldebug_ranges96-Ldebug_range ## DW_AT_ranges - .long Lset28939 - .byte 5 ## Abbrev [5] 0x8e0:0x10 DW_TAG_variable -.set Lset28940, Ldebug_loc360-Lsection_debug_loc ## DW_AT_location - .long Lset28940 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x8f0:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x8fd:0x63 DW_TAG_lexical_block -.set Lset28941, Ldebug_ranges98-Ldebug_range ## DW_AT_ranges - .long Lset28941 - .byte 5 ## Abbrev [5] 0x902:0x10 DW_TAG_variable -.set Lset28942, Ldebug_loc368-Lsection_debug_loc ## DW_AT_location - .long Lset28942 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x912:0x27 DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp1913 ## DW_AT_low_pc -.set Lset28943, Ltmp1914-Ltmp1913 ## DW_AT_high_pc - .long Lset28943 - .byte 1 ## DW_AT_call_file - .short 1368 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x926:0x9 DW_TAG_formal_parameter -.set Lset28944, Ldebug_loc372-Lsection_debug_loc ## DW_AT_location - .long Lset28944 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x92f:0x9 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\330~" - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x939:0x26 DW_TAG_lexical_block -.set Lset28945, Ldebug_ranges97-Ldebug_range ## DW_AT_ranges - .long Lset28945 - .byte 5 ## Abbrev [5] 0x93e:0x10 DW_TAG_variable -.set Lset28946, Ldebug_loc369-Lsection_debug_loc ## DW_AT_location - .long Lset28946 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x94e:0x10 DW_TAG_variable -.set Lset28947, Ldebug_loc370-Lsection_debug_loc ## DW_AT_location - .long Lset28947 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x961:0x9e DW_TAG_lexical_block -.set Lset28948, Ldebug_ranges104-Ldebug_range ## DW_AT_ranges - .long Lset28948 - .byte 5 ## Abbrev [5] 0x966:0x10 DW_TAG_variable -.set Lset28949, Ldebug_loc362-Lsection_debug_loc ## DW_AT_location - .long Lset28949 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x976:0x26 DW_TAG_lexical_block -.set Lset28950, Ldebug_ranges100-Ldebug_range ## DW_AT_ranges - .long Lset28950 - .byte 5 ## Abbrev [5] 0x97b:0x10 DW_TAG_variable -.set Lset28951, Ldebug_loc361-Lsection_debug_loc ## DW_AT_location - .long Lset28951 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x98b:0x10 DW_TAG_variable -.set Lset28952, Ldebug_loc377-Lsection_debug_loc ## DW_AT_location - .long Lset28952 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x99c:0x26 DW_TAG_lexical_block -.set Lset28953, Ldebug_ranges101-Ldebug_range ## DW_AT_ranges - .long Lset28953 - .byte 5 ## Abbrev [5] 0x9a1:0x10 DW_TAG_variable -.set Lset28954, Ldebug_loc363-Lsection_debug_loc ## DW_AT_location - .long Lset28954 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x9b1:0x10 DW_TAG_variable -.set Lset28955, Ldebug_loc364-Lsection_debug_loc ## DW_AT_location - .long Lset28955 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x9c2:0x3c DW_TAG_lexical_block -.set Lset28956, Ldebug_ranges103-Ldebug_range ## DW_AT_ranges - .long Lset28956 - .byte 5 ## Abbrev [5] 0x9c7:0x10 DW_TAG_variable -.set Lset28957, Ldebug_loc365-Lsection_debug_loc ## DW_AT_location - .long Lset28957 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x9d7:0x26 DW_TAG_lexical_block -.set Lset28958, Ldebug_ranges102-Ldebug_range ## DW_AT_ranges - .long Lset28958 - .byte 5 ## Abbrev [5] 0x9dc:0x10 DW_TAG_variable -.set Lset28959, Ldebug_loc366-Lsection_debug_loc ## DW_AT_location - .long Lset28959 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x9ec:0x10 DW_TAG_variable -.set Lset28960, Ldebug_loc367-Lsection_debug_loc ## DW_AT_location - .long Lset28960 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x9ff:0x5c DW_TAG_lexical_block -.set Lset28961, Ldebug_ranges106-Ldebug_range ## DW_AT_ranges - .long Lset28961 - .byte 5 ## Abbrev [5] 0xa04:0x10 DW_TAG_variable -.set Lset28962, Ldebug_loc373-Lsection_debug_loc ## DW_AT_location - .long Lset28962 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa14:0x10 DW_TAG_variable -.set Lset28963, Ldebug_loc374-Lsection_debug_loc ## DW_AT_location - .long Lset28963 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa24:0x10 DW_TAG_variable -.set Lset28964, Ldebug_loc375-Lsection_debug_loc ## DW_AT_location - .long Lset28964 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xa34:0x26 DW_TAG_lexical_block -.set Lset28965, Ldebug_ranges105-Ldebug_range ## DW_AT_ranges - .long Lset28965 - .byte 5 ## Abbrev [5] 0xa39:0x10 DW_TAG_variable -.set Lset28966, Ldebug_loc371-Lsection_debug_loc ## DW_AT_location - .long Lset28966 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa49:0x10 DW_TAG_variable -.set Lset28967, Ldebug_loc376-Lsection_debug_loc ## DW_AT_location - .long Lset28967 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1368 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xa5c:0x90 DW_TAG_lexical_block -.set Lset28968, Ldebug_ranges112-Ldebug_range ## DW_AT_ranges - .long Lset28968 - .byte 5 ## Abbrev [5] 0xa61:0x10 DW_TAG_variable -.set Lset28969, Ldebug_loc378-Lsection_debug_loc ## DW_AT_location - .long Lset28969 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1374 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xa71:0x10 DW_TAG_variable -.set Lset28970, Ldebug_loc379-Lsection_debug_loc ## DW_AT_location - .long Lset28970 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1373 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xa81:0x6a DW_TAG_lexical_block -.set Lset28971, Ldebug_ranges111-Ldebug_range ## DW_AT_ranges - .long Lset28971 - .byte 5 ## Abbrev [5] 0xa86:0x10 DW_TAG_variable -.set Lset28972, Ldebug_loc385-Lsection_debug_loc ## DW_AT_location - .long Lset28972 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1375 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 12 ## Abbrev [12] 0xa96:0x2e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin -.set Lset28973, Ldebug_ranges108-Ldebug_range ## DW_AT_ranges - .long Lset28973 - .byte 1 ## DW_AT_call_file - .short 1375 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xaa2:0x9 DW_TAG_formal_parameter -.set Lset28974, Ldebug_loc381-Lsection_debug_loc ## DW_AT_location - .long Lset28974 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0xaab:0x9 DW_TAG_variable -.set Lset28975, Ldebug_loc382-Lsection_debug_loc ## DW_AT_location - .long Lset28975 - .long 22418 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0xab4:0xf DW_TAG_lexical_block -.set Lset28976, Ldebug_ranges109-Ldebug_range ## DW_AT_ranges - .long Lset28976 - .byte 13 ## Abbrev [13] 0xab9:0x9 DW_TAG_variable -.set Lset28977, Ldebug_loc383-Lsection_debug_loc ## DW_AT_location - .long Lset28977 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xac4:0x26 DW_TAG_lexical_block -.set Lset28978, Ldebug_ranges110-Ldebug_range ## DW_AT_ranges - .long Lset28978 - .byte 5 ## Abbrev [5] 0xac9:0x10 DW_TAG_variable -.set Lset28979, Ldebug_loc380-Lsection_debug_loc ## DW_AT_location - .long Lset28979 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1375 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xad9:0x10 DW_TAG_variable -.set Lset28980, Ldebug_loc384-Lsection_debug_loc ## DW_AT_location - .long Lset28980 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1375 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xaec:0x5c DW_TAG_lexical_block -.set Lset28981, Ldebug_ranges114-Ldebug_range ## DW_AT_ranges - .long Lset28981 - .byte 5 ## Abbrev [5] 0xaf1:0x10 DW_TAG_variable -.set Lset28982, Ldebug_loc387-Lsection_debug_loc ## DW_AT_location - .long Lset28982 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1381 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb01:0x10 DW_TAG_variable -.set Lset28983, Ldebug_loc388-Lsection_debug_loc ## DW_AT_location - .long Lset28983 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1379 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb11:0x10 DW_TAG_variable -.set Lset28984, Ldebug_loc389-Lsection_debug_loc ## DW_AT_location - .long Lset28984 - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1380 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xb21:0x26 DW_TAG_lexical_block -.set Lset28985, Ldebug_ranges113-Ldebug_range ## DW_AT_ranges - .long Lset28985 - .byte 5 ## Abbrev [5] 0xb26:0x10 DW_TAG_variable -.set Lset28986, Ldebug_loc218-Lsection_debug_loc ## DW_AT_location - .long Lset28986 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1384 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb36:0x10 DW_TAG_variable -.set Lset28987, Ldebug_loc386-Lsection_debug_loc ## DW_AT_location - .long Lset28987 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1384 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xb48:0xc2 DW_TAG_lexical_block -.set Lset28988, Ldebug_ranges118-Ldebug_range ## DW_AT_ranges - .long Lset28988 - .byte 5 ## Abbrev [5] 0xb4d:0x10 DW_TAG_variable -.set Lset28989, Ldebug_loc390-Lsection_debug_loc ## DW_AT_location - .long Lset28989 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1393 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb5d:0x10 DW_TAG_variable -.set Lset28990, Ldebug_loc391-Lsection_debug_loc ## DW_AT_location - .long Lset28990 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1391 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xb6d:0x7a DW_TAG_lexical_block -.set Lset28991, Ldebug_ranges116-Ldebug_range ## DW_AT_ranges - .long Lset28991 - .byte 5 ## Abbrev [5] 0xb72:0x10 DW_TAG_variable -.set Lset28992, Ldebug_loc392-Lsection_debug_loc ## DW_AT_location - .long Lset28992 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1395 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xb82:0x26 DW_TAG_lexical_block -.set Lset28993, Ldebug_ranges115-Ldebug_range ## DW_AT_ranges - .long Lset28993 - .byte 5 ## Abbrev [5] 0xb87:0x10 DW_TAG_variable -.set Lset28994, Ldebug_loc217-Lsection_debug_loc ## DW_AT_location - .long Lset28994 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1395 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xb97:0x10 DW_TAG_variable -.set Lset28995, Ldebug_loc397-Lsection_debug_loc ## DW_AT_location - .long Lset28995 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1395 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0xba8:0x3e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin - .quad Ltmp2161 ## DW_AT_low_pc -.set Lset28996, Ltmp2172-Ltmp2161 ## DW_AT_high_pc - .long Lset28996 - .byte 1 ## DW_AT_call_file - .short 1395 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0xbbc:0x9 DW_TAG_formal_parameter -.set Lset28997, Ldebug_loc394-Lsection_debug_loc ## DW_AT_location - .long Lset28997 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0xbc5:0x9 DW_TAG_variable -.set Lset28998, Ldebug_loc395-Lsection_debug_loc ## DW_AT_location - .long Lset28998 - .long 22418 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0xbce:0x17 DW_TAG_lexical_block - .quad Ltmp2165 ## DW_AT_low_pc -.set Lset28999, Ltmp2172-Ltmp2165 ## DW_AT_high_pc - .long Lset28999 - .byte 13 ## Abbrev [13] 0xbdb:0x9 DW_TAG_variable -.set Lset29000, Ldebug_loc396-Lsection_debug_loc ## DW_AT_location - .long Lset29000 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xbe7:0x22 DW_TAG_lexical_block -.set Lset29001, Ldebug_ranges117-Ldebug_range ## DW_AT_ranges - .long Lset29001 - .byte 5 ## Abbrev [5] 0xbec:0x10 DW_TAG_variable -.set Lset29002, Ldebug_loc393-Lsection_debug_loc ## DW_AT_location - .long Lset29002 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1394 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xbfc:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1394 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xc0a:0x8e DW_TAG_lexical_block -.set Lset29003, Ldebug_ranges121-Ldebug_range ## DW_AT_ranges - .long Lset29003 - .byte 5 ## Abbrev [5] 0xc0f:0x10 DW_TAG_variable -.set Lset29004, Ldebug_loc399-Lsection_debug_loc ## DW_AT_location - .long Lset29004 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1399 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc1f:0x10 DW_TAG_variable -.set Lset29005, Ldebug_loc400-Lsection_debug_loc ## DW_AT_location - .long Lset29005 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1400 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc2f:0x10 DW_TAG_variable -.set Lset29006, Ldebug_loc401-Lsection_debug_loc ## DW_AT_location - .long Lset29006 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1401 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc3f:0x10 DW_TAG_variable -.set Lset29007, Ldebug_loc402-Lsection_debug_loc ## DW_AT_location - .long Lset29007 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1402 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 6 ## Abbrev [6] 0xc4f:0x26 DW_TAG_lexical_block -.set Lset29008, Ldebug_ranges119-Ldebug_range ## DW_AT_ranges - .long Lset29008 - .byte 5 ## Abbrev [5] 0xc54:0x10 DW_TAG_variable -.set Lset29009, Ldebug_loc216-Lsection_debug_loc ## DW_AT_location - .long Lset29009 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1405 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xc64:0x10 DW_TAG_variable -.set Lset29010, Ldebug_loc398-Lsection_debug_loc ## DW_AT_location - .long Lset29010 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1405 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xc75:0x22 DW_TAG_lexical_block -.set Lset29011, Ldebug_ranges120-Ldebug_range ## DW_AT_ranges - .long Lset29011 - .byte 5 ## Abbrev [5] 0xc7a:0x10 DW_TAG_variable -.set Lset29012, Ldebug_loc403-Lsection_debug_loc ## DW_AT_location - .long Lset29012 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1403 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xc8a:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1403 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xc98:0xac DW_TAG_lexical_block -.set Lset29013, Ldebug_ranges122-Ldebug_range ## DW_AT_ranges - .long Lset29013 - .byte 5 ## Abbrev [5] 0xc9d:0x10 DW_TAG_variable -.set Lset29014, Ldebug_loc404-Lsection_debug_loc ## DW_AT_location - .long Lset29014 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1411 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xcad:0x10 DW_TAG_variable -.set Lset29015, Ldebug_loc405-Lsection_debug_loc ## DW_AT_location - .long Lset29015 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1412 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xcbd:0x10 DW_TAG_variable -.set Lset29016, Ldebug_loc407-Lsection_debug_loc ## DW_AT_location - .long Lset29016 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1413 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xccd:0x10 DW_TAG_variable -.set Lset29017, Ldebug_loc408-Lsection_debug_loc ## DW_AT_location - .long Lset29017 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1413 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xcdd:0x1e DW_TAG_lexical_block - .quad Ltmp2292 ## DW_AT_low_pc -.set Lset29018, Ltmp2294-Ltmp2292 ## DW_AT_high_pc - .long Lset29018 - .byte 5 ## Abbrev [5] 0xcea:0x10 DW_TAG_variable -.set Lset29019, Ldebug_loc214-Lsection_debug_loc ## DW_AT_location - .long Lset29019 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1419 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0xcfb:0x48 DW_TAG_lexical_block - .quad Ltmp2273 ## DW_AT_low_pc -.set Lset29020, Ltmp2275-Ltmp2273 ## DW_AT_high_pc - .long Lset29020 - .byte 5 ## Abbrev [5] 0xd08:0x10 DW_TAG_variable -.set Lset29021, Ldebug_loc406-Lsection_debug_loc ## DW_AT_location - .long Lset29021 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1415 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xd18:0xc DW_TAG_variable - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1415 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xd24:0x1e DW_TAG_lexical_block - .quad Ltmp2273 ## DW_AT_low_pc -.set Lset29022, Ltmp2275-Ltmp2273 ## DW_AT_high_pc - .long Lset29022 - .byte 5 ## Abbrev [5] 0xd31:0x10 DW_TAG_variable -.set Lset29023, Ldebug_loc215-Lsection_debug_loc ## DW_AT_location - .long Lset29023 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1416 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xd44:0xac DW_TAG_lexical_block -.set Lset29024, Ldebug_ranges123-Ldebug_range ## DW_AT_ranges - .long Lset29024 - .byte 5 ## Abbrev [5] 0xd49:0x10 DW_TAG_variable -.set Lset29025, Ldebug_loc409-Lsection_debug_loc ## DW_AT_location - .long Lset29025 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1425 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xd59:0x10 DW_TAG_variable -.set Lset29026, Ldebug_loc410-Lsection_debug_loc ## DW_AT_location - .long Lset29026 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1426 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xd69:0x10 DW_TAG_variable -.set Lset29027, Ldebug_loc412-Lsection_debug_loc ## DW_AT_location - .long Lset29027 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1427 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xd79:0x10 DW_TAG_variable -.set Lset29028, Ldebug_loc413-Lsection_debug_loc ## DW_AT_location - .long Lset29028 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1427 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xd89:0x1e DW_TAG_lexical_block - .quad Ltmp2341 ## DW_AT_low_pc -.set Lset29029, Ltmp2343-Ltmp2341 ## DW_AT_high_pc - .long Lset29029 - .byte 5 ## Abbrev [5] 0xd96:0x10 DW_TAG_variable -.set Lset29030, Ldebug_loc212-Lsection_debug_loc ## DW_AT_location - .long Lset29030 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1433 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0xda7:0x48 DW_TAG_lexical_block - .quad Ltmp2322 ## DW_AT_low_pc -.set Lset29031, Ltmp2324-Ltmp2322 ## DW_AT_high_pc - .long Lset29031 - .byte 5 ## Abbrev [5] 0xdb4:0x10 DW_TAG_variable -.set Lset29032, Ldebug_loc411-Lsection_debug_loc ## DW_AT_location - .long Lset29032 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1429 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xdc4:0xc DW_TAG_variable - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1429 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xdd0:0x1e DW_TAG_lexical_block - .quad Ltmp2322 ## DW_AT_low_pc -.set Lset29033, Ltmp2324-Ltmp2322 ## DW_AT_high_pc - .long Lset29033 - .byte 5 ## Abbrev [5] 0xddd:0x10 DW_TAG_variable -.set Lset29034, Ldebug_loc213-Lsection_debug_loc ## DW_AT_location - .long Lset29034 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1430 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xdf0:0xac DW_TAG_lexical_block -.set Lset29035, Ldebug_ranges124-Ldebug_range ## DW_AT_ranges - .long Lset29035 - .byte 5 ## Abbrev [5] 0xdf5:0x10 DW_TAG_variable -.set Lset29036, Ldebug_loc414-Lsection_debug_loc ## DW_AT_location - .long Lset29036 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1439 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xe05:0x10 DW_TAG_variable -.set Lset29037, Ldebug_loc415-Lsection_debug_loc ## DW_AT_location - .long Lset29037 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1440 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xe15:0x10 DW_TAG_variable -.set Lset29038, Ldebug_loc417-Lsection_debug_loc ## DW_AT_location - .long Lset29038 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1441 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xe25:0x10 DW_TAG_variable -.set Lset29039, Ldebug_loc418-Lsection_debug_loc ## DW_AT_location - .long Lset29039 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1441 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xe35:0x1e DW_TAG_lexical_block - .quad Ltmp2390 ## DW_AT_low_pc -.set Lset29040, Ltmp2392-Ltmp2390 ## DW_AT_high_pc - .long Lset29040 - .byte 5 ## Abbrev [5] 0xe42:0x10 DW_TAG_variable -.set Lset29041, Ldebug_loc210-Lsection_debug_loc ## DW_AT_location - .long Lset29041 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1447 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0xe53:0x48 DW_TAG_lexical_block - .quad Ltmp2371 ## DW_AT_low_pc -.set Lset29042, Ltmp2373-Ltmp2371 ## DW_AT_high_pc - .long Lset29042 - .byte 5 ## Abbrev [5] 0xe60:0x10 DW_TAG_variable -.set Lset29043, Ldebug_loc416-Lsection_debug_loc ## DW_AT_location - .long Lset29043 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1443 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0xe70:0xc DW_TAG_variable - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1443 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xe7c:0x1e DW_TAG_lexical_block - .quad Ltmp2371 ## DW_AT_low_pc -.set Lset29044, Ltmp2373-Ltmp2371 ## DW_AT_high_pc - .long Lset29044 - .byte 5 ## Abbrev [5] 0xe89:0x10 DW_TAG_variable -.set Lset29045, Ldebug_loc211-Lsection_debug_loc ## DW_AT_location - .long Lset29045 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1444 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xe9c:0x64 DW_TAG_lexical_block -.set Lset29046, Ldebug_ranges125-Ldebug_range ## DW_AT_ranges - .long Lset29046 - .byte 5 ## Abbrev [5] 0xea1:0x10 DW_TAG_variable -.set Lset29047, Ldebug_loc419-Lsection_debug_loc ## DW_AT_location - .long Lset29047 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1453 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xeb1:0x10 DW_TAG_variable -.set Lset29048, Ldebug_loc420-Lsection_debug_loc ## DW_AT_location - .long Lset29048 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1454 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xec1:0x10 DW_TAG_variable -.set Lset29049, Ldebug_loc421-Lsection_debug_loc ## DW_AT_location - .long Lset29049 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1455 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xed1:0x10 DW_TAG_variable -.set Lset29050, Ldebug_loc422-Lsection_debug_loc ## DW_AT_location - .long Lset29050 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1455 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0xee1:0x1e DW_TAG_lexical_block - .quad Ltmp2434 ## DW_AT_low_pc -.set Lset29051, Ltmp2436-Ltmp2434 ## DW_AT_high_pc - .long Lset29051 - .byte 5 ## Abbrev [5] 0xeee:0x10 DW_TAG_variable -.set Lset29052, Ldebug_loc209-Lsection_debug_loc ## DW_AT_location - .long Lset29052 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1457 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xf00:0xbe DW_TAG_lexical_block -.set Lset29053, Ldebug_ranges128-Ldebug_range ## DW_AT_ranges - .long Lset29053 - .byte 5 ## Abbrev [5] 0xf05:0x10 DW_TAG_variable -.set Lset29054, Ldebug_loc425-Lsection_debug_loc ## DW_AT_location - .long Lset29054 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1465 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xf15:0x10 DW_TAG_variable -.set Lset29055, Ldebug_loc426-Lsection_debug_loc ## DW_AT_location - .long Lset29055 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1464 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xf25:0x10 DW_TAG_variable -.set Lset29056, Ldebug_loc427-Lsection_debug_loc ## DW_AT_location - .long Lset29056 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1463 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xf35:0x10 DW_TAG_variable -.set Lset29057, Ldebug_loc428-Lsection_debug_loc ## DW_AT_location - .long Lset29057 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1465 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0xf45:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29058, Ldebug_ranges126-Ldebug_range ## DW_AT_ranges - .long Lset29058 - .byte 1 ## DW_AT_call_file - .short 1466 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0xf51:0x18 DW_TAG_lexical_block -.set Lset29059, Ldebug_ranges127-Ldebug_range ## DW_AT_ranges - .long Lset29059 - .byte 13 ## Abbrev [13] 0xf56:0x9 DW_TAG_variable -.set Lset29060, Ldebug_loc423-Lsection_debug_loc ## DW_AT_location - .long Lset29060 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0xf5f:0x9 DW_TAG_variable -.set Lset29061, Ldebug_loc424-Lsection_debug_loc ## DW_AT_location - .long Lset29061 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0xf6a:0x1e DW_TAG_lexical_block - .quad Ltmp2469 ## DW_AT_low_pc -.set Lset29062, Ltmp2471-Ltmp2469 ## DW_AT_high_pc - .long Lset29062 - .byte 5 ## Abbrev [5] 0xf77:0x10 DW_TAG_variable -.set Lset29063, Ldebug_loc208-Lsection_debug_loc ## DW_AT_location - .long Lset29063 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1467 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0xf88:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp2471 ## DW_AT_low_pc -.set Lset29064, Ltmp2478-Ltmp2471 ## DW_AT_high_pc - .long Lset29064 - .byte 1 ## DW_AT_call_file - .short 1466 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0xf9c:0x20 DW_TAG_lexical_block - .quad Ltmp2471 ## DW_AT_low_pc -.set Lset29065, Ltmp2478-Ltmp2471 ## DW_AT_high_pc - .long Lset29065 - .byte 13 ## Abbrev [13] 0xfa9:0x9 DW_TAG_variable -.set Lset29066, Ldebug_loc429-Lsection_debug_loc ## DW_AT_location - .long Lset29066 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0xfb2:0x9 DW_TAG_variable -.set Lset29067, Ldebug_loc430-Lsection_debug_loc ## DW_AT_location - .long Lset29067 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0xfbe:0xbe DW_TAG_lexical_block -.set Lset29068, Ldebug_ranges131-Ldebug_range ## DW_AT_ranges - .long Lset29068 - .byte 5 ## Abbrev [5] 0xfc3:0x10 DW_TAG_variable -.set Lset29069, Ldebug_loc433-Lsection_debug_loc ## DW_AT_location - .long Lset29069 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1475 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xfd3:0x10 DW_TAG_variable -.set Lset29070, Ldebug_loc434-Lsection_debug_loc ## DW_AT_location - .long Lset29070 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1474 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xfe3:0x10 DW_TAG_variable -.set Lset29071, Ldebug_loc435-Lsection_debug_loc ## DW_AT_location - .long Lset29071 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1473 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0xff3:0x10 DW_TAG_variable -.set Lset29072, Ldebug_loc436-Lsection_debug_loc ## DW_AT_location - .long Lset29072 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1475 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x1003:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29073, Ldebug_ranges129-Ldebug_range ## DW_AT_ranges - .long Lset29073 - .byte 1 ## DW_AT_call_file - .short 1476 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0x100f:0x18 DW_TAG_lexical_block -.set Lset29074, Ldebug_ranges130-Ldebug_range ## DW_AT_ranges - .long Lset29074 - .byte 13 ## Abbrev [13] 0x1014:0x9 DW_TAG_variable -.set Lset29075, Ldebug_loc431-Lsection_debug_loc ## DW_AT_location - .long Lset29075 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x101d:0x9 DW_TAG_variable -.set Lset29076, Ldebug_loc432-Lsection_debug_loc ## DW_AT_location - .long Lset29076 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x1028:0x1e DW_TAG_lexical_block - .quad Ltmp2524 ## DW_AT_low_pc -.set Lset29077, Ltmp2526-Ltmp2524 ## DW_AT_high_pc - .long Lset29077 - .byte 5 ## Abbrev [5] 0x1035:0x10 DW_TAG_variable -.set Lset29078, Ldebug_loc207-Lsection_debug_loc ## DW_AT_location - .long Lset29078 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1477 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1046:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp2526 ## DW_AT_low_pc -.set Lset29079, Ltmp2533-Ltmp2526 ## DW_AT_high_pc - .long Lset29079 - .byte 1 ## DW_AT_call_file - .short 1476 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x105a:0x20 DW_TAG_lexical_block - .quad Ltmp2526 ## DW_AT_low_pc -.set Lset29080, Ltmp2533-Ltmp2526 ## DW_AT_high_pc - .long Lset29080 - .byte 13 ## Abbrev [13] 0x1067:0x9 DW_TAG_variable -.set Lset29081, Ldebug_loc437-Lsection_debug_loc ## DW_AT_location - .long Lset29081 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x1070:0x9 DW_TAG_variable -.set Lset29082, Ldebug_loc438-Lsection_debug_loc ## DW_AT_location - .long Lset29082 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x107c:0xbe DW_TAG_lexical_block -.set Lset29083, Ldebug_ranges134-Ldebug_range ## DW_AT_ranges - .long Lset29083 - .byte 5 ## Abbrev [5] 0x1081:0x10 DW_TAG_variable -.set Lset29084, Ldebug_loc441-Lsection_debug_loc ## DW_AT_location - .long Lset29084 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1485 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1091:0x10 DW_TAG_variable -.set Lset29085, Ldebug_loc442-Lsection_debug_loc ## DW_AT_location - .long Lset29085 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1484 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x10a1:0x10 DW_TAG_variable -.set Lset29086, Ldebug_loc443-Lsection_debug_loc ## DW_AT_location - .long Lset29086 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1483 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x10b1:0x10 DW_TAG_variable -.set Lset29087, Ldebug_loc444-Lsection_debug_loc ## DW_AT_location - .long Lset29087 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1485 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x10c1:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29088, Ldebug_ranges132-Ldebug_range ## DW_AT_ranges - .long Lset29088 - .byte 1 ## DW_AT_call_file - .short 1486 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0x10cd:0x18 DW_TAG_lexical_block -.set Lset29089, Ldebug_ranges133-Ldebug_range ## DW_AT_ranges - .long Lset29089 - .byte 13 ## Abbrev [13] 0x10d2:0x9 DW_TAG_variable -.set Lset29090, Ldebug_loc439-Lsection_debug_loc ## DW_AT_location - .long Lset29090 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x10db:0x9 DW_TAG_variable -.set Lset29091, Ldebug_loc440-Lsection_debug_loc ## DW_AT_location - .long Lset29091 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x10e6:0x1e DW_TAG_lexical_block - .quad Ltmp2579 ## DW_AT_low_pc -.set Lset29092, Ltmp2581-Ltmp2579 ## DW_AT_high_pc - .long Lset29092 - .byte 5 ## Abbrev [5] 0x10f3:0x10 DW_TAG_variable -.set Lset29093, Ldebug_loc206-Lsection_debug_loc ## DW_AT_location - .long Lset29093 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1487 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x1104:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp2581 ## DW_AT_low_pc -.set Lset29094, Ltmp2588-Ltmp2581 ## DW_AT_high_pc - .long Lset29094 - .byte 1 ## DW_AT_call_file - .short 1486 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x1118:0x20 DW_TAG_lexical_block - .quad Ltmp2581 ## DW_AT_low_pc -.set Lset29095, Ltmp2588-Ltmp2581 ## DW_AT_high_pc - .long Lset29095 - .byte 13 ## Abbrev [13] 0x1125:0x9 DW_TAG_variable -.set Lset29096, Ldebug_loc445-Lsection_debug_loc ## DW_AT_location - .long Lset29096 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x112e:0x9 DW_TAG_variable -.set Lset29097, Ldebug_loc446-Lsection_debug_loc ## DW_AT_location - .long Lset29097 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x113a:0xd5 DW_TAG_lexical_block -.set Lset29098, Ldebug_ranges139-Ldebug_range ## DW_AT_ranges - .long Lset29098 - .byte 5 ## Abbrev [5] 0x113f:0x10 DW_TAG_variable -.set Lset29099, Ldebug_loc449-Lsection_debug_loc ## DW_AT_location - .long Lset29099 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1495 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x114f:0x10 DW_TAG_variable -.set Lset29100, Ldebug_loc450-Lsection_debug_loc ## DW_AT_location - .long Lset29100 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1494 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x115f:0x10 DW_TAG_variable -.set Lset29101, Ldebug_loc451-Lsection_debug_loc ## DW_AT_location - .long Lset29101 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1493 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x116f:0x10 DW_TAG_variable -.set Lset29102, Ldebug_loc452-Lsection_debug_loc ## DW_AT_location - .long Lset29102 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1495 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x117f:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29103, Ldebug_ranges135-Ldebug_range ## DW_AT_ranges - .long Lset29103 - .byte 1 ## DW_AT_call_file - .short 1496 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0x118b:0x18 DW_TAG_lexical_block -.set Lset29104, Ldebug_ranges136-Ldebug_range ## DW_AT_ranges - .long Lset29104 - .byte 13 ## Abbrev [13] 0x1190:0x9 DW_TAG_variable -.set Lset29105, Ldebug_loc447-Lsection_debug_loc ## DW_AT_location - .long Lset29105 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x1199:0x9 DW_TAG_variable -.set Lset29106, Ldebug_loc448-Lsection_debug_loc ## DW_AT_location - .long Lset29106 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x11a4:0x35 DW_TAG_lexical_block -.set Lset29107, Ldebug_ranges138-Ldebug_range ## DW_AT_ranges - .long Lset29107 - .byte 5 ## Abbrev [5] 0x11a9:0x10 DW_TAG_variable -.set Lset29108, Ldebug_loc205-Lsection_debug_loc ## DW_AT_location - .long Lset29108 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1497 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x11b9:0x1f DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin -.set Lset29109, Ldebug_ranges137-Ldebug_range ## DW_AT_ranges - .long Lset29109 - .byte 1 ## DW_AT_call_file - .short 1497 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x11c5:0x9 DW_TAG_formal_parameter -.set Lset29110, Ldebug_loc454-Lsection_debug_loc ## DW_AT_location - .long Lset29110 - .long 22655 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x11ce:0x9 DW_TAG_formal_parameter -.set Lset29111, Ldebug_loc453-Lsection_debug_loc ## DW_AT_location - .long Lset29111 - .long 22667 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x11d9:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp2645 ## DW_AT_low_pc -.set Lset29112, Ltmp2652-Ltmp2645 ## DW_AT_high_pc - .long Lset29112 - .byte 1 ## DW_AT_call_file - .short 1496 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x11ed:0x20 DW_TAG_lexical_block - .quad Ltmp2645 ## DW_AT_low_pc -.set Lset29113, Ltmp2652-Ltmp2645 ## DW_AT_high_pc - .long Lset29113 - .byte 13 ## Abbrev [13] 0x11fa:0x9 DW_TAG_variable -.set Lset29114, Ldebug_loc455-Lsection_debug_loc ## DW_AT_location - .long Lset29114 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x1203:0x9 DW_TAG_variable -.set Lset29115, Ldebug_loc456-Lsection_debug_loc ## DW_AT_location - .long Lset29115 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x120f:0xcc DW_TAG_lexical_block -.set Lset29116, Ldebug_ranges144-Ldebug_range ## DW_AT_ranges - .long Lset29116 - .byte 5 ## Abbrev [5] 0x1214:0x10 DW_TAG_variable -.set Lset29117, Ldebug_loc459-Lsection_debug_loc ## DW_AT_location - .long Lset29117 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1505 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1224:0x10 DW_TAG_variable -.set Lset29118, Ldebug_loc460-Lsection_debug_loc ## DW_AT_location - .long Lset29118 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1504 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1234:0x10 DW_TAG_variable -.set Lset29119, Ldebug_loc461-Lsection_debug_loc ## DW_AT_location - .long Lset29119 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1503 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1244:0x10 DW_TAG_variable -.set Lset29120, Ldebug_loc462-Lsection_debug_loc ## DW_AT_location - .long Lset29120 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1505 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x1254:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29121, Ldebug_ranges140-Ldebug_range ## DW_AT_ranges - .long Lset29121 - .byte 1 ## DW_AT_call_file - .short 1506 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0x1260:0x18 DW_TAG_lexical_block -.set Lset29122, Ldebug_ranges141-Ldebug_range ## DW_AT_ranges - .long Lset29122 - .byte 13 ## Abbrev [13] 0x1265:0x9 DW_TAG_variable -.set Lset29123, Ldebug_loc457-Lsection_debug_loc ## DW_AT_location - .long Lset29123 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x126e:0x9 DW_TAG_variable -.set Lset29124, Ldebug_loc458-Lsection_debug_loc ## DW_AT_location - .long Lset29124 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1279:0x2c DW_TAG_lexical_block -.set Lset29125, Ldebug_ranges143-Ldebug_range ## DW_AT_ranges - .long Lset29125 - .byte 5 ## Abbrev [5] 0x127e:0x10 DW_TAG_variable -.set Lset29126, Ldebug_loc204-Lsection_debug_loc ## DW_AT_location - .long Lset29126 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1507 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x128e:0x16 DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin -.set Lset29127, Ldebug_ranges142-Ldebug_range ## DW_AT_ranges - .long Lset29127 - .byte 1 ## DW_AT_call_file - .short 1507 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x129a:0x9 DW_TAG_formal_parameter -.set Lset29128, Ldebug_loc463-Lsection_debug_loc ## DW_AT_location - .long Lset29128 - .long 22655 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x12a5:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp2710 ## DW_AT_low_pc -.set Lset29129, Ltmp2717-Ltmp2710 ## DW_AT_high_pc - .long Lset29129 - .byte 1 ## DW_AT_call_file - .short 1506 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x12b9:0x20 DW_TAG_lexical_block - .quad Ltmp2710 ## DW_AT_low_pc -.set Lset29130, Ltmp2717-Ltmp2710 ## DW_AT_high_pc - .long Lset29130 - .byte 13 ## Abbrev [13] 0x12c6:0x9 DW_TAG_variable -.set Lset29131, Ldebug_loc464-Lsection_debug_loc ## DW_AT_location - .long Lset29131 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x12cf:0x9 DW_TAG_variable -.set Lset29132, Ldebug_loc465-Lsection_debug_loc ## DW_AT_location - .long Lset29132 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x12db:0xfd DW_TAG_lexical_block -.set Lset29133, Ldebug_ranges148-Ldebug_range ## DW_AT_ranges - .long Lset29133 - .byte 5 ## Abbrev [5] 0x12e0:0x10 DW_TAG_variable -.set Lset29134, Ldebug_loc466-Lsection_debug_loc ## DW_AT_location - .long Lset29134 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1513 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x12f0:0x10 DW_TAG_variable -.set Lset29135, Ldebug_loc467-Lsection_debug_loc ## DW_AT_location - .long Lset29135 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1514 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1300:0x10 DW_TAG_variable -.set Lset29136, Ldebug_loc472-Lsection_debug_loc ## DW_AT_location - .long Lset29136 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1515 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1310:0x10 DW_TAG_variable -.set Lset29137, Ldebug_loc473-Lsection_debug_loc ## DW_AT_location - .long Lset29137 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1515 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1320:0x3c DW_TAG_lexical_block - .quad Ltmp2788 ## DW_AT_low_pc -.set Lset29138, Ltmp2797-Ltmp2788 ## DW_AT_high_pc - .long Lset29138 - .byte 5 ## Abbrev [5] 0x132d:0x10 DW_TAG_variable -.set Lset29139, Ldebug_loc474-Lsection_debug_loc ## DW_AT_location - .long Lset29139 - .long 4421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1521 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x133d:0x1e DW_TAG_lexical_block - .quad Ltmp2795 ## DW_AT_low_pc -.set Lset29140, Ltmp2797-Ltmp2795 ## DW_AT_high_pc - .long Lset29140 - .byte 5 ## Abbrev [5] 0x134a:0x10 DW_TAG_variable -.set Lset29141, Ldebug_loc202-Lsection_debug_loc ## DW_AT_location - .long Lset29141 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1523 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x135c:0x7b DW_TAG_lexical_block -.set Lset29142, Ldebug_ranges147-Ldebug_range ## DW_AT_ranges - .long Lset29142 - .byte 5 ## Abbrev [5] 0x1361:0x10 DW_TAG_variable -.set Lset29143, Ldebug_loc468-Lsection_debug_loc ## DW_AT_location - .long Lset29143 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1517 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1371:0x10 DW_TAG_variable -.set Lset29144, Ldebug_loc471-Lsection_debug_loc ## DW_AT_location - .long Lset29144 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1517 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1381:0x55 DW_TAG_lexical_block -.set Lset29145, Ldebug_ranges146-Ldebug_range ## DW_AT_ranges - .long Lset29145 - .byte 5 ## Abbrev [5] 0x1386:0x10 DW_TAG_variable -.set Lset29146, Ldebug_loc203-Lsection_debug_loc ## DW_AT_location - .long Lset29146 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1518 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x1396:0x3f DW_TAG_inlined_subroutine - .long 22680 ## DW_AT_abstract_origin -.set Lset29147, Ldebug_ranges145-Ldebug_range ## DW_AT_ranges - .long Lset29147 - .byte 1 ## DW_AT_call_file - .short 1518 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x13a2:0x9 DW_TAG_formal_parameter -.set Lset29148, Ldebug_loc184-Lsection_debug_loc ## DW_AT_location - .long Lset29148 - .long 22693 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x13ab:0x9 DW_TAG_formal_parameter -.set Lset29149, Ldebug_loc469-Lsection_debug_loc ## DW_AT_location - .long Lset29149 - .long 22705 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x13b4:0x9 DW_TAG_formal_parameter -.set Lset29150, Ldebug_loc470-Lsection_debug_loc ## DW_AT_location - .long Lset29150 - .long 22717 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x13bd:0x17 DW_TAG_lexical_block - .quad Ltmp2797 ## DW_AT_low_pc -.set Lset29151, Ltmp2802-Ltmp2797 ## DW_AT_high_pc - .long Lset29151 - .byte 13 ## Abbrev [13] 0x13ca:0x9 DW_TAG_variable -.set Lset29152, Ldebug_loc475-Lsection_debug_loc ## DW_AT_location - .long Lset29152 - .long 22730 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x13d8:0xdf DW_TAG_lexical_block -.set Lset29153, Ldebug_ranges152-Ldebug_range ## DW_AT_ranges - .long Lset29153 - .byte 5 ## Abbrev [5] 0x13dd:0x10 DW_TAG_variable -.set Lset29154, Ldebug_loc476-Lsection_debug_loc ## DW_AT_location - .long Lset29154 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1529 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x13ed:0x10 DW_TAG_variable -.set Lset29155, Ldebug_loc477-Lsection_debug_loc ## DW_AT_location - .long Lset29155 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1530 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x13fd:0x10 DW_TAG_variable -.set Lset29156, Ldebug_loc482-Lsection_debug_loc ## DW_AT_location - .long Lset29156 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1531 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x140d:0x10 DW_TAG_variable -.set Lset29157, Ldebug_loc483-Lsection_debug_loc ## DW_AT_location - .long Lset29157 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1531 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x141d:0x1e DW_TAG_lexical_block - .quad Ltmp2855 ## DW_AT_low_pc -.set Lset29158, Ltmp2857-Ltmp2855 ## DW_AT_high_pc - .long Lset29158 - .byte 5 ## Abbrev [5] 0x142a:0x10 DW_TAG_variable -.set Lset29159, Ldebug_loc200-Lsection_debug_loc ## DW_AT_location - .long Lset29159 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1537 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x143b:0x7b DW_TAG_lexical_block -.set Lset29160, Ldebug_ranges151-Ldebug_range ## DW_AT_ranges - .long Lset29160 - .byte 5 ## Abbrev [5] 0x1440:0x10 DW_TAG_variable -.set Lset29161, Ldebug_loc478-Lsection_debug_loc ## DW_AT_location - .long Lset29161 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1533 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1450:0x10 DW_TAG_variable -.set Lset29162, Ldebug_loc481-Lsection_debug_loc ## DW_AT_location - .long Lset29162 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1533 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1460:0x55 DW_TAG_lexical_block -.set Lset29163, Ldebug_ranges150-Ldebug_range ## DW_AT_ranges - .long Lset29163 - .byte 5 ## Abbrev [5] 0x1465:0x10 DW_TAG_variable -.set Lset29164, Ldebug_loc201-Lsection_debug_loc ## DW_AT_location - .long Lset29164 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1534 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x1475:0x3f DW_TAG_inlined_subroutine - .long 22744 ## DW_AT_abstract_origin -.set Lset29165, Ldebug_ranges149-Ldebug_range ## DW_AT_ranges - .long Lset29165 - .byte 1 ## DW_AT_call_file - .short 1534 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1481:0x9 DW_TAG_formal_parameter -.set Lset29166, Ldebug_loc183-Lsection_debug_loc ## DW_AT_location - .long Lset29166 - .long 22757 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x148a:0x9 DW_TAG_formal_parameter -.set Lset29167, Ldebug_loc479-Lsection_debug_loc ## DW_AT_location - .long Lset29167 - .long 22769 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1493:0x9 DW_TAG_formal_parameter -.set Lset29168, Ldebug_loc480-Lsection_debug_loc ## DW_AT_location - .long Lset29168 - .long 22781 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x149c:0x17 DW_TAG_lexical_block - .quad Ltmp2857 ## DW_AT_low_pc -.set Lset29169, Ltmp2862-Ltmp2857 ## DW_AT_high_pc - .long Lset29169 - .byte 13 ## Abbrev [13] 0x14a9:0x9 DW_TAG_variable -.set Lset29170, Ldebug_loc484-Lsection_debug_loc ## DW_AT_location - .long Lset29170 - .long 22794 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x14b7:0x64 DW_TAG_lexical_block -.set Lset29171, Ldebug_ranges153-Ldebug_range ## DW_AT_ranges - .long Lset29171 - .byte 5 ## Abbrev [5] 0x14bc:0x10 DW_TAG_variable -.set Lset29172, Ldebug_loc485-Lsection_debug_loc ## DW_AT_location - .long Lset29172 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1543 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14cc:0x10 DW_TAG_variable -.set Lset29173, Ldebug_loc486-Lsection_debug_loc ## DW_AT_location - .long Lset29173 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1544 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14dc:0x10 DW_TAG_variable -.set Lset29174, Ldebug_loc487-Lsection_debug_loc ## DW_AT_location - .long Lset29174 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1545 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x14ec:0x10 DW_TAG_variable -.set Lset29175, Ldebug_loc488-Lsection_debug_loc ## DW_AT_location - .long Lset29175 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1545 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x14fc:0x1e DW_TAG_lexical_block - .quad Ltmp2911 ## DW_AT_low_pc -.set Lset29176, Ltmp2913-Ltmp2911 ## DW_AT_high_pc - .long Lset29176 - .byte 5 ## Abbrev [5] 0x1509:0x10 DW_TAG_variable -.set Lset29177, Ldebug_loc199-Lsection_debug_loc ## DW_AT_location - .long Lset29177 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1547 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x151b:0x7c DW_TAG_lexical_block -.set Lset29178, Ldebug_ranges154-Ldebug_range ## DW_AT_ranges - .long Lset29178 - .byte 5 ## Abbrev [5] 0x1520:0x10 DW_TAG_variable -.set Lset29179, Ldebug_loc489-Lsection_debug_loc ## DW_AT_location - .long Lset29179 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1553 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1530:0x10 DW_TAG_variable -.set Lset29180, Ldebug_loc490-Lsection_debug_loc ## DW_AT_location - .long Lset29180 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1554 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1540:0x38 DW_TAG_lexical_block - .quad Ltmp2939 ## DW_AT_low_pc -.set Lset29181, Ltmp2940-Ltmp2939 ## DW_AT_high_pc - .long Lset29181 - .byte 7 ## Abbrev [7] 0x154d:0xc DW_TAG_variable - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1556 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1559:0x1e DW_TAG_lexical_block - .quad Ltmp2939 ## DW_AT_low_pc -.set Lset29182, Ltmp2940-Ltmp2939 ## DW_AT_high_pc - .long Lset29182 - .byte 5 ## Abbrev [5] 0x1566:0x10 DW_TAG_variable -.set Lset29183, Ldebug_loc198-Lsection_debug_loc ## DW_AT_location - .long Lset29183 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1557 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x1578:0x1e DW_TAG_lexical_block - .quad Ltmp2941 ## DW_AT_low_pc -.set Lset29184, Ltmp2943-Ltmp2941 ## DW_AT_high_pc - .long Lset29184 - .byte 5 ## Abbrev [5] 0x1585:0x10 DW_TAG_variable -.set Lset29185, Ldebug_loc197-Lsection_debug_loc ## DW_AT_location - .long Lset29185 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1560 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1597:0x69 DW_TAG_lexical_block -.set Lset29186, Ldebug_ranges157-Ldebug_range ## DW_AT_ranges - .long Lset29186 - .byte 5 ## Abbrev [5] 0x159c:0x10 DW_TAG_variable -.set Lset29187, Ldebug_loc493-Lsection_debug_loc ## DW_AT_location - .long Lset29187 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1568 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x15ac:0x10 DW_TAG_variable -.set Lset29188, Ldebug_loc494-Lsection_debug_loc ## DW_AT_location - .long Lset29188 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1569 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x15bc:0x25 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin -.set Lset29189, Ldebug_ranges155-Ldebug_range ## DW_AT_ranges - .long Lset29189 - .byte 1 ## DW_AT_call_file - .short 1570 ## DW_AT_call_line - .byte 6 ## Abbrev [6] 0x15c8:0x18 DW_TAG_lexical_block -.set Lset29190, Ldebug_ranges156-Ldebug_range ## DW_AT_ranges - .long Lset29190 - .byte 13 ## Abbrev [13] 0x15cd:0x9 DW_TAG_variable -.set Lset29191, Ldebug_loc491-Lsection_debug_loc ## DW_AT_location - .long Lset29191 - .long 18415 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x15d6:0x9 DW_TAG_variable -.set Lset29192, Ldebug_loc492-Lsection_debug_loc ## DW_AT_location - .long Lset29192 - .long 18404 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x15e1:0x1e DW_TAG_lexical_block - .quad Ltmp2977 ## DW_AT_low_pc -.set Lset29193, Ltmp2979-Ltmp2977 ## DW_AT_high_pc - .long Lset29193 - .byte 5 ## Abbrev [5] 0x15ee:0x10 DW_TAG_variable -.set Lset29194, Ldebug_loc196-Lsection_debug_loc ## DW_AT_location - .long Lset29194 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1571 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1600:0x40 DW_TAG_lexical_block -.set Lset29195, Ldebug_ranges158-Ldebug_range ## DW_AT_ranges - .long Lset29195 - .byte 5 ## Abbrev [5] 0x1605:0x10 DW_TAG_variable -.set Lset29196, Ldebug_loc495-Lsection_debug_loc ## DW_AT_location - .long Lset29196 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1580 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1615:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1579 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1621:0x1e DW_TAG_lexical_block - .quad Ltmp3016 ## DW_AT_low_pc -.set Lset29197, Ltmp3017-Ltmp3016 ## DW_AT_high_pc - .long Lset29197 - .byte 5 ## Abbrev [5] 0x162e:0x10 DW_TAG_variable -.set Lset29198, Ldebug_loc195-Lsection_debug_loc ## DW_AT_location - .long Lset29198 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1581 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1640:0x54 DW_TAG_lexical_block -.set Lset29199, Ldebug_ranges160-Ldebug_range ## DW_AT_ranges - .long Lset29199 - .byte 5 ## Abbrev [5] 0x1645:0x10 DW_TAG_variable -.set Lset29200, Ldebug_loc498-Lsection_debug_loc ## DW_AT_location - .long Lset29200 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1591 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1655:0xc DW_TAG_variable - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1589 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1661:0xc DW_TAG_variable - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1590 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x166d:0x26 DW_TAG_lexical_block -.set Lset29201, Ldebug_ranges159-Ldebug_range ## DW_AT_ranges - .long Lset29201 - .byte 5 ## Abbrev [5] 0x1672:0x10 DW_TAG_variable -.set Lset29202, Ldebug_loc496-Lsection_debug_loc ## DW_AT_location - .long Lset29202 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1596 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1682:0x10 DW_TAG_variable -.set Lset29203, Ldebug_loc497-Lsection_debug_loc ## DW_AT_location - .long Lset29203 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1596 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1694:0x12 DW_TAG_lexical_block -.set Lset29204, Ldebug_ranges161-Ldebug_range ## DW_AT_ranges - .long Lset29204 - .byte 7 ## Abbrev [7] 0x1699:0xc DW_TAG_variable - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1602 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x16a6:0x54 DW_TAG_lexical_block -.set Lset29205, Ldebug_ranges162-Ldebug_range ## DW_AT_ranges - .long Lset29205 - .byte 5 ## Abbrev [5] 0x16ab:0x10 DW_TAG_variable -.set Lset29206, Ldebug_loc499-Lsection_debug_loc ## DW_AT_location - .long Lset29206 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1606 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x16bb:0x10 DW_TAG_variable -.set Lset29207, Ldebug_loc500-Lsection_debug_loc ## DW_AT_location - .long Lset29207 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1607 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x16cb:0x10 DW_TAG_variable -.set Lset29208, Ldebug_loc501-Lsection_debug_loc ## DW_AT_location - .long Lset29208 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1608 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x16db:0x1e DW_TAG_lexical_block - .quad Ltmp3141 ## DW_AT_low_pc -.set Lset29209, Ltmp3151-Ltmp3141 ## DW_AT_high_pc - .long Lset29209 - .byte 5 ## Abbrev [5] 0x16e8:0x10 DW_TAG_variable -.set Lset29210, Ldebug_loc502-Lsection_debug_loc ## DW_AT_location - .long Lset29210 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1615 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x16fa:0x54 DW_TAG_lexical_block -.set Lset29211, Ldebug_ranges163-Ldebug_range ## DW_AT_ranges - .long Lset29211 - .byte 5 ## Abbrev [5] 0x16ff:0x10 DW_TAG_variable -.set Lset29212, Ldebug_loc503-Lsection_debug_loc ## DW_AT_location - .long Lset29212 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1619 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x170f:0x10 DW_TAG_variable -.set Lset29213, Ldebug_loc504-Lsection_debug_loc ## DW_AT_location - .long Lset29213 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1620 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x171f:0x10 DW_TAG_variable -.set Lset29214, Ldebug_loc505-Lsection_debug_loc ## DW_AT_location - .long Lset29214 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1621 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x172f:0x1e DW_TAG_lexical_block - .quad Ltmp3211 ## DW_AT_low_pc -.set Lset29215, Ltmp3221-Ltmp3211 ## DW_AT_high_pc - .long Lset29215 - .byte 5 ## Abbrev [5] 0x173c:0x10 DW_TAG_variable -.set Lset29216, Ldebug_loc506-Lsection_debug_loc ## DW_AT_location - .long Lset29216 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1632 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x174e:0x54 DW_TAG_lexical_block -.set Lset29217, Ldebug_ranges164-Ldebug_range ## DW_AT_ranges - .long Lset29217 - .byte 5 ## Abbrev [5] 0x1753:0x10 DW_TAG_variable -.set Lset29218, Ldebug_loc507-Lsection_debug_loc ## DW_AT_location - .long Lset29218 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1636 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1763:0x10 DW_TAG_variable -.set Lset29219, Ldebug_loc508-Lsection_debug_loc ## DW_AT_location - .long Lset29219 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1637 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1773:0x10 DW_TAG_variable -.set Lset29220, Ldebug_loc509-Lsection_debug_loc ## DW_AT_location - .long Lset29220 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1638 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1783:0x1e DW_TAG_lexical_block - .quad Ltmp3276 ## DW_AT_low_pc -.set Lset29221, Ltmp3286-Ltmp3276 ## DW_AT_high_pc - .long Lset29221 - .byte 5 ## Abbrev [5] 0x1790:0x10 DW_TAG_variable -.set Lset29222, Ldebug_loc510-Lsection_debug_loc ## DW_AT_location - .long Lset29222 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1649 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x17a2:0x1e DW_TAG_lexical_block - .quad Ltmp3313 ## DW_AT_low_pc -.set Lset29223, Ltmp3323-Ltmp3313 ## DW_AT_high_pc - .long Lset29223 - .byte 5 ## Abbrev [5] 0x17af:0x10 DW_TAG_variable -.set Lset29224, Ldebug_loc511-Lsection_debug_loc ## DW_AT_location - .long Lset29224 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1656 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x17c0:0x5a DW_TAG_lexical_block -.set Lset29225, Ldebug_ranges166-Ldebug_range ## DW_AT_ranges - .long Lset29225 - .byte 5 ## Abbrev [5] 0x17c5:0x10 DW_TAG_variable -.set Lset29226, Ldebug_loc512-Lsection_debug_loc ## DW_AT_location - .long Lset29226 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1660 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x17d5:0x26 DW_TAG_lexical_block -.set Lset29227, Ldebug_ranges165-Ldebug_range ## DW_AT_ranges - .long Lset29227 - .byte 5 ## Abbrev [5] 0x17da:0x10 DW_TAG_variable -.set Lset29228, Ldebug_loc194-Lsection_debug_loc ## DW_AT_location - .long Lset29228 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1664 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x17ea:0x10 DW_TAG_variable -.set Lset29229, Ldebug_loc513-Lsection_debug_loc ## DW_AT_location - .long Lset29229 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1664 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x17fb:0x1e DW_TAG_lexical_block - .quad Ltmp3358 ## DW_AT_low_pc -.set Lset29230, Ltmp3369-Ltmp3358 ## DW_AT_high_pc - .long Lset29230 - .byte 5 ## Abbrev [5] 0x1808:0x10 DW_TAG_variable -.set Lset29231, Ldebug_loc514-Lsection_debug_loc ## DW_AT_location - .long Lset29231 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1665 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x181a:0x32 DW_TAG_lexical_block -.set Lset29232, Ldebug_ranges167-Ldebug_range ## DW_AT_ranges - .long Lset29232 - .byte 5 ## Abbrev [5] 0x181f:0x10 DW_TAG_variable -.set Lset29233, Ldebug_loc515-Lsection_debug_loc ## DW_AT_location - .long Lset29233 - .long 3101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1671 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x182f:0x10 DW_TAG_variable -.set Lset29234, Ldebug_loc516-Lsection_debug_loc ## DW_AT_location - .long Lset29234 - .long 5220 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1680 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x183f:0xc DW_TAG_variable - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1670 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x184c:0x96 DW_TAG_lexical_block -.set Lset29235, Ldebug_ranges170-Ldebug_range ## DW_AT_ranges - .long Lset29235 - .byte 7 ## Abbrev [7] 0x1851:0xc DW_TAG_variable - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1701 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x185d:0x84 DW_TAG_lexical_block -.set Lset29236, Ldebug_ranges169-Ldebug_range ## DW_AT_ranges - .long Lset29236 - .byte 5 ## Abbrev [5] 0x1862:0x10 DW_TAG_variable -.set Lset29237, Ldebug_loc517-Lsection_debug_loc ## DW_AT_location - .long Lset29237 - .long 3476 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1715 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1872:0x10 DW_TAG_variable -.set Lset29238, Ldebug_loc518-Lsection_debug_loc ## DW_AT_location - .long Lset29238 - .long 5234 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1717 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1882:0x10 DW_TAG_variable -.set Lset29239, Ldebug_loc519-Lsection_debug_loc ## DW_AT_location - .long Lset29239 - .long 5240 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1716 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1892:0x10 DW_TAG_variable -.set Lset29240, Ldebug_loc520-Lsection_debug_loc ## DW_AT_location - .long Lset29240 - .long 5244 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1718 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x18a2:0x10 DW_TAG_variable -.set Lset29241, Ldebug_loc521-Lsection_debug_loc ## DW_AT_location - .long Lset29241 - .long 5250 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1720 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x18b2:0x10 DW_TAG_variable -.set Lset29242, Ldebug_loc522-Lsection_debug_loc ## DW_AT_location - .long Lset29242 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1721 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x18c2:0x1e DW_TAG_lexical_block -.set Lset29243, Ldebug_ranges168-Ldebug_range ## DW_AT_ranges - .long Lset29243 - .byte 7 ## Abbrev [7] 0x18c7:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1726 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x18d3:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1726 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x18e2:0x26 DW_TAG_lexical_block -.set Lset29244, Ldebug_ranges171-Ldebug_range ## DW_AT_ranges - .long Lset29244 - .byte 5 ## Abbrev [5] 0x18e7:0x10 DW_TAG_variable -.set Lset29245, Ldebug_loc523-Lsection_debug_loc ## DW_AT_location - .long Lset29245 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1739 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x18f7:0x10 DW_TAG_variable -.set Lset29246, Ldebug_loc524-Lsection_debug_loc ## DW_AT_location - .long Lset29246 - .long 5254 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1742 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1908:0x6e DW_TAG_lexical_block -.set Lset29247, Ldebug_ranges172-Ldebug_range ## DW_AT_ranges - .long Lset29247 - .byte 5 ## Abbrev [5] 0x190d:0x10 DW_TAG_variable -.set Lset29248, Ldebug_loc525-Lsection_debug_loc ## DW_AT_location - .long Lset29248 - .long 4425 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1785 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x191d:0x10 DW_TAG_variable -.set Lset29249, Ldebug_loc526-Lsection_debug_loc ## DW_AT_location - .long Lset29249 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1786 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x192d:0x10 DW_TAG_variable -.set Lset29250, Ldebug_loc527-Lsection_debug_loc ## DW_AT_location - .long Lset29250 - .long 5259 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1787 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x193d:0x1e DW_TAG_lexical_block - .quad Ltmp3511 ## DW_AT_low_pc -.set Lset29251, Ltmp3512-Ltmp3511 ## DW_AT_high_pc - .long Lset29251 - .byte 5 ## Abbrev [5] 0x194a:0x10 DW_TAG_variable -.set Lset29252, Ldebug_loc232-Lsection_debug_loc ## DW_AT_location - .long Lset29252 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1791 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x195b:0x1a DW_TAG_lexical_block - .quad Ltmp3512 ## DW_AT_low_pc -.set Lset29253, Ltmp3513-Ltmp3512 ## DW_AT_high_pc - .long Lset29253 - .byte 7 ## Abbrev [7] 0x1968:0xc DW_TAG_variable - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1792 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1976:0x6e DW_TAG_lexical_block -.set Lset29254, Ldebug_ranges173-Ldebug_range ## DW_AT_ranges - .long Lset29254 - .byte 5 ## Abbrev [5] 0x197b:0x10 DW_TAG_variable -.set Lset29255, Ldebug_loc528-Lsection_debug_loc ## DW_AT_location - .long Lset29255 - .long 5259 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1777 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x198b:0x10 DW_TAG_variable -.set Lset29256, Ldebug_loc529-Lsection_debug_loc ## DW_AT_location - .long Lset29256 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1776 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x199b:0x10 DW_TAG_variable -.set Lset29257, Ldebug_loc530-Lsection_debug_loc ## DW_AT_location - .long Lset29257 - .long 4425 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1775 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x19ab:0x1e DW_TAG_lexical_block - .quad Ltmp3528 ## DW_AT_low_pc -.set Lset29258, Ltmp3529-Ltmp3528 ## DW_AT_high_pc - .long Lset29258 - .byte 5 ## Abbrev [5] 0x19b8:0x10 DW_TAG_variable -.set Lset29259, Ldebug_loc231-Lsection_debug_loc ## DW_AT_location - .long Lset29259 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1780 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x19c9:0x1a DW_TAG_lexical_block - .quad Ltmp3529 ## DW_AT_low_pc -.set Lset29260, Ltmp3530-Ltmp3529 ## DW_AT_high_pc - .long Lset29260 - .byte 7 ## Abbrev [7] 0x19d6:0xc DW_TAG_variable - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1781 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x19e4:0x14b DW_TAG_lexical_block -.set Lset29261, Ldebug_ranges182-Ldebug_range ## DW_AT_ranges - .long Lset29261 - .byte 5 ## Abbrev [5] 0x19e9:0x10 DW_TAG_variable -.set Lset29262, Ldebug_loc233-Lsection_debug_loc ## DW_AT_location - .long Lset29262 - .long 5186 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1798 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x19f9:0x10 DW_TAG_variable -.set Lset29263, Ldebug_loc531-Lsection_debug_loc ## DW_AT_location - .long Lset29263 - .long 5265 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1799 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a09:0x10 DW_TAG_variable -.set Lset29264, Ldebug_loc533-Lsection_debug_loc ## DW_AT_location - .long Lset29264 - .long 5279 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1800 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a19:0x10 DW_TAG_variable -.set Lset29265, Ldebug_loc541-Lsection_debug_loc ## DW_AT_location - .long Lset29265 - .long 5297 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1801 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1a29:0xc DW_TAG_variable - .long 4430 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1802 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1a35:0x78 DW_TAG_lexical_block -.set Lset29266, Ldebug_ranges177-Ldebug_range ## DW_AT_ranges - .long Lset29266 - .byte 5 ## Abbrev [5] 0x1a3a:0x10 DW_TAG_variable -.set Lset29267, Ldebug_loc532-Lsection_debug_loc ## DW_AT_location - .long Lset29267 - .long 5272 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1811 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a4a:0x10 DW_TAG_variable -.set Lset29268, Ldebug_loc534-Lsection_debug_loc ## DW_AT_location - .long Lset29268 - .long 5285 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1811 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1a5a:0x10 DW_TAG_variable -.set Lset29269, Ldebug_loc535-Lsection_debug_loc ## DW_AT_location - .long Lset29269 - .long 5291 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1811 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1a6a:0x16 DW_TAG_lexical_block -.set Lset29270, Ldebug_ranges174-Ldebug_range ## DW_AT_ranges - .long Lset29270 - .byte 5 ## Abbrev [5] 0x1a6f:0x10 DW_TAG_variable -.set Lset29271, Ldebug_loc538-Lsection_debug_loc ## DW_AT_location - .long Lset29271 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1815 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1a80:0x16 DW_TAG_lexical_block -.set Lset29272, Ldebug_ranges175-Ldebug_range ## DW_AT_ranges - .long Lset29272 - .byte 5 ## Abbrev [5] 0x1a85:0x10 DW_TAG_variable -.set Lset29273, Ldebug_loc544-Lsection_debug_loc ## DW_AT_location - .long Lset29273 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1818 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1a96:0x16 DW_TAG_lexical_block -.set Lset29274, Ldebug_ranges176-Ldebug_range ## DW_AT_ranges - .long Lset29274 - .byte 5 ## Abbrev [5] 0x1a9b:0x10 DW_TAG_variable -.set Lset29275, Ldebug_loc235-Lsection_debug_loc ## DW_AT_location - .long Lset29275 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1821 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 12 ## Abbrev [12] 0x1aad:0x37 DW_TAG_inlined_subroutine - .long 22808 ## DW_AT_abstract_origin -.set Lset29276, Ldebug_ranges178-Ldebug_range ## DW_AT_ranges - .long Lset29276 - .byte 1 ## DW_AT_call_file - .short 1804 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1ab9:0x9 DW_TAG_formal_parameter -.set Lset29277, Ldebug_loc536-Lsection_debug_loc ## DW_AT_location - .long Lset29277 - .long 22820 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1ac2:0x9 DW_TAG_formal_parameter -.set Lset29278, Ldebug_loc540-Lsection_debug_loc ## DW_AT_location - .long Lset29278 - .long 22831 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1acb:0x9 DW_TAG_formal_parameter -.set Lset29279, Ldebug_loc539-Lsection_debug_loc ## DW_AT_location - .long Lset29279 - .long 22842 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x1ad4:0xf DW_TAG_lexical_block -.set Lset29280, Ldebug_ranges179-Ldebug_range ## DW_AT_ranges - .long Lset29280 - .byte 13 ## Abbrev [13] 0x1ad9:0x9 DW_TAG_variable -.set Lset29281, Ldebug_loc543-Lsection_debug_loc ## DW_AT_location - .long Lset29281 - .long 22865 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ae4:0x4a DW_TAG_lexical_block -.set Lset29282, Ldebug_ranges181-Ldebug_range ## DW_AT_ranges - .long Lset29282 - .byte 5 ## Abbrev [5] 0x1ae9:0x10 DW_TAG_variable -.set Lset29283, Ldebug_loc542-Lsection_debug_loc ## DW_AT_location - .long Lset29283 - .long 5304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1806 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1af9:0x1e DW_TAG_lexical_block - .quad Ltmp3579 ## DW_AT_low_pc -.set Lset29284, Ltmp3582-Ltmp3579 ## DW_AT_high_pc - .long Lset29284 - .byte 5 ## Abbrev [5] 0x1b06:0x10 DW_TAG_variable -.set Lset29285, Ldebug_loc537-Lsection_debug_loc ## DW_AT_location - .long Lset29285 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1807 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1b17:0x16 DW_TAG_lexical_block -.set Lset29286, Ldebug_ranges180-Ldebug_range ## DW_AT_ranges - .long Lset29286 - .byte 5 ## Abbrev [5] 0x1b1c:0x10 DW_TAG_variable -.set Lset29287, Ldebug_loc234-Lsection_debug_loc ## DW_AT_location - .long Lset29287 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1808 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1b2f:0x78 DW_TAG_lexical_block -.set Lset29288, Ldebug_ranges186-Ldebug_range ## DW_AT_ranges - .long Lset29288 - .byte 5 ## Abbrev [5] 0x1b34:0x10 DW_TAG_variable -.set Lset29289, Ldebug_loc545-Lsection_debug_loc ## DW_AT_location - .long Lset29289 - .long 5310 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1827 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1b44:0x1e DW_TAG_lexical_block -.set Lset29290, Ldebug_ranges183-Ldebug_range ## DW_AT_ranges - .long Lset29290 - .byte 7 ## Abbrev [7] 0x1b49:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1828 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1b55:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1828 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1b62:0x1e DW_TAG_lexical_block -.set Lset29291, Ldebug_ranges184-Ldebug_range ## DW_AT_ranges - .long Lset29291 - .byte 7 ## Abbrev [7] 0x1b67:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1829 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1b73:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1829 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1b80:0x26 DW_TAG_lexical_block -.set Lset29292, Ldebug_ranges185-Ldebug_range ## DW_AT_ranges - .long Lset29292 - .byte 5 ## Abbrev [5] 0x1b85:0x10 DW_TAG_variable -.set Lset29293, Ldebug_loc236-Lsection_debug_loc ## DW_AT_location - .long Lset29293 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1830 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1b95:0x10 DW_TAG_variable -.set Lset29294, Ldebug_loc546-Lsection_debug_loc ## DW_AT_location - .long Lset29294 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1830 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ba7:0x26 DW_TAG_lexical_block -.set Lset29295, Ldebug_ranges187-Ldebug_range ## DW_AT_ranges - .long Lset29295 - .byte 5 ## Abbrev [5] 0x1bac:0x10 DW_TAG_variable -.set Lset29296, Ldebug_loc547-Lsection_debug_loc ## DW_AT_location - .long Lset29296 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1842 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1bbc:0x10 DW_TAG_variable -.set Lset29297, Ldebug_loc548-Lsection_debug_loc ## DW_AT_location - .long Lset29297 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1842 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1bcd:0x1ac DW_TAG_lexical_block -.set Lset29298, Ldebug_ranges195-Ldebug_range ## DW_AT_ranges - .long Lset29298 - .byte 5 ## Abbrev [5] 0x1bd2:0x10 DW_TAG_variable -.set Lset29299, Ldebug_loc549-Lsection_debug_loc ## DW_AT_location - .long Lset29299 - .long 5313 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1850 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1be2:0x10 DW_TAG_variable -.set Lset29300, Ldebug_loc550-Lsection_debug_loc ## DW_AT_location - .long Lset29300 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1848 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1bf2:0x10 DW_TAG_variable -.set Lset29301, Ldebug_loc551-Lsection_debug_loc ## DW_AT_location - .long Lset29301 - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1849 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c02:0x10 DW_TAG_variable -.set Lset29302, Ldebug_loc552-Lsection_debug_loc ## DW_AT_location - .long Lset29302 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1851 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x1c12:0x1a DW_TAG_lexical_block - .quad Ltmp3731 ## DW_AT_low_pc -.set Lset29303, Ltmp3736-Ltmp3731 ## DW_AT_high_pc - .long Lset29303 - .byte 7 ## Abbrev [7] 0x1c1f:0xc DW_TAG_variable - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1864 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1c2c:0x14c DW_TAG_lexical_block -.set Lset29304, Ldebug_ranges194-Ldebug_range ## DW_AT_ranges - .long Lset29304 - .byte 5 ## Abbrev [5] 0x1c31:0x10 DW_TAG_variable -.set Lset29305, Ldebug_loc553-Lsection_debug_loc ## DW_AT_location - .long Lset29305 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1870 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1c41:0x136 DW_TAG_lexical_block -.set Lset29306, Ldebug_ranges193-Ldebug_range ## DW_AT_ranges - .long Lset29306 - .byte 5 ## Abbrev [5] 0x1c46:0x10 DW_TAG_variable -.set Lset29307, Ldebug_loc554-Lsection_debug_loc ## DW_AT_location - .long Lset29307 - .long 2221 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1873 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1c56:0xc DW_TAG_variable - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1872 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1c62:0x3c DW_TAG_lexical_block -.set Lset29308, Ldebug_ranges189-Ldebug_range ## DW_AT_ranges - .long Lset29308 - .byte 5 ## Abbrev [5] 0x1c67:0x10 DW_TAG_variable -.set Lset29309, Ldebug_loc560-Lsection_debug_loc ## DW_AT_location - .long Lset29309 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1896 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1c77:0x26 DW_TAG_lexical_block -.set Lset29310, Ldebug_ranges188-Ldebug_range ## DW_AT_ranges - .long Lset29310 - .byte 5 ## Abbrev [5] 0x1c7c:0x10 DW_TAG_variable -.set Lset29311, Ldebug_loc559-Lsection_debug_loc ## DW_AT_location - .long Lset29311 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1898 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1c8c:0x10 DW_TAG_variable -.set Lset29312, Ldebug_loc561-Lsection_debug_loc ## DW_AT_location - .long Lset29312 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1898 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1c9e:0x26 DW_TAG_lexical_block -.set Lset29313, Ldebug_ranges190-Ldebug_range ## DW_AT_ranges - .long Lset29313 - .byte 5 ## Abbrev [5] 0x1ca3:0x10 DW_TAG_variable -.set Lset29314, Ldebug_loc558-Lsection_debug_loc ## DW_AT_location - .long Lset29314 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1893 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1cb3:0x10 DW_TAG_variable -.set Lset29315, Ldebug_loc563-Lsection_debug_loc ## DW_AT_location - .long Lset29315 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1893 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1cc4:0x22 DW_TAG_lexical_block -.set Lset29316, Ldebug_ranges191-Ldebug_range ## DW_AT_ranges - .long Lset29316 - .byte 5 ## Abbrev [5] 0x1cc9:0x10 DW_TAG_variable -.set Lset29317, Ldebug_loc557-Lsection_debug_loc ## DW_AT_location - .long Lset29317 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1890 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1cd9:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1890 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x1ce6:0x2e DW_TAG_lexical_block - .quad Ltmp3771 ## DW_AT_low_pc -.set Lset29318, Ltmp3775-Ltmp3771 ## DW_AT_high_pc - .long Lset29318 - .byte 5 ## Abbrev [5] 0x1cf3:0x10 DW_TAG_variable -.set Lset29319, Ldebug_loc555-Lsection_debug_loc ## DW_AT_location - .long Lset29319 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1877 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d03:0x10 DW_TAG_variable -.set Lset29320, Ldebug_loc565-Lsection_debug_loc ## DW_AT_location - .long Lset29320 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1877 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1d14:0x62 DW_TAG_lexical_block -.set Lset29321, Ldebug_ranges192-Ldebug_range ## DW_AT_ranges - .long Lset29321 - .byte 5 ## Abbrev [5] 0x1d19:0x10 DW_TAG_variable -.set Lset29322, Ldebug_loc562-Lsection_debug_loc ## DW_AT_location - .long Lset29322 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1880 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1d29:0x1e DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp3776 ## DW_AT_low_pc -.set Lset29323, Ltmp3777-Ltmp3776 ## DW_AT_high_pc - .long Lset29323 - .byte 1 ## DW_AT_call_file - .short 1881 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x1d3d:0x9 DW_TAG_formal_parameter - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\340~" - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x1d47:0x2e DW_TAG_lexical_block - .quad Ltmp3779 ## DW_AT_low_pc -.set Lset29324, Ltmp3786-Ltmp3779 ## DW_AT_high_pc - .long Lset29324 - .byte 5 ## Abbrev [5] 0x1d54:0x10 DW_TAG_variable -.set Lset29325, Ldebug_loc556-Lsection_debug_loc ## DW_AT_location - .long Lset29325 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1882 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d64:0x10 DW_TAG_variable -.set Lset29326, Ldebug_loc564-Lsection_debug_loc ## DW_AT_location - .long Lset29326 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1882 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1d79:0xb4 DW_TAG_lexical_block -.set Lset29327, Ldebug_ranges198-Ldebug_range ## DW_AT_ranges - .long Lset29327 - .byte 5 ## Abbrev [5] 0x1d7e:0x10 DW_TAG_variable -.set Lset29328, Ldebug_loc567-Lsection_debug_loc ## DW_AT_location - .long Lset29328 - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1912 ## DW_AT_decl_line - .long 22997 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1d8e:0x10 DW_TAG_variable -.set Lset29329, Ldebug_loc569-Lsection_debug_loc ## DW_AT_location - .long Lset29329 - .long 5318 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1913 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1d9e:0x68 DW_TAG_inlined_subroutine - .long 22878 ## DW_AT_abstract_origin - .quad Ltmp3820 ## DW_AT_low_pc -.set Lset29330, Ltmp3837-Ltmp3820 ## DW_AT_high_pc - .long Lset29330 - .byte 1 ## DW_AT_call_file - .short 1913 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1db2:0x9 DW_TAG_formal_parameter -.set Lset29331, Ldebug_loc566-Lsection_debug_loc ## DW_AT_location - .long Lset29331 - .long 22891 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1dbb:0x9 DW_TAG_formal_parameter -.set Lset29332, Ldebug_loc284-Lsection_debug_loc ## DW_AT_location - .long Lset29332 - .long 22903 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1dc4:0x9 DW_TAG_formal_parameter -.set Lset29333, Ldebug_loc237-Lsection_debug_loc ## DW_AT_location - .long Lset29333 - .long 22915 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x1dcd:0x9 DW_TAG_variable -.set Lset29334, Ldebug_loc568-Lsection_debug_loc ## DW_AT_location - .long Lset29334 - .long 22927 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x1dd6:0x2f DW_TAG_lexical_block - .quad Ltmp3823 ## DW_AT_low_pc -.set Lset29335, Ltmp3837-Ltmp3823 ## DW_AT_high_pc - .long Lset29335 - .byte 13 ## Abbrev [13] 0x1de3:0x9 DW_TAG_variable -.set Lset29336, Ldebug_loc571-Lsection_debug_loc ## DW_AT_location - .long Lset29336 - .long 22940 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x1dec:0x9 DW_TAG_variable -.set Lset29337, Ldebug_loc572-Lsection_debug_loc ## DW_AT_location - .long Lset29337 - .long 22952 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x1df5:0xf DW_TAG_lexical_block -.set Lset29338, Ldebug_ranges196-Ldebug_range ## DW_AT_ranges - .long Lset29338 - .byte 13 ## Abbrev [13] 0x1dfa:0x9 DW_TAG_variable -.set Lset29339, Ldebug_loc573-Lsection_debug_loc ## DW_AT_location - .long Lset29339 - .long 22977 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1e06:0x26 DW_TAG_lexical_block -.set Lset29340, Ldebug_ranges197-Ldebug_range ## DW_AT_ranges - .long Lset29340 - .byte 5 ## Abbrev [5] 0x1e0b:0x10 DW_TAG_variable -.set Lset29341, Ldebug_loc238-Lsection_debug_loc ## DW_AT_location - .long Lset29341 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1919 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1e1b:0x10 DW_TAG_variable -.set Lset29342, Ldebug_loc570-Lsection_debug_loc ## DW_AT_location - .long Lset29342 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1919 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1e2d:0x54 DW_TAG_lexical_block -.set Lset29343, Ldebug_ranges200-Ldebug_range ## DW_AT_ranges - .long Lset29343 - .byte 5 ## Abbrev [5] 0x1e32:0x10 DW_TAG_variable -.set Lset29344, Ldebug_loc574-Lsection_debug_loc ## DW_AT_location - .long Lset29344 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1926 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1e42:0x10 DW_TAG_variable -.set Lset29345, Ldebug_loc575-Lsection_debug_loc ## DW_AT_location - .long Lset29345 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1924 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1e52:0x10 DW_TAG_variable -.set Lset29346, Ldebug_loc576-Lsection_debug_loc ## DW_AT_location - .long Lset29346 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1925 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1e62:0x1e DW_TAG_lexical_block -.set Lset29347, Ldebug_ranges199-Ldebug_range ## DW_AT_ranges - .long Lset29347 - .byte 7 ## Abbrev [7] 0x1e67:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1936 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x1e73:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1936 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1e81:0x3c DW_TAG_lexical_block -.set Lset29348, Ldebug_ranges202-Ldebug_range ## DW_AT_ranges - .long Lset29348 - .byte 5 ## Abbrev [5] 0x1e86:0x10 DW_TAG_variable -.set Lset29349, Ldebug_loc577-Lsection_debug_loc ## DW_AT_location - .long Lset29349 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1946 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1e96:0x10 DW_TAG_variable -.set Lset29350, Ldebug_loc578-Lsection_debug_loc ## DW_AT_location - .long Lset29350 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1947 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1ea6:0x16 DW_TAG_lexical_block -.set Lset29351, Ldebug_ranges201-Ldebug_range ## DW_AT_ranges - .long Lset29351 - .byte 5 ## Abbrev [5] 0x1eab:0x10 DW_TAG_variable -.set Lset29352, Ldebug_loc239-Lsection_debug_loc ## DW_AT_location - .long Lset29352 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1948 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ebd:0x3c DW_TAG_lexical_block -.set Lset29353, Ldebug_ranges204-Ldebug_range ## DW_AT_ranges - .long Lset29353 - .byte 5 ## Abbrev [5] 0x1ec2:0x10 DW_TAG_variable -.set Lset29354, Ldebug_loc579-Lsection_debug_loc ## DW_AT_location - .long Lset29354 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1952 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1ed2:0x10 DW_TAG_variable -.set Lset29355, Ldebug_loc580-Lsection_debug_loc ## DW_AT_location - .long Lset29355 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1953 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1ee2:0x16 DW_TAG_lexical_block -.set Lset29356, Ldebug_ranges203-Ldebug_range ## DW_AT_ranges - .long Lset29356 - .byte 5 ## Abbrev [5] 0x1ee7:0x10 DW_TAG_variable -.set Lset29357, Ldebug_loc240-Lsection_debug_loc ## DW_AT_location - .long Lset29357 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1954 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ef9:0x3c DW_TAG_lexical_block -.set Lset29358, Ldebug_ranges206-Ldebug_range ## DW_AT_ranges - .long Lset29358 - .byte 5 ## Abbrev [5] 0x1efe:0x10 DW_TAG_variable -.set Lset29359, Ldebug_loc581-Lsection_debug_loc ## DW_AT_location - .long Lset29359 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1958 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1f0e:0x10 DW_TAG_variable -.set Lset29360, Ldebug_loc582-Lsection_debug_loc ## DW_AT_location - .long Lset29360 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1959 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1f1e:0x16 DW_TAG_lexical_block -.set Lset29361, Ldebug_ranges205-Ldebug_range ## DW_AT_ranges - .long Lset29361 - .byte 5 ## Abbrev [5] 0x1f23:0x10 DW_TAG_variable -.set Lset29362, Ldebug_loc241-Lsection_debug_loc ## DW_AT_location - .long Lset29362 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1960 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1f35:0x63 DW_TAG_lexical_block -.set Lset29363, Ldebug_ranges208-Ldebug_range ## DW_AT_ranges - .long Lset29363 - .byte 5 ## Abbrev [5] 0x1f3a:0x10 DW_TAG_variable -.set Lset29364, Ldebug_loc583-Lsection_debug_loc ## DW_AT_location - .long Lset29364 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1964 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1f4a:0x10 DW_TAG_variable -.set Lset29365, Ldebug_loc584-Lsection_debug_loc ## DW_AT_location - .long Lset29365 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1965 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1f5a:0x3d DW_TAG_lexical_block -.set Lset29366, Ldebug_ranges207-Ldebug_range ## DW_AT_ranges - .long Lset29366 - .byte 5 ## Abbrev [5] 0x1f5f:0x10 DW_TAG_variable -.set Lset29367, Ldebug_loc242-Lsection_debug_loc ## DW_AT_location - .long Lset29367 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1966 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x1f6f:0x27 DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin - .quad Ltmp4027 ## DW_AT_low_pc -.set Lset29368, Ltmp4037-Ltmp4027 ## DW_AT_high_pc - .long Lset29368 - .byte 1 ## DW_AT_call_file - .short 1966 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1f83:0x9 DW_TAG_formal_parameter -.set Lset29369, Ldebug_loc586-Lsection_debug_loc ## DW_AT_location - .long Lset29369 - .long 22655 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x1f8c:0x9 DW_TAG_formal_parameter -.set Lset29370, Ldebug_loc585-Lsection_debug_loc ## DW_AT_location - .long Lset29370 - .long 22667 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1f98:0x62 DW_TAG_lexical_block -.set Lset29371, Ldebug_ranges211-Ldebug_range ## DW_AT_ranges - .long Lset29371 - .byte 5 ## Abbrev [5] 0x1f9d:0x10 DW_TAG_variable -.set Lset29372, Ldebug_loc587-Lsection_debug_loc ## DW_AT_location - .long Lset29372 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1972 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1fad:0x10 DW_TAG_variable -.set Lset29373, Ldebug_loc588-Lsection_debug_loc ## DW_AT_location - .long Lset29373 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1970 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x1fbd:0x10 DW_TAG_variable -.set Lset29374, Ldebug_loc589-Lsection_debug_loc ## DW_AT_location - .long Lset29374 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1971 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x1fcd:0x2c DW_TAG_lexical_block -.set Lset29375, Ldebug_ranges210-Ldebug_range ## DW_AT_ranges - .long Lset29375 - .byte 5 ## Abbrev [5] 0x1fd2:0x10 DW_TAG_variable -.set Lset29376, Ldebug_loc243-Lsection_debug_loc ## DW_AT_location - .long Lset29376 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1973 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x1fe2:0x16 DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin -.set Lset29377, Ldebug_ranges209-Ldebug_range ## DW_AT_ranges - .long Lset29377 - .byte 1 ## DW_AT_call_file - .short 1973 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x1fee:0x9 DW_TAG_formal_parameter -.set Lset29378, Ldebug_loc590-Lsection_debug_loc ## DW_AT_location - .long Lset29378 - .long 22655 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x1ffa:0x40 DW_TAG_lexical_block -.set Lset29379, Ldebug_ranges212-Ldebug_range ## DW_AT_ranges - .long Lset29379 - .byte 5 ## Abbrev [5] 0x1fff:0x10 DW_TAG_variable -.set Lset29380, Ldebug_loc591-Lsection_debug_loc ## DW_AT_location - .long Lset29380 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1994 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x200f:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1993 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x201b:0x1e DW_TAG_lexical_block - .quad Ltmp4097 ## DW_AT_low_pc -.set Lset29381, Ltmp4099-Ltmp4097 ## DW_AT_high_pc - .long Lset29381 - .byte 5 ## Abbrev [5] 0x2028:0x10 DW_TAG_variable -.set Lset29382, Ldebug_loc244-Lsection_debug_loc ## DW_AT_location - .long Lset29382 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1995 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x203a:0x54 DW_TAG_lexical_block -.set Lset29383, Ldebug_ranges213-Ldebug_range ## DW_AT_ranges - .long Lset29383 - .byte 5 ## Abbrev [5] 0x203f:0x10 DW_TAG_variable -.set Lset29384, Ldebug_loc592-Lsection_debug_loc ## DW_AT_location - .long Lset29384 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1999 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x204f:0x10 DW_TAG_variable -.set Lset29385, Ldebug_loc593-Lsection_debug_loc ## DW_AT_location - .long Lset29385 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2000 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x205f:0x10 DW_TAG_variable -.set Lset29386, Ldebug_loc594-Lsection_debug_loc ## DW_AT_location - .long Lset29386 - .long 5324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2001 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x206f:0x1e DW_TAG_lexical_block - .quad Ltmp4127 ## DW_AT_low_pc -.set Lset29387, Ltmp4139-Ltmp4127 ## DW_AT_high_pc - .long Lset29387 - .byte 5 ## Abbrev [5] 0x207c:0x10 DW_TAG_variable -.set Lset29388, Ldebug_loc595-Lsection_debug_loc ## DW_AT_location - .long Lset29388 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2005 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x208e:0x54 DW_TAG_lexical_block -.set Lset29389, Ldebug_ranges214-Ldebug_range ## DW_AT_ranges - .long Lset29389 - .byte 5 ## Abbrev [5] 0x2093:0x10 DW_TAG_variable -.set Lset29390, Ldebug_loc596-Lsection_debug_loc ## DW_AT_location - .long Lset29390 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2009 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x20a3:0x10 DW_TAG_variable -.set Lset29391, Ldebug_loc597-Lsection_debug_loc ## DW_AT_location - .long Lset29391 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2010 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x20b3:0x10 DW_TAG_variable -.set Lset29392, Ldebug_loc598-Lsection_debug_loc ## DW_AT_location - .long Lset29392 - .long 5324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2011 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x20c3:0x1e DW_TAG_lexical_block - .quad Ltmp4167 ## DW_AT_low_pc -.set Lset29393, Ltmp4180-Ltmp4167 ## DW_AT_high_pc - .long Lset29393 - .byte 5 ## Abbrev [5] 0x20d0:0x10 DW_TAG_variable -.set Lset29394, Ldebug_loc599-Lsection_debug_loc ## DW_AT_location - .long Lset29394 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2015 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x20e2:0x54 DW_TAG_lexical_block -.set Lset29395, Ldebug_ranges215-Ldebug_range ## DW_AT_ranges - .long Lset29395 - .byte 5 ## Abbrev [5] 0x20e7:0x10 DW_TAG_variable -.set Lset29396, Ldebug_loc600-Lsection_debug_loc ## DW_AT_location - .long Lset29396 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2019 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x20f7:0x10 DW_TAG_variable -.set Lset29397, Ldebug_loc601-Lsection_debug_loc ## DW_AT_location - .long Lset29397 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2020 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2107:0x10 DW_TAG_variable -.set Lset29398, Ldebug_loc602-Lsection_debug_loc ## DW_AT_location - .long Lset29398 - .long 5331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2021 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2117:0x1e DW_TAG_lexical_block - .quad Ltmp4208 ## DW_AT_low_pc -.set Lset29399, Ltmp4220-Ltmp4208 ## DW_AT_high_pc - .long Lset29399 - .byte 5 ## Abbrev [5] 0x2124:0x10 DW_TAG_variable -.set Lset29400, Ldebug_loc603-Lsection_debug_loc ## DW_AT_location - .long Lset29400 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2025 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2136:0x54 DW_TAG_lexical_block -.set Lset29401, Ldebug_ranges216-Ldebug_range ## DW_AT_ranges - .long Lset29401 - .byte 5 ## Abbrev [5] 0x213b:0x10 DW_TAG_variable -.set Lset29402, Ldebug_loc604-Lsection_debug_loc ## DW_AT_location - .long Lset29402 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2029 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x214b:0x10 DW_TAG_variable -.set Lset29403, Ldebug_loc605-Lsection_debug_loc ## DW_AT_location - .long Lset29403 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2030 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x215b:0x10 DW_TAG_variable -.set Lset29404, Ldebug_loc606-Lsection_debug_loc ## DW_AT_location - .long Lset29404 - .long 5331 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2031 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x216b:0x1e DW_TAG_lexical_block - .quad Ltmp4248 ## DW_AT_low_pc -.set Lset29405, Ltmp4261-Ltmp4248 ## DW_AT_high_pc - .long Lset29405 - .byte 5 ## Abbrev [5] 0x2178:0x10 DW_TAG_variable -.set Lset29406, Ldebug_loc607-Lsection_debug_loc ## DW_AT_location - .long Lset29406 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2035 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x218a:0x54 DW_TAG_lexical_block -.set Lset29407, Ldebug_ranges217-Ldebug_range ## DW_AT_ranges - .long Lset29407 - .byte 5 ## Abbrev [5] 0x218f:0x10 DW_TAG_variable -.set Lset29408, Ldebug_loc608-Lsection_debug_loc ## DW_AT_location - .long Lset29408 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2039 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x219f:0x10 DW_TAG_variable -.set Lset29409, Ldebug_loc609-Lsection_debug_loc ## DW_AT_location - .long Lset29409 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2040 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x21af:0x10 DW_TAG_variable -.set Lset29410, Ldebug_loc610-Lsection_debug_loc ## DW_AT_location - .long Lset29410 - .long 5340 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2041 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x21bf:0x1e DW_TAG_lexical_block - .quad Ltmp4289 ## DW_AT_low_pc -.set Lset29411, Ltmp4301-Ltmp4289 ## DW_AT_high_pc - .long Lset29411 - .byte 5 ## Abbrev [5] 0x21cc:0x10 DW_TAG_variable -.set Lset29412, Ldebug_loc611-Lsection_debug_loc ## DW_AT_location - .long Lset29412 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2045 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x21de:0x54 DW_TAG_lexical_block -.set Lset29413, Ldebug_ranges218-Ldebug_range ## DW_AT_ranges - .long Lset29413 - .byte 5 ## Abbrev [5] 0x21e3:0x10 DW_TAG_variable -.set Lset29414, Ldebug_loc612-Lsection_debug_loc ## DW_AT_location - .long Lset29414 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2049 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x21f3:0x10 DW_TAG_variable -.set Lset29415, Ldebug_loc613-Lsection_debug_loc ## DW_AT_location - .long Lset29415 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2050 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2203:0x10 DW_TAG_variable -.set Lset29416, Ldebug_loc614-Lsection_debug_loc ## DW_AT_location - .long Lset29416 - .long 5340 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2051 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2213:0x1e DW_TAG_lexical_block - .quad Ltmp4329 ## DW_AT_low_pc -.set Lset29417, Ltmp4342-Ltmp4329 ## DW_AT_high_pc - .long Lset29417 - .byte 5 ## Abbrev [5] 0x2220:0x10 DW_TAG_variable -.set Lset29418, Ldebug_loc615-Lsection_debug_loc ## DW_AT_location - .long Lset29418 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2055 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2232:0x6a DW_TAG_lexical_block -.set Lset29419, Ldebug_ranges219-Ldebug_range ## DW_AT_ranges - .long Lset29419 - .byte 5 ## Abbrev [5] 0x2237:0x10 DW_TAG_variable -.set Lset29420, Ldebug_loc616-Lsection_debug_loc ## DW_AT_location - .long Lset29420 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2061 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2247:0x10 DW_TAG_variable -.set Lset29421, Ldebug_loc617-Lsection_debug_loc ## DW_AT_location - .long Lset29421 - .long 4425 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2060 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2257:0xc DW_TAG_variable - .long 5259 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2062 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2263:0x1e DW_TAG_lexical_block - .quad Ltmp4371 ## DW_AT_low_pc -.set Lset29422, Ltmp4372-Ltmp4371 ## DW_AT_high_pc - .long Lset29422 - .byte 5 ## Abbrev [5] 0x2270:0x10 DW_TAG_variable -.set Lset29423, Ldebug_loc245-Lsection_debug_loc ## DW_AT_location - .long Lset29423 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2065 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x2281:0x1a DW_TAG_lexical_block - .quad Ltmp4372 ## DW_AT_low_pc -.set Lset29424, Ltmp4373-Ltmp4372 ## DW_AT_high_pc - .long Lset29424 - .byte 7 ## Abbrev [7] 0x228e:0xc DW_TAG_variable - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2066 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x229c:0x64 DW_TAG_lexical_block -.set Lset29425, Ldebug_ranges220-Ldebug_range ## DW_AT_ranges - .long Lset29425 - .byte 5 ## Abbrev [5] 0x22a1:0x10 DW_TAG_variable -.set Lset29426, Ldebug_loc246-Lsection_debug_loc ## DW_AT_location - .long Lset29426 - .long 5191 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2072 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x22b1:0x10 DW_TAG_variable -.set Lset29427, Ldebug_loc618-Lsection_debug_loc ## DW_AT_location - .long Lset29427 - .long 5279 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2074 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x22c1:0x10 DW_TAG_variable -.set Lset29428, Ldebug_loc619-Lsection_debug_loc ## DW_AT_location - .long Lset29428 - .long 5351 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2077 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x22d1:0x10 DW_TAG_variable -.set Lset29429, Ldebug_loc620-Lsection_debug_loc ## DW_AT_location - .long Lset29429 - .long 5304 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2076 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x22e1:0x1e DW_TAG_lexical_block - .quad Ltmp4401 ## DW_AT_low_pc -.set Lset29430, Ltmp4403-Ltmp4401 ## DW_AT_high_pc - .long Lset29430 - .byte 5 ## Abbrev [5] 0x22ee:0x10 DW_TAG_variable -.set Lset29431, Ldebug_loc247-Lsection_debug_loc ## DW_AT_location - .long Lset29431 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2079 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2300:0x3c DW_TAG_lexical_block -.set Lset29432, Ldebug_ranges222-Ldebug_range ## DW_AT_ranges - .long Lset29432 - .byte 5 ## Abbrev [5] 0x2305:0x10 DW_TAG_variable -.set Lset29433, Ldebug_loc621-Lsection_debug_loc ## DW_AT_location - .long Lset29433 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2084 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2315:0x26 DW_TAG_lexical_block -.set Lset29434, Ldebug_ranges221-Ldebug_range ## DW_AT_ranges - .long Lset29434 - .byte 5 ## Abbrev [5] 0x231a:0x10 DW_TAG_variable -.set Lset29435, Ldebug_loc248-Lsection_debug_loc ## DW_AT_location - .long Lset29435 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2087 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x232a:0x10 DW_TAG_variable -.set Lset29436, Ldebug_loc622-Lsection_debug_loc ## DW_AT_location - .long Lset29436 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2087 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x233c:0x3c DW_TAG_lexical_block -.set Lset29437, Ldebug_ranges224-Ldebug_range ## DW_AT_ranges - .long Lset29437 - .byte 5 ## Abbrev [5] 0x2341:0x10 DW_TAG_variable -.set Lset29438, Ldebug_loc623-Lsection_debug_loc ## DW_AT_location - .long Lset29438 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2092 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2351:0x26 DW_TAG_lexical_block -.set Lset29439, Ldebug_ranges223-Ldebug_range ## DW_AT_ranges - .long Lset29439 - .byte 5 ## Abbrev [5] 0x2356:0x10 DW_TAG_variable -.set Lset29440, Ldebug_loc249-Lsection_debug_loc ## DW_AT_location - .long Lset29440 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2095 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2366:0x10 DW_TAG_variable -.set Lset29441, Ldebug_loc624-Lsection_debug_loc ## DW_AT_location - .long Lset29441 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2095 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2378:0x156 DW_TAG_lexical_block -.set Lset29442, Ldebug_ranges227-Ldebug_range ## DW_AT_ranges - .long Lset29442 - .byte 5 ## Abbrev [5] 0x237d:0x10 DW_TAG_variable -.set Lset29443, Ldebug_loc625-Lsection_debug_loc ## DW_AT_location - .long Lset29443 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2101 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x238d:0x10 DW_TAG_variable -.set Lset29444, Ldebug_loc626-Lsection_debug_loc ## DW_AT_location - .long Lset29444 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2100 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x239d:0x6a DW_TAG_lexical_block - .quad Ltmp4497 ## DW_AT_low_pc -.set Lset29445, Ltmp4509-Ltmp4497 ## DW_AT_high_pc - .long Lset29445 - .byte 5 ## Abbrev [5] 0x23aa:0x10 DW_TAG_variable -.set Lset29446, Ldebug_loc627-Lsection_debug_loc ## DW_AT_location - .long Lset29446 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x23ba:0x4c DW_TAG_lexical_block - .quad Ltmp4499 ## DW_AT_low_pc -.set Lset29447, Ltmp4509-Ltmp4499 ## DW_AT_high_pc - .long Lset29447 - .byte 5 ## Abbrev [5] 0x23c7:0x10 DW_TAG_variable -.set Lset29448, Ldebug_loc628-Lsection_debug_loc ## DW_AT_location - .long Lset29448 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x23d7:0x10 DW_TAG_variable -.set Lset29449, Ldebug_loc629-Lsection_debug_loc ## DW_AT_location - .long Lset29449 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x23e7:0x1e DW_TAG_lexical_block - .quad Ltmp4507 ## DW_AT_low_pc -.set Lset29450, Ltmp4509-Ltmp4507 ## DW_AT_high_pc - .long Lset29450 - .byte 5 ## Abbrev [5] 0x23f4:0x10 DW_TAG_variable -.set Lset29451, Ldebug_loc251-Lsection_debug_loc ## DW_AT_location - .long Lset29451 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x2407:0x6a DW_TAG_lexical_block - .quad Ltmp4524 ## DW_AT_low_pc -.set Lset29452, Ltmp4536-Ltmp4524 ## DW_AT_high_pc - .long Lset29452 - .byte 5 ## Abbrev [5] 0x2414:0x10 DW_TAG_variable -.set Lset29453, Ldebug_loc634-Lsection_debug_loc ## DW_AT_location - .long Lset29453 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2424:0x4c DW_TAG_lexical_block - .quad Ltmp4526 ## DW_AT_low_pc -.set Lset29454, Ltmp4536-Ltmp4526 ## DW_AT_high_pc - .long Lset29454 - .byte 5 ## Abbrev [5] 0x2431:0x10 DW_TAG_variable -.set Lset29455, Ldebug_loc635-Lsection_debug_loc ## DW_AT_location - .long Lset29455 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2441:0x10 DW_TAG_variable -.set Lset29456, Ldebug_loc636-Lsection_debug_loc ## DW_AT_location - .long Lset29456 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2451:0x1e DW_TAG_lexical_block - .quad Ltmp4534 ## DW_AT_low_pc -.set Lset29457, Ltmp4536-Ltmp4534 ## DW_AT_high_pc - .long Lset29457 - .byte 5 ## Abbrev [5] 0x245e:0x10 DW_TAG_variable -.set Lset29458, Ldebug_loc252-Lsection_debug_loc ## DW_AT_location - .long Lset29458 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2471:0x5c DW_TAG_lexical_block -.set Lset29459, Ldebug_ranges226-Ldebug_range ## DW_AT_ranges - .long Lset29459 - .byte 5 ## Abbrev [5] 0x2476:0x10 DW_TAG_variable -.set Lset29460, Ldebug_loc630-Lsection_debug_loc ## DW_AT_location - .long Lset29460 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2486:0x10 DW_TAG_variable -.set Lset29461, Ldebug_loc631-Lsection_debug_loc ## DW_AT_location - .long Lset29461 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2496:0x10 DW_TAG_variable -.set Lset29462, Ldebug_loc632-Lsection_debug_loc ## DW_AT_location - .long Lset29462 - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x24a6:0x26 DW_TAG_lexical_block -.set Lset29463, Ldebug_ranges225-Ldebug_range ## DW_AT_ranges - .long Lset29463 - .byte 5 ## Abbrev [5] 0x24ab:0x10 DW_TAG_variable -.set Lset29464, Ldebug_loc250-Lsection_debug_loc ## DW_AT_location - .long Lset29464 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x24bb:0x10 DW_TAG_variable -.set Lset29465, Ldebug_loc633-Lsection_debug_loc ## DW_AT_location - .long Lset29465 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2102 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x24ce:0x90 DW_TAG_lexical_block -.set Lset29466, Ldebug_ranges232-Ldebug_range ## DW_AT_ranges - .long Lset29466 - .byte 5 ## Abbrev [5] 0x24d3:0x10 DW_TAG_variable -.set Lset29467, Ldebug_loc637-Lsection_debug_loc ## DW_AT_location - .long Lset29467 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2113 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x24e3:0x10 DW_TAG_variable -.set Lset29468, Ldebug_loc638-Lsection_debug_loc ## DW_AT_location - .long Lset29468 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2110 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x24f3:0x6a DW_TAG_lexical_block -.set Lset29469, Ldebug_ranges231-Ldebug_range ## DW_AT_ranges - .long Lset29469 - .byte 5 ## Abbrev [5] 0x24f8:0x10 DW_TAG_variable -.set Lset29470, Ldebug_loc639-Lsection_debug_loc ## DW_AT_location - .long Lset29470 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2114 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2508:0x26 DW_TAG_lexical_block -.set Lset29471, Ldebug_ranges228-Ldebug_range ## DW_AT_ranges - .long Lset29471 - .byte 5 ## Abbrev [5] 0x250d:0x10 DW_TAG_variable -.set Lset29472, Ldebug_loc253-Lsection_debug_loc ## DW_AT_location - .long Lset29472 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2114 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x251d:0x10 DW_TAG_variable -.set Lset29473, Ldebug_loc643-Lsection_debug_loc ## DW_AT_location - .long Lset29473 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2114 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 12 ## Abbrev [12] 0x252e:0x2e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin -.set Lset29474, Ldebug_ranges229-Ldebug_range ## DW_AT_ranges - .long Lset29474 - .byte 1 ## DW_AT_call_file - .short 2114 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x253a:0x9 DW_TAG_formal_parameter -.set Lset29475, Ldebug_loc640-Lsection_debug_loc ## DW_AT_location - .long Lset29475 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x2543:0x9 DW_TAG_variable -.set Lset29476, Ldebug_loc641-Lsection_debug_loc ## DW_AT_location - .long Lset29476 - .long 22418 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x254c:0xf DW_TAG_lexical_block -.set Lset29477, Ldebug_ranges230-Ldebug_range ## DW_AT_ranges - .long Lset29477 - .byte 13 ## Abbrev [13] 0x2551:0x9 DW_TAG_variable -.set Lset29478, Ldebug_loc642-Lsection_debug_loc ## DW_AT_location - .long Lset29478 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x255e:0xa0 DW_TAG_lexical_block -.set Lset29479, Ldebug_ranges235-Ldebug_range ## DW_AT_ranges - .long Lset29479 - .byte 5 ## Abbrev [5] 0x2563:0x10 DW_TAG_variable -.set Lset29480, Ldebug_loc644-Lsection_debug_loc ## DW_AT_location - .long Lset29480 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2121 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2573:0x10 DW_TAG_variable -.set Lset29481, Ldebug_loc645-Lsection_debug_loc ## DW_AT_location - .long Lset29481 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2118 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2583:0x7a DW_TAG_lexical_block -.set Lset29482, Ldebug_ranges234-Ldebug_range ## DW_AT_ranges - .long Lset29482 - .byte 5 ## Abbrev [5] 0x2588:0x10 DW_TAG_variable -.set Lset29483, Ldebug_loc646-Lsection_debug_loc ## DW_AT_location - .long Lset29483 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2122 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2598:0x26 DW_TAG_lexical_block -.set Lset29484, Ldebug_ranges233-Ldebug_range ## DW_AT_ranges - .long Lset29484 - .byte 5 ## Abbrev [5] 0x259d:0x10 DW_TAG_variable -.set Lset29485, Ldebug_loc254-Lsection_debug_loc ## DW_AT_location - .long Lset29485 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2122 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x25ad:0x10 DW_TAG_variable -.set Lset29486, Ldebug_loc650-Lsection_debug_loc ## DW_AT_location - .long Lset29486 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2122 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x25be:0x3e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin - .quad Ltmp4687 ## DW_AT_low_pc -.set Lset29487, Ltmp4698-Ltmp4687 ## DW_AT_high_pc - .long Lset29487 - .byte 1 ## DW_AT_call_file - .short 2122 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x25d2:0x9 DW_TAG_formal_parameter -.set Lset29488, Ldebug_loc647-Lsection_debug_loc ## DW_AT_location - .long Lset29488 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x25db:0x9 DW_TAG_variable -.set Lset29489, Ldebug_loc648-Lsection_debug_loc ## DW_AT_location - .long Lset29489 - .long 22418 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x25e4:0x17 DW_TAG_lexical_block - .quad Ltmp4691 ## DW_AT_low_pc -.set Lset29490, Ltmp4698-Ltmp4691 ## DW_AT_high_pc - .long Lset29490 - .byte 13 ## Abbrev [13] 0x25f1:0x9 DW_TAG_variable -.set Lset29491, Ldebug_loc649-Lsection_debug_loc ## DW_AT_location - .long Lset29491 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x25fe:0xe2 DW_TAG_lexical_block -.set Lset29492, Ldebug_ranges239-Ldebug_range ## DW_AT_ranges - .long Lset29492 - .byte 5 ## Abbrev [5] 0x2603:0x10 DW_TAG_variable -.set Lset29493, Ldebug_loc654-Lsection_debug_loc ## DW_AT_location - .long Lset29493 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2131 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2613:0xaa DW_TAG_lexical_block -.set Lset29494, Ldebug_ranges237-Ldebug_range ## DW_AT_ranges - .long Lset29494 - .byte 5 ## Abbrev [5] 0x2618:0x10 DW_TAG_variable -.set Lset29495, Ldebug_loc651-Lsection_debug_loc ## DW_AT_location - .long Lset29495 - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2139 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2628:0x10 DW_TAG_variable -.set Lset29496, Ldebug_loc652-Lsection_debug_loc ## DW_AT_location - .long Lset29496 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2136 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2638:0x10 DW_TAG_variable -.set Lset29497, Ldebug_loc653-Lsection_debug_loc ## DW_AT_location - .long Lset29497 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2135 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2648:0x10 DW_TAG_variable -.set Lset29498, Ldebug_loc657-Lsection_debug_loc ## DW_AT_location - .long Lset29498 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2138 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2658:0x26 DW_TAG_lexical_block -.set Lset29499, Ldebug_ranges236-Ldebug_range ## DW_AT_ranges - .long Lset29499 - .byte 5 ## Abbrev [5] 0x265d:0x10 DW_TAG_variable -.set Lset29500, Ldebug_loc255-Lsection_debug_loc ## DW_AT_location - .long Lset29500 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2141 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x266d:0x10 DW_TAG_variable -.set Lset29501, Ldebug_loc660-Lsection_debug_loc ## DW_AT_location - .long Lset29501 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2141 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x267e:0x3e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin - .quad Ltmp4754 ## DW_AT_low_pc -.set Lset29502, Ltmp4764-Ltmp4754 ## DW_AT_high_pc - .long Lset29502 - .byte 1 ## DW_AT_call_file - .short 2139 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x2692:0x9 DW_TAG_formal_parameter -.set Lset29503, Ldebug_loc656-Lsection_debug_loc ## DW_AT_location - .long Lset29503 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x269b:0x9 DW_TAG_variable -.set Lset29504, Ldebug_loc658-Lsection_debug_loc ## DW_AT_location - .long Lset29504 - .long 22418 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x26a4:0x17 DW_TAG_lexical_block - .quad Ltmp4756 ## DW_AT_low_pc -.set Lset29505, Ltmp4764-Ltmp4756 ## DW_AT_high_pc - .long Lset29505 - .byte 13 ## Abbrev [13] 0x26b1:0x9 DW_TAG_variable -.set Lset29506, Ldebug_loc659-Lsection_debug_loc ## DW_AT_location - .long Lset29506 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x26bd:0x22 DW_TAG_lexical_block -.set Lset29507, Ldebug_ranges238-Ldebug_range ## DW_AT_ranges - .long Lset29507 - .byte 5 ## Abbrev [5] 0x26c2:0x10 DW_TAG_variable -.set Lset29508, Ldebug_loc655-Lsection_debug_loc ## DW_AT_location - .long Lset29508 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2132 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x26d2:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2132 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x26e0:0x8e DW_TAG_lexical_block -.set Lset29509, Ldebug_ranges240-Ldebug_range ## DW_AT_ranges - .long Lset29509 - .byte 5 ## Abbrev [5] 0x26e5:0x10 DW_TAG_variable -.set Lset29510, Ldebug_loc661-Lsection_debug_loc ## DW_AT_location - .long Lset29510 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2151 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x26f5:0x10 DW_TAG_variable -.set Lset29511, Ldebug_loc662-Lsection_debug_loc ## DW_AT_location - .long Lset29511 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2153 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2705:0x10 DW_TAG_variable -.set Lset29512, Ldebug_loc664-Lsection_debug_loc ## DW_AT_location - .long Lset29512 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2152 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2715:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2150 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x2721:0x4c DW_TAG_lexical_block - .quad Ltmp4801 ## DW_AT_low_pc -.set Lset29513, Ltmp4806-Ltmp4801 ## DW_AT_high_pc - .long Lset29513 - .byte 5 ## Abbrev [5] 0x272e:0x10 DW_TAG_variable -.set Lset29514, Ldebug_loc663-Lsection_debug_loc ## DW_AT_location - .long Lset29514 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2154 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x273e:0x10 DW_TAG_variable -.set Lset29515, Ldebug_loc665-Lsection_debug_loc ## DW_AT_location - .long Lset29515 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2154 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x274e:0x1e DW_TAG_lexical_block - .quad Ltmp4804 ## DW_AT_low_pc -.set Lset29516, Ltmp4806-Ltmp4804 ## DW_AT_high_pc - .long Lset29516 - .byte 5 ## Abbrev [5] 0x275b:0x10 DW_TAG_variable -.set Lset29517, Ldebug_loc256-Lsection_debug_loc ## DW_AT_location - .long Lset29517 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2154 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x276e:0x86 DW_TAG_lexical_block -.set Lset29518, Ldebug_ranges242-Ldebug_range ## DW_AT_ranges - .long Lset29518 - .byte 5 ## Abbrev [5] 0x2773:0x10 DW_TAG_variable -.set Lset29519, Ldebug_loc666-Lsection_debug_loc ## DW_AT_location - .long Lset29519 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2159 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2783:0x10 DW_TAG_variable -.set Lset29520, Ldebug_loc667-Lsection_debug_loc ## DW_AT_location - .long Lset29520 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2161 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2793:0x10 DW_TAG_variable -.set Lset29521, Ldebug_loc669-Lsection_debug_loc ## DW_AT_location - .long Lset29521 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2160 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x27a3:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2158 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x27af:0x44 DW_TAG_lexical_block -.set Lset29522, Ldebug_ranges241-Ldebug_range ## DW_AT_ranges - .long Lset29522 - .byte 5 ## Abbrev [5] 0x27b4:0x10 DW_TAG_variable -.set Lset29523, Ldebug_loc668-Lsection_debug_loc ## DW_AT_location - .long Lset29523 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2162 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x27c4:0x10 DW_TAG_variable -.set Lset29524, Ldebug_loc670-Lsection_debug_loc ## DW_AT_location - .long Lset29524 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2162 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x27d4:0x1e DW_TAG_lexical_block - .quad Ltmp4834 ## DW_AT_low_pc -.set Lset29525, Ltmp4836-Ltmp4834 ## DW_AT_high_pc - .long Lset29525 - .byte 5 ## Abbrev [5] 0x27e1:0x10 DW_TAG_variable -.set Lset29526, Ldebug_loc257-Lsection_debug_loc ## DW_AT_location - .long Lset29526 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2162 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x27f4:0xce DW_TAG_lexical_block -.set Lset29527, Ldebug_ranges247-Ldebug_range ## DW_AT_ranges - .long Lset29527 - .byte 5 ## Abbrev [5] 0x27f9:0x10 DW_TAG_variable -.set Lset29528, Ldebug_loc671-Lsection_debug_loc ## DW_AT_location - .long Lset29528 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2166 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2809:0x10 DW_TAG_variable -.set Lset29529, Ldebug_loc672-Lsection_debug_loc ## DW_AT_location - .long Lset29529 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2167 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2819:0x10 DW_TAG_variable -.set Lset29530, Ldebug_loc673-Lsection_debug_loc ## DW_AT_location - .long Lset29530 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2168 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2829:0x10 DW_TAG_variable -.set Lset29531, Ldebug_loc674-Lsection_debug_loc ## DW_AT_location - .long Lset29531 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2169 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2839:0x26 DW_TAG_lexical_block -.set Lset29532, Ldebug_ranges243-Ldebug_range ## DW_AT_ranges - .long Lset29532 - .byte 5 ## Abbrev [5] 0x283e:0x10 DW_TAG_variable -.set Lset29533, Ldebug_loc675-Lsection_debug_loc ## DW_AT_location - .long Lset29533 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2170 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x284e:0x10 DW_TAG_variable -.set Lset29534, Ldebug_loc676-Lsection_debug_loc ## DW_AT_location - .long Lset29534 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2170 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x285f:0x26 DW_TAG_lexical_block -.set Lset29535, Ldebug_ranges244-Ldebug_range ## DW_AT_ranges - .long Lset29535 - .byte 5 ## Abbrev [5] 0x2864:0x10 DW_TAG_variable -.set Lset29536, Ldebug_loc677-Lsection_debug_loc ## DW_AT_location - .long Lset29536 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2172 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2874:0x10 DW_TAG_variable -.set Lset29537, Ldebug_loc678-Lsection_debug_loc ## DW_AT_location - .long Lset29537 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2172 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2885:0x3c DW_TAG_lexical_block -.set Lset29538, Ldebug_ranges246-Ldebug_range ## DW_AT_ranges - .long Lset29538 - .byte 5 ## Abbrev [5] 0x288a:0x10 DW_TAG_variable -.set Lset29539, Ldebug_loc679-Lsection_debug_loc ## DW_AT_location - .long Lset29539 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2175 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x289a:0x26 DW_TAG_lexical_block -.set Lset29540, Ldebug_ranges245-Ldebug_range ## DW_AT_ranges - .long Lset29540 - .byte 5 ## Abbrev [5] 0x289f:0x10 DW_TAG_variable -.set Lset29541, Ldebug_loc680-Lsection_debug_loc ## DW_AT_location - .long Lset29541 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2176 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x28af:0x10 DW_TAG_variable -.set Lset29542, Ldebug_loc681-Lsection_debug_loc ## DW_AT_location - .long Lset29542 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2176 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x28c2:0x6c DW_TAG_lexical_block -.set Lset29543, Ldebug_ranges249-Ldebug_range ## DW_AT_ranges - .long Lset29543 - .byte 5 ## Abbrev [5] 0x28c7:0x10 DW_TAG_variable -.set Lset29544, Ldebug_loc682-Lsection_debug_loc ## DW_AT_location - .long Lset29544 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2183 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x28d7:0x10 DW_TAG_variable -.set Lset29545, Ldebug_loc683-Lsection_debug_loc ## DW_AT_location - .long Lset29545 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2184 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x28e7:0x10 DW_TAG_variable -.set Lset29546, Ldebug_loc684-Lsection_debug_loc ## DW_AT_location - .long Lset29546 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2185 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x28f7:0x10 DW_TAG_variable -.set Lset29547, Ldebug_loc685-Lsection_debug_loc ## DW_AT_location - .long Lset29547 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2186 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2907:0x26 DW_TAG_lexical_block -.set Lset29548, Ldebug_ranges248-Ldebug_range ## DW_AT_ranges - .long Lset29548 - .byte 5 ## Abbrev [5] 0x290c:0x10 DW_TAG_variable -.set Lset29549, Ldebug_loc686-Lsection_debug_loc ## DW_AT_location - .long Lset29549 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2187 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x291c:0x10 DW_TAG_variable -.set Lset29550, Ldebug_loc687-Lsection_debug_loc ## DW_AT_location - .long Lset29550 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2187 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x292e:0xce DW_TAG_lexical_block -.set Lset29551, Ldebug_ranges254-Ldebug_range ## DW_AT_ranges - .long Lset29551 - .byte 5 ## Abbrev [5] 0x2933:0x10 DW_TAG_variable -.set Lset29552, Ldebug_loc688-Lsection_debug_loc ## DW_AT_location - .long Lset29552 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2191 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2943:0x10 DW_TAG_variable -.set Lset29553, Ldebug_loc689-Lsection_debug_loc ## DW_AT_location - .long Lset29553 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2192 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2953:0x10 DW_TAG_variable -.set Lset29554, Ldebug_loc690-Lsection_debug_loc ## DW_AT_location - .long Lset29554 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2193 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2963:0x10 DW_TAG_variable -.set Lset29555, Ldebug_loc691-Lsection_debug_loc ## DW_AT_location - .long Lset29555 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2194 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2973:0x26 DW_TAG_lexical_block -.set Lset29556, Ldebug_ranges250-Ldebug_range ## DW_AT_ranges - .long Lset29556 - .byte 5 ## Abbrev [5] 0x2978:0x10 DW_TAG_variable -.set Lset29557, Ldebug_loc692-Lsection_debug_loc ## DW_AT_location - .long Lset29557 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2195 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2988:0x10 DW_TAG_variable -.set Lset29558, Ldebug_loc693-Lsection_debug_loc ## DW_AT_location - .long Lset29558 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2195 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2999:0x26 DW_TAG_lexical_block -.set Lset29559, Ldebug_ranges251-Ldebug_range ## DW_AT_ranges - .long Lset29559 - .byte 5 ## Abbrev [5] 0x299e:0x10 DW_TAG_variable -.set Lset29560, Ldebug_loc694-Lsection_debug_loc ## DW_AT_location - .long Lset29560 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2197 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x29ae:0x10 DW_TAG_variable -.set Lset29561, Ldebug_loc695-Lsection_debug_loc ## DW_AT_location - .long Lset29561 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2197 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x29bf:0x3c DW_TAG_lexical_block -.set Lset29562, Ldebug_ranges253-Ldebug_range ## DW_AT_ranges - .long Lset29562 - .byte 5 ## Abbrev [5] 0x29c4:0x10 DW_TAG_variable -.set Lset29563, Ldebug_loc696-Lsection_debug_loc ## DW_AT_location - .long Lset29563 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2200 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x29d4:0x26 DW_TAG_lexical_block -.set Lset29564, Ldebug_ranges252-Ldebug_range ## DW_AT_ranges - .long Lset29564 - .byte 5 ## Abbrev [5] 0x29d9:0x10 DW_TAG_variable -.set Lset29565, Ldebug_loc697-Lsection_debug_loc ## DW_AT_location - .long Lset29565 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2201 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x29e9:0x10 DW_TAG_variable -.set Lset29566, Ldebug_loc698-Lsection_debug_loc ## DW_AT_location - .long Lset29566 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2201 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x29fc:0x6c DW_TAG_lexical_block -.set Lset29567, Ldebug_ranges256-Ldebug_range ## DW_AT_ranges - .long Lset29567 - .byte 5 ## Abbrev [5] 0x2a01:0x10 DW_TAG_variable -.set Lset29568, Ldebug_loc699-Lsection_debug_loc ## DW_AT_location - .long Lset29568 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2208 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2a11:0x10 DW_TAG_variable -.set Lset29569, Ldebug_loc700-Lsection_debug_loc ## DW_AT_location - .long Lset29569 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2209 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2a21:0x10 DW_TAG_variable -.set Lset29570, Ldebug_loc701-Lsection_debug_loc ## DW_AT_location - .long Lset29570 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2210 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2a31:0x10 DW_TAG_variable -.set Lset29571, Ldebug_loc702-Lsection_debug_loc ## DW_AT_location - .long Lset29571 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2211 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2a41:0x26 DW_TAG_lexical_block -.set Lset29572, Ldebug_ranges255-Ldebug_range ## DW_AT_ranges - .long Lset29572 - .byte 5 ## Abbrev [5] 0x2a46:0x10 DW_TAG_variable -.set Lset29573, Ldebug_loc703-Lsection_debug_loc ## DW_AT_location - .long Lset29573 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2212 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2a56:0x10 DW_TAG_variable -.set Lset29574, Ldebug_loc704-Lsection_debug_loc ## DW_AT_location - .long Lset29574 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2212 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2a68:0x42 DW_TAG_lexical_block -.set Lset29575, Ldebug_ranges259-Ldebug_range ## DW_AT_ranges - .long Lset29575 - .byte 5 ## Abbrev [5] 0x2a6d:0x10 DW_TAG_variable -.set Lset29576, Ldebug_loc705-Lsection_debug_loc ## DW_AT_location - .long Lset29576 - .long 5357 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2216 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2a7d:0x2c DW_TAG_lexical_block -.set Lset29577, Ldebug_ranges258-Ldebug_range ## DW_AT_ranges - .long Lset29577 - .byte 5 ## Abbrev [5] 0x2a82:0x10 DW_TAG_variable -.set Lset29578, Ldebug_loc706-Lsection_debug_loc ## DW_AT_location - .long Lset29578 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2218 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2a92:0x16 DW_TAG_lexical_block -.set Lset29579, Ldebug_ranges257-Ldebug_range ## DW_AT_ranges - .long Lset29579 - .byte 5 ## Abbrev [5] 0x2a97:0x10 DW_TAG_variable -.set Lset29580, Ldebug_loc707-Lsection_debug_loc ## DW_AT_location - .long Lset29580 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2219 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2aaa:0x42 DW_TAG_lexical_block -.set Lset29581, Ldebug_ranges262-Ldebug_range ## DW_AT_ranges - .long Lset29581 - .byte 14 ## Abbrev [14] 0x2aaf:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\210~" - .long 5360 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2228 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2abf:0x2c DW_TAG_lexical_block -.set Lset29582, Ldebug_ranges261-Ldebug_range ## DW_AT_ranges - .long Lset29582 - .byte 5 ## Abbrev [5] 0x2ac4:0x10 DW_TAG_variable -.set Lset29583, Ldebug_loc708-Lsection_debug_loc ## DW_AT_location - .long Lset29583 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2230 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2ad4:0x16 DW_TAG_lexical_block -.set Lset29584, Ldebug_ranges260-Ldebug_range ## DW_AT_ranges - .long Lset29584 - .byte 5 ## Abbrev [5] 0x2ad9:0x10 DW_TAG_variable -.set Lset29585, Ldebug_loc709-Lsection_debug_loc ## DW_AT_location - .long Lset29585 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2231 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2aec:0x3c DW_TAG_lexical_block -.set Lset29586, Ldebug_ranges264-Ldebug_range ## DW_AT_ranges - .long Lset29586 - .byte 5 ## Abbrev [5] 0x2af1:0x10 DW_TAG_variable -.set Lset29587, Ldebug_loc710-Lsection_debug_loc ## DW_AT_location - .long Lset29587 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2244 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2b01:0x26 DW_TAG_lexical_block -.set Lset29588, Ldebug_ranges263-Ldebug_range ## DW_AT_ranges - .long Lset29588 - .byte 5 ## Abbrev [5] 0x2b06:0x10 DW_TAG_variable -.set Lset29589, Ldebug_loc258-Lsection_debug_loc ## DW_AT_location - .long Lset29589 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2245 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b16:0x10 DW_TAG_variable -.set Lset29590, Ldebug_loc711-Lsection_debug_loc ## DW_AT_location - .long Lset29590 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2245 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2b28:0x3c DW_TAG_lexical_block -.set Lset29591, Ldebug_ranges266-Ldebug_range ## DW_AT_ranges - .long Lset29591 - .byte 5 ## Abbrev [5] 0x2b2d:0x10 DW_TAG_variable -.set Lset29592, Ldebug_loc712-Lsection_debug_loc ## DW_AT_location - .long Lset29592 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2254 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2b3d:0x26 DW_TAG_lexical_block -.set Lset29593, Ldebug_ranges265-Ldebug_range ## DW_AT_ranges - .long Lset29593 - .byte 5 ## Abbrev [5] 0x2b42:0x10 DW_TAG_variable -.set Lset29594, Ldebug_loc259-Lsection_debug_loc ## DW_AT_location - .long Lset29594 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2255 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b52:0x10 DW_TAG_variable -.set Lset29595, Ldebug_loc713-Lsection_debug_loc ## DW_AT_location - .long Lset29595 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2255 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2b64:0x3c DW_TAG_lexical_block -.set Lset29596, Ldebug_ranges268-Ldebug_range ## DW_AT_ranges - .long Lset29596 - .byte 5 ## Abbrev [5] 0x2b69:0x10 DW_TAG_variable -.set Lset29597, Ldebug_loc714-Lsection_debug_loc ## DW_AT_location - .long Lset29597 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2263 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2b79:0x26 DW_TAG_lexical_block -.set Lset29598, Ldebug_ranges267-Ldebug_range ## DW_AT_ranges - .long Lset29598 - .byte 5 ## Abbrev [5] 0x2b7e:0x10 DW_TAG_variable -.set Lset29599, Ldebug_loc260-Lsection_debug_loc ## DW_AT_location - .long Lset29599 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2264 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2b8e:0x10 DW_TAG_variable -.set Lset29600, Ldebug_loc715-Lsection_debug_loc ## DW_AT_location - .long Lset29600 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2264 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x2ba0:0x1e DW_TAG_lexical_block - .quad Ltmp5218 ## DW_AT_low_pc -.set Lset29601, Ltmp5220-Ltmp5218 ## DW_AT_high_pc - .long Lset29601 - .byte 5 ## Abbrev [5] 0x2bad:0x10 DW_TAG_variable -.set Lset29602, Ldebug_loc261-Lsection_debug_loc ## DW_AT_location - .long Lset29602 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2269 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x2bbe:0x1e DW_TAG_lexical_block - .quad Ltmp5236 ## DW_AT_low_pc -.set Lset29603, Ltmp5238-Ltmp5236 ## DW_AT_high_pc - .long Lset29603 - .byte 5 ## Abbrev [5] 0x2bcb:0x10 DW_TAG_variable -.set Lset29604, Ldebug_loc262-Lsection_debug_loc ## DW_AT_location - .long Lset29604 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2273 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2bdc:0x3c DW_TAG_lexical_block -.set Lset29605, Ldebug_ranges270-Ldebug_range ## DW_AT_ranges - .long Lset29605 - .byte 5 ## Abbrev [5] 0x2be1:0x10 DW_TAG_variable -.set Lset29606, Ldebug_loc716-Lsection_debug_loc ## DW_AT_location - .long Lset29606 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2290 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2bf1:0x10 DW_TAG_variable -.set Lset29607, Ldebug_loc717-Lsection_debug_loc ## DW_AT_location - .long Lset29607 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2289 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2c01:0x16 DW_TAG_lexical_block -.set Lset29608, Ldebug_ranges269-Ldebug_range ## DW_AT_ranges - .long Lset29608 - .byte 5 ## Abbrev [5] 0x2c06:0x10 DW_TAG_variable -.set Lset29609, Ldebug_loc263-Lsection_debug_loc ## DW_AT_location - .long Lset29609 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2291 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2c18:0x3c DW_TAG_lexical_block -.set Lset29610, Ldebug_ranges272-Ldebug_range ## DW_AT_ranges - .long Lset29610 - .byte 5 ## Abbrev [5] 0x2c1d:0x10 DW_TAG_variable -.set Lset29611, Ldebug_loc718-Lsection_debug_loc ## DW_AT_location - .long Lset29611 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2296 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c2d:0x10 DW_TAG_variable -.set Lset29612, Ldebug_loc719-Lsection_debug_loc ## DW_AT_location - .long Lset29612 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2295 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2c3d:0x16 DW_TAG_lexical_block -.set Lset29613, Ldebug_ranges271-Ldebug_range ## DW_AT_ranges - .long Lset29613 - .byte 5 ## Abbrev [5] 0x2c42:0x10 DW_TAG_variable -.set Lset29614, Ldebug_loc264-Lsection_debug_loc ## DW_AT_location - .long Lset29614 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2297 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2c54:0x3c DW_TAG_lexical_block -.set Lset29615, Ldebug_ranges274-Ldebug_range ## DW_AT_ranges - .long Lset29615 - .byte 5 ## Abbrev [5] 0x2c59:0x10 DW_TAG_variable -.set Lset29616, Ldebug_loc720-Lsection_debug_loc ## DW_AT_location - .long Lset29616 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2301 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2c69:0x10 DW_TAG_variable -.set Lset29617, Ldebug_loc721-Lsection_debug_loc ## DW_AT_location - .long Lset29617 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2302 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2c79:0x16 DW_TAG_lexical_block -.set Lset29618, Ldebug_ranges273-Ldebug_range ## DW_AT_ranges - .long Lset29618 - .byte 5 ## Abbrev [5] 0x2c7e:0x10 DW_TAG_variable -.set Lset29619, Ldebug_loc265-Lsection_debug_loc ## DW_AT_location - .long Lset29619 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2303 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2c90:0x3c DW_TAG_lexical_block -.set Lset29620, Ldebug_ranges276-Ldebug_range ## DW_AT_ranges - .long Lset29620 - .byte 5 ## Abbrev [5] 0x2c95:0x10 DW_TAG_variable -.set Lset29621, Ldebug_loc722-Lsection_debug_loc ## DW_AT_location - .long Lset29621 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2308 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ca5:0x10 DW_TAG_variable -.set Lset29622, Ldebug_loc723-Lsection_debug_loc ## DW_AT_location - .long Lset29622 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2307 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2cb5:0x16 DW_TAG_lexical_block -.set Lset29623, Ldebug_ranges275-Ldebug_range ## DW_AT_ranges - .long Lset29623 - .byte 5 ## Abbrev [5] 0x2cba:0x10 DW_TAG_variable -.set Lset29624, Ldebug_loc266-Lsection_debug_loc ## DW_AT_location - .long Lset29624 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2309 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2ccc:0x3c DW_TAG_lexical_block -.set Lset29625, Ldebug_ranges278-Ldebug_range ## DW_AT_ranges - .long Lset29625 - .byte 5 ## Abbrev [5] 0x2cd1:0x10 DW_TAG_variable -.set Lset29626, Ldebug_loc724-Lsection_debug_loc ## DW_AT_location - .long Lset29626 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2314 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ce1:0x10 DW_TAG_variable -.set Lset29627, Ldebug_loc725-Lsection_debug_loc ## DW_AT_location - .long Lset29627 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2313 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2cf1:0x16 DW_TAG_lexical_block -.set Lset29628, Ldebug_ranges277-Ldebug_range ## DW_AT_ranges - .long Lset29628 - .byte 5 ## Abbrev [5] 0x2cf6:0x10 DW_TAG_variable -.set Lset29629, Ldebug_loc267-Lsection_debug_loc ## DW_AT_location - .long Lset29629 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2315 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2d08:0x3c DW_TAG_lexical_block -.set Lset29630, Ldebug_ranges280-Ldebug_range ## DW_AT_ranges - .long Lset29630 - .byte 5 ## Abbrev [5] 0x2d0d:0x10 DW_TAG_variable -.set Lset29631, Ldebug_loc726-Lsection_debug_loc ## DW_AT_location - .long Lset29631 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2320 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d1d:0x10 DW_TAG_variable -.set Lset29632, Ldebug_loc727-Lsection_debug_loc ## DW_AT_location - .long Lset29632 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2319 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2d2d:0x16 DW_TAG_lexical_block -.set Lset29633, Ldebug_ranges279-Ldebug_range ## DW_AT_ranges - .long Lset29633 - .byte 5 ## Abbrev [5] 0x2d32:0x10 DW_TAG_variable -.set Lset29634, Ldebug_loc268-Lsection_debug_loc ## DW_AT_location - .long Lset29634 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2321 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2d44:0x3c DW_TAG_lexical_block -.set Lset29635, Ldebug_ranges282-Ldebug_range ## DW_AT_ranges - .long Lset29635 - .byte 5 ## Abbrev [5] 0x2d49:0x10 DW_TAG_variable -.set Lset29636, Ldebug_loc728-Lsection_debug_loc ## DW_AT_location - .long Lset29636 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2326 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d59:0x10 DW_TAG_variable -.set Lset29637, Ldebug_loc729-Lsection_debug_loc ## DW_AT_location - .long Lset29637 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2325 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2d69:0x16 DW_TAG_lexical_block -.set Lset29638, Ldebug_ranges281-Ldebug_range ## DW_AT_ranges - .long Lset29638 - .byte 5 ## Abbrev [5] 0x2d6e:0x10 DW_TAG_variable -.set Lset29639, Ldebug_loc269-Lsection_debug_loc ## DW_AT_location - .long Lset29639 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2327 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2d80:0x3c DW_TAG_lexical_block -.set Lset29640, Ldebug_ranges284-Ldebug_range ## DW_AT_ranges - .long Lset29640 - .byte 5 ## Abbrev [5] 0x2d85:0x10 DW_TAG_variable -.set Lset29641, Ldebug_loc730-Lsection_debug_loc ## DW_AT_location - .long Lset29641 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2332 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2d95:0x10 DW_TAG_variable -.set Lset29642, Ldebug_loc731-Lsection_debug_loc ## DW_AT_location - .long Lset29642 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2331 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2da5:0x16 DW_TAG_lexical_block -.set Lset29643, Ldebug_ranges283-Ldebug_range ## DW_AT_ranges - .long Lset29643 - .byte 5 ## Abbrev [5] 0x2daa:0x10 DW_TAG_variable -.set Lset29644, Ldebug_loc270-Lsection_debug_loc ## DW_AT_location - .long Lset29644 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2333 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2dbc:0x3c DW_TAG_lexical_block -.set Lset29645, Ldebug_ranges286-Ldebug_range ## DW_AT_ranges - .long Lset29645 - .byte 5 ## Abbrev [5] 0x2dc1:0x10 DW_TAG_variable -.set Lset29646, Ldebug_loc732-Lsection_debug_loc ## DW_AT_location - .long Lset29646 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2338 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2dd1:0x10 DW_TAG_variable -.set Lset29647, Ldebug_loc733-Lsection_debug_loc ## DW_AT_location - .long Lset29647 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2337 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2de1:0x16 DW_TAG_lexical_block -.set Lset29648, Ldebug_ranges285-Ldebug_range ## DW_AT_ranges - .long Lset29648 - .byte 5 ## Abbrev [5] 0x2de6:0x10 DW_TAG_variable -.set Lset29649, Ldebug_loc271-Lsection_debug_loc ## DW_AT_location - .long Lset29649 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2339 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2df8:0x3c DW_TAG_lexical_block -.set Lset29650, Ldebug_ranges288-Ldebug_range ## DW_AT_ranges - .long Lset29650 - .byte 5 ## Abbrev [5] 0x2dfd:0x10 DW_TAG_variable -.set Lset29651, Ldebug_loc734-Lsection_debug_loc ## DW_AT_location - .long Lset29651 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2343 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e0d:0x10 DW_TAG_variable -.set Lset29652, Ldebug_loc735-Lsection_debug_loc ## DW_AT_location - .long Lset29652 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2344 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2e1d:0x16 DW_TAG_lexical_block -.set Lset29653, Ldebug_ranges287-Ldebug_range ## DW_AT_ranges - .long Lset29653 - .byte 5 ## Abbrev [5] 0x2e22:0x10 DW_TAG_variable -.set Lset29654, Ldebug_loc272-Lsection_debug_loc ## DW_AT_location - .long Lset29654 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2345 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2e34:0x3c DW_TAG_lexical_block -.set Lset29655, Ldebug_ranges290-Ldebug_range ## DW_AT_ranges - .long Lset29655 - .byte 5 ## Abbrev [5] 0x2e39:0x10 DW_TAG_variable -.set Lset29656, Ldebug_loc736-Lsection_debug_loc ## DW_AT_location - .long Lset29656 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2350 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e49:0x10 DW_TAG_variable -.set Lset29657, Ldebug_loc737-Lsection_debug_loc ## DW_AT_location - .long Lset29657 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2349 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2e59:0x16 DW_TAG_lexical_block -.set Lset29658, Ldebug_ranges289-Ldebug_range ## DW_AT_ranges - .long Lset29658 - .byte 5 ## Abbrev [5] 0x2e5e:0x10 DW_TAG_variable -.set Lset29659, Ldebug_loc273-Lsection_debug_loc ## DW_AT_location - .long Lset29659 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2351 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2e70:0x3c DW_TAG_lexical_block -.set Lset29660, Ldebug_ranges292-Ldebug_range ## DW_AT_ranges - .long Lset29660 - .byte 5 ## Abbrev [5] 0x2e75:0x10 DW_TAG_variable -.set Lset29661, Ldebug_loc738-Lsection_debug_loc ## DW_AT_location - .long Lset29661 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2356 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2e85:0x10 DW_TAG_variable -.set Lset29662, Ldebug_loc739-Lsection_debug_loc ## DW_AT_location - .long Lset29662 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2355 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2e95:0x16 DW_TAG_lexical_block -.set Lset29663, Ldebug_ranges291-Ldebug_range ## DW_AT_ranges - .long Lset29663 - .byte 5 ## Abbrev [5] 0x2e9a:0x10 DW_TAG_variable -.set Lset29664, Ldebug_loc274-Lsection_debug_loc ## DW_AT_location - .long Lset29664 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2357 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2eac:0x3c DW_TAG_lexical_block -.set Lset29665, Ldebug_ranges294-Ldebug_range ## DW_AT_ranges - .long Lset29665 - .byte 5 ## Abbrev [5] 0x2eb1:0x10 DW_TAG_variable -.set Lset29666, Ldebug_loc740-Lsection_debug_loc ## DW_AT_location - .long Lset29666 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2362 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2ec1:0x10 DW_TAG_variable -.set Lset29667, Ldebug_loc741-Lsection_debug_loc ## DW_AT_location - .long Lset29667 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2361 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2ed1:0x16 DW_TAG_lexical_block -.set Lset29668, Ldebug_ranges293-Ldebug_range ## DW_AT_ranges - .long Lset29668 - .byte 5 ## Abbrev [5] 0x2ed6:0x10 DW_TAG_variable -.set Lset29669, Ldebug_loc275-Lsection_debug_loc ## DW_AT_location - .long Lset29669 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2363 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2ee8:0x3c DW_TAG_lexical_block -.set Lset29670, Ldebug_ranges296-Ldebug_range ## DW_AT_ranges - .long Lset29670 - .byte 5 ## Abbrev [5] 0x2eed:0x10 DW_TAG_variable -.set Lset29671, Ldebug_loc742-Lsection_debug_loc ## DW_AT_location - .long Lset29671 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2368 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2efd:0x10 DW_TAG_variable -.set Lset29672, Ldebug_loc743-Lsection_debug_loc ## DW_AT_location - .long Lset29672 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2367 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2f0d:0x16 DW_TAG_lexical_block -.set Lset29673, Ldebug_ranges295-Ldebug_range ## DW_AT_ranges - .long Lset29673 - .byte 5 ## Abbrev [5] 0x2f12:0x10 DW_TAG_variable -.set Lset29674, Ldebug_loc276-Lsection_debug_loc ## DW_AT_location - .long Lset29674 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2369 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2f24:0x3c DW_TAG_lexical_block -.set Lset29675, Ldebug_ranges298-Ldebug_range ## DW_AT_ranges - .long Lset29675 - .byte 5 ## Abbrev [5] 0x2f29:0x10 DW_TAG_variable -.set Lset29676, Ldebug_loc744-Lsection_debug_loc ## DW_AT_location - .long Lset29676 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2373 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2f39:0x10 DW_TAG_variable -.set Lset29677, Ldebug_loc745-Lsection_debug_loc ## DW_AT_location - .long Lset29677 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2374 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2f49:0x16 DW_TAG_lexical_block -.set Lset29678, Ldebug_ranges297-Ldebug_range ## DW_AT_ranges - .long Lset29678 - .byte 5 ## Abbrev [5] 0x2f4e:0x10 DW_TAG_variable -.set Lset29679, Ldebug_loc277-Lsection_debug_loc ## DW_AT_location - .long Lset29679 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2375 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2f60:0x3c DW_TAG_lexical_block -.set Lset29680, Ldebug_ranges300-Ldebug_range ## DW_AT_ranges - .long Lset29680 - .byte 5 ## Abbrev [5] 0x2f65:0x10 DW_TAG_variable -.set Lset29681, Ldebug_loc746-Lsection_debug_loc ## DW_AT_location - .long Lset29681 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2381 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x2f75:0x10 DW_TAG_variable -.set Lset29682, Ldebug_loc747-Lsection_debug_loc ## DW_AT_location - .long Lset29682 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2382 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2f85:0x16 DW_TAG_lexical_block -.set Lset29683, Ldebug_ranges299-Ldebug_range ## DW_AT_ranges - .long Lset29683 - .byte 5 ## Abbrev [5] 0x2f8a:0x10 DW_TAG_variable -.set Lset29684, Ldebug_loc278-Lsection_debug_loc ## DW_AT_location - .long Lset29684 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2383 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2f9c:0x34 DW_TAG_lexical_block -.set Lset29685, Ldebug_ranges302-Ldebug_range ## DW_AT_ranges - .long Lset29685 - .byte 7 ## Abbrev [7] 0x2fa1:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2389 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2fad:0x22 DW_TAG_lexical_block -.set Lset29686, Ldebug_ranges301-Ldebug_range ## DW_AT_ranges - .long Lset29686 - .byte 5 ## Abbrev [5] 0x2fb2:0x10 DW_TAG_variable -.set Lset29687, Ldebug_loc279-Lsection_debug_loc ## DW_AT_location - .long Lset29687 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2391 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2fc2:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2391 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x2fd0:0x34 DW_TAG_lexical_block -.set Lset29688, Ldebug_ranges304-Ldebug_range ## DW_AT_ranges - .long Lset29688 - .byte 7 ## Abbrev [7] 0x2fd5:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2398 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x2fe1:0x22 DW_TAG_lexical_block -.set Lset29689, Ldebug_ranges303-Ldebug_range ## DW_AT_ranges - .long Lset29689 - .byte 5 ## Abbrev [5] 0x2fe6:0x10 DW_TAG_variable -.set Lset29690, Ldebug_loc280-Lsection_debug_loc ## DW_AT_location - .long Lset29690 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2400 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x2ff6:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2400 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3004:0x34 DW_TAG_lexical_block -.set Lset29691, Ldebug_ranges306-Ldebug_range ## DW_AT_ranges - .long Lset29691 - .byte 7 ## Abbrev [7] 0x3009:0xc DW_TAG_variable - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2407 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x3015:0x22 DW_TAG_lexical_block -.set Lset29692, Ldebug_ranges305-Ldebug_range ## DW_AT_ranges - .long Lset29692 - .byte 5 ## Abbrev [5] 0x301a:0x10 DW_TAG_variable -.set Lset29693, Ldebug_loc281-Lsection_debug_loc ## DW_AT_location - .long Lset29693 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2409 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x302a:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2409 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3038:0x2c DW_TAG_lexical_block -.set Lset29694, Ldebug_ranges308-Ldebug_range ## DW_AT_ranges - .long Lset29694 - .byte 5 ## Abbrev [5] 0x303d:0x10 DW_TAG_variable -.set Lset29695, Ldebug_loc748-Lsection_debug_loc ## DW_AT_location - .long Lset29695 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2416 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x304d:0x16 DW_TAG_lexical_block -.set Lset29696, Ldebug_ranges307-Ldebug_range ## DW_AT_ranges - .long Lset29696 - .byte 5 ## Abbrev [5] 0x3052:0x10 DW_TAG_variable -.set Lset29697, Ldebug_loc282-Lsection_debug_loc ## DW_AT_location - .long Lset29697 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2417 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x3064:0x2c DW_TAG_lexical_block -.set Lset29698, Ldebug_ranges310-Ldebug_range ## DW_AT_ranges - .long Lset29698 - .byte 14 ## Abbrev [14] 0x3069:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\250~" - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2423 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x3079:0x16 DW_TAG_lexical_block -.set Lset29699, Ldebug_ranges309-Ldebug_range ## DW_AT_ranges - .long Lset29699 - .byte 5 ## Abbrev [5] 0x307e:0x10 DW_TAG_variable -.set Lset29700, Ldebug_loc283-Lsection_debug_loc ## DW_AT_location - .long Lset29700 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2424 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x3091:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp1411-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x309e:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp1435-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30ab:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp1505-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30b8:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp1530-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30c5:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1603-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30d2:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp1617-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30df:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp1630-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30ec:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1679-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x30f9:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1755-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3106:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp1769-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3113:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp1782-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3120:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1831-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x312d:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1886-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x313a:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp1901-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3147:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp1914-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3154:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp1992-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3161:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp2012-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x316e:0xd DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - .quad Ltmp2064-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x317b:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp2127-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3188:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp2140-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3195:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp2240-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31a2:0xd DW_TAG_call_site - .long 21671 ## DW_AT_call_origin - .quad Ltmp3037-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31af:0xd DW_TAG_call_site - .long 21289 ## DW_AT_call_origin - .quad Ltmp3062-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31bc:0xd DW_TAG_call_site - .long 20974 ## DW_AT_call_origin - .quad Ltmp3136-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31c9:0xd DW_TAG_call_site - .long 20367 ## DW_AT_call_origin - .quad Ltmp3192-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31d6:0xd DW_TAG_call_site - .long 20166 ## DW_AT_call_origin - .quad Ltmp3203-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31e3:0xd DW_TAG_call_site - .long 20809 ## DW_AT_call_origin - .quad Ltmp3257-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31f0:0xd DW_TAG_call_site - .long 20608 ## DW_AT_call_origin - .quad Ltmp3268-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x31fd:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp3546-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x320a:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp3551-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3217:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp3557-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3224:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp3575-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3231:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp3598-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x323e:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp3748-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x324b:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp3777-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3258:0xd DW_TAG_call_site - .long 23019 ## DW_AT_call_origin - .quad Ltmp3840-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3265:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4541-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3272:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4589-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x327f:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4601-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x328c:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4657-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3299:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4670-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32a6:0xd DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - .quad Ltmp4723-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32b3:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp4879-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32c0:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp4978-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32cd:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp5046-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32da:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp5084-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32e7:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp5604-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x32f4:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp5637-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x3301:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp5743-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x330e:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp5773-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x331b:0xd DW_TAG_call_site - .long 22473 ## DW_AT_call_origin - .quad Ltmp5910-Lfunc_begin21 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x3329:0xc DW_TAG_array_type - .long 13109 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x332e:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 116 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 18 ## Abbrev [18] 0x3335:0x1 DW_TAG_pointer_type - .byte 19 ## Abbrev [19] 0x3336:0x7 DW_TAG_base_type - .long 147 ## DW_AT_name - .byte 8 ## DW_AT_byte_size - .byte 7 ## DW_AT_encoding - .byte 20 ## Abbrev [20] 0x333d:0x9b DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 2 ## DW_AT_decl_file - .byte 18 ## DW_AT_decl_line - .byte 21 ## Abbrev [21] 0x3341:0x6 DW_TAG_enumerator - .long 167 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3347:0x6 DW_TAG_enumerator - .long 176 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x334d:0x6 DW_TAG_enumerator - .long 188 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3353:0x6 DW_TAG_enumerator - .long 194 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3359:0x6 DW_TAG_enumerator - .long 202 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x335f:0x6 DW_TAG_enumerator - .long 209 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3365:0x6 DW_TAG_enumerator - .long 215 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x336b:0x6 DW_TAG_enumerator - .long 222 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3371:0x6 DW_TAG_enumerator - .long 229 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3377:0x6 DW_TAG_enumerator - .long 236 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x337d:0x6 DW_TAG_enumerator - .long 243 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3383:0x6 DW_TAG_enumerator - .long 250 ## DW_AT_name - .byte 11 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3389:0x6 DW_TAG_enumerator - .long 257 ## DW_AT_name - .byte 12 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x338f:0x6 DW_TAG_enumerator - .long 265 ## DW_AT_name - .byte 13 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3395:0x6 DW_TAG_enumerator - .long 273 ## DW_AT_name - .byte 14 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x339b:0x6 DW_TAG_enumerator - .long 280 ## DW_AT_name - .byte 15 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33a1:0x6 DW_TAG_enumerator - .long 288 ## DW_AT_name - .byte 16 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33a7:0x6 DW_TAG_enumerator - .long 295 ## DW_AT_name - .byte 17 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33ad:0x6 DW_TAG_enumerator - .long 302 ## DW_AT_name - .byte 18 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33b3:0x6 DW_TAG_enumerator - .long 309 ## DW_AT_name - .byte 19 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33b9:0x6 DW_TAG_enumerator - .long 317 ## DW_AT_name - .byte 20 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33bf:0x6 DW_TAG_enumerator - .long 323 ## DW_AT_name - .byte 21 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33c5:0x6 DW_TAG_enumerator - .long 329 ## DW_AT_name - .byte 22 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33cb:0x6 DW_TAG_enumerator - .long 339 ## DW_AT_name - .byte 23 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33d1:0x6 DW_TAG_enumerator - .long 347 ## DW_AT_name - .byte 24 ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 20 ## Abbrev [20] 0x33d8:0x2f1 DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 3 ## DW_AT_decl_file - .byte 126 ## DW_AT_decl_line - .byte 21 ## Abbrev [21] 0x33dc:0x6 DW_TAG_enumerator - .long 352 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33e2:0x6 DW_TAG_enumerator - .long 360 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33e8:0x6 DW_TAG_enumerator - .long 369 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33ee:0x6 DW_TAG_enumerator - .long 379 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33f4:0x6 DW_TAG_enumerator - .long 391 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x33fa:0x6 DW_TAG_enumerator - .long 402 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3400:0x6 DW_TAG_enumerator - .long 414 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3406:0x6 DW_TAG_enumerator - .long 426 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x340c:0x6 DW_TAG_enumerator - .long 438 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3412:0x6 DW_TAG_enumerator - .long 450 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3418:0x6 DW_TAG_enumerator - .long 462 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x341e:0x6 DW_TAG_enumerator - .long 474 ## DW_AT_name - .byte 11 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3424:0x6 DW_TAG_enumerator - .long 486 ## DW_AT_name - .byte 12 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x342a:0x6 DW_TAG_enumerator - .long 494 ## DW_AT_name - .byte 13 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3430:0x6 DW_TAG_enumerator - .long 501 ## DW_AT_name - .byte 14 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3436:0x6 DW_TAG_enumerator - .long 508 ## DW_AT_name - .byte 15 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x343c:0x6 DW_TAG_enumerator - .long 515 ## DW_AT_name - .byte 16 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3442:0x6 DW_TAG_enumerator - .long 522 ## DW_AT_name - .byte 17 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3448:0x6 DW_TAG_enumerator - .long 529 ## DW_AT_name - .byte 18 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x344e:0x6 DW_TAG_enumerator - .long 536 ## DW_AT_name - .byte 19 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3454:0x6 DW_TAG_enumerator - .long 544 ## DW_AT_name - .byte 20 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x345a:0x6 DW_TAG_enumerator - .long 552 ## DW_AT_name - .byte 21 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3460:0x6 DW_TAG_enumerator - .long 559 ## DW_AT_name - .byte 22 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3466:0x6 DW_TAG_enumerator - .long 567 ## DW_AT_name - .byte 23 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x346c:0x6 DW_TAG_enumerator - .long 574 ## DW_AT_name - .byte 24 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3472:0x6 DW_TAG_enumerator - .long 581 ## DW_AT_name - .byte 25 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3478:0x6 DW_TAG_enumerator - .long 588 ## DW_AT_name - .byte 26 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x347e:0x6 DW_TAG_enumerator - .long 596 ## DW_AT_name - .byte 27 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3484:0x6 DW_TAG_enumerator - .long 603 ## DW_AT_name - .byte 28 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x348a:0x6 DW_TAG_enumerator - .long 610 ## DW_AT_name - .byte 29 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3490:0x6 DW_TAG_enumerator - .long 620 ## DW_AT_name - .byte 30 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3496:0x6 DW_TAG_enumerator - .long 627 ## DW_AT_name - .byte 31 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x349c:0x6 DW_TAG_enumerator - .long 633 ## DW_AT_name - .byte 32 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34a2:0x6 DW_TAG_enumerator - .long 639 ## DW_AT_name - .byte 33 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34a8:0x6 DW_TAG_enumerator - .long 645 ## DW_AT_name - .byte 34 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34ae:0x6 DW_TAG_enumerator - .long 653 ## DW_AT_name - .byte 35 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34b4:0x6 DW_TAG_enumerator - .long 664 ## DW_AT_name - .byte 36 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34ba:0x6 DW_TAG_enumerator - .long 672 ## DW_AT_name - .byte 37 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34c0:0x6 DW_TAG_enumerator - .long 684 ## DW_AT_name - .byte 38 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34c6:0x6 DW_TAG_enumerator - .long 694 ## DW_AT_name - .byte 39 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34cc:0x6 DW_TAG_enumerator - .long 705 ## DW_AT_name - .byte 40 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34d2:0x6 DW_TAG_enumerator - .long 716 ## DW_AT_name - .byte 41 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34d8:0x6 DW_TAG_enumerator - .long 728 ## DW_AT_name - .byte 42 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34de:0x6 DW_TAG_enumerator - .long 740 ## DW_AT_name - .byte 43 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34e4:0x6 DW_TAG_enumerator - .long 751 ## DW_AT_name - .byte 44 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34ea:0x6 DW_TAG_enumerator - .long 762 ## DW_AT_name - .byte 45 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34f0:0x6 DW_TAG_enumerator - .long 772 ## DW_AT_name - .byte 46 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34f6:0x6 DW_TAG_enumerator - .long 784 ## DW_AT_name - .byte 47 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x34fc:0x6 DW_TAG_enumerator - .long 803 ## DW_AT_name - .byte 48 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3502:0x6 DW_TAG_enumerator - .long 822 ## DW_AT_name - .byte 49 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3508:0x6 DW_TAG_enumerator - .long 837 ## DW_AT_name - .byte 50 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x350e:0x6 DW_TAG_enumerator - .long 852 ## DW_AT_name - .byte 51 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3514:0x6 DW_TAG_enumerator - .long 865 ## DW_AT_name - .byte 52 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x351a:0x6 DW_TAG_enumerator - .long 878 ## DW_AT_name - .byte 53 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3520:0x6 DW_TAG_enumerator - .long 892 ## DW_AT_name - .byte 54 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3526:0x6 DW_TAG_enumerator - .long 906 ## DW_AT_name - .byte 55 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x352c:0x6 DW_TAG_enumerator - .long 920 ## DW_AT_name - .byte 56 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3532:0x6 DW_TAG_enumerator - .long 934 ## DW_AT_name - .byte 57 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3538:0x6 DW_TAG_enumerator - .long 948 ## DW_AT_name - .byte 58 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x353e:0x6 DW_TAG_enumerator - .long 962 ## DW_AT_name - .byte 59 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3544:0x6 DW_TAG_enumerator - .long 976 ## DW_AT_name - .byte 60 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x354a:0x6 DW_TAG_enumerator - .long 990 ## DW_AT_name - .byte 61 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3550:0x6 DW_TAG_enumerator - .long 1004 ## DW_AT_name - .byte 62 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3556:0x6 DW_TAG_enumerator - .long 1018 ## DW_AT_name - .byte 63 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x355c:0x7 DW_TAG_enumerator - .long 1032 ## DW_AT_name - .asciz "\300" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3563:0x7 DW_TAG_enumerator - .long 1046 ## DW_AT_name - .asciz "\301" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x356a:0x7 DW_TAG_enumerator - .long 1060 ## DW_AT_name - .asciz "\302" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3571:0x7 DW_TAG_enumerator - .long 1074 ## DW_AT_name - .asciz "\303" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3578:0x7 DW_TAG_enumerator - .long 1088 ## DW_AT_name - .asciz "\304" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x357f:0x7 DW_TAG_enumerator - .long 1102 ## DW_AT_name - .asciz "\305" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3586:0x7 DW_TAG_enumerator - .long 1119 ## DW_AT_name - .asciz "\306" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x358d:0x7 DW_TAG_enumerator - .long 1136 ## DW_AT_name - .asciz "\307" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3594:0x7 DW_TAG_enumerator - .long 1150 ## DW_AT_name - .asciz "\310" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x359b:0x7 DW_TAG_enumerator - .long 1167 ## DW_AT_name - .asciz "\311" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35a2:0x7 DW_TAG_enumerator - .long 1185 ## DW_AT_name - .asciz "\312" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35a9:0x7 DW_TAG_enumerator - .long 1200 ## DW_AT_name - .asciz "\313" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35b0:0x7 DW_TAG_enumerator - .long 1214 ## DW_AT_name - .asciz "\314" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35b7:0x7 DW_TAG_enumerator - .long 1228 ## DW_AT_name - .asciz "\315" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35be:0x7 DW_TAG_enumerator - .long 1247 ## DW_AT_name - .asciz "\316" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35c5:0x7 DW_TAG_enumerator - .long 1266 ## DW_AT_name - .asciz "\317" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35cc:0x7 DW_TAG_enumerator - .long 1282 ## DW_AT_name - .asciz "\320" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35d3:0x7 DW_TAG_enumerator - .long 1301 ## DW_AT_name - .asciz "\321" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35da:0x7 DW_TAG_enumerator - .long 1320 ## DW_AT_name - .asciz "\322" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35e1:0x7 DW_TAG_enumerator - .long 1339 ## DW_AT_name - .asciz "\323" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35e8:0x7 DW_TAG_enumerator - .long 1358 ## DW_AT_name - .asciz "\324" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35ef:0x7 DW_TAG_enumerator - .long 1378 ## DW_AT_name - .asciz "\325" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35f6:0x7 DW_TAG_enumerator - .long 1398 ## DW_AT_name - .asciz "\326" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x35fd:0x7 DW_TAG_enumerator - .long 1417 ## DW_AT_name - .asciz "\327" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3604:0x7 DW_TAG_enumerator - .long 1436 ## DW_AT_name - .asciz "\330" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x360b:0x7 DW_TAG_enumerator - .long 1455 ## DW_AT_name - .asciz "\331" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3612:0x7 DW_TAG_enumerator - .long 1474 ## DW_AT_name - .asciz "\332" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3619:0x7 DW_TAG_enumerator - .long 1492 ## DW_AT_name - .asciz "\333" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3620:0x7 DW_TAG_enumerator - .long 1510 ## DW_AT_name - .asciz "\334" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3627:0x7 DW_TAG_enumerator - .long 1534 ## DW_AT_name - .asciz "\335" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x362e:0x7 DW_TAG_enumerator - .long 1558 ## DW_AT_name - .asciz "\336" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3635:0x7 DW_TAG_enumerator - .long 1576 ## DW_AT_name - .asciz "\337" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x363c:0x7 DW_TAG_enumerator - .long 1592 ## DW_AT_name - .asciz "\340" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3643:0x7 DW_TAG_enumerator - .long 1607 ## DW_AT_name - .asciz "\341" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x364a:0x7 DW_TAG_enumerator - .long 1623 ## DW_AT_name - .asciz "\342" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3651:0x7 DW_TAG_enumerator - .long 1638 ## DW_AT_name - .asciz "\343" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3658:0x7 DW_TAG_enumerator - .long 1653 ## DW_AT_name - .asciz "\344" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x365f:0x7 DW_TAG_enumerator - .long 1668 ## DW_AT_name - .asciz "\345" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3666:0x7 DW_TAG_enumerator - .long 1682 ## DW_AT_name - .asciz "\346" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x366d:0x7 DW_TAG_enumerator - .long 1696 ## DW_AT_name - .asciz "\347" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3674:0x7 DW_TAG_enumerator - .long 1710 ## DW_AT_name - .asciz "\350" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x367b:0x7 DW_TAG_enumerator - .long 1724 ## DW_AT_name - .asciz "\351" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3682:0x7 DW_TAG_enumerator - .long 1738 ## DW_AT_name - .asciz "\352" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3689:0x7 DW_TAG_enumerator - .long 1752 ## DW_AT_name - .asciz "\353" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3690:0x7 DW_TAG_enumerator - .long 1775 ## DW_AT_name - .asciz "\354" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3697:0x7 DW_TAG_enumerator - .long 1798 ## DW_AT_name - .asciz "\355" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x369e:0x7 DW_TAG_enumerator - .long 1820 ## DW_AT_name - .asciz "\356" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36a5:0x7 DW_TAG_enumerator - .long 1833 ## DW_AT_name - .asciz "\357" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36ac:0x7 DW_TAG_enumerator - .long 1846 ## DW_AT_name - .asciz "\360" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36b3:0x7 DW_TAG_enumerator - .long 1863 ## DW_AT_name - .asciz "\361" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36ba:0x7 DW_TAG_enumerator - .long 1879 ## DW_AT_name - .asciz "\362" ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36c1:0x7 DW_TAG_enumerator - .long 1896 ## DW_AT_name - .asciz "\363" ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 22 ## Abbrev [22] 0x36c9:0x22 DW_TAG_enumeration_type - .long 1916 ## DW_AT_name - .byte 4 ## DW_AT_byte_size - .byte 3 ## DW_AT_decl_file - .short 322 ## DW_AT_decl_line - .byte 21 ## Abbrev [21] 0x36d2:0x6 DW_TAG_enumerator - .long 1926 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36d8:0x6 DW_TAG_enumerator - .long 1933 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36de:0x6 DW_TAG_enumerator - .long 1940 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36e4:0x6 DW_TAG_enumerator - .long 1947 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 23 ## Abbrev [23] 0x36eb:0x48 DW_TAG_enumeration_type - .byte 4 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 441 ## DW_AT_decl_line - .byte 21 ## Abbrev [21] 0x36f0:0x6 DW_TAG_enumerator - .long 1954 ## DW_AT_name - .byte 0 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36f6:0x6 DW_TAG_enumerator - .long 1964 ## DW_AT_name - .byte 1 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x36fc:0x6 DW_TAG_enumerator - .long 1977 ## DW_AT_name - .byte 2 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3702:0x6 DW_TAG_enumerator - .long 1990 ## DW_AT_name - .byte 3 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3708:0x6 DW_TAG_enumerator - .long 2005 ## DW_AT_name - .byte 4 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x370e:0x6 DW_TAG_enumerator - .long 2020 ## DW_AT_name - .byte 5 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3714:0x6 DW_TAG_enumerator - .long 2035 ## DW_AT_name - .byte 6 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x371a:0x6 DW_TAG_enumerator - .long 2047 ## DW_AT_name - .byte 7 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3720:0x6 DW_TAG_enumerator - .long 2060 ## DW_AT_name - .byte 8 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x3726:0x6 DW_TAG_enumerator - .long 2070 ## DW_AT_name - .byte 9 ## DW_AT_const_value - .byte 21 ## Abbrev [21] 0x372c:0x6 DW_TAG_enumerator - .long 2084 ## DW_AT_name - .byte 10 ## DW_AT_const_value - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3733:0xb DW_TAG_typedef - .long 14142 ## DW_AT_type - .long 2099 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 89 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x373e:0x7 DW_TAG_base_type - .long 2110 ## DW_AT_name - .byte 4 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3745:0x5 DW_TAG_pointer_type - .long 14154 ## DW_AT_type - .byte 25 ## Abbrev [25] 0x374a:0x7 DW_TAG_base_type - .long 2117 ## DW_AT_name - .byte 6 ## DW_AT_encoding - .byte 1 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3751:0x5 DW_TAG_pointer_type - .long 14166 ## DW_AT_type - .byte 27 ## Abbrev [27] 0x3756:0x5d DW_TAG_union_type - .long 2122 ## DW_AT_name - .byte 208 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 241 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x375e:0xc DW_TAG_member - .long 2130 ## DW_AT_name - .long 14259 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 242 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x376a:0xc DW_TAG_member - .long 2179 ## DW_AT_name - .long 14338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 243 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3776:0xc DW_TAG_member - .long 2221 ## DW_AT_name - .long 14512 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 244 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3782:0xc DW_TAG_member - .long 3625 ## DW_AT_name - .long 17222 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 245 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x378e:0xc DW_TAG_member - .long 3965 ## DW_AT_name - .long 14647 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 246 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x379a:0xc DW_TAG_member - .long 2400 ## DW_AT_name - .long 17501 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 247 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x37a6:0xc DW_TAG_member - .long 3967 ## DW_AT_name - .long 15017 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 248 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x37b3:0xb DW_TAG_typedef - .long 14270 ## DW_AT_type - .long 2133 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x37be:0x2d DW_TAG_structure_type - .long 2133 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 101 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x37c6:0xc DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 102 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x37d2:0xc DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 102 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x37de:0xc DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 102 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x37eb:0x5 DW_TAG_pointer_type - .long 14259 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x37f0:0xb DW_TAG_typedef - .long 14331 ## DW_AT_type - .long 2150 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 35 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x37fb:0x7 DW_TAG_base_type - .long 2158 ## DW_AT_name - .byte 8 ## DW_AT_encoding - .byte 1 ## DW_AT_byte_size - .byte 30 ## Abbrev [30] 0x3802:0x85 DW_TAG_structure_type - .long 2182 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 356 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x380b:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 357 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3818:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 357 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3825:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 357 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3832:0xd DW_TAG_member - .long 2190 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 358 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x383f:0xd DW_TAG_member - .long 2196 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 359 ## DW_AT_decl_line - .byte 11 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x384c:0xd DW_TAG_member - .long 2203 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 360 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3859:0xd DW_TAG_member - .long 2221 ## DW_AT_name - .long 14438 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 364 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 32 ## Abbrev [32] 0x3866:0x20 DW_TAG_union_type - .byte 8 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 361 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x386b:0xd DW_TAG_member - .long 2223 ## DW_AT_name - .long 14478 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 362 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3878:0xd DW_TAG_member - .long 2271 ## DW_AT_name - .long 14507 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 363 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 25 ## Abbrev [25] 0x3887:0x7 DW_TAG_base_type - .long 2208 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 4 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x388e:0xb DW_TAG_typedef - .long 14489 ## DW_AT_type - .long 2230 ## DW_AT_name - .byte 9 ## DW_AT_decl_file - .byte 31 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3899:0xb DW_TAG_typedef - .long 14500 ## DW_AT_type - .long 2237 ## DW_AT_name - .byte 8 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x38a4:0x7 DW_TAG_base_type - .long 2253 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x38ab:0x5 DW_TAG_pointer_type - .long 14338 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x38b0:0x65 DW_TAG_structure_type - .long 2277 ## DW_AT_name - .byte 40 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 399 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x38b9:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 400 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x38c6:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 400 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x38d3:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 400 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x38e0:0xd DW_TAG_member - .long 2283 ## DW_AT_name - .long 14613 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 401 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x38ed:0xd DW_TAG_member - .long 2321 ## DW_AT_name - .long 14642 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 402 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x38fa:0xd DW_TAG_member - .long 3583 ## DW_AT_name - .long 14478 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 403 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3907:0xd DW_TAG_member - .long 3619 ## DW_AT_name - .long 14886 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 404 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3915:0xb DW_TAG_typedef - .long 14624 ## DW_AT_type - .long 2289 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 87 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3920:0xb DW_TAG_typedef - .long 14635 ## DW_AT_type - .long 2297 ## DW_AT_name - .byte 10 ## DW_AT_decl_file - .byte 31 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x392b:0x7 DW_TAG_base_type - .long 2306 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 2 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x3932:0x5 DW_TAG_pointer_type - .long 14647 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x3937:0xb3 DW_TAG_structure_type - .long 2331 ## DW_AT_name - .byte 88 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 609 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x3940:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x394d:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x395a:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3967:0xd DW_TAG_member - .long 2337 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 611 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3974:0xd DW_TAG_member - .long 2343 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 612 ## DW_AT_decl_line - .byte 11 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x3981:0xd DW_TAG_member - .long 2353 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 613 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x398e:0xd DW_TAG_member - .long 2363 ## DW_AT_name - .long 14826 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 614 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x399b:0xd DW_TAG_member - .long 3514 ## DW_AT_name - .long 16989 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 615 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x39a8:0xd DW_TAG_member - .long 3548 ## DW_AT_name - .long 16989 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 616 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x39b5:0xd DW_TAG_member - .long 2321 ## DW_AT_name - .long 14642 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 617 ## DW_AT_decl_line - .byte 40 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x39c2:0xd DW_TAG_member - .long 3223 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 618 ## DW_AT_decl_line - .byte 48 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x39cf:0xd DW_TAG_member - .long 3557 ## DW_AT_name - .long 17135 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .byte 56 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x39dc:0xd DW_TAG_member - .long 3613 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 623 ## DW_AT_decl_line - .byte 80 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x39ea:0x5 DW_TAG_pointer_type - .long 14831 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x39ef:0xb DW_TAG_typedef - .long 14842 ## DW_AT_type - .long 2369 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 131 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x39fa:0x21 DW_TAG_structure_type - .long 2376 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 129 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3a02:0xc DW_TAG_member - .long 2387 ## DW_AT_name - .long 14875 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 130 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a0e:0xc DW_TAG_member - .long 3510 ## DW_AT_name - .long 14613 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 130 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3a1b:0xb DW_TAG_typedef - .long 14886 ## DW_AT_type - .long 2394 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .byte 123 ## DW_AT_decl_line - .byte 27 ## Abbrev [27] 0x3a26:0x51 DW_TAG_union_type - .long 2394 ## DW_AT_name - .byte 8 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .byte 116 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3a2e:0xc DW_TAG_member - .long 2130 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 117 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a3a:0xc DW_TAG_member - .long 2400 ## DW_AT_name - .long 13109 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 118 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a46:0xc DW_TAG_member - .long 2402 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 119 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a52:0xc DW_TAG_member - .long 2408 ## DW_AT_name - .long 14974 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 120 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a5e:0xc DW_TAG_member - .long 3480 ## DW_AT_name - .long 16971 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 121 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3a6a:0xc DW_TAG_member - .long 3508 ## DW_AT_name - .long 14131 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .byte 122 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 25 ## Abbrev [25] 0x3a77:0x7 DW_TAG_base_type - .long 2404 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 4 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x3a7e:0xb DW_TAG_typedef - .long 14985 ## DW_AT_type - .long 2410 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 105 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3a89:0x5 DW_TAG_pointer_type - .long 14990 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x3a8e:0xb DW_TAG_subroutine_type - .long 14967 ## DW_AT_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x3a93:0x5 DW_TAG_formal_parameter - .long 15001 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3a99:0x5 DW_TAG_pointer_type - .long 15006 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3a9e:0xb DW_TAG_typedef - .long 15017 ## DW_AT_type - .long 2424 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 56 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x3aa9:0x141 DW_TAG_structure_type - .long 2424 ## DW_AT_name - .byte 208 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 199 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3ab1:0xc DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 200 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3abd:0xc DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 200 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ac9:0xc DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 200 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ad5:0xc DW_TAG_member - .long 2434 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 201 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ae1:0xc DW_TAG_member - .long 2441 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 202 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3aed:0xc DW_TAG_member - .long 2451 ## DW_AT_name - .long 15350 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 203 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3af9:0xc DW_TAG_member - .long 2974 ## DW_AT_name - .long 16214 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 204 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b05:0xc DW_TAG_member - .long 3154 ## DW_AT_name - .long 16475 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 205 ## DW_AT_decl_line - .byte 40 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b11:0xc DW_TAG_member - .long 3160 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 206 ## DW_AT_decl_line - .byte 48 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b1d:0xc DW_TAG_member - .long 3171 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 207 ## DW_AT_decl_line - .byte 56 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b29:0xc DW_TAG_member - .long 3177 ## DW_AT_name - .long 16573 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 208 ## DW_AT_decl_line - .byte 64 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b35:0xc DW_TAG_member - .long 3223 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 209 ## DW_AT_decl_line - .byte 72 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b41:0xc DW_TAG_member - .long 2717 ## DW_AT_name - .long 16029 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 210 ## DW_AT_decl_line - .byte 80 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b4d:0xc DW_TAG_member - .long 3230 ## DW_AT_name - .long 16693 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 211 ## DW_AT_decl_line - .byte 88 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b59:0xc DW_TAG_member - .long 3251 ## DW_AT_name - .long 16219 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 212 ## DW_AT_decl_line - .byte 96 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b65:0xc DW_TAG_member - .long 3259 ## DW_AT_name - .long 16703 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 213 ## DW_AT_decl_line - .byte 168 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b71:0xc DW_TAG_member - .long 3403 ## DW_AT_name - .long 15917 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 214 ## DW_AT_decl_line - .byte 176 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b7d:0xc DW_TAG_member - .long 3411 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 215 ## DW_AT_decl_line - .byte 184 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b89:0xc DW_TAG_member - .long 3421 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 216 ## DW_AT_decl_line - .byte 188 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3b95:0xc DW_TAG_member - .long 3435 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 217 ## DW_AT_decl_line - .byte 192 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ba1:0xc DW_TAG_member - .long 3445 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 218 ## DW_AT_decl_line - .byte 196 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3bad:0xc DW_TAG_member - .long 3449 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 219 ## DW_AT_decl_line - .byte 198 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3bb9:0xc DW_TAG_member - .long 3457 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 224 ## DW_AT_decl_line - .byte 200 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3bc5:0xc DW_TAG_member - .long 3466 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 225 ## DW_AT_decl_line - .byte 201 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3bd1:0xc DW_TAG_member - .long 3476 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 230 ## DW_AT_decl_line - .byte 202 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3bdd:0xc DW_TAG_member - .long 3148 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 231 ## DW_AT_decl_line - .byte 204 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x3bea:0xc DW_TAG_typedef - .long 14826 ## DW_AT_type - .long 2445 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 347 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3bf6:0x5 DW_TAG_pointer_type - .long 15355 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3bfb:0xb DW_TAG_typedef - .long 15366 ## DW_AT_type - .long 2455 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 191 ## DW_AT_decl_line - .byte 36 ## Abbrev [36] 0x3c06:0x1f2 DW_TAG_structure_type - .long 2455 ## DW_AT_name - .short 2304 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 144 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3c0f:0xc DW_TAG_member - .long 2468 ## DW_AT_name - .long 15864 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 145 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c1b:0xc DW_TAG_member - .long 2487 ## DW_AT_name - .long 13109 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 146 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c27:0xc DW_TAG_member - .long 2490 ## DW_AT_name - .long 15906 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 147 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c33:0xc DW_TAG_member - .long 2526 ## DW_AT_name - .long 15906 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 148 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c3f:0xc DW_TAG_member - .long 2533 ## DW_AT_name - .long 15935 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 149 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c4b:0xc DW_TAG_member - .long 2550 ## DW_AT_name - .long 15935 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 150 ## DW_AT_decl_line - .byte 40 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c57:0xc DW_TAG_member - .long 2561 ## DW_AT_name - .long 15946 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 151 ## DW_AT_decl_line - .byte 48 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c63:0xc DW_TAG_member - .long 2588 ## DW_AT_name - .long 14831 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 152 ## DW_AT_decl_line - .byte 64 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c6f:0xc DW_TAG_member - .long 2599 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 153 ## DW_AT_decl_line - .byte 80 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c7b:0xc DW_TAG_member - .long 2604 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 154 ## DW_AT_decl_line - .byte 84 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c87:0xc DW_TAG_member - .long 2617 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - .byte 85 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c93:0xc DW_TAG_member - .long 2625 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 156 ## DW_AT_decl_line - .byte 86 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3c9f:0xc DW_TAG_member - .long 2632 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 157 ## DW_AT_decl_line - .byte 87 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cab:0xc DW_TAG_member - .long 2642 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 158 ## DW_AT_decl_line - .byte 88 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cb7:0xc DW_TAG_member - .long 2648 ## DW_AT_name - .long 16024 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 159 ## DW_AT_decl_line - .byte 96 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cc3:0xc DW_TAG_member - .long 2656 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 160 ## DW_AT_decl_line - .byte 104 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ccf:0xc DW_TAG_member - .long 2663 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 161 ## DW_AT_decl_line - .byte 112 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cdb:0xc DW_TAG_member - .long 2668 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 162 ## DW_AT_decl_line - .byte 120 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ce7:0xc DW_TAG_member - .long 2678 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 163 ## DW_AT_decl_line - .byte 128 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cf3:0xc DW_TAG_member - .long 2683 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 164 ## DW_AT_decl_line - .byte 136 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3cff:0xc DW_TAG_member - .long 2693 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 165 ## DW_AT_decl_line - .byte 144 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d0b:0xc DW_TAG_member - .long 2701 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 166 ## DW_AT_decl_line - .byte 152 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d17:0xc DW_TAG_member - .long 2709 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 167 ## DW_AT_decl_line - .byte 160 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d23:0xc DW_TAG_member - .long 2717 ## DW_AT_name - .long 16029 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 168 ## DW_AT_decl_line - .byte 168 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d2f:0xc DW_TAG_member - .long 2723 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 169 ## DW_AT_decl_line - .byte 176 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d3b:0xc DW_TAG_member - .long 2732 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 170 ## DW_AT_decl_line - .byte 180 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d47:0xc DW_TAG_member - .long 2740 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 171 ## DW_AT_decl_line - .byte 184 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d53:0xc DW_TAG_member - .long 2750 ## DW_AT_name - .long 14974 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 172 ## DW_AT_decl_line - .byte 192 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d5f:0xc DW_TAG_member - .long 2756 ## DW_AT_name - .long 16029 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 173 ## DW_AT_decl_line - .byte 200 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d6b:0xc DW_TAG_member - .long 2767 ## DW_AT_name - .long 16034 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 174 ## DW_AT_decl_line - .byte 208 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d77:0xc DW_TAG_member - .long 2775 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 175 ## DW_AT_decl_line - .byte 216 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3d83:0xc DW_TAG_member - .long 2785 ## DW_AT_name - .long 16044 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 176 ## DW_AT_decl_line - .byte 224 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3d8f:0xd DW_TAG_member - .long 2792 ## DW_AT_name - .long 16056 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 177 ## DW_AT_decl_line - .short 416 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3d9c:0xd DW_TAG_member - .long 2795 ## DW_AT_name - .long 16068 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 178 ## DW_AT_decl_line - .short 488 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3da9:0xd DW_TAG_member - .long 2804 ## DW_AT_name - .long 16086 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 180 ## DW_AT_decl_line - .short 1336 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3db6:0xd DW_TAG_member - .long 2826 ## DW_AT_name - .long 16107 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 181 ## DW_AT_decl_line - .short 1344 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3dc3:0xd DW_TAG_member - .long 2847 ## DW_AT_name - .long 16137 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 182 ## DW_AT_decl_line - .short 2272 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3dd0:0xd DW_TAG_member - .long 2877 ## DW_AT_name - .long 16148 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .short 2280 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3ddd:0xd DW_TAG_member - .long 2911 ## DW_AT_name - .long 16186 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 184 ## DW_AT_decl_line - .short 2288 ## DW_AT_data_member_location - .byte 37 ## Abbrev [37] 0x3dea:0xd DW_TAG_member - .long 2955 ## DW_AT_name - .long 13109 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 185 ## DW_AT_decl_line - .short 2296 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3df8:0xb DW_TAG_typedef - .long 15875 ## DW_AT_type - .long 2477 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 124 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3e03:0x5 DW_TAG_pointer_type - .long 15880 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x3e08:0x1a DW_TAG_subroutine_type - .long 13109 ## DW_AT_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x3e0d:0x5 DW_TAG_formal_parameter - .long 13109 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x3e12:0x5 DW_TAG_formal_parameter - .long 13109 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x3e17:0x5 DW_TAG_formal_parameter - .long 14478 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x3e1c:0x5 DW_TAG_formal_parameter - .long 14478 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x3e22:0xb DW_TAG_typedef - .long 15917 ## DW_AT_type - .long 2501 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 27 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3e2d:0xb DW_TAG_typedef - .long 15928 ## DW_AT_type - .long 2507 ## DW_AT_name - .byte 11 ## DW_AT_decl_file - .byte 51 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x3e38:0x7 DW_TAG_base_type - .long 2517 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 24 ## Abbrev [24] 0x3e3f:0xb DW_TAG_typedef - .long 14478 ## DW_AT_type - .long 2543 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 26 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3e4a:0xb DW_TAG_typedef - .long 15957 ## DW_AT_type - .long 2566 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 80 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x3e55:0x2d DW_TAG_structure_type - .long 2566 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 76 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3e5d:0xc DW_TAG_member - .long 2203 ## DW_AT_name - .long 16002 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3e69:0xc DW_TAG_member - .long 2578 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 78 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3e75:0xc DW_TAG_member - .long 2583 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 79 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3e82:0x5 DW_TAG_pointer_type - .long 16007 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x3e87:0x5 DW_TAG_pointer_type - .long 16012 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x3e8c:0xc DW_TAG_typedef - .long 14338 ## DW_AT_type - .long 2182 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 365 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3e98:0x5 DW_TAG_pointer_type - .long 14315 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x3e9d:0x5 DW_TAG_pointer_type - .long 15017 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x3ea2:0x5 DW_TAG_pointer_type - .long 16039 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x3ea7:0x5 DW_TAG_const_type - .long 14131 ## DW_AT_type - .byte 16 ## Abbrev [16] 0x3eac:0xc DW_TAG_array_type - .long 16007 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x3eb1:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 24 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x3eb8:0xc DW_TAG_array_type - .long 14642 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x3ebd:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 9 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x3ec4:0x12 DW_TAG_array_type - .long 16007 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x3ec9:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 53 ## DW_AT_count - .byte 17 ## Abbrev [17] 0x3ecf:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 2 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3ed6:0x5 DW_TAG_pointer_type - .long 16091 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3edb:0xb DW_TAG_typedef - .long 16102 ## DW_AT_type - .long 2815 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 139 ## DW_AT_decl_line - .byte 39 ## Abbrev [39] 0x3ee6:0x5 DW_TAG_structure_type - .long 2815 ## DW_AT_name - ## DW_AT_declaration - .byte 16 ## Abbrev [16] 0x3eeb:0xc DW_TAG_array_type - .long 16119 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x3ef0:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 116 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x3ef7:0xc DW_TAG_typedef - .long 16131 ## DW_AT_type - .long 2835 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 648 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3f03:0x5 DW_TAG_pointer_type - .long 16136 ## DW_AT_type - .byte 40 ## Abbrev [40] 0x3f08:0x1 DW_TAG_subroutine_type - ## DW_AT_prototyped - .byte 24 ## Abbrev [24] 0x3f09:0xb DW_TAG_typedef - .long 16131 ## DW_AT_type - .long 2862 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 128 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x3f14:0xb DW_TAG_typedef - .long 16159 ## DW_AT_type - .long 2894 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 127 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3f1f:0x5 DW_TAG_pointer_type - .long 16164 ## DW_AT_type - .byte 41 ## Abbrev [41] 0x3f24:0xc DW_TAG_subroutine_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x3f25:0x5 DW_TAG_formal_parameter - .long 16176 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x3f2a:0x5 DW_TAG_formal_parameter - .long 14478 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3f30:0x5 DW_TAG_pointer_type - .long 16181 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x3f35:0x5 DW_TAG_const_type - .long 14154 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3f3a:0xb DW_TAG_typedef - .long 16197 ## DW_AT_type - .long 2933 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 129 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x3f45:0x5 DW_TAG_pointer_type - .long 16202 ## DW_AT_type - .byte 41 ## Abbrev [41] 0x3f4a:0xc DW_TAG_subroutine_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x3f4b:0x5 DW_TAG_formal_parameter - .long 16176 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x3f50:0x5 DW_TAG_formal_parameter - .long 16176 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x3f56:0x5 DW_TAG_pointer_type - .long 16219 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x3f5b:0xb DW_TAG_typedef - .long 16230 ## DW_AT_type - .long 2977 ## DW_AT_name - .byte 7 ## DW_AT_decl_file - .byte 113 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x3f66:0xf0 DW_TAG_structure_type - .long 2977 ## DW_AT_name - .byte 72 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3f6e:0xc DW_TAG_member - .long 2986 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 93 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3f7a:0xc DW_TAG_member - .long 2441 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 94 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3f86:0xc DW_TAG_member - .long 2991 ## DW_AT_name - .long 16470 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 95 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3f92:0xc DW_TAG_member - .long 2142 ## DW_AT_name - .long 16470 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 95 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3f9e:0xc DW_TAG_member - .long 2221 ## DW_AT_name - .long 16298 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 106 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 42 ## Abbrev [42] 0x3faa:0x63 DW_TAG_union_type - .byte 24 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 96 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3fae:0xc DW_TAG_member - .long 3000 ## DW_AT_name - .long 16314 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 100 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 43 ## Abbrev [43] 0x3fba:0x1d DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 97 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3fbe:0xc DW_TAG_member - .long 3002 ## DW_AT_name - .long 15338 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 98 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3fca:0xc DW_TAG_member - .long 3007 ## DW_AT_name - .long 16475 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x3fd7:0xc DW_TAG_member - .long 3027 ## DW_AT_name - .long 16355 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 105 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 43 ## Abbrev [43] 0x3fe3:0x29 DW_TAG_structure_type - .byte 24 ## DW_AT_byte_size - .byte 7 ## DW_AT_decl_file - .byte 101 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x3fe7:0xc DW_TAG_member - .long 3029 ## DW_AT_name - .long 16496 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 102 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3ff3:0xc DW_TAG_member - .long 3085 ## DW_AT_name - .long 15917 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 103 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x3fff:0xc DW_TAG_member - .long 3097 ## DW_AT_name - .long 16533 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 104 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x400d:0xc DW_TAG_member - .long 2190 ## DW_AT_name - .long 15917 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 107 ## DW_AT_decl_line - .byte 56 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x4019:0xc DW_TAG_member - .long 3101 ## DW_AT_name - .long 16566 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 108 ## DW_AT_decl_line - .byte 64 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x4025:0xc DW_TAG_member - .long 3116 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 109 ## DW_AT_decl_line - .byte 66 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x4031:0xc DW_TAG_member - .long 3127 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 110 ## DW_AT_decl_line - .byte 68 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x403d:0xc DW_TAG_member - .long 3138 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 111 ## DW_AT_decl_line - .byte 70 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x4049:0xc DW_TAG_member - .long 3148 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 7 ## DW_AT_decl_file - .byte 112 ## DW_AT_decl_line - .byte 71 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4056:0x5 DW_TAG_pointer_type - .long 16230 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x405b:0x5 DW_TAG_pointer_type - .long 16480 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x4060:0x5 DW_TAG_const_type - .long 16485 ## DW_AT_type - .byte 24 ## Abbrev [24] 0x4065:0xb DW_TAG_typedef - .long 14471 ## DW_AT_type - .long 3015 ## DW_AT_name - .byte 6 ## DW_AT_decl_file - .byte 174 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x4070:0xb DW_TAG_typedef - .long 16507 ## DW_AT_type - .long 3031 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 110 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x407b:0x5 DW_TAG_pointer_type - .long 16512 ## DW_AT_type - .byte 33 ## Abbrev [33] 0x4080:0x15 DW_TAG_subroutine_type - .long 14967 ## DW_AT_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x4085:0x5 DW_TAG_formal_parameter - .long 15001 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x408a:0x5 DW_TAG_formal_parameter - .long 14967 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x408f:0x5 DW_TAG_formal_parameter - .long 16533 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x4095:0xb DW_TAG_typedef - .long 16544 ## DW_AT_type - .long 3045 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x40a0:0xb DW_TAG_typedef - .long 16555 ## DW_AT_type - .long 3058 ## DW_AT_name - .byte 12 ## DW_AT_decl_file - .byte 32 ## DW_AT_decl_line - .byte 24 ## Abbrev [24] 0x40ab:0xb DW_TAG_typedef - .long 15928 ## DW_AT_type - .long 3067 ## DW_AT_name - .byte 8 ## DW_AT_decl_file - .byte 49 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x40b6:0x7 DW_TAG_base_type - .long 3110 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 2 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x40bd:0x5 DW_TAG_pointer_type - .long 16578 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x40c2:0xc DW_TAG_typedef - .long 16590 ## DW_AT_type - .long 3187 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 534 ## DW_AT_decl_line - .byte 29 ## Abbrev [29] 0x40ce:0x67 DW_TAG_structure_type - .long 3187 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 13 ## DW_AT_decl_file - .byte 36 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x40d6:0xc DW_TAG_member - .long 3193 ## DW_AT_name - .long 14826 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 37 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x40e2:0xc DW_TAG_member - .long 3195 ## DW_AT_name - .long 15935 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 38 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x40ee:0xc DW_TAG_member - .long 2221 ## DW_AT_name - .long 16634 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 45 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 42 ## Abbrev [42] 0x40fa:0x3a DW_TAG_union_type - .byte 16 ## DW_AT_byte_size - .byte 13 ## DW_AT_decl_file - .byte 39 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x40fe:0xc DW_TAG_member - .long 3204 ## DW_AT_name - .long 16650 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 43 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 43 ## Abbrev [43] 0x410a:0x1d DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 13 ## DW_AT_decl_file - .byte 40 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x410e:0xc DW_TAG_member - .long 2142 ## DW_AT_name - .long 16573 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 41 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x411a:0xc DW_TAG_member - .long 3209 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 42 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 28 ## Abbrev [28] 0x4127:0xc DW_TAG_member - .long 3217 ## DW_AT_name - .long 14831 ## DW_AT_type - .byte 13 ## DW_AT_decl_file - .byte 44 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4135:0x5 DW_TAG_pointer_type - .long 16698 ## DW_AT_type - .byte 39 ## Abbrev [39] 0x413a:0x5 DW_TAG_structure_type - .long 3239 ## DW_AT_name - ## DW_AT_declaration - .byte 44 ## Abbrev [44] 0x413f:0x5 DW_TAG_volatile_type - .long 16708 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4144:0xc DW_TAG_typedef - .long 16720 ## DW_AT_type - .long 3264 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .short 507 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x4150:0x5 DW_TAG_pointer_type - .long 16725 ## DW_AT_type - .byte 41 ## Abbrev [41] 0x4155:0xc DW_TAG_subroutine_type - ## DW_AT_prototyped - .byte 34 ## Abbrev [34] 0x4156:0x5 DW_TAG_formal_parameter - .long 15001 ## DW_AT_type - .byte 34 ## Abbrev [34] 0x415b:0x5 DW_TAG_formal_parameter - .long 16737 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4161:0x5 DW_TAG_pointer_type - .long 16742 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4166:0xc DW_TAG_typedef - .long 16754 ## DW_AT_type - .long 3273 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .short 503 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4172:0xcd DW_TAG_structure_type - .long 3273 ## DW_AT_name - .byte 128 ## DW_AT_byte_size - .byte 5 ## DW_AT_decl_file - .short 527 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x417b:0xd DW_TAG_member - .long 3283 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 528 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4188:0xd DW_TAG_member - .long 3289 ## DW_AT_name - .long 16176 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 529 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4195:0xd DW_TAG_member - .long 3294 ## DW_AT_name - .long 16176 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 530 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41a2:0xd DW_TAG_member - .long 3303 ## DW_AT_name - .long 16176 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 531 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41af:0xd DW_TAG_member - .long 3308 ## DW_AT_name - .long 16176 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 532 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41bc:0xd DW_TAG_member - .long 3315 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 533 ## DW_AT_decl_line - .byte 40 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41c9:0xd DW_TAG_member - .long 3327 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 534 ## DW_AT_decl_line - .byte 44 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41d6:0xd DW_TAG_member - .long 3339 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 535 ## DW_AT_decl_line - .byte 48 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41e3:0xd DW_TAG_member - .long 3355 ## DW_AT_name - .long 14331 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 536 ## DW_AT_decl_line - .byte 52 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41f0:0xd DW_TAG_member - .long 3360 ## DW_AT_name - .long 14331 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 537 ## DW_AT_decl_line - .byte 53 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x41fd:0xd DW_TAG_member - .long 3368 ## DW_AT_name - .long 14154 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 538 ## DW_AT_decl_line - .byte 54 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x420a:0xd DW_TAG_member - .long 3377 ## DW_AT_name - .long 14154 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 539 ## DW_AT_decl_line - .byte 55 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4217:0xd DW_TAG_member - .long 3388 ## DW_AT_name - .long 16959 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 540 ## DW_AT_decl_line - .byte 56 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4224:0xd DW_TAG_member - .long 3127 ## DW_AT_name - .long 16566 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 541 ## DW_AT_decl_line - .byte 116 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4231:0xd DW_TAG_member - .long 3398 ## DW_AT_name - .long 16470 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .short 543 ## DW_AT_decl_line - .byte 120 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x423f:0xc DW_TAG_array_type - .long 14154 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x4244:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 60 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x424b:0xb DW_TAG_typedef - .long 16982 ## DW_AT_type - .long 3482 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 93 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x4256:0x7 DW_TAG_base_type - .long 3494 ## DW_AT_name - .byte 5 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x425d:0x5 DW_TAG_pointer_type - .long 16994 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x4262:0xc DW_TAG_typedef - .long 17006 ## DW_AT_type - .long 3519 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 592 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x426e:0x24 DW_TAG_structure_type - .long 3519 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 589 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4277:0xd DW_TAG_member - .long 3524 ## DW_AT_name - .long 14831 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 590 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4284:0xd DW_TAG_member - .long 3530 ## DW_AT_name - .long 17042 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 591 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x4292:0xc DW_TAG_typedef - .long 17054 ## DW_AT_type - .long 3536 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 579 ## DW_AT_decl_line - .byte 45 ## Abbrev [45] 0x429e:0x51 DW_TAG_union_type - .long 3536 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 573 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x42a7:0xd DW_TAG_member - .long 3541 ## DW_AT_name - .long 17076 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 577 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 46 ## Abbrev [46] 0x42b4:0x2d DW_TAG_structure_type - .byte 16 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 574 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x42b9:0xd DW_TAG_member - .long 2387 ## DW_AT_name - .long 14875 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 575 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x42c6:0xd DW_TAG_member - .long 3510 ## DW_AT_name - .long 14613 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 575 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x42d3:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 576 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 31 ## Abbrev [31] 0x42e1:0xd DW_TAG_member - .long 3544 ## DW_AT_name - .long 14831 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 578 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x42ef:0xc DW_TAG_typedef - .long 17147 ## DW_AT_type - .long 3568 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 607 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x42fb:0x4b DW_TAG_structure_type - .long 3568 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 601 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4304:0xd DW_TAG_member - .long 3578 ## DW_AT_name - .long 14149 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 602 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4311:0xd DW_TAG_member - .long 3583 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 603 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x431e:0xd DW_TAG_member - .long 2583 ## DW_AT_name - .long 14471 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 604 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x432b:0xd DW_TAG_member - .long 3587 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 605 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4338:0xd DW_TAG_member - .long 3598 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 606 ## DW_AT_decl_line - .byte 17 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 45 ## Abbrev [45] 0x4346:0x24 DW_TAG_union_type - .long 3628 ## DW_AT_name - .byte 48 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 558 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x434f:0xd DW_TAG_member - .long 3027 ## DW_AT_name - .long 17258 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 559 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x435c:0xd DW_TAG_member - .long 3000 ## DW_AT_name - .long 17383 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 560 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x436a:0xc DW_TAG_typedef - .long 17270 ## DW_AT_type - .long 3636 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 548 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4376:0x65 DW_TAG_structure_type - .long 3636 ## DW_AT_name - .byte 48 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 544 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x437f:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x438c:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4399:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x43a6:0xd DW_TAG_member - .long 3645 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x43b3:0xd DW_TAG_member - .long 3223 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 545 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x43c0:0xd DW_TAG_member - .long 2408 ## DW_AT_name - .long 14974 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 546 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x43cd:0xd DW_TAG_member - .long 3655 ## DW_AT_name - .long 17371 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 547 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x43db:0xc DW_TAG_array_type - .long 14831 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x43e0:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 1 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 35 ## Abbrev [35] 0x43e7:0xc DW_TAG_typedef - .long 17395 ## DW_AT_type - .long 3663 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 555 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x43f3:0x65 DW_TAG_structure_type - .long 3663 ## DW_AT_name - .byte 40 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 551 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x43fc:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 552 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4409:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 552 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4416:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 552 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4423:0xd DW_TAG_member - .long 3645 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 552 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4430:0xd DW_TAG_member - .long 3223 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 552 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x443d:0xd DW_TAG_member - .long 2400 ## DW_AT_name - .long 17496 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 553 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x444a:0xd DW_TAG_member - .long 3958 ## DW_AT_name - .long 18114 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 554 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4458:0x5 DW_TAG_pointer_type - .long 17501 ## DW_AT_type - .byte 30 ## Abbrev [30] 0x445d:0x142 DW_TAG_structure_type - .long 3672 ## DW_AT_name - .byte 144 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 503 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4466:0xd DW_TAG_member - .long 2142 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4473:0xd DW_TAG_member - .long 2147 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4480:0xd DW_TAG_member - .long 2172 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .byte 9 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x448d:0xd DW_TAG_member - .long 3678 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .byte 10 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x449a:0xd DW_TAG_member - .long 3688 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 506 ## DW_AT_decl_line - .byte 11 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44a7:0xd DW_TAG_member - .long 3698 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 507 ## DW_AT_decl_line - .byte 12 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44b4:0xd DW_TAG_member - .long 3711 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 508 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44c1:0xd DW_TAG_member - .long 3724 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 509 ## DW_AT_decl_line - .byte 20 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44ce:0xd DW_TAG_member - .long 3730 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 510 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44db:0xd DW_TAG_member - .long 3739 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 511 ## DW_AT_decl_line - .byte 28 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44e8:0xd DW_TAG_member - .long 3752 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 512 ## DW_AT_decl_line - .byte 32 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x44f5:0xd DW_TAG_member - .long 3758 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 513 ## DW_AT_decl_line - .byte 36 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4502:0xd DW_TAG_member - .long 3327 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 514 ## DW_AT_decl_line - .byte 40 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x450f:0xd DW_TAG_member - .long 3339 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 515 ## DW_AT_decl_line - .byte 44 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x451c:0xd DW_TAG_member - .long 3029 ## DW_AT_name - .long 14826 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 516 ## DW_AT_decl_line - .byte 48 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4529:0xd DW_TAG_member - .long 3770 ## DW_AT_name - .long 17823 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .byte 56 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4536:0xd DW_TAG_member - .long 2400 ## DW_AT_name - .long 17828 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 518 ## DW_AT_decl_line - .byte 64 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4543:0xd DW_TAG_member - .long 3775 ## DW_AT_name - .long 17833 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 519 ## DW_AT_decl_line - .byte 72 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4550:0xd DW_TAG_member - .long 3784 ## DW_AT_name - .long 17838 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 520 ## DW_AT_decl_line - .byte 80 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x455d:0xd DW_TAG_member - .long 3840 ## DW_AT_name - .long 17930 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 521 ## DW_AT_decl_line - .byte 88 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x456a:0xd DW_TAG_member - .long 3871 ## DW_AT_name - .long 18022 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 522 ## DW_AT_decl_line - .byte 96 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4577:0xd DW_TAG_member - .long 3308 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 523 ## DW_AT_decl_line - .byte 104 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4584:0xd DW_TAG_member - .long 3223 ## DW_AT_name - .long 14315 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 524 ## DW_AT_decl_line - .byte 112 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4591:0xd DW_TAG_member - .long 3877 ## DW_AT_name - .long 18027 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 526 ## DW_AT_decl_line - .byte 120 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x459f:0x5 DW_TAG_pointer_type - .long 16485 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45a4:0x5 DW_TAG_pointer_type - .long 17496 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45a9:0x5 DW_TAG_pointer_type - .long 14967 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x45ae:0x5 DW_TAG_pointer_type - .long 17843 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x45b3:0xc DW_TAG_typedef - .long 17855 ## DW_AT_type - .long 3792 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 477 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x45bf:0x4b DW_TAG_structure_type - .long 3792 ## DW_AT_name - .byte 32 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 471 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x45c8:0xd DW_TAG_member - .long 3799 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 472 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x45d5:0xd DW_TAG_member - .long 3807 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 473 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x45e2:0xd DW_TAG_member - .long 3816 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 474 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x45ef:0xd DW_TAG_member - .long 3824 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 475 ## DW_AT_decl_line - .byte 20 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x45fc:0xd DW_TAG_member - .long 3830 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 476 ## DW_AT_decl_line - .byte 24 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x460a:0x5 DW_TAG_pointer_type - .long 17935 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x460f:0xc DW_TAG_typedef - .long 17947 ## DW_AT_type - .long 3849 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 464 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x461b:0x4b DW_TAG_structure_type - .long 3849 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 458 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4624:0xd DW_TAG_member - .long 3289 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 459 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4631:0xd DW_TAG_member - .long 3807 ## DW_AT_name - .long 16007 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 460 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x463e:0xd DW_TAG_member - .long 3830 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 461 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x464b:0xd DW_TAG_member - .long 3859 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 462 ## DW_AT_decl_line - .byte 17 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x4658:0xd DW_TAG_member - .long 3867 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 463 ## DW_AT_decl_line - .byte 18 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4666:0x5 DW_TAG_pointer_type - .long 17395 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x466b:0xc DW_TAG_typedef - .long 18039 ## DW_AT_type - .long 3886 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 497 ## DW_AT_decl_line - .byte 30 ## Abbrev [30] 0x4677:0x4b DW_TAG_structure_type - .long 3886 ## DW_AT_name - .byte 24 ## DW_AT_byte_size - .byte 4 ## DW_AT_decl_file - .short 491 ## DW_AT_decl_line - .byte 31 ## Abbrev [31] 0x4680:0xd DW_TAG_member - .long 3899 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 492 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x468d:0xd DW_TAG_member - .long 3910 ## DW_AT_name - .long 14320 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .byte 1 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x469a:0xd DW_TAG_member - .long 3920 ## DW_AT_name - .long 14635 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .byte 2 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x46a7:0xd DW_TAG_member - .long 3936 ## DW_AT_name - .long 13109 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 495 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 31 ## Abbrev [31] 0x46b4:0xd DW_TAG_member - .long 3945 ## DW_AT_name - .long 14974 ## DW_AT_type - .byte 4 ## DW_AT_decl_file - .short 496 ## DW_AT_decl_line - .byte 16 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x46c2:0xc DW_TAG_array_type - .long 16573 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x46c7:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 1 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 24 ## Abbrev [24] 0x46ce:0xb DW_TAG_typedef - .long 18137 ## DW_AT_type - .long 3970 ## DW_AT_name - .byte 5 ## DW_AT_decl_file - .byte 96 ## DW_AT_decl_line - .byte 25 ## Abbrev [25] 0x46d9:0x7 DW_TAG_base_type - .long 3983 ## DW_AT_name - .byte 7 ## DW_AT_encoding - .byte 8 ## DW_AT_byte_size - .byte 26 ## Abbrev [26] 0x46e0:0x5 DW_TAG_pointer_type - .long 14131 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x46e5:0x5 DW_TAG_pointer_type - .long 16971 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x46ea:0xc DW_TAG_typedef - .long 13272 ## DW_AT_type - .long 4006 ## DW_AT_name - .byte 3 ## DW_AT_decl_file - .short 284 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x46f6:0x5 DW_TAG_pointer_type - .long 18171 ## DW_AT_type - .byte 29 ## Abbrev [29] 0x46fb:0x21 DW_TAG_structure_type - .long 4013 ## DW_AT_name - .byte 16 ## DW_AT_byte_size - .byte 5 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .byte 28 ## Abbrev [28] 0x4703:0xc DW_TAG_member - .long 4021 ## DW_AT_name - .long 14967 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .byte 0 ## DW_AT_data_member_location - .byte 28 ## Abbrev [28] 0x470f:0xc DW_TAG_member - .long 4026 ## DW_AT_name - .long 17833 ## DW_AT_type - .byte 5 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .byte 8 ## DW_AT_data_member_location - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x471c:0x5 DW_TAG_pointer_type - .long 18209 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x4721:0x5 DW_TAG_const_type - .long 14831 ## DW_AT_type - .byte 47 ## Abbrev [47] 0x4726:0x47 DW_TAG_subprogram - .quad Lfunc_begin0 ## DW_AT_low_pc -.set Lset29701, Lfunc_end0-Lfunc_begin0 ## DW_AT_high_pc - .long Lset29701 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4032 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 48 ## Abbrev [48] 0x473f:0xf DW_TAG_formal_parameter -.set Lset29702, Ldebug_loc0-Lsection_debug_loc ## DW_AT_location - .long Lset29702 - .long 4065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x474e:0xf DW_TAG_formal_parameter -.set Lset29703, Ldebug_loc1-Lsection_debug_loc ## DW_AT_location - .long Lset29703 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 77 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x475d:0xf DW_TAG_variable -.set Lset29704, Ldebug_loc2-Lsection_debug_loc ## DW_AT_location - .long Lset29704 - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 78 ## DW_AT_decl_line - .long 14831 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x476d:0x49 DW_TAG_subprogram - .quad Lfunc_begin1 ## DW_AT_low_pc -.set Lset29705, Lfunc_end1-Lfunc_begin1 ## DW_AT_high_pc - .long Lset29705 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 18358 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4780:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 18370 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4787:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 18381 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x478e:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 81 - .long 18392 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x4795:0x20 DW_TAG_lexical_block - .quad Ltmp30 ## DW_AT_low_pc -.set Lset29706, Ltmp42-Ltmp30 ## DW_AT_high_pc - .long Lset29706 - .byte 13 ## Abbrev [13] 0x47a2:0x9 DW_TAG_variable -.set Lset29707, Ldebug_loc3-Lsection_debug_loc ## DW_AT_location - .long Lset29707 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x47ab:0x9 DW_TAG_variable -.set Lset29708, Ldebug_loc4-Lsection_debug_loc ## DW_AT_location - .long Lset29708 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 51 ## Abbrev [51] 0x47b6:0x46 DW_TAG_subprogram - .long 4047 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 52 ## Abbrev [52] 0x47c2:0xb DW_TAG_formal_parameter - .long 4065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x47cd:0xb DW_TAG_formal_parameter - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x47d8:0xb DW_TAG_formal_parameter - .long 4069 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 99 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x47e3:0x18 DW_TAG_lexical_block - .byte 54 ## Abbrev [54] 0x47e4:0xb DW_TAG_variable - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 103 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 54 ## Abbrev [54] 0x47ef:0xb DW_TAG_variable - .long 2408 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 104 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 47 ## Abbrev [47] 0x47fc:0x8a DW_TAG_subprogram - .quad Lfunc_begin2 ## DW_AT_low_pc -.set Lset29709, Lfunc_end2-Lfunc_begin2 ## DW_AT_high_pc - .long Lset29709 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4074 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 119 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 48 ## Abbrev [48] 0x4815:0xf DW_TAG_formal_parameter -.set Lset29710, Ldebug_loc5-Lsection_debug_loc ## DW_AT_location - .long Lset29710 - .long 4065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 119 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4824:0xf DW_TAG_formal_parameter -.set Lset29711, Ldebug_loc6-Lsection_debug_loc ## DW_AT_location - .long Lset29711 - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 119 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4833:0xf DW_TAG_formal_parameter -.set Lset29712, Ldebug_loc7-Lsection_debug_loc ## DW_AT_location - .long Lset29712 - .long 4069 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 119 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x4842:0xf DW_TAG_variable -.set Lset29713, Ldebug_loc8-Lsection_debug_loc ## DW_AT_location - .long Lset29713 - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 120 ## DW_AT_decl_line - .long 14831 ## DW_AT_type - .byte 55 ## Abbrev [55] 0x4851:0x34 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp59 ## DW_AT_low_pc -.set Lset29714, Ltmp71-Ltmp59 ## DW_AT_high_pc - .long Lset29714 - .byte 1 ## DW_AT_call_file - .byte 128 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x4864:0x20 DW_TAG_lexical_block - .quad Ltmp59 ## DW_AT_low_pc -.set Lset29715, Ltmp71-Ltmp59 ## DW_AT_high_pc - .long Lset29715 - .byte 13 ## Abbrev [13] 0x4871:0x9 DW_TAG_variable -.set Lset29716, Ldebug_loc9-Lsection_debug_loc ## DW_AT_location - .long Lset29716 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x487a:0x9 DW_TAG_variable -.set Lset29717, Ldebug_loc10-Lsection_debug_loc ## DW_AT_location - .long Lset29717 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x4886:0x27 DW_TAG_subprogram - .quad Lfunc_begin3 ## DW_AT_low_pc -.set Lset29718, Lfunc_end3-Lfunc_begin3 ## DW_AT_high_pc - .long Lset29718 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 19483 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4899:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x48a0:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 19506 ## DW_AT_abstract_origin - .byte 56 ## Abbrev [56] 0x48a7:0x5 DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x48ad:0x61 DW_TAG_subprogram - .quad Lfunc_begin4 ## DW_AT_low_pc -.set Lset29719, Lfunc_end4-Lfunc_begin4 ## DW_AT_high_pc - .long Lset29719 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 22808 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x48c0:0x9 DW_TAG_formal_parameter -.set Lset29720, Ldebug_loc11-Lsection_debug_loc ## DW_AT_location - .long Lset29720 - .long 22820 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x48c9:0x9 DW_TAG_formal_parameter -.set Lset29721, Ldebug_loc12-Lsection_debug_loc ## DW_AT_location - .long Lset29721 - .long 22831 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x48d2:0x9 DW_TAG_formal_parameter -.set Lset29722, Ldebug_loc13-Lsection_debug_loc ## DW_AT_location - .long Lset29722 - .long 22842 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x48db:0x9 DW_TAG_formal_parameter -.set Lset29723, Ldebug_loc14-Lsection_debug_loc ## DW_AT_location - .long Lset29723 - .long 22853 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x48e4:0xf DW_TAG_lexical_block -.set Lset29724, Ldebug_ranges0-Ldebug_range ## DW_AT_ranges - .long Lset29724 - .byte 13 ## Abbrev [13] 0x48e9:0x9 DW_TAG_variable -.set Lset29725, Ldebug_loc15-Lsection_debug_loc ## DW_AT_location - .long Lset29725 - .long 22865 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x48f3:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp88-Lfunc_begin4 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x4900:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp100-Lfunc_begin4 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 57 ## Abbrev [57] 0x490e:0xab DW_TAG_subprogram - .quad Lfunc_begin5 ## DW_AT_low_pc -.set Lset29726, Lfunc_end5-Lfunc_begin5 ## DW_AT_high_pc - .long Lset29726 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 48 ## Abbrev [48] 0x4923:0xf DW_TAG_formal_parameter -.set Lset29727, Ldebug_loc16-Lsection_debug_loc ## DW_AT_location - .long Lset29727 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4932:0xf DW_TAG_formal_parameter -.set Lset29728, Ldebug_loc17-Lsection_debug_loc ## DW_AT_location - .long Lset29728 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4941:0xf DW_TAG_formal_parameter -.set Lset29729, Ldebug_loc18-Lsection_debug_loc ## DW_AT_location - .long Lset29729 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4950:0xf DW_TAG_formal_parameter -.set Lset29730, Ldebug_loc19-Lsection_debug_loc ## DW_AT_location - .long Lset29730 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 183 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x495f:0xf DW_TAG_formal_parameter -.set Lset29731, Ldebug_loc20-Lsection_debug_loc ## DW_AT_location - .long Lset29731 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 184 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x496e:0xf DW_TAG_variable -.set Lset29732, Ldebug_loc22-Lsection_debug_loc ## DW_AT_location - .long Lset29732 - .long 5093 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 185 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x497d:0xf DW_TAG_variable -.set Lset29733, Ldebug_loc23-Lsection_debug_loc ## DW_AT_location - .long Lset29733 - .long 5098 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 186 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x498c:0x2c DW_TAG_lexical_block - .quad Ltmp164 ## DW_AT_low_pc -.set Lset29734, Ltmp170-Ltmp164 ## DW_AT_high_pc - .long Lset29734 - .byte 49 ## Abbrev [49] 0x4999:0xf DW_TAG_variable -.set Lset29735, Ldebug_loc21-Lsection_debug_loc ## DW_AT_location - .long Lset29735 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 210 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x49a8:0xf DW_TAG_variable -.set Lset29736, Ldebug_loc24-Lsection_debug_loc ## DW_AT_location - .long Lset29736 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 210 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 57 ## Abbrev [57] 0x49b9:0xe0 DW_TAG_subprogram - .quad Lfunc_begin6 ## DW_AT_low_pc -.set Lset29737, Lfunc_end6-Lfunc_begin6 ## DW_AT_high_pc - .long Lset29737 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4134 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 226 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 48 ## Abbrev [48] 0x49ce:0xf DW_TAG_formal_parameter -.set Lset29738, Ldebug_loc25-Lsection_debug_loc ## DW_AT_location - .long Lset29738 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 226 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x49dd:0xf DW_TAG_formal_parameter -.set Lset29739, Ldebug_loc26-Lsection_debug_loc ## DW_AT_location - .long Lset29739 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 226 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x49ec:0xf DW_TAG_formal_parameter -.set Lset29740, Ldebug_loc27-Lsection_debug_loc ## DW_AT_location - .long Lset29740 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 226 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x49fb:0xf DW_TAG_formal_parameter -.set Lset29741, Ldebug_loc28-Lsection_debug_loc ## DW_AT_location - .long Lset29741 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 227 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 48 ## Abbrev [48] 0x4a0a:0xf DW_TAG_formal_parameter -.set Lset29742, Ldebug_loc29-Lsection_debug_loc ## DW_AT_location - .long Lset29742 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 227 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x4a19:0xf DW_TAG_variable -.set Lset29743, Ldebug_loc32-Lsection_debug_loc ## DW_AT_location - .long Lset29743 - .long 5093 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 228 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4a28:0x70 DW_TAG_lexical_block -.set Lset29744, Ldebug_ranges4-Ldebug_range ## DW_AT_ranges - .long Lset29744 - .byte 49 ## Abbrev [49] 0x4a2d:0xf DW_TAG_variable -.set Lset29745, Ldebug_loc33-Lsection_debug_loc ## DW_AT_location - .long Lset29745 - .long 5098 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 230 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4a3c:0x35 DW_TAG_lexical_block -.set Lset29746, Ldebug_ranges2-Ldebug_range ## DW_AT_ranges - .long Lset29746 - .byte 54 ## Abbrev [54] 0x4a41:0xb DW_TAG_variable - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 232 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4a4c:0x24 DW_TAG_lexical_block -.set Lset29747, Ldebug_ranges1-Ldebug_range ## DW_AT_ranges - .long Lset29747 - .byte 49 ## Abbrev [49] 0x4a51:0xf DW_TAG_variable -.set Lset29748, Ldebug_loc30-Lsection_debug_loc ## DW_AT_location - .long Lset29748 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 239 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 49 ## Abbrev [49] 0x4a60:0xf DW_TAG_variable -.set Lset29749, Ldebug_loc35-Lsection_debug_loc ## DW_AT_location - .long Lset29749 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 239 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4a71:0x26 DW_TAG_lexical_block -.set Lset29750, Ldebug_ranges3-Ldebug_range ## DW_AT_ranges - .long Lset29750 - .byte 5 ## Abbrev [5] 0x4a76:0x10 DW_TAG_variable -.set Lset29751, Ldebug_loc31-Lsection_debug_loc ## DW_AT_location - .long Lset29751 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 257 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4a86:0x10 DW_TAG_variable -.set Lset29752, Ldebug_loc34-Lsection_debug_loc ## DW_AT_location - .long Lset29752 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 257 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x4a99:0x182 DW_TAG_subprogram - .quad Lfunc_begin7 ## DW_AT_low_pc -.set Lset29753, Lfunc_end7-Lfunc_begin7 ## DW_AT_high_pc - .long Lset29753 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4149 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x4aaf:0x10 DW_TAG_formal_parameter -.set Lset29754, Ldebug_loc36-Lsection_debug_loc ## DW_AT_location - .long Lset29754 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4abf:0x10 DW_TAG_formal_parameter -.set Lset29755, Ldebug_loc37-Lsection_debug_loc ## DW_AT_location - .long Lset29755 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4acf:0x10 DW_TAG_formal_parameter -.set Lset29756, Ldebug_loc38-Lsection_debug_loc ## DW_AT_location - .long Lset29756 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4adf:0x10 DW_TAG_formal_parameter -.set Lset29757, Ldebug_loc39-Lsection_debug_loc ## DW_AT_location - .long Lset29757 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 493 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4aef:0x62 DW_TAG_lexical_block -.set Lset29758, Ldebug_ranges7-Ldebug_range ## DW_AT_ranges - .long Lset29758 - .byte 5 ## Abbrev [5] 0x4af4:0x10 DW_TAG_variable -.set Lset29759, Ldebug_loc45-Lsection_debug_loc ## DW_AT_location - .long Lset29759 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4b04:0x26 DW_TAG_lexical_block -.set Lset29760, Ldebug_ranges5-Ldebug_range ## DW_AT_ranges - .long Lset29760 - .byte 5 ## Abbrev [5] 0x4b09:0x10 DW_TAG_variable -.set Lset29761, Ldebug_loc43-Lsection_debug_loc ## DW_AT_location - .long Lset29761 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4b19:0x10 DW_TAG_variable -.set Lset29762, Ldebug_loc44-Lsection_debug_loc ## DW_AT_location - .long Lset29762 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4b2a:0x26 DW_TAG_lexical_block -.set Lset29763, Ldebug_ranges6-Ldebug_range ## DW_AT_ranges - .long Lset29763 - .byte 5 ## Abbrev [5] 0x4b2f:0x10 DW_TAG_variable -.set Lset29764, Ldebug_loc42-Lsection_debug_loc ## DW_AT_location - .long Lset29764 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4b3f:0x10 DW_TAG_variable -.set Lset29765, Ldebug_loc46-Lsection_debug_loc ## DW_AT_location - .long Lset29765 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4b51:0x5a DW_TAG_lexical_block -.set Lset29766, Ldebug_ranges9-Ldebug_range ## DW_AT_ranges - .long Lset29766 - .byte 5 ## Abbrev [5] 0x4b56:0x10 DW_TAG_variable -.set Lset29767, Ldebug_loc47-Lsection_debug_loc ## DW_AT_location - .long Lset29767 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4b66:0x44 DW_TAG_lexical_block -.set Lset29768, Ldebug_ranges8-Ldebug_range ## DW_AT_ranges - .long Lset29768 - .byte 5 ## Abbrev [5] 0x4b6b:0x10 DW_TAG_variable -.set Lset29769, Ldebug_loc48-Lsection_debug_loc ## DW_AT_location - .long Lset29769 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4b7b:0x10 DW_TAG_variable -.set Lset29770, Ldebug_loc49-Lsection_debug_loc ## DW_AT_location - .long Lset29770 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x4b8b:0x1e DW_TAG_lexical_block - .quad Ltmp298 ## DW_AT_low_pc -.set Lset29771, Ltmp300-Ltmp298 ## DW_AT_high_pc - .long Lset29771 - .byte 5 ## Abbrev [5] 0x4b98:0x10 DW_TAG_variable -.set Lset29772, Ldebug_loc41-Lsection_debug_loc ## DW_AT_location - .long Lset29772 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x4bab:0x6a DW_TAG_lexical_block - .quad Ltmp301 ## DW_AT_low_pc -.set Lset29773, Ltmp312-Ltmp301 ## DW_AT_high_pc - .long Lset29773 - .byte 5 ## Abbrev [5] 0x4bb8:0x10 DW_TAG_variable -.set Lset29774, Ldebug_loc50-Lsection_debug_loc ## DW_AT_location - .long Lset29774 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x4bc8:0x4c DW_TAG_lexical_block - .quad Ltmp305 ## DW_AT_low_pc -.set Lset29775, Ltmp312-Ltmp305 ## DW_AT_high_pc - .long Lset29775 - .byte 5 ## Abbrev [5] 0x4bd5:0x10 DW_TAG_variable -.set Lset29776, Ldebug_loc51-Lsection_debug_loc ## DW_AT_location - .long Lset29776 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4be5:0x10 DW_TAG_variable -.set Lset29777, Ldebug_loc52-Lsection_debug_loc ## DW_AT_location - .long Lset29777 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x4bf5:0x1e DW_TAG_lexical_block - .quad Ltmp310 ## DW_AT_low_pc -.set Lset29778, Ltmp312-Ltmp310 ## DW_AT_high_pc - .long Lset29778 - .byte 5 ## Abbrev [5] 0x4c02:0x10 DW_TAG_variable -.set Lset29779, Ldebug_loc40-Lsection_debug_loc ## DW_AT_location - .long Lset29779 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 494 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x4c15:0x5 DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 51 ## Abbrev [51] 0x4c1b:0x23 DW_TAG_subprogram - .long 4089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 135 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 52 ## Abbrev [52] 0x4c27:0xb DW_TAG_formal_parameter - .long 4065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 135 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x4c32:0xb DW_TAG_formal_parameter - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 135 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x4c3e:0x20c DW_TAG_subprogram - .quad Lfunc_begin8 ## DW_AT_low_pc -.set Lset29780, Lfunc_end8-Lfunc_begin8 ## DW_AT_high_pc - .long Lset29780 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4163 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x4c54:0x10 DW_TAG_formal_parameter -.set Lset29781, Ldebug_loc53-Lsection_debug_loc ## DW_AT_location - .long Lset29781 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4c64:0x10 DW_TAG_formal_parameter -.set Lset29782, Ldebug_loc54-Lsection_debug_loc ## DW_AT_location - .long Lset29782 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4c74:0x10 DW_TAG_formal_parameter -.set Lset29783, Ldebug_loc55-Lsection_debug_loc ## DW_AT_location - .long Lset29783 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4c84:0x10 DW_TAG_formal_parameter -.set Lset29784, Ldebug_loc56-Lsection_debug_loc ## DW_AT_location - .long Lset29784 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 504 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4c94:0x62 DW_TAG_lexical_block -.set Lset29785, Ldebug_ranges12-Ldebug_range ## DW_AT_ranges - .long Lset29785 - .byte 5 ## Abbrev [5] 0x4c99:0x10 DW_TAG_variable -.set Lset29786, Ldebug_loc61-Lsection_debug_loc ## DW_AT_location - .long Lset29786 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4ca9:0x26 DW_TAG_lexical_block -.set Lset29787, Ldebug_ranges10-Ldebug_range ## DW_AT_ranges - .long Lset29787 - .byte 5 ## Abbrev [5] 0x4cae:0x10 DW_TAG_variable -.set Lset29788, Ldebug_loc59-Lsection_debug_loc ## DW_AT_location - .long Lset29788 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4cbe:0x10 DW_TAG_variable -.set Lset29789, Ldebug_loc60-Lsection_debug_loc ## DW_AT_location - .long Lset29789 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4ccf:0x26 DW_TAG_lexical_block -.set Lset29790, Ldebug_ranges11-Ldebug_range ## DW_AT_ranges - .long Lset29790 - .byte 5 ## Abbrev [5] 0x4cd4:0x10 DW_TAG_variable -.set Lset29791, Ldebug_loc58-Lsection_debug_loc ## DW_AT_location - .long Lset29791 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4ce4:0x10 DW_TAG_variable -.set Lset29792, Ldebug_loc62-Lsection_debug_loc ## DW_AT_location - .long Lset29792 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4cf6:0x9e DW_TAG_lexical_block -.set Lset29793, Ldebug_ranges17-Ldebug_range ## DW_AT_ranges - .long Lset29793 - .byte 5 ## Abbrev [5] 0x4cfb:0x10 DW_TAG_variable -.set Lset29794, Ldebug_loc63-Lsection_debug_loc ## DW_AT_location - .long Lset29794 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4d0b:0x26 DW_TAG_lexical_block -.set Lset29795, Ldebug_ranges13-Ldebug_range ## DW_AT_ranges - .long Lset29795 - .byte 5 ## Abbrev [5] 0x4d10:0x10 DW_TAG_variable -.set Lset29796, Ldebug_loc64-Lsection_debug_loc ## DW_AT_location - .long Lset29796 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4d20:0x10 DW_TAG_variable -.set Lset29797, Ldebug_loc67-Lsection_debug_loc ## DW_AT_location - .long Lset29797 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4d31:0x26 DW_TAG_lexical_block -.set Lset29798, Ldebug_ranges14-Ldebug_range ## DW_AT_ranges - .long Lset29798 - .byte 5 ## Abbrev [5] 0x4d36:0x10 DW_TAG_variable -.set Lset29799, Ldebug_loc68-Lsection_debug_loc ## DW_AT_location - .long Lset29799 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4d46:0x10 DW_TAG_variable -.set Lset29800, Ldebug_loc69-Lsection_debug_loc ## DW_AT_location - .long Lset29800 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4d57:0x3c DW_TAG_lexical_block -.set Lset29801, Ldebug_ranges16-Ldebug_range ## DW_AT_ranges - .long Lset29801 - .byte 5 ## Abbrev [5] 0x4d5c:0x10 DW_TAG_variable -.set Lset29802, Ldebug_loc70-Lsection_debug_loc ## DW_AT_location - .long Lset29802 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4d6c:0x26 DW_TAG_lexical_block -.set Lset29803, Ldebug_ranges15-Ldebug_range ## DW_AT_ranges - .long Lset29803 - .byte 5 ## Abbrev [5] 0x4d71:0x10 DW_TAG_variable -.set Lset29804, Ldebug_loc71-Lsection_debug_loc ## DW_AT_location - .long Lset29804 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4d81:0x10 DW_TAG_variable -.set Lset29805, Ldebug_loc74-Lsection_debug_loc ## DW_AT_location - .long Lset29805 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4d94:0x96 DW_TAG_lexical_block -.set Lset29806, Ldebug_ranges21-Ldebug_range ## DW_AT_ranges - .long Lset29806 - .byte 5 ## Abbrev [5] 0x4d99:0x10 DW_TAG_variable -.set Lset29807, Ldebug_loc65-Lsection_debug_loc ## DW_AT_location - .long Lset29807 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4da9:0x22 DW_TAG_lexical_block -.set Lset29808, Ldebug_ranges18-Ldebug_range ## DW_AT_ranges - .long Lset29808 - .byte 5 ## Abbrev [5] 0x4dae:0x10 DW_TAG_variable -.set Lset29809, Ldebug_loc66-Lsection_debug_loc ## DW_AT_location - .long Lset29809 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4dbe:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4dcb:0x5e DW_TAG_lexical_block -.set Lset29810, Ldebug_ranges20-Ldebug_range ## DW_AT_ranges - .long Lset29810 - .byte 5 ## Abbrev [5] 0x4dd0:0x10 DW_TAG_variable -.set Lset29811, Ldebug_loc72-Lsection_debug_loc ## DW_AT_location - .long Lset29811 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x4de0:0x26 DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp409 ## DW_AT_low_pc -.set Lset29812, Ltmp410-Ltmp409 ## DW_AT_high_pc - .long Lset29812 - .byte 1 ## DW_AT_call_file - .short 505 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x4df4:0x9 DW_TAG_formal_parameter -.set Lset29813, Ldebug_loc57-Lsection_debug_loc ## DW_AT_location - .long Lset29813 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x4dfd:0x8 DW_TAG_formal_parameter - .byte 2 ## DW_AT_location - .byte 145 - .byte 88 - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4e06:0x22 DW_TAG_lexical_block -.set Lset29814, Ldebug_ranges19-Ldebug_range ## DW_AT_ranges - .long Lset29814 - .byte 5 ## Abbrev [5] 0x4e0b:0x10 DW_TAG_variable -.set Lset29815, Ldebug_loc73-Lsection_debug_loc ## DW_AT_location - .long Lset29815 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4e1b:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 505 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x4e2a:0x5 DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 15 ## Abbrev [15] 0x4e2f:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp399-Lfunc_begin8 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x4e3c:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp410-Lfunc_begin8 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 59 ## Abbrev [59] 0x4e4a:0x72 DW_TAG_subprogram - .long 4177 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 516 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x4e57:0xc DW_TAG_formal_parameter - .long 4186 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 516 ## DW_AT_decl_line - .long 20156 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x4e63:0xc DW_TAG_formal_parameter - .long 4189 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 516 ## DW_AT_decl_line - .long 20156 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4e6f:0xc DW_TAG_variable - .long 4192 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 518 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4e7b:0xc DW_TAG_variable - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 517 ## DW_AT_decl_line - .long 16176 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4e87:0xc DW_TAG_variable - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 519 ## DW_AT_decl_line - .long 16176 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x4e93:0xc DW_TAG_variable - .long 4197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 520 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x4e9f:0x1c DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x4ea0:0xc DW_TAG_variable - .long 4200 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 522 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x4eac:0xe DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x4ead:0xc DW_TAG_variable - .long 3583 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 526 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x4ebc:0x5 DW_TAG_pointer_type - .long 20161 ## DW_AT_type - .byte 38 ## Abbrev [38] 0x4ec1:0x5 DW_TAG_const_type - .long 16012 ## DW_AT_type - .byte 2 ## Abbrev [2] 0x4ec6:0xc9 DW_TAG_subprogram - .quad Lfunc_begin9 ## DW_AT_low_pc -.set Lset29816, Lfunc_end9-Lfunc_begin9 ## DW_AT_high_pc - .long Lset29816 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4205 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 634 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x4ee0:0x10 DW_TAG_formal_parameter -.set Lset29817, Ldebug_loc75-Lsection_debug_loc ## DW_AT_location - .long Lset29817 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 634 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4ef0:0x10 DW_TAG_formal_parameter -.set Lset29818, Ldebug_loc76-Lsection_debug_loc ## DW_AT_location - .long Lset29818 - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 634 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4f00:0x10 DW_TAG_formal_parameter -.set Lset29819, Ldebug_loc77-Lsection_debug_loc ## DW_AT_location - .long Lset29819 - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 634 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x4f10:0x10 DW_TAG_variable -.set Lset29820, Ldebug_loc83-Lsection_debug_loc ## DW_AT_location - .long Lset29820 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 635 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x4f20:0x69 DW_TAG_inlined_subroutine - .long 20042 ## DW_AT_abstract_origin -.set Lset29821, Ldebug_ranges22-Ldebug_range ## DW_AT_ranges - .long Lset29821 - .byte 1 ## DW_AT_call_file - .short 639 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x4f2c:0x9 DW_TAG_formal_parameter -.set Lset29822, Ldebug_loc78-Lsection_debug_loc ## DW_AT_location - .long Lset29822 - .long 20055 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4f35:0x9 DW_TAG_formal_parameter -.set Lset29823, Ldebug_loc79-Lsection_debug_loc ## DW_AT_location - .long Lset29823 - .long 20067 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x4f3e:0x9 DW_TAG_variable -.set Lset29824, Ldebug_loc80-Lsection_debug_loc ## DW_AT_location - .long Lset29824 - .long 20079 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x4f47:0x9 DW_TAG_variable -.set Lset29825, Ldebug_loc81-Lsection_debug_loc ## DW_AT_location - .long Lset29825 - .long 20091 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x4f50:0x9 DW_TAG_variable -.set Lset29826, Ldebug_loc82-Lsection_debug_loc ## DW_AT_location - .long Lset29826 - .long 20103 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x4f59:0x9 DW_TAG_variable -.set Lset29827, Ldebug_loc85-Lsection_debug_loc ## DW_AT_location - .long Lset29827 - .long 20115 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x4f62:0x26 DW_TAG_lexical_block - .quad Ltmp474 ## DW_AT_low_pc -.set Lset29828, Ltmp487-Ltmp474 ## DW_AT_high_pc - .long Lset29828 - .byte 13 ## Abbrev [13] 0x4f6f:0x9 DW_TAG_variable -.set Lset29829, Ldebug_loc86-Lsection_debug_loc ## DW_AT_location - .long Lset29829 - .long 20128 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x4f78:0xf DW_TAG_lexical_block -.set Lset29830, Ldebug_ranges23-Ldebug_range ## DW_AT_ranges - .long Lset29830 - .byte 13 ## Abbrev [13] 0x4f7d:0x9 DW_TAG_variable -.set Lset29831, Ldebug_loc84-Lsection_debug_loc ## DW_AT_location - .long Lset29831 - .long 20141 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x4f89:0x5 DW_TAG_call_site - .long 20367 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 61 ## Abbrev [61] 0x4f8f:0xa5 DW_TAG_subprogram - .quad Lfunc_begin10 ## DW_AT_low_pc -.set Lset29832, Lfunc_end10-Lfunc_begin10 ## DW_AT_high_pc - .long Lset29832 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4241 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 586 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x4fa9:0x10 DW_TAG_formal_parameter -.set Lset29833, Ldebug_loc87-Lsection_debug_loc ## DW_AT_location - .long Lset29833 - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 586 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x4fb9:0x10 DW_TAG_formal_parameter -.set Lset29834, Ldebug_loc88-Lsection_debug_loc ## DW_AT_location - .long Lset29834 - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 586 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x4fc9:0x35 DW_TAG_lexical_block -.set Lset29835, Ldebug_ranges25-Ldebug_range ## DW_AT_ranges - .long Lset29835 - .byte 5 ## Abbrev [5] 0x4fce:0x10 DW_TAG_variable -.set Lset29836, Ldebug_loc89-Lsection_debug_loc ## DW_AT_location - .long Lset29836 - .long 5123 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 589 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x4fde:0x1f DW_TAG_inlined_subroutine - .long 20532 ## DW_AT_abstract_origin -.set Lset29837, Ldebug_ranges24-Ldebug_range ## DW_AT_ranges - .long Lset29837 - .byte 1 ## DW_AT_call_file - .short 593 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x4fea:0x9 DW_TAG_formal_parameter -.set Lset29838, Ldebug_loc90-Lsection_debug_loc ## DW_AT_location - .long Lset29838 - .long 20545 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x4ff3:0x9 DW_TAG_formal_parameter -.set Lset29839, Ldebug_loc93-Lsection_debug_loc ## DW_AT_location - .long Lset29839 - .long 20557 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x4ffe:0x35 DW_TAG_lexical_block -.set Lset29840, Ldebug_ranges27-Ldebug_range ## DW_AT_ranges - .long Lset29840 - .byte 5 ## Abbrev [5] 0x5003:0x10 DW_TAG_variable -.set Lset29841, Ldebug_loc91-Lsection_debug_loc ## DW_AT_location - .long Lset29841 - .long 5126 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 596 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x5013:0x1f DW_TAG_inlined_subroutine - .long 20570 ## DW_AT_abstract_origin -.set Lset29842, Ldebug_ranges26-Ldebug_range ## DW_AT_ranges - .long Lset29842 - .byte 1 ## DW_AT_call_file - .short 602 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x501f:0x9 DW_TAG_formal_parameter -.set Lset29843, Ldebug_loc94-Lsection_debug_loc ## DW_AT_location - .long Lset29843 - .long 20583 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5028:0x9 DW_TAG_formal_parameter -.set Lset29844, Ldebug_loc92-Lsection_debug_loc ## DW_AT_location - .long Lset29844 - .long 20595 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 59 ## Abbrev [59] 0x5034:0x26 DW_TAG_subprogram - .long 4219 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 549 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x5041:0xc DW_TAG_formal_parameter - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 549 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x504d:0xc DW_TAG_formal_parameter - .long 2408 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 549 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 59 ## Abbrev [59] 0x505a:0x26 DW_TAG_subprogram - .long 4230 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 568 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x5067:0xc DW_TAG_formal_parameter - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 568 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x5073:0xc DW_TAG_formal_parameter - .long 2408 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 568 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 2 ## Abbrev [2] 0x5080:0xc9 DW_TAG_subprogram - .quad Lfunc_begin11 ## DW_AT_low_pc -.set Lset29845, Lfunc_end11-Lfunc_begin11 ## DW_AT_high_pc - .long Lset29845 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4247 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 654 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x509a:0x10 DW_TAG_formal_parameter -.set Lset29846, Ldebug_loc95-Lsection_debug_loc ## DW_AT_location - .long Lset29846 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 654 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x50aa:0x10 DW_TAG_formal_parameter -.set Lset29847, Ldebug_loc96-Lsection_debug_loc ## DW_AT_location - .long Lset29847 - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 654 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x50ba:0x10 DW_TAG_formal_parameter -.set Lset29848, Ldebug_loc97-Lsection_debug_loc ## DW_AT_location - .long Lset29848 - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 654 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x50ca:0x10 DW_TAG_variable -.set Lset29849, Ldebug_loc103-Lsection_debug_loc ## DW_AT_location - .long Lset29849 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 655 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x50da:0x69 DW_TAG_inlined_subroutine - .long 20042 ## DW_AT_abstract_origin -.set Lset29850, Ldebug_ranges28-Ldebug_range ## DW_AT_ranges - .long Lset29850 - .byte 1 ## DW_AT_call_file - .short 659 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x50e6:0x9 DW_TAG_formal_parameter -.set Lset29851, Ldebug_loc98-Lsection_debug_loc ## DW_AT_location - .long Lset29851 - .long 20055 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x50ef:0x9 DW_TAG_formal_parameter -.set Lset29852, Ldebug_loc99-Lsection_debug_loc ## DW_AT_location - .long Lset29852 - .long 20067 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x50f8:0x9 DW_TAG_variable -.set Lset29853, Ldebug_loc100-Lsection_debug_loc ## DW_AT_location - .long Lset29853 - .long 20079 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5101:0x9 DW_TAG_variable -.set Lset29854, Ldebug_loc101-Lsection_debug_loc ## DW_AT_location - .long Lset29854 - .long 20091 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x510a:0x9 DW_TAG_variable -.set Lset29855, Ldebug_loc102-Lsection_debug_loc ## DW_AT_location - .long Lset29855 - .long 20103 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5113:0x9 DW_TAG_variable -.set Lset29856, Ldebug_loc105-Lsection_debug_loc ## DW_AT_location - .long Lset29856 - .long 20115 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x511c:0x26 DW_TAG_lexical_block - .quad Ltmp599 ## DW_AT_low_pc -.set Lset29857, Ltmp615-Ltmp599 ## DW_AT_high_pc - .long Lset29857 - .byte 13 ## Abbrev [13] 0x5129:0x9 DW_TAG_variable -.set Lset29858, Ldebug_loc106-Lsection_debug_loc ## DW_AT_location - .long Lset29858 - .long 20128 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x5132:0xf DW_TAG_lexical_block -.set Lset29859, Ldebug_ranges29-Ldebug_range ## DW_AT_ranges - .long Lset29859 - .byte 13 ## Abbrev [13] 0x5137:0x9 DW_TAG_variable -.set Lset29860, Ldebug_loc104-Lsection_debug_loc ## DW_AT_location - .long Lset29860 - .long 20141 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x5143:0x5 DW_TAG_call_site - .long 20809 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 61 ## Abbrev [61] 0x5149:0xa5 DW_TAG_subprogram - .quad Lfunc_begin12 ## DW_AT_low_pc -.set Lset29861, Lfunc_end12-Lfunc_begin12 ## DW_AT_high_pc - .long Lset29861 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4262 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5163:0x10 DW_TAG_formal_parameter -.set Lset29862, Ldebug_loc107-Lsection_debug_loc ## DW_AT_location - .long Lset29862 - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5173:0x10 DW_TAG_formal_parameter -.set Lset29863, Ldebug_loc108-Lsection_debug_loc ## DW_AT_location - .long Lset29863 - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 610 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5183:0x35 DW_TAG_lexical_block -.set Lset29864, Ldebug_ranges31-Ldebug_range ## DW_AT_ranges - .long Lset29864 - .byte 5 ## Abbrev [5] 0x5188:0x10 DW_TAG_variable -.set Lset29865, Ldebug_loc109-Lsection_debug_loc ## DW_AT_location - .long Lset29865 - .long 5123 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 613 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x5198:0x1f DW_TAG_inlined_subroutine - .long 20570 ## DW_AT_abstract_origin -.set Lset29866, Ldebug_ranges30-Ldebug_range ## DW_AT_ranges - .long Lset29866 - .byte 1 ## DW_AT_call_file - .short 617 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x51a4:0x9 DW_TAG_formal_parameter -.set Lset29867, Ldebug_loc110-Lsection_debug_loc ## DW_AT_location - .long Lset29867 - .long 20583 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x51ad:0x9 DW_TAG_formal_parameter -.set Lset29868, Ldebug_loc113-Lsection_debug_loc ## DW_AT_location - .long Lset29868 - .long 20595 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x51b8:0x35 DW_TAG_lexical_block -.set Lset29869, Ldebug_ranges33-Ldebug_range ## DW_AT_ranges - .long Lset29869 - .byte 5 ## Abbrev [5] 0x51bd:0x10 DW_TAG_variable -.set Lset29870, Ldebug_loc111-Lsection_debug_loc ## DW_AT_location - .long Lset29870 - .long 5126 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 620 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x51cd:0x1f DW_TAG_inlined_subroutine - .long 20532 ## DW_AT_abstract_origin -.set Lset29871, Ldebug_ranges32-Ldebug_range ## DW_AT_ranges - .long Lset29871 - .byte 1 ## DW_AT_call_file - .short 626 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x51d9:0x9 DW_TAG_formal_parameter -.set Lset29872, Ldebug_loc114-Lsection_debug_loc ## DW_AT_location - .long Lset29872 - .long 20545 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x51e2:0x9 DW_TAG_formal_parameter -.set Lset29873, Ldebug_loc112-Lsection_debug_loc ## DW_AT_location - .long Lset29873 - .long 20557 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 2 ## Abbrev [2] 0x51ee:0xf3 DW_TAG_subprogram - .quad Lfunc_begin13 ## DW_AT_low_pc -.set Lset29874, Lfunc_end13-Lfunc_begin13 ## DW_AT_high_pc - .long Lset29874 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4268 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 677 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5208:0x10 DW_TAG_formal_parameter -.set Lset29875, Ldebug_loc115-Lsection_debug_loc ## DW_AT_location - .long Lset29875 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 677 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5218:0x10 DW_TAG_formal_parameter -.set Lset29876, Ldebug_loc116-Lsection_debug_loc ## DW_AT_location - .long Lset29876 - .long 5129 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 677 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5228:0x10 DW_TAG_formal_parameter -.set Lset29877, Ldebug_loc117-Lsection_debug_loc ## DW_AT_location - .long Lset29877 - .long 5132 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 677 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5238:0x10 DW_TAG_variable -.set Lset29878, Ldebug_loc124-Lsection_debug_loc ## DW_AT_location - .long Lset29878 - .long 5098 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 678 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5248:0x98 DW_TAG_lexical_block - .quad Ltmp702 ## DW_AT_low_pc -.set Lset29879, Ltmp724-Ltmp702 ## DW_AT_high_pc - .long Lset29879 - .byte 5 ## Abbrev [5] 0x5255:0x10 DW_TAG_variable -.set Lset29880, Ldebug_loc118-Lsection_debug_loc ## DW_AT_location - .long Lset29880 - .long 5135 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 683 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5265:0x10 DW_TAG_variable -.set Lset29881, Ldebug_loc119-Lsection_debug_loc ## DW_AT_location - .long Lset29881 - .long 5138 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 683 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x5275:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp709 ## DW_AT_low_pc -.set Lset29882, Ltmp716-Ltmp709 ## DW_AT_high_pc - .long Lset29882 - .byte 1 ## DW_AT_call_file - .short 684 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x5289:0x20 DW_TAG_lexical_block - .quad Ltmp709 ## DW_AT_low_pc -.set Lset29883, Ltmp716-Ltmp709 ## DW_AT_high_pc - .long Lset29883 - .byte 13 ## Abbrev [13] 0x5296:0x9 DW_TAG_variable -.set Lset29884, Ldebug_loc120-Lsection_debug_loc ## DW_AT_location - .long Lset29884 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x529f:0x9 DW_TAG_variable -.set Lset29885, Ldebug_loc121-Lsection_debug_loc ## DW_AT_location - .long Lset29885 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x52aa:0x35 DW_TAG_inlined_subroutine - .long 18358 ## DW_AT_abstract_origin - .quad Ltmp717 ## DW_AT_low_pc -.set Lset29886, Ltmp724-Ltmp717 ## DW_AT_high_pc - .long Lset29886 - .byte 1 ## DW_AT_call_file - .short 684 ## DW_AT_call_line - .byte 8 ## Abbrev [8] 0x52be:0x20 DW_TAG_lexical_block - .quad Ltmp717 ## DW_AT_low_pc -.set Lset29887, Ltmp724-Ltmp717 ## DW_AT_high_pc - .long Lset29887 - .byte 13 ## Abbrev [13] 0x52cb:0x9 DW_TAG_variable -.set Lset29888, Ldebug_loc122-Lsection_debug_loc ## DW_AT_location - .long Lset29888 - .long 18404 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x52d4:0x9 DW_TAG_variable -.set Lset29889, Ldebug_loc123-Lsection_debug_loc ## DW_AT_location - .long Lset29889 - .long 18415 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 62 ## Abbrev [62] 0x52e1:0x48 DW_TAG_subprogram - .long 4282 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 736 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x52ea:0xc DW_TAG_formal_parameter - .long 2441 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 736 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x52f6:0xc DW_TAG_formal_parameter - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 736 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x5302:0xc DW_TAG_formal_parameter - .long 4292 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 736 ## DW_AT_decl_line - .long 14149 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x530e:0xc DW_TAG_variable - .long 4297 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 737 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x531a:0xe DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x531b:0xc DW_TAG_variable - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 739 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5329:0x17e DW_TAG_subprogram - .quad Lfunc_begin14 ## DW_AT_low_pc -.set Lset29890, Lfunc_end14-Lfunc_begin14 ## DW_AT_high_pc - .long Lset29890 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4300 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 750 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x533f:0x10 DW_TAG_formal_parameter -.set Lset29891, Ldebug_loc125-Lsection_debug_loc ## DW_AT_location - .long Lset29891 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 750 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x534f:0x10 DW_TAG_formal_parameter -.set Lset29892, Ldebug_loc126-Lsection_debug_loc ## DW_AT_location - .long Lset29892 - .long 5141 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 750 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x535f:0x147 DW_TAG_lexical_block -.set Lset29893, Ldebug_ranges41-Ldebug_range ## DW_AT_ranges - .long Lset29893 - .byte 5 ## Abbrev [5] 0x5364:0x10 DW_TAG_variable -.set Lset29894, Ldebug_loc129-Lsection_debug_loc ## DW_AT_location - .long Lset29894 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 754 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5374:0x10 DW_TAG_variable -.set Lset29895, Ldebug_loc130-Lsection_debug_loc ## DW_AT_location - .long Lset29895 - .long 2441 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 753 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5384:0xf3 DW_TAG_lexical_block -.set Lset29896, Ldebug_ranges40-Ldebug_range ## DW_AT_ranges - .long Lset29896 - .byte 5 ## Abbrev [5] 0x5389:0x10 DW_TAG_variable -.set Lset29897, Ldebug_loc133-Lsection_debug_loc ## DW_AT_location - .long Lset29897 - .long 4297 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 764 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5399:0x10 DW_TAG_variable -.set Lset29898, Ldebug_loc138-Lsection_debug_loc ## DW_AT_location - .long Lset29898 - .long 2179 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 765 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x53a9:0x16 DW_TAG_lexical_block -.set Lset29899, Ldebug_ranges34-Ldebug_range ## DW_AT_ranges - .long Lset29899 - .byte 5 ## Abbrev [5] 0x53ae:0x10 DW_TAG_variable -.set Lset29900, Ldebug_loc134-Lsection_debug_loc ## DW_AT_location - .long Lset29900 - .long 3000 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 768 ## DW_AT_decl_line - .long 14478 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x53bf:0x4d DW_TAG_lexical_block -.set Lset29901, Ldebug_ranges37-Ldebug_range ## DW_AT_ranges - .long Lset29901 - .byte 14 ## Abbrev [14] 0x53c4:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\240\177" - .long 4292 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 774 ## DW_AT_decl_line - .long 29792 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x53d4:0x37 DW_TAG_inlined_subroutine - .long 21217 ## DW_AT_abstract_origin -.set Lset29902, Ldebug_ranges35-Ldebug_range ## DW_AT_ranges - .long Lset29902 - .byte 1 ## DW_AT_call_file - .short 775 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x53e0:0x9 DW_TAG_formal_parameter -.set Lset29903, Ldebug_loc128-Lsection_debug_loc ## DW_AT_location - .long Lset29903 - .long 21226 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x53e9:0x9 DW_TAG_formal_parameter -.set Lset29904, Ldebug_loc135-Lsection_debug_loc ## DW_AT_location - .long Lset29904 - .long 21238 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x53f2:0x9 DW_TAG_variable -.set Lset29905, Ldebug_loc136-Lsection_debug_loc ## DW_AT_location - .long Lset29905 - .long 21262 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x53fb:0xf DW_TAG_lexical_block -.set Lset29906, Ldebug_ranges36-Ldebug_range ## DW_AT_ranges - .long Lset29906 - .byte 13 ## Abbrev [13] 0x5400:0x9 DW_TAG_variable -.set Lset29907, Ldebug_loc137-Lsection_debug_loc ## DW_AT_location - .long Lset29907 - .long 21275 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 9 ## Abbrev [9] 0x540c:0x48 DW_TAG_inlined_subroutine - .long 21217 ## DW_AT_abstract_origin - .quad Ltmp906 ## DW_AT_low_pc -.set Lset29908, Ltmp918-Ltmp906 ## DW_AT_high_pc - .long Lset29908 - .byte 1 ## DW_AT_call_file - .short 780 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5420:0x9 DW_TAG_formal_parameter -.set Lset29909, Ldebug_loc127-Lsection_debug_loc ## DW_AT_location - .long Lset29909 - .long 21226 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5429:0x9 DW_TAG_formal_parameter -.set Lset29910, Ldebug_loc141-Lsection_debug_loc ## DW_AT_location - .long Lset29910 - .long 21238 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5432:0x9 DW_TAG_formal_parameter -.set Lset29911, Ldebug_loc139-Lsection_debug_loc ## DW_AT_location - .long Lset29911 - .long 21250 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x543b:0x9 DW_TAG_variable -.set Lset29912, Ldebug_loc140-Lsection_debug_loc ## DW_AT_location - .long Lset29912 - .long 21262 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x5444:0xf DW_TAG_lexical_block -.set Lset29913, Ldebug_ranges38-Ldebug_range ## DW_AT_ranges - .long Lset29913 - .byte 13 ## Abbrev [13] 0x5449:0x9 DW_TAG_variable -.set Lset29914, Ldebug_loc142-Lsection_debug_loc ## DW_AT_location - .long Lset29914 - .long 21275 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5454:0x22 DW_TAG_lexical_block -.set Lset29915, Ldebug_ranges39-Ldebug_range ## DW_AT_ranges - .long Lset29915 - .byte 5 ## Abbrev [5] 0x5459:0x10 DW_TAG_variable -.set Lset29916, Ldebug_loc143-Lsection_debug_loc ## DW_AT_location - .long Lset29916 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 782 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5469:0xc DW_TAG_variable - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 782 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x5477:0x2e DW_TAG_lexical_block - .quad Ltmp926 ## DW_AT_low_pc -.set Lset29917, Ltmp927-Ltmp926 ## DW_AT_high_pc - .long Lset29917 - .byte 5 ## Abbrev [5] 0x5484:0x10 DW_TAG_variable -.set Lset29918, Ldebug_loc131-Lsection_debug_loc ## DW_AT_location - .long Lset29918 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 760 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5494:0x10 DW_TAG_variable -.set Lset29919, Ldebug_loc132-Lsection_debug_loc ## DW_AT_location - .long Lset29919 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 760 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x54a7:0xeb DW_TAG_subprogram - .quad Lfunc_begin15 ## DW_AT_low_pc -.set Lset29920, Lfunc_end15-Lfunc_begin15 ## DW_AT_high_pc - .long Lset29920 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4312 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 793 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x54bd:0x10 DW_TAG_formal_parameter -.set Lset29921, Ldebug_loc144-Lsection_debug_loc ## DW_AT_location - .long Lset29921 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 793 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x54cd:0x10 DW_TAG_formal_parameter -.set Lset29922, Ldebug_loc145-Lsection_debug_loc ## DW_AT_location - .long Lset29922 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 793 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x54dd:0x10 DW_TAG_formal_parameter -.set Lset29923, Ldebug_loc146-Lsection_debug_loc ## DW_AT_location - .long Lset29923 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 793 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x54ed:0x10 DW_TAG_variable -.set Lset29924, Ldebug_loc152-Lsection_debug_loc ## DW_AT_location - .long Lset29924 - .long 5098 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 794 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x54fd:0x34 DW_TAG_lexical_block -.set Lset29925, Ldebug_ranges42-Ldebug_range ## DW_AT_ranges - .long Lset29925 - .byte 5 ## Abbrev [5] 0x5502:0x10 DW_TAG_variable -.set Lset29926, Ldebug_loc151-Lsection_debug_loc ## DW_AT_location - .long Lset29926 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 798 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5512:0x1e DW_TAG_lexical_block - .quad Ltmp951 ## DW_AT_low_pc -.set Lset29927, Ltmp953-Ltmp951 ## DW_AT_high_pc - .long Lset29927 - .byte 5 ## Abbrev [5] 0x551f:0x10 DW_TAG_variable -.set Lset29928, Ldebug_loc150-Lsection_debug_loc ## DW_AT_location - .long Lset29928 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 799 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5531:0x16 DW_TAG_lexical_block -.set Lset29929, Ldebug_ranges43-Ldebug_range ## DW_AT_ranges - .long Lset29929 - .byte 5 ## Abbrev [5] 0x5536:0x10 DW_TAG_variable -.set Lset29930, Ldebug_loc147-Lsection_debug_loc ## DW_AT_location - .long Lset29930 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 814 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5547:0x16 DW_TAG_lexical_block -.set Lset29931, Ldebug_ranges44-Ldebug_range ## DW_AT_ranges - .long Lset29931 - .byte 5 ## Abbrev [5] 0x554c:0x10 DW_TAG_variable -.set Lset29932, Ldebug_loc148-Lsection_debug_loc ## DW_AT_location - .long Lset29932 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 810 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x555d:0x34 DW_TAG_lexical_block -.set Lset29933, Ldebug_ranges45-Ldebug_range ## DW_AT_ranges - .long Lset29933 - .byte 5 ## Abbrev [5] 0x5562:0x10 DW_TAG_variable -.set Lset29934, Ldebug_loc153-Lsection_debug_loc ## DW_AT_location - .long Lset29934 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 803 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5572:0x1e DW_TAG_lexical_block - .quad Ltmp974 ## DW_AT_low_pc -.set Lset29935, Ltmp975-Ltmp974 ## DW_AT_high_pc - .long Lset29935 - .byte 5 ## Abbrev [5] 0x557f:0x10 DW_TAG_variable -.set Lset29936, Ldebug_loc149-Lsection_debug_loc ## DW_AT_location - .long Lset29936 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 806 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x5592:0x46 DW_TAG_subprogram - .quad Lfunc_begin16 ## DW_AT_low_pc -.set Lset29937, Lfunc_end16-Lfunc_begin16 ## DW_AT_high_pc - .long Lset29937 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 22744 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55a5:0x9 DW_TAG_formal_parameter -.set Lset29938, Ldebug_loc154-Lsection_debug_loc ## DW_AT_location - .long Lset29938 - .long 22757 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55ae:0x9 DW_TAG_formal_parameter -.set Lset29939, Ldebug_loc155-Lsection_debug_loc ## DW_AT_location - .long Lset29939 - .long 22769 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55b7:0x9 DW_TAG_formal_parameter -.set Lset29940, Ldebug_loc156-Lsection_debug_loc ## DW_AT_location - .long Lset29940 - .long 22781 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x55c0:0x17 DW_TAG_lexical_block - .quad Ltmp995 ## DW_AT_low_pc -.set Lset29941, Ltmp1002-Ltmp995 ## DW_AT_high_pc - .long Lset29941 - .byte 13 ## Abbrev [13] 0x55cd:0x9 DW_TAG_variable -.set Lset29942, Ldebug_loc157-Lsection_debug_loc ## DW_AT_location - .long Lset29942 - .long 22794 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x55d8:0x46 DW_TAG_subprogram - .quad Lfunc_begin17 ## DW_AT_low_pc -.set Lset29943, Lfunc_end17-Lfunc_begin17 ## DW_AT_high_pc - .long Lset29943 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 22680 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55eb:0x9 DW_TAG_formal_parameter -.set Lset29944, Ldebug_loc158-Lsection_debug_loc ## DW_AT_location - .long Lset29944 - .long 22693 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55f4:0x9 DW_TAG_formal_parameter -.set Lset29945, Ldebug_loc159-Lsection_debug_loc ## DW_AT_location - .long Lset29945 - .long 22705 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x55fd:0x9 DW_TAG_formal_parameter -.set Lset29946, Ldebug_loc160-Lsection_debug_loc ## DW_AT_location - .long Lset29946 - .long 22717 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x5606:0x17 DW_TAG_lexical_block - .quad Ltmp1012 ## DW_AT_low_pc -.set Lset29947, Ltmp1016-Ltmp1012 ## DW_AT_high_pc - .long Lset29947 - .byte 13 ## Abbrev [13] 0x5613:0x9 DW_TAG_variable -.set Lset29948, Ldebug_loc161-Lsection_debug_loc ## DW_AT_location - .long Lset29948 - .long 22730 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 50 ## Abbrev [50] 0x561e:0x24 DW_TAG_subprogram - .quad Lfunc_begin18 ## DW_AT_low_pc -.set Lset29949, Lfunc_end18-Lfunc_begin18 ## DW_AT_high_pc - .long Lset29949 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 22642 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5631:0x9 DW_TAG_formal_parameter -.set Lset29950, Ldebug_loc162-Lsection_debug_loc ## DW_AT_location - .long Lset29950 - .long 22655 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x563a:0x7 DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 22667 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5642:0x12e DW_TAG_subprogram - .quad Lfunc_begin19 ## DW_AT_low_pc -.set Lset29951, Lfunc_end19-Lfunc_begin19 ## DW_AT_high_pc - .long Lset29951 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4354 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 938 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5658:0x10 DW_TAG_formal_parameter -.set Lset29952, Ldebug_loc163-Lsection_debug_loc ## DW_AT_location - .long Lset29952 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 938 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5668:0x10 DW_TAG_variable -.set Lset29953, Ldebug_loc164-Lsection_debug_loc ## DW_AT_location - .long Lset29953 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 939 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5678:0x10 DW_TAG_variable -.set Lset29954, Ldebug_loc165-Lsection_debug_loc ## DW_AT_location - .long Lset29954 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 940 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5688:0x10 DW_TAG_variable -.set Lset29955, Ldebug_loc171-Lsection_debug_loc ## DW_AT_location - .long Lset29955 - .long 5156 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 941 ## DW_AT_decl_line - .long 16485 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5698:0x10 DW_TAG_variable -.set Lset29956, Ldebug_loc172-Lsection_debug_loc ## DW_AT_location - .long Lset29956 - .long 5161 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 942 ## DW_AT_decl_line - .long 18154 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x56a8:0x2a DW_TAG_lexical_block - .quad Ltmp1036 ## DW_AT_low_pc -.set Lset29957, Ltmp1043-Ltmp1036 ## DW_AT_high_pc - .long Lset29957 - .byte 5 ## Abbrev [5] 0x56b5:0x10 DW_TAG_variable -.set Lset29958, Ldebug_loc166-Lsection_debug_loc ## DW_AT_location - .long Lset29958 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 952 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x56c5:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 952 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x56d2:0x16 DW_TAG_lexical_block -.set Lset29959, Ldebug_ranges46-Ldebug_range ## DW_AT_ranges - .long Lset29959 - .byte 5 ## Abbrev [5] 0x56d7:0x10 DW_TAG_variable -.set Lset29960, Ldebug_loc170-Lsection_debug_loc ## DW_AT_location - .long Lset29960 - .long 5119 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 956 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x56e8:0x7a DW_TAG_lexical_block -.set Lset29961, Ldebug_ranges48-Ldebug_range ## DW_AT_ranges - .long Lset29961 - .byte 7 ## Abbrev [7] 0x56ed:0xc DW_TAG_variable - .long 2441 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 969 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x56f9:0x10 DW_TAG_variable -.set Lset29962, Ldebug_loc168-Lsection_debug_loc ## DW_AT_location - .long Lset29962 - .long 5141 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 971 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5709:0xc DW_TAG_variable - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 970 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5715:0x22 DW_TAG_lexical_block -.set Lset29963, Ldebug_ranges47-Ldebug_range ## DW_AT_ranges - .long Lset29963 - .byte 7 ## Abbrev [7] 0x571a:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 972 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5726:0x10 DW_TAG_variable -.set Lset29964, Ldebug_loc167-Lsection_debug_loc ## DW_AT_location - .long Lset29964 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 972 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x5737:0x2a DW_TAG_lexical_block - .quad Ltmp1058 ## DW_AT_low_pc -.set Lset29965, Ltmp1064-Ltmp1058 ## DW_AT_high_pc - .long Lset29965 - .byte 5 ## Abbrev [5] 0x5744:0x10 DW_TAG_variable -.set Lset29966, Ldebug_loc169-Lsection_debug_loc ## DW_AT_location - .long Lset29966 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 978 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5754:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 978 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x5762:0xd DW_TAG_call_site - .long 21289 ## DW_AT_call_origin - .quad Ltmp1058-Lfunc_begin19 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 63 ## Abbrev [63] 0x5770:0x48 DW_TAG_subprogram - .long 4368 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 18204 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 52 ## Abbrev [52] 0x577c:0xb DW_TAG_formal_parameter - .long 4385 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5787:0xb DW_TAG_formal_parameter - .long 4387 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 84 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 54 ## Abbrev [54] 0x5792:0xb DW_TAG_variable - .long 3508 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 85 ## DW_AT_decl_line - .long 16989 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x579d:0x1a DW_TAG_lexical_block - .byte 54 ## Abbrev [54] 0x579e:0xb DW_TAG_variable - .long 3029 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 88 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x57a9:0xd DW_TAG_lexical_block - .byte 54 ## Abbrev [54] 0x57aa:0xb DW_TAG_variable - .long 4391 ## DW_AT_name - .byte 14 ## DW_AT_decl_file - .byte 92 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x57b8:0x5 DW_TAG_pointer_type - .long 22461 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x57bd:0xc DW_TAG_typedef - .long 14647 ## DW_AT_type - .long 2331 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 625 ## DW_AT_decl_line - .byte 2 ## Abbrev [2] 0x57c9:0xa9 DW_TAG_subprogram - .quad Lfunc_begin20 ## DW_AT_low_pc -.set Lset29967, Lfunc_end20-Lfunc_begin20 ## DW_AT_high_pc - .long Lset29967 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4394 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1132 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x57e3:0x10 DW_TAG_formal_parameter -.set Lset29968, Ldebug_loc173-Lsection_debug_loc ## DW_AT_location - .long Lset29968 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1132 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x57f3:0x10 DW_TAG_formal_parameter -.set Lset29969, Ldebug_loc174-Lsection_debug_loc ## DW_AT_location - .long Lset29969 - .long 3289 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1132 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5803:0x10 DW_TAG_formal_parameter -.set Lset29970, Ldebug_loc175-Lsection_debug_loc ## DW_AT_location - .long Lset29970 - .long 5164 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1132 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5813:0x10 DW_TAG_variable -.set Lset29971, Ldebug_loc177-Lsection_debug_loc ## DW_AT_location - .long Lset29971 - .long 2792 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1134 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5823:0x10 DW_TAG_variable -.set Lset29972, Ldebug_loc178-Lsection_debug_loc ## DW_AT_location - .long Lset29972 - .long 5166 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1148 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5833:0x10 DW_TAG_variable -.set Lset29973, Ldebug_loc181-Lsection_debug_loc ## DW_AT_location - .long Lset29973 - .long 5170 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 1149 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x5843:0x2e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin -.set Lset29974, Ldebug_ranges49-Ldebug_range ## DW_AT_ranges - .long Lset29974 - .byte 1 ## DW_AT_call_file - .short 1149 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x584f:0x9 DW_TAG_formal_parameter -.set Lset29975, Ldebug_loc176-Lsection_debug_loc ## DW_AT_location - .long Lset29975 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5858:0x9 DW_TAG_variable -.set Lset29976, Ldebug_loc179-Lsection_debug_loc ## DW_AT_location - .long Lset29976 - .long 22418 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x5861:0xf DW_TAG_lexical_block -.set Lset29977, Ldebug_ranges50-Ldebug_range ## DW_AT_ranges - .long Lset29977 - .byte 13 ## Abbrev [13] 0x5866:0x9 DW_TAG_variable -.set Lset29978, Ldebug_loc180-Lsection_debug_loc ## DW_AT_location - .long Lset29978 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 64 ## Abbrev [64] 0x5872:0x26 DW_TAG_subprogram - .long 4342 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 875 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 16971 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x587f:0xc DW_TAG_formal_parameter - .long 4415 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 875 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x588b:0xc DW_TAG_formal_parameter - .long 4417 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 875 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 64 ## Abbrev [64] 0x5898:0x40 DW_TAG_subprogram - .long 4333 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 854 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 16971 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x58a5:0xc DW_TAG_formal_parameter - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 854 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x58b1:0xc DW_TAG_formal_parameter - .long 4421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 854 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x58bd:0xc DW_TAG_formal_parameter - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 854 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x58c9:0xe DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x58ca:0xc DW_TAG_variable - .long 4195 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 861 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 64 ## Abbrev [64] 0x58d8:0x40 DW_TAG_subprogram - .long 4324 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 834 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 16971 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x58e5:0xc DW_TAG_formal_parameter - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 834 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x58f1:0xc DW_TAG_formal_parameter - .long 4421 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 834 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x58fd:0xc DW_TAG_formal_parameter - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 834 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x5909:0xe DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x590a:0xc DW_TAG_variable - .long 4423 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 841 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 51 ## Abbrev [51] 0x5918:0x46 DW_TAG_subprogram - .long 4105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 14967 ## DW_AT_type - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 52 ## Abbrev [52] 0x5924:0xb DW_TAG_formal_parameter - .long 4065 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x592f:0xb DW_TAG_formal_parameter - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x593a:0xb DW_TAG_formal_parameter - .long 4425 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 155 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 52 ## Abbrev [52] 0x5945:0xb DW_TAG_formal_parameter - .long 4430 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 156 ## DW_AT_decl_line - .long 17833 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x5950:0xd DW_TAG_lexical_block - .byte 54 ## Abbrev [54] 0x5951:0xb DW_TAG_variable - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .byte 162 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 59 ## Abbrev [59] 0x595e:0x72 DW_TAG_subprogram - .long 4438 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 892 ## DW_AT_decl_line - ## DW_AT_prototyped - .long 22992 ## DW_AT_type - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x596b:0xc DW_TAG_formal_parameter - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 892 ## DW_AT_decl_line - .long 22997 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x5977:0xc DW_TAG_formal_parameter - .long 4448 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 892 ## DW_AT_decl_line - .long 23014 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x5983:0xc DW_TAG_formal_parameter - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 892 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x598f:0xc DW_TAG_variable - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 893 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x599b:0x34 DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x599c:0xc DW_TAG_variable - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 897 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x59a8:0xc DW_TAG_variable - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 896 ## DW_AT_decl_line - .long 17930 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x59b4:0xc DW_TAG_variable - .long 4457 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 895 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 53 ## Abbrev [53] 0x59c0:0xe DW_TAG_lexical_block - .byte 7 ## Abbrev [7] 0x59c1:0xc DW_TAG_variable - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 899 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 26 ## Abbrev [26] 0x59d0:0x5 DW_TAG_pointer_type - .long 17383 ## DW_AT_type - .byte 26 ## Abbrev [26] 0x59d5:0x5 DW_TAG_pointer_type - .long 23002 ## DW_AT_type - .byte 35 ## Abbrev [35] 0x59da:0xc DW_TAG_typedef - .long 17501 ## DW_AT_type - .long 3672 ## DW_AT_name - .byte 4 ## DW_AT_decl_file - .short 527 ## DW_AT_decl_line - .byte 26 ## Abbrev [26] 0x59e6:0x5 DW_TAG_pointer_type - .long 16573 ## DW_AT_type - .byte 65 ## Abbrev [65] 0x59eb:0xcd DW_TAG_subprogram - .quad Lfunc_begin22 ## DW_AT_low_pc -.set Lset29979, Lfunc_end22-Lfunc_begin22 ## DW_AT_high_pc - .long Lset29979 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4474 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 914 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5a01:0x10 DW_TAG_formal_parameter -.set Lset29980, Ldebug_loc750-Lsection_debug_loc ## DW_AT_location - .long Lset29980 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 914 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a11:0x10 DW_TAG_formal_parameter -.set Lset29981, Ldebug_loc751-Lsection_debug_loc ## DW_AT_location - .long Lset29981 - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 914 ## DW_AT_decl_line - .long 22997 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a21:0x10 DW_TAG_formal_parameter -.set Lset29982, Ldebug_loc752-Lsection_debug_loc ## DW_AT_location - .long Lset29982 - .long 4448 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 914 ## DW_AT_decl_line - .long 23014 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a31:0x10 DW_TAG_formal_parameter -.set Lset29983, Ldebug_loc753-Lsection_debug_loc ## DW_AT_location - .long Lset29983 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 914 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5a41:0x10 DW_TAG_formal_parameter -.set Lset29984, Ldebug_loc754-Lsection_debug_loc ## DW_AT_location - .long Lset29984 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 915 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5a51:0x10 DW_TAG_variable -.set Lset29985, Ldebug_loc756-Lsection_debug_loc ## DW_AT_location - .long Lset29985 - .long 4457 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 916 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5a61:0x10 DW_TAG_variable -.set Lset29986, Ldebug_loc757-Lsection_debug_loc ## DW_AT_location - .long Lset29986 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 917 ## DW_AT_decl_line - .long 17930 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5a71:0x10 DW_TAG_variable -.set Lset29987, Ldebug_loc758-Lsection_debug_loc ## DW_AT_location - .long Lset29987 - .long 5318 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 919 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5a81:0x10 DW_TAG_variable -.set Lset29988, Ldebug_loc760-Lsection_debug_loc ## DW_AT_location - .long Lset29988 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 918 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5a91:0x26 DW_TAG_lexical_block -.set Lset29989, Ldebug_ranges312-Ldebug_range ## DW_AT_ranges - .long Lset29989 - .byte 5 ## Abbrev [5] 0x5a96:0x10 DW_TAG_variable -.set Lset29990, Ldebug_loc755-Lsection_debug_loc ## DW_AT_location - .long Lset29990 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 921 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5aa6:0x10 DW_TAG_variable -.set Lset29991, Ldebug_loc759-Lsection_debug_loc ## DW_AT_location - .long Lset29991 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 921 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5ab8:0x37 DW_TAG_subprogram - .quad Lfunc_begin23 ## DW_AT_low_pc -.set Lset29992, Lfunc_end23-Lfunc_begin23 ## DW_AT_high_pc - .long Lset29992 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4486 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2469 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5ace:0x10 DW_TAG_formal_parameter -.set Lset29993, Ldebug_loc761-Lsection_debug_loc ## DW_AT_location - .long Lset29993 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2469 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5ade:0x10 DW_TAG_formal_parameter -.set Lset29994, Ldebug_loc762-Lsection_debug_loc ## DW_AT_location - .long Lset29994 - .long 4533 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2469 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 62 ## Abbrev [62] 0x5aef:0x76 DW_TAG_subprogram - .long 4502 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2504 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_APPLE_optimized - .byte 1 ## DW_AT_inline - .byte 60 ## Abbrev [60] 0x5af8:0xc DW_TAG_formal_parameter - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2504 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 60 ## Abbrev [60] 0x5b04:0xc DW_TAG_formal_parameter - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2504 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b10:0xc DW_TAG_variable - .long 2986 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2505 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b1c:0xc DW_TAG_variable - .long 4515 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2506 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b28:0xc DW_TAG_variable - .long 4525 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2509 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b34:0xc DW_TAG_variable - .long 4533 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2510 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b40:0xc DW_TAG_variable - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2508 ## DW_AT_decl_line - .long 22997 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b4c:0xc DW_TAG_variable - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2507 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5b58:0xc DW_TAG_variable - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2511 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5b65:0xa5 DW_TAG_subprogram - .quad Lfunc_begin24 ## DW_AT_low_pc -.set Lset29995, Lfunc_end24-Lfunc_begin24 ## DW_AT_high_pc - .long Lset29995 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4543 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2573 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5b7b:0x10 DW_TAG_formal_parameter -.set Lset29996, Ldebug_loc763-Lsection_debug_loc ## DW_AT_location - .long Lset29996 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2573 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5b8b:0x10 DW_TAG_formal_parameter -.set Lset29997, Ldebug_loc764-Lsection_debug_loc ## DW_AT_location - .long Lset29997 - .long 5363 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2573 ## DW_AT_decl_line - .long 16176 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5b9b:0x10 DW_TAG_variable -.set Lset29998, Ldebug_loc766-Lsection_debug_loc ## DW_AT_location - .long Lset29998 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2576 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x5bab:0x5e DW_TAG_inlined_subroutine - .long 23279 ## DW_AT_abstract_origin -.set Lset29999, Ldebug_ranges313-Ldebug_range ## DW_AT_ranges - .long Lset29999 - .byte 1 ## DW_AT_call_file - .short 2582 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x5bb7:0x9 DW_TAG_formal_parameter -.set Lset30000, Ldebug_loc765-Lsection_debug_loc ## DW_AT_location - .long Lset30000 - .long 23288 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x5bc0:0x9 DW_TAG_formal_parameter -.set Lset30001, Ldebug_loc767-Lsection_debug_loc ## DW_AT_location - .long Lset30001 - .long 23300 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bc9:0x9 DW_TAG_variable -.set Lset30002, Ldebug_loc768-Lsection_debug_loc ## DW_AT_location - .long Lset30002 - .long 23312 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bd2:0x9 DW_TAG_variable -.set Lset30003, Ldebug_loc769-Lsection_debug_loc ## DW_AT_location - .long Lset30003 - .long 23324 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bdb:0x9 DW_TAG_variable -.set Lset30004, Ldebug_loc770-Lsection_debug_loc ## DW_AT_location - .long Lset30004 - .long 23336 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5be4:0x9 DW_TAG_variable -.set Lset30005, Ldebug_loc771-Lsection_debug_loc ## DW_AT_location - .long Lset30005 - .long 23348 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bed:0x9 DW_TAG_variable -.set Lset30006, Ldebug_loc772-Lsection_debug_loc ## DW_AT_location - .long Lset30006 - .long 23360 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bf6:0x9 DW_TAG_variable -.set Lset30007, Ldebug_loc773-Lsection_debug_loc ## DW_AT_location - .long Lset30007 - .long 23372 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x5bff:0x9 DW_TAG_variable -.set Lset30008, Ldebug_loc774-Lsection_debug_loc ## DW_AT_location - .long Lset30008 - .long 23384 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5c0a:0x75 DW_TAG_subprogram - .quad Lfunc_begin25 ## DW_AT_low_pc -.set Lset30009, Lfunc_end25-Lfunc_begin25 ## DW_AT_high_pc - .long Lset30009 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4559 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2588 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5c20:0x10 DW_TAG_formal_parameter -.set Lset30010, Ldebug_loc775-Lsection_debug_loc ## DW_AT_location - .long Lset30010 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2588 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 66 ## Abbrev [66] 0x5c30:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 84 - .long 5363 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2588 ## DW_AT_decl_line - .long 16176 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5c3e:0x10 DW_TAG_variable -.set Lset30011, Ldebug_loc776-Lsection_debug_loc ## DW_AT_location - .long Lset30011 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2589 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5c4e:0x10 DW_TAG_variable -.set Lset30012, Ldebug_loc777-Lsection_debug_loc ## DW_AT_location - .long Lset30012 - .long 4525 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2590 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5c5e:0x10 DW_TAG_variable -.set Lset30013, Ldebug_loc778-Lsection_debug_loc ## DW_AT_location - .long Lset30013 - .long 2441 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2591 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5c6e:0x10 DW_TAG_variable -.set Lset30014, Ldebug_loc779-Lsection_debug_loc ## DW_AT_location - .long Lset30014 - .long 5365 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2592 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5c7f:0xbd DW_TAG_subprogram - .quad Lfunc_begin26 ## DW_AT_low_pc -.set Lset30015, Lfunc_end26-Lfunc_begin26 ## DW_AT_high_pc - .long Lset30015 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2602 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5c95:0x10 DW_TAG_formal_parameter -.set Lset30016, Ldebug_loc780-Lsection_debug_loc ## DW_AT_location - .long Lset30016 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2602 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5ca5:0x10 DW_TAG_formal_parameter -.set Lset30017, Ldebug_loc781-Lsection_debug_loc ## DW_AT_location - .long Lset30017 - .long 5376 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2602 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5cb5:0x10 DW_TAG_formal_parameter -.set Lset30018, Ldebug_loc782-Lsection_debug_loc ## DW_AT_location - .long Lset30018 - .long 5178 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2602 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5cc5:0x10 DW_TAG_variable -.set Lset30019, Ldebug_loc788-Lsection_debug_loc ## DW_AT_location - .long Lset30019 - .long 5383 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2632 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5cd5:0x66 DW_TAG_lexical_block -.set Lset30020, Ldebug_ranges314-Ldebug_range ## DW_AT_ranges - .long Lset30020 - .byte 14 ## Abbrev [14] 0x5cda:0x10 DW_TAG_variable - .byte 3 ## DW_AT_location - .byte 145 - .ascii "\340~" - .long 5372 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 29804 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5cea:0x10 DW_TAG_variable -.set Lset30021, Ldebug_loc783-Lsection_debug_loc ## DW_AT_location - .long Lset30021 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5cfa:0x10 DW_TAG_variable -.set Lset30022, Ldebug_loc784-Lsection_debug_loc ## DW_AT_location - .long Lset30022 - .long 4525 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5d0a:0x10 DW_TAG_variable -.set Lset30023, Ldebug_loc785-Lsection_debug_loc ## DW_AT_location - .long Lset30023 - .long 2441 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5d1a:0x10 DW_TAG_variable -.set Lset30024, Ldebug_loc786-Lsection_debug_loc ## DW_AT_location - .long Lset30024 - .long 5365 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5d2a:0x10 DW_TAG_variable -.set Lset30025, Ldebug_loc787-Lsection_debug_loc ## DW_AT_location - .long Lset30025 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2603 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5d3c:0x7d DW_TAG_subprogram - .quad Lfunc_begin27 ## DW_AT_low_pc -.set Lset30026, Lfunc_end27-Lfunc_begin27 ## DW_AT_high_pc - .long Lset30026 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4595 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2637 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5d52:0x10 DW_TAG_formal_parameter -.set Lset30027, Ldebug_loc789-Lsection_debug_loc ## DW_AT_location - .long Lset30027 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2637 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5d62:0x10 DW_TAG_formal_parameter -.set Lset30028, Ldebug_loc790-Lsection_debug_loc ## DW_AT_location - .long Lset30028 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2637 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5d72:0x10 DW_TAG_formal_parameter -.set Lset30029, Ldebug_loc791-Lsection_debug_loc ## DW_AT_location - .long Lset30029 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2637 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5d82:0x10 DW_TAG_variable -.set Lset30030, Ldebug_loc794-Lsection_debug_loc ## DW_AT_location - .long Lset30030 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2638 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5d92:0x26 DW_TAG_lexical_block -.set Lset30031, Ldebug_ranges315-Ldebug_range ## DW_AT_ranges - .long Lset30031 - .byte 5 ## Abbrev [5] 0x5d97:0x10 DW_TAG_variable -.set Lset30032, Ldebug_loc792-Lsection_debug_loc ## DW_AT_location - .long Lset30032 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2639 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5da7:0x10 DW_TAG_variable -.set Lset30033, Ldebug_loc793-Lsection_debug_loc ## DW_AT_location - .long Lset30033 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2639 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5db9:0x7d DW_TAG_subprogram - .quad Lfunc_begin28 ## DW_AT_low_pc -.set Lset30034, Lfunc_end28-Lfunc_begin28 ## DW_AT_high_pc - .long Lset30034 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4616 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2643 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5dcf:0x10 DW_TAG_formal_parameter -.set Lset30035, Ldebug_loc795-Lsection_debug_loc ## DW_AT_location - .long Lset30035 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2643 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5ddf:0x10 DW_TAG_formal_parameter -.set Lset30036, Ldebug_loc796-Lsection_debug_loc ## DW_AT_location - .long Lset30036 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2643 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5def:0x10 DW_TAG_formal_parameter -.set Lset30037, Ldebug_loc797-Lsection_debug_loc ## DW_AT_location - .long Lset30037 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2643 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5dff:0x10 DW_TAG_variable -.set Lset30038, Ldebug_loc800-Lsection_debug_loc ## DW_AT_location - .long Lset30038 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2644 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5e0f:0x26 DW_TAG_lexical_block -.set Lset30039, Ldebug_ranges316-Ldebug_range ## DW_AT_ranges - .long Lset30039 - .byte 5 ## Abbrev [5] 0x5e14:0x10 DW_TAG_variable -.set Lset30040, Ldebug_loc798-Lsection_debug_loc ## DW_AT_location - .long Lset30040 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2645 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5e24:0x10 DW_TAG_variable -.set Lset30041, Ldebug_loc799-Lsection_debug_loc ## DW_AT_location - .long Lset30041 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2645 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5e36:0x9d DW_TAG_subprogram - .quad Lfunc_begin29 ## DW_AT_low_pc -.set Lset30042, Lfunc_end29-Lfunc_begin29 ## DW_AT_high_pc - .long Lset30042 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4639 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5e4c:0x10 DW_TAG_formal_parameter -.set Lset30043, Ldebug_loc801-Lsection_debug_loc ## DW_AT_location - .long Lset30043 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5e5c:0x10 DW_TAG_formal_parameter -.set Lset30044, Ldebug_loc802-Lsection_debug_loc ## DW_AT_location - .long Lset30044 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5e6c:0x10 DW_TAG_formal_parameter -.set Lset30045, Ldebug_loc803-Lsection_debug_loc ## DW_AT_location - .long Lset30045 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5e7c:0x10 DW_TAG_formal_parameter -.set Lset30046, Ldebug_loc804-Lsection_debug_loc ## DW_AT_location - .long Lset30046 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5e8c:0x10 DW_TAG_formal_parameter -.set Lset30047, Ldebug_loc805-Lsection_debug_loc ## DW_AT_location - .long Lset30047 - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2649 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5e9c:0x10 DW_TAG_variable -.set Lset30048, Ldebug_loc808-Lsection_debug_loc ## DW_AT_location - .long Lset30048 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2650 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5eac:0x26 DW_TAG_lexical_block -.set Lset30049, Ldebug_ranges317-Ldebug_range ## DW_AT_ranges - .long Lset30049 - .byte 5 ## Abbrev [5] 0x5eb1:0x10 DW_TAG_variable -.set Lset30050, Ldebug_loc806-Lsection_debug_loc ## DW_AT_location - .long Lset30050 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2651 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5ec1:0x10 DW_TAG_variable -.set Lset30051, Ldebug_loc807-Lsection_debug_loc ## DW_AT_location - .long Lset30051 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2651 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x5ed3:0x212 DW_TAG_subprogram - .quad Lfunc_begin30 ## DW_AT_low_pc -.set Lset30052, Lfunc_end30-Lfunc_begin30 ## DW_AT_high_pc - .long Lset30052 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4657 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x5ee9:0x10 DW_TAG_formal_parameter -.set Lset30053, Ldebug_loc809-Lsection_debug_loc ## DW_AT_location - .long Lset30053 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5ef9:0x10 DW_TAG_formal_parameter -.set Lset30054, Ldebug_loc810-Lsection_debug_loc ## DW_AT_location - .long Lset30054 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5f09:0x10 DW_TAG_formal_parameter -.set Lset30055, Ldebug_loc811-Lsection_debug_loc ## DW_AT_location - .long Lset30055 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5f19:0x10 DW_TAG_formal_parameter -.set Lset30056, Ldebug_loc812-Lsection_debug_loc ## DW_AT_location - .long Lset30056 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x5f29:0x10 DW_TAG_formal_parameter -.set Lset30057, Ldebug_loc813-Lsection_debug_loc ## DW_AT_location - .long Lset30057 - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2656 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f39:0x10 DW_TAG_variable -.set Lset30058, Ldebug_loc814-Lsection_debug_loc ## DW_AT_location - .long Lset30058 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2657 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f49:0x10 DW_TAG_variable -.set Lset30059, Ldebug_loc815-Lsection_debug_loc ## DW_AT_location - .long Lset30059 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2659 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5f59:0x10 DW_TAG_variable -.set Lset30060, Ldebug_loc816-Lsection_debug_loc ## DW_AT_location - .long Lset30060 - .long 5313 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2658 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5f69:0x1a DW_TAG_lexical_block - .quad Ltmp6769 ## DW_AT_low_pc -.set Lset30061, Ltmp6774-Ltmp6769 ## DW_AT_high_pc - .long Lset30061 - .byte 7 ## Abbrev [7] 0x5f76:0xc DW_TAG_variable - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2667 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5f83:0x147 DW_TAG_lexical_block -.set Lset30062, Ldebug_ranges324-Ldebug_range ## DW_AT_ranges - .long Lset30062 - .byte 5 ## Abbrev [5] 0x5f88:0x10 DW_TAG_variable -.set Lset30063, Ldebug_loc817-Lsection_debug_loc ## DW_AT_location - .long Lset30063 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2673 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x5f98:0x131 DW_TAG_lexical_block -.set Lset30064, Ldebug_ranges323-Ldebug_range ## DW_AT_ranges - .long Lset30064 - .byte 5 ## Abbrev [5] 0x5f9d:0x10 DW_TAG_variable -.set Lset30065, Ldebug_loc818-Lsection_debug_loc ## DW_AT_location - .long Lset30065 - .long 2221 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2676 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x5fad:0xc DW_TAG_variable - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2675 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x5fb9:0x2e DW_TAG_lexical_block - .quad Ltmp6795 ## DW_AT_low_pc -.set Lset30066, Ltmp6798-Ltmp6795 ## DW_AT_high_pc - .long Lset30066 - .byte 5 ## Abbrev [5] 0x5fc6:0x10 DW_TAG_variable -.set Lset30067, Ldebug_loc819-Lsection_debug_loc ## DW_AT_location - .long Lset30067 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2679 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x5fd6:0x10 DW_TAG_variable -.set Lset30068, Ldebug_loc824-Lsection_debug_loc ## DW_AT_location - .long Lset30068 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2679 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x5fe7:0x61 DW_TAG_lexical_block -.set Lset30069, Ldebug_ranges318-Ldebug_range ## DW_AT_ranges - .long Lset30069 - .byte 5 ## Abbrev [5] 0x5fec:0x10 DW_TAG_variable -.set Lset30070, Ldebug_loc825-Lsection_debug_loc ## DW_AT_location - .long Lset30070 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2681 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x5ffc:0x1d DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp6806 ## DW_AT_low_pc -.set Lset30071, Ltmp6807-Ltmp6806 ## DW_AT_high_pc - .long Lset30071 - .byte 1 ## DW_AT_call_file - .short 2682 ## DW_AT_call_line - .byte 11 ## Abbrev [11] 0x6010:0x8 DW_TAG_formal_parameter - .byte 2 ## DW_AT_location - .byte 145 - .byte 72 - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x6019:0x2e DW_TAG_lexical_block - .quad Ltmp6809 ## DW_AT_low_pc -.set Lset30072, Ltmp6812-Ltmp6809 ## DW_AT_high_pc - .long Lset30072 - .byte 5 ## Abbrev [5] 0x6026:0x10 DW_TAG_variable -.set Lset30073, Ldebug_loc820-Lsection_debug_loc ## DW_AT_location - .long Lset30073 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2682 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6036:0x10 DW_TAG_variable -.set Lset30074, Ldebug_loc828-Lsection_debug_loc ## DW_AT_location - .long Lset30074 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2682 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6048:0x22 DW_TAG_lexical_block -.set Lset30075, Ldebug_ranges319-Ldebug_range ## DW_AT_ranges - .long Lset30075 - .byte 5 ## Abbrev [5] 0x604d:0x10 DW_TAG_variable -.set Lset30076, Ldebug_loc821-Lsection_debug_loc ## DW_AT_location - .long Lset30076 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2689 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x605d:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2689 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x606a:0x26 DW_TAG_lexical_block -.set Lset30077, Ldebug_ranges320-Ldebug_range ## DW_AT_ranges - .long Lset30077 - .byte 5 ## Abbrev [5] 0x606f:0x10 DW_TAG_variable -.set Lset30078, Ldebug_loc822-Lsection_debug_loc ## DW_AT_location - .long Lset30078 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2692 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x607f:0x10 DW_TAG_variable -.set Lset30079, Ldebug_loc826-Lsection_debug_loc ## DW_AT_location - .long Lset30079 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2692 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6090:0x38 DW_TAG_lexical_block -.set Lset30080, Ldebug_ranges322-Ldebug_range ## DW_AT_ranges - .long Lset30080 - .byte 5 ## Abbrev [5] 0x6095:0x10 DW_TAG_variable -.set Lset30081, Ldebug_loc827-Lsection_debug_loc ## DW_AT_location - .long Lset30081 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2695 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x60a5:0x22 DW_TAG_lexical_block -.set Lset30082, Ldebug_ranges321-Ldebug_range ## DW_AT_ranges - .long Lset30082 - .byte 5 ## Abbrev [5] 0x60aa:0x10 DW_TAG_variable -.set Lset30083, Ldebug_loc823-Lsection_debug_loc ## DW_AT_location - .long Lset30083 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2696 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x60ba:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2696 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x60ca:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp6807-Lfunc_begin30 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x60d7:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp6821-Lfunc_begin30 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x60e5:0xca DW_TAG_subprogram - .quad Lfunc_begin31 ## DW_AT_low_pc -.set Lset30084, Lfunc_end31-Lfunc_begin31 ## DW_AT_high_pc - .long Lset30084 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4674 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x60fb:0x10 DW_TAG_formal_parameter -.set Lset30085, Ldebug_loc829-Lsection_debug_loc ## DW_AT_location - .long Lset30085 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x610b:0x10 DW_TAG_formal_parameter -.set Lset30086, Ldebug_loc830-Lsection_debug_loc ## DW_AT_location - .long Lset30086 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x611b:0x10 DW_TAG_formal_parameter -.set Lset30087, Ldebug_loc831-Lsection_debug_loc ## DW_AT_location - .long Lset30087 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x612b:0x10 DW_TAG_formal_parameter -.set Lset30088, Ldebug_loc832-Lsection_debug_loc ## DW_AT_location - .long Lset30088 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x613b:0x10 DW_TAG_formal_parameter -.set Lset30089, Ldebug_loc833-Lsection_debug_loc ## DW_AT_location - .long Lset30089 - .long 3027 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2708 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x614b:0x10 DW_TAG_variable -.set Lset30090, Ldebug_loc834-Lsection_debug_loc ## DW_AT_location - .long Lset30090 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2710 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x615b:0x10 DW_TAG_variable -.set Lset30091, Ldebug_loc835-Lsection_debug_loc ## DW_AT_location - .long Lset30091 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2709 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x616b:0x10 DW_TAG_variable -.set Lset30092, Ldebug_loc838-Lsection_debug_loc ## DW_AT_location - .long Lset30092 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2709 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x617b:0x26 DW_TAG_lexical_block -.set Lset30093, Ldebug_ranges325-Ldebug_range ## DW_AT_ranges - .long Lset30093 - .byte 5 ## Abbrev [5] 0x6180:0x10 DW_TAG_variable -.set Lset30094, Ldebug_loc836-Lsection_debug_loc ## DW_AT_location - .long Lset30094 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2715 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6190:0x10 DW_TAG_variable -.set Lset30095, Ldebug_loc837-Lsection_debug_loc ## DW_AT_location - .long Lset30095 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2715 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x61a1:0xd DW_TAG_call_site - .long 21289 ## DW_AT_call_origin - .quad Ltmp6844-Lfunc_begin31 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x61af:0x13a DW_TAG_subprogram - .quad Lfunc_begin32 ## DW_AT_low_pc -.set Lset30096, Lfunc_end32-Lfunc_begin32 ## DW_AT_high_pc - .long Lset30096 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4690 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x61c5:0x10 DW_TAG_formal_parameter -.set Lset30097, Ldebug_loc839-Lsection_debug_loc ## DW_AT_location - .long Lset30097 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x61d5:0x10 DW_TAG_formal_parameter -.set Lset30098, Ldebug_loc840-Lsection_debug_loc ## DW_AT_location - .long Lset30098 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x61e5:0x10 DW_TAG_formal_parameter -.set Lset30099, Ldebug_loc841-Lsection_debug_loc ## DW_AT_location - .long Lset30099 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x61f5:0x10 DW_TAG_formal_parameter -.set Lset30100, Ldebug_loc842-Lsection_debug_loc ## DW_AT_location - .long Lset30100 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6205:0x10 DW_TAG_formal_parameter -.set Lset30101, Ldebug_loc843-Lsection_debug_loc ## DW_AT_location - .long Lset30101 - .long 5391 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2720 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6215:0x10 DW_TAG_variable -.set Lset30102, Ldebug_loc844-Lsection_debug_loc ## DW_AT_location - .long Lset30102 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2721 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6225:0x10 DW_TAG_variable -.set Lset30103, Ldebug_loc845-Lsection_debug_loc ## DW_AT_location - .long Lset30103 - .long 2400 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2722 ## DW_AT_decl_line - .long 22997 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6235:0x10 DW_TAG_variable -.set Lset30104, Ldebug_loc849-Lsection_debug_loc ## DW_AT_location - .long Lset30104 - .long 5318 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2723 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6245:0xc DW_TAG_variable - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2724 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x6251:0x68 DW_TAG_inlined_subroutine - .long 22878 ## DW_AT_abstract_origin - .quad Ltmp6871 ## DW_AT_low_pc -.set Lset30105, Ltmp6887-Ltmp6871 ## DW_AT_high_pc - .long Lset30105 - .byte 1 ## DW_AT_call_file - .short 2723 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6265:0x9 DW_TAG_formal_parameter -.set Lset30106, Ldebug_loc846-Lsection_debug_loc ## DW_AT_location - .long Lset30106 - .long 22891 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x626e:0x9 DW_TAG_formal_parameter -.set Lset30107, Ldebug_loc854-Lsection_debug_loc ## DW_AT_location - .long Lset30107 - .long 22903 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6277:0x9 DW_TAG_formal_parameter -.set Lset30108, Ldebug_loc847-Lsection_debug_loc ## DW_AT_location - .long Lset30108 - .long 22915 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x6280:0x9 DW_TAG_variable -.set Lset30109, Ldebug_loc848-Lsection_debug_loc ## DW_AT_location - .long Lset30109 - .long 22927 ## DW_AT_abstract_origin - .byte 8 ## Abbrev [8] 0x6289:0x2f DW_TAG_lexical_block - .quad Ltmp6874 ## DW_AT_low_pc -.set Lset30110, Ltmp6887-Ltmp6874 ## DW_AT_high_pc - .long Lset30110 - .byte 13 ## Abbrev [13] 0x6296:0x9 DW_TAG_variable -.set Lset30111, Ldebug_loc851-Lsection_debug_loc ## DW_AT_location - .long Lset30111 - .long 22940 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x629f:0x9 DW_TAG_variable -.set Lset30112, Ldebug_loc852-Lsection_debug_loc ## DW_AT_location - .long Lset30112 - .long 22952 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x62a8:0xf DW_TAG_lexical_block -.set Lset30113, Ldebug_ranges326-Ldebug_range ## DW_AT_ranges - .long Lset30113 - .byte 13 ## Abbrev [13] 0x62ad:0x9 DW_TAG_variable -.set Lset30114, Ldebug_loc853-Lsection_debug_loc ## DW_AT_location - .long Lset30114 - .long 22977 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x62b9:0x22 DW_TAG_lexical_block -.set Lset30115, Ldebug_ranges327-Ldebug_range ## DW_AT_ranges - .long Lset30115 - .byte 5 ## Abbrev [5] 0x62be:0x10 DW_TAG_variable -.set Lset30116, Ldebug_loc850-Lsection_debug_loc ## DW_AT_location - .long Lset30116 - .long 5147 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2729 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x62ce:0xc DW_TAG_variable - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2729 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x62db:0xd DW_TAG_call_site - .long 23019 ## DW_AT_call_origin - .quad Ltmp6892-Lfunc_begin32 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x62e9:0xc5 DW_TAG_subprogram - .quad Lfunc_begin33 ## DW_AT_low_pc -.set Lset30117, Lfunc_end33-Lfunc_begin33 ## DW_AT_high_pc - .long Lset30117 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4707 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x62ff:0x10 DW_TAG_formal_parameter -.set Lset30118, Ldebug_loc855-Lsection_debug_loc ## DW_AT_location - .long Lset30118 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x630f:0x10 DW_TAG_formal_parameter -.set Lset30119, Ldebug_loc856-Lsection_debug_loc ## DW_AT_location - .long Lset30119 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x631f:0x10 DW_TAG_formal_parameter -.set Lset30120, Ldebug_loc857-Lsection_debug_loc ## DW_AT_location - .long Lset30120 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x632f:0x10 DW_TAG_formal_parameter -.set Lset30121, Ldebug_loc858-Lsection_debug_loc ## DW_AT_location - .long Lset30121 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x633f:0x10 DW_TAG_formal_parameter -.set Lset30122, Ldebug_loc859-Lsection_debug_loc ## DW_AT_location - .long Lset30122 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2734 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x634f:0x10 DW_TAG_variable -.set Lset30123, Ldebug_loc860-Lsection_debug_loc ## DW_AT_location - .long Lset30123 - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2735 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x635f:0x10 DW_TAG_variable -.set Lset30124, Ldebug_loc861-Lsection_debug_loc ## DW_AT_location - .long Lset30124 - .long 3508 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2738 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x636f:0x10 DW_TAG_variable -.set Lset30125, Ldebug_loc862-Lsection_debug_loc ## DW_AT_location - .long Lset30125 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2736 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x637f:0x10 DW_TAG_variable -.set Lset30126, Ldebug_loc863-Lsection_debug_loc ## DW_AT_location - .long Lset30126 - .long 5322 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2737 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x638f:0x1e DW_TAG_lexical_block -.set Lset30127, Ldebug_ranges328-Ldebug_range ## DW_AT_ranges - .long Lset30127 - .byte 7 ## Abbrev [7] 0x6394:0xc DW_TAG_variable - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2752 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x63a0:0xc DW_TAG_variable - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2752 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x63ae:0x61 DW_TAG_subprogram - .quad Lfunc_begin34 ## DW_AT_low_pc -.set Lset30128, Lfunc_end34-Lfunc_begin34 ## DW_AT_high_pc - .long Lset30128 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4723 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2758 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 66 ## Abbrev [66] 0x63c4:0xe DW_TAG_formal_parameter - .byte 1 ## DW_AT_location - .byte 85 - .long 2974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2758 ## DW_AT_decl_line - .long 16214 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x63d2:0x10 DW_TAG_formal_parameter -.set Lset30129, Ldebug_loc864-Lsection_debug_loc ## DW_AT_location - .long Lset30129 - .long 5218 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2758 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x63e2:0x10 DW_TAG_formal_parameter -.set Lset30130, Ldebug_loc865-Lsection_debug_loc ## DW_AT_location - .long Lset30130 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2758 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x63f2:0x10 DW_TAG_variable -.set Lset30131, Ldebug_loc866-Lsection_debug_loc ## DW_AT_location - .long Lset30131 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2761 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6402:0xc DW_TAG_variable - .long 3002 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2759 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x640f:0xa0 DW_TAG_subprogram - .quad Lfunc_begin35 ## DW_AT_low_pc -.set Lset30132, Lfunc_end35-Lfunc_begin35 ## DW_AT_high_pc - .long Lset30132 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4740 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2765 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6425:0x10 DW_TAG_formal_parameter -.set Lset30133, Ldebug_loc867-Lsection_debug_loc ## DW_AT_location - .long Lset30133 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2765 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6435:0x10 DW_TAG_formal_parameter -.set Lset30134, Ldebug_loc868-Lsection_debug_loc ## DW_AT_location - .long Lset30134 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2765 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6445:0x10 DW_TAG_formal_parameter -.set Lset30135, Ldebug_loc869-Lsection_debug_loc ## DW_AT_location - .long Lset30135 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2765 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6455:0x10 DW_TAG_formal_parameter -.set Lset30136, Ldebug_loc870-Lsection_debug_loc ## DW_AT_location - .long Lset30136 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2765 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6465:0x10 DW_TAG_variable -.set Lset30137, Ldebug_loc871-Lsection_debug_loc ## DW_AT_location - .long Lset30137 - .long 5357 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2766 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6475:0x2c DW_TAG_lexical_block -.set Lset30138, Ldebug_ranges330-Ldebug_range ## DW_AT_ranges - .long Lset30138 - .byte 5 ## Abbrev [5] 0x647a:0x10 DW_TAG_variable -.set Lset30139, Ldebug_loc872-Lsection_debug_loc ## DW_AT_location - .long Lset30139 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2768 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x648a:0x16 DW_TAG_lexical_block -.set Lset30140, Ldebug_ranges329-Ldebug_range ## DW_AT_ranges - .long Lset30140 - .byte 5 ## Abbrev [5] 0x648f:0x10 DW_TAG_variable -.set Lset30141, Ldebug_loc873-Lsection_debug_loc ## DW_AT_location - .long Lset30141 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2769 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x64a1:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7011-Lfunc_begin35 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x64af:0xa0 DW_TAG_subprogram - .quad Lfunc_begin36 ## DW_AT_low_pc -.set Lset30142, Lfunc_end36-Lfunc_begin36 ## DW_AT_high_pc - .long Lset30142 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4759 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2777 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x64c5:0x10 DW_TAG_formal_parameter -.set Lset30143, Ldebug_loc874-Lsection_debug_loc ## DW_AT_location - .long Lset30143 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2777 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x64d5:0x10 DW_TAG_formal_parameter -.set Lset30144, Ldebug_loc875-Lsection_debug_loc ## DW_AT_location - .long Lset30144 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2777 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x64e5:0x10 DW_TAG_formal_parameter -.set Lset30145, Ldebug_loc876-Lsection_debug_loc ## DW_AT_location - .long Lset30145 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2777 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x64f5:0x10 DW_TAG_formal_parameter -.set Lset30146, Ldebug_loc877-Lsection_debug_loc ## DW_AT_location - .long Lset30146 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2777 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6505:0x10 DW_TAG_variable -.set Lset30147, Ldebug_loc878-Lsection_debug_loc ## DW_AT_location - .long Lset30147 - .long 5360 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2778 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6515:0x2c DW_TAG_lexical_block -.set Lset30148, Ldebug_ranges332-Ldebug_range ## DW_AT_ranges - .long Lset30148 - .byte 5 ## Abbrev [5] 0x651a:0x10 DW_TAG_variable -.set Lset30149, Ldebug_loc879-Lsection_debug_loc ## DW_AT_location - .long Lset30149 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2780 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x652a:0x16 DW_TAG_lexical_block -.set Lset30150, Ldebug_ranges331-Ldebug_range ## DW_AT_ranges - .long Lset30150 - .byte 5 ## Abbrev [5] 0x652f:0x10 DW_TAG_variable -.set Lset30151, Ldebug_loc880-Lsection_debug_loc ## DW_AT_location - .long Lset30151 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2781 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6541:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7031-Lfunc_begin36 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x654f:0x8d DW_TAG_subprogram - .quad Lfunc_begin37 ## DW_AT_low_pc -.set Lset30152, Lfunc_end37-Lfunc_begin37 ## DW_AT_high_pc - .long Lset30152 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4778 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6565:0x10 DW_TAG_formal_parameter -.set Lset30153, Ldebug_loc881-Lsection_debug_loc ## DW_AT_location - .long Lset30153 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6575:0x10 DW_TAG_formal_parameter -.set Lset30154, Ldebug_loc882-Lsection_debug_loc ## DW_AT_location - .long Lset30154 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6585:0x10 DW_TAG_formal_parameter -.set Lset30155, Ldebug_loc883-Lsection_debug_loc ## DW_AT_location - .long Lset30155 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6595:0x10 DW_TAG_formal_parameter -.set Lset30156, Ldebug_loc884-Lsection_debug_loc ## DW_AT_location - .long Lset30156 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2789 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x65a5:0x10 DW_TAG_variable -.set Lset30157, Ldebug_loc886-Lsection_debug_loc ## DW_AT_location - .long Lset30157 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2793 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x65b5:0x26 DW_TAG_lexical_block -.set Lset30158, Ldebug_ranges333-Ldebug_range ## DW_AT_ranges - .long Lset30158 - .byte 5 ## Abbrev [5] 0x65ba:0x10 DW_TAG_variable -.set Lset30159, Ldebug_loc885-Lsection_debug_loc ## DW_AT_location - .long Lset30159 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2794 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x65ca:0x10 DW_TAG_variable -.set Lset30160, Ldebug_loc887-Lsection_debug_loc ## DW_AT_location - .long Lset30160 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2794 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x65dc:0x8d DW_TAG_subprogram - .quad Lfunc_begin38 ## DW_AT_low_pc -.set Lset30161, Lfunc_end38-Lfunc_begin38 ## DW_AT_high_pc - .long Lset30161 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4798 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2798 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x65f2:0x10 DW_TAG_formal_parameter -.set Lset30162, Ldebug_loc888-Lsection_debug_loc ## DW_AT_location - .long Lset30162 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2798 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6602:0x10 DW_TAG_formal_parameter -.set Lset30163, Ldebug_loc889-Lsection_debug_loc ## DW_AT_location - .long Lset30163 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2798 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6612:0x10 DW_TAG_formal_parameter -.set Lset30164, Ldebug_loc890-Lsection_debug_loc ## DW_AT_location - .long Lset30164 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2798 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6622:0x10 DW_TAG_formal_parameter -.set Lset30165, Ldebug_loc891-Lsection_debug_loc ## DW_AT_location - .long Lset30165 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2798 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6632:0x10 DW_TAG_variable -.set Lset30166, Ldebug_loc893-Lsection_debug_loc ## DW_AT_location - .long Lset30166 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2802 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6642:0x26 DW_TAG_lexical_block -.set Lset30167, Ldebug_ranges334-Ldebug_range ## DW_AT_ranges - .long Lset30167 - .byte 5 ## Abbrev [5] 0x6647:0x10 DW_TAG_variable -.set Lset30168, Ldebug_loc892-Lsection_debug_loc ## DW_AT_location - .long Lset30168 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2803 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6657:0x10 DW_TAG_variable -.set Lset30169, Ldebug_loc894-Lsection_debug_loc ## DW_AT_location - .long Lset30169 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2803 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6669:0x8d DW_TAG_subprogram - .quad Lfunc_begin39 ## DW_AT_low_pc -.set Lset30170, Lfunc_end39-Lfunc_begin39 ## DW_AT_high_pc - .long Lset30170 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4818 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2807 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x667f:0x10 DW_TAG_formal_parameter -.set Lset30171, Ldebug_loc895-Lsection_debug_loc ## DW_AT_location - .long Lset30171 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2807 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x668f:0x10 DW_TAG_formal_parameter -.set Lset30172, Ldebug_loc896-Lsection_debug_loc ## DW_AT_location - .long Lset30172 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2807 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x669f:0x10 DW_TAG_formal_parameter -.set Lset30173, Ldebug_loc897-Lsection_debug_loc ## DW_AT_location - .long Lset30173 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2807 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x66af:0x10 DW_TAG_formal_parameter -.set Lset30174, Ldebug_loc898-Lsection_debug_loc ## DW_AT_location - .long Lset30174 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2807 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x66bf:0x10 DW_TAG_variable -.set Lset30175, Ldebug_loc900-Lsection_debug_loc ## DW_AT_location - .long Lset30175 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2810 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x66cf:0x26 DW_TAG_lexical_block -.set Lset30176, Ldebug_ranges335-Ldebug_range ## DW_AT_ranges - .long Lset30176 - .byte 5 ## Abbrev [5] 0x66d4:0x10 DW_TAG_variable -.set Lset30177, Ldebug_loc899-Lsection_debug_loc ## DW_AT_location - .long Lset30177 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2811 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x66e4:0x10 DW_TAG_variable -.set Lset30178, Ldebug_loc901-Lsection_debug_loc ## DW_AT_location - .long Lset30178 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2811 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x66f6:0x8d DW_TAG_subprogram - .quad Lfunc_begin40 ## DW_AT_low_pc -.set Lset30179, Lfunc_end40-Lfunc_begin40 ## DW_AT_high_pc - .long Lset30179 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4837 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x670c:0x10 DW_TAG_formal_parameter -.set Lset30180, Ldebug_loc902-Lsection_debug_loc ## DW_AT_location - .long Lset30180 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x671c:0x10 DW_TAG_formal_parameter -.set Lset30181, Ldebug_loc903-Lsection_debug_loc ## DW_AT_location - .long Lset30181 - .long 3625 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 22992 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x672c:0x10 DW_TAG_formal_parameter -.set Lset30182, Ldebug_loc904-Lsection_debug_loc ## DW_AT_location - .long Lset30182 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x673c:0x10 DW_TAG_formal_parameter -.set Lset30183, Ldebug_loc905-Lsection_debug_loc ## DW_AT_location - .long Lset30183 - .long 2402 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2815 ## DW_AT_decl_line - .long 14967 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x674c:0x10 DW_TAG_variable -.set Lset30184, Ldebug_loc907-Lsection_debug_loc ## DW_AT_location - .long Lset30184 - .long 4454 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2816 ## DW_AT_decl_line - .long 16573 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x675c:0x26 DW_TAG_lexical_block -.set Lset30185, Ldebug_ranges336-Ldebug_range ## DW_AT_ranges - .long Lset30185 - .byte 5 ## Abbrev [5] 0x6761:0x10 DW_TAG_variable -.set Lset30186, Ldebug_loc906-Lsection_debug_loc ## DW_AT_location - .long Lset30186 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2817 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6771:0x10 DW_TAG_variable -.set Lset30187, Ldebug_loc908-Lsection_debug_loc ## DW_AT_location - .long Lset30187 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2817 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6783:0xef DW_TAG_subprogram - .quad Lfunc_begin41 ## DW_AT_low_pc -.set Lset30188, Lfunc_end41-Lfunc_begin41 ## DW_AT_high_pc - .long Lset30188 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4855 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6799:0x10 DW_TAG_formal_parameter -.set Lset30189, Ldebug_loc909-Lsection_debug_loc ## DW_AT_location - .long Lset30189 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x67a9:0x10 DW_TAG_formal_parameter -.set Lset30190, Ldebug_loc910-Lsection_debug_loc ## DW_AT_location - .long Lset30190 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x67b9:0x10 DW_TAG_formal_parameter -.set Lset30191, Ldebug_loc911-Lsection_debug_loc ## DW_AT_location - .long Lset30191 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x67c9:0x10 DW_TAG_formal_parameter -.set Lset30192, Ldebug_loc912-Lsection_debug_loc ## DW_AT_location - .long Lset30192 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2821 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x67d9:0x10 DW_TAG_variable -.set Lset30193, Ldebug_loc916-Lsection_debug_loc ## DW_AT_location - .long Lset30193 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2822 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x67e9:0x10 DW_TAG_variable -.set Lset30194, Ldebug_loc917-Lsection_debug_loc ## DW_AT_location - .long Lset30194 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2823 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x67f9:0x48 DW_TAG_lexical_block - .quad Ltmp7121 ## DW_AT_low_pc -.set Lset30195, Ltmp7124-Ltmp7121 ## DW_AT_high_pc - .long Lset30195 - .byte 5 ## Abbrev [5] 0x6806:0x10 DW_TAG_variable -.set Lset30196, Ldebug_loc915-Lsection_debug_loc ## DW_AT_location - .long Lset30196 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2826 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6816:0xc DW_TAG_variable - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2825 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6822:0x1e DW_TAG_lexical_block - .quad Ltmp7122 ## DW_AT_low_pc -.set Lset30197, Ltmp7124-Ltmp7122 ## DW_AT_high_pc - .long Lset30197 - .byte 5 ## Abbrev [5] 0x682f:0x10 DW_TAG_variable -.set Lset30198, Ldebug_loc913-Lsection_debug_loc ## DW_AT_location - .long Lset30198 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2827 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6841:0x16 DW_TAG_lexical_block -.set Lset30199, Ldebug_ranges337-Ldebug_range ## DW_AT_ranges - .long Lset30199 - .byte 5 ## Abbrev [5] 0x6846:0x10 DW_TAG_variable -.set Lset30200, Ldebug_loc914-Lsection_debug_loc ## DW_AT_location - .long Lset30200 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2830 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6857:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7129-Lfunc_begin41 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6864:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7142-Lfunc_begin41 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6872:0xef DW_TAG_subprogram - .quad Lfunc_begin42 ## DW_AT_low_pc -.set Lset30201, Lfunc_end42-Lfunc_begin42 ## DW_AT_high_pc - .long Lset30201 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4868 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6888:0x10 DW_TAG_formal_parameter -.set Lset30202, Ldebug_loc918-Lsection_debug_loc ## DW_AT_location - .long Lset30202 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6898:0x10 DW_TAG_formal_parameter -.set Lset30203, Ldebug_loc919-Lsection_debug_loc ## DW_AT_location - .long Lset30203 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x68a8:0x10 DW_TAG_formal_parameter -.set Lset30204, Ldebug_loc920-Lsection_debug_loc ## DW_AT_location - .long Lset30204 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x68b8:0x10 DW_TAG_formal_parameter -.set Lset30205, Ldebug_loc921-Lsection_debug_loc ## DW_AT_location - .long Lset30205 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2837 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x68c8:0x10 DW_TAG_variable -.set Lset30206, Ldebug_loc925-Lsection_debug_loc ## DW_AT_location - .long Lset30206 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2838 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x68d8:0x10 DW_TAG_variable -.set Lset30207, Ldebug_loc926-Lsection_debug_loc ## DW_AT_location - .long Lset30207 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2839 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x68e8:0x48 DW_TAG_lexical_block - .quad Ltmp7153 ## DW_AT_low_pc -.set Lset30208, Ltmp7156-Ltmp7153 ## DW_AT_high_pc - .long Lset30208 - .byte 5 ## Abbrev [5] 0x68f5:0x10 DW_TAG_variable -.set Lset30209, Ldebug_loc924-Lsection_debug_loc ## DW_AT_location - .long Lset30209 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2841 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x6905:0xc DW_TAG_variable - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2842 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6911:0x1e DW_TAG_lexical_block - .quad Ltmp7154 ## DW_AT_low_pc -.set Lset30210, Ltmp7156-Ltmp7154 ## DW_AT_high_pc - .long Lset30210 - .byte 5 ## Abbrev [5] 0x691e:0x10 DW_TAG_variable -.set Lset30211, Ldebug_loc922-Lsection_debug_loc ## DW_AT_location - .long Lset30211 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2843 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6930:0x16 DW_TAG_lexical_block -.set Lset30212, Ldebug_ranges338-Ldebug_range ## DW_AT_ranges - .long Lset30212 - .byte 5 ## Abbrev [5] 0x6935:0x10 DW_TAG_variable -.set Lset30213, Ldebug_loc923-Lsection_debug_loc ## DW_AT_location - .long Lset30213 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2846 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6946:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7161-Lfunc_begin42 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6953:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7175-Lfunc_begin42 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6961:0xef DW_TAG_subprogram - .quad Lfunc_begin43 ## DW_AT_low_pc -.set Lset30214, Lfunc_end43-Lfunc_begin43 ## DW_AT_high_pc - .long Lset30214 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4881 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2853 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6977:0x10 DW_TAG_formal_parameter -.set Lset30215, Ldebug_loc927-Lsection_debug_loc ## DW_AT_location - .long Lset30215 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2853 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6987:0x10 DW_TAG_formal_parameter -.set Lset30216, Ldebug_loc928-Lsection_debug_loc ## DW_AT_location - .long Lset30216 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2853 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6997:0x10 DW_TAG_formal_parameter -.set Lset30217, Ldebug_loc929-Lsection_debug_loc ## DW_AT_location - .long Lset30217 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2853 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x69a7:0x10 DW_TAG_formal_parameter -.set Lset30218, Ldebug_loc930-Lsection_debug_loc ## DW_AT_location - .long Lset30218 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2853 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x69b7:0x10 DW_TAG_variable -.set Lset30219, Ldebug_loc934-Lsection_debug_loc ## DW_AT_location - .long Lset30219 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2854 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x69c7:0x10 DW_TAG_variable -.set Lset30220, Ldebug_loc935-Lsection_debug_loc ## DW_AT_location - .long Lset30220 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2855 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x69d7:0x48 DW_TAG_lexical_block - .quad Ltmp7186 ## DW_AT_low_pc -.set Lset30221, Ltmp7189-Ltmp7186 ## DW_AT_high_pc - .long Lset30221 - .byte 5 ## Abbrev [5] 0x69e4:0x10 DW_TAG_variable -.set Lset30222, Ldebug_loc933-Lsection_debug_loc ## DW_AT_location - .long Lset30222 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2858 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x69f4:0xc DW_TAG_variable - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2857 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x6a00:0x1e DW_TAG_lexical_block - .quad Ltmp7187 ## DW_AT_low_pc -.set Lset30223, Ltmp7189-Ltmp7187 ## DW_AT_high_pc - .long Lset30223 - .byte 5 ## Abbrev [5] 0x6a0d:0x10 DW_TAG_variable -.set Lset30224, Ldebug_loc931-Lsection_debug_loc ## DW_AT_location - .long Lset30224 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2859 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6a1f:0x16 DW_TAG_lexical_block -.set Lset30225, Ldebug_ranges339-Ldebug_range ## DW_AT_ranges - .long Lset30225 - .byte 5 ## Abbrev [5] 0x6a24:0x10 DW_TAG_variable -.set Lset30226, Ldebug_loc932-Lsection_debug_loc ## DW_AT_location - .long Lset30226 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2862 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6a35:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7194-Lfunc_begin43 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6a42:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7207-Lfunc_begin43 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6a50:0xa7 DW_TAG_subprogram - .quad Lfunc_begin44 ## DW_AT_low_pc -.set Lset30227, Lfunc_end44-Lfunc_begin44 ## DW_AT_high_pc - .long Lset30227 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4894 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6a66:0x10 DW_TAG_formal_parameter -.set Lset30228, Ldebug_loc936-Lsection_debug_loc ## DW_AT_location - .long Lset30228 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a76:0x10 DW_TAG_formal_parameter -.set Lset30229, Ldebug_loc937-Lsection_debug_loc ## DW_AT_location - .long Lset30229 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a86:0x10 DW_TAG_formal_parameter -.set Lset30230, Ldebug_loc938-Lsection_debug_loc ## DW_AT_location - .long Lset30230 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6a96:0x10 DW_TAG_formal_parameter -.set Lset30231, Ldebug_loc939-Lsection_debug_loc ## DW_AT_location - .long Lset30231 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2869 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6aa6:0x10 DW_TAG_variable -.set Lset30232, Ldebug_loc941-Lsection_debug_loc ## DW_AT_location - .long Lset30232 - .long 5209 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2870 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6ab6:0x10 DW_TAG_variable -.set Lset30233, Ldebug_loc942-Lsection_debug_loc ## DW_AT_location - .long Lset30233 - .long 5212 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2871 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6ac6:0x16 DW_TAG_lexical_block -.set Lset30234, Ldebug_ranges340-Ldebug_range ## DW_AT_ranges - .long Lset30234 - .byte 5 ## Abbrev [5] 0x6acb:0x10 DW_TAG_variable -.set Lset30235, Ldebug_loc940-Lsection_debug_loc ## DW_AT_location - .long Lset30235 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2873 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6adc:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7230-Lfunc_begin44 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6ae9:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7233-Lfunc_begin44 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6af7:0xc6 DW_TAG_subprogram - .quad Lfunc_begin45 ## DW_AT_low_pc -.set Lset30236, Lfunc_end45-Lfunc_begin45 ## DW_AT_high_pc - .long Lset30236 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4907 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6b0d:0x10 DW_TAG_formal_parameter -.set Lset30237, Ldebug_loc943-Lsection_debug_loc ## DW_AT_location - .long Lset30237 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6b1d:0x10 DW_TAG_formal_parameter -.set Lset30238, Ldebug_loc944-Lsection_debug_loc ## DW_AT_location - .long Lset30238 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6b2d:0x10 DW_TAG_formal_parameter -.set Lset30239, Ldebug_loc945-Lsection_debug_loc ## DW_AT_location - .long Lset30239 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6b3d:0x10 DW_TAG_formal_parameter -.set Lset30240, Ldebug_loc946-Lsection_debug_loc ## DW_AT_location - .long Lset30240 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2880 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6b4d:0x10 DW_TAG_variable -.set Lset30241, Ldebug_loc948-Lsection_debug_loc ## DW_AT_location - .long Lset30241 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2881 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6b5d:0x10 DW_TAG_variable -.set Lset30242, Ldebug_loc949-Lsection_debug_loc ## DW_AT_location - .long Lset30242 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2882 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6b6d:0x35 DW_TAG_lexical_block -.set Lset30243, Ldebug_ranges342-Ldebug_range ## DW_AT_ranges - .long Lset30243 - .byte 5 ## Abbrev [5] 0x6b72:0x10 DW_TAG_variable -.set Lset30244, Ldebug_loc947-Lsection_debug_loc ## DW_AT_location - .long Lset30244 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2884 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x6b82:0x1f DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin -.set Lset30245, Ldebug_ranges341-Ldebug_range ## DW_AT_ranges - .long Lset30245 - .byte 1 ## DW_AT_call_file - .short 2884 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6b8e:0x9 DW_TAG_formal_parameter -.set Lset30246, Ldebug_loc950-Lsection_debug_loc ## DW_AT_location - .long Lset30246 - .long 22655 ## DW_AT_abstract_origin - .byte 10 ## Abbrev [10] 0x6b97:0x9 DW_TAG_formal_parameter -.set Lset30247, Ldebug_loc951-Lsection_debug_loc ## DW_AT_location - .long Lset30247 - .long 22667 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6ba2:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7256-Lfunc_begin45 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6baf:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7259-Lfunc_begin45 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6bbd:0xbd DW_TAG_subprogram - .quad Lfunc_begin46 ## DW_AT_low_pc -.set Lset30248, Lfunc_end46-Lfunc_begin46 ## DW_AT_high_pc - .long Lset30248 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4920 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6bd3:0x10 DW_TAG_formal_parameter -.set Lset30249, Ldebug_loc952-Lsection_debug_loc ## DW_AT_location - .long Lset30249 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6be3:0x10 DW_TAG_formal_parameter -.set Lset30250, Ldebug_loc953-Lsection_debug_loc ## DW_AT_location - .long Lset30250 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6bf3:0x10 DW_TAG_formal_parameter -.set Lset30251, Ldebug_loc954-Lsection_debug_loc ## DW_AT_location - .long Lset30251 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6c03:0x10 DW_TAG_formal_parameter -.set Lset30252, Ldebug_loc955-Lsection_debug_loc ## DW_AT_location - .long Lset30252 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2891 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6c13:0x10 DW_TAG_variable -.set Lset30253, Ldebug_loc957-Lsection_debug_loc ## DW_AT_location - .long Lset30253 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2892 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6c23:0x10 DW_TAG_variable -.set Lset30254, Ldebug_loc958-Lsection_debug_loc ## DW_AT_location - .long Lset30254 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2893 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6c33:0x2c DW_TAG_lexical_block -.set Lset30255, Ldebug_ranges344-Ldebug_range ## DW_AT_ranges - .long Lset30255 - .byte 5 ## Abbrev [5] 0x6c38:0x10 DW_TAG_variable -.set Lset30256, Ldebug_loc956-Lsection_debug_loc ## DW_AT_location - .long Lset30256 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2895 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x6c48:0x16 DW_TAG_inlined_subroutine - .long 22642 ## DW_AT_abstract_origin -.set Lset30257, Ldebug_ranges343-Ldebug_range ## DW_AT_ranges - .long Lset30257 - .byte 1 ## DW_AT_call_file - .short 2895 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6c54:0x9 DW_TAG_formal_parameter -.set Lset30258, Ldebug_loc959-Lsection_debug_loc ## DW_AT_location - .long Lset30258 - .long 22655 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6c5f:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7294-Lfunc_begin46 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6c6c:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7297-Lfunc_begin46 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6c7a:0xa7 DW_TAG_subprogram - .quad Lfunc_begin47 ## DW_AT_low_pc -.set Lset30259, Lfunc_end47-Lfunc_begin47 ## DW_AT_high_pc - .long Lset30259 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4933 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6c90:0x10 DW_TAG_formal_parameter -.set Lset30260, Ldebug_loc960-Lsection_debug_loc ## DW_AT_location - .long Lset30260 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6ca0:0x10 DW_TAG_formal_parameter -.set Lset30261, Ldebug_loc961-Lsection_debug_loc ## DW_AT_location - .long Lset30261 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6cb0:0x10 DW_TAG_formal_parameter -.set Lset30262, Ldebug_loc962-Lsection_debug_loc ## DW_AT_location - .long Lset30262 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6cc0:0x10 DW_TAG_formal_parameter -.set Lset30263, Ldebug_loc963-Lsection_debug_loc ## DW_AT_location - .long Lset30263 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2902 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6cd0:0x10 DW_TAG_variable -.set Lset30264, Ldebug_loc965-Lsection_debug_loc ## DW_AT_location - .long Lset30264 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2903 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6ce0:0x10 DW_TAG_variable -.set Lset30265, Ldebug_loc966-Lsection_debug_loc ## DW_AT_location - .long Lset30265 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2904 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6cf0:0x16 DW_TAG_lexical_block -.set Lset30266, Ldebug_ranges345-Ldebug_range ## DW_AT_ranges - .long Lset30266 - .byte 5 ## Abbrev [5] 0x6cf5:0x10 DW_TAG_variable -.set Lset30267, Ldebug_loc964-Lsection_debug_loc ## DW_AT_location - .long Lset30267 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2906 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6d06:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7334-Lfunc_begin47 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6d13:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7337-Lfunc_begin47 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6d21:0xa7 DW_TAG_subprogram - .quad Lfunc_begin48 ## DW_AT_low_pc -.set Lset30268, Lfunc_end48-Lfunc_begin48 ## DW_AT_high_pc - .long Lset30268 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4947 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6d37:0x10 DW_TAG_formal_parameter -.set Lset30269, Ldebug_loc967-Lsection_debug_loc ## DW_AT_location - .long Lset30269 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d47:0x10 DW_TAG_formal_parameter -.set Lset30270, Ldebug_loc968-Lsection_debug_loc ## DW_AT_location - .long Lset30270 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d57:0x10 DW_TAG_formal_parameter -.set Lset30271, Ldebug_loc969-Lsection_debug_loc ## DW_AT_location - .long Lset30271 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6d67:0x10 DW_TAG_formal_parameter -.set Lset30272, Ldebug_loc970-Lsection_debug_loc ## DW_AT_location - .long Lset30272 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2913 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6d77:0x10 DW_TAG_variable -.set Lset30273, Ldebug_loc972-Lsection_debug_loc ## DW_AT_location - .long Lset30273 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2914 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6d87:0x10 DW_TAG_variable -.set Lset30274, Ldebug_loc973-Lsection_debug_loc ## DW_AT_location - .long Lset30274 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2915 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6d97:0x16 DW_TAG_lexical_block -.set Lset30275, Ldebug_ranges346-Ldebug_range ## DW_AT_ranges - .long Lset30275 - .byte 5 ## Abbrev [5] 0x6d9c:0x10 DW_TAG_variable -.set Lset30276, Ldebug_loc971-Lsection_debug_loc ## DW_AT_location - .long Lset30276 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2917 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6dad:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7361-Lfunc_begin48 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6dba:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7364-Lfunc_begin48 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6dc8:0xa7 DW_TAG_subprogram - .quad Lfunc_begin49 ## DW_AT_low_pc -.set Lset30277, Lfunc_end49-Lfunc_begin49 ## DW_AT_high_pc - .long Lset30277 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4960 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2924 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6dde:0x10 DW_TAG_formal_parameter -.set Lset30278, Ldebug_loc974-Lsection_debug_loc ## DW_AT_location - .long Lset30278 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2924 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6dee:0x10 DW_TAG_formal_parameter -.set Lset30279, Ldebug_loc975-Lsection_debug_loc ## DW_AT_location - .long Lset30279 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2924 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6dfe:0x10 DW_TAG_formal_parameter -.set Lset30280, Ldebug_loc976-Lsection_debug_loc ## DW_AT_location - .long Lset30280 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2924 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6e0e:0x10 DW_TAG_formal_parameter -.set Lset30281, Ldebug_loc977-Lsection_debug_loc ## DW_AT_location - .long Lset30281 - .long 5197 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2924 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6e1e:0x10 DW_TAG_variable -.set Lset30282, Ldebug_loc979-Lsection_debug_loc ## DW_AT_location - .long Lset30282 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2925 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6e2e:0x10 DW_TAG_variable -.set Lset30283, Ldebug_loc980-Lsection_debug_loc ## DW_AT_location - .long Lset30283 - .long 5215 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2926 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6e3e:0x16 DW_TAG_lexical_block -.set Lset30284, Ldebug_ranges347-Ldebug_range ## DW_AT_ranges - .long Lset30284 - .byte 5 ## Abbrev [5] 0x6e43:0x10 DW_TAG_variable -.set Lset30285, Ldebug_loc978-Lsection_debug_loc ## DW_AT_location - .long Lset30285 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2928 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6e54:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7388-Lfunc_begin49 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x6e61:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7391-Lfunc_begin49 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6e6f:0x7a DW_TAG_subprogram - .quad Lfunc_begin50 ## DW_AT_low_pc -.set Lset30286, Lfunc_end50-Lfunc_begin50 ## DW_AT_high_pc - .long Lset30286 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4974 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2935 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6e85:0x10 DW_TAG_formal_parameter -.set Lset30287, Ldebug_loc981-Lsection_debug_loc ## DW_AT_location - .long Lset30287 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2935 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6e95:0x10 DW_TAG_formal_parameter -.set Lset30288, Ldebug_loc982-Lsection_debug_loc ## DW_AT_location - .long Lset30288 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2935 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6ea5:0x10 DW_TAG_formal_parameter -.set Lset30289, Ldebug_loc983-Lsection_debug_loc ## DW_AT_location - .long Lset30289 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2935 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6eb5:0x10 DW_TAG_variable -.set Lset30290, Ldebug_loc985-Lsection_debug_loc ## DW_AT_location - .long Lset30290 - .long 5206 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2936 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6ec5:0x16 DW_TAG_lexical_block -.set Lset30291, Ldebug_ranges348-Ldebug_range ## DW_AT_ranges - .long Lset30291 - .byte 5 ## Abbrev [5] 0x6eca:0x10 DW_TAG_variable -.set Lset30292, Ldebug_loc984-Lsection_debug_loc ## DW_AT_location - .long Lset30292 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2937 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 15 ## Abbrev [15] 0x6edb:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7410-Lfunc_begin50 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6ee9:0xc6 DW_TAG_subprogram - .quad Lfunc_begin51 ## DW_AT_low_pc -.set Lset30293, Lfunc_end51-Lfunc_begin51 ## DW_AT_high_pc - .long Lset30293 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 4988 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6eff:0x10 DW_TAG_formal_parameter -.set Lset30294, Ldebug_loc986-Lsection_debug_loc ## DW_AT_location - .long Lset30294 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f0f:0x10 DW_TAG_formal_parameter -.set Lset30295, Ldebug_loc987-Lsection_debug_loc ## DW_AT_location - .long Lset30295 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f1f:0x10 DW_TAG_formal_parameter -.set Lset30296, Ldebug_loc988-Lsection_debug_loc ## DW_AT_location - .long Lset30296 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6f2f:0x10 DW_TAG_formal_parameter -.set Lset30297, Ldebug_loc989-Lsection_debug_loc ## DW_AT_location - .long Lset30297 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2949 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x6f3f:0x6a DW_TAG_lexical_block -.set Lset30298, Ldebug_ranges352-Ldebug_range ## DW_AT_ranges - .long Lset30298 - .byte 5 ## Abbrev [5] 0x6f44:0x10 DW_TAG_variable -.set Lset30299, Ldebug_loc995-Lsection_debug_loc ## DW_AT_location - .long Lset30299 - .long 5108 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2950 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x6f54:0x2e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin -.set Lset30300, Ldebug_ranges349-Ldebug_range ## DW_AT_ranges - .long Lset30300 - .byte 1 ## DW_AT_call_file - .short 2950 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x6f60:0x9 DW_TAG_formal_parameter -.set Lset30301, Ldebug_loc991-Lsection_debug_loc ## DW_AT_location - .long Lset30301 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x6f69:0x9 DW_TAG_variable -.set Lset30302, Ldebug_loc992-Lsection_debug_loc ## DW_AT_location - .long Lset30302 - .long 22418 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x6f72:0xf DW_TAG_lexical_block -.set Lset30303, Ldebug_ranges350-Ldebug_range ## DW_AT_ranges - .long Lset30303 - .byte 13 ## Abbrev [13] 0x6f77:0x9 DW_TAG_variable -.set Lset30304, Ldebug_loc993-Lsection_debug_loc ## DW_AT_location - .long Lset30304 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x6f82:0x26 DW_TAG_lexical_block -.set Lset30305, Ldebug_ranges351-Ldebug_range ## DW_AT_ranges - .long Lset30305 - .byte 5 ## Abbrev [5] 0x6f87:0x10 DW_TAG_variable -.set Lset30306, Ldebug_loc990-Lsection_debug_loc ## DW_AT_location - .long Lset30306 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2950 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x6f97:0x10 DW_TAG_variable -.set Lset30307, Ldebug_loc994-Lsection_debug_loc ## DW_AT_location - .long Lset30307 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2950 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x6fa9:0x5 DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x6faf:0xcb DW_TAG_subprogram - .quad Lfunc_begin52 ## DW_AT_low_pc -.set Lset30308, Lfunc_end52-Lfunc_begin52 ## DW_AT_high_pc - .long Lset30308 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 5009 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x6fc5:0x10 DW_TAG_formal_parameter -.set Lset30309, Ldebug_loc996-Lsection_debug_loc ## DW_AT_location - .long Lset30309 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6fd5:0x10 DW_TAG_formal_parameter -.set Lset30310, Ldebug_loc997-Lsection_debug_loc ## DW_AT_location - .long Lset30310 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6fe5:0x10 DW_TAG_formal_parameter -.set Lset30311, Ldebug_loc998-Lsection_debug_loc ## DW_AT_location - .long Lset30311 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x6ff5:0x10 DW_TAG_formal_parameter -.set Lset30312, Ldebug_loc999-Lsection_debug_loc ## DW_AT_location - .long Lset30312 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2960 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7005:0x6a DW_TAG_lexical_block -.set Lset30313, Ldebug_ranges356-Ldebug_range ## DW_AT_ranges - .long Lset30313 - .byte 5 ## Abbrev [5] 0x700a:0x10 DW_TAG_variable -.set Lset30314, Ldebug_loc1005-Lsection_debug_loc ## DW_AT_location - .long Lset30314 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2961 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 12 ## Abbrev [12] 0x701a:0x2e DW_TAG_inlined_subroutine - .long 22384 ## DW_AT_abstract_origin -.set Lset30315, Ldebug_ranges353-Ldebug_range ## DW_AT_ranges - .long Lset30315 - .byte 1 ## DW_AT_call_file - .short 2961 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x7026:0x9 DW_TAG_formal_parameter -.set Lset30316, Ldebug_loc1001-Lsection_debug_loc ## DW_AT_location - .long Lset30316 - .long 22407 ## DW_AT_abstract_origin - .byte 13 ## Abbrev [13] 0x702f:0x9 DW_TAG_variable -.set Lset30317, Ldebug_loc1002-Lsection_debug_loc ## DW_AT_location - .long Lset30317 - .long 22418 ## DW_AT_abstract_origin - .byte 6 ## Abbrev [6] 0x7038:0xf DW_TAG_lexical_block -.set Lset30318, Ldebug_ranges354-Ldebug_range ## DW_AT_ranges - .long Lset30318 - .byte 13 ## Abbrev [13] 0x703d:0x9 DW_TAG_variable -.set Lset30319, Ldebug_loc1003-Lsection_debug_loc ## DW_AT_location - .long Lset30319 - .long 22430 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7048:0x26 DW_TAG_lexical_block -.set Lset30320, Ldebug_ranges355-Ldebug_range ## DW_AT_ranges - .long Lset30320 - .byte 5 ## Abbrev [5] 0x704d:0x10 DW_TAG_variable -.set Lset30321, Ldebug_loc1000-Lsection_debug_loc ## DW_AT_location - .long Lset30321 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2961 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x705d:0x10 DW_TAG_variable -.set Lset30322, Ldebug_loc1004-Lsection_debug_loc ## DW_AT_location - .long Lset30322 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2961 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x706f:0x5 DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 56 ## Abbrev [56] 0x7074:0x5 DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x707a:0x17c DW_TAG_subprogram - .quad Lfunc_begin53 ## DW_AT_low_pc -.set Lset30323, Lfunc_end53-Lfunc_begin53 ## DW_AT_high_pc - .long Lset30323 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 5030 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2970 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7090:0x10 DW_TAG_formal_parameter -.set Lset30324, Ldebug_loc1006-Lsection_debug_loc ## DW_AT_location - .long Lset30324 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2970 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x70a0:0x10 DW_TAG_formal_parameter -.set Lset30325, Ldebug_loc1007-Lsection_debug_loc ## DW_AT_location - .long Lset30325 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2970 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x70b0:0x10 DW_TAG_formal_parameter -.set Lset30326, Ldebug_loc1008-Lsection_debug_loc ## DW_AT_location - .long Lset30326 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2970 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x70c0:0x10 DW_TAG_formal_parameter -.set Lset30327, Ldebug_loc1009-Lsection_debug_loc ## DW_AT_location - .long Lset30327 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2970 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x70d0:0x5c DW_TAG_lexical_block -.set Lset30328, Ldebug_ranges358-Ldebug_range ## DW_AT_ranges - .long Lset30328 - .byte 5 ## Abbrev [5] 0x70d5:0x10 DW_TAG_variable -.set Lset30329, Ldebug_loc1013-Lsection_debug_loc ## DW_AT_location - .long Lset30329 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x70e5:0x10 DW_TAG_variable -.set Lset30330, Ldebug_loc1014-Lsection_debug_loc ## DW_AT_location - .long Lset30330 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x70f5:0x10 DW_TAG_variable -.set Lset30331, Ldebug_loc1015-Lsection_debug_loc ## DW_AT_location - .long Lset30331 - .long 3193 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7105:0x26 DW_TAG_lexical_block -.set Lset30332, Ldebug_ranges357-Ldebug_range ## DW_AT_ranges - .long Lset30332 - .byte 5 ## Abbrev [5] 0x710a:0x10 DW_TAG_variable -.set Lset30333, Ldebug_loc1012-Lsection_debug_loc ## DW_AT_location - .long Lset30333 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x711a:0x10 DW_TAG_variable -.set Lset30334, Ldebug_loc1016-Lsection_debug_loc ## DW_AT_location - .long Lset30334 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x712c:0x5a DW_TAG_lexical_block -.set Lset30335, Ldebug_ranges360-Ldebug_range ## DW_AT_ranges - .long Lset30335 - .byte 5 ## Abbrev [5] 0x7131:0x10 DW_TAG_variable -.set Lset30336, Ldebug_loc1017-Lsection_debug_loc ## DW_AT_location - .long Lset30336 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7141:0x44 DW_TAG_lexical_block -.set Lset30337, Ldebug_ranges359-Ldebug_range ## DW_AT_ranges - .long Lset30337 - .byte 5 ## Abbrev [5] 0x7146:0x10 DW_TAG_variable -.set Lset30338, Ldebug_loc1018-Lsection_debug_loc ## DW_AT_location - .long Lset30338 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7156:0x10 DW_TAG_variable -.set Lset30339, Ldebug_loc1019-Lsection_debug_loc ## DW_AT_location - .long Lset30339 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x7166:0x1e DW_TAG_lexical_block - .quad Ltmp7593 ## DW_AT_low_pc -.set Lset30340, Ltmp7595-Ltmp7593 ## DW_AT_high_pc - .long Lset30340 - .byte 5 ## Abbrev [5] 0x7173:0x10 DW_TAG_variable -.set Lset30341, Ldebug_loc1011-Lsection_debug_loc ## DW_AT_location - .long Lset30341 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 8 ## Abbrev [8] 0x7186:0x6a DW_TAG_lexical_block - .quad Ltmp7600 ## DW_AT_low_pc -.set Lset30342, Ltmp7610-Ltmp7600 ## DW_AT_high_pc - .long Lset30342 - .byte 5 ## Abbrev [5] 0x7193:0x10 DW_TAG_variable -.set Lset30343, Ldebug_loc1020-Lsection_debug_loc ## DW_AT_location - .long Lset30343 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x71a3:0x4c DW_TAG_lexical_block - .quad Ltmp7602 ## DW_AT_low_pc -.set Lset30344, Ltmp7610-Ltmp7602 ## DW_AT_high_pc - .long Lset30344 - .byte 5 ## Abbrev [5] 0x71b0:0x10 DW_TAG_variable -.set Lset30345, Ldebug_loc1021-Lsection_debug_loc ## DW_AT_location - .long Lset30345 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x71c0:0x10 DW_TAG_variable -.set Lset30346, Ldebug_loc1022-Lsection_debug_loc ## DW_AT_location - .long Lset30346 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 8 ## Abbrev [8] 0x71d0:0x1e DW_TAG_lexical_block - .quad Ltmp7608 ## DW_AT_low_pc -.set Lset30347, Ltmp7610-Ltmp7608 ## DW_AT_high_pc - .long Lset30347 - .byte 5 ## Abbrev [5] 0x71dd:0x10 DW_TAG_variable -.set Lset30348, Ldebug_loc1010-Lsection_debug_loc ## DW_AT_location - .long Lset30348 - .long 5105 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2971 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x71f0:0x5 DW_TAG_call_site - .long 18702 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x71f6:0x206 DW_TAG_subprogram - .quad Lfunc_begin54 ## DW_AT_low_pc -.set Lset30349, Lfunc_end54-Lfunc_begin54 ## DW_AT_high_pc - .long Lset30349 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 5047 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2981 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x720c:0x10 DW_TAG_formal_parameter -.set Lset30350, Ldebug_loc1023-Lsection_debug_loc ## DW_AT_location - .long Lset30350 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2981 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x721c:0x10 DW_TAG_formal_parameter -.set Lset30351, Ldebug_loc1024-Lsection_debug_loc ## DW_AT_location - .long Lset30351 - .long 4385 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2981 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x722c:0x10 DW_TAG_formal_parameter -.set Lset30352, Ldebug_loc1025-Lsection_debug_loc ## DW_AT_location - .long Lset30352 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2981 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x723c:0x10 DW_TAG_formal_parameter -.set Lset30353, Ldebug_loc1026-Lsection_debug_loc ## DW_AT_location - .long Lset30353 - .long 5080 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2981 ## DW_AT_decl_line - .long 15338 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x724c:0x5c DW_TAG_lexical_block -.set Lset30354, Ldebug_ranges362-Ldebug_range ## DW_AT_ranges - .long Lset30354 - .byte 5 ## Abbrev [5] 0x7251:0x10 DW_TAG_variable -.set Lset30355, Ldebug_loc1029-Lsection_debug_loc ## DW_AT_location - .long Lset30355 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7261:0x10 DW_TAG_variable -.set Lset30356, Ldebug_loc1030-Lsection_debug_loc ## DW_AT_location - .long Lset30356 - .long 3867 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7271:0x10 DW_TAG_variable -.set Lset30357, Ldebug_loc1031-Lsection_debug_loc ## DW_AT_location - .long Lset30357 - .long 5084 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x7281:0x26 DW_TAG_lexical_block -.set Lset30358, Ldebug_ranges361-Ldebug_range ## DW_AT_ranges - .long Lset30358 - .byte 5 ## Abbrev [5] 0x7286:0x10 DW_TAG_variable -.set Lset30359, Ldebug_loc1028-Lsection_debug_loc ## DW_AT_location - .long Lset30359 - .long 5101 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18204 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7296:0x10 DW_TAG_variable -.set Lset30360, Ldebug_loc1032-Lsection_debug_loc ## DW_AT_location - .long Lset30360 - .long 5089 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x72a8:0x9e DW_TAG_lexical_block -.set Lset30361, Ldebug_ranges367-Ldebug_range ## DW_AT_ranges - .long Lset30361 - .byte 5 ## Abbrev [5] 0x72ad:0x10 DW_TAG_variable -.set Lset30362, Ldebug_loc1033-Lsection_debug_loc ## DW_AT_location - .long Lset30362 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x72bd:0x26 DW_TAG_lexical_block -.set Lset30363, Ldebug_ranges363-Ldebug_range ## DW_AT_ranges - .long Lset30363 - .byte 5 ## Abbrev [5] 0x72c2:0x10 DW_TAG_variable -.set Lset30364, Ldebug_loc1034-Lsection_debug_loc ## DW_AT_location - .long Lset30364 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x72d2:0x10 DW_TAG_variable -.set Lset30365, Ldebug_loc1037-Lsection_debug_loc ## DW_AT_location - .long Lset30365 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x72e3:0x26 DW_TAG_lexical_block -.set Lset30366, Ldebug_ranges364-Ldebug_range ## DW_AT_ranges - .long Lset30366 - .byte 5 ## Abbrev [5] 0x72e8:0x10 DW_TAG_variable -.set Lset30367, Ldebug_loc1038-Lsection_debug_loc ## DW_AT_location - .long Lset30367 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x72f8:0x10 DW_TAG_variable -.set Lset30368, Ldebug_loc1039-Lsection_debug_loc ## DW_AT_location - .long Lset30368 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7309:0x3c DW_TAG_lexical_block -.set Lset30369, Ldebug_ranges366-Ldebug_range ## DW_AT_ranges - .long Lset30369 - .byte 5 ## Abbrev [5] 0x730e:0x10 DW_TAG_variable -.set Lset30370, Ldebug_loc1040-Lsection_debug_loc ## DW_AT_location - .long Lset30370 - .long 5117 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14131 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x731e:0x26 DW_TAG_lexical_block -.set Lset30371, Ldebug_ranges365-Ldebug_range ## DW_AT_ranges - .long Lset30371 - .byte 5 ## Abbrev [5] 0x7323:0x10 DW_TAG_variable -.set Lset30372, Ldebug_loc1041-Lsection_debug_loc ## DW_AT_location - .long Lset30372 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7333:0x10 DW_TAG_variable -.set Lset30373, Ldebug_loc1044-Lsection_debug_loc ## DW_AT_location - .long Lset30373 - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18144 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x7346:0x96 DW_TAG_lexical_block -.set Lset30374, Ldebug_ranges371-Ldebug_range ## DW_AT_ranges - .long Lset30374 - .byte 5 ## Abbrev [5] 0x734b:0x10 DW_TAG_variable -.set Lset30375, Ldebug_loc1035-Lsection_debug_loc ## DW_AT_location - .long Lset30375 - .long 3965 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 22456 ## DW_AT_type - .byte 6 ## Abbrev [6] 0x735b:0x22 DW_TAG_lexical_block -.set Lset30376, Ldebug_ranges368-Ldebug_range ## DW_AT_ranges - .long Lset30376 - .byte 5 ## Abbrev [5] 0x7360:0x10 DW_TAG_variable -.set Lset30377, Ldebug_loc1036-Lsection_debug_loc ## DW_AT_location - .long Lset30377 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x7370:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x737d:0x5e DW_TAG_lexical_block -.set Lset30378, Ldebug_ranges370-Ldebug_range ## DW_AT_ranges - .long Lset30378 - .byte 5 ## Abbrev [5] 0x7382:0x10 DW_TAG_variable -.set Lset30379, Ldebug_loc1042-Lsection_debug_loc ## DW_AT_location - .long Lset30379 - .long 3480 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 16971 ## DW_AT_type - .byte 9 ## Abbrev [9] 0x7392:0x26 DW_TAG_inlined_subroutine - .long 19483 ## DW_AT_abstract_origin - .quad Ltmp7696 ## DW_AT_low_pc -.set Lset30380, Ltmp7697-Ltmp7696 ## DW_AT_high_pc - .long Lset30380 - .byte 1 ## DW_AT_call_file - .short 2982 ## DW_AT_call_line - .byte 10 ## Abbrev [10] 0x73a6:0x9 DW_TAG_formal_parameter -.set Lset30381, Ldebug_loc1027-Lsection_debug_loc ## DW_AT_location - .long Lset30381 - .long 19495 ## DW_AT_abstract_origin - .byte 11 ## Abbrev [11] 0x73af:0x8 DW_TAG_formal_parameter - .byte 2 ## DW_AT_location - .byte 145 - .byte 80 - .long 19506 ## DW_AT_abstract_origin - .byte 0 ## End Of Children Mark - .byte 6 ## Abbrev [6] 0x73b8:0x22 DW_TAG_lexical_block -.set Lset30382, Ldebug_ranges369-Ldebug_range ## DW_AT_ranges - .long Lset30382 - .byte 5 ## Abbrev [5] 0x73bd:0x10 DW_TAG_variable -.set Lset30383, Ldebug_loc1043-Lsection_debug_loc ## DW_AT_location - .long Lset30383 - .long 5112 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 14471 ## DW_AT_type - .byte 7 ## Abbrev [7] 0x73cd:0xc DW_TAG_variable - .long 3578 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2982 ## DW_AT_decl_line - .long 18149 ## DW_AT_type - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .byte 56 ## Abbrev [56] 0x73dc:0x5 DW_TAG_call_site - .long 18873 ## DW_AT_call_origin - ## DW_AT_call_tail_call - .byte 15 ## Abbrev [15] 0x73e1:0xd DW_TAG_call_site - .long 18214 ## DW_AT_call_origin - .quad Ltmp7687-Lfunc_begin54 ## DW_AT_call_return_pc - .byte 15 ## Abbrev [15] 0x73ee:0xd DW_TAG_call_site - .long 18428 ## DW_AT_call_origin - .quad Ltmp7697-Lfunc_begin54 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 58 ## Abbrev [58] 0x73fc:0x64 DW_TAG_subprogram - .quad Lfunc_begin55 ## DW_AT_low_pc -.set Lset30384, Lfunc_end55-Lfunc_begin55 ## DW_AT_high_pc - .long Lset30384 - .byte 1 ## DW_AT_frame_base - .byte 86 - ## DW_AT_call_all_calls - .long 5064 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2989 ## DW_AT_decl_line - ## DW_AT_prototyped - ## DW_AT_external - ## DW_AT_APPLE_optimized - .byte 4 ## Abbrev [4] 0x7412:0x10 DW_TAG_formal_parameter -.set Lset30385, Ldebug_loc1045-Lsection_debug_loc ## DW_AT_location - .long Lset30385 - .long 4419 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2989 ## DW_AT_decl_line - .long 15001 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7422:0x10 DW_TAG_formal_parameter -.set Lset30386, Ldebug_loc1046-Lsection_debug_loc ## DW_AT_location - .long Lset30386 - .long 5150 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2989 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 4 ## Abbrev [4] 0x7432:0x10 DW_TAG_formal_parameter -.set Lset30387, Ldebug_loc1047-Lsection_debug_loc ## DW_AT_location - .long Lset30387 - .long 5153 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2989 ## DW_AT_decl_line - .long 14826 ## DW_AT_type - .byte 5 ## Abbrev [5] 0x7442:0x10 DW_TAG_variable -.set Lset30388, Ldebug_loc1048-Lsection_debug_loc ## DW_AT_location - .long Lset30388 - .long 4387 ## DW_AT_name - .byte 1 ## DW_AT_decl_file - .short 2993 ## DW_AT_decl_line - .long 16007 ## DW_AT_type - .byte 15 ## Abbrev [15] 0x7452:0xd DW_TAG_call_site - .long 22473 ## DW_AT_call_origin - .quad Ltmp7743-Lfunc_begin55 ## DW_AT_call_return_pc - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x7460:0xc DW_TAG_array_type - .long 14154 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x7465:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 40 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 16 ## Abbrev [16] 0x746c:0xc DW_TAG_array_type - .long 14154 ## DW_AT_type - .byte 17 ## Abbrev [17] 0x7471:0x6 DW_TAG_subrange_type - .long 13110 ## DW_AT_type - .byte 100 ## DW_AT_count - .byte 0 ## End Of Children Mark - .byte 0 ## End Of Children Mark - .section __DWARF,__debug_ranges,regular,debug -Ldebug_range: -Ldebug_ranges0: -.set Lset30389, Ltmp90-Lfunc_begin0 - .quad Lset30389 -.set Lset30390, Ltmp97-Lfunc_begin0 - .quad Lset30390 -.set Lset30391, Ltmp99-Lfunc_begin0 - .quad Lset30391 -.set Lset30392, Ltmp108-Lfunc_begin0 - .quad Lset30392 - .quad 0 - .quad 0 -Ldebug_ranges1: -.set Lset30393, Ltmp222-Lfunc_begin0 - .quad Lset30393 -.set Lset30394, Ltmp226-Lfunc_begin0 - .quad Lset30394 -.set Lset30395, Ltmp256-Lfunc_begin0 - .quad Lset30395 -.set Lset30396, Ltmp257-Lfunc_begin0 - .quad Lset30396 - .quad 0 - .quad 0 -Ldebug_ranges2: -.set Lset30397, Ltmp183-Lfunc_begin0 - .quad Lset30397 -.set Lset30398, Ltmp191-Lfunc_begin0 - .quad Lset30398 -.set Lset30399, Ltmp196-Lfunc_begin0 - .quad Lset30399 -.set Lset30400, Ltmp197-Lfunc_begin0 - .quad Lset30400 -.set Lset30401, Ltmp217-Lfunc_begin0 - .quad Lset30401 -.set Lset30402, Ltmp230-Lfunc_begin0 - .quad Lset30402 -.set Lset30403, Ltmp251-Lfunc_begin0 - .quad Lset30403 -.set Lset30404, Ltmp254-Lfunc_begin0 - .quad Lset30404 -.set Lset30405, Ltmp256-Lfunc_begin0 - .quad Lset30405 -.set Lset30406, Ltmp257-Lfunc_begin0 - .quad Lset30406 - .quad 0 - .quad 0 -Ldebug_ranges3: -.set Lset30407, Ltmp235-Lfunc_begin0 - .quad Lset30407 -.set Lset30408, Ltmp239-Lfunc_begin0 - .quad Lset30408 -.set Lset30409, Ltmp257-Lfunc_begin0 - .quad Lset30409 -.set Lset30410, Ltmp258-Lfunc_begin0 - .quad Lset30410 - .quad 0 - .quad 0 -Ldebug_ranges4: -.set Lset30411, Ltmp181-Lfunc_begin0 - .quad Lset30411 -.set Lset30412, Ltmp197-Lfunc_begin0 - .quad Lset30412 -.set Lset30413, Ltmp201-Lfunc_begin0 - .quad Lset30413 -.set Lset30414, Ltmp212-Lfunc_begin0 - .quad Lset30414 -.set Lset30415, Ltmp217-Lfunc_begin0 - .quad Lset30415 -.set Lset30416, Ltmp245-Lfunc_begin0 - .quad Lset30416 -.set Lset30417, Ltmp251-Lfunc_begin0 - .quad Lset30417 -.set Lset30418, Ltmp260-Lfunc_begin0 - .quad Lset30418 - .quad 0 - .quad 0 -Ldebug_ranges5: -.set Lset30419, Ltmp267-Lfunc_begin0 - .quad Lset30419 -.set Lset30420, Ltmp272-Lfunc_begin0 - .quad Lset30420 -.set Lset30421, Ltmp312-Lfunc_begin0 - .quad Lset30421 -.set Lset30422, Ltmp313-Lfunc_begin0 - .quad Lset30422 -.set Lset30423, Ltmp322-Lfunc_begin0 - .quad Lset30423 -.set Lset30424, Ltmp323-Lfunc_begin0 - .quad Lset30424 - .quad 0 - .quad 0 -Ldebug_ranges6: -.set Lset30425, Ltmp278-Lfunc_begin0 - .quad Lset30425 -.set Lset30426, Ltmp283-Lfunc_begin0 - .quad Lset30426 -.set Lset30427, Ltmp323-Lfunc_begin0 - .quad Lset30427 -.set Lset30428, Ltmp324-Lfunc_begin0 - .quad Lset30428 - .quad 0 - .quad 0 -Ldebug_ranges7: -.set Lset30429, Ltmp265-Lfunc_begin0 - .quad Lset30429 -.set Lset30430, Ltmp283-Lfunc_begin0 - .quad Lset30430 -.set Lset30431, Ltmp312-Lfunc_begin0 - .quad Lset30431 -.set Lset30432, Ltmp316-Lfunc_begin0 - .quad Lset30432 -.set Lset30433, Ltmp317-Lfunc_begin0 - .quad Lset30433 -.set Lset30434, Ltmp324-Lfunc_begin0 - .quad Lset30434 - .quad 0 - .quad 0 -Ldebug_ranges8: -.set Lset30435, Ltmp293-Lfunc_begin0 - .quad Lset30435 -.set Lset30436, Ltmp300-Lfunc_begin0 - .quad Lset30436 -.set Lset30437, Ltmp325-Lfunc_begin0 - .quad Lset30437 -.set Lset30438, Ltmp326-Lfunc_begin0 - .quad Lset30438 - .quad 0 - .quad 0 -Ldebug_ranges9: -.set Lset30439, Ltmp289-Lfunc_begin0 - .quad Lset30439 -.set Lset30440, Ltmp300-Lfunc_begin0 - .quad Lset30440 -.set Lset30441, Ltmp324-Lfunc_begin0 - .quad Lset30441 -.set Lset30442, Ltmp326-Lfunc_begin0 - .quad Lset30442 - .quad 0 - .quad 0 -Ldebug_ranges10: -.set Lset30443, Ltmp333-Lfunc_begin0 - .quad Lset30443 -.set Lset30444, Ltmp338-Lfunc_begin0 - .quad Lset30444 -.set Lset30445, Ltmp389-Lfunc_begin0 - .quad Lset30445 -.set Lset30446, Ltmp390-Lfunc_begin0 - .quad Lset30446 -.set Lset30447, Ltmp435-Lfunc_begin0 - .quad Lset30447 -.set Lset30448, Ltmp436-Lfunc_begin0 - .quad Lset30448 - .quad 0 - .quad 0 -Ldebug_ranges11: -.set Lset30449, Ltmp350-Lfunc_begin0 - .quad Lset30449 -.set Lset30450, Ltmp355-Lfunc_begin0 - .quad Lset30450 -.set Lset30451, Ltmp436-Lfunc_begin0 - .quad Lset30451 -.set Lset30452, Ltmp437-Lfunc_begin0 - .quad Lset30452 - .quad 0 - .quad 0 -Ldebug_ranges12: -.set Lset30453, Ltmp331-Lfunc_begin0 - .quad Lset30453 -.set Lset30454, Ltmp365-Lfunc_begin0 - .quad Lset30454 -.set Lset30455, Ltmp389-Lfunc_begin0 - .quad Lset30455 -.set Lset30456, Ltmp391-Lfunc_begin0 - .quad Lset30456 -.set Lset30457, Ltmp435-Lfunc_begin0 - .quad Lset30457 -.set Lset30458, Ltmp438-Lfunc_begin0 - .quad Lset30458 - .quad 0 - .quad 0 -Ldebug_ranges13: -.set Lset30459, Ltmp373-Lfunc_begin0 - .quad Lset30459 -.set Lset30460, Ltmp377-Lfunc_begin0 - .quad Lset30460 -.set Lset30461, Ltmp387-Lfunc_begin0 - .quad Lset30461 -.set Lset30462, Ltmp389-Lfunc_begin0 - .quad Lset30462 -.set Lset30463, Ltmp419-Lfunc_begin0 - .quad Lset30463 -.set Lset30464, Ltmp424-Lfunc_begin0 - .quad Lset30464 - .quad 0 - .quad 0 -Ldebug_ranges14: -.set Lset30465, Ltmp392-Lfunc_begin0 - .quad Lset30465 -.set Lset30466, Ltmp397-Lfunc_begin0 - .quad Lset30466 -.set Lset30467, Ltmp418-Lfunc_begin0 - .quad Lset30467 -.set Lset30468, Ltmp419-Lfunc_begin0 - .quad Lset30468 - .quad 0 - .quad 0 -Ldebug_ranges15: -.set Lset30469, Ltmp401-Lfunc_begin0 - .quad Lset30469 -.set Lset30470, Ltmp408-Lfunc_begin0 - .quad Lset30470 -.set Lset30471, Ltmp416-Lfunc_begin0 - .quad Lset30471 -.set Lset30472, Ltmp418-Lfunc_begin0 - .quad Lset30472 -.set Lset30473, Ltmp439-Lfunc_begin0 - .quad Lset30473 -.set Lset30474, Ltmp440-Lfunc_begin0 - .quad Lset30474 - .quad 0 - .quad 0 -Ldebug_ranges16: -.set Lset30475, Ltmp397-Lfunc_begin0 - .quad Lset30475 -.set Lset30476, Ltmp408-Lfunc_begin0 - .quad Lset30476 -.set Lset30477, Ltmp416-Lfunc_begin0 - .quad Lset30477 -.set Lset30478, Ltmp418-Lfunc_begin0 - .quad Lset30478 -.set Lset30479, Ltmp439-Lfunc_begin0 - .quad Lset30479 -.set Lset30480, Ltmp441-Lfunc_begin0 - .quad Lset30480 -.set Lset30481, Ltmp442-Lfunc_begin0 - .quad Lset30481 -.set Lset30482, Ltmp443-Lfunc_begin0 - .quad Lset30482 - .quad 0 - .quad 0 -Ldebug_ranges17: -.set Lset30483, Ltmp366-Lfunc_begin0 - .quad Lset30483 -.set Lset30484, Ltmp377-Lfunc_begin0 - .quad Lset30484 -.set Lset30485, Ltmp387-Lfunc_begin0 - .quad Lset30485 -.set Lset30486, Ltmp389-Lfunc_begin0 - .quad Lset30486 -.set Lset30487, Ltmp392-Lfunc_begin0 - .quad Lset30487 -.set Lset30488, Ltmp408-Lfunc_begin0 - .quad Lset30488 -.set Lset30489, Ltmp416-Lfunc_begin0 - .quad Lset30489 -.set Lset30490, Ltmp424-Lfunc_begin0 - .quad Lset30490 -.set Lset30491, Ltmp438-Lfunc_begin0 - .quad Lset30491 -.set Lset30492, Ltmp441-Lfunc_begin0 - .quad Lset30492 -.set Lset30493, Ltmp442-Lfunc_begin0 - .quad Lset30493 -.set Lset30494, Ltmp443-Lfunc_begin0 - .quad Lset30494 - .quad 0 - .quad 0 -Ldebug_ranges18: -.set Lset30495, Ltmp384-Lfunc_begin0 - .quad Lset30495 -.set Lset30496, Ltmp387-Lfunc_begin0 - .quad Lset30496 -.set Lset30497, Ltmp424-Lfunc_begin0 - .quad Lset30497 -.set Lset30498, Ltmp429-Lfunc_begin0 - .quad Lset30498 - .quad 0 - .quad 0 -Ldebug_ranges19: -.set Lset30499, Ltmp412-Lfunc_begin0 - .quad Lset30499 -.set Lset30500, Ltmp416-Lfunc_begin0 - .quad Lset30500 -.set Lset30501, Ltmp429-Lfunc_begin0 - .quad Lset30501 -.set Lset30502, Ltmp431-Lfunc_begin0 - .quad Lset30502 - .quad 0 - .quad 0 -Ldebug_ranges20: -.set Lset30503, Ltmp408-Lfunc_begin0 - .quad Lset30503 -.set Lset30504, Ltmp416-Lfunc_begin0 - .quad Lset30504 -.set Lset30505, Ltmp429-Lfunc_begin0 - .quad Lset30505 -.set Lset30506, Ltmp431-Lfunc_begin0 - .quad Lset30506 -.set Lset30507, Ltmp441-Lfunc_begin0 - .quad Lset30507 -.set Lset30508, Ltmp442-Lfunc_begin0 - .quad Lset30508 - .quad 0 - .quad 0 -Ldebug_ranges21: -.set Lset30509, Ltmp378-Lfunc_begin0 - .quad Lset30509 -.set Lset30510, Ltmp387-Lfunc_begin0 - .quad Lset30510 -.set Lset30511, Ltmp408-Lfunc_begin0 - .quad Lset30511 -.set Lset30512, Ltmp416-Lfunc_begin0 - .quad Lset30512 -.set Lset30513, Ltmp424-Lfunc_begin0 - .quad Lset30513 -.set Lset30514, Ltmp431-Lfunc_begin0 - .quad Lset30514 -.set Lset30515, Ltmp441-Lfunc_begin0 - .quad Lset30515 -.set Lset30516, Ltmp442-Lfunc_begin0 - .quad Lset30516 - .quad 0 - .quad 0 -Ldebug_ranges22: -.set Lset30517, Ltmp459-Lfunc_begin0 - .quad Lset30517 -.set Lset30518, Ltmp465-Lfunc_begin0 - .quad Lset30518 -.set Lset30519, Ltmp469-Lfunc_begin0 - .quad Lset30519 -.set Lset30520, Ltmp487-Lfunc_begin0 - .quad Lset30520 - .quad 0 - .quad 0 -Ldebug_ranges23: -.set Lset30521, Ltmp474-Lfunc_begin0 - .quad Lset30521 -.set Lset30522, Ltmp479-Lfunc_begin0 - .quad Lset30522 -.set Lset30523, Ltmp482-Lfunc_begin0 - .quad Lset30523 -.set Lset30524, Ltmp487-Lfunc_begin0 - .quad Lset30524 - .quad 0 - .quad 0 -Ldebug_ranges24: -.set Lset30525, Ltmp509-Lfunc_begin0 - .quad Lset30525 -.set Lset30526, Ltmp511-Lfunc_begin0 - .quad Lset30526 -.set Lset30527, Ltmp523-Lfunc_begin0 - .quad Lset30527 -.set Lset30528, Ltmp528-Lfunc_begin0 - .quad Lset30528 - .quad 0 - .quad 0 -Ldebug_ranges25: -.set Lset30529, Ltmp496-Lfunc_begin0 - .quad Lset30529 -.set Lset30530, Ltmp499-Lfunc_begin0 - .quad Lset30530 -.set Lset30531, Ltmp507-Lfunc_begin0 - .quad Lset30531 -.set Lset30532, Ltmp511-Lfunc_begin0 - .quad Lset30532 -.set Lset30533, Ltmp523-Lfunc_begin0 - .quad Lset30533 -.set Lset30534, Ltmp528-Lfunc_begin0 - .quad Lset30534 -.set Lset30535, Ltmp554-Lfunc_begin0 - .quad Lset30535 -.set Lset30536, Ltmp558-Lfunc_begin0 - .quad Lset30536 - .quad 0 - .quad 0 -Ldebug_ranges26: -.set Lset30537, Ltmp517-Lfunc_begin0 - .quad Lset30537 -.set Lset30538, Ltmp519-Lfunc_begin0 - .quad Lset30538 -.set Lset30539, Ltmp534-Lfunc_begin0 - .quad Lset30539 -.set Lset30540, Ltmp538-Lfunc_begin0 - .quad Lset30540 -.set Lset30541, Ltmp544-Lfunc_begin0 - .quad Lset30541 -.set Lset30542, Ltmp545-Lfunc_begin0 - .quad Lset30542 - .quad 0 - .quad 0 -Ldebug_ranges27: -.set Lset30543, Ltmp499-Lfunc_begin0 - .quad Lset30543 -.set Lset30544, Ltmp500-Lfunc_begin0 - .quad Lset30544 -.set Lset30545, Ltmp502-Lfunc_begin0 - .quad Lset30545 -.set Lset30546, Ltmp506-Lfunc_begin0 - .quad Lset30546 -.set Lset30547, Ltmp511-Lfunc_begin0 - .quad Lset30547 -.set Lset30548, Ltmp512-Lfunc_begin0 - .quad Lset30548 -.set Lset30549, Ltmp513-Lfunc_begin0 - .quad Lset30549 -.set Lset30550, Ltmp521-Lfunc_begin0 - .quad Lset30550 -.set Lset30551, Ltmp528-Lfunc_begin0 - .quad Lset30551 -.set Lset30552, Ltmp529-Lfunc_begin0 - .quad Lset30552 -.set Lset30553, Ltmp531-Lfunc_begin0 - .quad Lset30553 -.set Lset30554, Ltmp532-Lfunc_begin0 - .quad Lset30554 -.set Lset30555, Ltmp534-Lfunc_begin0 - .quad Lset30555 -.set Lset30556, Ltmp540-Lfunc_begin0 - .quad Lset30556 -.set Lset30557, Ltmp542-Lfunc_begin0 - .quad Lset30557 -.set Lset30558, Ltmp543-Lfunc_begin0 - .quad Lset30558 -.set Lset30559, Ltmp544-Lfunc_begin0 - .quad Lset30559 -.set Lset30560, Ltmp547-Lfunc_begin0 - .quad Lset30560 -.set Lset30561, Ltmp551-Lfunc_begin0 - .quad Lset30561 -.set Lset30562, Ltmp554-Lfunc_begin0 - .quad Lset30562 -.set Lset30563, Ltmp558-Lfunc_begin0 - .quad Lset30563 -.set Lset30564, Ltmp561-Lfunc_begin0 - .quad Lset30564 - .quad 0 - .quad 0 -Ldebug_ranges28: -.set Lset30565, Ltmp577-Lfunc_begin0 - .quad Lset30565 -.set Lset30566, Ltmp583-Lfunc_begin0 - .quad Lset30566 -.set Lset30567, Ltmp594-Lfunc_begin0 - .quad Lset30567 -.set Lset30568, Ltmp615-Lfunc_begin0 - .quad Lset30568 - .quad 0 - .quad 0 -Ldebug_ranges29: -.set Lset30569, Ltmp599-Lfunc_begin0 - .quad Lset30569 -.set Lset30570, Ltmp604-Lfunc_begin0 - .quad Lset30570 -.set Lset30571, Ltmp607-Lfunc_begin0 - .quad Lset30571 -.set Lset30572, Ltmp615-Lfunc_begin0 - .quad Lset30572 - .quad 0 - .quad 0 -Ldebug_ranges30: -.set Lset30573, Ltmp637-Lfunc_begin0 - .quad Lset30573 -.set Lset30574, Ltmp639-Lfunc_begin0 - .quad Lset30574 -.set Lset30575, Ltmp651-Lfunc_begin0 - .quad Lset30575 -.set Lset30576, Ltmp655-Lfunc_begin0 - .quad Lset30576 -.set Lset30577, Ltmp670-Lfunc_begin0 - .quad Lset30577 -.set Lset30578, Ltmp671-Lfunc_begin0 - .quad Lset30578 - .quad 0 - .quad 0 -Ldebug_ranges31: -.set Lset30579, Ltmp624-Lfunc_begin0 - .quad Lset30579 -.set Lset30580, Ltmp627-Lfunc_begin0 - .quad Lset30580 -.set Lset30581, Ltmp635-Lfunc_begin0 - .quad Lset30581 -.set Lset30582, Ltmp639-Lfunc_begin0 - .quad Lset30582 -.set Lset30583, Ltmp651-Lfunc_begin0 - .quad Lset30583 -.set Lset30584, Ltmp655-Lfunc_begin0 - .quad Lset30584 -.set Lset30585, Ltmp670-Lfunc_begin0 - .quad Lset30585 -.set Lset30586, Ltmp671-Lfunc_begin0 - .quad Lset30586 -.set Lset30587, Ltmp683-Lfunc_begin0 - .quad Lset30587 -.set Lset30588, Ltmp687-Lfunc_begin0 - .quad Lset30588 - .quad 0 - .quad 0 -Ldebug_ranges32: -.set Lset30589, Ltmp645-Lfunc_begin0 - .quad Lset30589 -.set Lset30590, Ltmp647-Lfunc_begin0 - .quad Lset30590 -.set Lset30591, Ltmp662-Lfunc_begin0 - .quad Lset30591 -.set Lset30592, Ltmp667-Lfunc_begin0 - .quad Lset30592 - .quad 0 - .quad 0 -Ldebug_ranges33: -.set Lset30593, Ltmp627-Lfunc_begin0 - .quad Lset30593 -.set Lset30594, Ltmp628-Lfunc_begin0 - .quad Lset30594 -.set Lset30595, Ltmp630-Lfunc_begin0 - .quad Lset30595 -.set Lset30596, Ltmp634-Lfunc_begin0 - .quad Lset30596 -.set Lset30597, Ltmp639-Lfunc_begin0 - .quad Lset30597 -.set Lset30598, Ltmp640-Lfunc_begin0 - .quad Lset30598 -.set Lset30599, Ltmp641-Lfunc_begin0 - .quad Lset30599 -.set Lset30600, Ltmp649-Lfunc_begin0 - .quad Lset30600 -.set Lset30601, Ltmp656-Lfunc_begin0 - .quad Lset30601 -.set Lset30602, Ltmp657-Lfunc_begin0 - .quad Lset30602 -.set Lset30603, Ltmp659-Lfunc_begin0 - .quad Lset30603 -.set Lset30604, Ltmp660-Lfunc_begin0 - .quad Lset30604 -.set Lset30605, Ltmp662-Lfunc_begin0 - .quad Lset30605 -.set Lset30606, Ltmp669-Lfunc_begin0 - .quad Lset30606 -.set Lset30607, Ltmp671-Lfunc_begin0 - .quad Lset30607 -.set Lset30608, Ltmp672-Lfunc_begin0 - .quad Lset30608 -.set Lset30609, Ltmp674-Lfunc_begin0 - .quad Lset30609 -.set Lset30610, Ltmp676-Lfunc_begin0 - .quad Lset30610 -.set Lset30611, Ltmp680-Lfunc_begin0 - .quad Lset30611 -.set Lset30612, Ltmp683-Lfunc_begin0 - .quad Lset30612 -.set Lset30613, Ltmp687-Lfunc_begin0 - .quad Lset30613 -.set Lset30614, Ltmp690-Lfunc_begin0 - .quad Lset30614 - .quad 0 - .quad 0 -Ldebug_ranges34: -.set Lset30615, Ltmp875-Lfunc_begin0 - .quad Lset30615 -.set Lset30616, Ltmp886-Lfunc_begin0 - .quad Lset30616 -.set Lset30617, Ltmp932-Lfunc_begin0 - .quad Lset30617 -.set Lset30618, Ltmp935-Lfunc_begin0 - .quad Lset30618 - .quad 0 - .quad 0 -Ldebug_ranges35: -.set Lset30619, Ltmp889-Lfunc_begin0 - .quad Lset30619 -.set Lset30620, Ltmp900-Lfunc_begin0 - .quad Lset30620 -.set Lset30621, Ltmp930-Lfunc_begin0 - .quad Lset30621 -.set Lset30622, Ltmp932-Lfunc_begin0 - .quad Lset30622 - .quad 0 - .quad 0 -Ldebug_ranges36: -.set Lset30623, Ltmp890-Lfunc_begin0 - .quad Lset30623 -.set Lset30624, Ltmp898-Lfunc_begin0 - .quad Lset30624 -.set Lset30625, Ltmp899-Lfunc_begin0 - .quad Lset30625 -.set Lset30626, Ltmp900-Lfunc_begin0 - .quad Lset30626 -.set Lset30627, Ltmp930-Lfunc_begin0 - .quad Lset30627 -.set Lset30628, Ltmp932-Lfunc_begin0 - .quad Lset30628 - .quad 0 - .quad 0 -Ldebug_ranges37: -.set Lset30629, Ltmp889-Lfunc_begin0 - .quad Lset30629 -.set Lset30630, Ltmp903-Lfunc_begin0 - .quad Lset30630 -.set Lset30631, Ltmp930-Lfunc_begin0 - .quad Lset30631 -.set Lset30632, Ltmp932-Lfunc_begin0 - .quad Lset30632 - .quad 0 - .quad 0 -Ldebug_ranges38: -.set Lset30633, Ltmp907-Lfunc_begin0 - .quad Lset30633 -.set Lset30634, Ltmp916-Lfunc_begin0 - .quad Lset30634 -.set Lset30635, Ltmp917-Lfunc_begin0 - .quad Lset30635 -.set Lset30636, Ltmp918-Lfunc_begin0 - .quad Lset30636 - .quad 0 - .quad 0 -Ldebug_ranges39: -.set Lset30637, Ltmp919-Lfunc_begin0 - .quad Lset30637 -.set Lset30638, Ltmp924-Lfunc_begin0 - .quad Lset30638 -.set Lset30639, Ltmp935-Lfunc_begin0 - .quad Lset30639 -.set Lset30640, Ltmp936-Lfunc_begin0 - .quad Lset30640 -.set Lset30641, Ltmp938-Lfunc_begin0 - .quad Lset30641 -.set Lset30642, Ltmp939-Lfunc_begin0 - .quad Lset30642 - .quad 0 - .quad 0 -Ldebug_ranges40: -.set Lset30643, Ltmp861-Lfunc_begin0 - .quad Lset30643 -.set Lset30644, Ltmp862-Lfunc_begin0 - .quad Lset30644 -.set Lset30645, Ltmp869-Lfunc_begin0 - .quad Lset30645 -.set Lset30646, Ltmp924-Lfunc_begin0 - .quad Lset30646 -.set Lset30647, Ltmp930-Lfunc_begin0 - .quad Lset30647 -.set Lset30648, Ltmp939-Lfunc_begin0 - .quad Lset30648 - .quad 0 - .quad 0 -Ldebug_ranges41: -.set Lset30649, Ltmp846-Lfunc_begin0 - .quad Lset30649 -.set Lset30650, Ltmp867-Lfunc_begin0 - .quad Lset30650 -.set Lset30651, Ltmp868-Lfunc_begin0 - .quad Lset30651 -.set Lset30652, Ltmp927-Lfunc_begin0 - .quad Lset30652 -.set Lset30653, Ltmp930-Lfunc_begin0 - .quad Lset30653 -.set Lset30654, Ltmp941-Lfunc_begin0 - .quad Lset30654 - .quad 0 - .quad 0 -Ldebug_ranges42: -.set Lset30655, Ltmp949-Lfunc_begin0 - .quad Lset30655 -.set Lset30656, Ltmp953-Lfunc_begin0 - .quad Lset30656 -.set Lset30657, Ltmp980-Lfunc_begin0 - .quad Lset30657 -.set Lset30658, Ltmp982-Lfunc_begin0 - .quad Lset30658 - .quad 0 - .quad 0 -Ldebug_ranges43: -.set Lset30659, Ltmp960-Lfunc_begin0 - .quad Lset30659 -.set Lset30660, Ltmp963-Lfunc_begin0 - .quad Lset30660 -.set Lset30661, Ltmp983-Lfunc_begin0 - .quad Lset30661 -.set Lset30662, Ltmp985-Lfunc_begin0 - .quad Lset30662 - .quad 0 - .quad 0 -Ldebug_ranges44: -.set Lset30663, Ltmp963-Lfunc_begin0 - .quad Lset30663 -.set Lset30664, Ltmp966-Lfunc_begin0 - .quad Lset30664 -.set Lset30665, Ltmp985-Lfunc_begin0 - .quad Lset30665 -.set Lset30666, Ltmp987-Lfunc_begin0 - .quad Lset30666 - .quad 0 - .quad 0 -Ldebug_ranges45: -.set Lset30667, Ltmp966-Lfunc_begin0 - .quad Lset30667 -.set Lset30668, Ltmp975-Lfunc_begin0 - .quad Lset30668 -.set Lset30669, Ltmp987-Lfunc_begin0 - .quad Lset30669 -.set Lset30670, Ltmp989-Lfunc_begin0 - .quad Lset30670 - .quad 0 - .quad 0 -Ldebug_ranges46: -.set Lset30671, Ltmp1043-Lfunc_begin0 - .quad Lset30671 -.set Lset30672, Ltmp1047-Lfunc_begin0 - .quad Lset30672 -.set Lset30673, Ltmp1071-Lfunc_begin0 - .quad Lset30673 -.set Lset30674, Ltmp1079-Lfunc_begin0 - .quad Lset30674 -.set Lset30675, Ltmp1083-Lfunc_begin0 - .quad Lset30675 -.set Lset30676, Ltmp1087-Lfunc_begin0 - .quad Lset30676 -.set Lset30677, Ltmp1088-Lfunc_begin0 - .quad Lset30677 -.set Lset30678, Ltmp1090-Lfunc_begin0 - .quad Lset30678 - .quad 0 - .quad 0 -Ldebug_ranges47: -.set Lset30679, Ltmp1048-Lfunc_begin0 - .quad Lset30679 -.set Lset30680, Ltmp1051-Lfunc_begin0 - .quad Lset30680 -.set Lset30681, Ltmp1090-Lfunc_begin0 - .quad Lset30681 -.set Lset30682, Ltmp1092-Lfunc_begin0 - .quad Lset30682 - .quad 0 - .quad 0 -Ldebug_ranges48: -.set Lset30683, Ltmp1047-Lfunc_begin0 - .quad Lset30683 -.set Lset30684, Ltmp1064-Lfunc_begin0 - .quad Lset30684 -.set Lset30685, Ltmp1090-Lfunc_begin0 - .quad Lset30685 -.set Lset30686, Ltmp1092-Lfunc_begin0 - .quad Lset30686 - .quad 0 - .quad 0 -Ldebug_ranges49: -.set Lset30687, Ltmp1112-Lfunc_begin0 - .quad Lset30687 -.set Lset30688, Ltmp1124-Lfunc_begin0 - .quad Lset30688 -.set Lset30689, Ltmp1131-Lfunc_begin0 - .quad Lset30689 -.set Lset30690, Ltmp1137-Lfunc_begin0 - .quad Lset30690 -.set Lset30691, Ltmp1144-Lfunc_begin0 - .quad Lset30691 -.set Lset30692, Ltmp1148-Lfunc_begin0 - .quad Lset30692 - .quad 0 - .quad 0 -Ldebug_ranges50: -.set Lset30693, Ltmp1116-Lfunc_begin0 - .quad Lset30693 -.set Lset30694, Ltmp1124-Lfunc_begin0 - .quad Lset30694 -.set Lset30695, Ltmp1131-Lfunc_begin0 - .quad Lset30695 -.set Lset30696, Ltmp1137-Lfunc_begin0 - .quad Lset30696 - .quad 0 - .quad 0 -Ldebug_ranges51: -.set Lset30697, Ltmp5901-Lfunc_begin0 - .quad Lset30697 -.set Lset30698, Ltmp5913-Lfunc_begin0 - .quad Lset30698 -.set Lset30699, Ltmp6416-Lfunc_begin0 - .quad Lset30699 -.set Lset30700, Ltmp6420-Lfunc_begin0 - .quad Lset30700 - .quad 0 - .quad 0 -Ldebug_ranges52: -.set Lset30701, Ltmp1200-Lfunc_begin0 - .quad Lset30701 -.set Lset30702, Ltmp1208-Lfunc_begin0 - .quad Lset30702 -.set Lset30703, Ltmp5938-Lfunc_begin0 - .quad Lset30703 -.set Lset30704, Ltmp5940-Lfunc_begin0 - .quad Lset30704 - .quad 0 - .quad 0 -Ldebug_ranges53: -.set Lset30705, Ltmp1225-Lfunc_begin0 - .quad Lset30705 -.set Lset30706, Ltmp1230-Lfunc_begin0 - .quad Lset30706 -.set Lset30707, Ltmp5940-Lfunc_begin0 - .quad Lset30707 -.set Lset30708, Ltmp5941-Lfunc_begin0 - .quad Lset30708 - .quad 0 - .quad 0 -Ldebug_ranges54: -.set Lset30709, Ltmp1216-Lfunc_begin0 - .quad Lset30709 -.set Lset30710, Ltmp1232-Lfunc_begin0 - .quad Lset30710 -.set Lset30711, Ltmp1233-Lfunc_begin0 - .quad Lset30711 -.set Lset30712, Ltmp1235-Lfunc_begin0 - .quad Lset30712 -.set Lset30713, Ltmp5940-Lfunc_begin0 - .quad Lset30713 -.set Lset30714, Ltmp5941-Lfunc_begin0 - .quad Lset30714 - .quad 0 - .quad 0 -Ldebug_ranges55: -.set Lset30715, Ltmp1247-Lfunc_begin0 - .quad Lset30715 -.set Lset30716, Ltmp1252-Lfunc_begin0 - .quad Lset30716 -.set Lset30717, Ltmp6050-Lfunc_begin0 - .quad Lset30717 -.set Lset30718, Ltmp6051-Lfunc_begin0 - .quad Lset30718 - .quad 0 - .quad 0 -Ldebug_ranges56: -.set Lset30719, Ltmp1238-Lfunc_begin0 - .quad Lset30719 -.set Lset30720, Ltmp1255-Lfunc_begin0 - .quad Lset30720 -.set Lset30721, Ltmp1256-Lfunc_begin0 - .quad Lset30721 -.set Lset30722, Ltmp1258-Lfunc_begin0 - .quad Lset30722 -.set Lset30723, Ltmp6050-Lfunc_begin0 - .quad Lset30723 -.set Lset30724, Ltmp6051-Lfunc_begin0 - .quad Lset30724 -.set Lset30725, Ltmp6143-Lfunc_begin0 - .quad Lset30725 -.set Lset30726, Ltmp6144-Lfunc_begin0 - .quad Lset30726 - .quad 0 - .quad 0 -Ldebug_ranges57: -.set Lset30727, Ltmp1282-Lfunc_begin0 - .quad Lset30727 -.set Lset30728, Ltmp1310-Lfunc_begin0 - .quad Lset30728 -.set Lset30729, Ltmp1311-Lfunc_begin0 - .quad Lset30729 -.set Lset30730, Ltmp1313-Lfunc_begin0 - .quad Lset30730 - .quad 0 - .quad 0 -Ldebug_ranges58: -.set Lset30731, Ltmp1323-Lfunc_begin0 - .quad Lset30731 -.set Lset30732, Ltmp1330-Lfunc_begin0 - .quad Lset30732 -.set Lset30733, Ltmp6165-Lfunc_begin0 - .quad Lset30733 -.set Lset30734, Ltmp6166-Lfunc_begin0 - .quad Lset30734 - .quad 0 - .quad 0 -Ldebug_ranges59: -.set Lset30735, Ltmp1315-Lfunc_begin0 - .quad Lset30735 -.set Lset30736, Ltmp1333-Lfunc_begin0 - .quad Lset30736 -.set Lset30737, Ltmp1334-Lfunc_begin0 - .quad Lset30737 -.set Lset30738, Ltmp1336-Lfunc_begin0 - .quad Lset30738 -.set Lset30739, Ltmp6165-Lfunc_begin0 - .quad Lset30739 -.set Lset30740, Ltmp6166-Lfunc_begin0 - .quad Lset30740 - .quad 0 - .quad 0 -Ldebug_ranges60: -.set Lset30741, Ltmp1349-Lfunc_begin0 - .quad Lset30741 -.set Lset30742, Ltmp1355-Lfunc_begin0 - .quad Lset30742 -.set Lset30743, Ltmp6166-Lfunc_begin0 - .quad Lset30743 -.set Lset30744, Ltmp6168-Lfunc_begin0 - .quad Lset30744 - .quad 0 - .quad 0 -Ldebug_ranges61: -.set Lset30745, Ltmp1339-Lfunc_begin0 - .quad Lset30745 -.set Lset30746, Ltmp1364-Lfunc_begin0 - .quad Lset30746 -.set Lset30747, Ltmp1365-Lfunc_begin0 - .quad Lset30747 -.set Lset30748, Ltmp1367-Lfunc_begin0 - .quad Lset30748 -.set Lset30749, Ltmp6166-Lfunc_begin0 - .quad Lset30749 -.set Lset30750, Ltmp6168-Lfunc_begin0 - .quad Lset30750 - .quad 0 - .quad 0 -Ldebug_ranges62: -.set Lset30751, Ltmp1402-Lfunc_begin0 - .quad Lset30751 -.set Lset30752, Ltmp1404-Lfunc_begin0 - .quad Lset30752 -.set Lset30753, Ltmp1425-Lfunc_begin0 - .quad Lset30753 -.set Lset30754, Ltmp1430-Lfunc_begin0 - .quad Lset30754 -.set Lset30755, Ltmp6302-Lfunc_begin0 - .quad Lset30755 -.set Lset30756, Ltmp6304-Lfunc_begin0 - .quad Lset30756 - .quad 0 - .quad 0 -Ldebug_ranges63: -.set Lset30757, Ltmp1447-Lfunc_begin0 - .quad Lset30757 -.set Lset30758, Ltmp1454-Lfunc_begin0 - .quad Lset30758 -.set Lset30759, Ltmp6168-Lfunc_begin0 - .quad Lset30759 -.set Lset30760, Ltmp6169-Lfunc_begin0 - .quad Lset30760 - .quad 0 - .quad 0 -Ldebug_ranges64: -.set Lset30761, Ltmp1402-Lfunc_begin0 - .quad Lset30761 -.set Lset30762, Ltmp1406-Lfunc_begin0 - .quad Lset30762 -.set Lset30763, Ltmp1423-Lfunc_begin0 - .quad Lset30763 -.set Lset30764, Ltmp1454-Lfunc_begin0 - .quad Lset30764 -.set Lset30765, Ltmp6168-Lfunc_begin0 - .quad Lset30765 -.set Lset30766, Ltmp6169-Lfunc_begin0 - .quad Lset30766 -.set Lset30767, Ltmp6302-Lfunc_begin0 - .quad Lset30767 -.set Lset30768, Ltmp6304-Lfunc_begin0 - .quad Lset30768 - .quad 0 - .quad 0 -Ldebug_ranges65: -.set Lset30769, Ltmp1369-Lfunc_begin0 - .quad Lset30769 -.set Lset30770, Ltmp1457-Lfunc_begin0 - .quad Lset30770 -.set Lset30771, Ltmp1458-Lfunc_begin0 - .quad Lset30771 -.set Lset30772, Ltmp1460-Lfunc_begin0 - .quad Lset30772 -.set Lset30773, Ltmp6168-Lfunc_begin0 - .quad Lset30773 -.set Lset30774, Ltmp6169-Lfunc_begin0 - .quad Lset30774 -.set Lset30775, Ltmp6301-Lfunc_begin0 - .quad Lset30775 -.set Lset30776, Ltmp6304-Lfunc_begin0 - .quad Lset30776 - .quad 0 - .quad 0 -Ldebug_ranges66: -.set Lset30777, Ltmp1497-Lfunc_begin0 - .quad Lset30777 -.set Lset30778, Ltmp1499-Lfunc_begin0 - .quad Lset30778 -.set Lset30779, Ltmp1520-Lfunc_begin0 - .quad Lset30779 -.set Lset30780, Ltmp1525-Lfunc_begin0 - .quad Lset30780 -.set Lset30781, Ltmp5941-Lfunc_begin0 - .quad Lset30781 -.set Lset30782, Ltmp5942-Lfunc_begin0 - .quad Lset30782 - .quad 0 - .quad 0 -Ldebug_ranges67: -.set Lset30783, Ltmp1542-Lfunc_begin0 - .quad Lset30783 -.set Lset30784, Ltmp1549-Lfunc_begin0 - .quad Lset30784 -.set Lset30785, Ltmp5942-Lfunc_begin0 - .quad Lset30785 -.set Lset30786, Ltmp5943-Lfunc_begin0 - .quad Lset30786 - .quad 0 - .quad 0 -Ldebug_ranges68: -.set Lset30787, Ltmp1497-Lfunc_begin0 - .quad Lset30787 -.set Lset30788, Ltmp1501-Lfunc_begin0 - .quad Lset30788 -.set Lset30789, Ltmp1518-Lfunc_begin0 - .quad Lset30789 -.set Lset30790, Ltmp1549-Lfunc_begin0 - .quad Lset30790 -.set Lset30791, Ltmp5941-Lfunc_begin0 - .quad Lset30791 -.set Lset30792, Ltmp5943-Lfunc_begin0 - .quad Lset30792 - .quad 0 - .quad 0 -Ldebug_ranges69: -.set Lset30793, Ltmp1464-Lfunc_begin0 - .quad Lset30793 -.set Lset30794, Ltmp1552-Lfunc_begin0 - .quad Lset30794 -.set Lset30795, Ltmp1553-Lfunc_begin0 - .quad Lset30795 -.set Lset30796, Ltmp1555-Lfunc_begin0 - .quad Lset30796 -.set Lset30797, Ltmp5941-Lfunc_begin0 - .quad Lset30797 -.set Lset30798, Ltmp5943-Lfunc_begin0 - .quad Lset30798 -.set Lset30799, Ltmp6171-Lfunc_begin0 - .quad Lset30799 -.set Lset30800, Ltmp6173-Lfunc_begin0 - .quad Lset30800 - .quad 0 - .quad 0 -Ldebug_ranges70: -.set Lset30801, Ltmp1567-Lfunc_begin0 - .quad Lset30801 -.set Lset30802, Ltmp1571-Lfunc_begin0 - .quad Lset30802 -.set Lset30803, Ltmp1587-Lfunc_begin0 - .quad Lset30803 -.set Lset30804, Ltmp1589-Lfunc_begin0 - .quad Lset30804 -.set Lset30805, Ltmp1641-Lfunc_begin0 - .quad Lset30805 -.set Lset30806, Ltmp1645-Lfunc_begin0 - .quad Lset30806 - .quad 0 - .quad 0 -Ldebug_ranges71: -.set Lset30807, Ltmp1608-Lfunc_begin0 - .quad Lset30807 -.set Lset30808, Ltmp1613-Lfunc_begin0 - .quad Lset30808 -.set Lset30809, Ltmp1640-Lfunc_begin0 - .quad Lset30809 -.set Lset30810, Ltmp1641-Lfunc_begin0 - .quad Lset30810 - .quad 0 - .quad 0 -Ldebug_ranges72: -.set Lset30811, Ltmp1619-Lfunc_begin0 - .quad Lset30811 -.set Lset30812, Ltmp1626-Lfunc_begin0 - .quad Lset30812 -.set Lset30813, Ltmp1639-Lfunc_begin0 - .quad Lset30813 -.set Lset30814, Ltmp1640-Lfunc_begin0 - .quad Lset30814 -.set Lset30815, Ltmp1645-Lfunc_begin0 - .quad Lset30815 -.set Lset30816, Ltmp1649-Lfunc_begin0 - .quad Lset30816 -.set Lset30817, Ltmp6051-Lfunc_begin0 - .quad Lset30817 -.set Lset30818, Ltmp6052-Lfunc_begin0 - .quad Lset30818 - .quad 0 - .quad 0 -Ldebug_ranges73: -.set Lset30819, Ltmp1615-Lfunc_begin0 - .quad Lset30819 -.set Lset30820, Ltmp1626-Lfunc_begin0 - .quad Lset30820 -.set Lset30821, Ltmp1639-Lfunc_begin0 - .quad Lset30821 -.set Lset30822, Ltmp1640-Lfunc_begin0 - .quad Lset30822 -.set Lset30823, Ltmp1645-Lfunc_begin0 - .quad Lset30823 -.set Lset30824, Ltmp1649-Lfunc_begin0 - .quad Lset30824 -.set Lset30825, Ltmp6051-Lfunc_begin0 - .quad Lset30825 -.set Lset30826, Ltmp6052-Lfunc_begin0 - .quad Lset30826 - .quad 0 - .quad 0 -Ldebug_ranges74: -.set Lset30827, Ltmp1560-Lfunc_begin0 - .quad Lset30827 -.set Lset30828, Ltmp1571-Lfunc_begin0 - .quad Lset30828 -.set Lset30829, Ltmp1587-Lfunc_begin0 - .quad Lset30829 -.set Lset30830, Ltmp1589-Lfunc_begin0 - .quad Lset30830 -.set Lset30831, Ltmp1608-Lfunc_begin0 - .quad Lset30831 -.set Lset30832, Ltmp1626-Lfunc_begin0 - .quad Lset30832 -.set Lset30833, Ltmp1639-Lfunc_begin0 - .quad Lset30833 -.set Lset30834, Ltmp1649-Lfunc_begin0 - .quad Lset30834 -.set Lset30835, Ltmp6051-Lfunc_begin0 - .quad Lset30835 -.set Lset30836, Ltmp6052-Lfunc_begin0 - .quad Lset30836 - .quad 0 - .quad 0 -Ldebug_ranges75: -.set Lset30837, Ltmp1584-Lfunc_begin0 - .quad Lset30837 -.set Lset30838, Ltmp1587-Lfunc_begin0 - .quad Lset30838 -.set Lset30839, Ltmp1649-Lfunc_begin0 - .quad Lset30839 -.set Lset30840, Ltmp1653-Lfunc_begin0 - .quad Lset30840 - .quad 0 - .quad 0 -Ldebug_ranges76: -.set Lset30841, Ltmp1632-Lfunc_begin0 - .quad Lset30841 -.set Lset30842, Ltmp1639-Lfunc_begin0 - .quad Lset30842 -.set Lset30843, Ltmp1653-Lfunc_begin0 - .quad Lset30843 -.set Lset30844, Ltmp1656-Lfunc_begin0 - .quad Lset30844 - .quad 0 - .quad 0 -Ldebug_ranges77: -.set Lset30845, Ltmp1628-Lfunc_begin0 - .quad Lset30845 -.set Lset30846, Ltmp1639-Lfunc_begin0 - .quad Lset30846 -.set Lset30847, Ltmp1653-Lfunc_begin0 - .quad Lset30847 -.set Lset30848, Ltmp1656-Lfunc_begin0 - .quad Lset30848 - .quad 0 - .quad 0 -Ldebug_ranges78: -.set Lset30849, Ltmp1578-Lfunc_begin0 - .quad Lset30849 -.set Lset30850, Ltmp1587-Lfunc_begin0 - .quad Lset30850 -.set Lset30851, Ltmp1628-Lfunc_begin0 - .quad Lset30851 -.set Lset30852, Ltmp1639-Lfunc_begin0 - .quad Lset30852 -.set Lset30853, Ltmp1649-Lfunc_begin0 - .quad Lset30853 -.set Lset30854, Ltmp1656-Lfunc_begin0 - .quad Lset30854 - .quad 0 - .quad 0 -Ldebug_ranges79: -.set Lset30855, Ltmp1594-Lfunc_begin0 - .quad Lset30855 -.set Lset30856, Ltmp1598-Lfunc_begin0 - .quad Lset30856 -.set Lset30857, Ltmp1669-Lfunc_begin0 - .quad Lset30857 -.set Lset30858, Ltmp1674-Lfunc_begin0 - .quad Lset30858 -.set Lset30859, Ltmp6306-Lfunc_begin0 - .quad Lset30859 -.set Lset30860, Ltmp6307-Lfunc_begin0 - .quad Lset30860 - .quad 0 - .quad 0 -Ldebug_ranges80: -.set Lset30861, Ltmp1693-Lfunc_begin0 - .quad Lset30861 -.set Lset30862, Ltmp1698-Lfunc_begin0 - .quad Lset30862 -.set Lset30863, Ltmp6304-Lfunc_begin0 - .quad Lset30863 -.set Lset30864, Ltmp6305-Lfunc_begin0 - .quad Lset30864 - .quad 0 - .quad 0 -Ldebug_ranges81: -.set Lset30865, Ltmp1594-Lfunc_begin0 - .quad Lset30865 -.set Lset30866, Ltmp1599-Lfunc_begin0 - .quad Lset30866 -.set Lset30867, Ltmp1667-Lfunc_begin0 - .quad Lset30867 -.set Lset30868, Ltmp1705-Lfunc_begin0 - .quad Lset30868 -.set Lset30869, Ltmp1709-Lfunc_begin0 - .quad Lset30869 -.set Lset30870, Ltmp1710-Lfunc_begin0 - .quad Lset30870 -.set Lset30871, Ltmp6304-Lfunc_begin0 - .quad Lset30871 -.set Lset30872, Ltmp6307-Lfunc_begin0 - .quad Lset30872 - .quad 0 - .quad 0 -Ldebug_ranges82: -.set Lset30873, Ltmp1559-Lfunc_begin0 - .quad Lset30873 -.set Lset30874, Ltmp1712-Lfunc_begin0 - .quad Lset30874 -.set Lset30875, Ltmp5943-Lfunc_begin0 - .quad Lset30875 -.set Lset30876, Ltmp5944-Lfunc_begin0 - .quad Lset30876 -.set Lset30877, Ltmp6051-Lfunc_begin0 - .quad Lset30877 -.set Lset30878, Ltmp6052-Lfunc_begin0 - .quad Lset30878 -.set Lset30879, Ltmp6144-Lfunc_begin0 - .quad Lset30879 -.set Lset30880, Ltmp6145-Lfunc_begin0 - .quad Lset30880 -.set Lset30881, Ltmp6304-Lfunc_begin0 - .quad Lset30881 -.set Lset30882, Ltmp6307-Lfunc_begin0 - .quad Lset30882 - .quad 0 - .quad 0 -Ldebug_ranges83: -.set Lset30883, Ltmp1723-Lfunc_begin0 - .quad Lset30883 -.set Lset30884, Ltmp1727-Lfunc_begin0 - .quad Lset30884 -.set Lset30885, Ltmp1743-Lfunc_begin0 - .quad Lset30885 -.set Lset30886, Ltmp1745-Lfunc_begin0 - .quad Lset30886 -.set Lset30887, Ltmp1793-Lfunc_begin0 - .quad Lset30887 -.set Lset30888, Ltmp1797-Lfunc_begin0 - .quad Lset30888 - .quad 0 - .quad 0 -Ldebug_ranges84: -.set Lset30889, Ltmp1760-Lfunc_begin0 - .quad Lset30889 -.set Lset30890, Ltmp1765-Lfunc_begin0 - .quad Lset30890 -.set Lset30891, Ltmp1792-Lfunc_begin0 - .quad Lset30891 -.set Lset30892, Ltmp1793-Lfunc_begin0 - .quad Lset30892 - .quad 0 - .quad 0 -Ldebug_ranges85: -.set Lset30893, Ltmp1771-Lfunc_begin0 - .quad Lset30893 -.set Lset30894, Ltmp1778-Lfunc_begin0 - .quad Lset30894 -.set Lset30895, Ltmp1791-Lfunc_begin0 - .quad Lset30895 -.set Lset30896, Ltmp1792-Lfunc_begin0 - .quad Lset30896 -.set Lset30897, Ltmp1797-Lfunc_begin0 - .quad Lset30897 -.set Lset30898, Ltmp1801-Lfunc_begin0 - .quad Lset30898 -.set Lset30899, Ltmp5945-Lfunc_begin0 - .quad Lset30899 -.set Lset30900, Ltmp5946-Lfunc_begin0 - .quad Lset30900 - .quad 0 - .quad 0 -Ldebug_ranges86: -.set Lset30901, Ltmp1767-Lfunc_begin0 - .quad Lset30901 -.set Lset30902, Ltmp1778-Lfunc_begin0 - .quad Lset30902 -.set Lset30903, Ltmp1791-Lfunc_begin0 - .quad Lset30903 -.set Lset30904, Ltmp1792-Lfunc_begin0 - .quad Lset30904 -.set Lset30905, Ltmp1797-Lfunc_begin0 - .quad Lset30905 -.set Lset30906, Ltmp1801-Lfunc_begin0 - .quad Lset30906 -.set Lset30907, Ltmp5945-Lfunc_begin0 - .quad Lset30907 -.set Lset30908, Ltmp5946-Lfunc_begin0 - .quad Lset30908 - .quad 0 - .quad 0 -Ldebug_ranges87: -.set Lset30909, Ltmp1716-Lfunc_begin0 - .quad Lset30909 -.set Lset30910, Ltmp1727-Lfunc_begin0 - .quad Lset30910 -.set Lset30911, Ltmp1743-Lfunc_begin0 - .quad Lset30911 -.set Lset30912, Ltmp1745-Lfunc_begin0 - .quad Lset30912 -.set Lset30913, Ltmp1760-Lfunc_begin0 - .quad Lset30913 -.set Lset30914, Ltmp1778-Lfunc_begin0 - .quad Lset30914 -.set Lset30915, Ltmp1791-Lfunc_begin0 - .quad Lset30915 -.set Lset30916, Ltmp1801-Lfunc_begin0 - .quad Lset30916 -.set Lset30917, Ltmp5945-Lfunc_begin0 - .quad Lset30917 -.set Lset30918, Ltmp5946-Lfunc_begin0 - .quad Lset30918 - .quad 0 - .quad 0 -Ldebug_ranges88: -.set Lset30919, Ltmp1740-Lfunc_begin0 - .quad Lset30919 -.set Lset30920, Ltmp1743-Lfunc_begin0 - .quad Lset30920 -.set Lset30921, Ltmp1801-Lfunc_begin0 - .quad Lset30921 -.set Lset30922, Ltmp1805-Lfunc_begin0 - .quad Lset30922 - .quad 0 - .quad 0 -Ldebug_ranges89: -.set Lset30923, Ltmp1784-Lfunc_begin0 - .quad Lset30923 -.set Lset30924, Ltmp1791-Lfunc_begin0 - .quad Lset30924 -.set Lset30925, Ltmp1805-Lfunc_begin0 - .quad Lset30925 -.set Lset30926, Ltmp1808-Lfunc_begin0 - .quad Lset30926 - .quad 0 - .quad 0 -Ldebug_ranges90: -.set Lset30927, Ltmp1780-Lfunc_begin0 - .quad Lset30927 -.set Lset30928, Ltmp1791-Lfunc_begin0 - .quad Lset30928 -.set Lset30929, Ltmp1805-Lfunc_begin0 - .quad Lset30929 -.set Lset30930, Ltmp1808-Lfunc_begin0 - .quad Lset30930 - .quad 0 - .quad 0 -Ldebug_ranges91: -.set Lset30931, Ltmp1734-Lfunc_begin0 - .quad Lset30931 -.set Lset30932, Ltmp1743-Lfunc_begin0 - .quad Lset30932 -.set Lset30933, Ltmp1780-Lfunc_begin0 - .quad Lset30933 -.set Lset30934, Ltmp1791-Lfunc_begin0 - .quad Lset30934 -.set Lset30935, Ltmp1801-Lfunc_begin0 - .quad Lset30935 -.set Lset30936, Ltmp1808-Lfunc_begin0 - .quad Lset30936 - .quad 0 - .quad 0 -Ldebug_ranges92: -.set Lset30937, Ltmp1748-Lfunc_begin0 - .quad Lset30937 -.set Lset30938, Ltmp1751-Lfunc_begin0 - .quad Lset30938 -.set Lset30939, Ltmp1821-Lfunc_begin0 - .quad Lset30939 -.set Lset30940, Ltmp1826-Lfunc_begin0 - .quad Lset30940 -.set Lset30941, Ltmp6054-Lfunc_begin0 - .quad Lset30941 -.set Lset30942, Ltmp6055-Lfunc_begin0 - .quad Lset30942 - .quad 0 - .quad 0 -Ldebug_ranges93: -.set Lset30943, Ltmp1844-Lfunc_begin0 - .quad Lset30943 -.set Lset30944, Ltmp1849-Lfunc_begin0 - .quad Lset30944 -.set Lset30945, Ltmp6052-Lfunc_begin0 - .quad Lset30945 -.set Lset30946, Ltmp6053-Lfunc_begin0 - .quad Lset30946 - .quad 0 - .quad 0 -Ldebug_ranges94: -.set Lset30947, Ltmp1748-Lfunc_begin0 - .quad Lset30947 -.set Lset30948, Ltmp1752-Lfunc_begin0 - .quad Lset30948 -.set Lset30949, Ltmp1819-Lfunc_begin0 - .quad Lset30949 -.set Lset30950, Ltmp1856-Lfunc_begin0 - .quad Lset30950 -.set Lset30951, Ltmp1860-Lfunc_begin0 - .quad Lset30951 -.set Lset30952, Ltmp1861-Lfunc_begin0 - .quad Lset30952 -.set Lset30953, Ltmp6052-Lfunc_begin0 - .quad Lset30953 -.set Lset30954, Ltmp6055-Lfunc_begin0 - .quad Lset30954 - .quad 0 - .quad 0 -Ldebug_ranges95: -.set Lset30955, Ltmp1715-Lfunc_begin0 - .quad Lset30955 -.set Lset30956, Ltmp1863-Lfunc_begin0 - .quad Lset30956 -.set Lset30957, Ltmp5945-Lfunc_begin0 - .quad Lset30957 -.set Lset30958, Ltmp5946-Lfunc_begin0 - .quad Lset30958 -.set Lset30959, Ltmp6052-Lfunc_begin0 - .quad Lset30959 -.set Lset30960, Ltmp6055-Lfunc_begin0 - .quad Lset30960 -.set Lset30961, Ltmp6173-Lfunc_begin0 - .quad Lset30961 -.set Lset30962, Ltmp6175-Lfunc_begin0 - .quad Lset30962 - .quad 0 - .quad 0 -Ldebug_ranges96: -.set Lset30963, Ltmp1877-Lfunc_begin0 - .quad Lset30963 -.set Lset30964, Ltmp1881-Lfunc_begin0 - .quad Lset30964 -.set Lset30965, Ltmp1933-Lfunc_begin0 - .quad Lset30965 -.set Lset30966, Ltmp1937-Lfunc_begin0 - .quad Lset30966 - .quad 0 - .quad 0 -Ldebug_ranges97: -.set Lset30967, Ltmp1916-Lfunc_begin0 - .quad Lset30967 -.set Lset30968, Ltmp1923-Lfunc_begin0 - .quad Lset30968 -.set Lset30969, Ltmp1937-Lfunc_begin0 - .quad Lset30969 -.set Lset30970, Ltmp1940-Lfunc_begin0 - .quad Lset30970 - .quad 0 - .quad 0 -Ldebug_ranges98: -.set Lset30971, Ltmp1912-Lfunc_begin0 - .quad Lset30971 -.set Lset30972, Ltmp1923-Lfunc_begin0 - .quad Lset30972 -.set Lset30973, Ltmp1937-Lfunc_begin0 - .quad Lset30973 -.set Lset30974, Ltmp1940-Lfunc_begin0 - .quad Lset30974 - .quad 0 - .quad 0 -Ldebug_ranges99: -.set Lset30975, Ltmp1873-Lfunc_begin0 - .quad Lset30975 -.set Lset30976, Ltmp1881-Lfunc_begin0 - .quad Lset30976 -.set Lset30977, Ltmp1912-Lfunc_begin0 - .quad Lset30977 -.set Lset30978, Ltmp1923-Lfunc_begin0 - .quad Lset30978 -.set Lset30979, Ltmp1933-Lfunc_begin0 - .quad Lset30979 -.set Lset30980, Ltmp1940-Lfunc_begin0 - .quad Lset30980 - .quad 0 - .quad 0 -Ldebug_ranges100: -.set Lset30981, Ltmp1881-Lfunc_begin0 - .quad Lset30981 -.set Lset30982, Ltmp1883-Lfunc_begin0 - .quad Lset30982 -.set Lset30983, Ltmp1925-Lfunc_begin0 - .quad Lset30983 -.set Lset30984, Ltmp1929-Lfunc_begin0 - .quad Lset30984 -.set Lset30985, Ltmp1977-Lfunc_begin0 - .quad Lset30985 -.set Lset30986, Ltmp1982-Lfunc_begin0 - .quad Lset30986 - .quad 0 - .quad 0 -Ldebug_ranges101: -.set Lset30987, Ltmp1891-Lfunc_begin0 - .quad Lset30987 -.set Lset30988, Ltmp1897-Lfunc_begin0 - .quad Lset30988 -.set Lset30989, Ltmp1924-Lfunc_begin0 - .quad Lset30989 -.set Lset30990, Ltmp1925-Lfunc_begin0 - .quad Lset30990 - .quad 0 - .quad 0 -Ldebug_ranges102: -.set Lset30991, Ltmp1903-Lfunc_begin0 - .quad Lset30991 -.set Lset30992, Ltmp1910-Lfunc_begin0 - .quad Lset30992 -.set Lset30993, Ltmp1923-Lfunc_begin0 - .quad Lset30993 -.set Lset30994, Ltmp1924-Lfunc_begin0 - .quad Lset30994 -.set Lset30995, Ltmp1929-Lfunc_begin0 - .quad Lset30995 -.set Lset30996, Ltmp1933-Lfunc_begin0 - .quad Lset30996 - .quad 0 - .quad 0 -Ldebug_ranges103: -.set Lset30997, Ltmp1899-Lfunc_begin0 - .quad Lset30997 -.set Lset30998, Ltmp1910-Lfunc_begin0 - .quad Lset30998 -.set Lset30999, Ltmp1923-Lfunc_begin0 - .quad Lset30999 -.set Lset31000, Ltmp1924-Lfunc_begin0 - .quad Lset31000 -.set Lset31001, Ltmp1929-Lfunc_begin0 - .quad Lset31001 -.set Lset31002, Ltmp1933-Lfunc_begin0 - .quad Lset31002 - .quad 0 - .quad 0 -Ldebug_ranges104: -.set Lset31003, Ltmp1881-Lfunc_begin0 - .quad Lset31003 -.set Lset31004, Ltmp1883-Lfunc_begin0 - .quad Lset31004 -.set Lset31005, Ltmp1891-Lfunc_begin0 - .quad Lset31005 -.set Lset31006, Ltmp1910-Lfunc_begin0 - .quad Lset31006 -.set Lset31007, Ltmp1923-Lfunc_begin0 - .quad Lset31007 -.set Lset31008, Ltmp1933-Lfunc_begin0 - .quad Lset31008 -.set Lset31009, Ltmp1972-Lfunc_begin0 - .quad Lset31009 -.set Lset31010, Ltmp1982-Lfunc_begin0 - .quad Lset31010 - .quad 0 - .quad 0 -Ldebug_ranges105: -.set Lset31011, Ltmp1960-Lfunc_begin0 - .quad Lset31011 -.set Lset31012, Ltmp1964-Lfunc_begin0 - .quad Lset31012 -.set Lset31013, Ltmp5946-Lfunc_begin0 - .quad Lset31013 -.set Lset31014, Ltmp5947-Lfunc_begin0 - .quad Lset31014 - .quad 0 - .quad 0 -Ldebug_ranges106: -.set Lset31015, Ltmp1951-Lfunc_begin0 - .quad Lset31015 -.set Lset31016, Ltmp1970-Lfunc_begin0 - .quad Lset31016 -.set Lset31017, Ltmp1982-Lfunc_begin0 - .quad Lset31017 -.set Lset31018, Ltmp1997-Lfunc_begin0 - .quad Lset31018 -.set Lset31019, Ltmp2000-Lfunc_begin0 - .quad Lset31019 -.set Lset31020, Ltmp2001-Lfunc_begin0 - .quad Lset31020 -.set Lset31021, Ltmp5946-Lfunc_begin0 - .quad Lset31021 -.set Lset31022, Ltmp5947-Lfunc_begin0 - .quad Lset31022 -.set Lset31023, Ltmp6175-Lfunc_begin0 - .quad Lset31023 -.set Lset31024, Ltmp6177-Lfunc_begin0 - .quad Lset31024 - .quad 0 - .quad 0 -Ldebug_ranges107: -.set Lset31025, Ltmp1866-Lfunc_begin0 - .quad Lset31025 -.set Lset31026, Ltmp2003-Lfunc_begin0 - .quad Lset31026 -.set Lset31027, Ltmp5946-Lfunc_begin0 - .quad Lset31027 -.set Lset31028, Ltmp5947-Lfunc_begin0 - .quad Lset31028 -.set Lset31029, Ltmp6175-Lfunc_begin0 - .quad Lset31029 -.set Lset31030, Ltmp6177-Lfunc_begin0 - .quad Lset31030 -.set Lset31031, Ltmp6307-Lfunc_begin0 - .quad Lset31031 -.set Lset31032, Ltmp6309-Lfunc_begin0 - .quad Lset31032 - .quad 0 - .quad 0 -Ldebug_ranges108: -.set Lset31033, Ltmp2032-Lfunc_begin0 - .quad Lset31033 -.set Lset31034, Ltmp2042-Lfunc_begin0 - .quad Lset31034 -.set Lset31035, Ltmp5932-Lfunc_begin0 - .quad Lset31035 -.set Lset31036, Ltmp5934-Lfunc_begin0 - .quad Lset31036 -.set Lset31037, Ltmp6323-Lfunc_begin0 - .quad Lset31037 -.set Lset31038, Ltmp6324-Lfunc_begin0 - .quad Lset31038 - .quad 0 - .quad 0 -Ldebug_ranges109: -.set Lset31039, Ltmp2035-Lfunc_begin0 - .quad Lset31039 -.set Lset31040, Ltmp2042-Lfunc_begin0 - .quad Lset31040 -.set Lset31041, Ltmp5932-Lfunc_begin0 - .quad Lset31041 -.set Lset31042, Ltmp5934-Lfunc_begin0 - .quad Lset31042 - .quad 0 - .quad 0 -Ldebug_ranges110: -.set Lset31043, Ltmp2045-Lfunc_begin0 - .quad Lset31043 -.set Lset31044, Ltmp2050-Lfunc_begin0 - .quad Lset31044 -.set Lset31045, Ltmp6177-Lfunc_begin0 - .quad Lset31045 -.set Lset31046, Ltmp6179-Lfunc_begin0 - .quad Lset31046 - .quad 0 - .quad 0 -Ldebug_ranges111: -.set Lset31047, Ltmp2006-Lfunc_begin0 - .quad Lset31047 -.set Lset31048, Ltmp2007-Lfunc_begin0 - .quad Lset31048 -.set Lset31049, Ltmp2029-Lfunc_begin0 - .quad Lset31049 -.set Lset31050, Ltmp2067-Lfunc_begin0 - .quad Lset31050 -.set Lset31051, Ltmp2070-Lfunc_begin0 - .quad Lset31051 -.set Lset31052, Ltmp2071-Lfunc_begin0 - .quad Lset31052 -.set Lset31053, Ltmp5932-Lfunc_begin0 - .quad Lset31053 -.set Lset31054, Ltmp5934-Lfunc_begin0 - .quad Lset31054 -.set Lset31055, Ltmp6177-Lfunc_begin0 - .quad Lset31055 -.set Lset31056, Ltmp6183-Lfunc_begin0 - .quad Lset31056 -.set Lset31057, Ltmp6314-Lfunc_begin0 - .quad Lset31057 -.set Lset31058, Ltmp6320-Lfunc_begin0 - .quad Lset31058 -.set Lset31059, Ltmp6323-Lfunc_begin0 - .quad Lset31059 -.set Lset31060, Ltmp6324-Lfunc_begin0 - .quad Lset31060 - .quad 0 - .quad 0 -Ldebug_ranges112: -.set Lset31061, Ltmp2006-Lfunc_begin0 - .quad Lset31061 -.set Lset31062, Ltmp2073-Lfunc_begin0 - .quad Lset31062 -.set Lset31063, Ltmp5932-Lfunc_begin0 - .quad Lset31063 -.set Lset31064, Ltmp5934-Lfunc_begin0 - .quad Lset31064 -.set Lset31065, Ltmp6177-Lfunc_begin0 - .quad Lset31065 -.set Lset31066, Ltmp6183-Lfunc_begin0 - .quad Lset31066 -.set Lset31067, Ltmp6309-Lfunc_begin0 - .quad Lset31067 -.set Lset31068, Ltmp6320-Lfunc_begin0 - .quad Lset31068 -.set Lset31069, Ltmp6323-Lfunc_begin0 - .quad Lset31069 -.set Lset31070, Ltmp6324-Lfunc_begin0 - .quad Lset31070 - .quad 0 - .quad 0 -Ldebug_ranges113: -.set Lset31071, Ltmp2089-Lfunc_begin0 - .quad Lset31071 -.set Lset31072, Ltmp2094-Lfunc_begin0 - .quad Lset31072 -.set Lset31073, Ltmp6055-Lfunc_begin0 - .quad Lset31073 -.set Lset31074, Ltmp6056-Lfunc_begin0 - .quad Lset31074 -.set Lset31075, Ltmp6320-Lfunc_begin0 - .quad Lset31075 -.set Lset31076, Ltmp6321-Lfunc_begin0 - .quad Lset31076 - .quad 0 - .quad 0 -Ldebug_ranges114: -.set Lset31077, Ltmp2076-Lfunc_begin0 - .quad Lset31077 -.set Lset31078, Ltmp2119-Lfunc_begin0 - .quad Lset31078 -.set Lset31079, Ltmp6055-Lfunc_begin0 - .quad Lset31079 -.set Lset31080, Ltmp6056-Lfunc_begin0 - .quad Lset31080 -.set Lset31081, Ltmp6320-Lfunc_begin0 - .quad Lset31081 -.set Lset31082, Ltmp6323-Lfunc_begin0 - .quad Lset31082 - .quad 0 - .quad 0 -Ldebug_ranges115: -.set Lset31083, Ltmp2175-Lfunc_begin0 - .quad Lset31083 -.set Lset31084, Ltmp2185-Lfunc_begin0 - .quad Lset31084 -.set Lset31085, Ltmp5947-Lfunc_begin0 - .quad Lset31085 -.set Lset31086, Ltmp5949-Lfunc_begin0 - .quad Lset31086 - .quad 0 - .quad 0 -Ldebug_ranges116: -.set Lset31087, Ltmp2121-Lfunc_begin0 - .quad Lset31087 -.set Lset31088, Ltmp2122-Lfunc_begin0 - .quad Lset31088 -.set Lset31089, Ltmp2137-Lfunc_begin0 - .quad Lset31089 -.set Lset31090, Ltmp2144-Lfunc_begin0 - .quad Lset31090 -.set Lset31091, Ltmp2158-Lfunc_begin0 - .quad Lset31091 -.set Lset31092, Ltmp2185-Lfunc_begin0 - .quad Lset31092 -.set Lset31093, Ltmp5947-Lfunc_begin0 - .quad Lset31093 -.set Lset31094, Ltmp5949-Lfunc_begin0 - .quad Lset31094 -.set Lset31095, Ltmp6190-Lfunc_begin0 - .quad Lset31095 -.set Lset31096, Ltmp6199-Lfunc_begin0 - .quad Lset31096 - .quad 0 - .quad 0 -Ldebug_ranges117: -.set Lset31097, Ltmp2150-Lfunc_begin0 - .quad Lset31097 -.set Lset31098, Ltmp2154-Lfunc_begin0 - .quad Lset31098 -.set Lset31099, Ltmp6187-Lfunc_begin0 - .quad Lset31099 -.set Lset31100, Ltmp6190-Lfunc_begin0 - .quad Lset31100 - .quad 0 - .quad 0 -Ldebug_ranges118: -.set Lset31101, Ltmp2121-Lfunc_begin0 - .quad Lset31101 -.set Lset31102, Ltmp2188-Lfunc_begin0 - .quad Lset31102 -.set Lset31103, Ltmp2189-Lfunc_begin0 - .quad Lset31103 -.set Lset31104, Ltmp2191-Lfunc_begin0 - .quad Lset31104 -.set Lset31105, Ltmp5947-Lfunc_begin0 - .quad Lset31105 -.set Lset31106, Ltmp5949-Lfunc_begin0 - .quad Lset31106 -.set Lset31107, Ltmp6183-Lfunc_begin0 - .quad Lset31107 -.set Lset31108, Ltmp6199-Lfunc_begin0 - .quad Lset31108 - .quad 0 - .quad 0 -Ldebug_ranges119: -.set Lset31109, Ltmp2195-Lfunc_begin0 - .quad Lset31109 -.set Lset31110, Ltmp2200-Lfunc_begin0 - .quad Lset31110 -.set Lset31111, Ltmp2231-Lfunc_begin0 - .quad Lset31111 -.set Lset31112, Ltmp2232-Lfunc_begin0 - .quad Lset31112 -.set Lset31113, Ltmp6199-Lfunc_begin0 - .quad Lset31113 -.set Lset31114, Ltmp6200-Lfunc_begin0 - .quad Lset31114 - .quad 0 - .quad 0 -Ldebug_ranges120: -.set Lset31115, Ltmp2216-Lfunc_begin0 - .quad Lset31115 -.set Lset31116, Ltmp2221-Lfunc_begin0 - .quad Lset31116 -.set Lset31117, Ltmp6329-Lfunc_begin0 - .quad Lset31117 -.set Lset31118, Ltmp6331-Lfunc_begin0 - .quad Lset31118 - .quad 0 - .quad 0 -Ldebug_ranges121: -.set Lset31119, Ltmp2195-Lfunc_begin0 - .quad Lset31119 -.set Lset31120, Ltmp2248-Lfunc_begin0 - .quad Lset31120 -.set Lset31121, Ltmp2249-Lfunc_begin0 - .quad Lset31121 -.set Lset31122, Ltmp2251-Lfunc_begin0 - .quad Lset31122 -.set Lset31123, Ltmp6199-Lfunc_begin0 - .quad Lset31123 -.set Lset31124, Ltmp6200-Lfunc_begin0 - .quad Lset31124 -.set Lset31125, Ltmp6324-Lfunc_begin0 - .quad Lset31125 -.set Lset31126, Ltmp6333-Lfunc_begin0 - .quad Lset31126 - .quad 0 - .quad 0 -Ldebug_ranges122: -.set Lset31127, Ltmp2255-Lfunc_begin0 - .quad Lset31127 -.set Lset31128, Ltmp2297-Lfunc_begin0 - .quad Lset31128 -.set Lset31129, Ltmp2298-Lfunc_begin0 - .quad Lset31129 -.set Lset31130, Ltmp2300-Lfunc_begin0 - .quad Lset31130 -.set Lset31131, Ltmp6200-Lfunc_begin0 - .quad Lset31131 -.set Lset31132, Ltmp6203-Lfunc_begin0 - .quad Lset31132 - .quad 0 - .quad 0 -Ldebug_ranges123: -.set Lset31133, Ltmp2304-Lfunc_begin0 - .quad Lset31133 -.set Lset31134, Ltmp2346-Lfunc_begin0 - .quad Lset31134 -.set Lset31135, Ltmp2347-Lfunc_begin0 - .quad Lset31135 -.set Lset31136, Ltmp2349-Lfunc_begin0 - .quad Lset31136 -.set Lset31137, Ltmp5949-Lfunc_begin0 - .quad Lset31137 -.set Lset31138, Ltmp5952-Lfunc_begin0 - .quad Lset31138 - .quad 0 - .quad 0 -Ldebug_ranges124: -.set Lset31139, Ltmp2353-Lfunc_begin0 - .quad Lset31139 -.set Lset31140, Ltmp2395-Lfunc_begin0 - .quad Lset31140 -.set Lset31141, Ltmp2396-Lfunc_begin0 - .quad Lset31141 -.set Lset31142, Ltmp2398-Lfunc_begin0 - .quad Lset31142 -.set Lset31143, Ltmp5952-Lfunc_begin0 - .quad Lset31143 -.set Lset31144, Ltmp5953-Lfunc_begin0 - .quad Lset31144 -.set Lset31145, Ltmp6145-Lfunc_begin0 - .quad Lset31145 -.set Lset31146, Ltmp6147-Lfunc_begin0 - .quad Lset31146 - .quad 0 - .quad 0 -Ldebug_ranges125: -.set Lset31147, Ltmp2402-Lfunc_begin0 - .quad Lset31147 -.set Lset31148, Ltmp2439-Lfunc_begin0 - .quad Lset31148 -.set Lset31149, Ltmp2440-Lfunc_begin0 - .quad Lset31149 -.set Lset31150, Ltmp2442-Lfunc_begin0 - .quad Lset31150 -.set Lset31151, Ltmp6333-Lfunc_begin0 - .quad Lset31151 -.set Lset31152, Ltmp6336-Lfunc_begin0 - .quad Lset31152 - .quad 0 - .quad 0 -Ldebug_ranges126: -.set Lset31153, Ltmp2446-Lfunc_begin0 - .quad Lset31153 -.set Lset31154, Ltmp2450-Lfunc_begin0 - .quad Lset31154 -.set Lset31155, Ltmp2480-Lfunc_begin0 - .quad Lset31155 -.set Lset31156, Ltmp2483-Lfunc_begin0 - .quad Lset31156 - .quad 0 - .quad 0 -Ldebug_ranges127: -.set Lset31157, Ltmp2446-Lfunc_begin0 - .quad Lset31157 -.set Lset31158, Ltmp2450-Lfunc_begin0 - .quad Lset31158 -.set Lset31159, Ltmp2480-Lfunc_begin0 - .quad Lset31159 -.set Lset31160, Ltmp2483-Lfunc_begin0 - .quad Lset31160 - .quad 0 - .quad 0 -Ldebug_ranges128: -.set Lset31161, Ltmp2446-Lfunc_begin0 - .quad Lset31161 -.set Lset31162, Ltmp2494-Lfunc_begin0 - .quad Lset31162 -.set Lset31163, Ltmp2495-Lfunc_begin0 - .quad Lset31163 -.set Lset31164, Ltmp2497-Lfunc_begin0 - .quad Lset31164 -.set Lset31165, Ltmp5953-Lfunc_begin0 - .quad Lset31165 -.set Lset31166, Ltmp5956-Lfunc_begin0 - .quad Lset31166 - .quad 0 - .quad 0 -Ldebug_ranges129: -.set Lset31167, Ltmp2501-Lfunc_begin0 - .quad Lset31167 -.set Lset31168, Ltmp2505-Lfunc_begin0 - .quad Lset31168 -.set Lset31169, Ltmp2535-Lfunc_begin0 - .quad Lset31169 -.set Lset31170, Ltmp2538-Lfunc_begin0 - .quad Lset31170 - .quad 0 - .quad 0 -Ldebug_ranges130: -.set Lset31171, Ltmp2501-Lfunc_begin0 - .quad Lset31171 -.set Lset31172, Ltmp2505-Lfunc_begin0 - .quad Lset31172 -.set Lset31173, Ltmp2535-Lfunc_begin0 - .quad Lset31173 -.set Lset31174, Ltmp2538-Lfunc_begin0 - .quad Lset31174 - .quad 0 - .quad 0 -Ldebug_ranges131: -.set Lset31175, Ltmp2501-Lfunc_begin0 - .quad Lset31175 -.set Lset31176, Ltmp2549-Lfunc_begin0 - .quad Lset31176 -.set Lset31177, Ltmp2550-Lfunc_begin0 - .quad Lset31177 -.set Lset31178, Ltmp2552-Lfunc_begin0 - .quad Lset31178 -.set Lset31179, Ltmp6056-Lfunc_begin0 - .quad Lset31179 -.set Lset31180, Ltmp6059-Lfunc_begin0 - .quad Lset31180 - .quad 0 - .quad 0 -Ldebug_ranges132: -.set Lset31181, Ltmp2556-Lfunc_begin0 - .quad Lset31181 -.set Lset31182, Ltmp2560-Lfunc_begin0 - .quad Lset31182 -.set Lset31183, Ltmp2590-Lfunc_begin0 - .quad Lset31183 -.set Lset31184, Ltmp2593-Lfunc_begin0 - .quad Lset31184 - .quad 0 - .quad 0 -Ldebug_ranges133: -.set Lset31185, Ltmp2556-Lfunc_begin0 - .quad Lset31185 -.set Lset31186, Ltmp2560-Lfunc_begin0 - .quad Lset31186 -.set Lset31187, Ltmp2590-Lfunc_begin0 - .quad Lset31187 -.set Lset31188, Ltmp2593-Lfunc_begin0 - .quad Lset31188 - .quad 0 - .quad 0 -Ldebug_ranges134: -.set Lset31189, Ltmp2556-Lfunc_begin0 - .quad Lset31189 -.set Lset31190, Ltmp2604-Lfunc_begin0 - .quad Lset31190 -.set Lset31191, Ltmp2605-Lfunc_begin0 - .quad Lset31191 -.set Lset31192, Ltmp2607-Lfunc_begin0 - .quad Lset31192 -.set Lset31193, Ltmp6336-Lfunc_begin0 - .quad Lset31193 -.set Lset31194, Ltmp6339-Lfunc_begin0 - .quad Lset31194 - .quad 0 - .quad 0 -Ldebug_ranges135: -.set Lset31195, Ltmp2611-Lfunc_begin0 - .quad Lset31195 -.set Lset31196, Ltmp2615-Lfunc_begin0 - .quad Lset31196 -.set Lset31197, Ltmp2654-Lfunc_begin0 - .quad Lset31197 -.set Lset31198, Ltmp2657-Lfunc_begin0 - .quad Lset31198 - .quad 0 - .quad 0 -Ldebug_ranges136: -.set Lset31199, Ltmp2611-Lfunc_begin0 - .quad Lset31199 -.set Lset31200, Ltmp2615-Lfunc_begin0 - .quad Lset31200 -.set Lset31201, Ltmp2654-Lfunc_begin0 - .quad Lset31201 -.set Lset31202, Ltmp2657-Lfunc_begin0 - .quad Lset31202 - .quad 0 - .quad 0 -Ldebug_ranges137: -.set Lset31203, Ltmp2615-Lfunc_begin0 - .quad Lset31203 -.set Lset31204, Ltmp2620-Lfunc_begin0 - .quad Lset31204 -.set Lset31205, Ltmp2640-Lfunc_begin0 - .quad Lset31205 -.set Lset31206, Ltmp2645-Lfunc_begin0 - .quad Lset31206 - .quad 0 - .quad 0 -Ldebug_ranges138: -.set Lset31207, Ltmp2615-Lfunc_begin0 - .quad Lset31207 -.set Lset31208, Ltmp2621-Lfunc_begin0 - .quad Lset31208 -.set Lset31209, Ltmp2640-Lfunc_begin0 - .quad Lset31209 -.set Lset31210, Ltmp2645-Lfunc_begin0 - .quad Lset31210 - .quad 0 - .quad 0 -Ldebug_ranges139: -.set Lset31211, Ltmp2611-Lfunc_begin0 - .quad Lset31211 -.set Lset31212, Ltmp2668-Lfunc_begin0 - .quad Lset31212 -.set Lset31213, Ltmp2669-Lfunc_begin0 - .quad Lset31213 -.set Lset31214, Ltmp2671-Lfunc_begin0 - .quad Lset31214 -.set Lset31215, Ltmp6339-Lfunc_begin0 - .quad Lset31215 -.set Lset31216, Ltmp6342-Lfunc_begin0 - .quad Lset31216 - .quad 0 - .quad 0 -Ldebug_ranges140: -.set Lset31217, Ltmp2675-Lfunc_begin0 - .quad Lset31217 -.set Lset31218, Ltmp2679-Lfunc_begin0 - .quad Lset31218 -.set Lset31219, Ltmp2719-Lfunc_begin0 - .quad Lset31219 -.set Lset31220, Ltmp2722-Lfunc_begin0 - .quad Lset31220 - .quad 0 - .quad 0 -Ldebug_ranges141: -.set Lset31221, Ltmp2675-Lfunc_begin0 - .quad Lset31221 -.set Lset31222, Ltmp2679-Lfunc_begin0 - .quad Lset31222 -.set Lset31223, Ltmp2719-Lfunc_begin0 - .quad Lset31223 -.set Lset31224, Ltmp2722-Lfunc_begin0 - .quad Lset31224 - .quad 0 - .quad 0 -Ldebug_ranges142: -.set Lset31225, Ltmp2679-Lfunc_begin0 - .quad Lset31225 -.set Lset31226, Ltmp2681-Lfunc_begin0 - .quad Lset31226 -.set Lset31227, Ltmp2682-Lfunc_begin0 - .quad Lset31227 -.set Lset31228, Ltmp2685-Lfunc_begin0 - .quad Lset31228 -.set Lset31229, Ltmp2705-Lfunc_begin0 - .quad Lset31229 -.set Lset31230, Ltmp2710-Lfunc_begin0 - .quad Lset31230 - .quad 0 - .quad 0 -Ldebug_ranges143: -.set Lset31231, Ltmp2679-Lfunc_begin0 - .quad Lset31231 -.set Lset31232, Ltmp2686-Lfunc_begin0 - .quad Lset31232 -.set Lset31233, Ltmp2705-Lfunc_begin0 - .quad Lset31233 -.set Lset31234, Ltmp2710-Lfunc_begin0 - .quad Lset31234 - .quad 0 - .quad 0 -Ldebug_ranges144: -.set Lset31235, Ltmp2675-Lfunc_begin0 - .quad Lset31235 -.set Lset31236, Ltmp2733-Lfunc_begin0 - .quad Lset31236 -.set Lset31237, Ltmp2734-Lfunc_begin0 - .quad Lset31237 -.set Lset31238, Ltmp2736-Lfunc_begin0 - .quad Lset31238 -.set Lset31239, Ltmp6203-Lfunc_begin0 - .quad Lset31239 -.set Lset31240, Ltmp6206-Lfunc_begin0 - .quad Lset31240 - .quad 0 - .quad 0 -Ldebug_ranges145: -.set Lset31241, Ltmp2759-Lfunc_begin0 - .quad Lset31241 -.set Lset31242, Ltmp2763-Lfunc_begin0 - .quad Lset31242 -.set Lset31243, Ltmp2797-Lfunc_begin0 - .quad Lset31243 -.set Lset31244, Ltmp2802-Lfunc_begin0 - .quad Lset31244 -.set Lset31245, Ltmp6062-Lfunc_begin0 - .quad Lset31245 -.set Lset31246, Ltmp6064-Lfunc_begin0 - .quad Lset31246 - .quad 0 - .quad 0 -Ldebug_ranges146: -.set Lset31247, Ltmp2759-Lfunc_begin0 - .quad Lset31247 -.set Lset31248, Ltmp2763-Lfunc_begin0 - .quad Lset31248 -.set Lset31249, Ltmp2797-Lfunc_begin0 - .quad Lset31249 -.set Lset31250, Ltmp2803-Lfunc_begin0 - .quad Lset31250 -.set Lset31251, Ltmp6062-Lfunc_begin0 - .quad Lset31251 -.set Lset31252, Ltmp6064-Lfunc_begin0 - .quad Lset31252 - .quad 0 - .quad 0 -Ldebug_ranges147: -.set Lset31253, Ltmp2758-Lfunc_begin0 - .quad Lset31253 -.set Lset31254, Ltmp2763-Lfunc_begin0 - .quad Lset31254 -.set Lset31255, Ltmp2797-Lfunc_begin0 - .quad Lset31255 -.set Lset31256, Ltmp2803-Lfunc_begin0 - .quad Lset31256 -.set Lset31257, Ltmp6062-Lfunc_begin0 - .quad Lset31257 -.set Lset31258, Ltmp6064-Lfunc_begin0 - .quad Lset31258 - .quad 0 - .quad 0 -Ldebug_ranges148: -.set Lset31259, Ltmp2740-Lfunc_begin0 - .quad Lset31259 -.set Lset31260, Ltmp2806-Lfunc_begin0 - .quad Lset31260 -.set Lset31261, Ltmp2807-Lfunc_begin0 - .quad Lset31261 -.set Lset31262, Ltmp2809-Lfunc_begin0 - .quad Lset31262 -.set Lset31263, Ltmp6059-Lfunc_begin0 - .quad Lset31263 -.set Lset31264, Ltmp6064-Lfunc_begin0 - .quad Lset31264 - .quad 0 - .quad 0 -Ldebug_ranges149: -.set Lset31265, Ltmp2832-Lfunc_begin0 - .quad Lset31265 -.set Lset31266, Ltmp2838-Lfunc_begin0 - .quad Lset31266 -.set Lset31267, Ltmp2857-Lfunc_begin0 - .quad Lset31267 -.set Lset31268, Ltmp2862-Lfunc_begin0 - .quad Lset31268 -.set Lset31269, Ltmp5956-Lfunc_begin0 - .quad Lset31269 -.set Lset31270, Ltmp5958-Lfunc_begin0 - .quad Lset31270 - .quad 0 - .quad 0 -Ldebug_ranges150: -.set Lset31271, Ltmp2832-Lfunc_begin0 - .quad Lset31271 -.set Lset31272, Ltmp2838-Lfunc_begin0 - .quad Lset31272 -.set Lset31273, Ltmp2857-Lfunc_begin0 - .quad Lset31273 -.set Lset31274, Ltmp2863-Lfunc_begin0 - .quad Lset31274 -.set Lset31275, Ltmp5956-Lfunc_begin0 - .quad Lset31275 -.set Lset31276, Ltmp5958-Lfunc_begin0 - .quad Lset31276 - .quad 0 - .quad 0 -Ldebug_ranges151: -.set Lset31277, Ltmp2831-Lfunc_begin0 - .quad Lset31277 -.set Lset31278, Ltmp2838-Lfunc_begin0 - .quad Lset31278 -.set Lset31279, Ltmp2857-Lfunc_begin0 - .quad Lset31279 -.set Lset31280, Ltmp2863-Lfunc_begin0 - .quad Lset31280 -.set Lset31281, Ltmp5956-Lfunc_begin0 - .quad Lset31281 -.set Lset31282, Ltmp5958-Lfunc_begin0 - .quad Lset31282 - .quad 0 - .quad 0 -Ldebug_ranges152: -.set Lset31283, Ltmp2813-Lfunc_begin0 - .quad Lset31283 -.set Lset31284, Ltmp2866-Lfunc_begin0 - .quad Lset31284 -.set Lset31285, Ltmp2867-Lfunc_begin0 - .quad Lset31285 -.set Lset31286, Ltmp2869-Lfunc_begin0 - .quad Lset31286 -.set Lset31287, Ltmp5956-Lfunc_begin0 - .quad Lset31287 -.set Lset31288, Ltmp5958-Lfunc_begin0 - .quad Lset31288 -.set Lset31289, Ltmp6206-Lfunc_begin0 - .quad Lset31289 -.set Lset31290, Ltmp6209-Lfunc_begin0 - .quad Lset31290 - .quad 0 - .quad 0 -Ldebug_ranges153: -.set Lset31291, Ltmp2873-Lfunc_begin0 - .quad Lset31291 -.set Lset31292, Ltmp2916-Lfunc_begin0 - .quad Lset31292 -.set Lset31293, Ltmp2917-Lfunc_begin0 - .quad Lset31293 -.set Lset31294, Ltmp2919-Lfunc_begin0 - .quad Lset31294 -.set Lset31295, Ltmp6342-Lfunc_begin0 - .quad Lset31295 -.set Lset31296, Ltmp6345-Lfunc_begin0 - .quad Lset31296 - .quad 0 - .quad 0 -Ldebug_ranges154: -.set Lset31297, Ltmp2924-Lfunc_begin0 - .quad Lset31297 -.set Lset31298, Ltmp2952-Lfunc_begin0 - .quad Lset31298 -.set Lset31299, Ltmp2953-Lfunc_begin0 - .quad Lset31299 -.set Lset31300, Ltmp2955-Lfunc_begin0 - .quad Lset31300 -.set Lset31301, Ltmp6147-Lfunc_begin0 - .quad Lset31301 -.set Lset31302, Ltmp6148-Lfunc_begin0 - .quad Lset31302 - .quad 0 - .quad 0 -Ldebug_ranges155: -.set Lset31303, Ltmp2958-Lfunc_begin0 - .quad Lset31303 -.set Lset31304, Ltmp2962-Lfunc_begin0 - .quad Lset31304 -.set Lset31305, Ltmp2979-Lfunc_begin0 - .quad Lset31305 -.set Lset31306, Ltmp2982-Lfunc_begin0 - .quad Lset31306 - .quad 0 - .quad 0 -Ldebug_ranges156: -.set Lset31307, Ltmp2958-Lfunc_begin0 - .quad Lset31307 -.set Lset31308, Ltmp2962-Lfunc_begin0 - .quad Lset31308 -.set Lset31309, Ltmp2979-Lfunc_begin0 - .quad Lset31309 -.set Lset31310, Ltmp2982-Lfunc_begin0 - .quad Lset31310 - .quad 0 - .quad 0 -Ldebug_ranges157: -.set Lset31311, Ltmp2958-Lfunc_begin0 - .quad Lset31311 -.set Lset31312, Ltmp2992-Lfunc_begin0 - .quad Lset31312 -.set Lset31313, Ltmp2993-Lfunc_begin0 - .quad Lset31313 -.set Lset31314, Ltmp2995-Lfunc_begin0 - .quad Lset31314 -.set Lset31315, Ltmp6064-Lfunc_begin0 - .quad Lset31315 -.set Lset31316, Ltmp6065-Lfunc_begin0 - .quad Lset31316 - .quad 0 - .quad 0 -Ldebug_ranges158: -.set Lset31317, Ltmp2999-Lfunc_begin0 - .quad Lset31317 -.set Lset31318, Ltmp3019-Lfunc_begin0 - .quad Lset31318 -.set Lset31319, Ltmp3020-Lfunc_begin0 - .quad Lset31319 -.set Lset31320, Ltmp3022-Lfunc_begin0 - .quad Lset31320 -.set Lset31321, Ltmp6065-Lfunc_begin0 - .quad Lset31321 -.set Lset31322, Ltmp6066-Lfunc_begin0 - .quad Lset31322 - .quad 0 - .quad 0 -Ldebug_ranges159: -.set Lset31323, Ltmp3066-Lfunc_begin0 - .quad Lset31323 -.set Lset31324, Ltmp3068-Lfunc_begin0 - .quad Lset31324 -.set Lset31325, Ltmp3071-Lfunc_begin0 - .quad Lset31325 -.set Lset31326, Ltmp3073-Lfunc_begin0 - .quad Lset31326 -.set Lset31327, Ltmp6346-Lfunc_begin0 - .quad Lset31327 -.set Lset31328, Ltmp6347-Lfunc_begin0 - .quad Lset31328 - .quad 0 - .quad 0 -Ldebug_ranges160: -.set Lset31329, Ltmp3048-Lfunc_begin0 - .quad Lset31329 -.set Lset31330, Ltmp3095-Lfunc_begin0 - .quad Lset31330 -.set Lset31331, Ltmp6346-Lfunc_begin0 - .quad Lset31331 -.set Lset31332, Ltmp6348-Lfunc_begin0 - .quad Lset31332 - .quad 0 - .quad 0 -Ldebug_ranges161: -.set Lset31333, Ltmp3101-Lfunc_begin0 - .quad Lset31333 -.set Lset31334, Ltmp3111-Lfunc_begin0 - .quad Lset31334 -.set Lset31335, Ltmp3117-Lfunc_begin0 - .quad Lset31335 -.set Lset31336, Ltmp3118-Lfunc_begin0 - .quad Lset31336 - .quad 0 - .quad 0 -Ldebug_ranges162: -.set Lset31337, Ltmp3122-Lfunc_begin0 - .quad Lset31337 -.set Lset31338, Ltmp3160-Lfunc_begin0 - .quad Lset31338 -.set Lset31339, Ltmp6209-Lfunc_begin0 - .quad Lset31339 -.set Lset31340, Ltmp6210-Lfunc_begin0 - .quad Lset31340 -.set Lset31341, Ltmp6348-Lfunc_begin0 - .quad Lset31341 -.set Lset31342, Ltmp6349-Lfunc_begin0 - .quad Lset31342 - .quad 0 - .quad 0 -Ldebug_ranges163: -.set Lset31343, Ltmp3163-Lfunc_begin0 - .quad Lset31343 -.set Lset31344, Ltmp3223-Lfunc_begin0 - .quad Lset31344 -.set Lset31345, Ltmp3224-Lfunc_begin0 - .quad Lset31345 -.set Lset31346, Ltmp3226-Lfunc_begin0 - .quad Lset31346 -.set Lset31347, Ltmp6210-Lfunc_begin0 - .quad Lset31347 -.set Lset31348, Ltmp6213-Lfunc_begin0 - .quad Lset31348 - .quad 0 - .quad 0 -Ldebug_ranges164: -.set Lset31349, Ltmp3228-Lfunc_begin0 - .quad Lset31349 -.set Lset31350, Ltmp3288-Lfunc_begin0 - .quad Lset31350 -.set Lset31351, Ltmp3289-Lfunc_begin0 - .quad Lset31351 -.set Lset31352, Ltmp3291-Lfunc_begin0 - .quad Lset31352 -.set Lset31353, Ltmp5958-Lfunc_begin0 - .quad Lset31353 -.set Lset31354, Ltmp5961-Lfunc_begin0 - .quad Lset31354 - .quad 0 - .quad 0 -Ldebug_ranges165: -.set Lset31355, Ltmp3352-Lfunc_begin0 - .quad Lset31355 -.set Lset31356, Ltmp3357-Lfunc_begin0 - .quad Lset31356 -.set Lset31357, Ltmp6067-Lfunc_begin0 - .quad Lset31357 -.set Lset31358, Ltmp6068-Lfunc_begin0 - .quad Lset31358 - .quad 0 - .quad 0 -Ldebug_ranges166: -.set Lset31359, Ltmp3330-Lfunc_begin0 - .quad Lset31359 -.set Lset31360, Ltmp3371-Lfunc_begin0 - .quad Lset31360 -.set Lset31361, Ltmp3372-Lfunc_begin0 - .quad Lset31361 -.set Lset31362, Ltmp3374-Lfunc_begin0 - .quad Lset31362 -.set Lset31363, Ltmp6066-Lfunc_begin0 - .quad Lset31363 -.set Lset31364, Ltmp6068-Lfunc_begin0 - .quad Lset31364 - .quad 0 - .quad 0 -Ldebug_ranges167: -.set Lset31365, Ltmp3376-Lfunc_begin0 - .quad Lset31365 -.set Lset31366, Ltmp3405-Lfunc_begin0 - .quad Lset31366 -.set Lset31367, Ltmp3408-Lfunc_begin0 - .quad Lset31367 -.set Lset31368, Ltmp3410-Lfunc_begin0 - .quad Lset31368 -.set Lset31369, Ltmp6349-Lfunc_begin0 - .quad Lset31369 -.set Lset31370, Ltmp6350-Lfunc_begin0 - .quad Lset31370 -.set Lset31371, Ltmp6426-Lfunc_begin0 - .quad Lset31371 -.set Lset31372, Ltmp6427-Lfunc_begin0 - .quad Lset31372 - .quad 0 - .quad 0 -Ldebug_ranges168: -.set Lset31373, Ltmp3454-Lfunc_begin0 - .quad Lset31373 -.set Lset31374, Ltmp3457-Lfunc_begin0 - .quad Lset31374 -.set Lset31375, Ltmp6425-Lfunc_begin0 - .quad Lset31375 -.set Lset31376, Ltmp6426-Lfunc_begin0 - .quad Lset31376 - .quad 0 - .quad 0 -Ldebug_ranges169: -.set Lset31377, Ltmp3436-Lfunc_begin0 - .quad Lset31377 -.set Lset31378, Ltmp3465-Lfunc_begin0 - .quad Lset31378 -.set Lset31379, Ltmp6425-Lfunc_begin0 - .quad Lset31379 -.set Lset31380, Ltmp6426-Lfunc_begin0 - .quad Lset31380 -.set Lset31381, Ltmp6427-Lfunc_begin0 - .quad Lset31381 -.set Lset31382, Ltmp6432-Lfunc_begin0 - .quad Lset31382 - .quad 0 - .quad 0 -Ldebug_ranges170: -.set Lset31383, Ltmp3410-Lfunc_begin0 - .quad Lset31383 -.set Lset31384, Ltmp3433-Lfunc_begin0 - .quad Lset31384 -.set Lset31385, Ltmp3436-Lfunc_begin0 - .quad Lset31385 -.set Lset31386, Ltmp3465-Lfunc_begin0 - .quad Lset31386 -.set Lset31387, Ltmp6350-Lfunc_begin0 - .quad Lset31387 -.set Lset31388, Ltmp6351-Lfunc_begin0 - .quad Lset31388 -.set Lset31389, Ltmp6425-Lfunc_begin0 - .quad Lset31389 -.set Lset31390, Ltmp6426-Lfunc_begin0 - .quad Lset31390 -.set Lset31391, Ltmp6427-Lfunc_begin0 - .quad Lset31391 -.set Lset31392, Ltmp6432-Lfunc_begin0 - .quad Lset31392 - .quad 0 - .quad 0 -Ldebug_ranges171: -.set Lset31393, Ltmp3465-Lfunc_begin0 - .quad Lset31393 -.set Lset31394, Ltmp3488-Lfunc_begin0 - .quad Lset31394 -.set Lset31395, Ltmp5923-Lfunc_begin0 - .quad Lset31395 -.set Lset31396, Ltmp5926-Lfunc_begin0 - .quad Lset31396 -.set Lset31397, Ltmp6423-Lfunc_begin0 - .quad Lset31397 -.set Lset31398, Ltmp6425-Lfunc_begin0 - .quad Lset31398 - .quad 0 - .quad 0 -Ldebug_ranges172: -.set Lset31399, Ltmp3489-Lfunc_begin0 - .quad Lset31399 -.set Lset31400, Ltmp3499-Lfunc_begin0 - .quad Lset31400 -.set Lset31401, Ltmp3507-Lfunc_begin0 - .quad Lset31401 -.set Lset31402, Ltmp3513-Lfunc_begin0 - .quad Lset31402 -.set Lset31403, Ltmp3515-Lfunc_begin0 - .quad Lset31403 -.set Lset31404, Ltmp3516-Lfunc_begin0 - .quad Lset31404 -.set Lset31405, Ltmp6213-Lfunc_begin0 - .quad Lset31405 -.set Lset31406, Ltmp6214-Lfunc_begin0 - .quad Lset31406 -.set Lset31407, Ltmp6351-Lfunc_begin0 - .quad Lset31407 -.set Lset31408, Ltmp6353-Lfunc_begin0 - .quad Lset31408 - .quad 0 - .quad 0 -Ldebug_ranges173: -.set Lset31409, Ltmp3505-Lfunc_begin0 - .quad Lset31409 -.set Lset31410, Ltmp3507-Lfunc_begin0 - .quad Lset31410 -.set Lset31411, Ltmp3518-Lfunc_begin0 - .quad Lset31411 -.set Lset31412, Ltmp3530-Lfunc_begin0 - .quad Lset31412 -.set Lset31413, Ltmp6214-Lfunc_begin0 - .quad Lset31413 -.set Lset31414, Ltmp6216-Lfunc_begin0 - .quad Lset31414 - .quad 0 - .quad 0 -Ldebug_ranges174: -.set Lset31415, Ltmp3548-Lfunc_begin0 - .quad Lset31415 -.set Lset31416, Ltmp3549-Lfunc_begin0 - .quad Lset31416 -.set Lset31417, Ltmp3616-Lfunc_begin0 - .quad Lset31417 -.set Lset31418, Ltmp3617-Lfunc_begin0 - .quad Lset31418 - .quad 0 - .quad 0 -Ldebug_ranges175: -.set Lset31419, Ltmp3553-Lfunc_begin0 - .quad Lset31419 -.set Lset31420, Ltmp3555-Lfunc_begin0 - .quad Lset31420 -.set Lset31421, Ltmp3621-Lfunc_begin0 - .quad Lset31421 -.set Lset31422, Ltmp3622-Lfunc_begin0 - .quad Lset31422 - .quad 0 - .quad 0 -Ldebug_ranges176: -.set Lset31423, Ltmp3559-Lfunc_begin0 - .quad Lset31423 -.set Lset31424, Ltmp3560-Lfunc_begin0 - .quad Lset31424 -.set Lset31425, Ltmp3626-Lfunc_begin0 - .quad Lset31425 -.set Lset31426, Ltmp3628-Lfunc_begin0 - .quad Lset31426 - .quad 0 - .quad 0 -Ldebug_ranges177: -.set Lset31427, Ltmp3545-Lfunc_begin0 - .quad Lset31427 -.set Lset31428, Ltmp3560-Lfunc_begin0 - .quad Lset31428 -.set Lset31429, Ltmp3611-Lfunc_begin0 - .quad Lset31429 -.set Lset31430, Ltmp3628-Lfunc_begin0 - .quad Lset31430 -.set Lset31431, Ltmp5961-Lfunc_begin0 - .quad Lset31431 -.set Lset31432, Ltmp5964-Lfunc_begin0 - .quad Lset31432 - .quad 0 - .quad 0 -Ldebug_ranges178: -.set Lset31433, Ltmp3566-Lfunc_begin0 - .quad Lset31433 -.set Lset31434, Ltmp3569-Lfunc_begin0 - .quad Lset31434 -.set Lset31435, Ltmp3571-Lfunc_begin0 - .quad Lset31435 -.set Lset31436, Ltmp3577-Lfunc_begin0 - .quad Lset31436 -.set Lset31437, Ltmp3586-Lfunc_begin0 - .quad Lset31437 -.set Lset31438, Ltmp3608-Lfunc_begin0 - .quad Lset31438 - .quad 0 - .quad 0 -Ldebug_ranges179: -.set Lset31439, Ltmp3586-Lfunc_begin0 - .quad Lset31439 -.set Lset31440, Ltmp3594-Lfunc_begin0 - .quad Lset31440 -.set Lset31441, Ltmp3595-Lfunc_begin0 - .quad Lset31441 -.set Lset31442, Ltmp3608-Lfunc_begin0 - .quad Lset31442 - .quad 0 - .quad 0 -Ldebug_ranges180: -.set Lset31443, Ltmp3582-Lfunc_begin0 - .quad Lset31443 -.set Lset31444, Ltmp3586-Lfunc_begin0 - .quad Lset31444 -.set Lset31445, Ltmp3628-Lfunc_begin0 - .quad Lset31445 -.set Lset31446, Ltmp3629-Lfunc_begin0 - .quad Lset31446 -.set Lset31447, Ltmp6148-Lfunc_begin0 - .quad Lset31447 -.set Lset31448, Ltmp6150-Lfunc_begin0 - .quad Lset31448 - .quad 0 - .quad 0 -Ldebug_ranges181: -.set Lset31449, Ltmp3569-Lfunc_begin0 - .quad Lset31449 -.set Lset31450, Ltmp3570-Lfunc_begin0 - .quad Lset31450 -.set Lset31451, Ltmp3577-Lfunc_begin0 - .quad Lset31451 -.set Lset31452, Ltmp3586-Lfunc_begin0 - .quad Lset31452 -.set Lset31453, Ltmp3628-Lfunc_begin0 - .quad Lset31453 -.set Lset31454, Ltmp3629-Lfunc_begin0 - .quad Lset31454 -.set Lset31455, Ltmp5964-Lfunc_begin0 - .quad Lset31455 -.set Lset31456, Ltmp5965-Lfunc_begin0 - .quad Lset31456 -.set Lset31457, Ltmp6148-Lfunc_begin0 - .quad Lset31457 -.set Lset31458, Ltmp6150-Lfunc_begin0 - .quad Lset31458 - .quad 0 - .quad 0 -Ldebug_ranges182: -.set Lset31459, Ltmp3538-Lfunc_begin0 - .quad Lset31459 -.set Lset31460, Ltmp3633-Lfunc_begin0 - .quad Lset31460 -.set Lset31461, Ltmp3634-Lfunc_begin0 - .quad Lset31461 -.set Lset31462, Ltmp3636-Lfunc_begin0 - .quad Lset31462 -.set Lset31463, Ltmp5961-Lfunc_begin0 - .quad Lset31463 -.set Lset31464, Ltmp5965-Lfunc_begin0 - .quad Lset31464 -.set Lset31465, Ltmp6148-Lfunc_begin0 - .quad Lset31465 -.set Lset31466, Ltmp6150-Lfunc_begin0 - .quad Lset31466 - .quad 0 - .quad 0 -Ldebug_ranges183: -.set Lset31467, Ltmp3640-Lfunc_begin0 - .quad Lset31467 -.set Lset31468, Ltmp3646-Lfunc_begin0 - .quad Lset31468 -.set Lset31469, Ltmp6068-Lfunc_begin0 - .quad Lset31469 -.set Lset31470, Ltmp6069-Lfunc_begin0 - .quad Lset31470 - .quad 0 - .quad 0 -Ldebug_ranges184: -.set Lset31471, Ltmp3646-Lfunc_begin0 - .quad Lset31471 -.set Lset31472, Ltmp3650-Lfunc_begin0 - .quad Lset31472 -.set Lset31473, Ltmp6069-Lfunc_begin0 - .quad Lset31473 -.set Lset31474, Ltmp6070-Lfunc_begin0 - .quad Lset31474 - .quad 0 - .quad 0 -Ldebug_ranges185: -.set Lset31475, Ltmp3650-Lfunc_begin0 - .quad Lset31475 -.set Lset31476, Ltmp3654-Lfunc_begin0 - .quad Lset31476 -.set Lset31477, Ltmp6070-Lfunc_begin0 - .quad Lset31477 -.set Lset31478, Ltmp6071-Lfunc_begin0 - .quad Lset31478 - .quad 0 - .quad 0 -Ldebug_ranges186: -.set Lset31479, Ltmp3640-Lfunc_begin0 - .quad Lset31479 -.set Lset31480, Ltmp3665-Lfunc_begin0 - .quad Lset31480 -.set Lset31481, Ltmp6068-Lfunc_begin0 - .quad Lset31481 -.set Lset31482, Ltmp6072-Lfunc_begin0 - .quad Lset31482 - .quad 0 - .quad 0 -Ldebug_ranges187: -.set Lset31483, Ltmp3672-Lfunc_begin0 - .quad Lset31483 -.set Lset31484, Ltmp3676-Lfunc_begin0 - .quad Lset31484 -.set Lset31485, Ltmp6072-Lfunc_begin0 - .quad Lset31485 -.set Lset31486, Ltmp6073-Lfunc_begin0 - .quad Lset31486 - .quad 0 - .quad 0 -Ldebug_ranges188: -.set Lset31487, Ltmp3750-Lfunc_begin0 - .quad Lset31487 -.set Lset31488, Ltmp3754-Lfunc_begin0 - .quad Lset31488 -.set Lset31489, Ltmp3759-Lfunc_begin0 - .quad Lset31489 -.set Lset31490, Ltmp3761-Lfunc_begin0 - .quad Lset31490 - .quad 0 - .quad 0 -Ldebug_ranges189: -.set Lset31491, Ltmp3746-Lfunc_begin0 - .quad Lset31491 -.set Lset31492, Ltmp3754-Lfunc_begin0 - .quad Lset31492 -.set Lset31493, Ltmp3759-Lfunc_begin0 - .quad Lset31493 -.set Lset31494, Ltmp3761-Lfunc_begin0 - .quad Lset31494 -.set Lset31495, Ltmp6216-Lfunc_begin0 - .quad Lset31495 -.set Lset31496, Ltmp6217-Lfunc_begin0 - .quad Lset31496 - .quad 0 - .quad 0 -Ldebug_ranges190: -.set Lset31497, Ltmp3756-Lfunc_begin0 - .quad Lset31497 -.set Lset31498, Ltmp3757-Lfunc_begin0 - .quad Lset31498 -.set Lset31499, Ltmp3793-Lfunc_begin0 - .quad Lset31499 -.set Lset31500, Ltmp3797-Lfunc_begin0 - .quad Lset31500 - .quad 0 - .quad 0 -Ldebug_ranges191: -.set Lset31501, Ltmp3755-Lfunc_begin0 - .quad Lset31501 -.set Lset31502, Ltmp3756-Lfunc_begin0 - .quad Lset31502 -.set Lset31503, Ltmp3789-Lfunc_begin0 - .quad Lset31503 -.set Lset31504, Ltmp3791-Lfunc_begin0 - .quad Lset31504 - .quad 0 - .quad 0 -Ldebug_ranges192: -.set Lset31505, Ltmp3775-Lfunc_begin0 - .quad Lset31505 -.set Lset31506, Ltmp3786-Lfunc_begin0 - .quad Lset31506 -.set Lset31507, Ltmp6356-Lfunc_begin0 - .quad Lset31507 -.set Lset31508, Ltmp6357-Lfunc_begin0 - .quad Lset31508 - .quad 0 - .quad 0 -Ldebug_ranges193: -.set Lset31509, Ltmp3744-Lfunc_begin0 - .quad Lset31509 -.set Lset31510, Ltmp3757-Lfunc_begin0 - .quad Lset31510 -.set Lset31511, Ltmp3759-Lfunc_begin0 - .quad Lset31511 -.set Lset31512, Ltmp3761-Lfunc_begin0 - .quad Lset31512 -.set Lset31513, Ltmp3764-Lfunc_begin0 - .quad Lset31513 -.set Lset31514, Ltmp3765-Lfunc_begin0 - .quad Lset31514 -.set Lset31515, Ltmp3766-Lfunc_begin0 - .quad Lset31515 -.set Lset31516, Ltmp3791-Lfunc_begin0 - .quad Lset31516 -.set Lset31517, Ltmp3793-Lfunc_begin0 - .quad Lset31517 -.set Lset31518, Ltmp3797-Lfunc_begin0 - .quad Lset31518 -.set Lset31519, Ltmp5935-Lfunc_begin0 - .quad Lset31519 -.set Lset31520, Ltmp5936-Lfunc_begin0 - .quad Lset31520 -.set Lset31521, Ltmp6216-Lfunc_begin0 - .quad Lset31521 -.set Lset31522, Ltmp6217-Lfunc_begin0 - .quad Lset31522 -.set Lset31523, Ltmp6356-Lfunc_begin0 - .quad Lset31523 -.set Lset31524, Ltmp6357-Lfunc_begin0 - .quad Lset31524 - .quad 0 - .quad 0 -Ldebug_ranges194: -.set Lset31525, Ltmp3739-Lfunc_begin0 - .quad Lset31525 -.set Lset31526, Ltmp3799-Lfunc_begin0 - .quad Lset31526 -.set Lset31527, Ltmp5935-Lfunc_begin0 - .quad Lset31527 -.set Lset31528, Ltmp5936-Lfunc_begin0 - .quad Lset31528 -.set Lset31529, Ltmp6216-Lfunc_begin0 - .quad Lset31529 -.set Lset31530, Ltmp6217-Lfunc_begin0 - .quad Lset31530 -.set Lset31531, Ltmp6356-Lfunc_begin0 - .quad Lset31531 -.set Lset31532, Ltmp6357-Lfunc_begin0 - .quad Lset31532 - .quad 0 - .quad 0 -Ldebug_ranges195: -.set Lset31533, Ltmp3692-Lfunc_begin0 - .quad Lset31533 -.set Lset31534, Ltmp3803-Lfunc_begin0 - .quad Lset31534 -.set Lset31535, Ltmp3804-Lfunc_begin0 - .quad Lset31535 -.set Lset31536, Ltmp3806-Lfunc_begin0 - .quad Lset31536 -.set Lset31537, Ltmp5935-Lfunc_begin0 - .quad Lset31537 -.set Lset31538, Ltmp5936-Lfunc_begin0 - .quad Lset31538 -.set Lset31539, Ltmp6216-Lfunc_begin0 - .quad Lset31539 -.set Lset31540, Ltmp6217-Lfunc_begin0 - .quad Lset31540 -.set Lset31541, Ltmp6353-Lfunc_begin0 - .quad Lset31541 -.set Lset31542, Ltmp6357-Lfunc_begin0 - .quad Lset31542 - .quad 0 - .quad 0 -Ldebug_ranges196: -.set Lset31543, Ltmp3826-Lfunc_begin0 - .quad Lset31543 -.set Lset31544, Ltmp3832-Lfunc_begin0 - .quad Lset31544 -.set Lset31545, Ltmp3834-Lfunc_begin0 - .quad Lset31545 -.set Lset31546, Ltmp3837-Lfunc_begin0 - .quad Lset31546 - .quad 0 - .quad 0 -Ldebug_ranges197: -.set Lset31547, Ltmp3841-Lfunc_begin0 - .quad Lset31547 -.set Lset31548, Ltmp3846-Lfunc_begin0 - .quad Lset31548 -.set Lset31549, Ltmp5965-Lfunc_begin0 - .quad Lset31549 -.set Lset31550, Ltmp5969-Lfunc_begin0 - .quad Lset31550 - .quad 0 - .quad 0 -Ldebug_ranges198: -.set Lset31551, Ltmp3809-Lfunc_begin0 - .quad Lset31551 -.set Lset31552, Ltmp3863-Lfunc_begin0 - .quad Lset31552 -.set Lset31553, Ltmp5965-Lfunc_begin0 - .quad Lset31553 -.set Lset31554, Ltmp5970-Lfunc_begin0 - .quad Lset31554 - .quad 0 - .quad 0 -Ldebug_ranges199: -.set Lset31555, Ltmp3899-Lfunc_begin0 - .quad Lset31555 -.set Lset31556, Ltmp3900-Lfunc_begin0 - .quad Lset31556 -.set Lset31557, Ltmp3901-Lfunc_begin0 - .quad Lset31557 -.set Lset31558, Ltmp3904-Lfunc_begin0 - .quad Lset31558 -.set Lset31559, Ltmp3906-Lfunc_begin0 - .quad Lset31559 -.set Lset31560, Ltmp3908-Lfunc_begin0 - .quad Lset31560 -.set Lset31561, Ltmp5934-Lfunc_begin0 - .quad Lset31561 -.set Lset31562, Ltmp5935-Lfunc_begin0 - .quad Lset31562 - .quad 0 - .quad 0 -Ldebug_ranges200: -.set Lset31563, Ltmp3865-Lfunc_begin0 - .quad Lset31563 -.set Lset31564, Ltmp3879-Lfunc_begin0 - .quad Lset31564 -.set Lset31565, Ltmp3880-Lfunc_begin0 - .quad Lset31565 -.set Lset31566, Ltmp3931-Lfunc_begin0 - .quad Lset31566 -.set Lset31567, Ltmp5934-Lfunc_begin0 - .quad Lset31567 -.set Lset31568, Ltmp5935-Lfunc_begin0 - .quad Lset31568 - .quad 0 - .quad 0 -Ldebug_ranges201: -.set Lset31569, Ltmp3947-Lfunc_begin0 - .quad Lset31569 -.set Lset31570, Ltmp3951-Lfunc_begin0 - .quad Lset31570 -.set Lset31571, Ltmp6217-Lfunc_begin0 - .quad Lset31571 -.set Lset31572, Ltmp6219-Lfunc_begin0 - .quad Lset31572 -.set Lset31573, Ltmp6359-Lfunc_begin0 - .quad Lset31573 -.set Lset31574, Ltmp6361-Lfunc_begin0 - .quad Lset31574 - .quad 0 - .quad 0 -Ldebug_ranges202: -.set Lset31575, Ltmp3934-Lfunc_begin0 - .quad Lset31575 -.set Lset31576, Ltmp3954-Lfunc_begin0 - .quad Lset31576 -.set Lset31577, Ltmp3955-Lfunc_begin0 - .quad Lset31577 -.set Lset31578, Ltmp3957-Lfunc_begin0 - .quad Lset31578 -.set Lset31579, Ltmp6217-Lfunc_begin0 - .quad Lset31579 -.set Lset31580, Ltmp6219-Lfunc_begin0 - .quad Lset31580 -.set Lset31581, Ltmp6357-Lfunc_begin0 - .quad Lset31581 -.set Lset31582, Ltmp6361-Lfunc_begin0 - .quad Lset31582 - .quad 0 - .quad 0 -Ldebug_ranges203: -.set Lset31583, Ltmp3973-Lfunc_begin0 - .quad Lset31583 -.set Lset31584, Ltmp3977-Lfunc_begin0 - .quad Lset31584 -.set Lset31585, Ltmp6221-Lfunc_begin0 - .quad Lset31585 -.set Lset31586, Ltmp6225-Lfunc_begin0 - .quad Lset31586 - .quad 0 - .quad 0 -Ldebug_ranges204: -.set Lset31587, Ltmp3960-Lfunc_begin0 - .quad Lset31587 -.set Lset31588, Ltmp3980-Lfunc_begin0 - .quad Lset31588 -.set Lset31589, Ltmp3981-Lfunc_begin0 - .quad Lset31589 -.set Lset31590, Ltmp3983-Lfunc_begin0 - .quad Lset31590 -.set Lset31591, Ltmp6219-Lfunc_begin0 - .quad Lset31591 -.set Lset31592, Ltmp6225-Lfunc_begin0 - .quad Lset31592 - .quad 0 - .quad 0 -Ldebug_ranges205: -.set Lset31593, Ltmp3999-Lfunc_begin0 - .quad Lset31593 -.set Lset31594, Ltmp4003-Lfunc_begin0 - .quad Lset31594 -.set Lset31595, Ltmp6227-Lfunc_begin0 - .quad Lset31595 -.set Lset31596, Ltmp6231-Lfunc_begin0 - .quad Lset31596 - .quad 0 - .quad 0 -Ldebug_ranges206: -.set Lset31597, Ltmp3986-Lfunc_begin0 - .quad Lset31597 -.set Lset31598, Ltmp4006-Lfunc_begin0 - .quad Lset31598 -.set Lset31599, Ltmp4007-Lfunc_begin0 - .quad Lset31599 -.set Lset31600, Ltmp4009-Lfunc_begin0 - .quad Lset31600 -.set Lset31601, Ltmp6225-Lfunc_begin0 - .quad Lset31601 -.set Lset31602, Ltmp6231-Lfunc_begin0 - .quad Lset31602 - .quad 0 - .quad 0 -Ldebug_ranges207: -.set Lset31603, Ltmp4024-Lfunc_begin0 - .quad Lset31603 -.set Lset31604, Ltmp4038-Lfunc_begin0 - .quad Lset31604 -.set Lset31605, Ltmp5972-Lfunc_begin0 - .quad Lset31605 -.set Lset31606, Ltmp5976-Lfunc_begin0 - .quad Lset31606 - .quad 0 - .quad 0 -Ldebug_ranges208: -.set Lset31607, Ltmp4012-Lfunc_begin0 - .quad Lset31607 -.set Lset31608, Ltmp4041-Lfunc_begin0 - .quad Lset31608 -.set Lset31609, Ltmp4042-Lfunc_begin0 - .quad Lset31609 -.set Lset31610, Ltmp4044-Lfunc_begin0 - .quad Lset31610 -.set Lset31611, Ltmp5970-Lfunc_begin0 - .quad Lset31611 -.set Lset31612, Ltmp5976-Lfunc_begin0 - .quad Lset31612 - .quad 0 - .quad 0 -Ldebug_ranges209: -.set Lset31613, Ltmp4064-Lfunc_begin0 - .quad Lset31613 -.set Lset31614, Ltmp4070-Lfunc_begin0 - .quad Lset31614 -.set Lset31615, Ltmp4072-Lfunc_begin0 - .quad Lset31615 -.set Lset31616, Ltmp4075-Lfunc_begin0 - .quad Lset31616 - .quad 0 - .quad 0 -Ldebug_ranges210: -.set Lset31617, Ltmp4061-Lfunc_begin0 - .quad Lset31617 -.set Lset31618, Ltmp4062-Lfunc_begin0 - .quad Lset31618 -.set Lset31619, Ltmp4063-Lfunc_begin0 - .quad Lset31619 -.set Lset31620, Ltmp4076-Lfunc_begin0 - .quad Lset31620 -.set Lset31621, Ltmp5981-Lfunc_begin0 - .quad Lset31621 -.set Lset31622, Ltmp5983-Lfunc_begin0 - .quad Lset31622 - .quad 0 - .quad 0 -Ldebug_ranges211: -.set Lset31623, Ltmp4047-Lfunc_begin0 - .quad Lset31623 -.set Lset31624, Ltmp4079-Lfunc_begin0 - .quad Lset31624 -.set Lset31625, Ltmp4080-Lfunc_begin0 - .quad Lset31625 -.set Lset31626, Ltmp4082-Lfunc_begin0 - .quad Lset31626 -.set Lset31627, Ltmp5976-Lfunc_begin0 - .quad Lset31627 -.set Lset31628, Ltmp5983-Lfunc_begin0 - .quad Lset31628 - .quad 0 - .quad 0 -Ldebug_ranges212: -.set Lset31629, Ltmp4085-Lfunc_begin0 - .quad Lset31629 -.set Lset31630, Ltmp4101-Lfunc_begin0 - .quad Lset31630 -.set Lset31631, Ltmp4102-Lfunc_begin0 - .quad Lset31631 -.set Lset31632, Ltmp4104-Lfunc_begin0 - .quad Lset31632 -.set Lset31633, Ltmp6073-Lfunc_begin0 - .quad Lset31633 -.set Lset31634, Ltmp6075-Lfunc_begin0 - .quad Lset31634 - .quad 0 - .quad 0 -Ldebug_ranges213: -.set Lset31635, Ltmp4107-Lfunc_begin0 - .quad Lset31635 -.set Lset31636, Ltmp4142-Lfunc_begin0 - .quad Lset31636 -.set Lset31637, Ltmp4143-Lfunc_begin0 - .quad Lset31637 -.set Lset31638, Ltmp4145-Lfunc_begin0 - .quad Lset31638 -.set Lset31639, Ltmp6075-Lfunc_begin0 - .quad Lset31639 -.set Lset31640, Ltmp6081-Lfunc_begin0 - .quad Lset31640 - .quad 0 - .quad 0 -Ldebug_ranges214: -.set Lset31641, Ltmp4147-Lfunc_begin0 - .quad Lset31641 -.set Lset31642, Ltmp4183-Lfunc_begin0 - .quad Lset31642 -.set Lset31643, Ltmp4184-Lfunc_begin0 - .quad Lset31643 -.set Lset31644, Ltmp4186-Lfunc_begin0 - .quad Lset31644 -.set Lset31645, Ltmp6081-Lfunc_begin0 - .quad Lset31645 -.set Lset31646, Ltmp6082-Lfunc_begin0 - .quad Lset31646 -.set Lset31647, Ltmp6231-Lfunc_begin0 - .quad Lset31647 -.set Lset31648, Ltmp6232-Lfunc_begin0 - .quad Lset31648 -.set Lset31649, Ltmp6361-Lfunc_begin0 - .quad Lset31649 -.set Lset31650, Ltmp6365-Lfunc_begin0 - .quad Lset31650 - .quad 0 - .quad 0 -Ldebug_ranges215: -.set Lset31651, Ltmp4188-Lfunc_begin0 - .quad Lset31651 -.set Lset31652, Ltmp4223-Lfunc_begin0 - .quad Lset31652 -.set Lset31653, Ltmp4224-Lfunc_begin0 - .quad Lset31653 -.set Lset31654, Ltmp4226-Lfunc_begin0 - .quad Lset31654 -.set Lset31655, Ltmp6365-Lfunc_begin0 - .quad Lset31655 -.set Lset31656, Ltmp6371-Lfunc_begin0 - .quad Lset31656 - .quad 0 - .quad 0 -Ldebug_ranges216: -.set Lset31657, Ltmp4228-Lfunc_begin0 - .quad Lset31657 -.set Lset31658, Ltmp4264-Lfunc_begin0 - .quad Lset31658 -.set Lset31659, Ltmp4265-Lfunc_begin0 - .quad Lset31659 -.set Lset31660, Ltmp4267-Lfunc_begin0 - .quad Lset31660 -.set Lset31661, Ltmp6232-Lfunc_begin0 - .quad Lset31661 -.set Lset31662, Ltmp6238-Lfunc_begin0 - .quad Lset31662 - .quad 0 - .quad 0 -Ldebug_ranges217: -.set Lset31663, Ltmp4269-Lfunc_begin0 - .quad Lset31663 -.set Lset31664, Ltmp4304-Lfunc_begin0 - .quad Lset31664 -.set Lset31665, Ltmp4305-Lfunc_begin0 - .quad Lset31665 -.set Lset31666, Ltmp4307-Lfunc_begin0 - .quad Lset31666 -.set Lset31667, Ltmp6238-Lfunc_begin0 - .quad Lset31667 -.set Lset31668, Ltmp6244-Lfunc_begin0 - .quad Lset31668 - .quad 0 - .quad 0 -Ldebug_ranges218: -.set Lset31669, Ltmp4309-Lfunc_begin0 - .quad Lset31669 -.set Lset31670, Ltmp4345-Lfunc_begin0 - .quad Lset31670 -.set Lset31671, Ltmp4346-Lfunc_begin0 - .quad Lset31671 -.set Lset31672, Ltmp4348-Lfunc_begin0 - .quad Lset31672 -.set Lset31673, Ltmp5983-Lfunc_begin0 - .quad Lset31673 -.set Lset31674, Ltmp5989-Lfunc_begin0 - .quad Lset31674 - .quad 0 - .quad 0 -Ldebug_ranges219: -.set Lset31675, Ltmp4350-Lfunc_begin0 - .quad Lset31675 -.set Lset31676, Ltmp4375-Lfunc_begin0 - .quad Lset31676 -.set Lset31677, Ltmp4376-Lfunc_begin0 - .quad Lset31677 -.set Lset31678, Ltmp4378-Lfunc_begin0 - .quad Lset31678 -.set Lset31679, Ltmp6082-Lfunc_begin0 - .quad Lset31679 -.set Lset31680, Ltmp6085-Lfunc_begin0 - .quad Lset31680 - .quad 0 - .quad 0 -Ldebug_ranges220: -.set Lset31681, Ltmp4382-Lfunc_begin0 - .quad Lset31681 -.set Lset31682, Ltmp4407-Lfunc_begin0 - .quad Lset31682 -.set Lset31683, Ltmp4408-Lfunc_begin0 - .quad Lset31683 -.set Lset31684, Ltmp4410-Lfunc_begin0 - .quad Lset31684 -.set Lset31685, Ltmp6371-Lfunc_begin0 - .quad Lset31685 -.set Lset31686, Ltmp6376-Lfunc_begin0 - .quad Lset31686 - .quad 0 - .quad 0 -Ldebug_ranges221: -.set Lset31687, Ltmp4430-Lfunc_begin0 - .quad Lset31687 -.set Lset31688, Ltmp4437-Lfunc_begin0 - .quad Lset31688 -.set Lset31689, Ltmp5989-Lfunc_begin0 - .quad Lset31689 -.set Lset31690, Ltmp5990-Lfunc_begin0 - .quad Lset31690 -.set Lset31691, Ltmp6376-Lfunc_begin0 - .quad Lset31691 -.set Lset31692, Ltmp6377-Lfunc_begin0 - .quad Lset31692 - .quad 0 - .quad 0 -Ldebug_ranges222: -.set Lset31693, Ltmp4414-Lfunc_begin0 - .quad Lset31693 -.set Lset31694, Ltmp4453-Lfunc_begin0 - .quad Lset31694 -.set Lset31695, Ltmp5989-Lfunc_begin0 - .quad Lset31695 -.set Lset31696, Ltmp5990-Lfunc_begin0 - .quad Lset31696 -.set Lset31697, Ltmp6376-Lfunc_begin0 - .quad Lset31697 -.set Lset31698, Ltmp6379-Lfunc_begin0 - .quad Lset31698 - .quad 0 - .quad 0 -Ldebug_ranges223: -.set Lset31699, Ltmp4471-Lfunc_begin0 - .quad Lset31699 -.set Lset31700, Ltmp4478-Lfunc_begin0 - .quad Lset31700 -.set Lset31701, Ltmp5990-Lfunc_begin0 - .quad Lset31701 -.set Lset31702, Ltmp5991-Lfunc_begin0 - .quad Lset31702 -.set Lset31703, Ltmp6379-Lfunc_begin0 - .quad Lset31703 -.set Lset31704, Ltmp6380-Lfunc_begin0 - .quad Lset31704 - .quad 0 - .quad 0 -Ldebug_ranges224: -.set Lset31705, Ltmp4455-Lfunc_begin0 - .quad Lset31705 -.set Lset31706, Ltmp4494-Lfunc_begin0 - .quad Lset31706 -.set Lset31707, Ltmp5990-Lfunc_begin0 - .quad Lset31707 -.set Lset31708, Ltmp5991-Lfunc_begin0 - .quad Lset31708 -.set Lset31709, Ltmp6379-Lfunc_begin0 - .quad Lset31709 -.set Lset31710, Ltmp6382-Lfunc_begin0 - .quad Lset31710 - .quad 0 - .quad 0 -Ldebug_ranges225: -.set Lset31711, Ltmp4563-Lfunc_begin0 - .quad Lset31711 -.set Lset31712, Ltmp4571-Lfunc_begin0 - .quad Lset31712 -.set Lset31713, Ltmp6244-Lfunc_begin0 - .quad Lset31713 -.set Lset31714, Ltmp6245-Lfunc_begin0 - .quad Lset31714 - .quad 0 - .quad 0 -Ldebug_ranges226: -.set Lset31715, Ltmp4517-Lfunc_begin0 - .quad Lset31715 -.set Lset31716, Ltmp4523-Lfunc_begin0 - .quad Lset31716 -.set Lset31717, Ltmp4555-Lfunc_begin0 - .quad Lset31717 -.set Lset31718, Ltmp4571-Lfunc_begin0 - .quad Lset31718 -.set Lset31719, Ltmp6085-Lfunc_begin0 - .quad Lset31719 -.set Lset31720, Ltmp6087-Lfunc_begin0 - .quad Lset31720 -.set Lset31721, Ltmp6244-Lfunc_begin0 - .quad Lset31721 -.set Lset31722, Ltmp6245-Lfunc_begin0 - .quad Lset31722 - .quad 0 - .quad 0 -Ldebug_ranges227: -.set Lset31723, Ltmp4496-Lfunc_begin0 - .quad Lset31723 -.set Lset31724, Ltmp4574-Lfunc_begin0 - .quad Lset31724 -.set Lset31725, Ltmp4575-Lfunc_begin0 - .quad Lset31725 -.set Lset31726, Ltmp4577-Lfunc_begin0 - .quad Lset31726 -.set Lset31727, Ltmp6085-Lfunc_begin0 - .quad Lset31727 -.set Lset31728, Ltmp6087-Lfunc_begin0 - .quad Lset31728 -.set Lset31729, Ltmp6150-Lfunc_begin0 - .quad Lset31729 -.set Lset31730, Ltmp6152-Lfunc_begin0 - .quad Lset31730 -.set Lset31731, Ltmp6244-Lfunc_begin0 - .quad Lset31731 -.set Lset31732, Ltmp6245-Lfunc_begin0 - .quad Lset31732 - .quad 0 - .quad 0 -Ldebug_ranges228: -.set Lset31733, Ltmp4634-Lfunc_begin0 - .quad Lset31733 -.set Lset31734, Ltmp4641-Lfunc_begin0 - .quad Lset31734 -.set Lset31735, Ltmp6382-Lfunc_begin0 - .quad Lset31735 -.set Lset31736, Ltmp6384-Lfunc_begin0 - .quad Lset31736 - .quad 0 - .quad 0 -Ldebug_ranges229: -.set Lset31737, Ltmp4620-Lfunc_begin0 - .quad Lset31737 -.set Lset31738, Ltmp4631-Lfunc_begin0 - .quad Lset31738 -.set Lset31739, Ltmp5930-Lfunc_begin0 - .quad Lset31739 -.set Lset31740, Ltmp5932-Lfunc_begin0 - .quad Lset31740 -.set Lset31741, Ltmp5996-Lfunc_begin0 - .quad Lset31741 -.set Lset31742, Ltmp5997-Lfunc_begin0 - .quad Lset31742 - .quad 0 - .quad 0 -Ldebug_ranges230: -.set Lset31743, Ltmp4624-Lfunc_begin0 - .quad Lset31743 -.set Lset31744, Ltmp4631-Lfunc_begin0 - .quad Lset31744 -.set Lset31745, Ltmp5930-Lfunc_begin0 - .quad Lset31745 -.set Lset31746, Ltmp5932-Lfunc_begin0 - .quad Lset31746 - .quad 0 - .quad 0 -Ldebug_ranges231: -.set Lset31747, Ltmp4581-Lfunc_begin0 - .quad Lset31747 -.set Lset31748, Ltmp4582-Lfunc_begin0 - .quad Lset31748 -.set Lset31749, Ltmp4599-Lfunc_begin0 - .quad Lset31749 -.set Lset31750, Ltmp4605-Lfunc_begin0 - .quad Lset31750 -.set Lset31751, Ltmp4616-Lfunc_begin0 - .quad Lset31751 -.set Lset31752, Ltmp4641-Lfunc_begin0 - .quad Lset31752 -.set Lset31753, Ltmp5930-Lfunc_begin0 - .quad Lset31753 -.set Lset31754, Ltmp5932-Lfunc_begin0 - .quad Lset31754 -.set Lset31755, Ltmp5996-Lfunc_begin0 - .quad Lset31755 -.set Lset31756, Ltmp5997-Lfunc_begin0 - .quad Lset31756 -.set Lset31757, Ltmp6088-Lfunc_begin0 - .quad Lset31757 -.set Lset31758, Ltmp6094-Lfunc_begin0 - .quad Lset31758 -.set Lset31759, Ltmp6245-Lfunc_begin0 - .quad Lset31759 -.set Lset31760, Ltmp6247-Lfunc_begin0 - .quad Lset31760 -.set Lset31761, Ltmp6382-Lfunc_begin0 - .quad Lset31761 -.set Lset31762, Ltmp6384-Lfunc_begin0 - .quad Lset31762 - .quad 0 - .quad 0 -Ldebug_ranges232: -.set Lset31763, Ltmp4581-Lfunc_begin0 - .quad Lset31763 -.set Lset31764, Ltmp4644-Lfunc_begin0 - .quad Lset31764 -.set Lset31765, Ltmp4645-Lfunc_begin0 - .quad Lset31765 -.set Lset31766, Ltmp4647-Lfunc_begin0 - .quad Lset31766 -.set Lset31767, Ltmp5930-Lfunc_begin0 - .quad Lset31767 -.set Lset31768, Ltmp5932-Lfunc_begin0 - .quad Lset31768 -.set Lset31769, Ltmp5991-Lfunc_begin0 - .quad Lset31769 -.set Lset31770, Ltmp5992-Lfunc_begin0 - .quad Lset31770 -.set Lset31771, Ltmp5996-Lfunc_begin0 - .quad Lset31771 -.set Lset31772, Ltmp5997-Lfunc_begin0 - .quad Lset31772 -.set Lset31773, Ltmp6087-Lfunc_begin0 - .quad Lset31773 -.set Lset31774, Ltmp6094-Lfunc_begin0 - .quad Lset31774 -.set Lset31775, Ltmp6245-Lfunc_begin0 - .quad Lset31775 -.set Lset31776, Ltmp6247-Lfunc_begin0 - .quad Lset31776 -.set Lset31777, Ltmp6382-Lfunc_begin0 - .quad Lset31777 -.set Lset31778, Ltmp6384-Lfunc_begin0 - .quad Lset31778 - .quad 0 - .quad 0 -Ldebug_ranges233: -.set Lset31779, Ltmp4701-Lfunc_begin0 - .quad Lset31779 -.set Lset31780, Ltmp4709-Lfunc_begin0 - .quad Lset31780 -.set Lset31781, Ltmp5997-Lfunc_begin0 - .quad Lset31781 -.set Lset31782, Ltmp5999-Lfunc_begin0 - .quad Lset31782 - .quad 0 - .quad 0 -Ldebug_ranges234: -.set Lset31783, Ltmp4651-Lfunc_begin0 - .quad Lset31783 -.set Lset31784, Ltmp4652-Lfunc_begin0 - .quad Lset31784 -.set Lset31785, Ltmp4667-Lfunc_begin0 - .quad Lset31785 -.set Lset31786, Ltmp4674-Lfunc_begin0 - .quad Lset31786 -.set Lset31787, Ltmp4684-Lfunc_begin0 - .quad Lset31787 -.set Lset31788, Ltmp4709-Lfunc_begin0 - .quad Lset31788 -.set Lset31789, Ltmp5993-Lfunc_begin0 - .quad Lset31789 -.set Lset31790, Ltmp5996-Lfunc_begin0 - .quad Lset31790 -.set Lset31791, Ltmp5997-Lfunc_begin0 - .quad Lset31791 -.set Lset31792, Ltmp5999-Lfunc_begin0 - .quad Lset31792 -.set Lset31793, Ltmp6250-Lfunc_begin0 - .quad Lset31793 -.set Lset31794, Ltmp6256-Lfunc_begin0 - .quad Lset31794 - .quad 0 - .quad 0 -Ldebug_ranges235: -.set Lset31795, Ltmp4651-Lfunc_begin0 - .quad Lset31795 -.set Lset31796, Ltmp4712-Lfunc_begin0 - .quad Lset31796 -.set Lset31797, Ltmp4713-Lfunc_begin0 - .quad Lset31797 -.set Lset31798, Ltmp4715-Lfunc_begin0 - .quad Lset31798 -.set Lset31799, Ltmp5992-Lfunc_begin0 - .quad Lset31799 -.set Lset31800, Ltmp5996-Lfunc_begin0 - .quad Lset31800 -.set Lset31801, Ltmp5997-Lfunc_begin0 - .quad Lset31801 -.set Lset31802, Ltmp5999-Lfunc_begin0 - .quad Lset31802 -.set Lset31803, Ltmp6247-Lfunc_begin0 - .quad Lset31803 -.set Lset31804, Ltmp6256-Lfunc_begin0 - .quad Lset31804 - .quad 0 - .quad 0 -Ldebug_ranges236: -.set Lset31805, Ltmp4767-Lfunc_begin0 - .quad Lset31805 -.set Lset31806, Ltmp4775-Lfunc_begin0 - .quad Lset31806 -.set Lset31807, Ltmp6105-Lfunc_begin0 - .quad Lset31807 -.set Lset31808, Ltmp6107-Lfunc_begin0 - .quad Lset31808 - .quad 0 - .quad 0 -Ldebug_ranges237: -.set Lset31809, Ltmp4719-Lfunc_begin0 - .quad Lset31809 -.set Lset31810, Ltmp4727-Lfunc_begin0 - .quad Lset31810 -.set Lset31811, Ltmp4743-Lfunc_begin0 - .quad Lset31811 -.set Lset31812, Ltmp4775-Lfunc_begin0 - .quad Lset31812 -.set Lset31813, Ltmp6000-Lfunc_begin0 - .quad Lset31813 -.set Lset31814, Ltmp6002-Lfunc_begin0 - .quad Lset31814 -.set Lset31815, Ltmp6094-Lfunc_begin0 - .quad Lset31815 -.set Lset31816, Ltmp6107-Lfunc_begin0 - .quad Lset31816 - .quad 0 - .quad 0 -Ldebug_ranges238: -.set Lset31817, Ltmp4738-Lfunc_begin0 - .quad Lset31817 -.set Lset31818, Ltmp4743-Lfunc_begin0 - .quad Lset31818 -.set Lset31819, Ltmp6152-Lfunc_begin0 - .quad Lset31819 -.set Lset31820, Ltmp6154-Lfunc_begin0 - .quad Lset31820 - .quad 0 - .quad 0 -Ldebug_ranges239: -.set Lset31821, Ltmp4719-Lfunc_begin0 - .quad Lset31821 -.set Lset31822, Ltmp4778-Lfunc_begin0 - .quad Lset31822 -.set Lset31823, Ltmp4779-Lfunc_begin0 - .quad Lset31823 -.set Lset31824, Ltmp4781-Lfunc_begin0 - .quad Lset31824 -.set Lset31825, Ltmp5999-Lfunc_begin0 - .quad Lset31825 -.set Lset31826, Ltmp6002-Lfunc_begin0 - .quad Lset31826 -.set Lset31827, Ltmp6094-Lfunc_begin0 - .quad Lset31827 -.set Lset31828, Ltmp6107-Lfunc_begin0 - .quad Lset31828 -.set Lset31829, Ltmp6152-Lfunc_begin0 - .quad Lset31829 -.set Lset31830, Ltmp6154-Lfunc_begin0 - .quad Lset31830 - .quad 0 - .quad 0 -Ldebug_ranges240: -.set Lset31831, Ltmp4784-Lfunc_begin0 - .quad Lset31831 -.set Lset31832, Ltmp4808-Lfunc_begin0 - .quad Lset31832 -.set Lset31833, Ltmp4809-Lfunc_begin0 - .quad Lset31833 -.set Lset31834, Ltmp4811-Lfunc_begin0 - .quad Lset31834 -.set Lset31835, Ltmp6002-Lfunc_begin0 - .quad Lset31835 -.set Lset31836, Ltmp6005-Lfunc_begin0 - .quad Lset31836 -.set Lset31837, Ltmp6154-Lfunc_begin0 - .quad Lset31837 -.set Lset31838, Ltmp6157-Lfunc_begin0 - .quad Lset31838 - .quad 0 - .quad 0 -Ldebug_ranges241: -.set Lset31839, Ltmp4831-Lfunc_begin0 - .quad Lset31839 -.set Lset31840, Ltmp4836-Lfunc_begin0 - .quad Lset31840 -.set Lset31841, Ltmp6114-Lfunc_begin0 - .quad Lset31841 -.set Lset31842, Ltmp6116-Lfunc_begin0 - .quad Lset31842 - .quad 0 - .quad 0 -Ldebug_ranges242: -.set Lset31843, Ltmp4814-Lfunc_begin0 - .quad Lset31843 -.set Lset31844, Ltmp4838-Lfunc_begin0 - .quad Lset31844 -.set Lset31845, Ltmp4839-Lfunc_begin0 - .quad Lset31845 -.set Lset31846, Ltmp4841-Lfunc_begin0 - .quad Lset31846 -.set Lset31847, Ltmp6108-Lfunc_begin0 - .quad Lset31847 -.set Lset31848, Ltmp6116-Lfunc_begin0 - .quad Lset31848 - .quad 0 - .quad 0 -Ldebug_ranges243: -.set Lset31849, Ltmp4866-Lfunc_begin0 - .quad Lset31849 -.set Lset31850, Ltmp4870-Lfunc_begin0 - .quad Lset31850 -.set Lset31851, Ltmp4886-Lfunc_begin0 - .quad Lset31851 -.set Lset31852, Ltmp4887-Lfunc_begin0 - .quad Lset31852 - .quad 0 - .quad 0 -Ldebug_ranges244: -.set Lset31853, Ltmp4870-Lfunc_begin0 - .quad Lset31853 -.set Lset31854, Ltmp4874-Lfunc_begin0 - .quad Lset31854 -.set Lset31855, Ltmp4887-Lfunc_begin0 - .quad Lset31855 -.set Lset31856, Ltmp4888-Lfunc_begin0 - .quad Lset31856 - .quad 0 - .quad 0 -Ldebug_ranges245: -.set Lset31857, Ltmp4881-Lfunc_begin0 - .quad Lset31857 -.set Lset31858, Ltmp4886-Lfunc_begin0 - .quad Lset31858 -.set Lset31859, Ltmp4893-Lfunc_begin0 - .quad Lset31859 -.set Lset31860, Ltmp4895-Lfunc_begin0 - .quad Lset31860 - .quad 0 - .quad 0 -Ldebug_ranges246: -.set Lset31861, Ltmp4878-Lfunc_begin0 - .quad Lset31861 -.set Lset31862, Ltmp4886-Lfunc_begin0 - .quad Lset31862 -.set Lset31863, Ltmp4893-Lfunc_begin0 - .quad Lset31863 -.set Lset31864, Ltmp4895-Lfunc_begin0 - .quad Lset31864 -.set Lset31865, Ltmp6384-Lfunc_begin0 - .quad Lset31865 -.set Lset31866, Ltmp6385-Lfunc_begin0 - .quad Lset31866 - .quad 0 - .quad 0 -Ldebug_ranges247: -.set Lset31867, Ltmp4844-Lfunc_begin0 - .quad Lset31867 -.set Lset31868, Ltmp4898-Lfunc_begin0 - .quad Lset31868 -.set Lset31869, Ltmp4899-Lfunc_begin0 - .quad Lset31869 -.set Lset31870, Ltmp4901-Lfunc_begin0 - .quad Lset31870 -.set Lset31871, Ltmp6116-Lfunc_begin0 - .quad Lset31871 -.set Lset31872, Ltmp6120-Lfunc_begin0 - .quad Lset31872 -.set Lset31873, Ltmp6256-Lfunc_begin0 - .quad Lset31873 -.set Lset31874, Ltmp6258-Lfunc_begin0 - .quad Lset31874 -.set Lset31875, Ltmp6384-Lfunc_begin0 - .quad Lset31875 -.set Lset31876, Ltmp6385-Lfunc_begin0 - .quad Lset31876 - .quad 0 - .quad 0 -Ldebug_ranges248: -.set Lset31877, Ltmp4921-Lfunc_begin0 - .quad Lset31877 -.set Lset31878, Ltmp4937-Lfunc_begin0 - .quad Lset31878 -.set Lset31879, Ltmp6008-Lfunc_begin0 - .quad Lset31879 -.set Lset31880, Ltmp6012-Lfunc_begin0 - .quad Lset31880 - .quad 0 - .quad 0 -Ldebug_ranges249: -.set Lset31881, Ltmp4903-Lfunc_begin0 - .quad Lset31881 -.set Lset31882, Ltmp4939-Lfunc_begin0 - .quad Lset31882 -.set Lset31883, Ltmp4940-Lfunc_begin0 - .quad Lset31883 -.set Lset31884, Ltmp4942-Lfunc_begin0 - .quad Lset31884 -.set Lset31885, Ltmp6005-Lfunc_begin0 - .quad Lset31885 -.set Lset31886, Ltmp6012-Lfunc_begin0 - .quad Lset31886 -.set Lset31887, Ltmp6258-Lfunc_begin0 - .quad Lset31887 -.set Lset31888, Ltmp6265-Lfunc_begin0 - .quad Lset31888 - .quad 0 - .quad 0 -Ldebug_ranges250: -.set Lset31889, Ltmp4966-Lfunc_begin0 - .quad Lset31889 -.set Lset31890, Ltmp4970-Lfunc_begin0 - .quad Lset31890 -.set Lset31891, Ltmp4984-Lfunc_begin0 - .quad Lset31891 -.set Lset31892, Ltmp4985-Lfunc_begin0 - .quad Lset31892 - .quad 0 - .quad 0 -Ldebug_ranges251: -.set Lset31893, Ltmp4970-Lfunc_begin0 - .quad Lset31893 -.set Lset31894, Ltmp4974-Lfunc_begin0 - .quad Lset31894 -.set Lset31895, Ltmp4985-Lfunc_begin0 - .quad Lset31895 -.set Lset31896, Ltmp4986-Lfunc_begin0 - .quad Lset31896 - .quad 0 - .quad 0 -Ldebug_ranges252: -.set Lset31897, Ltmp4980-Lfunc_begin0 - .quad Lset31897 -.set Lset31898, Ltmp4984-Lfunc_begin0 - .quad Lset31898 -.set Lset31899, Ltmp4991-Lfunc_begin0 - .quad Lset31899 -.set Lset31900, Ltmp4993-Lfunc_begin0 - .quad Lset31900 - .quad 0 - .quad 0 -Ldebug_ranges253: -.set Lset31901, Ltmp4977-Lfunc_begin0 - .quad Lset31901 -.set Lset31902, Ltmp4984-Lfunc_begin0 - .quad Lset31902 -.set Lset31903, Ltmp4991-Lfunc_begin0 - .quad Lset31903 -.set Lset31904, Ltmp4993-Lfunc_begin0 - .quad Lset31904 -.set Lset31905, Ltmp6265-Lfunc_begin0 - .quad Lset31905 -.set Lset31906, Ltmp6266-Lfunc_begin0 - .quad Lset31906 - .quad 0 - .quad 0 -Ldebug_ranges254: -.set Lset31907, Ltmp4944-Lfunc_begin0 - .quad Lset31907 -.set Lset31908, Ltmp4996-Lfunc_begin0 - .quad Lset31908 -.set Lset31909, Ltmp4997-Lfunc_begin0 - .quad Lset31909 -.set Lset31910, Ltmp4999-Lfunc_begin0 - .quad Lset31910 -.set Lset31911, Ltmp6265-Lfunc_begin0 - .quad Lset31911 -.set Lset31912, Ltmp6266-Lfunc_begin0 - .quad Lset31912 -.set Lset31913, Ltmp6385-Lfunc_begin0 - .quad Lset31913 -.set Lset31914, Ltmp6391-Lfunc_begin0 - .quad Lset31914 - .quad 0 - .quad 0 -Ldebug_ranges255: -.set Lset31915, Ltmp5019-Lfunc_begin0 - .quad Lset31915 -.set Lset31916, Ltmp5034-Lfunc_begin0 - .quad Lset31916 -.set Lset31917, Ltmp6157-Lfunc_begin0 - .quad Lset31917 -.set Lset31918, Ltmp6161-Lfunc_begin0 - .quad Lset31918 - .quad 0 - .quad 0 -Ldebug_ranges256: -.set Lset31919, Ltmp5001-Lfunc_begin0 - .quad Lset31919 -.set Lset31920, Ltmp5036-Lfunc_begin0 - .quad Lset31920 -.set Lset31921, Ltmp5037-Lfunc_begin0 - .quad Lset31921 -.set Lset31922, Ltmp5039-Lfunc_begin0 - .quad Lset31922 -.set Lset31923, Ltmp6012-Lfunc_begin0 - .quad Lset31923 -.set Lset31924, Ltmp6022-Lfunc_begin0 - .quad Lset31924 -.set Lset31925, Ltmp6157-Lfunc_begin0 - .quad Lset31925 -.set Lset31926, Ltmp6161-Lfunc_begin0 - .quad Lset31926 - .quad 0 - .quad 0 -Ldebug_ranges257: -.set Lset31927, Ltmp5048-Lfunc_begin0 - .quad Lset31927 -.set Lset31928, Ltmp5050-Lfunc_begin0 - .quad Lset31928 -.set Lset31929, Ltmp5064-Lfunc_begin0 - .quad Lset31929 -.set Lset31930, Ltmp5066-Lfunc_begin0 - .quad Lset31930 - .quad 0 - .quad 0 -Ldebug_ranges258: -.set Lset31931, Ltmp5048-Lfunc_begin0 - .quad Lset31931 -.set Lset31932, Ltmp5050-Lfunc_begin0 - .quad Lset31932 -.set Lset31933, Ltmp5062-Lfunc_begin0 - .quad Lset31933 -.set Lset31934, Ltmp5072-Lfunc_begin0 - .quad Lset31934 - .quad 0 - .quad 0 -Ldebug_ranges259: -.set Lset31935, Ltmp5045-Lfunc_begin0 - .quad Lset31935 -.set Lset31936, Ltmp5074-Lfunc_begin0 - .quad Lset31936 -.set Lset31937, Ltmp5075-Lfunc_begin0 - .quad Lset31937 -.set Lset31938, Ltmp5077-Lfunc_begin0 - .quad Lset31938 -.set Lset31939, Ltmp6022-Lfunc_begin0 - .quad Lset31939 -.set Lset31940, Ltmp6023-Lfunc_begin0 - .quad Lset31940 - .quad 0 - .quad 0 -Ldebug_ranges260: -.set Lset31941, Ltmp5086-Lfunc_begin0 - .quad Lset31941 -.set Lset31942, Ltmp5088-Lfunc_begin0 - .quad Lset31942 -.set Lset31943, Ltmp5101-Lfunc_begin0 - .quad Lset31943 -.set Lset31944, Ltmp5103-Lfunc_begin0 - .quad Lset31944 - .quad 0 - .quad 0 -Ldebug_ranges261: -.set Lset31945, Ltmp5086-Lfunc_begin0 - .quad Lset31945 -.set Lset31946, Ltmp5088-Lfunc_begin0 - .quad Lset31946 -.set Lset31947, Ltmp5099-Lfunc_begin0 - .quad Lset31947 -.set Lset31948, Ltmp5108-Lfunc_begin0 - .quad Lset31948 - .quad 0 - .quad 0 -Ldebug_ranges262: -.set Lset31949, Ltmp5083-Lfunc_begin0 - .quad Lset31949 -.set Lset31950, Ltmp5110-Lfunc_begin0 - .quad Lset31950 -.set Lset31951, Ltmp5111-Lfunc_begin0 - .quad Lset31951 -.set Lset31952, Ltmp5113-Lfunc_begin0 - .quad Lset31952 -.set Lset31953, Ltmp6120-Lfunc_begin0 - .quad Lset31953 -.set Lset31954, Ltmp6121-Lfunc_begin0 - .quad Lset31954 - .quad 0 - .quad 0 -Ldebug_ranges263: -.set Lset31955, Ltmp5127-Lfunc_begin0 - .quad Lset31955 -.set Lset31956, Ltmp5133-Lfunc_begin0 - .quad Lset31956 -.set Lset31957, Ltmp6122-Lfunc_begin0 - .quad Lset31957 -.set Lset31958, Ltmp6124-Lfunc_begin0 - .quad Lset31958 - .quad 0 - .quad 0 -Ldebug_ranges264: -.set Lset31959, Ltmp5115-Lfunc_begin0 - .quad Lset31959 -.set Lset31960, Ltmp5142-Lfunc_begin0 - .quad Lset31960 -.set Lset31961, Ltmp5143-Lfunc_begin0 - .quad Lset31961 -.set Lset31962, Ltmp5145-Lfunc_begin0 - .quad Lset31962 -.set Lset31963, Ltmp6121-Lfunc_begin0 - .quad Lset31963 -.set Lset31964, Ltmp6124-Lfunc_begin0 - .quad Lset31964 - .quad 0 - .quad 0 -Ldebug_ranges265: -.set Lset31965, Ltmp5159-Lfunc_begin0 - .quad Lset31965 -.set Lset31966, Ltmp5165-Lfunc_begin0 - .quad Lset31966 -.set Lset31967, Ltmp6391-Lfunc_begin0 - .quad Lset31967 -.set Lset31968, Ltmp6393-Lfunc_begin0 - .quad Lset31968 - .quad 0 - .quad 0 -Ldebug_ranges266: -.set Lset31969, Ltmp5147-Lfunc_begin0 - .quad Lset31969 -.set Lset31970, Ltmp5174-Lfunc_begin0 - .quad Lset31970 -.set Lset31971, Ltmp5175-Lfunc_begin0 - .quad Lset31971 -.set Lset31972, Ltmp5177-Lfunc_begin0 - .quad Lset31972 -.set Lset31973, Ltmp6124-Lfunc_begin0 - .quad Lset31973 -.set Lset31974, Ltmp6125-Lfunc_begin0 - .quad Lset31974 -.set Lset31975, Ltmp6391-Lfunc_begin0 - .quad Lset31975 -.set Lset31976, Ltmp6393-Lfunc_begin0 - .quad Lset31976 - .quad 0 - .quad 0 -Ldebug_ranges267: -.set Lset31977, Ltmp5191-Lfunc_begin0 - .quad Lset31977 -.set Lset31978, Ltmp5197-Lfunc_begin0 - .quad Lset31978 -.set Lset31979, Ltmp6394-Lfunc_begin0 - .quad Lset31979 -.set Lset31980, Ltmp6396-Lfunc_begin0 - .quad Lset31980 - .quad 0 - .quad 0 -Ldebug_ranges268: -.set Lset31981, Ltmp5179-Lfunc_begin0 - .quad Lset31981 -.set Lset31982, Ltmp5206-Lfunc_begin0 - .quad Lset31982 -.set Lset31983, Ltmp5207-Lfunc_begin0 - .quad Lset31983 -.set Lset31984, Ltmp5209-Lfunc_begin0 - .quad Lset31984 -.set Lset31985, Ltmp6393-Lfunc_begin0 - .quad Lset31985 -.set Lset31986, Ltmp6396-Lfunc_begin0 - .quad Lset31986 - .quad 0 - .quad 0 -Ldebug_ranges269: -.set Lset31987, Ltmp5260-Lfunc_begin0 - .quad Lset31987 -.set Lset31988, Ltmp5263-Lfunc_begin0 - .quad Lset31988 -.set Lset31989, Ltmp6268-Lfunc_begin0 - .quad Lset31989 -.set Lset31990, Ltmp6272-Lfunc_begin0 - .quad Lset31990 - .quad 0 - .quad 0 -Ldebug_ranges270: -.set Lset31991, Ltmp5247-Lfunc_begin0 - .quad Lset31991 -.set Lset31992, Ltmp5266-Lfunc_begin0 - .quad Lset31992 -.set Lset31993, Ltmp5267-Lfunc_begin0 - .quad Lset31993 -.set Lset31994, Ltmp5269-Lfunc_begin0 - .quad Lset31994 -.set Lset31995, Ltmp6266-Lfunc_begin0 - .quad Lset31995 -.set Lset31996, Ltmp6272-Lfunc_begin0 - .quad Lset31996 - .quad 0 - .quad 0 -Ldebug_ranges271: -.set Lset31997, Ltmp5285-Lfunc_begin0 - .quad Lset31997 -.set Lset31998, Ltmp5288-Lfunc_begin0 - .quad Lset31998 -.set Lset31999, Ltmp6274-Lfunc_begin0 - .quad Lset31999 -.set Lset32000, Ltmp6278-Lfunc_begin0 - .quad Lset32000 - .quad 0 - .quad 0 -Ldebug_ranges272: -.set Lset32001, Ltmp5272-Lfunc_begin0 - .quad Lset32001 -.set Lset32002, Ltmp5291-Lfunc_begin0 - .quad Lset32002 -.set Lset32003, Ltmp5292-Lfunc_begin0 - .quad Lset32003 -.set Lset32004, Ltmp5294-Lfunc_begin0 - .quad Lset32004 -.set Lset32005, Ltmp6272-Lfunc_begin0 - .quad Lset32005 -.set Lset32006, Ltmp6278-Lfunc_begin0 - .quad Lset32006 - .quad 0 - .quad 0 -Ldebug_ranges273: -.set Lset32007, Ltmp5310-Lfunc_begin0 - .quad Lset32007 -.set Lset32008, Ltmp5314-Lfunc_begin0 - .quad Lset32008 -.set Lset32009, Ltmp6023-Lfunc_begin0 - .quad Lset32009 -.set Lset32010, Ltmp6027-Lfunc_begin0 - .quad Lset32010 - .quad 0 - .quad 0 -Ldebug_ranges274: -.set Lset32011, Ltmp5297-Lfunc_begin0 - .quad Lset32011 -.set Lset32012, Ltmp5317-Lfunc_begin0 - .quad Lset32012 -.set Lset32013, Ltmp5318-Lfunc_begin0 - .quad Lset32013 -.set Lset32014, Ltmp5320-Lfunc_begin0 - .quad Lset32014 -.set Lset32015, Ltmp6023-Lfunc_begin0 - .quad Lset32015 -.set Lset32016, Ltmp6027-Lfunc_begin0 - .quad Lset32016 -.set Lset32017, Ltmp6278-Lfunc_begin0 - .quad Lset32017 -.set Lset32018, Ltmp6280-Lfunc_begin0 - .quad Lset32018 - .quad 0 - .quad 0 -Ldebug_ranges275: -.set Lset32019, Ltmp5336-Lfunc_begin0 - .quad Lset32019 -.set Lset32020, Ltmp5339-Lfunc_begin0 - .quad Lset32020 -.set Lset32021, Ltmp6029-Lfunc_begin0 - .quad Lset32021 -.set Lset32022, Ltmp6033-Lfunc_begin0 - .quad Lset32022 - .quad 0 - .quad 0 -Ldebug_ranges276: -.set Lset32023, Ltmp5323-Lfunc_begin0 - .quad Lset32023 -.set Lset32024, Ltmp5342-Lfunc_begin0 - .quad Lset32024 -.set Lset32025, Ltmp5343-Lfunc_begin0 - .quad Lset32025 -.set Lset32026, Ltmp5345-Lfunc_begin0 - .quad Lset32026 -.set Lset32027, Ltmp6027-Lfunc_begin0 - .quad Lset32027 -.set Lset32028, Ltmp6033-Lfunc_begin0 - .quad Lset32028 - .quad 0 - .quad 0 -Ldebug_ranges277: -.set Lset32029, Ltmp5361-Lfunc_begin0 - .quad Lset32029 -.set Lset32030, Ltmp5364-Lfunc_begin0 - .quad Lset32030 -.set Lset32031, Ltmp6161-Lfunc_begin0 - .quad Lset32031 -.set Lset32032, Ltmp6165-Lfunc_begin0 - .quad Lset32032 - .quad 0 - .quad 0 -Ldebug_ranges278: -.set Lset32033, Ltmp5348-Lfunc_begin0 - .quad Lset32033 -.set Lset32034, Ltmp5367-Lfunc_begin0 - .quad Lset32034 -.set Lset32035, Ltmp5368-Lfunc_begin0 - .quad Lset32035 -.set Lset32036, Ltmp5370-Lfunc_begin0 - .quad Lset32036 -.set Lset32037, Ltmp6033-Lfunc_begin0 - .quad Lset32037 -.set Lset32038, Ltmp6035-Lfunc_begin0 - .quad Lset32038 -.set Lset32039, Ltmp6161-Lfunc_begin0 - .quad Lset32039 -.set Lset32040, Ltmp6165-Lfunc_begin0 - .quad Lset32040 - .quad 0 - .quad 0 -Ldebug_ranges279: -.set Lset32041, Ltmp5386-Lfunc_begin0 - .quad Lset32041 -.set Lset32042, Ltmp5389-Lfunc_begin0 - .quad Lset32042 -.set Lset32043, Ltmp6127-Lfunc_begin0 - .quad Lset32043 -.set Lset32044, Ltmp6131-Lfunc_begin0 - .quad Lset32044 - .quad 0 - .quad 0 -Ldebug_ranges280: -.set Lset32045, Ltmp5373-Lfunc_begin0 - .quad Lset32045 -.set Lset32046, Ltmp5392-Lfunc_begin0 - .quad Lset32046 -.set Lset32047, Ltmp5393-Lfunc_begin0 - .quad Lset32047 -.set Lset32048, Ltmp5395-Lfunc_begin0 - .quad Lset32048 -.set Lset32049, Ltmp6125-Lfunc_begin0 - .quad Lset32049 -.set Lset32050, Ltmp6131-Lfunc_begin0 - .quad Lset32050 - .quad 0 - .quad 0 -Ldebug_ranges281: -.set Lset32051, Ltmp5410-Lfunc_begin0 - .quad Lset32051 -.set Lset32052, Ltmp5414-Lfunc_begin0 - .quad Lset32052 -.set Lset32053, Ltmp6133-Lfunc_begin0 - .quad Lset32053 -.set Lset32054, Ltmp6137-Lfunc_begin0 - .quad Lset32054 - .quad 0 - .quad 0 -Ldebug_ranges282: -.set Lset32055, Ltmp5398-Lfunc_begin0 - .quad Lset32055 -.set Lset32056, Ltmp5417-Lfunc_begin0 - .quad Lset32056 -.set Lset32057, Ltmp5418-Lfunc_begin0 - .quad Lset32057 -.set Lset32058, Ltmp5420-Lfunc_begin0 - .quad Lset32058 -.set Lset32059, Ltmp6131-Lfunc_begin0 - .quad Lset32059 -.set Lset32060, Ltmp6137-Lfunc_begin0 - .quad Lset32060 - .quad 0 - .quad 0 -Ldebug_ranges283: -.set Lset32061, Ltmp5436-Lfunc_begin0 - .quad Lset32061 -.set Lset32062, Ltmp5439-Lfunc_begin0 - .quad Lset32062 -.set Lset32063, Ltmp6396-Lfunc_begin0 - .quad Lset32063 -.set Lset32064, Ltmp6400-Lfunc_begin0 - .quad Lset32064 - .quad 0 - .quad 0 -Ldebug_ranges284: -.set Lset32065, Ltmp5423-Lfunc_begin0 - .quad Lset32065 -.set Lset32066, Ltmp5442-Lfunc_begin0 - .quad Lset32066 -.set Lset32067, Ltmp5443-Lfunc_begin0 - .quad Lset32067 -.set Lset32068, Ltmp5445-Lfunc_begin0 - .quad Lset32068 -.set Lset32069, Ltmp6137-Lfunc_begin0 - .quad Lset32069 -.set Lset32070, Ltmp6138-Lfunc_begin0 - .quad Lset32070 -.set Lset32071, Ltmp6280-Lfunc_begin0 - .quad Lset32071 -.set Lset32072, Ltmp6281-Lfunc_begin0 - .quad Lset32072 -.set Lset32073, Ltmp6396-Lfunc_begin0 - .quad Lset32073 -.set Lset32074, Ltmp6400-Lfunc_begin0 - .quad Lset32074 - .quad 0 - .quad 0 -Ldebug_ranges285: -.set Lset32075, Ltmp5461-Lfunc_begin0 - .quad Lset32075 -.set Lset32076, Ltmp5464-Lfunc_begin0 - .quad Lset32076 -.set Lset32077, Ltmp6402-Lfunc_begin0 - .quad Lset32077 -.set Lset32078, Ltmp6406-Lfunc_begin0 - .quad Lset32078 - .quad 0 - .quad 0 -Ldebug_ranges286: -.set Lset32079, Ltmp5448-Lfunc_begin0 - .quad Lset32079 -.set Lset32080, Ltmp5467-Lfunc_begin0 - .quad Lset32080 -.set Lset32081, Ltmp5468-Lfunc_begin0 - .quad Lset32081 -.set Lset32082, Ltmp5470-Lfunc_begin0 - .quad Lset32082 -.set Lset32083, Ltmp6400-Lfunc_begin0 - .quad Lset32083 -.set Lset32084, Ltmp6406-Lfunc_begin0 - .quad Lset32084 - .quad 0 - .quad 0 -Ldebug_ranges287: -.set Lset32085, Ltmp5486-Lfunc_begin0 - .quad Lset32085 -.set Lset32086, Ltmp5490-Lfunc_begin0 - .quad Lset32086 -.set Lset32087, Ltmp6408-Lfunc_begin0 - .quad Lset32087 -.set Lset32088, Ltmp6412-Lfunc_begin0 - .quad Lset32088 - .quad 0 - .quad 0 -Ldebug_ranges288: -.set Lset32089, Ltmp5473-Lfunc_begin0 - .quad Lset32089 -.set Lset32090, Ltmp5493-Lfunc_begin0 - .quad Lset32090 -.set Lset32091, Ltmp5494-Lfunc_begin0 - .quad Lset32091 -.set Lset32092, Ltmp5496-Lfunc_begin0 - .quad Lset32092 -.set Lset32093, Ltmp6406-Lfunc_begin0 - .quad Lset32093 -.set Lset32094, Ltmp6412-Lfunc_begin0 - .quad Lset32094 - .quad 0 - .quad 0 -Ldebug_ranges289: -.set Lset32095, Ltmp5512-Lfunc_begin0 - .quad Lset32095 -.set Lset32096, Ltmp5515-Lfunc_begin0 - .quad Lset32096 -.set Lset32097, Ltmp6283-Lfunc_begin0 - .quad Lset32097 -.set Lset32098, Ltmp6287-Lfunc_begin0 - .quad Lset32098 - .quad 0 - .quad 0 -Ldebug_ranges290: -.set Lset32099, Ltmp5499-Lfunc_begin0 - .quad Lset32099 -.set Lset32100, Ltmp5518-Lfunc_begin0 - .quad Lset32100 -.set Lset32101, Ltmp5519-Lfunc_begin0 - .quad Lset32101 -.set Lset32102, Ltmp5521-Lfunc_begin0 - .quad Lset32102 -.set Lset32103, Ltmp6281-Lfunc_begin0 - .quad Lset32103 -.set Lset32104, Ltmp6287-Lfunc_begin0 - .quad Lset32104 - .quad 0 - .quad 0 -Ldebug_ranges291: -.set Lset32105, Ltmp5537-Lfunc_begin0 - .quad Lset32105 -.set Lset32106, Ltmp5540-Lfunc_begin0 - .quad Lset32106 -.set Lset32107, Ltmp6289-Lfunc_begin0 - .quad Lset32107 -.set Lset32108, Ltmp6293-Lfunc_begin0 - .quad Lset32108 - .quad 0 - .quad 0 -Ldebug_ranges292: -.set Lset32109, Ltmp5524-Lfunc_begin0 - .quad Lset32109 -.set Lset32110, Ltmp5543-Lfunc_begin0 - .quad Lset32110 -.set Lset32111, Ltmp5544-Lfunc_begin0 - .quad Lset32111 -.set Lset32112, Ltmp5546-Lfunc_begin0 - .quad Lset32112 -.set Lset32113, Ltmp6287-Lfunc_begin0 - .quad Lset32113 -.set Lset32114, Ltmp6293-Lfunc_begin0 - .quad Lset32114 - .quad 0 - .quad 0 -Ldebug_ranges293: -.set Lset32115, Ltmp5562-Lfunc_begin0 - .quad Lset32115 -.set Lset32116, Ltmp5565-Lfunc_begin0 - .quad Lset32116 -.set Lset32117, Ltmp6035-Lfunc_begin0 - .quad Lset32117 -.set Lset32118, Ltmp6039-Lfunc_begin0 - .quad Lset32118 - .quad 0 - .quad 0 -Ldebug_ranges294: -.set Lset32119, Ltmp5549-Lfunc_begin0 - .quad Lset32119 -.set Lset32120, Ltmp5568-Lfunc_begin0 - .quad Lset32120 -.set Lset32121, Ltmp5569-Lfunc_begin0 - .quad Lset32121 -.set Lset32122, Ltmp5571-Lfunc_begin0 - .quad Lset32122 -.set Lset32123, Ltmp6035-Lfunc_begin0 - .quad Lset32123 -.set Lset32124, Ltmp6039-Lfunc_begin0 - .quad Lset32124 -.set Lset32125, Ltmp6293-Lfunc_begin0 - .quad Lset32125 -.set Lset32126, Ltmp6295-Lfunc_begin0 - .quad Lset32126 - .quad 0 - .quad 0 -Ldebug_ranges295: -.set Lset32127, Ltmp5587-Lfunc_begin0 - .quad Lset32127 -.set Lset32128, Ltmp5590-Lfunc_begin0 - .quad Lset32128 -.set Lset32129, Ltmp6041-Lfunc_begin0 - .quad Lset32129 -.set Lset32130, Ltmp6045-Lfunc_begin0 - .quad Lset32130 - .quad 0 - .quad 0 -Ldebug_ranges296: -.set Lset32131, Ltmp5574-Lfunc_begin0 - .quad Lset32131 -.set Lset32132, Ltmp5593-Lfunc_begin0 - .quad Lset32132 -.set Lset32133, Ltmp5594-Lfunc_begin0 - .quad Lset32133 -.set Lset32134, Ltmp5596-Lfunc_begin0 - .quad Lset32134 -.set Lset32135, Ltmp6039-Lfunc_begin0 - .quad Lset32135 -.set Lset32136, Ltmp6045-Lfunc_begin0 - .quad Lset32136 - .quad 0 - .quad 0 -Ldebug_ranges297: -.set Lset32137, Ltmp5606-Lfunc_begin0 - .quad Lset32137 -.set Lset32138, Ltmp5608-Lfunc_begin0 - .quad Lset32138 -.set Lset32139, Ltmp5623-Lfunc_begin0 - .quad Lset32139 -.set Lset32140, Ltmp5624-Lfunc_begin0 - .quad Lset32140 - .quad 0 - .quad 0 -Ldebug_ranges298: -.set Lset32141, Ltmp5603-Lfunc_begin0 - .quad Lset32141 -.set Lset32142, Ltmp5626-Lfunc_begin0 - .quad Lset32142 -.set Lset32143, Ltmp5627-Lfunc_begin0 - .quad Lset32143 -.set Lset32144, Ltmp5629-Lfunc_begin0 - .quad Lset32144 -.set Lset32145, Ltmp6412-Lfunc_begin0 - .quad Lset32145 -.set Lset32146, Ltmp6414-Lfunc_begin0 - .quad Lset32146 - .quad 0 - .quad 0 -Ldebug_ranges299: -.set Lset32147, Ltmp5639-Lfunc_begin0 - .quad Lset32147 -.set Lset32148, Ltmp5641-Lfunc_begin0 - .quad Lset32148 -.set Lset32149, Ltmp5654-Lfunc_begin0 - .quad Lset32149 -.set Lset32150, Ltmp5655-Lfunc_begin0 - .quad Lset32150 - .quad 0 - .quad 0 -Ldebug_ranges300: -.set Lset32151, Ltmp5636-Lfunc_begin0 - .quad Lset32151 -.set Lset32152, Ltmp5657-Lfunc_begin0 - .quad Lset32152 -.set Lset32153, Ltmp5658-Lfunc_begin0 - .quad Lset32153 -.set Lset32154, Ltmp5660-Lfunc_begin0 - .quad Lset32154 -.set Lset32155, Ltmp6295-Lfunc_begin0 - .quad Lset32155 -.set Lset32156, Ltmp6296-Lfunc_begin0 - .quad Lset32156 -.set Lset32157, Ltmp6414-Lfunc_begin0 - .quad Lset32157 -.set Lset32158, Ltmp6415-Lfunc_begin0 - .quad Lset32158 - .quad 0 - .quad 0 -Ldebug_ranges301: -.set Lset32159, Ltmp5676-Lfunc_begin0 - .quad Lset32159 -.set Lset32160, Ltmp5680-Lfunc_begin0 - .quad Lset32160 -.set Lset32161, Ltmp6298-Lfunc_begin0 - .quad Lset32161 -.set Lset32162, Ltmp6299-Lfunc_begin0 - .quad Lset32162 - .quad 0 - .quad 0 -Ldebug_ranges302: -.set Lset32163, Ltmp5663-Lfunc_begin0 - .quad Lset32163 -.set Lset32164, Ltmp5682-Lfunc_begin0 - .quad Lset32164 -.set Lset32165, Ltmp5683-Lfunc_begin0 - .quad Lset32165 -.set Lset32166, Ltmp5685-Lfunc_begin0 - .quad Lset32166 -.set Lset32167, Ltmp6296-Lfunc_begin0 - .quad Lset32167 -.set Lset32168, Ltmp6299-Lfunc_begin0 - .quad Lset32168 - .quad 0 - .quad 0 -Ldebug_ranges303: -.set Lset32169, Ltmp5701-Lfunc_begin0 - .quad Lset32169 -.set Lset32170, Ltmp5705-Lfunc_begin0 - .quad Lset32170 -.set Lset32171, Ltmp6045-Lfunc_begin0 - .quad Lset32171 -.set Lset32172, Ltmp6046-Lfunc_begin0 - .quad Lset32172 - .quad 0 - .quad 0 -Ldebug_ranges304: -.set Lset32173, Ltmp5688-Lfunc_begin0 - .quad Lset32173 -.set Lset32174, Ltmp5707-Lfunc_begin0 - .quad Lset32174 -.set Lset32175, Ltmp5708-Lfunc_begin0 - .quad Lset32175 -.set Lset32176, Ltmp5710-Lfunc_begin0 - .quad Lset32176 -.set Lset32177, Ltmp6045-Lfunc_begin0 - .quad Lset32177 -.set Lset32178, Ltmp6046-Lfunc_begin0 - .quad Lset32178 -.set Lset32179, Ltmp6299-Lfunc_begin0 - .quad Lset32179 -.set Lset32180, Ltmp6301-Lfunc_begin0 - .quad Lset32180 - .quad 0 - .quad 0 -Ldebug_ranges305: -.set Lset32181, Ltmp5726-Lfunc_begin0 - .quad Lset32181 -.set Lset32182, Ltmp5730-Lfunc_begin0 - .quad Lset32182 -.set Lset32183, Ltmp6048-Lfunc_begin0 - .quad Lset32183 -.set Lset32184, Ltmp6049-Lfunc_begin0 - .quad Lset32184 - .quad 0 - .quad 0 -Ldebug_ranges306: -.set Lset32185, Ltmp5713-Lfunc_begin0 - .quad Lset32185 -.set Lset32186, Ltmp5732-Lfunc_begin0 - .quad Lset32186 -.set Lset32187, Ltmp5733-Lfunc_begin0 - .quad Lset32187 -.set Lset32188, Ltmp5735-Lfunc_begin0 - .quad Lset32188 -.set Lset32189, Ltmp6046-Lfunc_begin0 - .quad Lset32189 -.set Lset32190, Ltmp6049-Lfunc_begin0 - .quad Lset32190 - .quad 0 - .quad 0 -Ldebug_ranges307: -.set Lset32191, Ltmp5745-Lfunc_begin0 - .quad Lset32191 -.set Lset32192, Ltmp5747-Lfunc_begin0 - .quad Lset32192 -.set Lset32193, Ltmp5759-Lfunc_begin0 - .quad Lset32193 -.set Lset32194, Ltmp5760-Lfunc_begin0 - .quad Lset32194 - .quad 0 - .quad 0 -Ldebug_ranges308: -.set Lset32195, Ltmp5742-Lfunc_begin0 - .quad Lset32195 -.set Lset32196, Ltmp5762-Lfunc_begin0 - .quad Lset32196 -.set Lset32197, Ltmp5763-Lfunc_begin0 - .quad Lset32197 -.set Lset32198, Ltmp5765-Lfunc_begin0 - .quad Lset32198 -.set Lset32199, Ltmp6049-Lfunc_begin0 - .quad Lset32199 -.set Lset32200, Ltmp6050-Lfunc_begin0 - .quad Lset32200 - .quad 0 - .quad 0 -Ldebug_ranges309: -.set Lset32201, Ltmp5775-Lfunc_begin0 - .quad Lset32201 -.set Lset32202, Ltmp5777-Lfunc_begin0 - .quad Lset32202 -.set Lset32203, Ltmp5787-Lfunc_begin0 - .quad Lset32203 -.set Lset32204, Ltmp5788-Lfunc_begin0 - .quad Lset32204 - .quad 0 - .quad 0 -Ldebug_ranges310: -.set Lset32205, Ltmp5772-Lfunc_begin0 - .quad Lset32205 -.set Lset32206, Ltmp5790-Lfunc_begin0 - .quad Lset32206 -.set Lset32207, Ltmp5791-Lfunc_begin0 - .quad Lset32207 -.set Lset32208, Ltmp5793-Lfunc_begin0 - .quad Lset32208 -.set Lset32209, Ltmp6138-Lfunc_begin0 - .quad Lset32209 -.set Lset32210, Ltmp6139-Lfunc_begin0 - .quad Lset32210 - .quad 0 - .quad 0 -Ldebug_ranges311: -.set Lset32211, Ltmp1175-Lfunc_begin0 - .quad Lset32211 -.set Lset32212, Ltmp1178-Lfunc_begin0 - .quad Lset32212 -.set Lset32213, Ltmp1183-Lfunc_begin0 - .quad Lset32213 -.set Lset32214, Ltmp3488-Lfunc_begin0 - .quad Lset32214 -.set Lset32215, Ltmp3489-Lfunc_begin0 - .quad Lset32215 -.set Lset32216, Ltmp6420-Lfunc_begin0 - .quad Lset32216 -.set Lset32217, Ltmp6423-Lfunc_begin0 - .quad Lset32217 -.set Lset32218, Ltmp6432-Lfunc_begin0 - .quad Lset32218 - .quad 0 - .quad 0 -Ldebug_ranges312: -.set Lset32219, Ltmp6439-Lfunc_begin0 - .quad Lset32219 -.set Lset32220, Ltmp6444-Lfunc_begin0 - .quad Lset32220 -.set Lset32221, Ltmp6464-Lfunc_begin0 - .quad Lset32221 -.set Lset32222, Ltmp6466-Lfunc_begin0 - .quad Lset32222 - .quad 0 - .quad 0 -Ldebug_ranges313: -.set Lset32223, Ltmp6536-Lfunc_begin0 - .quad Lset32223 -.set Lset32224, Ltmp6603-Lfunc_begin0 - .quad Lset32224 -.set Lset32225, Ltmp6608-Lfunc_begin0 - .quad Lset32225 -.set Lset32226, Ltmp6612-Lfunc_begin0 - .quad Lset32226 -.set Lset32227, Ltmp6617-Lfunc_begin0 - .quad Lset32227 -.set Lset32228, Ltmp6622-Lfunc_begin0 - .quad Lset32228 - .quad 0 - .quad 0 -Ldebug_ranges314: -.set Lset32229, Ltmp6635-Lfunc_begin0 - .quad Lset32229 -.set Lset32230, Ltmp6651-Lfunc_begin0 - .quad Lset32230 -.set Lset32231, Ltmp6663-Lfunc_begin0 - .quad Lset32231 -.set Lset32232, Ltmp6664-Lfunc_begin0 - .quad Lset32232 -.set Lset32233, Ltmp6667-Lfunc_begin0 - .quad Lset32233 -.set Lset32234, Ltmp6672-Lfunc_begin0 - .quad Lset32234 - .quad 0 - .quad 0 -Ldebug_ranges315: -.set Lset32235, Ltmp6676-Lfunc_begin0 - .quad Lset32235 -.set Lset32236, Ltmp6681-Lfunc_begin0 - .quad Lset32236 -.set Lset32237, Ltmp6694-Lfunc_begin0 - .quad Lset32237 -.set Lset32238, Ltmp6696-Lfunc_begin0 - .quad Lset32238 - .quad 0 - .quad 0 -Ldebug_ranges316: -.set Lset32239, Ltmp6701-Lfunc_begin0 - .quad Lset32239 -.set Lset32240, Ltmp6706-Lfunc_begin0 - .quad Lset32240 -.set Lset32241, Ltmp6719-Lfunc_begin0 - .quad Lset32241 -.set Lset32242, Ltmp6721-Lfunc_begin0 - .quad Lset32242 - .quad 0 - .quad 0 -Ldebug_ranges317: -.set Lset32243, Ltmp6726-Lfunc_begin0 - .quad Lset32243 -.set Lset32244, Ltmp6730-Lfunc_begin0 - .quad Lset32244 -.set Lset32245, Ltmp6746-Lfunc_begin0 - .quad Lset32245 -.set Lset32246, Ltmp6748-Lfunc_begin0 - .quad Lset32246 - .quad 0 - .quad 0 -Ldebug_ranges318: -.set Lset32247, Ltmp6805-Lfunc_begin0 - .quad Lset32247 -.set Lset32248, Ltmp6812-Lfunc_begin0 - .quad Lset32248 -.set Lset32249, Ltmp6833-Lfunc_begin0 - .quad Lset32249 -.set Lset32250, Ltmp6834-Lfunc_begin0 - .quad Lset32250 - .quad 0 - .quad 0 -Ldebug_ranges319: -.set Lset32251, Ltmp6801-Lfunc_begin0 - .quad Lset32251 -.set Lset32252, Ltmp6803-Lfunc_begin0 - .quad Lset32252 -.set Lset32253, Ltmp6827-Lfunc_begin0 - .quad Lset32253 -.set Lset32254, Ltmp6828-Lfunc_begin0 - .quad Lset32254 - .quad 0 - .quad 0 -Ldebug_ranges320: -.set Lset32255, Ltmp6814-Lfunc_begin0 - .quad Lset32255 -.set Lset32256, Ltmp6818-Lfunc_begin0 - .quad Lset32256 -.set Lset32257, Ltmp6828-Lfunc_begin0 - .quad Lset32257 -.set Lset32258, Ltmp6829-Lfunc_begin0 - .quad Lset32258 - .quad 0 - .quad 0 -Ldebug_ranges321: -.set Lset32259, Ltmp6823-Lfunc_begin0 - .quad Lset32259 -.set Lset32260, Ltmp6825-Lfunc_begin0 - .quad Lset32260 -.set Lset32261, Ltmp6829-Lfunc_begin0 - .quad Lset32261 -.set Lset32262, Ltmp6830-Lfunc_begin0 - .quad Lset32262 - .quad 0 - .quad 0 -Ldebug_ranges322: -.set Lset32263, Ltmp6819-Lfunc_begin0 - .quad Lset32263 -.set Lset32264, Ltmp6825-Lfunc_begin0 - .quad Lset32264 -.set Lset32265, Ltmp6829-Lfunc_begin0 - .quad Lset32265 -.set Lset32266, Ltmp6830-Lfunc_begin0 - .quad Lset32266 -.set Lset32267, Ltmp6834-Lfunc_begin0 - .quad Lset32267 -.set Lset32268, Ltmp6835-Lfunc_begin0 - .quad Lset32268 - .quad 0 - .quad 0 -Ldebug_ranges323: -.set Lset32269, Ltmp6785-Lfunc_begin0 - .quad Lset32269 -.set Lset32270, Ltmp6787-Lfunc_begin0 - .quad Lset32270 -.set Lset32271, Ltmp6788-Lfunc_begin0 - .quad Lset32271 -.set Lset32272, Ltmp6789-Lfunc_begin0 - .quad Lset32272 -.set Lset32273, Ltmp6790-Lfunc_begin0 - .quad Lset32273 -.set Lset32274, Ltmp6803-Lfunc_begin0 - .quad Lset32274 -.set Lset32275, Ltmp6805-Lfunc_begin0 - .quad Lset32275 -.set Lset32276, Ltmp6812-Lfunc_begin0 - .quad Lset32276 -.set Lset32277, Ltmp6814-Lfunc_begin0 - .quad Lset32277 -.set Lset32278, Ltmp6818-Lfunc_begin0 - .quad Lset32278 -.set Lset32279, Ltmp6819-Lfunc_begin0 - .quad Lset32279 -.set Lset32280, Ltmp6825-Lfunc_begin0 - .quad Lset32280 -.set Lset32281, Ltmp6827-Lfunc_begin0 - .quad Lset32281 -.set Lset32282, Ltmp6830-Lfunc_begin0 - .quad Lset32282 -.set Lset32283, Ltmp6832-Lfunc_begin0 - .quad Lset32283 -.set Lset32284, Ltmp6835-Lfunc_begin0 - .quad Lset32284 - .quad 0 - .quad 0 -Ldebug_ranges324: -.set Lset32285, Ltmp6777-Lfunc_begin0 - .quad Lset32285 -.set Lset32286, Ltmp6780-Lfunc_begin0 - .quad Lset32286 -.set Lset32287, Ltmp6783-Lfunc_begin0 - .quad Lset32287 -.set Lset32288, Ltmp6835-Lfunc_begin0 - .quad Lset32288 - .quad 0 - .quad 0 -Ldebug_ranges325: -.set Lset32289, Ltmp6846-Lfunc_begin0 - .quad Lset32289 -.set Lset32290, Ltmp6847-Lfunc_begin0 - .quad Lset32290 -.set Lset32291, Ltmp6849-Lfunc_begin0 - .quad Lset32291 -.set Lset32292, Ltmp6851-Lfunc_begin0 - .quad Lset32292 -.set Lset32293, Ltmp6866-Lfunc_begin0 - .quad Lset32293 -.set Lset32294, Ltmp6868-Lfunc_begin0 - .quad Lset32294 - .quad 0 - .quad 0 -Ldebug_ranges326: -.set Lset32295, Ltmp6877-Lfunc_begin0 - .quad Lset32295 -.set Lset32296, Ltmp6883-Lfunc_begin0 - .quad Lset32296 -.set Lset32297, Ltmp6884-Lfunc_begin0 - .quad Lset32297 -.set Lset32298, Ltmp6887-Lfunc_begin0 - .quad Lset32298 - .quad 0 - .quad 0 -Ldebug_ranges327: -.set Lset32299, Ltmp6894-Lfunc_begin0 - .quad Lset32299 -.set Lset32300, Ltmp6895-Lfunc_begin0 - .quad Lset32300 -.set Lset32301, Ltmp6896-Lfunc_begin0 - .quad Lset32301 -.set Lset32302, Ltmp6900-Lfunc_begin0 - .quad Lset32302 -.set Lset32303, Ltmp6912-Lfunc_begin0 - .quad Lset32303 -.set Lset32304, Ltmp6919-Lfunc_begin0 - .quad Lset32304 - .quad 0 - .quad 0 -Ldebug_ranges328: -.set Lset32305, Ltmp6932-Lfunc_begin0 - .quad Lset32305 -.set Lset32306, Ltmp6933-Lfunc_begin0 - .quad Lset32306 -.set Lset32307, Ltmp6934-Lfunc_begin0 - .quad Lset32307 -.set Lset32308, Ltmp6937-Lfunc_begin0 - .quad Lset32308 -.set Lset32309, Ltmp6939-Lfunc_begin0 - .quad Lset32309 -.set Lset32310, Ltmp6941-Lfunc_begin0 - .quad Lset32310 -.set Lset32311, Ltmp6972-Lfunc_begin0 - .quad Lset32311 -.set Lset32312, Ltmp6974-Lfunc_begin0 - .quad Lset32312 - .quad 0 - .quad 0 -Ldebug_ranges329: -.set Lset32313, Ltmp6999-Lfunc_begin0 - .quad Lset32313 -.set Lset32314, Ltmp7001-Lfunc_begin0 - .quad Lset32314 -.set Lset32315, Ltmp7013-Lfunc_begin0 - .quad Lset32315 -.set Lset32316, Ltmp7014-Lfunc_begin0 - .quad Lset32316 - .quad 0 - .quad 0 -Ldebug_ranges330: -.set Lset32317, Ltmp6998-Lfunc_begin0 - .quad Lset32317 -.set Lset32318, Ltmp7005-Lfunc_begin0 - .quad Lset32318 -.set Lset32319, Ltmp7013-Lfunc_begin0 - .quad Lset32319 -.set Lset32320, Ltmp7014-Lfunc_begin0 - .quad Lset32320 - .quad 0 - .quad 0 -Ldebug_ranges331: -.set Lset32321, Ltmp7020-Lfunc_begin0 - .quad Lset32321 -.set Lset32322, Ltmp7022-Lfunc_begin0 - .quad Lset32322 -.set Lset32323, Ltmp7033-Lfunc_begin0 - .quad Lset32323 -.set Lset32324, Ltmp7034-Lfunc_begin0 - .quad Lset32324 - .quad 0 - .quad 0 -Ldebug_ranges332: -.set Lset32325, Ltmp7019-Lfunc_begin0 - .quad Lset32325 -.set Lset32326, Ltmp7025-Lfunc_begin0 - .quad Lset32326 -.set Lset32327, Ltmp7033-Lfunc_begin0 - .quad Lset32327 -.set Lset32328, Ltmp7034-Lfunc_begin0 - .quad Lset32328 - .quad 0 - .quad 0 -Ldebug_ranges333: -.set Lset32329, Ltmp7039-Lfunc_begin0 - .quad Lset32329 -.set Lset32330, Ltmp7046-Lfunc_begin0 - .quad Lset32330 -.set Lset32331, Ltmp7052-Lfunc_begin0 - .quad Lset32331 -.set Lset32332, Ltmp7056-Lfunc_begin0 - .quad Lset32332 - .quad 0 - .quad 0 -Ldebug_ranges334: -.set Lset32333, Ltmp7060-Lfunc_begin0 - .quad Lset32333 -.set Lset32334, Ltmp7067-Lfunc_begin0 - .quad Lset32334 -.set Lset32335, Ltmp7073-Lfunc_begin0 - .quad Lset32335 -.set Lset32336, Ltmp7077-Lfunc_begin0 - .quad Lset32336 - .quad 0 - .quad 0 -Ldebug_ranges335: -.set Lset32337, Ltmp7081-Lfunc_begin0 - .quad Lset32337 -.set Lset32338, Ltmp7088-Lfunc_begin0 - .quad Lset32338 -.set Lset32339, Ltmp7094-Lfunc_begin0 - .quad Lset32339 -.set Lset32340, Ltmp7098-Lfunc_begin0 - .quad Lset32340 - .quad 0 - .quad 0 -Ldebug_ranges336: -.set Lset32341, Ltmp7099-Lfunc_begin0 - .quad Lset32341 -.set Lset32342, Ltmp7106-Lfunc_begin0 - .quad Lset32342 -.set Lset32343, Ltmp7111-Lfunc_begin0 - .quad Lset32343 -.set Lset32344, Ltmp7115-Lfunc_begin0 - .quad Lset32344 - .quad 0 - .quad 0 -Ldebug_ranges337: -.set Lset32345, Ltmp7133-Lfunc_begin0 - .quad Lset32345 -.set Lset32346, Ltmp7135-Lfunc_begin0 - .quad Lset32346 -.set Lset32347, Ltmp7144-Lfunc_begin0 - .quad Lset32347 -.set Lset32348, Ltmp7145-Lfunc_begin0 - .quad Lset32348 - .quad 0 - .quad 0 -Ldebug_ranges338: -.set Lset32349, Ltmp7165-Lfunc_begin0 - .quad Lset32349 -.set Lset32350, Ltmp7168-Lfunc_begin0 - .quad Lset32350 -.set Lset32351, Ltmp7177-Lfunc_begin0 - .quad Lset32351 -.set Lset32352, Ltmp7178-Lfunc_begin0 - .quad Lset32352 - .quad 0 - .quad 0 -Ldebug_ranges339: -.set Lset32353, Ltmp7198-Lfunc_begin0 - .quad Lset32353 -.set Lset32354, Ltmp7200-Lfunc_begin0 - .quad Lset32354 -.set Lset32355, Ltmp7209-Lfunc_begin0 - .quad Lset32355 -.set Lset32356, Ltmp7210-Lfunc_begin0 - .quad Lset32356 - .quad 0 - .quad 0 -Ldebug_ranges340: -.set Lset32357, Ltmp7220-Lfunc_begin0 - .quad Lset32357 -.set Lset32358, Ltmp7223-Lfunc_begin0 - .quad Lset32358 -.set Lset32359, Ltmp7235-Lfunc_begin0 - .quad Lset32359 -.set Lset32360, Ltmp7236-Lfunc_begin0 - .quad Lset32360 - .quad 0 - .quad 0 -Ldebug_ranges341: -.set Lset32361, Ltmp7249-Lfunc_begin0 - .quad Lset32361 -.set Lset32362, Ltmp7254-Lfunc_begin0 - .quad Lset32362 -.set Lset32363, Ltmp7263-Lfunc_begin0 - .quad Lset32363 -.set Lset32364, Ltmp7268-Lfunc_begin0 - .quad Lset32364 - .quad 0 - .quad 0 -Ldebug_ranges342: -.set Lset32365, Ltmp7248-Lfunc_begin0 - .quad Lset32365 -.set Lset32366, Ltmp7254-Lfunc_begin0 - .quad Lset32366 -.set Lset32367, Ltmp7261-Lfunc_begin0 - .quad Lset32367 -.set Lset32368, Ltmp7269-Lfunc_begin0 - .quad Lset32368 - .quad 0 - .quad 0 -Ldebug_ranges343: -.set Lset32369, Ltmp7287-Lfunc_begin0 - .quad Lset32369 -.set Lset32370, Ltmp7292-Lfunc_begin0 - .quad Lset32370 -.set Lset32371, Ltmp7301-Lfunc_begin0 - .quad Lset32371 -.set Lset32372, Ltmp7303-Lfunc_begin0 - .quad Lset32372 -.set Lset32373, Ltmp7304-Lfunc_begin0 - .quad Lset32373 -.set Lset32374, Ltmp7307-Lfunc_begin0 - .quad Lset32374 - .quad 0 - .quad 0 -Ldebug_ranges344: -.set Lset32375, Ltmp7286-Lfunc_begin0 - .quad Lset32375 -.set Lset32376, Ltmp7292-Lfunc_begin0 - .quad Lset32376 -.set Lset32377, Ltmp7299-Lfunc_begin0 - .quad Lset32377 -.set Lset32378, Ltmp7308-Lfunc_begin0 - .quad Lset32378 - .quad 0 - .quad 0 -Ldebug_ranges345: -.set Lset32379, Ltmp7325-Lfunc_begin0 - .quad Lset32379 -.set Lset32380, Ltmp7327-Lfunc_begin0 - .quad Lset32380 -.set Lset32381, Ltmp7339-Lfunc_begin0 - .quad Lset32381 -.set Lset32382, Ltmp7340-Lfunc_begin0 - .quad Lset32382 - .quad 0 - .quad 0 -Ldebug_ranges346: -.set Lset32383, Ltmp7352-Lfunc_begin0 - .quad Lset32383 -.set Lset32384, Ltmp7354-Lfunc_begin0 - .quad Lset32384 -.set Lset32385, Ltmp7366-Lfunc_begin0 - .quad Lset32385 -.set Lset32386, Ltmp7367-Lfunc_begin0 - .quad Lset32386 - .quad 0 - .quad 0 -Ldebug_ranges347: -.set Lset32387, Ltmp7379-Lfunc_begin0 - .quad Lset32387 -.set Lset32388, Ltmp7381-Lfunc_begin0 - .quad Lset32388 -.set Lset32389, Ltmp7393-Lfunc_begin0 - .quad Lset32389 -.set Lset32390, Ltmp7394-Lfunc_begin0 - .quad Lset32390 - .quad 0 - .quad 0 -Ldebug_ranges348: -.set Lset32391, Ltmp7402-Lfunc_begin0 - .quad Lset32391 -.set Lset32392, Ltmp7404-Lfunc_begin0 - .quad Lset32392 -.set Lset32393, Ltmp7412-Lfunc_begin0 - .quad Lset32393 -.set Lset32394, Ltmp7413-Lfunc_begin0 - .quad Lset32394 - .quad 0 - .quad 0 -Ldebug_ranges349: -.set Lset32395, Ltmp7422-Lfunc_begin0 - .quad Lset32395 -.set Lset32396, Ltmp7432-Lfunc_begin0 - .quad Lset32396 -.set Lset32397, Ltmp7448-Lfunc_begin0 - .quad Lset32397 -.set Lset32398, Ltmp7458-Lfunc_begin0 - .quad Lset32398 -.set Lset32399, Ltmp7473-Lfunc_begin0 - .quad Lset32399 -.set Lset32400, Ltmp7478-Lfunc_begin0 - .quad Lset32400 - .quad 0 - .quad 0 -Ldebug_ranges350: -.set Lset32401, Ltmp7425-Lfunc_begin0 - .quad Lset32401 -.set Lset32402, Ltmp7432-Lfunc_begin0 - .quad Lset32402 -.set Lset32403, Ltmp7448-Lfunc_begin0 - .quad Lset32403 -.set Lset32404, Ltmp7458-Lfunc_begin0 - .quad Lset32404 - .quad 0 - .quad 0 -Ldebug_ranges351: -.set Lset32405, Ltmp7437-Lfunc_begin0 - .quad Lset32405 -.set Lset32406, Ltmp7443-Lfunc_begin0 - .quad Lset32406 -.set Lset32407, Ltmp7478-Lfunc_begin0 - .quad Lset32407 -.set Lset32408, Ltmp7481-Lfunc_begin0 - .quad Lset32408 - .quad 0 - .quad 0 -Ldebug_ranges352: -.set Lset32409, Ltmp7419-Lfunc_begin0 - .quad Lset32409 -.set Lset32410, Ltmp7443-Lfunc_begin0 - .quad Lset32410 -.set Lset32411, Ltmp7444-Lfunc_begin0 - .quad Lset32411 -.set Lset32412, Ltmp7445-Lfunc_begin0 - .quad Lset32412 -.set Lset32413, Ltmp7447-Lfunc_begin0 - .quad Lset32413 -.set Lset32414, Ltmp7481-Lfunc_begin0 - .quad Lset32414 - .quad 0 - .quad 0 -Ldebug_ranges353: -.set Lset32415, Ltmp7490-Lfunc_begin0 - .quad Lset32415 -.set Lset32416, Ltmp7500-Lfunc_begin0 - .quad Lset32416 -.set Lset32417, Ltmp7523-Lfunc_begin0 - .quad Lset32417 -.set Lset32418, Ltmp7533-Lfunc_begin0 - .quad Lset32418 -.set Lset32419, Ltmp7546-Lfunc_begin0 - .quad Lset32419 -.set Lset32420, Ltmp7551-Lfunc_begin0 - .quad Lset32420 - .quad 0 - .quad 0 -Ldebug_ranges354: -.set Lset32421, Ltmp7493-Lfunc_begin0 - .quad Lset32421 -.set Lset32422, Ltmp7500-Lfunc_begin0 - .quad Lset32422 -.set Lset32423, Ltmp7523-Lfunc_begin0 - .quad Lset32423 -.set Lset32424, Ltmp7533-Lfunc_begin0 - .quad Lset32424 - .quad 0 - .quad 0 -Ldebug_ranges355: -.set Lset32425, Ltmp7506-Lfunc_begin0 - .quad Lset32425 -.set Lset32426, Ltmp7511-Lfunc_begin0 - .quad Lset32426 -.set Lset32427, Ltmp7551-Lfunc_begin0 - .quad Lset32427 -.set Lset32428, Ltmp7555-Lfunc_begin0 - .quad Lset32428 - .quad 0 - .quad 0 -Ldebug_ranges356: -.set Lset32429, Ltmp7487-Lfunc_begin0 - .quad Lset32429 -.set Lset32430, Ltmp7518-Lfunc_begin0 - .quad Lset32430 -.set Lset32431, Ltmp7519-Lfunc_begin0 - .quad Lset32431 -.set Lset32432, Ltmp7520-Lfunc_begin0 - .quad Lset32432 -.set Lset32433, Ltmp7522-Lfunc_begin0 - .quad Lset32433 -.set Lset32434, Ltmp7559-Lfunc_begin0 - .quad Lset32434 - .quad 0 - .quad 0 -Ldebug_ranges357: -.set Lset32435, Ltmp7574-Lfunc_begin0 - .quad Lset32435 -.set Lset32436, Ltmp7579-Lfunc_begin0 - .quad Lset32436 -.set Lset32437, Ltmp7618-Lfunc_begin0 - .quad Lset32437 -.set Lset32438, Ltmp7619-Lfunc_begin0 - .quad Lset32438 - .quad 0 - .quad 0 -Ldebug_ranges358: -.set Lset32439, Ltmp7566-Lfunc_begin0 - .quad Lset32439 -.set Lset32440, Ltmp7579-Lfunc_begin0 - .quad Lset32440 -.set Lset32441, Ltmp7595-Lfunc_begin0 - .quad Lset32441 -.set Lset32442, Ltmp7599-Lfunc_begin0 - .quad Lset32442 -.set Lset32443, Ltmp7611-Lfunc_begin0 - .quad Lset32443 -.set Lset32444, Ltmp7619-Lfunc_begin0 - .quad Lset32444 - .quad 0 - .quad 0 -Ldebug_ranges359: -.set Lset32445, Ltmp7587-Lfunc_begin0 - .quad Lset32445 -.set Lset32446, Ltmp7595-Lfunc_begin0 - .quad Lset32446 -.set Lset32447, Ltmp7619-Lfunc_begin0 - .quad Lset32447 -.set Lset32448, Ltmp7620-Lfunc_begin0 - .quad Lset32448 - .quad 0 - .quad 0 -Ldebug_ranges360: -.set Lset32449, Ltmp7585-Lfunc_begin0 - .quad Lset32449 -.set Lset32450, Ltmp7595-Lfunc_begin0 - .quad Lset32450 -.set Lset32451, Ltmp7619-Lfunc_begin0 - .quad Lset32451 -.set Lset32452, Ltmp7620-Lfunc_begin0 - .quad Lset32452 - .quad 0 - .quad 0 -Ldebug_ranges361: -.set Lset32453, Ltmp7633-Lfunc_begin0 - .quad Lset32453 -.set Lset32454, Ltmp7637-Lfunc_begin0 - .quad Lset32454 -.set Lset32455, Ltmp7729-Lfunc_begin0 - .quad Lset32455 -.set Lset32456, Ltmp7730-Lfunc_begin0 - .quad Lset32456 - .quad 0 - .quad 0 -Ldebug_ranges362: -.set Lset32457, Ltmp7625-Lfunc_begin0 - .quad Lset32457 -.set Lset32458, Ltmp7646-Lfunc_begin0 - .quad Lset32458 -.set Lset32459, Ltmp7658-Lfunc_begin0 - .quad Lset32459 -.set Lset32460, Ltmp7662-Lfunc_begin0 - .quad Lset32460 -.set Lset32461, Ltmp7674-Lfunc_begin0 - .quad Lset32461 -.set Lset32462, Ltmp7679-Lfunc_begin0 - .quad Lset32462 -.set Lset32463, Ltmp7727-Lfunc_begin0 - .quad Lset32463 -.set Lset32464, Ltmp7730-Lfunc_begin0 - .quad Lset32464 - .quad 0 - .quad 0 -Ldebug_ranges363: -.set Lset32465, Ltmp7652-Lfunc_begin0 - .quad Lset32465 -.set Lset32466, Ltmp7658-Lfunc_begin0 - .quad Lset32466 -.set Lset32467, Ltmp7672-Lfunc_begin0 - .quad Lset32467 -.set Lset32468, Ltmp7673-Lfunc_begin0 - .quad Lset32468 -.set Lset32469, Ltmp7705-Lfunc_begin0 - .quad Lset32469 -.set Lset32470, Ltmp7706-Lfunc_begin0 - .quad Lset32470 -.set Lset32471, Ltmp7707-Lfunc_begin0 - .quad Lset32471 -.set Lset32472, Ltmp7712-Lfunc_begin0 - .quad Lset32472 - .quad 0 - .quad 0 -Ldebug_ranges364: -.set Lset32473, Ltmp7679-Lfunc_begin0 - .quad Lset32473 -.set Lset32474, Ltmp7685-Lfunc_begin0 - .quad Lset32474 -.set Lset32475, Ltmp7706-Lfunc_begin0 - .quad Lset32475 -.set Lset32476, Ltmp7707-Lfunc_begin0 - .quad Lset32476 - .quad 0 - .quad 0 -Ldebug_ranges365: -.set Lset32477, Ltmp7689-Lfunc_begin0 - .quad Lset32477 -.set Lset32478, Ltmp7695-Lfunc_begin0 - .quad Lset32478 -.set Lset32479, Ltmp7704-Lfunc_begin0 - .quad Lset32479 -.set Lset32480, Ltmp7705-Lfunc_begin0 - .quad Lset32480 -.set Lset32481, Ltmp7712-Lfunc_begin0 - .quad Lset32481 -.set Lset32482, Ltmp7715-Lfunc_begin0 - .quad Lset32482 - .quad 0 - .quad 0 -Ldebug_ranges366: -.set Lset32483, Ltmp7685-Lfunc_begin0 - .quad Lset32483 -.set Lset32484, Ltmp7695-Lfunc_begin0 - .quad Lset32484 -.set Lset32485, Ltmp7704-Lfunc_begin0 - .quad Lset32485 -.set Lset32486, Ltmp7705-Lfunc_begin0 - .quad Lset32486 -.set Lset32487, Ltmp7712-Lfunc_begin0 - .quad Lset32487 -.set Lset32488, Ltmp7715-Lfunc_begin0 - .quad Lset32488 -.set Lset32489, Ltmp7730-Lfunc_begin0 - .quad Lset32489 -.set Lset32490, Ltmp7731-Lfunc_begin0 - .quad Lset32490 -.set Lset32491, Ltmp7732-Lfunc_begin0 - .quad Lset32491 -.set Lset32492, Ltmp7733-Lfunc_begin0 - .quad Lset32492 - .quad 0 - .quad 0 -Ldebug_ranges367: -.set Lset32493, Ltmp7647-Lfunc_begin0 - .quad Lset32493 -.set Lset32494, Ltmp7658-Lfunc_begin0 - .quad Lset32494 -.set Lset32495, Ltmp7672-Lfunc_begin0 - .quad Lset32495 -.set Lset32496, Ltmp7673-Lfunc_begin0 - .quad Lset32496 -.set Lset32497, Ltmp7679-Lfunc_begin0 - .quad Lset32497 -.set Lset32498, Ltmp7695-Lfunc_begin0 - .quad Lset32498 -.set Lset32499, Ltmp7704-Lfunc_begin0 - .quad Lset32499 -.set Lset32500, Ltmp7715-Lfunc_begin0 - .quad Lset32500 -.set Lset32501, Ltmp7730-Lfunc_begin0 - .quad Lset32501 -.set Lset32502, Ltmp7731-Lfunc_begin0 - .quad Lset32502 -.set Lset32503, Ltmp7732-Lfunc_begin0 - .quad Lset32503 -.set Lset32504, Ltmp7733-Lfunc_begin0 - .quad Lset32504 - .quad 0 - .quad 0 -Ldebug_ranges368: -.set Lset32505, Ltmp7667-Lfunc_begin0 - .quad Lset32505 -.set Lset32506, Ltmp7672-Lfunc_begin0 - .quad Lset32506 -.set Lset32507, Ltmp7715-Lfunc_begin0 - .quad Lset32507 -.set Lset32508, Ltmp7721-Lfunc_begin0 - .quad Lset32508 - .quad 0 - .quad 0 -Ldebug_ranges369: -.set Lset32509, Ltmp7699-Lfunc_begin0 - .quad Lset32509 -.set Lset32510, Ltmp7704-Lfunc_begin0 - .quad Lset32510 -.set Lset32511, Ltmp7721-Lfunc_begin0 - .quad Lset32511 -.set Lset32512, Ltmp7723-Lfunc_begin0 - .quad Lset32512 - .quad 0 - .quad 0 -Ldebug_ranges370: -.set Lset32513, Ltmp7695-Lfunc_begin0 - .quad Lset32513 -.set Lset32514, Ltmp7704-Lfunc_begin0 - .quad Lset32514 -.set Lset32515, Ltmp7721-Lfunc_begin0 - .quad Lset32515 -.set Lset32516, Ltmp7723-Lfunc_begin0 - .quad Lset32516 -.set Lset32517, Ltmp7731-Lfunc_begin0 - .quad Lset32517 -.set Lset32518, Ltmp7732-Lfunc_begin0 - .quad Lset32518 - .quad 0 - .quad 0 -Ldebug_ranges371: -.set Lset32519, Ltmp7663-Lfunc_begin0 - .quad Lset32519 -.set Lset32520, Ltmp7672-Lfunc_begin0 - .quad Lset32520 -.set Lset32521, Ltmp7695-Lfunc_begin0 - .quad Lset32521 -.set Lset32522, Ltmp7704-Lfunc_begin0 - .quad Lset32522 -.set Lset32523, Ltmp7715-Lfunc_begin0 - .quad Lset32523 -.set Lset32524, Ltmp7723-Lfunc_begin0 - .quad Lset32524 -.set Lset32525, Ltmp7731-Lfunc_begin0 - .quad Lset32525 -.set Lset32526, Ltmp7732-Lfunc_begin0 - .quad Lset32526 - .quad 0 - .quad 0 - .section __DWARF,__debug_macinfo,regular,debug -Ldebug_macinfo: - .byte 0 ## End Of Macro List Mark - .section __DWARF,__apple_names,regular,debug -Lnames_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 32 ## Header Bucket Count - .long 64 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - .long 0 ## Bucket 1 - .long 1 ## Bucket 2 - .long -1 ## Bucket 3 - .long 5 ## Bucket 4 - .long 7 ## Bucket 5 - .long 9 ## Bucket 6 - .long 12 ## Bucket 7 - .long 15 ## Bucket 8 - .long 18 ## Bucket 9 - .long 21 ## Bucket 10 - .long 22 ## Bucket 11 - .long 24 ## Bucket 12 - .long 25 ## Bucket 13 - .long 30 ## Bucket 14 - .long 31 ## Bucket 15 - .long 34 ## Bucket 16 - .long 35 ## Bucket 17 - .long 36 ## Bucket 18 - .long 38 ## Bucket 19 - .long 40 ## Bucket 20 - .long 43 ## Bucket 21 - .long 45 ## Bucket 22 - .long 46 ## Bucket 23 - .long 50 ## Bucket 24 - .long -1 ## Bucket 25 - .long -1 ## Bucket 26 - .long -1 ## Bucket 27 - .long 51 ## Bucket 28 - .long 56 ## Bucket 29 - .long 59 ## Bucket 30 - .long 62 ## Bucket 31 - .long -439368767 ## Hash in Bucket 1 - .long 279782178 ## Hash in Bucket 2 - .long 396254498 ## Hash in Bucket 2 - .long 876542498 ## Hash in Bucket 2 - .long -89297950 ## Hash in Bucket 2 - .long -1810817980 ## Hash in Bucket 4 - .long -362846972 ## Hash in Bucket 4 - .long 372548741 ## Hash in Bucket 5 - .long -1383990523 ## Hash in Bucket 5 - .long 226885638 ## Hash in Bucket 6 - .long 760348102 ## Hash in Bucket 6 - .long -1305100538 ## Hash in Bucket 6 - .long 75873095 ## Hash in Bucket 7 - .long -1870603833 ## Hash in Bucket 7 - .long -1810817977 ## Hash in Bucket 7 - .long 372548744 ## Hash in Bucket 8 - .long 1992526184 ## Hash in Bucket 8 - .long -436481240 ## Hash in Bucket 8 - .long 1022817449 ## Hash in Bucket 9 - .long -1936073175 ## Hash in Bucket 9 - .long -854968791 ## Hash in Bucket 9 - .long -1254055318 ## Hash in Bucket 10 - .long 767268619 ## Hash in Bucket 11 - .long 876837355 ## Hash in Bucket 11 - .long -117011668 ## Hash in Bucket 12 - .long 1123366189 ## Hash in Bucket 13 - .long 1259565837 ## Hash in Bucket 13 - .long 1259567821 ## Hash in Bucket 13 - .long -1085560755 ## Hash in Bucket 13 - .long -3545811 ## Hash in Bucket 13 - .long -676342098 ## Hash in Bucket 14 - .long 1061796239 ## Hash in Bucket 15 - .long -1365628529 ## Hash in Bucket 15 - .long -957682545 ## Hash in Bucket 15 - .long -42639472 ## Hash in Bucket 16 - .long 1259584113 ## Hash in Bucket 17 - .long -1810817966 ## Hash in Bucket 18 - .long -1003758606 ## Hash in Bucket 18 - .long 1259564371 ## Hash in Bucket 19 - .long -1496575309 ## Hash in Bucket 19 - .long 142659060 ## Hash in Bucket 20 - .long 1259584532 ## Hash in Bucket 20 - .long -1295469484 ## Hash in Bucket 20 - .long 227424693 ## Hash in Bucket 21 - .long 977459637 ## Hash in Bucket 21 - .long 596732982 ## Hash in Bucket 22 - .long 672730391 ## Hash in Bucket 23 - .long 1259584119 ## Hash in Bucket 23 - .long -555016201 ## Hash in Bucket 23 - .long -275735721 ## Hash in Bucket 23 - .long 1259578008 ## Hash in Bucket 24 - .long 592082556 ## Hash in Bucket 28 - .long 1046836188 ## Hash in Bucket 28 - .long 1178909660 ## Hash in Bucket 28 - .long -1276525636 ## Hash in Bucket 28 - .long -287317220 ## Hash in Bucket 28 - .long -1936086243 ## Hash in Bucket 29 - .long -1384001411 ## Hash in Bucket 29 - .long -712206659 ## Hash in Bucket 29 - .long 1246631966 ## Hash in Bucket 30 - .long -2058629218 ## Hash in Bucket 30 - .long -1158580290 ## Hash in Bucket 30 - .long 1046826207 ## Hash in Bucket 31 - .long -1384015617 ## Hash in Bucket 31 -.set Lset32527, LNames42-Lnames_begin ## Offset in Bucket 1 - .long Lset32527 -.set Lset32528, LNames15-Lnames_begin ## Offset in Bucket 2 - .long Lset32528 -.set Lset32529, LNames23-Lnames_begin ## Offset in Bucket 2 - .long Lset32529 -.set Lset32530, LNames25-Lnames_begin ## Offset in Bucket 2 - .long Lset32530 -.set Lset32531, LNames24-Lnames_begin ## Offset in Bucket 2 - .long Lset32531 -.set Lset32532, LNames63-Lnames_begin ## Offset in Bucket 4 - .long Lset32532 -.set Lset32533, LNames45-Lnames_begin ## Offset in Bucket 4 - .long Lset32533 -.set Lset32534, LNames16-Lnames_begin ## Offset in Bucket 5 - .long Lset32534 -.set Lset32535, LNames46-Lnames_begin ## Offset in Bucket 5 - .long Lset32535 -.set Lset32536, LNames48-Lnames_begin ## Offset in Bucket 6 - .long Lset32536 -.set Lset32537, LNames47-Lnames_begin ## Offset in Bucket 6 - .long Lset32537 -.set Lset32538, LNames26-Lnames_begin ## Offset in Bucket 6 - .long Lset32538 -.set Lset32539, LNames27-Lnames_begin ## Offset in Bucket 7 - .long Lset32539 -.set Lset32540, LNames0-Lnames_begin ## Offset in Bucket 7 - .long Lset32540 -.set Lset32541, LNames1-Lnames_begin ## Offset in Bucket 7 - .long Lset32541 -.set Lset32542, LNames17-Lnames_begin ## Offset in Bucket 8 - .long Lset32542 -.set Lset32543, LNames49-Lnames_begin ## Offset in Bucket 8 - .long Lset32543 -.set Lset32544, LNames28-Lnames_begin ## Offset in Bucket 8 - .long Lset32544 -.set Lset32545, LNames53-Lnames_begin ## Offset in Bucket 9 - .long Lset32545 -.set Lset32546, LNames50-Lnames_begin ## Offset in Bucket 9 - .long Lset32546 -.set Lset32547, LNames18-Lnames_begin ## Offset in Bucket 9 - .long Lset32547 -.set Lset32548, LNames51-Lnames_begin ## Offset in Bucket 10 - .long Lset32548 -.set Lset32549, LNames29-Lnames_begin ## Offset in Bucket 11 - .long Lset32549 -.set Lset32550, LNames52-Lnames_begin ## Offset in Bucket 11 - .long Lset32550 -.set Lset32551, LNames30-Lnames_begin ## Offset in Bucket 12 - .long Lset32551 -.set Lset32552, LNames31-Lnames_begin ## Offset in Bucket 13 - .long Lset32552 -.set Lset32553, LNames2-Lnames_begin ## Offset in Bucket 13 - .long Lset32553 -.set Lset32554, LNames33-Lnames_begin ## Offset in Bucket 13 - .long Lset32554 -.set Lset32555, LNames32-Lnames_begin ## Offset in Bucket 13 - .long Lset32555 -.set Lset32556, LNames54-Lnames_begin ## Offset in Bucket 13 - .long Lset32556 -.set Lset32557, LNames19-Lnames_begin ## Offset in Bucket 14 - .long Lset32557 -.set Lset32558, LNames20-Lnames_begin ## Offset in Bucket 15 - .long Lset32558 -.set Lset32559, LNames55-Lnames_begin ## Offset in Bucket 15 - .long Lset32559 -.set Lset32560, LNames3-Lnames_begin ## Offset in Bucket 15 - .long Lset32560 -.set Lset32561, LNames56-Lnames_begin ## Offset in Bucket 16 - .long Lset32561 -.set Lset32562, LNames57-Lnames_begin ## Offset in Bucket 17 - .long Lset32562 -.set Lset32563, LNames4-Lnames_begin ## Offset in Bucket 18 - .long Lset32563 -.set Lset32564, LNames58-Lnames_begin ## Offset in Bucket 18 - .long Lset32564 -.set Lset32565, LNames34-Lnames_begin ## Offset in Bucket 19 - .long Lset32565 -.set Lset32566, LNames5-Lnames_begin ## Offset in Bucket 19 - .long Lset32566 -.set Lset32567, LNames6-Lnames_begin ## Offset in Bucket 20 - .long Lset32567 -.set Lset32568, LNames14-Lnames_begin ## Offset in Bucket 20 - .long Lset32568 -.set Lset32569, LNames11-Lnames_begin ## Offset in Bucket 20 - .long Lset32569 -.set Lset32570, LNames7-Lnames_begin ## Offset in Bucket 21 - .long Lset32570 -.set Lset32571, LNames8-Lnames_begin ## Offset in Bucket 21 - .long Lset32571 -.set Lset32572, LNames35-Lnames_begin ## Offset in Bucket 22 - .long Lset32572 -.set Lset32573, LNames9-Lnames_begin ## Offset in Bucket 23 - .long Lset32573 -.set Lset32574, LNames59-Lnames_begin ## Offset in Bucket 23 - .long Lset32574 -.set Lset32575, LNames21-Lnames_begin ## Offset in Bucket 23 - .long Lset32575 -.set Lset32576, LNames36-Lnames_begin ## Offset in Bucket 23 - .long Lset32576 -.set Lset32577, LNames10-Lnames_begin ## Offset in Bucket 24 - .long Lset32577 -.set Lset32578, LNames38-Lnames_begin ## Offset in Bucket 28 - .long Lset32578 -.set Lset32579, LNames37-Lnames_begin ## Offset in Bucket 28 - .long Lset32579 -.set Lset32580, LNames60-Lnames_begin ## Offset in Bucket 28 - .long Lset32580 -.set Lset32581, LNames12-Lnames_begin ## Offset in Bucket 28 - .long Lset32581 -.set Lset32582, LNames40-Lnames_begin ## Offset in Bucket 28 - .long Lset32582 -.set Lset32583, LNames39-Lnames_begin ## Offset in Bucket 29 - .long Lset32583 -.set Lset32584, LNames44-Lnames_begin ## Offset in Bucket 29 - .long Lset32584 -.set Lset32585, LNames13-Lnames_begin ## Offset in Bucket 29 - .long Lset32585 -.set Lset32586, LNames62-Lnames_begin ## Offset in Bucket 30 - .long Lset32586 -.set Lset32587, LNames61-Lnames_begin ## Offset in Bucket 30 - .long Lset32587 -.set Lset32588, LNames22-Lnames_begin ## Offset in Bucket 30 - .long Lset32588 -.set Lset32589, LNames41-Lnames_begin ## Offset in Bucket 31 - .long Lset32589 -.set Lset32590, LNames43-Lnames_begin ## Offset in Bucket 31 - .long Lset32590 -LNames42: - .long 4543 ## ravi_dump_stack - .long 1 ## Num DIEs - .long 23397 - .long 0 -LNames15: - .long 4988 ## raviV_gettable_sskey - .long 1 ## Num DIEs - .long 28393 - .long 0 -LNames23: - .long 4674 ## raviV_op_concat - .long 1 ## Num DIEs - .long 24805 - .long 0 -LNames25: - .long 4474 ## pushclosure - .long 1 ## Num DIEs - .long 23019 - .long 0 -LNames24: - .long 4105 ## luaV_forlimit - .long 2 ## Num DIEs - .long 6829 - .long 18605 - .long 0 -LNames63: - .long 4759 ## raviV_op_setupvalf - .long 1 ## Num DIEs - .long 25775 - .long 0 -LNames45: - .long 4149 ## luaV_gettable - .long 1 ## Num DIEs - .long 19097 - .long 0 -LNames16: - .long 4798 ## raviV_op_setupvalaf - .long 1 ## Num DIEs - .long 26076 - .long 0 -LNames46: - .long 4960 ## raviV_op_bxor - .long 1 ## Num DIEs - .long 28104 - .long 0 -LNames48: - .long 4262 ## LEnum - .long 1 ## Num DIEs - .long 20809 - .long 0 -LNames47: - .long 4342 ## luaV_shiftl - .long 7 ## Num DIEs - .long 4537 - .long 4750 - .long 8047 - .long 8162 - .long 22046 - .long 27522 - .long 27720 - .long 0 -LNames26: - .long 4219 ## LTintfloat - .long 2 ## Num DIEs - .long 20446 - .long 20941 - .long 0 -LNames27: - .long 4690 ## raviV_op_closure - .long 1 ## Num DIEs - .long 25007 - .long 0 -LNames0: - .long 4032 ## luaV_tonumber_ - .long 1 ## Num DIEs - .long 18214 - .long 0 -LNames1: - .long 4740 ## raviV_op_setupvali - .long 1 ## Num DIEs - .long 25615 - .long 0 -LNames17: - .long 4778 ## raviV_op_setupvalai - .long 1 ## Num DIEs - .long 25935 - .long 0 -LNames49: - .long 5047 ## raviV_settable_i - .long 1 ## Num DIEs - .long 29174 - .long 0 -LNames28: - .long 4486 ## ravi_dump_value - .long 1 ## Num DIEs - .long 23224 - .long 0 -LNames53: - .long 4616 ## raviV_op_newarrayfloat - .long 1 ## Num DIEs - .long 23993 - .long 0 -LNames50: - .long 4134 ## luaV_finishset - .long 1 ## Num DIEs - .long 18873 - .long 0 -LNames18: - .long 4177 ## l_strcmp - .long 2 ## Num DIEs - .long 20256 - .long 20698 - .long 0 -LNames51: - .long 4394 ## raviV_check_usertype - .long 1 ## Num DIEs - .long 22473 - .long 0 -LNames29: - .long 4247 ## luaV_lessequal - .long 1 ## Num DIEs - .long 20608 - .long 0 -LNames52: - .long 4578 ## ravi_debug_trace - .long 1 ## Num DIEs - .long 23679 - .long 0 -LNames30: - .long 4089 ## luaV_tointeger_ - .long 8 ## Num DIEs - .long 1582 - .long 2031 - .long 2322 - .long 7465 - .long 18566 - .long 19936 - .long 24572 - .long 29586 - .long 0 -LNames31: - .long 4707 ## raviV_op_vararg - .long 1 ## Num DIEs - .long 25321 - .long 0 -LNames2: - .long 4947 ## raviV_op_bor - .long 1 ## Num DIEs - .long 27937 - .long 0 -LNames33: - .long 4894 ## raviV_op_div - .long 1 ## Num DIEs - .long 27216 - .long 0 -LNames32: - .long 4723 ## raviV_op_loadnil - .long 1 ## Num DIEs - .long 25518 - .long 0 -LNames54: - .long 4074 ## luaV_tointeger - .long 1 ## Num DIEs - .long 18428 - .long 0 -LNames19: - .long 5009 ## raviV_settable_sskey - .long 1 ## Num DIEs - .long 28591 - .long 0 -LNames20: - .long 5064 ## raviV_op_totype - .long 1 ## Num DIEs - .long 29692 - .long 0 -LNames55: - .long 4268 ## luaV_equalobj - .long 1 ## Num DIEs - .long 20974 - .long 0 -LNames3: - .long 4461 ## luaV_execute - .long 1 ## Num DIEs - .long 42 - .long 0 -LNames56: - .long 4163 ## luaV_settable - .long 1 ## Num DIEs - .long 19518 - .long 0 -LNames57: - .long 4907 ## raviV_op_shl - .long 1 ## Num DIEs - .long 27383 - .long 0 -LNames4: - .long 4818 ## raviV_op_setupvalt - .long 1 ## Num DIEs - .long 26217 - .long 0 -LNames58: - .long 4657 ## raviV_op_setlist - .long 1 ## Num DIEs - .long 24275 - .long 0 -LNames34: - .long 4855 ## raviV_op_add - .long 1 ## Num DIEs - .long 26499 - .long 0 -LNames5: - .long 4047 ## luaV_flttointeger - .long 15 ## Num DIEs - .long 3909 - .long 3976 - .long 4099 - .long 4166 - .long 4289 - .long 4356 - .long 4479 - .long 4569 - .long 4692 - .long 4773 - .long 5564 - .long 18285 - .long 18513 - .long 21109 - .long 21162 - .long 0 -LNames6: - .long 4300 ## luaV_concat - .long 1 ## Num DIEs - .long 21289 - .long 0 -LNames14: - .long 4868 ## raviV_op_sub - .long 1 ## Num DIEs - .long 26738 - .long 0 -LNames11: - .long 4559 ## ravi_dump_stacktop - .long 1 ## Num DIEs - .long 23562 - .long 0 -LNames7: - .long 4241 ## LTnum - .long 1 ## Num DIEs - .long 20367 - .long 0 -LNames8: - .long 4282 ## copy2buff - .long 2 ## Num DIEs - .long 21460 - .long 21516 - .long 0 -LNames35: - .long 4312 ## luaV_objlen - .long 1 ## Num DIEs - .long 21671 - .long 0 -LNames9: - .long 4502 ## ravi_dump_ci - .long 1 ## Num DIEs - .long 23467 - .long 0 -LNames59: - .long 4920 ## raviV_op_shr - .long 1 ## Num DIEs - .long 27581 - .long 0 -LNames21: - .long 4230 ## LEintfloat - .long 2 ## Num DIEs - .long 20499 - .long 20888 - .long 0 -LNames36: - .long 4368 ## luaH_getshortstr - .long 8 ## Num DIEs - .long 2710 - .long 2984 - .long 9518 - .long 9662 - .long 9854 - .long 22595 - .long 28500 - .long 28698 - .long 0 -LNames10: - .long 4881 ## raviV_op_mul - .long 1 ## Num DIEs - .long 26977 - .long 0 -LNames38: - .long 4354 ## luaV_finishOp - .long 1 ## Num DIEs - .long 22082 - .long 0 -LNames37: - .long 4333 ## luaV_mod - .long 2 ## Num DIEs - .long 5014 - .long 21976 - .long 0 -LNames60: - .long 5030 ## raviV_gettable_i - .long 1 ## Num DIEs - .long 28794 - .long 0 -LNames12: - .long 4639 ## raviV_op_newtable - .long 1 ## Num DIEs - .long 24118 - .long 0 -LNames40: - .long 132 ## dispatch_table - .long 1 ## Num DIEs - .long 68 - .long 0 -LNames39: - .long 4119 ## luaV_finishget - .long 1 ## Num DIEs - .long 18702 - .long 0 -LNames44: - .long 4974 ## raviV_op_bnot - .long 1 ## Num DIEs - .long 28271 - .long 0 -LNames13: - .long 4438 ## getcached - .long 2 ## Num DIEs - .long 7582 - .long 25169 - .long 0 -LNames62: - .long 4837 ## raviV_op_setupval - .long 1 ## Num DIEs - .long 26358 - .long 0 -LNames61: - .long 4205 ## luaV_lessthan - .long 1 ## Num DIEs - .long 20166 - .long 0 -LNames22: - .long 4595 ## raviV_op_newarrayint - .long 1 ## Num DIEs - .long 23868 - .long 0 -LNames41: - .long 4324 ## luaV_div - .long 2 ## Num DIEs - .long 5237 - .long 21906 - .long 0 -LNames43: - .long 4933 ## raviV_op_band - .long 1 ## Num DIEs - .long 27770 - .long 0 - .section __DWARF,__apple_objc,regular,debug -Lobjc_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 1 ## Header Bucket Count - .long 0 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - .section __DWARF,__apple_namespac,regular,debug -Lnamespac_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 1 ## Header Bucket Count - .long 0 ## Header Hash Count - .long 12 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 1 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .long -1 ## Bucket 0 - .section __DWARF,__apple_types,regular,debug -Ltypes_begin: - .long 1212240712 ## Header Magic - .short 1 ## Header Version - .short 0 ## Header Hash Function - .long 32 ## Header Bucket Count - .long 64 ## Header Hash Count - .long 20 ## Header Data Length - .long 0 ## HeaderData Die Offset Base - .long 3 ## HeaderData Atom Count - .short 1 ## DW_ATOM_die_offset - .short 6 ## DW_FORM_data4 - .short 3 ## DW_ATOM_die_tag - .short 5 ## DW_FORM_data2 - .short 4 ## DW_ATOM_type_flags - .short 11 ## DW_FORM_data1 - .long 0 ## Bucket 0 - .long -1 ## Bucket 1 - .long 3 ## Bucket 2 - .long 7 ## Bucket 3 - .long 9 ## Bucket 4 - .long 12 ## Bucket 5 - .long 13 ## Bucket 6 - .long 14 ## Bucket 7 - .long -1 ## Bucket 8 - .long 17 ## Bucket 9 - .long 19 ## Bucket 10 - .long 20 ## Bucket 11 - .long 21 ## Bucket 12 - .long 24 ## Bucket 13 - .long 30 ## Bucket 14 - .long 31 ## Bucket 15 - .long 34 ## Bucket 16 - .long 37 ## Bucket 17 - .long 38 ## Bucket 18 - .long 40 ## Bucket 19 - .long 41 ## Bucket 20 - .long 44 ## Bucket 21 - .long 46 ## Bucket 22 - .long 50 ## Bucket 23 - .long 54 ## Bucket 24 - .long 56 ## Bucket 25 - .long -1 ## Bucket 26 - .long 59 ## Bucket 27 - .long -1 ## Bucket 28 - .long 61 ## Bucket 29 - .long -1 ## Bucket 30 - .long 62 ## Bucket 31 - .long -1880351968 ## Hash in Bucket 0 - .long -113419488 ## Hash in Bucket 0 - .long -104093792 ## Hash in Bucket 0 - .long 239748898 ## Hash in Bucket 2 - .long 759453730 ## Hash in Bucket 2 - .long 2080946626 ## Hash in Bucket 2 - .long 2089577442 ## Hash in Bucket 2 - .long 1311072323 ## Hash in Bucket 3 - .long 2090147939 ## Hash in Bucket 3 - .long 206000324 ## Hash in Bucket 4 - .long 236871396 ## Hash in Bucket 4 - .long 2071398372 ## Hash in Bucket 4 - .long 2054339493 ## Hash in Bucket 5 - .long -421265146 ## Hash in Bucket 6 - .long 524080263 ## Hash in Bucket 7 - .long 784013319 ## Hash in Bucket 7 - .long 1891274695 ## Hash in Bucket 7 - .long -1185500247 ## Hash in Bucket 9 - .long -167730551 ## Hash in Bucket 9 - .long -566636022 ## Hash in Bucket 10 - .long 2089400971 ## Hash in Bucket 11 - .long 1639088524 ## Hash in Bucket 12 - .long -1053329204 ## Hash in Bucket 12 - .long -251319668 ## Hash in Bucket 12 - .long 237365869 ## Hash in Bucket 13 - .long 239077421 ## Hash in Bucket 13 - .long 505753517 ## Hash in Bucket 13 - .long 2138597773 ## Hash in Bucket 13 - .long -1304652851 ## Hash in Bucket 13 - .long -69895251 ## Hash in Bucket 13 - .long -926730354 ## Hash in Bucket 14 - .long 265767855 ## Hash in Bucket 15 - .long -1658752209 ## Hash in Bucket 15 - .long -79299793 ## Hash in Bucket 15 - .long 193495088 ## Hash in Bucket 16 - .long 267068368 ## Hash in Bucket 16 - .long -1267332080 ## Hash in Bucket 16 - .long 502458001 ## Hash in Bucket 17 - .long 878862258 ## Hash in Bucket 18 - .long 987553234 ## Hash in Bucket 18 - .long 466678419 ## Hash in Bucket 19 - .long 238658772 ## Hash in Bucket 20 - .long -1061812556 ## Hash in Bucket 20 - .long -749835052 ## Hash in Bucket 20 - .long 274395349 ## Hash in Bucket 21 - .long -282664779 ## Hash in Bucket 21 - .long 479703094 ## Hash in Bucket 22 - .long 1007206166 ## Hash in Bucket 22 - .long -2011261482 ## Hash in Bucket 22 - .long -769941354 ## Hash in Bucket 22 - .long 118329175 ## Hash in Bucket 23 - .long 1056685111 ## Hash in Bucket 23 - .long 1090845495 ## Hash in Bucket 23 - .long -2109888073 ## Hash in Bucket 23 - .long 2062531832 ## Hash in Bucket 24 - .long -5219592 ## Hash in Bucket 24 - .long 233247545 ## Hash in Bucket 25 - .long -1929616327 ## Hash in Bucket 25 - .long -1792297095 ## Hash in Bucket 25 - .long -1920572709 ## Hash in Bucket 27 - .long -594775205 ## Hash in Bucket 27 - .long -80380739 ## Hash in Bucket 29 - .long 290644127 ## Hash in Bucket 31 - .long -935859777 ## Hash in Bucket 31 -.set Lset32591, Ltypes17-Ltypes_begin ## Offset in Bucket 0 - .long Lset32591 -.set Lset32592, Ltypes40-Ltypes_begin ## Offset in Bucket 0 - .long Lset32592 -.set Lset32593, Ltypes61-Ltypes_begin ## Offset in Bucket 0 - .long Lset32593 -.set Lset32594, Ltypes62-Ltypes_begin ## Offset in Bucket 2 - .long Lset32594 -.set Lset32595, Ltypes28-Ltypes_begin ## Offset in Bucket 2 - .long Lset32595 -.set Lset32596, Ltypes18-Ltypes_begin ## Offset in Bucket 2 - .long Lset32596 -.set Lset32597, Ltypes41-Ltypes_begin ## Offset in Bucket 2 - .long Lset32597 -.set Lset32598, Ltypes29-Ltypes_begin ## Offset in Bucket 3 - .long Lset32598 -.set Lset32599, Ltypes42-Ltypes_begin ## Offset in Bucket 3 - .long Lset32599 -.set Lset32600, Ltypes63-Ltypes_begin ## Offset in Bucket 4 - .long Lset32600 -.set Lset32601, Ltypes30-Ltypes_begin ## Offset in Bucket 4 - .long Lset32601 -.set Lset32602, Ltypes0-Ltypes_begin ## Offset in Bucket 4 - .long Lset32602 -.set Lset32603, Ltypes19-Ltypes_begin ## Offset in Bucket 5 - .long Lset32603 -.set Lset32604, Ltypes1-Ltypes_begin ## Offset in Bucket 6 - .long Lset32604 -.set Lset32605, Ltypes43-Ltypes_begin ## Offset in Bucket 7 - .long Lset32605 -.set Lset32606, Ltypes44-Ltypes_begin ## Offset in Bucket 7 - .long Lset32606 -.set Lset32607, Ltypes48-Ltypes_begin ## Offset in Bucket 7 - .long Lset32607 -.set Lset32608, Ltypes45-Ltypes_begin ## Offset in Bucket 9 - .long Lset32608 -.set Lset32609, Ltypes20-Ltypes_begin ## Offset in Bucket 9 - .long Lset32609 -.set Lset32610, Ltypes46-Ltypes_begin ## Offset in Bucket 10 - .long Lset32610 -.set Lset32611, Ltypes2-Ltypes_begin ## Offset in Bucket 11 - .long Lset32611 -.set Lset32612, Ltypes47-Ltypes_begin ## Offset in Bucket 12 - .long Lset32612 -.set Lset32613, Ltypes3-Ltypes_begin ## Offset in Bucket 12 - .long Lset32613 -.set Lset32614, Ltypes21-Ltypes_begin ## Offset in Bucket 12 - .long Lset32614 -.set Lset32615, Ltypes32-Ltypes_begin ## Offset in Bucket 13 - .long Lset32615 -.set Lset32616, Ltypes4-Ltypes_begin ## Offset in Bucket 13 - .long Lset32616 -.set Lset32617, Ltypes5-Ltypes_begin ## Offset in Bucket 13 - .long Lset32617 -.set Lset32618, Ltypes9-Ltypes_begin ## Offset in Bucket 13 - .long Lset32618 -.set Lset32619, Ltypes31-Ltypes_begin ## Offset in Bucket 13 - .long Lset32619 -.set Lset32620, Ltypes49-Ltypes_begin ## Offset in Bucket 13 - .long Lset32620 -.set Lset32621, Ltypes8-Ltypes_begin ## Offset in Bucket 14 - .long Lset32621 -.set Lset32622, Ltypes7-Ltypes_begin ## Offset in Bucket 15 - .long Lset32622 -.set Lset32623, Ltypes6-Ltypes_begin ## Offset in Bucket 15 - .long Lset32623 -.set Lset32624, Ltypes50-Ltypes_begin ## Offset in Bucket 15 - .long Lset32624 -.set Lset32625, Ltypes33-Ltypes_begin ## Offset in Bucket 16 - .long Lset32625 -.set Lset32626, Ltypes51-Ltypes_begin ## Offset in Bucket 16 - .long Lset32626 -.set Lset32627, Ltypes54-Ltypes_begin ## Offset in Bucket 16 - .long Lset32627 -.set Lset32628, Ltypes52-Ltypes_begin ## Offset in Bucket 17 - .long Lset32628 -.set Lset32629, Ltypes53-Ltypes_begin ## Offset in Bucket 18 - .long Lset32629 -.set Lset32630, Ltypes34-Ltypes_begin ## Offset in Bucket 18 - .long Lset32630 -.set Lset32631, Ltypes35-Ltypes_begin ## Offset in Bucket 19 - .long Lset32631 -.set Lset32632, Ltypes22-Ltypes_begin ## Offset in Bucket 20 - .long Lset32632 -.set Lset32633, Ltypes36-Ltypes_begin ## Offset in Bucket 20 - .long Lset32633 -.set Lset32634, Ltypes55-Ltypes_begin ## Offset in Bucket 20 - .long Lset32634 -.set Lset32635, Ltypes23-Ltypes_begin ## Offset in Bucket 21 - .long Lset32635 -.set Lset32636, Ltypes37-Ltypes_begin ## Offset in Bucket 21 - .long Lset32636 -.set Lset32637, Ltypes24-Ltypes_begin ## Offset in Bucket 22 - .long Lset32637 -.set Lset32638, Ltypes56-Ltypes_begin ## Offset in Bucket 22 - .long Lset32638 -.set Lset32639, Ltypes39-Ltypes_begin ## Offset in Bucket 22 - .long Lset32639 -.set Lset32640, Ltypes38-Ltypes_begin ## Offset in Bucket 22 - .long Lset32640 -.set Lset32641, Ltypes10-Ltypes_begin ## Offset in Bucket 23 - .long Lset32641 -.set Lset32642, Ltypes25-Ltypes_begin ## Offset in Bucket 23 - .long Lset32642 -.set Lset32643, Ltypes13-Ltypes_begin ## Offset in Bucket 23 - .long Lset32643 -.set Lset32644, Ltypes57-Ltypes_begin ## Offset in Bucket 23 - .long Lset32644 -.set Lset32645, Ltypes58-Ltypes_begin ## Offset in Bucket 24 - .long Lset32645 -.set Lset32646, Ltypes11-Ltypes_begin ## Offset in Bucket 24 - .long Lset32646 -.set Lset32647, Ltypes14-Ltypes_begin ## Offset in Bucket 25 - .long Lset32647 -.set Lset32648, Ltypes26-Ltypes_begin ## Offset in Bucket 25 - .long Lset32648 -.set Lset32649, Ltypes12-Ltypes_begin ## Offset in Bucket 25 - .long Lset32649 -.set Lset32650, Ltypes27-Ltypes_begin ## Offset in Bucket 27 - .long Lset32650 -.set Lset32651, Ltypes59-Ltypes_begin ## Offset in Bucket 27 - .long Lset32651 -.set Lset32652, Ltypes15-Ltypes_begin ## Offset in Bucket 29 - .long Lset32652 -.set Lset32653, Ltypes16-Ltypes_begin ## Offset in Bucket 31 - .long Lset32653 -.set Lset32654, Ltypes60-Ltypes_begin ## Offset in Bucket 31 - .long Lset32654 -Ltypes17: - .long 2517 ## long int - .long 1 ## Num DIEs - .long 15928 - .short 36 - .byte 0 - .long 0 -Ltypes40: - .long 2110 ## double - .long 1 ## Num DIEs - .long 14142 - .short 36 - .byte 0 - .long 0 -Ltypes61: - .long 2158 ## unsigned char - .long 1 ## Num DIEs - .long 14331 - .short 36 - .byte 0 - .long 0 -Ltypes62: - .long 2394 ## Value - .long 2 ## Num DIEs - .long 14875 - .short 22 - .byte 0 - .long 14886 - .short 23 - .byte 0 - .long 0 -Ltypes28: - .long 3628 ## Closure - .long 1 ## Num DIEs - .long 17222 - .short 23 - .byte 0 - .long 0 -Ltypes18: - .long 2933 ## ravi_Writestringerror - .long 1 ## Num DIEs - .long 16186 - .short 22 - .byte 0 - .long 0 -Ltypes41: - .long 3536 ## TKey - .long 2 ## Num DIEs - .long 17042 - .short 22 - .byte 0 - .long 17054 - .short 23 - .byte 0 - .long 0 -Ltypes29: - .long 3970 ## lua_Unsigned - .long 1 ## Num DIEs - .long 18126 - .short 22 - .byte 0 - .long 0 -Ltypes42: - .long 2117 ## char - .long 1 ## Num DIEs - .long 14154 - .short 36 - .byte 0 - .long 0 -Ltypes63: - .long 2543 ## lu_mem - .long 1 ## Num DIEs - .long 15935 - .short 22 - .byte 0 - .long 0 -Ltypes30: - .long 2445 ## StkId - .long 1 ## Num DIEs - .long 15338 - .short 22 - .byte 0 - .long 0 -Ltypes0: - .long 2566 ## stringtable - .long 2 ## Num DIEs - .long 15946 - .short 22 - .byte 0 - .long 15957 - .short 19 - .byte 0 - .long 0 -Ltypes19: - .long 3636 ## CClosure - .long 2 ## Num DIEs - .long 17258 - .short 22 - .byte 0 - .long 17270 - .short 19 - .byte 0 - .long 0 -Ltypes1: - .long 2133 ## GCObject - .long 2 ## Num DIEs - .long 14259 - .short 22 - .byte 0 - .long 14270 - .short 19 - .byte 0 - .long 0 -Ltypes43: - .long 2424 ## lua_State - .long 2 ## Num DIEs - .long 15006 - .short 22 - .byte 0 - .long 15017 - .short 19 - .byte 0 - .long 0 -Ltypes44: - .long 2507 ## ptrdiff_t - .long 1 ## Num DIEs - .long 15917 - .short 22 - .byte 0 - .long 0 -Ltypes48: - .long 3015 ## Instruction - .long 1 ## Num DIEs - .long 16485 - .short 22 - .byte 0 - .long 0 -Ltypes45: - .long 2862 ## ravi_Writeline - .long 1 ## Num DIEs - .long 16137 - .short 22 - .byte 0 - .long 0 -Ltypes20: - .long 2289 ## LuaType - .long 1 ## Num DIEs - .long 14613 - .short 22 - .byte 0 - .long 0 -Ltypes46: - .long 1916 ## OpArgMask - .long 1 ## Num DIEs - .long 14025 - .short 4 - .byte 0 - .long 0 -Ltypes2: - .long 3519 ## Node - .long 2 ## Num DIEs - .long 16994 - .short 22 - .byte 0 - .long 17006 - .short 19 - .byte 0 - .long 0 -Ltypes47: - .long 3849 ## Upvaldesc - .long 2 ## Num DIEs - .long 17935 - .short 22 - .byte 0 - .long 17947 - .short 19 - .byte 0 - .long 0 -Ltypes3: - .long 3792 ## LocVar - .long 2 ## Num DIEs - .long 17843 - .short 22 - .byte 0 - .long 17855 - .short 19 - .byte 0 - .long 0 -Ltypes21: - .long 2835 ## ASMFunction - .long 1 ## Num DIEs - .long 16119 - .short 22 - .byte 0 - .long 0 -Ltypes32: - .long 2331 ## Table - .long 2 ## Num DIEs - .long 14647 - .short 19 - .byte 0 - .long 22461 - .short 22 - .byte 0 - .long 0 -Ltypes4: - .long 3187 ## UpVal - .long 2 ## Num DIEs - .long 16578 - .short 22 - .byte 0 - .long 16590 - .short 19 - .byte 0 - .long 0 -Ltypes5: - .long 3273 ## lua_Debug - .long 2 ## Num DIEs - .long 16742 - .short 22 - .byte 0 - .long 16754 - .short 19 - .byte 0 - .long 0 -Ltypes9: - .long 2977 ## CallInfo - .long 2 ## Num DIEs - .long 16219 - .short 22 - .byte 0 - .long 16230 - .short 19 - .byte 0 - .long 0 -Ltypes31: - .long 2208 ## unsigned int - .long 1 ## Num DIEs - .long 14471 - .short 36 - .byte 0 - .long 0 -Ltypes49: - .long 3983 ## long long unsigned int - .long 1 ## Num DIEs - .long 18137 - .short 36 - .byte 0 - .long 0 -Ltypes8: - .long 3663 ## LClosure - .long 2 ## Num DIEs - .long 17383 - .short 22 - .byte 0 - .long 17395 - .short 19 - .byte 0 - .long 0 -Ltypes7: - .long 2501 ## l_mem - .long 1 ## Num DIEs - .long 15906 - .short 22 - .byte 0 - .long 0 -Ltypes6: - .long 2410 ## lua_CFunction - .long 1 ## Num DIEs - .long 14974 - .short 22 - .byte 0 - .long 0 -Ltypes50: - .long 2099 ## lua_Number - .long 1 ## Num DIEs - .long 14131 - .short 22 - .byte 0 - .long 0 -Ltypes33: - .long 2404 ## int - .long 1 ## Num DIEs - .long 14967 - .short 36 - .byte 0 - .long 0 -Ltypes51: - .long 2182 ## TString - .long 2 ## Num DIEs - .long 14338 - .short 19 - .byte 0 - .long 16012 - .short 22 - .byte 0 - .long 0 -Ltypes54: - .long 3494 ## long long int - .long 1 ## Num DIEs - .long 16982 - .short 36 - .byte 0 - .long 0 -Ltypes52: - .long 2477 ## lua_Alloc - .long 1 ## Num DIEs - .long 15864 - .short 22 - .byte 0 - .long 0 -Ltypes53: - .long 2306 ## unsigned short - .long 1 ## Num DIEs - .long 14635 - .short 36 - .byte 0 - .long 0 -Ltypes34: - .long 3886 ## RaviJITProto - .long 2 ## Num DIEs - .long 18027 - .short 22 - .byte 0 - .long 18039 - .short 19 - .byte 0 - .long 0 -Ltypes35: - .long 2230 ## size_t - .long 1 ## Num DIEs - .long 14478 - .short 22 - .byte 0 - .long 0 -Ltypes22: - .long 2277 ## Udata - .long 1 ## Num DIEs - .long 14512 - .short 19 - .byte 0 - .long 0 -Ltypes36: - .long 4013 ## L_EXTRA - .long 1 ## Num DIEs - .long 18171 - .short 19 - .byte 0 - .long 0 -Ltypes55: - .long 3482 ## lua_Integer - .long 1 ## Num DIEs - .long 16971 - .short 22 - .byte 0 - .long 0 -Ltypes23: - .long 3110 ## short - .long 1 ## Num DIEs - .long 16566 - .short 36 - .byte 0 - .long 0 -Ltypes37: - .long 2237 ## __darwin_size_t - .long 1 ## Num DIEs - .long 14489 - .short 22 - .byte 0 - .long 0 -Ltypes24: - .long 3045 ## lua_KContext - .long 1 ## Num DIEs - .long 16533 - .short 22 - .byte 0 - .long 0 -Ltypes56: - .long 3568 ## RaviArray - .long 2 ## Num DIEs - .long 17135 - .short 22 - .byte 0 - .long 17147 - .short 19 - .byte 0 - .long 0 -Ltypes39: - .long 2455 ## global_State - .long 2 ## Num DIEs - .long 15355 - .short 22 - .byte 0 - .long 15366 - .short 19 - .byte 0 - .long 0 -Ltypes38: - .long 2369 ## TValue - .long 1 ## Num DIEs - .long 14831 - .short 22 - .byte 0 - .long 0 -Ltypes10: - .long 2376 ## lua_TValue - .long 1 ## Num DIEs - .long 14842 - .short 19 - .byte 0 - .long 0 -Ltypes25: - .long 3264 ## lua_Hook - .long 1 ## Num DIEs - .long 16708 - .short 22 - .byte 0 - .long 0 -Ltypes13: - .long 3031 ## lua_KFunction - .long 1 ## Num DIEs - .long 16496 - .short 22 - .byte 0 - .long 0 -Ltypes57: - .long 2815 ## ravi_State - .long 1 ## Num DIEs - .long 16091 - .short 22 - .byte 0 - .long 0 -Ltypes58: - .long 2894 ## ravi_Writestring - .long 1 ## Num DIEs - .long 16148 - .short 22 - .byte 0 - .long 0 -Ltypes11: - .long 2122 ## GCUnion - .long 1 ## Num DIEs - .long 14166 - .short 23 - .byte 0 - .long 0 -Ltypes14: - .long 3672 ## Proto - .long 2 ## Num DIEs - .long 17501 - .short 19 - .byte 0 - .long 23002 - .short 22 - .byte 0 - .long 0 -Ltypes26: - .long 3058 ## intptr_t - .long 1 ## Num DIEs - .long 16544 - .short 22 - .byte 0 - .long 0 -Ltypes12: - .long 2150 ## lu_byte - .long 1 ## Num DIEs - .long 14320 - .short 22 - .byte 0 - .long 0 -Ltypes27: - .long 3067 ## __darwin_intptr_t - .long 1 ## Num DIEs - .long 16555 - .short 22 - .byte 0 - .long 0 -Ltypes59: - .long 147 ## __ARRAY_SIZE_TYPE__ - .long 1 ## Num DIEs - .long 13110 - .short 36 - .byte 0 - .long 0 -Ltypes15: - .long 2253 ## long unsigned int - .long 1 ## Num DIEs - .long 14500 - .short 36 - .byte 0 - .long 0 -Ltypes16: - .long 2297 ## uint16_t - .long 1 ## Num DIEs - .long 14624 - .short 22 - .byte 0 - .long 0 -Ltypes60: - .long 4006 ## OpCode - .long 1 ## Num DIEs - .long 18154 - .short 22 - .byte 0 - .long 0 - -.subsections_via_symbols - .section __DWARF,__debug_line,regular,debug -Lsection_line: -Lline_table_start0: diff --git a/vmbuilder/compiler-output/lvm.s b/vmbuilder/compiler-output/lvm.s deleted file mode 100644 index 3b966a7..0000000 --- a/vmbuilder/compiler-output/lvm.s +++ /dev/null @@ -1,15399 +0,0 @@ - -CMakeFiles/libravinojit_static.dir/src/lvm.c.o: file format elf64-x86-64 - - -Disassembly of section .text: - -0000000000000000 : -** check whether cached closure in prototype 'p' may be reused, that is, -** whether there is a cached closure with the same upvalues needed by -** new closure to be created. -*/ -static LClosure *getcached (Proto *p, UpVal **encup, StkId base) { - LClosure *c = p->cache; - 0: 48 8b 47 60 mov rax,QWORD PTR [rdi+0x60] - if (c != NULL) { /* is there a cached closure? */ - 4: 48 85 c0 test rax,rax - 7: 74 5d je 66 - int nup = p->sizeupvalues; - 9: 8b 4f 10 mov ecx,DWORD PTR [rdi+0x10] - Upvaldesc *uv = p->upvalues; - c: 48 8b 7f 58 mov rdi,QWORD PTR [rdi+0x58] - int i; - for (i = 0; i < nup; i++) { /* check whether it has right upvalues */ - 10: 85 c9 test ecx,ecx - 12: 7e 52 jle 66 - 14: 83 e9 01 sub ecx,0x1 - 17: 48 83 c7 11 add rdi,0x11 - 1b: 4c 8d 40 20 lea r8,[rax+0x20] - 1f: 4c 8d 54 c8 28 lea r10,[rax+rcx*8+0x28] - 24: eb 26 jmp 4c - 26: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 2d: 00 00 00 - TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; - if (c->upvals[i]->v != v) - 30: 4d 8b 08 mov r9,QWORD PTR [r8] - TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; - 33: 48 c1 e1 04 shl rcx,0x4 - 37: 48 01 d1 add rcx,rdx - if (c->upvals[i]->v != v) - 3a: 49 39 09 cmp QWORD PTR [r9],rcx - 3d: 75 25 jne 64 - 3f: 49 83 c0 08 add r8,0x8 - 43: 48 83 c7 18 add rdi,0x18 - for (i = 0; i < nup; i++) { /* check whether it has right upvalues */ - 47: 4d 39 d0 cmp r8,r10 - 4a: 74 24 je 70 - TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; - 4c: 80 3f 00 cmp BYTE PTR [rdi],0x0 - 4f: 0f b6 4f 01 movzx ecx,BYTE PTR [rdi+0x1] - 53: 75 db jne 30 - 55: 48 8b 0c ce mov rcx,QWORD PTR [rsi+rcx*8] - if (c->upvals[i]->v != v) - 59: 4d 8b 08 mov r9,QWORD PTR [r8] - TValue *v = uv[i].instack ? base + uv[i].idx : encup[uv[i].idx]->v; - 5c: 48 8b 09 mov rcx,QWORD PTR [rcx] - if (c->upvals[i]->v != v) - 5f: 49 39 09 cmp QWORD PTR [r9],rcx - 62: 74 db je 3f - 64: 31 c0 xor eax,eax - return NULL; /* wrong upvalue; cannot reuse closure */ - } - } - return c; /* return cached closure (or NULL if no cached closure) */ -} - 66: c3 ret - 67: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - 6e: 00 00 - 70: c3 ret - 71: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 78: 00 00 00 00 - 7c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -0000000000000080 : -static int l_strcmp (const TString *ls, const TString *rs) { - 80: 41 55 push r13 - 82: 41 54 push r12 - 84: 55 push rbp - 85: 53 push rbx - const char *l = getstr(ls); - 86: 48 8d 5f 18 lea rbx,[rdi+0x18] -static int l_strcmp (const TString *ls, const TString *rs) { - 8a: 48 83 ec 08 sub rsp,0x8 - size_t ll = tsslen(ls); - 8e: 80 7f 08 04 cmp BYTE PTR [rdi+0x8],0x4 - 92: 74 5c je f0 - size_t lr = tsslen(rs); - 94: 80 7e 08 04 cmp BYTE PTR [rsi+0x8],0x4 - size_t ll = tsslen(ls); - 98: 4c 8b 6f 10 mov r13,QWORD PTR [rdi+0x10] - const char *r = getstr(rs); - 9c: 48 8d 6e 18 lea rbp,[rsi+0x18] - size_t lr = tsslen(rs); - a0: 74 5d je ff - a2: 4c 8b 66 10 mov r12,QWORD PTR [rsi+0x10] - a6: eb 2a jmp d2 - a8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - af: 00 - size_t len = strlen(l); /* index of first '\0' in both strings */ - b0: 48 89 df mov rdi,rbx - b3: e8 00 00 00 00 call b8 - if (len == lr) /* 'rs' is finished? */ - b8: 49 39 c4 cmp r12,rax - bb: 74 53 je 110 - else if (len == ll) /* 'ls' is finished? */ - bd: 49 39 c5 cmp r13,rax - c0: 74 66 je 128 - len++; - c2: 48 83 c0 01 add rax,0x1 - l += len; ll -= len; r += len; lr -= len; - c6: 48 01 c3 add rbx,rax - c9: 49 29 c5 sub r13,rax - cc: 48 01 c5 add rbp,rax - cf: 49 29 c4 sub r12,rax - int temp = strcoll(l, r); - d2: 48 89 ee mov rsi,rbp - d5: 48 89 df mov rdi,rbx - d8: e8 00 00 00 00 call dd - if (temp != 0) /* not equal? */ - dd: 85 c0 test eax,eax - df: 74 cf je b0 -} - e1: 48 83 c4 08 add rsp,0x8 - e5: 5b pop rbx - e6: 5d pop rbp - e7: 41 5c pop r12 - e9: 41 5d pop r13 - eb: c3 ret - ec: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - size_t lr = tsslen(rs); - f0: 80 7e 08 04 cmp BYTE PTR [rsi+0x8],0x4 - size_t ll = tsslen(ls); - f4: 44 0f b6 6f 0b movzx r13d,BYTE PTR [rdi+0xb] - const char *r = getstr(rs); - f9: 48 8d 6e 18 lea rbp,[rsi+0x18] - size_t lr = tsslen(rs); - fd: 75 a3 jne a2 - ff: 44 0f b6 66 0b movzx r12d,BYTE PTR [rsi+0xb] - 104: eb cc jmp d2 - 106: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 10d: 00 00 00 - return (len == ll) ? 0 : 1; /* check 'ls' */ - 110: 31 c0 xor eax,eax - 112: 4d 39 e5 cmp r13,r12 - 115: 0f 95 c0 setne al -} - 118: 48 83 c4 08 add rsp,0x8 - 11c: 5b pop rbx - 11d: 5d pop rbp - 11e: 41 5c pop r12 - 120: 41 5d pop r13 - 122: c3 ret - 123: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 128: 48 83 c4 08 add rsp,0x8 - return -1; /* 'ls' is smaller than 'rs' ('rs' is not finished) */ - 12c: b8 ff ff ff ff mov eax,0xffffffff -} - 131: 5b pop rbx - 132: 5d pop rbp - 133: 41 5c pop r12 - 135: 41 5d pop r13 - 137: c3 ret - 138: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 13f: 00 - -0000000000000140 : -static void copy2buff (StkId top, int n, char *buff) { - 140: 41 56 push r14 - 142: 41 55 push r13 - 144: 49 89 d5 mov r13,rdx - 147: 48 63 d6 movsxd rdx,esi - 14a: 48 89 d0 mov rax,rdx - 14d: 41 54 push r12 - 14f: 48 c1 e0 04 shl rax,0x4 - 153: 55 push rbp - size_t tl = 0; /* size already copied */ - 154: 31 ed xor ebp,ebp -static void copy2buff (StkId top, int n, char *buff) { - 156: 53 push rbx - 157: 48 89 fb mov rbx,rdi - 15a: 48 29 c3 sub rbx,rax - 15d: 8d 46 ff lea eax,[rsi-0x1] - 160: 48 29 d0 sub rax,rdx - 163: 48 c1 e0 04 shl rax,0x4 - 167: 4c 8d 64 07 10 lea r12,[rdi+rax*1+0x10] - 16c: eb 23 jmp 191 - 16e: 66 90 xchg ax,ax - size_t l = vslen(top - n); /* length of string being copied */ - 170: 4c 8b 76 10 mov r14,QWORD PTR [rsi+0x10] - memcpy(buff + tl, svalue(top - n), l * sizeof(char)); - 174: 49 8d 7c 2d 00 lea rdi,[r13+rbp*1+0x0] - -__fortify_function void * -__NTH (memcpy (void *__restrict __dest, const void *__restrict __src, - size_t __len)) -{ - return __builtin___memcpy_chk (__dest, __src, __len, __bos0 (__dest)); - 179: 48 83 c6 18 add rsi,0x18 - 17d: 4c 89 f2 mov rdx,r14 - 180: 48 83 c3 10 add rbx,0x10 - 184: e8 00 00 00 00 call 189 - tl += l; - 189: 4c 01 f5 add rbp,r14 - } while (--n > 0); - 18c: 4c 39 e3 cmp rbx,r12 - 18f: 74 17 je 1a8 - size_t l = vslen(top - n); /* length of string being copied */ - 191: 48 8b 33 mov rsi,QWORD PTR [rbx] - 194: 80 7e 08 04 cmp BYTE PTR [rsi+0x8],0x4 - 198: 75 d6 jne 170 - 19a: 44 0f b6 76 0b movzx r14d,BYTE PTR [rsi+0xb] - 19f: eb d3 jmp 174 - 1a1: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] -} - 1a8: 5b pop rbx - 1a9: 5d pop rbp - 1aa: 41 5c pop r12 - 1ac: 41 5d pop r13 - 1ae: 41 5e pop r14 - 1b0: c3 ret - 1b1: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 1b8: 00 00 00 00 - 1bc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -00000000000001c0 : -** create a new Lua closure, push it in the stack, and initialize -** its upvalues. Note that the closure is not cached if prototype is -** already black (which means that 'cache' was already cleared by the -** GC). -*/ -static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, - 1c0: 41 57 push r15 - 1c2: 41 56 push r14 - 1c4: 4d 89 ce mov r14,r9 - 1c7: 41 55 push r13 - 1c9: 41 54 push r12 - 1cb: 49 89 f4 mov r12,rsi - 1ce: 55 push rbp - 1cf: 48 89 d5 mov rbp,rdx - 1d2: 53 push rbx - 1d3: 48 83 ec 28 sub rsp,0x28 - StkId ra) { - int nup = p->sizeupvalues; - 1d7: 44 8b 7e 10 mov r15d,DWORD PTR [rsi+0x10] - Upvaldesc *uv = p->upvalues; - 1db: 48 8b 5e 58 mov rbx,QWORD PTR [rsi+0x58] -static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, - 1df: 4c 89 44 24 18 mov QWORD PTR [rsp+0x18],r8 - int i; - LClosure *ncl = luaF_newLclosure(L, nup); - 1e4: 44 89 fe mov esi,r15d -static void pushclosure (lua_State *L, Proto *p, UpVal **encup, StkId base, - 1e7: 48 89 7c 24 08 mov QWORD PTR [rsp+0x8],rdi - 1ec: 48 89 4c 24 10 mov QWORD PTR [rsp+0x10],rcx - LClosure *ncl = luaF_newLclosure(L, nup); - 1f1: e8 00 00 00 00 call 1f6 - ncl->p = p; - setclLvalue(L, ra, ncl); /* anchor new closure in stack */ - 1f6: 4c 8b 44 24 18 mov r8,QWORD PTR [rsp+0x18] - ncl->p = p; - 1fb: 4c 89 60 18 mov QWORD PTR [rax+0x18],r12 - LClosure *ncl = luaF_newLclosure(L, nup); - 1ff: 49 89 c5 mov r13,rax - setclLvalue(L, ra, ncl); /* anchor new closure in stack */ - 202: 49 89 00 mov QWORD PTR [r8],rax - 205: b8 06 80 ff ff mov eax,0xffff8006 - 20a: 66 41 89 06 mov WORD PTR [r14],ax - for (i = 0; i < nup; i++) { /* fill in its upvalues */ - 20e: 45 85 ff test r15d,r15d - 211: 7e 5d jle 270 - 213: 41 8d 47 ff lea eax,[r15-0x1] - 217: 4d 8d 75 20 lea r14,[r13+0x20] - 21b: 48 83 c3 12 add rbx,0x12 - 21f: 4d 8d 7c c5 28 lea r15,[r13+rax*8+0x28] - 224: eb 24 jmp 24a - 226: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 22d: 00 00 00 - if (uv[i].instack) /* upvalue refers to local variable? */ - ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx); - else /* get upvalue from enclosing function */ - ncl->upvals[i] = encup[uv[i].idx]; - 230: 48 8b 44 f5 00 mov rax,QWORD PTR [rbp+rsi*8+0x0] - 235: 49 89 06 mov QWORD PTR [r14],rax - ncl->upvals[i]->refcount++; - 238: 49 83 c6 08 add r14,0x8 - 23c: 48 83 40 08 01 add QWORD PTR [rax+0x8],0x1 - 241: 48 83 c3 18 add rbx,0x18 - for (i = 0; i < nup; i++) { /* fill in its upvalues */ - 245: 4d 39 fe cmp r14,r15 - 248: 74 26 je 270 - if (uv[i].instack) /* upvalue refers to local variable? */ - 24a: 80 7b ff 00 cmp BYTE PTR [rbx-0x1],0x0 - 24e: 0f b6 33 movzx esi,BYTE PTR [rbx] - 251: 74 dd je 230 - ncl->upvals[i] = luaF_findupval(L, base + uv[i].idx); - 253: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 258: 48 c1 e6 04 shl rsi,0x4 - 25c: 48 03 74 24 10 add rsi,QWORD PTR [rsp+0x10] - 261: e8 00 00 00 00 call 266 - 266: 49 89 06 mov QWORD PTR [r14],rax - 269: eb cd jmp 238 - 26b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - /* new closure is white, so we do not need a barrier here */ - } - if (!isblack(p)) /* cache will not break GC invariant? */ - 270: 41 f6 44 24 09 04 test BYTE PTR [r12+0x9],0x4 - 276: 75 05 jne 27d - p->cache = ncl; /* save it on cache for reuse */ - 278: 4d 89 6c 24 60 mov QWORD PTR [r12+0x60],r13 -} - 27d: 48 83 c4 28 add rsp,0x28 - 281: 5b pop rbx - 282: 5d pop rbp - 283: 41 5c pop r12 - 285: 41 5d pop r13 - 287: 41 5e pop r14 - 289: 41 5f pop r15 - 28b: c3 ret - 28c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -0000000000000290 : - lua_Number n = fltvalue(obj); - 290: f2 0f 10 0f movsd xmm1,QWORD PTR [rdi] - lua_Number f = l_floor(n); - 294: f2 0f 10 1d 00 00 00 movsd xmm3,QWORD PTR [rip+0x0] # 29c - 29b: 00 - 29c: f2 0f 10 25 00 00 00 movsd xmm4,QWORD PTR [rip+0x0] # 2a4 - 2a3: 00 - 2a4: 66 0f 28 d1 movapd xmm2,xmm1 - 2a8: 66 0f 28 c1 movapd xmm0,xmm1 - 2ac: 66 0f 54 d3 andpd xmm2,xmm3 - 2b0: 66 0f 2e e2 ucomisd xmm4,xmm2 - 2b4: 76 33 jbe 2e9 - 2b6: f2 48 0f 2c c1 cvttsd2si rax,xmm1 - 2bb: 66 0f ef d2 pxor xmm2,xmm2 - 2bf: f2 0f 10 25 00 00 00 movsd xmm4,QWORD PTR [rip+0x0] # 2c7 - 2c6: 00 - 2c7: 66 0f 55 d9 andnpd xmm3,xmm1 - 2cb: f2 48 0f 2a d0 cvtsi2sd xmm2,rax - 2d0: 66 0f 28 c2 movapd xmm0,xmm2 - 2d4: f2 0f c2 c1 06 cmpnlesd xmm0,xmm1 - 2d9: 66 0f 54 c4 andpd xmm0,xmm4 - 2dd: f2 0f 5c d0 subsd xmm2,xmm0 - 2e1: 66 0f 28 c2 movapd xmm0,xmm2 - 2e5: 66 0f 56 c3 orpd xmm0,xmm3 - if (n != f) { /* not an integral value? */ - 2e9: 66 0f 2e c8 ucomisd xmm1,xmm0 - 2ed: 7a 02 jp 2f1 - 2ef: 74 1c je 30d - if (mode == 0) return 0; /* fails if mode demands integral value */ - 2f1: 31 c0 xor eax,eax - 2f3: 85 d2 test edx,edx - 2f5: 75 09 jne 300 -} - 2f7: c3 ret - 2f8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 2ff: 00 - else if (mode > 1) /* needs ceil? */ - 300: 83 fa 01 cmp edx,0x1 - 303: 7e 08 jle 30d - f += 1; /* convert floor to ceil (remember: n != f) */ - 305: f2 0f 58 05 00 00 00 addsd xmm0,QWORD PTR [rip+0x0] # 30d - 30c: 00 - return lua_numbertointeger(f, p); - 30d: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 315 - 314: 00 - 315: 72 21 jb 338 - 317: f2 0f 10 0d 00 00 00 movsd xmm1,QWORD PTR [rip+0x0] # 31f - 31e: 00 - 31f: 66 0f 2f c8 comisd xmm1,xmm0 - 323: 76 1b jbe 340 - 325: f2 48 0f 2c c0 cvttsd2si rax,xmm0 - 32a: 48 89 06 mov QWORD PTR [rsi],rax - 32d: b8 01 00 00 00 mov eax,0x1 - 332: c3 ret - 333: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (mode == 0) return 0; /* fails if mode demands integral value */ - 338: 31 c0 xor eax,eax - 33a: c3 ret - 33b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 340: 31 c0 xor eax,eax -} - 342: c3 ret - 343: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 34a: 00 00 00 00 - 34e: 66 90 xchg ax,ax - -0000000000000350 : - if (ttisinteger(l)) { - 350: 66 83 fe 13 cmp si,0x13 - 354: 74 72 je 3c8 - lua_Number lf = fltvalue(l); /* 'l' must be float */ - 356: 48 89 7c 24 f8 mov QWORD PTR [rsp-0x8],rdi - 35b: f2 0f 10 44 24 f8 movsd xmm0,QWORD PTR [rsp-0x8] - if (ttisfloat(r)) - 361: 66 83 f9 03 cmp cx,0x3 - 365: 0f 84 ed 00 00 00 je 458 - else if (luai_numisnan(lf)) /* 'r' is int and 'l' is float */ - 36b: 66 0f 2e c0 ucomisd xmm0,xmm0 - 36f: 7a 4f jp 3c0 - 371: 75 4d jne 3c0 - if (!l_intfitsf(i)) { - 373: 48 b8 00 00 00 00 00 movabs rax,0x20000000000000 - 37a: 00 20 00 - 37d: 48 b9 00 00 00 00 00 movabs rcx,0x40000000000000 - 384: 00 40 00 - 387: 48 01 d0 add rax,rdx - 38a: 48 39 c8 cmp rax,rcx - 38d: 0f 86 95 00 00 00 jbe 428 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 393: 31 c0 xor eax,eax - 395: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 39d - 39c: 00 - 39d: 73 23 jae 3c2 - else if (f > cast_num(LUA_MININTEGER)) /* minint < f <= maxint ? */ - 39f: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 3a7 - 3a6: 00 - 3a7: 0f 86 d3 00 00 00 jbe 480 - return (i < cast(lua_Integer, f)); /* compare them as integers */ - 3ad: f2 48 0f 2c c0 cvttsd2si rax,xmm0 - 3b2: 48 39 c2 cmp rdx,rax - 3b5: 0f 9d c0 setge al - 3b8: 0f b6 c0 movzx eax,al - 3bb: c3 ret - 3bc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - return 0; - 3c0: 31 c0 xor eax,eax -} - 3c2: c3 ret - 3c3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (ttisinteger(r)) - 3c8: 66 83 f9 13 cmp cx,0x13 - 3cc: 0f 84 9e 00 00 00 je 470 - if (!l_intfitsf(i)) { - 3d2: 48 b8 00 00 00 00 00 movabs rax,0x20000000000000 - 3d9: 00 20 00 - return LEintfloat(li, fltvalue(r)); /* l <= r ? */ - 3dc: 48 89 54 24 f8 mov QWORD PTR [rsp-0x8],rdx - if (!l_intfitsf(i)) { - 3e1: 48 ba 00 00 00 00 00 movabs rdx,0x40000000000000 - 3e8: 00 40 00 - return LEintfloat(li, fltvalue(r)); /* l <= r ? */ - 3eb: f2 0f 10 4c 24 f8 movsd xmm1,QWORD PTR [rsp-0x8] - if (!l_intfitsf(i)) { - 3f1: 48 01 f8 add rax,rdi - 3f4: 48 39 d0 cmp rax,rdx - 3f7: 76 47 jbe 440 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 3f9: 66 0f 2f 0d 00 00 00 comisd xmm1,QWORD PTR [rip+0x0] # 401 - 400: 00 - return 1; /* f >= maxint + 1 > i */ - 401: b8 01 00 00 00 mov eax,0x1 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 406: 73 ba jae 3c2 - else if (f >= cast_num(LUA_MININTEGER)) /* minint <= f <= maxint ? */ - 408: 66 0f 2f 0d 00 00 00 comisd xmm1,QWORD PTR [rip+0x0] # 410 - 40f: 00 - 410: 72 7e jb 490 - return (i <= cast(lua_Integer, f)); /* compare them as integers */ - 412: f2 48 0f 2c c1 cvttsd2si rax,xmm1 - 417: 48 39 c7 cmp rdi,rax - 41a: 0f 9e c0 setle al - 41d: 0f b6 c0 movzx eax,al - 420: c3 ret - 421: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - return luai_numlt(cast_num(i), f); /* compare them as floats */ - 428: 66 0f ef c9 pxor xmm1,xmm1 - 42c: 31 c0 xor eax,eax - 42e: f2 48 0f 2a ca cvtsi2sd xmm1,rdx - 433: 66 0f 2f c1 comisd xmm0,xmm1 - 437: 0f 96 c0 setbe al - 43a: c3 ret - 43b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luai_numle(cast_num(i), f); /* compare them as floats */ - 440: 66 0f ef c0 pxor xmm0,xmm0 - 444: 31 c0 xor eax,eax - 446: f2 48 0f 2a c7 cvtsi2sd xmm0,rdi - 44b: 66 0f 2f c8 comisd xmm1,xmm0 - 44f: 0f 93 c0 setae al - 452: c3 ret - 453: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luai_numle(lf, fltvalue(r)); /* both are float */ - 458: 48 89 54 24 f8 mov QWORD PTR [rsp-0x8],rdx - 45d: f2 0f 10 4c 24 f8 movsd xmm1,QWORD PTR [rsp-0x8] - 463: 31 c0 xor eax,eax - 465: 66 0f 2f c8 comisd xmm1,xmm0 - 469: 0f 93 c0 setae al - 46c: c3 ret - 46d: 0f 1f 00 nop DWORD PTR [rax] - return li <= ivalue(r); /* both are integers */ - 470: 31 c0 xor eax,eax - 472: 48 39 d7 cmp rdi,rdx - 475: 0f 9e c0 setle al - 478: c3 ret - 479: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - else if (f > cast_num(LUA_MININTEGER)) /* minint < f <= maxint ? */ - 480: b8 01 00 00 00 mov eax,0x1 - 485: c3 ret - 486: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 48d: 00 00 00 - return 0; - 490: 31 c0 xor eax,eax - 492: c3 ret - 493: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 49a: 00 00 00 00 - 49e: 66 90 xchg ax,ax - -00000000000004a0 : - if (ttisinteger(l)) { - 4a0: 66 83 fe 13 cmp si,0x13 - 4a4: 74 72 je 518 - lua_Number lf = fltvalue(l); /* 'l' must be float */ - 4a6: 48 89 7c 24 f8 mov QWORD PTR [rsp-0x8],rdi - 4ab: f2 0f 10 44 24 f8 movsd xmm0,QWORD PTR [rsp-0x8] - if (ttisfloat(r)) - 4b1: 66 83 f9 03 cmp cx,0x3 - 4b5: 0f 84 ed 00 00 00 je 5a8 - else if (luai_numisnan(lf)) /* 'r' is int and 'l' is float */ - 4bb: 66 0f 2e c0 ucomisd xmm0,xmm0 - 4bf: 7a 4f jp 510 - 4c1: 75 4d jne 510 - if (!l_intfitsf(i)) { - 4c3: 48 b8 00 00 00 00 00 movabs rax,0x20000000000000 - 4ca: 00 20 00 - 4cd: 48 b9 00 00 00 00 00 movabs rcx,0x40000000000000 - 4d4: 00 40 00 - 4d7: 48 01 d0 add rax,rdx - 4da: 48 39 c8 cmp rax,rcx - 4dd: 0f 86 95 00 00 00 jbe 578 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 4e3: 31 c0 xor eax,eax - 4e5: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 4ed - 4ec: 00 - 4ed: 73 23 jae 512 - else if (f >= cast_num(LUA_MININTEGER)) /* minint <= f <= maxint ? */ - 4ef: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 4f7 - 4f6: 00 - 4f7: 0f 82 d3 00 00 00 jb 5d0 - return (i <= cast(lua_Integer, f)); /* compare them as integers */ - 4fd: f2 48 0f 2c c0 cvttsd2si rax,xmm0 - 502: 48 39 c2 cmp rdx,rax - 505: 0f 9f c0 setg al - 508: 0f b6 c0 movzx eax,al - 50b: c3 ret - 50c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - return 0; - 510: 31 c0 xor eax,eax -} - 512: c3 ret - 513: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (ttisinteger(r)) - 518: 66 83 f9 13 cmp cx,0x13 - 51c: 0f 84 9e 00 00 00 je 5c0 - if (!l_intfitsf(i)) { - 522: 48 b8 00 00 00 00 00 movabs rax,0x20000000000000 - 529: 00 20 00 - return LTintfloat(li, fltvalue(r)); /* l < r ? */ - 52c: 48 89 54 24 f8 mov QWORD PTR [rsp-0x8],rdx - if (!l_intfitsf(i)) { - 531: 48 ba 00 00 00 00 00 movabs rdx,0x40000000000000 - 538: 00 40 00 - return LTintfloat(li, fltvalue(r)); /* l < r ? */ - 53b: f2 0f 10 4c 24 f8 movsd xmm1,QWORD PTR [rsp-0x8] - if (!l_intfitsf(i)) { - 541: 48 01 f8 add rax,rdi - 544: 48 39 d0 cmp rax,rdx - 547: 76 47 jbe 590 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 549: 66 0f 2f 0d 00 00 00 comisd xmm1,QWORD PTR [rip+0x0] # 551 - 550: 00 - return 1; /* f >= maxint + 1 > i */ - 551: b8 01 00 00 00 mov eax,0x1 - if (f >= -cast_num(LUA_MININTEGER)) /* -minint == maxint + 1 */ - 556: 73 ba jae 512 - else if (f > cast_num(LUA_MININTEGER)) /* minint < f <= maxint ? */ - 558: 66 0f 2f 0d 00 00 00 comisd xmm1,QWORD PTR [rip+0x0] # 560 - 55f: 00 - 560: 76 7e jbe 5e0 - return (i < cast(lua_Integer, f)); /* compare them as integers */ - 562: f2 48 0f 2c c1 cvttsd2si rax,xmm1 - 567: 48 39 c7 cmp rdi,rax - 56a: 0f 9c c0 setl al - 56d: 0f b6 c0 movzx eax,al - 570: c3 ret - 571: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - return luai_numle(cast_num(i), f); /* compare them as floats */ - 578: 66 0f ef c9 pxor xmm1,xmm1 - 57c: 31 c0 xor eax,eax - 57e: f2 48 0f 2a ca cvtsi2sd xmm1,rdx - 583: 66 0f 2f c1 comisd xmm0,xmm1 - 587: 0f 92 c0 setb al - 58a: c3 ret - 58b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luai_numlt(cast_num(i), f); /* compare them as floats */ - 590: 66 0f ef c0 pxor xmm0,xmm0 - 594: 31 c0 xor eax,eax - 596: f2 48 0f 2a c7 cvtsi2sd xmm0,rdi - 59b: 66 0f 2f c8 comisd xmm1,xmm0 - 59f: 0f 97 c0 seta al - 5a2: c3 ret - 5a3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luai_numlt(lf, fltvalue(r)); /* both are float */ - 5a8: 48 89 54 24 f8 mov QWORD PTR [rsp-0x8],rdx - 5ad: f2 0f 10 4c 24 f8 movsd xmm1,QWORD PTR [rsp-0x8] - 5b3: 31 c0 xor eax,eax - 5b5: 66 0f 2f c8 comisd xmm1,xmm0 - 5b9: 0f 97 c0 seta al - 5bc: c3 ret - 5bd: 0f 1f 00 nop DWORD PTR [rax] - return li < ivalue(r); /* both are integers */ - 5c0: 31 c0 xor eax,eax - 5c2: 48 39 d7 cmp rdi,rdx - 5c5: 0f 9c c0 setl al - 5c8: c3 ret - 5c9: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - else if (f >= cast_num(LUA_MININTEGER)) /* minint <= f <= maxint ? */ - 5d0: b8 01 00 00 00 mov eax,0x1 - 5d5: c3 ret - 5d6: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 5dd: 00 00 00 - return 0; - 5e0: 31 c0 xor eax,eax - 5e2: c3 ret - 5e3: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 5ea: 00 00 00 00 - 5ee: 66 90 xchg ax,ax - -00000000000005f0 : -int luaV_tonumber_ (const TValue *obj, lua_Number *n) { - 5f0: 55 push rbp - 5f1: 48 89 f5 mov rbp,rsi - 5f4: 53 push rbx - 5f5: 48 89 fb mov rbx,rdi - 5f8: 48 83 ec 38 sub rsp,0x38 - 5fc: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 603: 00 00 - 605: 48 89 44 24 28 mov QWORD PTR [rsp+0x28],rax - 60a: 31 c0 xor eax,eax - if (ttisinteger(obj)) { - 60c: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 610: 66 83 f8 13 cmp ax,0x13 - 614: 0f 84 7e 00 00 00 je 698 - else if (cvt2num(obj) && /* string coercible to number? */ - 61a: 83 e0 0f and eax,0xf - 61d: 66 83 f8 04 cmp ax,0x4 - 621: 74 1d je 640 - return 0; /* conversion failed */ - 623: 31 c0 xor eax,eax -} - 625: 48 8b 4c 24 28 mov rcx,QWORD PTR [rsp+0x28] - 62a: 64 48 33 0c 25 28 00 xor rcx,QWORD PTR fs:0x28 - 631: 00 00 - 633: 0f 85 81 00 00 00 jne 6ba - 639: 48 83 c4 38 add rsp,0x38 - 63d: 5b pop rbx - 63e: 5d pop rbp - 63f: c3 ret - luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) { - 640: 48 8b 07 mov rax,QWORD PTR [rdi] - 643: 48 8d 74 24 10 lea rsi,[rsp+0x10] - 648: 48 8d 78 18 lea rdi,[rax+0x18] - 64c: e8 00 00 00 00 call 651 - 651: 48 8b 13 mov rdx,QWORD PTR [rbx] - 654: 80 7a 08 04 cmp BYTE PTR [rdx+0x8],0x4 - 658: 74 56 je 6b0 - 65a: 48 8b 52 10 mov rdx,QWORD PTR [rdx+0x10] - 65e: 48 83 c2 01 add rdx,0x1 - else if (cvt2num(obj) && /* string coercible to number? */ - 662: 48 39 d0 cmp rax,rdx - 665: 75 bc jne 623 - *n = nvalue(&v); /* convert result of 'luaO_str2num' to a float */ - 667: 66 83 7c 24 18 13 cmp WORD PTR [rsp+0x18],0x13 - 66d: f2 0f 10 44 24 10 movsd xmm0,QWORD PTR [rsp+0x10] - 673: 75 11 jne 686 - 675: 66 0f d6 44 24 08 movq QWORD PTR [rsp+0x8],xmm0 - 67b: 66 0f ef c0 pxor xmm0,xmm0 - 67f: f2 48 0f 2a 44 24 08 cvtsi2sd xmm0,QWORD PTR [rsp+0x8] - 686: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - return 1; - 68b: b8 01 00 00 00 mov eax,0x1 - 690: eb 93 jmp 625 - 692: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - *n = cast_num(ivalue(obj)); - 698: 66 0f ef c0 pxor xmm0,xmm0 - return 1; - 69c: b8 01 00 00 00 mov eax,0x1 - *n = cast_num(ivalue(obj)); - 6a1: f2 48 0f 2a 07 cvtsi2sd xmm0,QWORD PTR [rdi] - 6a6: f2 0f 11 06 movsd QWORD PTR [rsi],xmm0 - return 1; - 6aa: e9 76 ff ff ff jmp 625 - 6af: 90 nop - luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) { - 6b0: 0f b6 52 0b movzx edx,BYTE PTR [rdx+0xb] - 6b4: 48 83 c2 01 add rdx,0x1 - 6b8: eb a8 jmp 662 -} - 6ba: e8 00 00 00 00 call 6bf - 6bf: 90 nop - -00000000000006c0 : - if (!ttisfloat(obj)) - 6c0: 66 83 7f 08 03 cmp WORD PTR [rdi+0x8],0x3 - 6c5: 75 09 jne 6d0 - 6c7: e9 c4 fb ff ff jmp 290 - 6cc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] -} - 6d0: 31 c0 xor eax,eax - 6d2: c3 ret - 6d3: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 6da: 00 00 00 00 - 6de: 66 90 xchg ax,ax - -00000000000006e0 : -int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode) { - 6e0: 55 push rbp - 6e1: 48 89 f5 mov rbp,rsi - 6e4: 53 push rbx - 6e5: 48 89 fb mov rbx,rdi - 6e8: 48 83 ec 38 sub rsp,0x38 - if (cvt2num(obj) && luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) - 6ec: 0f b7 4f 08 movzx ecx,WORD PTR [rdi+0x8] -int luaV_tointeger (const TValue *obj, lua_Integer *p, int mode) { - 6f0: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 6f7: 00 00 - 6f9: 48 89 44 24 28 mov QWORD PTR [rsp+0x28],rax - 6fe: 31 c0 xor eax,eax - if (cvt2num(obj) && luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) - 700: 89 c8 mov eax,ecx - 702: 83 e0 0f and eax,0xf - 705: 66 83 f8 04 cmp ax,0x4 - 709: 74 45 je 750 - if (ttisinteger(obj)) { - 70b: 66 83 f9 13 cmp cx,0x13 - 70f: 74 2f je 740 - return 0; - 711: 31 c0 xor eax,eax - if (!ttisfloat(obj)) - 713: 66 83 f9 03 cmp cx,0x3 - 717: 74 17 je 730 -} - 719: 48 8b 74 24 28 mov rsi,QWORD PTR [rsp+0x28] - 71e: 64 48 33 34 25 28 00 xor rsi,QWORD PTR fs:0x28 - 725: 00 00 - 727: 75 7e jne 7a7 - 729: 48 83 c4 38 add rsp,0x38 - 72d: 5b pop rbx - 72e: 5d pop rbp - 72f: c3 ret - 730: 48 89 ee mov rsi,rbp - 733: 48 89 df mov rdi,rbx - 736: e8 55 fb ff ff call 290 - 73b: eb dc jmp 719 - 73d: 0f 1f 00 nop DWORD PTR [rax] - *p = ivalue(obj); - 740: 48 8b 03 mov rax,QWORD PTR [rbx] - 743: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - return 1; - 747: b8 01 00 00 00 mov eax,0x1 - 74c: eb cb jmp 719 - 74e: 66 90 xchg ax,ax - if (cvt2num(obj) && luaO_str2num(svalue(obj), &v) == vslen(obj) + 1) - 750: 48 8b 07 mov rax,QWORD PTR [rdi] - 753: 48 8d 74 24 10 lea rsi,[rsp+0x10] - 758: 89 54 24 0c mov DWORD PTR [rsp+0xc],edx - 75c: 48 8d 78 18 lea rdi,[rax+0x18] - 760: e8 00 00 00 00 call 765 - 765: 48 8b 0b mov rcx,QWORD PTR [rbx] - 768: 8b 54 24 0c mov edx,DWORD PTR [rsp+0xc] - 76c: 80 79 08 04 cmp BYTE PTR [rcx+0x8],0x4 - 770: 74 16 je 788 - 772: 48 8b 49 10 mov rcx,QWORD PTR [rcx+0x10] - 776: 48 83 c1 01 add rcx,0x1 - 77a: 48 39 c8 cmp rax,rcx - 77d: 74 19 je 798 - 77f: 0f b7 4b 08 movzx ecx,WORD PTR [rbx+0x8] - 783: eb 86 jmp 70b - 785: 0f 1f 00 nop DWORD PTR [rax] - 788: 0f b6 49 0b movzx ecx,BYTE PTR [rcx+0xb] - 78c: 48 83 c1 01 add rcx,0x1 - 790: eb e8 jmp 77a - 792: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - obj = &v; /* change string to its corresponding number */ - 798: 0f b7 4c 24 18 movzx ecx,WORD PTR [rsp+0x18] - 79d: 48 8d 5c 24 10 lea rbx,[rsp+0x10] - 7a2: e9 64 ff ff ff jmp 70b -} - 7a7: e8 00 00 00 00 call 7ac - 7ac: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -00000000000007b0 : - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 7b0: 31 d2 xor edx,edx - 7b2: e9 29 ff ff ff jmp 6e0 - 7b7: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - 7be: 00 00 - -00000000000007c0 : - int *stopnow) { - 7c0: 41 55 push r13 - 7c2: 41 54 push r12 - 7c4: 55 push rbp - 7c5: 48 89 f5 mov rbp,rsi - 7c8: 53 push rbx - 7c9: 48 89 fb mov rbx,rdi - 7cc: 48 83 ec 18 sub rsp,0x18 - 7d0: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 7d7: 00 00 - 7d9: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - 7de: 31 c0 xor eax,eax - if (ttisinteger(obj)) - 7e0: 66 83 7f 08 13 cmp WORD PTR [rdi+0x8],0x13 - *stopnow = 0; /* usually, let loops run */ - 7e5: c7 01 00 00 00 00 mov DWORD PTR [rcx],0x0 - if (ttisinteger(obj)) - 7eb: 74 6b je 858 - 7ed: 49 89 d5 mov r13,rdx - else if (!luaV_tointeger(obj, p, (step < 0 ? 2 : 1))) { - 7f0: 48 c1 ea 3f shr rdx,0x3f - 7f4: 49 89 cc mov r12,rcx - 7f7: 83 c2 01 add edx,0x1 - 7fa: e8 00 00 00 00 call 7ff - return 1; - 7ff: ba 01 00 00 00 mov edx,0x1 - else if (!luaV_tointeger(obj, p, (step < 0 ? 2 : 1))) { - 804: 85 c0 test eax,eax - 806: 75 2d jne 835 - if (!tonumber(obj, &n)) /* cannot convert to float? */ - 808: 66 83 7b 08 03 cmp WORD PTR [rbx+0x8],0x3 - 80d: 75 79 jne 888 - 80f: f2 0f 10 03 movsd xmm0,QWORD PTR [rbx] - if (luai_numlt(0, n)) { /* if true, float is larger than max integer */ - 813: 66 0f 2f 05 00 00 00 comisd xmm0,QWORD PTR [rip+0x0] # 81b - 81a: 00 - 81b: 76 4b jbe 868 - *p = LUA_MAXINTEGER; - 81d: 48 b8 ff ff ff ff ff movabs rax,0x7fffffffffffffff - 824: ff ff 7f - 827: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - if (step < 0) *stopnow = 1; - 82b: 4d 85 ed test r13,r13 - 82e: 78 4b js 87b - return 1; - 830: ba 01 00 00 00 mov edx,0x1 -} - 835: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 83a: 64 48 33 0c 25 28 00 xor rcx,QWORD PTR fs:0x28 - 841: 00 00 - 843: 89 d0 mov eax,edx - 845: 75 5c jne 8a3 - 847: 48 83 c4 18 add rsp,0x18 - 84b: 5b pop rbx - 84c: 5d pop rbp - 84d: 41 5c pop r12 - 84f: 41 5d pop r13 - 851: c3 ret - 852: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - *p = ivalue(obj); - 858: 48 8b 07 mov rax,QWORD PTR [rdi] - return 1; - 85b: ba 01 00 00 00 mov edx,0x1 - *p = ivalue(obj); - 860: 48 89 06 mov QWORD PTR [rsi],rax - 863: eb d0 jmp 835 - 865: 0f 1f 00 nop DWORD PTR [rax] - *p = LUA_MININTEGER; - 868: 48 b8 00 00 00 00 00 movabs rax,0x8000000000000000 - 86f: 00 00 80 - 872: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - if (step >= 0) *stopnow = 1; - 876: 4d 85 ed test r13,r13 - 879: 78 b5 js 830 - if (step < 0) *stopnow = 1; - 87b: 41 c7 04 24 01 00 00 mov DWORD PTR [r12],0x1 - 882: 00 - 883: eb ab jmp 830 - 885: 0f 1f 00 nop DWORD PTR [rax] - if (!tonumber(obj, &n)) /* cannot convert to float? */ - 888: 48 89 e6 mov rsi,rsp - 88b: 48 89 df mov rdi,rbx - 88e: e8 00 00 00 00 call 893 - 893: 89 c2 mov edx,eax - 895: 85 c0 test eax,eax - 897: 74 9c je 835 - 899: f2 0f 10 04 24 movsd xmm0,QWORD PTR [rsp] - 89e: e9 70 ff ff ff jmp 813 -} - 8a3: e8 00 00 00 00 call 8a8 - 8a8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 8af: 00 - -00000000000008b0 : - const TValue *slot) { - 8b0: 41 57 push r15 - 8b2: 4c 89 c0 mov rax,r8 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - 8b5: 45 31 ff xor r15d,r15d - const TValue *slot) { - 8b8: 41 56 push r14 - 8ba: 49 89 f6 mov r14,rsi - 8bd: 41 55 push r13 - 8bf: 49 89 cd mov r13,rcx - 8c2: 41 54 push r12 - 8c4: 49 89 d4 mov r12,rdx - 8c7: 55 push rbp - 8c8: 48 89 fd mov rbp,rdi - 8cb: 53 push rbx - 8cc: 48 83 ec 08 sub rsp,0x8 - if (slot == NULL) { /* 't' is not a table? */ - 8d0: 48 85 c0 test rax,rax - 8d3: 0f 84 07 01 00 00 je 9e0 - tm = fasttm(L, hvalue(t)->metatable, TM_INDEX); /* table's metamethod */ - 8d9: 49 8b 06 mov rax,QWORD PTR [r14] - 8dc: 48 8b 78 28 mov rdi,QWORD PTR [rax+0x28] - 8e0: 48 85 ff test rdi,rdi - 8e3: 0f 84 df 00 00 00 je 9c8 - 8e9: f6 47 0a 01 test BYTE PTR [rdi+0xa],0x1 - 8ed: 0f 85 d5 00 00 00 jne 9c8 - 8f3: 48 8b 45 18 mov rax,QWORD PTR [rbp+0x18] - 8f7: 31 f6 xor esi,esi - 8f9: 48 8b 90 e0 00 00 00 mov rdx,QWORD PTR [rax+0xe0] - 900: e8 00 00 00 00 call 905 - 905: 48 89 c3 mov rbx,rax - if (tm == NULL) { /* no metamethod? */ - 908: 48 85 c0 test rax,rax - 90b: 0f 84 b7 00 00 00 je 9c8 - 911: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - if (ttisfunction(tm)) { /* is metamethod a function? */ - 915: 83 e0 0f and eax,0xf - 918: 66 83 f8 06 cmp ax,0x6 - 91c: 74 3f je 95d - if (luaV_fastget(L,t,key,slot,luaH_get)) { /* fast track? */ - 91e: 66 83 f8 05 cmp ax,0x5 - 922: 74 64 je 988 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - 924: 41 83 c7 01 add r15d,0x1 - 928: 41 81 ff d0 07 00 00 cmp r15d,0x7d0 - 92f: 74 7f je 9b0 - tm = luaT_gettmbyobj(L, t, TM_INDEX); - 931: 31 d2 xor edx,edx - 933: 48 89 de mov rsi,rbx - 936: 48 89 ef mov rdi,rbp - 939: e8 00 00 00 00 call 93e - 93e: 48 89 c2 mov rdx,rax - if (ttisnil(tm)) - 941: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 945: 66 85 c0 test ax,ax - 948: 0f 84 a8 00 00 00 je 9f6 - 94e: 83 e0 0f and eax,0xf - 951: 49 89 de mov r14,rbx - 954: 48 89 d3 mov rbx,rdx - if (ttisfunction(tm)) { /* is metamethod a function? */ - 957: 66 83 f8 06 cmp ax,0x6 - 95b: 75 c1 jne 91e -} - 95d: 48 83 c4 08 add rsp,0x8 - luaT_callTM(L, tm, t, key, val, 1); /* call it */ - 961: 4d 89 e8 mov r8,r13 - 964: 4c 89 e1 mov rcx,r12 - 967: 4c 89 f2 mov rdx,r14 - 96a: 48 89 de mov rsi,rbx - 96d: 48 89 ef mov rdi,rbp -} - 970: 5b pop rbx - luaT_callTM(L, tm, t, key, val, 1); /* call it */ - 971: 41 b9 01 00 00 00 mov r9d,0x1 -} - 977: 5d pop rbp - 978: 41 5c pop r12 - 97a: 41 5d pop r13 - 97c: 41 5e pop r14 - 97e: 41 5f pop r15 - luaT_callTM(L, tm, t, key, val, 1); /* call it */ - 980: e9 00 00 00 00 jmp 985 - 985: 0f 1f 00 nop DWORD PTR [rax] - if (luaV_fastget(L,t,key,slot,luaH_get)) { /* fast track? */ - 988: 48 8b 3b mov rdi,QWORD PTR [rbx] - 98b: 4c 89 e6 mov rsi,r12 - 98e: e8 00 00 00 00 call 993 - 993: 0f b7 50 08 movzx edx,WORD PTR [rax+0x8] - 997: 66 85 d2 test dx,dx - 99a: 75 4c jne 9e8 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - 99c: 41 83 c7 01 add r15d,0x1 - 9a0: 49 89 de mov r14,rbx - 9a3: 41 81 ff d0 07 00 00 cmp r15d,0x7d0 - 9aa: 0f 85 20 ff ff ff jne 8d0 - luaG_runerror(L, "'__index' chain too long; possible loop"); - 9b0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9b7 - 9b7: 48 89 ef mov rdi,rbp - 9ba: 31 c0 xor eax,eax - 9bc: e8 00 00 00 00 call 9c1 - 9c1: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - setnilvalue(val); /* result is nil */ - 9c8: 31 c0 xor eax,eax - 9ca: 66 41 89 45 08 mov WORD PTR [r13+0x8],ax -} - 9cf: 48 83 c4 08 add rsp,0x8 - 9d3: 5b pop rbx - 9d4: 5d pop rbp - 9d5: 41 5c pop r12 - 9d7: 41 5d pop r13 - 9d9: 41 5e pop r14 - 9db: 41 5f pop r15 - 9dd: c3 ret - 9de: 66 90 xchg ax,ax - 9e0: 4c 89 f3 mov rbx,r14 - 9e3: e9 49 ff ff ff jmp 931 - setobj2s(L, val, slot); /* done */ - 9e8: 48 8b 00 mov rax,QWORD PTR [rax] - 9eb: 66 41 89 55 08 mov WORD PTR [r13+0x8],dx - 9f0: 49 89 45 00 mov QWORD PTR [r13+0x0],rax - return; - 9f4: eb d9 jmp 9cf - luaG_typeerror(L, t, "index"); /* no metamethod */ - 9f6: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9fd - 9fd: 48 89 de mov rsi,rbx - a00: 48 89 ef mov rdi,rbp - a03: e8 00 00 00 00 call a08 - a08: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a0f: 00 - -0000000000000a10 : - StkId val, const TValue *slot) { - a10: 41 57 push r15 - a12: 4d 89 c7 mov r15,r8 - a15: 41 56 push r14 - a17: 41 55 push r13 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - a19: 45 31 ed xor r13d,r13d - StkId val, const TValue *slot) { - a1c: 41 54 push r12 - a1e: 55 push rbp - a1f: 48 89 fd mov rbp,rdi - a22: 53 push rbx - a23: 48 89 f3 mov rbx,rsi - a26: 48 83 ec 18 sub rsp,0x18 - a2a: 48 89 14 24 mov QWORD PTR [rsp],rdx - a2e: 48 89 4c 24 08 mov QWORD PTR [rsp+0x8],rcx - if (slot != NULL) { /* is 't' a table? */ - a33: 4d 85 ff test r15,r15 - a36: 0f 84 84 01 00 00 je bc0 - Table *h = hvalue(t); /* save 't' table */ - a3c: 4c 8b 23 mov r12,QWORD PTR [rbx] - tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */ - a3f: 49 8b 7c 24 28 mov rdi,QWORD PTR [r12+0x28] - a44: 48 85 ff test rdi,rdi - a47: 0f 84 f3 00 00 00 je b40 - a4d: f6 47 0a 02 test BYTE PTR [rdi+0xa],0x2 - a51: 0f 85 e9 00 00 00 jne b40 - a57: 48 8b 45 18 mov rax,QWORD PTR [rbp+0x18] - a5b: be 01 00 00 00 mov esi,0x1 - a60: 48 8b 90 e8 00 00 00 mov rdx,QWORD PTR [rax+0xe8] - a67: e8 00 00 00 00 call a6c - a6c: 49 89 c6 mov r14,rax - if (tm == NULL) { /* no metamethod? */ - a6f: 48 85 c0 test rax,rax - a72: 0f 84 c8 00 00 00 je b40 - a78: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - if (ttisfunction(tm)) { - a7c: 83 e0 0f and eax,0xf - a7f: 66 83 f8 06 cmp ax,0x6 - a83: 74 46 je acb - if (luaV_fastget(L, t, key, slot, luaH_get)) { - a85: 66 83 f8 05 cmp ax,0x5 - a89: 74 6d je af8 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - a8b: 41 83 c5 01 add r13d,0x1 - a8f: 41 81 fd d0 07 00 00 cmp r13d,0x7d0 - a96: 0f 84 8a 00 00 00 je b26 - if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_NEWINDEX))) - a9c: ba 01 00 00 00 mov edx,0x1 - aa1: 4c 89 f6 mov rsi,r14 - aa4: 48 89 ef mov rdi,rbp - aa7: e8 00 00 00 00 call aac - aac: 48 89 c2 mov rdx,rax - aaf: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - ab3: 66 85 c0 test ax,ax - ab6: 0f 84 53 01 00 00 je c0f - abc: 83 e0 0f and eax,0xf - abf: 4c 89 f3 mov rbx,r14 - ac2: 49 89 d6 mov r14,rdx - if (ttisfunction(tm)) { - ac5: 66 83 f8 06 cmp ax,0x6 - ac9: 75 ba jne a85 - luaT_callTM(L, tm, t, key, val, 0); - acb: 4c 8b 44 24 08 mov r8,QWORD PTR [rsp+0x8] - ad0: 48 8b 0c 24 mov rcx,QWORD PTR [rsp] -} - ad4: 48 83 c4 18 add rsp,0x18 - luaT_callTM(L, tm, t, key, val, 0); - ad8: 48 89 da mov rdx,rbx - adb: 4c 89 f6 mov rsi,r14 -} - ade: 5b pop rbx - luaT_callTM(L, tm, t, key, val, 0); - adf: 48 89 ef mov rdi,rbp - ae2: 45 31 c9 xor r9d,r9d -} - ae5: 5d pop rbp - ae6: 41 5c pop r12 - ae8: 41 5d pop r13 - aea: 41 5e pop r14 - aec: 41 5f pop r15 - luaT_callTM(L, tm, t, key, val, 0); - aee: e9 00 00 00 00 jmp af3 - af3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (luaV_fastget(L, t, key, slot, luaH_get)) { - af8: 48 8b 34 24 mov rsi,QWORD PTR [rsp] - afc: 49 8b 3e mov rdi,QWORD PTR [r14] - aff: e8 00 00 00 00 call b04 - b04: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - b09: 49 89 c7 mov r15,rax - b0c: 0f 85 b6 00 00 00 jne bc8 - for (loop = 0; loop < MAXTAGLOOP; loop++) { - b12: 41 83 c5 01 add r13d,0x1 - b16: 4c 89 f3 mov rbx,r14 - b19: 41 81 fd d0 07 00 00 cmp r13d,0x7d0 - b20: 0f 85 0d ff ff ff jne a33 - luaG_runerror(L, "'__newindex' chain too long; possible loop"); - b26: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # b2d - b2d: 48 89 ef mov rdi,rbp - b30: 31 c0 xor eax,eax - b32: e8 00 00 00 00 call b37 - b37: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - b3e: 00 00 - if (slot == luaO_nilobject) /* no previous entry? */ - b40: 48 8d 05 00 00 00 00 lea rax,[rip+0x0] # b47 - b47: 49 39 c7 cmp r15,rax - b4a: 74 5e je baa - setobj2t(L, cast(TValue *, slot), val); /* set its new value */ - b4c: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - b51: 48 8b 01 mov rax,QWORD PTR [rcx] - b54: 49 89 07 mov QWORD PTR [r15],rax - b57: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - b5b: 66 41 89 47 08 mov WORD PTR [r15+0x8],ax - invalidateTMcache(h); - b60: 41 c6 44 24 0a 00 mov BYTE PTR [r12+0xa],0x0 - luaC_barrierback(L, h, val); - b66: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - b6b: 78 13 js b80 -} - b6d: 48 83 c4 18 add rsp,0x18 - b71: 5b pop rbx - b72: 5d pop rbp - b73: 41 5c pop r12 - b75: 41 5d pop r13 - b77: 41 5e pop r14 - b79: 41 5f pop r15 - b7b: c3 ret - b7c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - luaC_barrierback(L, h, val); - b80: 41 f6 44 24 09 04 test BYTE PTR [r12+0x9],0x4 - b86: 74 e5 je b6d - b88: 48 8b 01 mov rax,QWORD PTR [rcx] - b8b: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - b8f: 74 dc je b6d -} - b91: 48 83 c4 18 add rsp,0x18 - luaC_barrierback(L, h, val); - b95: 4c 89 e6 mov rsi,r12 - b98: 48 89 ef mov rdi,rbp -} - b9b: 5b pop rbx - b9c: 5d pop rbp - b9d: 41 5c pop r12 - b9f: 41 5d pop r13 - ba1: 41 5e pop r14 - ba3: 41 5f pop r15 - luaC_barrierback(L, h, val); - ba5: e9 00 00 00 00 jmp baa - slot = luaH_newkey(L, h, key); /* create one */ - baa: 48 8b 14 24 mov rdx,QWORD PTR [rsp] - bae: 4c 89 e6 mov rsi,r12 - bb1: 48 89 ef mov rdi,rbp - bb4: e8 00 00 00 00 call bb9 - bb9: 49 89 c7 mov r15,rax - bbc: eb 8e jmp b4c - bbe: 66 90 xchg ax,ax - bc0: 49 89 de mov r14,rbx - bc3: e9 d4 fe ff ff jmp a9c - luaV_finishfastset(L, t, slot, val); - bc8: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - bcd: 48 8b 01 mov rax,QWORD PTR [rcx] - bd0: 49 89 07 mov QWORD PTR [r15],rax - bd3: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - bd7: 66 41 89 47 08 mov WORD PTR [r15+0x8],ax - bdc: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - be1: 79 8a jns b6d - be3: 49 8b 36 mov rsi,QWORD PTR [r14] - be6: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - bea: 74 81 je b6d - bec: 48 8b 01 mov rax,QWORD PTR [rcx] - bef: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - bf3: 0f 84 74 ff ff ff je b6d -} - bf9: 48 83 c4 18 add rsp,0x18 - luaV_finishfastset(L, t, slot, val); - bfd: 48 89 ef mov rdi,rbp -} - c00: 5b pop rbx - c01: 5d pop rbp - c02: 41 5c pop r12 - c04: 41 5d pop r13 - c06: 41 5e pop r14 - c08: 41 5f pop r15 - luaV_finishfastset(L, t, slot, val); - c0a: e9 00 00 00 00 jmp c0f - luaG_typeerror(L, t, "index"); - c0f: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # c16 - c16: 4c 89 f6 mov rsi,r14 - c19: 48 89 ef mov rdi,rbp - c1c: e8 00 00 00 00 call c21 - c21: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - c28: 00 00 00 00 - c2c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -0000000000000c30 : -void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val) { - c30: 41 55 push r13 - c32: 49 89 fd mov r13,rdi - c35: 41 54 push r12 - c37: 49 89 cc mov r12,rcx - c3a: 55 push rbp - c3b: 48 89 d5 mov rbp,rdx - c3e: 53 push rbx - c3f: 48 89 f3 mov rbx,rsi - c42: 48 83 ec 08 sub rsp,0x8 - GETTABLE_INLINE(L, t, key, val); - c46: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - c4a: 66 3d 05 80 cmp ax,0x8005 - c4e: 75 60 jne cb0 - c50: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - c55: 48 8b 3e mov rdi,QWORD PTR [rsi] - c58: 75 46 jne ca0 - c5a: 48 8b 32 mov rsi,QWORD PTR [rdx] - c5d: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - c60: 48 8d 56 ff lea rdx,[rsi-0x1] - c64: 48 39 c2 cmp rdx,rax - c67: 0f 83 cb 00 00 00 jae d38 - c6d: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - c71: 48 c1 e6 04 shl rsi,0x4 - c75: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - c7a: 0f b7 50 08 movzx edx,WORD PTR [rax+0x8] - c7e: 66 85 d2 test dx,dx - c81: 74 7d je d00 - c83: 48 8b 00 mov rax,QWORD PTR [rax] - c86: 66 41 89 54 24 08 mov WORD PTR [r12+0x8],dx - c8c: 49 89 04 24 mov QWORD PTR [r12],rax -} - c90: 48 83 c4 08 add rsp,0x8 - c94: 5b pop rbx - c95: 5d pop rbp - c96: 41 5c pop r12 - c98: 41 5d pop r13 - c9a: c3 ret - c9b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - GETTABLE_INLINE(L, t, key, val); - ca0: 48 89 d6 mov rsi,rdx - ca3: e8 00 00 00 00 call ca8 - ca8: eb d0 jmp c7a - caa: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - cb0: 66 3d 25 80 cmp ax,0x8025 - cb4: 0f 84 8e 00 00 00 je d48 - cba: 66 3d 15 80 cmp ax,0x8015 - cbe: 75 60 jne d20 - cc0: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - cc5: 0f 85 c2 00 00 00 jne d8d - ccb: 48 8b 16 mov rdx,QWORD PTR [rsi] - cce: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - cd2: 48 8b 4a 38 mov rcx,QWORD PTR [rdx+0x38] - cd6: 39 42 40 cmp DWORD PTR [rdx+0x40],eax - cd9: 0f 86 9d 00 00 00 jbe d7c - cdf: 89 c0 mov eax,eax - ce1: 48 8b 04 c1 mov rax,QWORD PTR [rcx+rax*8] - ce5: 49 89 04 24 mov QWORD PTR [r12],rax - ce9: b8 13 00 00 00 mov eax,0x13 - cee: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - cf4: eb 9a jmp c90 - cf6: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - cfd: 00 00 00 -} - d00: 48 83 c4 08 add rsp,0x8 - GETTABLE_INLINE(L, t, key, val); - d04: 4c 89 e1 mov rcx,r12 - d07: 48 89 ea mov rdx,rbp - d0a: 48 89 de mov rsi,rbx - d0d: 4c 89 ef mov rdi,r13 -} - d10: 5b pop rbx - GETTABLE_INLINE(L, t, key, val); - d11: 49 89 c0 mov r8,rax -} - d14: 5d pop rbp - d15: 41 5c pop r12 - d17: 41 5d pop r13 - GETTABLE_INLINE(L, t, key, val); - d19: e9 92 fb ff ff jmp 8b0 - d1e: 66 90 xchg ax,ax -} - d20: 48 83 c4 08 add rsp,0x8 - GETTABLE_INLINE(L, t, key, val); - d24: 45 31 c0 xor r8d,r8d -} - d27: 5b pop rbx - d28: 5d pop rbp - d29: 41 5c pop r12 - d2b: 41 5d pop r13 - GETTABLE_INLINE(L, t, key, val); - d2d: e9 7e fb ff ff jmp 8b0 - d32: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - d38: e8 00 00 00 00 call d3d - d3d: e9 38 ff ff ff jmp c7a - d42: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - d48: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - d4d: 75 3e jne d8d - d4f: 48 8b 16 mov rdx,QWORD PTR [rsi] - d52: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - d56: 48 8b 4a 38 mov rcx,QWORD PTR [rdx+0x38] - d5a: 39 42 40 cmp DWORD PTR [rdx+0x40],eax - d5d: 76 1d jbe d7c - d5f: 89 c0 mov eax,eax - d61: ba 03 00 00 00 mov edx,0x3 - d66: f2 0f 10 04 c1 movsd xmm0,QWORD PTR [rcx+rax*8] - d6b: 66 41 89 54 24 08 mov WORD PTR [r12+0x8],dx - d71: f2 41 0f 11 04 24 movsd QWORD PTR [r12],xmm0 - d77: e9 14 ff ff ff jmp c90 - d7c: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # d83 - d83: 4c 89 ef mov rdi,r13 - d86: 31 c0 xor eax,eax - d88: e8 00 00 00 00 call d8d - d8d: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # d94 - d94: 48 89 ee mov rsi,rbp - d97: 4c 89 ef mov rdi,r13 - d9a: e8 00 00 00 00 call d9f - d9f: 90 nop - -0000000000000da0 : -void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val) { - da0: 41 55 push r13 - da2: 49 89 fd mov r13,rdi - da5: 41 54 push r12 - da7: 49 89 d4 mov r12,rdx - daa: 55 push rbp - dab: 48 89 cd mov rbp,rcx - dae: 53 push rbx - daf: 48 89 f3 mov rbx,rsi - db2: 48 83 ec 18 sub rsp,0x18 - db6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - dbd: 00 00 - dbf: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - dc4: 31 c0 xor eax,eax - SETTABLE_INLINE(L, t, key, val); - dc6: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - dca: 66 3d 05 80 cmp ax,0x8005 - dce: 0f 85 b4 00 00 00 jne e88 - dd4: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - dd9: 48 8b 3e mov rdi,QWORD PTR [rsi] - ddc: 75 62 jne e40 - dde: 48 8b 32 mov rsi,QWORD PTR [rdx] - de1: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - de4: 48 8d 56 ff lea rdx,[rsi-0x1] - de8: 48 39 c2 cmp rdx,rax - deb: 0f 83 ef 00 00 00 jae ee0 - df1: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - df5: 48 c1 e6 04 shl rsi,0x4 - df9: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - dfe: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - e03: 74 4a je e4f - e05: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - e09: 48 89 10 mov QWORD PTR [rax],rdx - e0c: 0f b7 55 08 movzx edx,WORD PTR [rbp+0x8] - e10: 66 89 50 08 mov WORD PTR [rax+0x8],dx - e14: 66 83 7d 08 00 cmp WORD PTR [rbp+0x8],0x0 - e19: 78 4d js e68 -} - e1b: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - e20: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - e27: 00 00 - e29: 0f 85 f1 01 00 00 jne 1020 - e2f: 48 83 c4 18 add rsp,0x18 - e33: 5b pop rbx - e34: 5d pop rbp - e35: 41 5c pop r12 - e37: 41 5d pop r13 - e39: c3 ret - e3a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - SETTABLE_INLINE(L, t, key, val); - e40: 48 89 d6 mov rsi,rdx - e43: e8 00 00 00 00 call e48 - e48: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - e4d: 75 b6 jne e05 - e4f: 49 89 c0 mov r8,rax - e52: 48 89 e9 mov rcx,rbp - e55: 4c 89 e2 mov rdx,r12 - e58: 48 89 de mov rsi,rbx - e5b: 4c 89 ef mov rdi,r13 - e5e: e8 00 00 00 00 call e63 - e63: eb b6 jmp e1b - e65: 0f 1f 00 nop DWORD PTR [rax] - e68: 48 8b 33 mov rsi,QWORD PTR [rbx] - e6b: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - e6f: 74 aa je e1b - e71: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - e75: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - e79: 74 a0 je e1b - e7b: 4c 89 ef mov rdi,r13 - e7e: e8 00 00 00 00 call e83 - e83: eb 96 jmp e1b - e85: 0f 1f 00 nop DWORD PTR [rax] - e88: 66 3d 25 80 cmp ax,0x8025 - e8c: 74 62 je ef0 - e8e: 66 3d 15 80 cmp ax,0x8015 - e92: 75 3c jne ed0 - e94: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - e99: 48 8b 1e mov rbx,QWORD PTR [rsi] - e9c: 0f 85 a5 01 00 00 jne 1047 - ea2: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - ea7: 0f 85 93 00 00 00 jne f40 - ead: 48 8b 02 mov rax,QWORD PTR [rdx] - eb0: 48 8b 09 mov rcx,QWORD PTR [rcx] - eb3: 89 c2 mov edx,eax - eb5: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - eb8: 0f 86 17 01 00 00 jbe fd5 - ebe: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - ec2: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - ec6: e9 50 ff ff ff jmp e1b - ecb: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - ed0: 45 31 c0 xor r8d,r8d - ed3: e8 00 00 00 00 call ed8 -} - ed8: e9 3e ff ff ff jmp e1b - edd: 0f 1f 00 nop DWORD PTR [rax] - SETTABLE_INLINE(L, t, key, val); - ee0: e8 00 00 00 00 call ee5 - ee5: e9 14 ff ff ff jmp dfe - eea: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - ef0: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - ef5: 48 8b 1e mov rbx,QWORD PTR [rsi] - ef8: 0f 85 49 01 00 00 jne 1047 - efe: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - f02: 66 83 f8 03 cmp ax,0x3 - f06: 74 78 je f80 - f08: 66 83 f8 13 cmp ax,0x13 - f0c: 0f 85 8e 00 00 00 jne fa0 - f12: 48 8b 02 mov rax,QWORD PTR [rdx] - f15: 66 0f ef c0 pxor xmm0,xmm0 - f19: f2 48 0f 2a 01 cvtsi2sd xmm0,QWORD PTR [rcx] - f1e: 89 c2 mov edx,eax - f20: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - f23: 0f 86 c9 00 00 00 jbe ff2 - f29: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - f2d: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - f32: e9 e4 fe ff ff jmp e1b - f37: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - f3e: 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - f40: 31 d2 xor edx,edx - f42: 48 89 e6 mov rsi,rsp - f45: 48 89 cf mov rdi,rcx - SETTABLE_INLINE(L, t, key, val); - f48: 48 c7 04 24 00 00 00 mov QWORD PTR [rsp],0x0 - f4f: 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - f50: e8 00 00 00 00 call f55 - SETTABLE_INLINE(L, t, key, val); - f55: 85 c0 test eax,eax - f57: 0f 84 d9 00 00 00 je 1036 - f5d: 49 8b 04 24 mov rax,QWORD PTR [r12] - f61: 48 8b 0c 24 mov rcx,QWORD PTR [rsp] - f65: 89 c2 mov edx,eax - f67: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - f6a: 76 76 jbe fe2 - f6c: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - f70: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - f74: e9 a2 fe ff ff jmp e1b - f79: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - f80: 48 8b 02 mov rax,QWORD PTR [rdx] - f83: 89 c2 mov edx,eax - f85: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - f88: 76 75 jbe fff - f8a: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - f8e: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - f92: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - f97: e9 7f fe ff ff jmp e1b - f9c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - fa0: 48 89 e6 mov rsi,rsp - fa3: 48 89 cf mov rdi,rcx - fa6: 48 c7 04 24 00 00 00 mov QWORD PTR [rsp],0x0 - fad: 00 - fae: e8 00 00 00 00 call fb3 - fb3: 85 c0 test eax,eax - fb5: 74 6e je 1025 - fb7: 49 8b 04 24 mov rax,QWORD PTR [r12] - fbb: f2 0f 10 04 24 movsd xmm0,QWORD PTR [rsp] - fc0: 89 c2 mov edx,eax - fc2: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - fc5: 76 49 jbe 1010 - fc7: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - fcb: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - fd0: e9 46 fe ff ff jmp e1b - fd5: 48 89 de mov rsi,rbx - fd8: e8 00 00 00 00 call fdd - fdd: e9 39 fe ff ff jmp e1b - fe2: 48 89 de mov rsi,rbx - fe5: 4c 89 ef mov rdi,r13 - fe8: e8 00 00 00 00 call fed - fed: e9 29 fe ff ff jmp e1b - ff2: 48 89 de mov rsi,rbx - ff5: e8 00 00 00 00 call ffa - ffa: e9 1c fe ff ff jmp e1b - fff: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 1003: 48 89 de mov rsi,rbx - 1006: e8 00 00 00 00 call 100b - 100b: e9 0b fe ff ff jmp e1b - 1010: 48 89 de mov rsi,rbx - 1013: 4c 89 ef mov rdi,r13 - 1016: e8 00 00 00 00 call 101b - 101b: e9 fb fd ff ff jmp e1b -} - 1020: e8 00 00 00 00 call 1025 - SETTABLE_INLINE(L, t, key, val); - 1025: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 102c - 102c: 4c 89 ef mov rdi,r13 - 102f: 31 c0 xor eax,eax - 1031: e8 00 00 00 00 call 1036 - 1036: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 103d - 103d: 4c 89 ef mov rdi,r13 - 1040: 31 c0 xor eax,eax - 1042: e8 00 00 00 00 call 1047 - 1047: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 104e - 104e: 4c 89 e6 mov rsi,r12 - 1051: 4c 89 ef mov rdi,r13 - 1054: e8 00 00 00 00 call 1059 - 1059: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -0000000000001060 : -int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) { - 1060: 41 54 push r12 - 1062: 49 89 fc mov r12,rdi - 1065: 55 push rbp - 1066: 48 89 d5 mov rbp,rdx - 1069: 53 push rbx - 106a: 48 89 f3 mov rbx,rsi - if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ - 106d: 0f b7 76 08 movzx esi,WORD PTR [rsi+0x8] - 1071: 89 f0 mov eax,esi - 1073: 83 e0 0f and eax,0xf - 1076: 66 83 f8 03 cmp ax,0x3 - 107a: 74 34 je 10b0 - else if (ttisstring(l) && ttisstring(r)) /* both are strings? */ - 107c: 66 83 f8 04 cmp ax,0x4 - 1080: 75 0d jne 108f - 1082: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 1086: 83 e0 0f and eax,0xf - 1089: 66 83 f8 04 cmp ax,0x4 - 108d: 74 41 je 10d0 - else if ((res = luaT_callorderTM(L, l, r, TM_LT)) < 0) /* no metamethod? */ - 108f: b9 14 00 00 00 mov ecx,0x14 - 1094: 48 89 ea mov rdx,rbp - 1097: 48 89 de mov rsi,rbx - 109a: 4c 89 e7 mov rdi,r12 - 109d: e8 00 00 00 00 call 10a2 - 10a2: 85 c0 test eax,eax - 10a4: 78 3a js 10e0 -} - 10a6: 5b pop rbx - 10a7: 5d pop rbp - 10a8: 41 5c pop r12 - 10aa: c3 ret - 10ab: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ - 10b0: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - 10b4: 89 c8 mov eax,ecx - 10b6: 83 e0 0f and eax,0xf - 10b9: 66 83 f8 03 cmp ax,0x3 - 10bd: 75 d0 jne 108f - return LTnum(l, r); - 10bf: 48 8b 3b mov rdi,QWORD PTR [rbx] - 10c2: 48 8b 12 mov rdx,QWORD PTR [rdx] -} - 10c5: 5b pop rbx - 10c6: 5d pop rbp - 10c7: 41 5c pop r12 - return LTnum(l, r); - 10c9: e9 d2 f3 ff ff jmp 4a0 - 10ce: 66 90 xchg ax,ax - return l_strcmp(tsvalue(l), tsvalue(r)) < 0; - 10d0: 48 8b 32 mov rsi,QWORD PTR [rdx] - 10d3: 48 8b 3b mov rdi,QWORD PTR [rbx] - 10d6: e8 a5 ef ff ff call 80 - 10db: c1 e8 1f shr eax,0x1f - 10de: eb c6 jmp 10a6 - luaG_ordererror(L, l, r); /* error */ - 10e0: 48 89 ea mov rdx,rbp - 10e3: 48 89 de mov rsi,rbx - 10e6: 4c 89 e7 mov rdi,r12 - 10e9: e8 00 00 00 00 call 10ee - 10ee: 66 90 xchg ax,ax - -00000000000010f0 : -int luaV_lessequal (lua_State *L, const TValue *l, const TValue *r) { - 10f0: 41 54 push r12 - 10f2: 49 89 fc mov r12,rdi - 10f5: 55 push rbp - 10f6: 48 89 d5 mov rbp,rdx - 10f9: 53 push rbx - 10fa: 48 89 f3 mov rbx,rsi - if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ - 10fd: 0f b7 76 08 movzx esi,WORD PTR [rsi+0x8] - 1101: 89 f0 mov eax,esi - 1103: 83 e0 0f and eax,0xf - 1106: 66 83 f8 03 cmp ax,0x3 - 110a: 74 74 je 1180 - else if (ttisstring(l) && ttisstring(r)) /* both are strings? */ - 110c: 66 83 f8 04 cmp ax,0x4 - 1110: 75 11 jne 1123 - 1112: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 1116: 83 e0 0f and eax,0xf - 1119: 66 83 f8 04 cmp ax,0x4 - 111d: 0f 84 7d 00 00 00 je 11a0 - else if ((res = luaT_callorderTM(L, l, r, TM_LE)) >= 0) /* try 'le' */ - 1123: b9 15 00 00 00 mov ecx,0x15 - 1128: 48 89 ea mov rdx,rbp - 112b: 48 89 de mov rsi,rbx - 112e: 4c 89 e7 mov rdi,r12 - 1131: e8 00 00 00 00 call 1136 - 1136: 85 c0 test eax,eax - 1138: 78 06 js 1140 -} - 113a: 5b pop rbx - 113b: 5d pop rbp - 113c: 41 5c pop r12 - 113e: c3 ret - 113f: 90 nop - L->ci->callstatus |= CIST_LEQ; /* mark it is doing 'lt' for 'le' */ - 1140: 49 8b 44 24 20 mov rax,QWORD PTR [r12+0x20] - res = luaT_callorderTM(L, r, l, TM_LT); - 1145: 48 89 da mov rdx,rbx - 1148: b9 14 00 00 00 mov ecx,0x14 - 114d: 48 89 ee mov rsi,rbp - 1150: 4c 89 e7 mov rdi,r12 - L->ci->callstatus |= CIST_LEQ; /* mark it is doing 'lt' for 'le' */ - 1153: 66 81 48 42 80 00 or WORD PTR [rax+0x42],0x80 - res = luaT_callorderTM(L, r, l, TM_LT); - 1159: e8 00 00 00 00 call 115e - L->ci->callstatus ^= CIST_LEQ; /* clear mark */ - 115e: 49 8b 54 24 20 mov rdx,QWORD PTR [r12+0x20] - 1163: 66 81 72 42 80 00 xor WORD PTR [rdx+0x42],0x80 - if (res < 0) - 1169: 85 c0 test eax,eax - 116b: 78 48 js 11b5 - return !res; /* result is negated */ - 116d: 0f 94 c0 sete al -} - 1170: 5b pop rbx - 1171: 5d pop rbp - return !res; /* result is negated */ - 1172: 0f b6 c0 movzx eax,al -} - 1175: 41 5c pop r12 - 1177: c3 ret - 1178: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 117f: 00 - if (ttisnumber(l) && ttisnumber(r)) /* both operands are numbers? */ - 1180: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - 1184: 89 c8 mov eax,ecx - 1186: 83 e0 0f and eax,0xf - 1189: 66 83 f8 03 cmp ax,0x3 - 118d: 75 94 jne 1123 - return LEnum(l, r); - 118f: 48 8b 3b mov rdi,QWORD PTR [rbx] - 1192: 48 8b 12 mov rdx,QWORD PTR [rdx] -} - 1195: 5b pop rbx - 1196: 5d pop rbp - 1197: 41 5c pop r12 - return LEnum(l, r); - 1199: e9 b2 f1 ff ff jmp 350 - 119e: 66 90 xchg ax,ax - return l_strcmp(tsvalue(l), tsvalue(r)) <= 0; - 11a0: 48 8b 32 mov rsi,QWORD PTR [rdx] - 11a3: 48 8b 3b mov rdi,QWORD PTR [rbx] - 11a6: e8 d5 ee ff ff call 80 - 11ab: 85 c0 test eax,eax - 11ad: 0f 9e c0 setle al - 11b0: 0f b6 c0 movzx eax,al - 11b3: eb 85 jmp 113a - luaG_ordererror(L, l, r); - 11b5: 48 89 ea mov rdx,rbp - 11b8: 48 89 de mov rsi,rbx - 11bb: 4c 89 e7 mov rdi,r12 - 11be: e8 00 00 00 00 call 11c3 - 11c3: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 11ca: 00 00 00 00 - 11ce: 66 90 xchg ax,ax - -00000000000011d0 : -int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { - 11d0: 41 54 push r12 - 11d2: 55 push rbp - 11d3: 48 89 f5 mov rbp,rsi - 11d6: 53 push rbx - 11d7: 48 89 d3 mov rbx,rdx - 11da: 48 83 ec 20 sub rsp,0x20 - if (ttype(t1) != ttype(t2)) { /* not the same variant? */ - 11de: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] -int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { - 11e2: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 11e9: 00 00 - 11eb: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - 11f0: 31 c0 xor eax,eax - if (ttype(t1) != ttype(t2)) { /* not the same variant? */ - 11f2: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 11f6: 89 c2 mov edx,eax - 11f8: 31 ca xor edx,ecx - 11fa: f6 c2 7f test dl,0x7f - 11fd: 74 31 je 1230 - if (ttnov(t1) != ttnov(t2) || ttnov(t1) != LUA_TNUMBER) - 11ff: 83 e2 0f and edx,0xf - 1202: 75 0b jne 120f - 1204: 89 c2 mov edx,eax - 1206: 83 e2 0f and edx,0xf - 1209: 66 83 fa 03 cmp dx,0x3 - 120d: 74 49 je 1258 - return !l_isfalse(L->top); - 120f: 31 c0 xor eax,eax -} - 1211: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 1216: 64 48 33 34 25 28 00 xor rsi,QWORD PTR fs:0x28 - 121d: 00 00 - 121f: 0f 85 f8 02 00 00 jne 151d - 1225: 48 83 c4 20 add rsp,0x20 - 1229: 5b pop rbx - 122a: 5d pop rbp - 122b: 41 5c pop r12 - 122d: c3 ret - 122e: 66 90 xchg ax,ax - switch (ttype(t1)) { - 1230: 83 e0 7f and eax,0x7f - 1233: 66 83 f8 46 cmp ax,0x46 - 1237: 0f 87 9b 00 00 00 ja 12d8 - 123d: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 1244 - 1244: 0f b7 c0 movzx eax,ax - 1247: 49 89 fc mov r12,rdi - 124a: 48 63 04 82 movsxd rax,DWORD PTR [rdx+rax*4] - 124e: 48 01 d0 add rax,rdx - 1251: ff e0 jmp rax - 1253: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2); - 1258: 66 83 f8 13 cmp ax,0x13 - 125c: 0f 84 46 02 00 00 je 14a8 - if (!ttisfloat(obj)) - 1262: 66 83 f8 03 cmp ax,0x3 - 1266: 0f 85 84 00 00 00 jne 12f0 - 126c: 31 d2 xor edx,edx - 126e: 48 8d 74 24 08 lea rsi,[rsp+0x8] - 1273: 48 89 ef mov rdi,rbp - 1276: e8 15 f0 ff ff call 290 - return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2); - 127b: 85 c0 test eax,eax - 127d: 74 71 je 12f0 - 127f: 0f b7 4b 08 movzx ecx,WORD PTR [rbx+0x8] - 1283: 66 83 f9 13 cmp cx,0x13 - 1287: 0f 84 2b 02 00 00 je 14b8 - if (!ttisfloat(obj)) - 128d: 66 83 f9 03 cmp cx,0x3 - 1291: 75 5d jne 12f0 - 1293: 31 d2 xor edx,edx - 1295: 48 8d 74 24 10 lea rsi,[rsp+0x10] - 129a: 48 89 df mov rdi,rbx - 129d: e8 ee ef ff ff call 290 - return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2); - 12a2: 85 c0 test eax,eax - 12a4: 74 4a je 12f0 - 12a6: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 12ab: 48 39 44 24 08 cmp QWORD PTR [rsp+0x8],rax - 12b0: 0f 94 c0 sete al - 12b3: 0f b6 c0 movzx eax,al - 12b6: e9 56 ff ff ff jmp 1211 - 12bb: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - case LUA_TLIGHTUSERDATA: return pvalue(t1) == pvalue(t2); - 12c0: 48 8b 03 mov rax,QWORD PTR [rbx] - 12c3: 48 39 06 cmp QWORD PTR [rsi],rax - 12c6: 0f 94 c0 sete al - 12c9: 0f b6 c0 movzx eax,al - 12cc: e9 40 ff ff ff jmp 1211 - 12d1: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - case LUA_TSHRSTR: return eqshrstr(tsvalue(t1), tsvalue(t2)); - 12d8: 48 8b 03 mov rax,QWORD PTR [rbx] - 12db: 48 39 45 00 cmp QWORD PTR [rbp+0x0],rax - 12df: 0f 94 c0 sete al - 12e2: 0f b6 c0 movzx eax,al - 12e5: e9 27 ff ff ff jmp 1211 - 12ea: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2); - 12f0: 31 c0 xor eax,eax - 12f2: e9 1a ff ff ff jmp 1211 - 12f7: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - 12fe: 00 00 - case LUA_TNIL: return 1; - 1300: b8 01 00 00 00 mov eax,0x1 - 1305: e9 07 ff ff ff jmp 1211 - 130a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ - 1310: 8b 03 mov eax,DWORD PTR [rbx] - 1312: 39 06 cmp DWORD PTR [rsi],eax - 1314: 0f 94 c0 sete al - 1317: 0f b6 c0 movzx eax,al - 131a: e9 f2 fe ff ff jmp 1211 - 131f: 90 nop - case LUA_TNUMFLT: return luai_numeq(fltvalue(t1), fltvalue(t2)); - 1320: 31 c0 xor eax,eax - 1322: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 1326: 66 0f 2e 03 ucomisd xmm0,QWORD PTR [rbx] - 132a: ba 00 00 00 00 mov edx,0x0 - 132f: 0f 9b c0 setnp al - 1332: 0f 45 c2 cmovne eax,edx - 1335: e9 d7 fe ff ff jmp 1211 - 133a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (hvalue(t1) == hvalue(t2)) return 1; - 1340: 48 8b 06 mov rax,QWORD PTR [rsi] - 1343: 48 8b 13 mov rdx,QWORD PTR [rbx] - 1346: 48 39 d0 cmp rax,rdx - 1349: 0f 84 8a 00 00 00 je 13d9 - else if (L == NULL) return 0; - 134f: 48 85 ff test rdi,rdi - 1352: 0f 84 b7 fe ff ff je 120f - tm = fasttm(L, hvalue(t1)->metatable, TM_EQ); - 1358: 48 8b 78 28 mov rdi,QWORD PTR [rax+0x28] - 135c: 48 85 ff test rdi,rdi - 135f: 74 0a je 136b - 1361: f6 47 0a 20 test BYTE PTR [rdi+0xa],0x20 - 1365: 0f 84 7c 01 00 00 je 14e7 - tm = fasttm(L, hvalue(t2)->metatable, TM_EQ); - 136b: 48 8b 7a 28 mov rdi,QWORD PTR [rdx+0x28] - 136f: 48 85 ff test rdi,rdi - 1372: 0f 84 97 fe ff ff je 120f - 1378: f6 47 0a 20 test BYTE PTR [rdi+0xa],0x20 - 137c: 0f 85 8d fe ff ff jne 120f - 1382: 49 8b 44 24 18 mov rax,QWORD PTR [r12+0x18] - 1387: be 05 00 00 00 mov esi,0x5 - 138c: 48 8b 90 08 01 00 00 mov rdx,QWORD PTR [rax+0x108] - 1393: e8 00 00 00 00 call 1398 - if (tm == NULL) /* no TM? */ - 1398: 48 85 c0 test rax,rax - 139b: 0f 84 6e fe ff ff je 120f - luaT_callTM(L, tm, t1, t2, L->top, 1); /* call TM */ - 13a1: 4d 8b 44 24 10 mov r8,QWORD PTR [r12+0x10] - 13a6: 48 89 ea mov rdx,rbp - 13a9: 48 89 c6 mov rsi,rax - 13ac: 48 89 d9 mov rcx,rbx - 13af: 41 b9 01 00 00 00 mov r9d,0x1 - 13b5: 4c 89 e7 mov rdi,r12 - 13b8: e8 00 00 00 00 call 13bd - return !l_isfalse(L->top); - 13bd: 49 8b 54 24 10 mov rdx,QWORD PTR [r12+0x10] - 13c2: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 13c6: 66 85 c0 test ax,ax - 13c9: 0f 84 40 fe ff ff je 120f - 13cf: 66 83 f8 01 cmp ax,0x1 - 13d3: 0f 84 35 01 00 00 je 150e - if (uvalue(t1) == uvalue(t2)) return 1; - 13d9: b8 01 00 00 00 mov eax,0x1 - 13de: e9 2e fe ff ff jmp 1211 - 13e3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 13e8: 48 8b 06 mov rax,QWORD PTR [rsi] - 13eb: 48 8b 13 mov rdx,QWORD PTR [rbx] - 13ee: 48 39 d0 cmp rax,rdx - 13f1: 74 e6 je 13d9 - else if (L == NULL) return 0; - 13f3: 48 85 ff test rdi,rdi - 13f6: 0f 84 13 fe ff ff je 120f - tm = fasttm(L, uvalue(t1)->metatable, TM_EQ); - 13fc: 48 8b 78 10 mov rdi,QWORD PTR [rax+0x10] - 1400: 48 85 ff test rdi,rdi - 1403: 74 0a je 140f - 1405: f6 47 0a 20 test BYTE PTR [rdi+0xa],0x20 - 1409: 0f 84 b1 00 00 00 je 14c0 - tm = fasttm(L, uvalue(t2)->metatable, TM_EQ); - 140f: 48 8b 7a 10 mov rdi,QWORD PTR [rdx+0x10] - 1413: 48 85 ff test rdi,rdi - 1416: 0f 84 f3 fd ff ff je 120f - 141c: f6 47 0a 20 test BYTE PTR [rdi+0xa],0x20 - 1420: 0f 85 e9 fd ff ff jne 120f - 1426: 49 8b 44 24 18 mov rax,QWORD PTR [r12+0x18] - 142b: be 05 00 00 00 mov esi,0x5 - 1430: 48 8b 90 08 01 00 00 mov rdx,QWORD PTR [rax+0x108] - 1437: e8 00 00 00 00 call 143c - 143c: e9 57 ff ff ff jmp 1398 - 1441: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - case LUA_TNUMINT: return (ivalue(t1) == ivalue(t2)); - 1448: 48 8b 03 mov rax,QWORD PTR [rbx] - 144b: 48 39 06 cmp QWORD PTR [rsi],rax - 144e: 0f 94 c0 sete al - 1451: 0f b6 c0 movzx eax,al - 1454: e9 b8 fd ff ff jmp 1211 - 1459: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - case LUA_TLNGSTR: return luaS_eqlngstr(tsvalue(t1), tsvalue(t2)); - 1460: 48 8b 33 mov rsi,QWORD PTR [rbx] - 1463: 48 8b 7d 00 mov rdi,QWORD PTR [rbp+0x0] - 1467: e8 00 00 00 00 call 146c - 146c: e9 a0 fd ff ff jmp 1211 - 1471: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - if (hvalue(t1) == hvalue(t2)) return 1; - 1478: 48 8b 03 mov rax,QWORD PTR [rbx] - 147b: 48 39 06 cmp QWORD PTR [rsi],rax - 147e: 0f 94 c0 sete al - 1481: 0f b6 c0 movzx eax,al - 1484: e9 88 fd ff ff jmp 1211 - 1489: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - case LUA_TLCF: return fvalue(t1) == fvalue(t2); - 1490: 48 8b 03 mov rax,QWORD PTR [rbx] - 1493: 48 39 06 cmp QWORD PTR [rsi],rax - 1496: 0f 94 c0 sete al - 1499: 0f b6 c0 movzx eax,al - 149c: e9 70 fd ff ff jmp 1211 - 14a1: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - return (tointegerns(t1, &i1) && tointegerns(t2, &i2) && i1 == i2); - 14a8: 48 8b 06 mov rax,QWORD PTR [rsi] - 14ab: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - 14b0: e9 ce fd ff ff jmp 1283 - 14b5: 0f 1f 00 nop DWORD PTR [rax] - 14b8: 48 8b 03 mov rax,QWORD PTR [rbx] - 14bb: e9 eb fd ff ff jmp 12ab - tm = fasttm(L, uvalue(t1)->metatable, TM_EQ); - 14c0: 49 8b 44 24 18 mov rax,QWORD PTR [r12+0x18] - 14c5: be 05 00 00 00 mov esi,0x5 - 14ca: 48 8b 90 08 01 00 00 mov rdx,QWORD PTR [rax+0x108] - 14d1: e8 00 00 00 00 call 14d6 - if (tm == NULL) - 14d6: 48 85 c0 test rax,rax - 14d9: 0f 85 c2 fe ff ff jne 13a1 - 14df: 48 8b 13 mov rdx,QWORD PTR [rbx] - 14e2: e9 28 ff ff ff jmp 140f - tm = fasttm(L, hvalue(t1)->metatable, TM_EQ); - 14e7: 49 8b 44 24 18 mov rax,QWORD PTR [r12+0x18] - 14ec: be 05 00 00 00 mov esi,0x5 - 14f1: 48 8b 90 08 01 00 00 mov rdx,QWORD PTR [rax+0x108] - 14f8: e8 00 00 00 00 call 14fd - if (tm == NULL) - 14fd: 48 85 c0 test rax,rax - 1500: 0f 85 9b fe ff ff jne 13a1 - 1506: 48 8b 13 mov rdx,QWORD PTR [rbx] - 1509: e9 5d fe ff ff jmp 136b - return !l_isfalse(L->top); - 150e: 8b 02 mov eax,DWORD PTR [rdx] - 1510: 85 c0 test eax,eax - 1512: 0f 85 c1 fe ff ff jne 13d9 - 1518: e9 f2 fc ff ff jmp 120f -} - 151d: e8 00 00 00 00 call 1522 - 1522: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 1529: 00 00 00 00 - 152d: 0f 1f 00 nop DWORD PTR [rax] - -0000000000001530 : -void luaV_concat (lua_State *L, int total) { - 1530: 41 57 push r15 - 1532: 41 56 push r14 - 1534: 41 55 push r13 - 1536: 41 54 push r12 - 1538: 55 push rbp - 1539: 89 f5 mov ebp,esi - 153b: 53 push rbx - 153c: 48 89 fb mov rbx,rdi - 153f: 48 83 ec 68 sub rsp,0x68 - 1543: 4c 8b 7f 10 mov r15,QWORD PTR [rdi+0x10] - 1547: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 154e: 00 00 - 1550: 48 89 44 24 58 mov QWORD PTR [rsp+0x58],rax - 1555: 31 c0 xor eax,eax - copy2buff(top, n, buff); /* copy strings to buffer */ - 1557: 48 8d 44 24 30 lea rax,[rsp+0x30] - 155c: 48 89 44 24 28 mov QWORD PTR [rsp+0x28],rax - 1561: eb 4e jmp 15b1 - 1563: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - if (!(ttisstring(top-2) || cvt2str(top-2)) || !tostring(L, top-1)) - 1568: 41 0f b7 47 f8 movzx eax,WORD PTR [r15-0x8] - 156d: 89 c6 mov esi,eax - 156f: 83 e6 0f and esi,0xf - 1572: 66 83 fe 04 cmp si,0x4 - 1576: 74 6d je 15e5 - 1578: 49 8d 57 f0 lea rdx,[r15-0x10] - 157c: 66 83 fe 03 cmp si,0x3 - 1580: 74 4e je 15d0 - luaT_trybinTM(L, top-2, top-1, top-2, TM_CONCAT); - 1582: 49 8d 77 e0 lea rsi,[r15-0x20] - 1586: 41 b8 16 00 00 00 mov r8d,0x16 - 158c: 48 89 df mov rdi,rbx - 158f: 83 ed 01 sub ebp,0x1 - 1592: 48 89 f1 mov rcx,rsi - 1595: e8 00 00 00 00 call 159a - 159a: 49 c7 c0 f0 ff ff ff mov r8,0xfffffffffffffff0 - L->top -= n-1; /* popped 'n' strings and pushed one */ - 15a1: 4c 8b 7b 10 mov r15,QWORD PTR [rbx+0x10] - 15a5: 4d 01 c7 add r15,r8 - 15a8: 4c 89 7b 10 mov QWORD PTR [rbx+0x10],r15 - } while (total > 1); /* repeat until only 1 result left */ - 15ac: 83 fd 01 cmp ebp,0x1 - 15af: 7e 7f jle 1630 - if (!(ttisstring(top-2) || cvt2str(top-2)) || !tostring(L, top-1)) - 15b1: 41 0f b7 57 e8 movzx edx,WORD PTR [r15-0x18] - 15b6: 89 d0 mov eax,edx - 15b8: 83 e0 0f and eax,0xf - 15bb: 83 e8 03 sub eax,0x3 - 15be: 83 f8 01 cmp eax,0x1 - 15c1: 76 a5 jbe 1568 - 15c3: 49 8d 57 f0 lea rdx,[r15-0x10] - 15c7: eb b9 jmp 1582 - 15c9: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - 15d0: 48 89 d6 mov rsi,rdx - 15d3: 48 89 df mov rdi,rbx - 15d6: e8 00 00 00 00 call 15db - 15db: 41 0f b7 47 f8 movzx eax,WORD PTR [r15-0x8] - 15e0: 41 0f b7 57 e8 movzx edx,WORD PTR [r15-0x18] - else if (isemptystr(top - 1)) /* second operand is empty? */ - 15e5: 49 8b 77 f0 mov rsi,QWORD PTR [r15-0x10] - 15e9: 66 3d 04 80 cmp ax,0x8004 - 15ed: 0f 84 35 01 00 00 je 1728 - else if (isemptystr(top - 2)) { /* first operand is an empty string? */ - 15f3: 66 81 fa 04 80 cmp dx,0x8004 - 15f8: 75 5e jne 1658 - 15fa: 49 8b 57 e0 mov rdx,QWORD PTR [r15-0x20] - 15fe: 80 7a 0b 00 cmp BYTE PTR [rdx+0xb],0x0 - 1602: 75 54 jne 1658 - setobjs2s(L, top - 2, top - 1); /* result is second op. */ - 1604: 49 8b 57 f0 mov rdx,QWORD PTR [r15-0x10] - 1608: 66 41 89 47 e8 mov WORD PTR [r15-0x18],ax - 160d: 49 c7 c0 f0 ff ff ff mov r8,0xfffffffffffffff0 - 1614: 83 ed 01 sub ebp,0x1 - 1617: 49 89 57 e0 mov QWORD PTR [r15-0x20],rdx - L->top -= n-1; /* popped 'n' strings and pushed one */ - 161b: 4c 8b 7b 10 mov r15,QWORD PTR [rbx+0x10] - 161f: 4d 01 c7 add r15,r8 - 1622: 4c 89 7b 10 mov QWORD PTR [rbx+0x10],r15 - } while (total > 1); /* repeat until only 1 result left */ - 1626: 83 fd 01 cmp ebp,0x1 - 1629: 7f 86 jg 15b1 - 162b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] -} - 1630: 48 8b 44 24 58 mov rax,QWORD PTR [rsp+0x58] - 1635: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - 163c: 00 00 - 163e: 0f 85 2e 02 00 00 jne 1872 - 1644: 48 83 c4 68 add rsp,0x68 - 1648: 5b pop rbx - 1649: 5d pop rbp - 164a: 41 5c pop r12 - 164c: 41 5d pop r13 - 164e: 41 5e pop r14 - 1650: 41 5f pop r15 - 1652: c3 ret - 1653: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - size_t tl = vslen(top - 1); - 1658: 80 7e 08 04 cmp BYTE PTR [rsi+0x8],0x4 - 165c: 0f 84 de 01 00 00 je 1840 - 1662: 4c 8b 76 10 mov r14,QWORD PTR [rsi+0x10] - for (n = 1; n < total && tostring(L, top - n - 1); n++) { - 1666: 83 fd 01 cmp ebp,0x1 - 1669: 0f 8e db 01 00 00 jle 184a - 166f: 44 8d 65 fe lea r12d,[rbp-0x2] - 1673: 4d 8d 47 e0 lea r8,[r15-0x20] - 1677: 49 8d 44 24 02 lea rax,[r12+0x2] - 167c: 41 bc 01 00 00 00 mov r12d,0x1 - 1682: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - 1687: eb 3b jmp 16c4 - 1689: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - size_t l = vslen(top - n - 1); - 1690: 48 8b 52 10 mov rdx,QWORD PTR [rdx+0x10] - if (l >= (MAX_SIZE/sizeof(char)) - tl) - 1694: 48 be ff ff ff ff ff movabs rsi,0x7fffffffffffffff - 169b: ff ff 7f - 169e: 4c 29 f6 sub rsi,r14 - 16a1: 48 39 d6 cmp rsi,rdx - 16a4: 0f 86 b7 01 00 00 jbe 1861 - tl += l; - 16aa: 49 01 d6 add r14,rdx - 16ad: 45 8d 4d 01 lea r9d,[r13+0x1] - 16b1: 49 83 c4 01 add r12,0x1 - 16b5: 49 83 e8 10 sub r8,0x10 - for (n = 1; n < total && tostring(L, top - n - 1); n++) { - 16b9: 4c 39 64 24 18 cmp QWORD PTR [rsp+0x18],r12 - 16be: 0f 84 a4 00 00 00 je 1768 - 16c4: 41 0f b7 50 08 movzx edx,WORD PTR [r8+0x8] - 16c9: 4c 89 e6 mov rsi,r12 - 16cc: 45 89 e5 mov r13d,r12d - 16cf: 44 89 64 24 24 mov DWORD PTR [rsp+0x24],r12d - 16d4: 48 c1 e6 04 shl rsi,0x4 - 16d8: 4d 89 c3 mov r11,r8 - 16db: 83 e2 0f and edx,0xf - 16de: 66 83 fa 04 cmp dx,0x4 - 16e2: 74 29 je 170d - 16e4: 66 83 fa 03 cmp dx,0x3 - 16e8: 0f 85 2a 01 00 00 jne 1818 - 16ee: 4c 89 c6 mov rsi,r8 - 16f1: 48 89 df mov rdi,rbx - 16f4: 4c 89 44 24 10 mov QWORD PTR [rsp+0x10],r8 - 16f9: 4c 89 44 24 08 mov QWORD PTR [rsp+0x8],r8 - 16fe: e8 00 00 00 00 call 1703 - 1703: 4c 8b 44 24 08 mov r8,QWORD PTR [rsp+0x8] - 1708: 4c 8b 5c 24 10 mov r11,QWORD PTR [rsp+0x10] - size_t l = vslen(top - n - 1); - 170d: 49 8b 13 mov rdx,QWORD PTR [r11] - 1710: 80 7a 08 04 cmp BYTE PTR [rdx+0x8],0x4 - 1714: 0f 85 76 ff ff ff jne 1690 - 171a: 0f b6 52 0b movzx edx,BYTE PTR [rdx+0xb] - 171e: e9 71 ff ff ff jmp 1694 - 1723: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - else if (isemptystr(top - 1)) /* second operand is empty? */ - 1728: 80 7e 0b 00 cmp BYTE PTR [rsi+0xb],0x0 - 172c: 0f 85 c1 fe ff ff jne 15f3 - cast_void(tostring(L, top - 2)); /* result is first operand */ - 1732: 83 e2 0f and edx,0xf - 1735: 83 ed 01 sub ebp,0x1 - 1738: 49 c7 c0 f0 ff ff ff mov r8,0xfffffffffffffff0 - 173f: 66 83 fa 03 cmp dx,0x3 - 1743: 0f 85 58 fe ff ff jne 15a1 - 1749: 49 8d 77 e0 lea rsi,[r15-0x20] - 174d: 48 89 df mov rdi,rbx - 1750: e8 00 00 00 00 call 1755 - 1755: 49 c7 c0 f0 ff ff ff mov r8,0xfffffffffffffff0 - 175c: e9 40 fe ff ff jmp 15a1 - 1761: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - 1768: 4d 63 c1 movsxd r8,r9d - 176b: 2b 6c 24 24 sub ebp,DWORD PTR [rsp+0x24] - 176f: 4d 89 c4 mov r12,r8 - 1772: 49 f7 d8 neg r8 - 1775: 49 c1 e4 04 shl r12,0x4 - 1779: 49 c1 e0 04 shl r8,0x4 - 177d: 49 f7 dc neg r12 - 1780: 49 83 c0 10 add r8,0x10 - 1784: 4c 89 64 24 08 mov QWORD PTR [rsp+0x8],r12 - if (tl <= LUAI_MAXSHORTLEN) { /* is result a short string? */ - 1789: 49 83 fe 28 cmp r14,0x28 - 178d: 77 51 ja 17e0 - copy2buff(top, n, buff); /* copy strings to buffer */ - 178f: 4c 8b 6c 24 28 mov r13,QWORD PTR [rsp+0x28] - 1794: 44 89 ce mov esi,r9d - 1797: 4c 89 ff mov rdi,r15 - 179a: 4c 89 44 24 10 mov QWORD PTR [rsp+0x10],r8 - 179f: 4c 89 ea mov rdx,r13 - 17a2: e8 99 e9 ff ff call 140 - ts = luaS_newlstr(L, buff, tl); - 17a7: 4c 89 ee mov rsi,r13 - 17aa: 4c 89 f2 mov rdx,r14 - 17ad: 48 89 df mov rdi,rbx - 17b0: e8 00 00 00 00 call 17b5 - 17b5: 4c 8b 44 24 10 mov r8,QWORD PTR [rsp+0x10] - 17ba: 49 89 c5 mov r13,rax - setsvalue2s(L, top - n, ts); /* create result */ - 17bd: 4c 8b 64 24 08 mov r12,QWORD PTR [rsp+0x8] - 17c2: 4d 01 fc add r12,r15 - 17c5: 4d 89 2c 24 mov QWORD PTR [r12],r13 - 17c9: 41 0f b6 45 08 movzx eax,BYTE PTR [r13+0x8] - 17ce: 66 0d 00 80 or ax,0x8000 - 17d2: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - 17d8: e9 c4 fd ff ff jmp 15a1 - 17dd: 0f 1f 00 nop DWORD PTR [rax] - ts = luaS_createlngstrobj(L, tl); - 17e0: 4c 89 f6 mov rsi,r14 - 17e3: 48 89 df mov rdi,rbx - 17e6: 4c 89 44 24 18 mov QWORD PTR [rsp+0x18],r8 - 17eb: 44 89 4c 24 10 mov DWORD PTR [rsp+0x10],r9d - 17f0: e8 00 00 00 00 call 17f5 - copy2buff(top, n, getstr(ts)); - 17f5: 44 8b 4c 24 10 mov r9d,DWORD PTR [rsp+0x10] - 17fa: 4c 89 ff mov rdi,r15 - 17fd: 48 8d 50 18 lea rdx,[rax+0x18] - ts = luaS_createlngstrobj(L, tl); - 1801: 49 89 c5 mov r13,rax - copy2buff(top, n, getstr(ts)); - 1804: 44 89 ce mov esi,r9d - 1807: e8 34 e9 ff ff call 140 - 180c: 4c 8b 44 24 18 mov r8,QWORD PTR [rsp+0x18] - 1811: eb aa jmp 17bd - 1813: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1818: 4d 89 e0 mov r8,r12 - 181b: 45 8d 4c 24 ff lea r9d,[r12-0x1] - 1820: 48 f7 de neg rsi - 1823: 49 f7 d8 neg r8 - 1826: 44 29 cd sub ebp,r9d - 1829: 48 89 74 24 08 mov QWORD PTR [rsp+0x8],rsi - for (n = 1; n < total && tostring(L, top - n - 1); n++) { - 182e: 45 89 e1 mov r9d,r12d - 1831: 49 c1 e0 04 shl r8,0x4 - 1835: 49 83 c0 10 add r8,0x10 - 1839: e9 4b ff ff ff jmp 1789 - 183e: 66 90 xchg ax,ax - size_t tl = vslen(top - 1); - 1840: 44 0f b6 76 0b movzx r14d,BYTE PTR [rsi+0xb] - 1845: e9 1c fe ff ff jmp 1666 - for (n = 1; n < total && tostring(L, top - n - 1); n++) { - 184a: 45 31 c0 xor r8d,r8d - 184d: 41 b9 01 00 00 00 mov r9d,0x1 - 1853: 48 c7 44 24 08 f0 ff mov QWORD PTR [rsp+0x8],0xfffffffffffffff0 - 185a: ff ff - 185c: e9 28 ff ff ff jmp 1789 - luaG_runerror(L, "string length overflow"); - 1861: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 1868 - 1868: 48 89 df mov rdi,rbx - 186b: 31 c0 xor eax,eax - 186d: e8 00 00 00 00 call 1872 -} - 1872: e8 00 00 00 00 call 1877 - 1877: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - 187e: 00 00 - -0000000000001880 : -void luaV_objlen (lua_State *L, StkId ra, const TValue *rb) { - 1880: 41 55 push r13 - 1882: 41 54 push r12 - 1884: 49 89 fc mov r12,rdi - 1887: 55 push rbp - 1888: 48 89 f5 mov rbp,rsi - 188b: 53 push rbx - 188c: 48 89 d3 mov rbx,rdx - 188f: 48 83 ec 08 sub rsp,0x8 - switch (ttype(rb)) { - 1893: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 1897: 83 e0 7f and eax,0x7f - 189a: 83 e8 04 sub eax,0x4 - 189d: 66 83 f8 21 cmp ax,0x21 - 18a1: 0f 87 c9 00 00 00 ja 1970 - 18a7: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 18ae - 18ae: 0f b7 c0 movzx eax,ax - 18b1: 48 63 04 82 movsxd rax,DWORD PTR [rdx+rax*4] - 18b5: 48 01 d0 add rax,rdx - 18b8: ff e0 jmp rax - 18ba: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - setivalue(ra, raviH_getn(h)); - 18c0: 48 8b 3b mov rdi,QWORD PTR [rbx] - 18c3: e8 00 00 00 00 call 18c8 - 18c8: be 13 00 00 00 mov esi,0x13 - 18cd: 48 98 cdqe - 18cf: 66 89 75 08 mov WORD PTR [rbp+0x8],si - 18d3: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax -} - 18d7: 48 83 c4 08 add rsp,0x8 - 18db: 5b pop rbx - 18dc: 5d pop rbp - 18dd: 41 5c pop r12 - 18df: 41 5d pop r13 - 18e1: c3 ret - 18e2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - setivalue(ra, tsvalue(rb)->u.lnglen); - 18e8: 48 8b 03 mov rax,QWORD PTR [rbx] - 18eb: 48 8b 40 10 mov rax,QWORD PTR [rax+0x10] - 18ef: 48 89 06 mov QWORD PTR [rsi],rax - 18f2: b8 13 00 00 00 mov eax,0x13 - 18f7: 66 89 46 08 mov WORD PTR [rsi+0x8],ax -} - 18fb: 48 83 c4 08 add rsp,0x8 - 18ff: 5b pop rbx - 1900: 5d pop rbp - 1901: 41 5c pop r12 - 1903: 41 5d pop r13 - 1905: c3 ret - 1906: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 190d: 00 00 00 - Table *h = hvalue(rb); - 1910: 4c 8b 2b mov r13,QWORD PTR [rbx] - tm = fasttm(L, h->metatable, TM_LEN); - 1913: 49 8b 7d 28 mov rdi,QWORD PTR [r13+0x28] - 1917: 48 85 ff test rdi,rdi - 191a: 74 0a je 1926 - 191c: f6 47 0a 10 test BYTE PTR [rdi+0xa],0x10 - 1920: 0f 84 8a 00 00 00 je 19b0 - setivalue(ra, luaH_getn(h)); /* else primitive len */ - 1926: 4c 89 ef mov rdi,r13 - 1929: e8 00 00 00 00 call 192e - 192e: b9 13 00 00 00 mov ecx,0x13 - 1933: 48 98 cdqe - 1935: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - 1939: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax -} - 193d: 48 83 c4 08 add rsp,0x8 - 1941: 5b pop rbx - 1942: 5d pop rbp - 1943: 41 5c pop r12 - 1945: 41 5d pop r13 - 1947: c3 ret - 1948: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 194f: 00 - setivalue(ra, tsvalue(rb)->shrlen); - 1950: 48 8b 03 mov rax,QWORD PTR [rbx] - 1953: ba 13 00 00 00 mov edx,0x13 - 1958: 0f b6 40 0b movzx eax,BYTE PTR [rax+0xb] - 195c: 66 89 56 08 mov WORD PTR [rsi+0x8],dx - 1960: 48 89 06 mov QWORD PTR [rsi],rax -} - 1963: 48 83 c4 08 add rsp,0x8 - 1967: 5b pop rbx - 1968: 5d pop rbp - 1969: 41 5c pop r12 - 196b: 41 5d pop r13 - 196d: c3 ret - 196e: 66 90 xchg ax,ax - tm = luaT_gettmbyobj(L, rb, TM_LEN); - 1970: ba 04 00 00 00 mov edx,0x4 - 1975: 48 89 de mov rsi,rbx - 1978: 4c 89 e7 mov rdi,r12 - 197b: e8 00 00 00 00 call 1980 - if (ttisnil(tm)) /* no metamethod? */ - 1980: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - 1985: 74 49 je 19d0 -} - 1987: 48 83 c4 08 add rsp,0x8 - luaT_callTM(L, tm, rb, rb, ra, 1); - 198b: 49 89 e8 mov r8,rbp - 198e: 48 89 d9 mov rcx,rbx - 1991: 48 89 da mov rdx,rbx - 1994: 4c 89 e7 mov rdi,r12 -} - 1997: 5b pop rbx - luaT_callTM(L, tm, rb, rb, ra, 1); - 1998: 41 b9 01 00 00 00 mov r9d,0x1 -} - 199e: 5d pop rbp - luaT_callTM(L, tm, rb, rb, ra, 1); - 199f: 48 89 c6 mov rsi,rax -} - 19a2: 41 5c pop r12 - 19a4: 41 5d pop r13 - luaT_callTM(L, tm, rb, rb, ra, 1); - 19a6: e9 00 00 00 00 jmp 19ab - 19ab: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - tm = fasttm(L, h->metatable, TM_LEN); - 19b0: 49 8b 44 24 18 mov rax,QWORD PTR [r12+0x18] - 19b5: be 04 00 00 00 mov esi,0x4 - 19ba: 48 8b 90 00 01 00 00 mov rdx,QWORD PTR [rax+0x100] - 19c1: e8 00 00 00 00 call 19c6 - if (tm) break; /* metamethod? break switch to call it */ - 19c6: 48 85 c0 test rax,rax - 19c9: 75 bc jne 1987 - 19cb: e9 56 ff ff ff jmp 1926 - luaG_typeerror(L, rb, "get length of"); - 19d0: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 19d7 - 19d7: 48 89 de mov rsi,rbx - 19da: 4c 89 e7 mov rdi,r12 - 19dd: e8 00 00 00 00 call 19e2 - 19e2: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 19e9: 00 00 00 00 - 19ed: 0f 1f 00 nop DWORD PTR [rax] - -00000000000019f0 : - if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ - 19f0: 48 8d 42 01 lea rax,[rdx+0x1] -lua_Integer luaV_div (lua_State *L, lua_Integer m, lua_Integer n) { - 19f4: 48 89 d1 mov rcx,rdx - if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ - 19f7: 48 83 f8 01 cmp rax,0x1 - 19fb: 77 13 ja 1a10 - if (n == 0) - 19fd: 48 85 d2 test rdx,rdx - 1a00: 74 2a je 1a2c - return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */ - 1a02: 48 89 f0 mov rax,rsi - 1a05: 48 f7 d8 neg rax - 1a08: c3 ret - 1a09: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - lua_Integer q = m / n; /* perform C division */ - 1a10: 48 89 f0 mov rax,rsi - 1a13: 48 99 cqo - 1a15: 48 f7 f9 idiv rcx - if ((m ^ n) < 0 && m % n != 0) /* 'm/n' would be negative non-integer? */ - 1a18: 48 31 f1 xor rcx,rsi - 1a1b: 78 03 js 1a20 -} - 1a1d: c3 ret - 1a1e: 66 90 xchg ax,ax - q -= 1; /* correct result for different rounding */ - 1a20: 48 8d 48 ff lea rcx,[rax-0x1] - 1a24: 48 85 d2 test rdx,rdx - 1a27: 48 0f 45 c1 cmovne rax,rcx -} - 1a2b: c3 ret -lua_Integer luaV_div (lua_State *L, lua_Integer m, lua_Integer n) { - 1a2c: 50 push rax - luaG_runerror(L, "attempt to divide by zero"); - 1a2d: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 1a34 - 1a34: 31 c0 xor eax,eax - 1a36: e8 00 00 00 00 call 1a3b - 1a3b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - -0000000000001a40 : - if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ - 1a40: 48 8d 42 01 lea rax,[rdx+0x1] -lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) { - 1a44: 48 89 d1 mov rcx,rdx - if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ - 1a47: 48 83 f8 01 cmp rax,0x1 - 1a4b: 77 13 ja 1a60 - if (n == 0) - 1a4d: 48 85 d2 test rdx,rdx - 1a50: 74 2a je 1a7c - return 0; /* m % -1 == 0; avoid overflow with 0x80000...%-1 */ - 1a52: 31 d2 xor edx,edx -} - 1a54: 48 89 d0 mov rax,rdx - 1a57: c3 ret - 1a58: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1a5f: 00 - lua_Integer r = m % n; - 1a60: 48 89 f0 mov rax,rsi - 1a63: 48 99 cqo - 1a65: 48 f7 f9 idiv rcx - if (r != 0 && (m ^ n) < 0) /* 'm/n' would be non-integer negative? */ - 1a68: 48 85 d2 test rdx,rdx - 1a6b: 74 e7 je 1a54 - r += n; /* correct result for different rounding */ - 1a6d: 48 8d 04 0a lea rax,[rdx+rcx*1] - 1a71: 48 31 f1 xor rcx,rsi - 1a74: 48 0f 48 d0 cmovs rdx,rax -} - 1a78: 48 89 d0 mov rax,rdx - 1a7b: c3 ret -lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) { - 1a7c: 50 push rax - luaG_runerror(L, "attempt to perform 'n%%0'"); - 1a7d: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 1a84 - 1a84: 31 c0 xor eax,eax - 1a86: e8 00 00 00 00 call 1a8b - 1a8b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - -0000000000001a90 : - if (y < 0) { /* shift right? */ - 1a90: 48 85 f6 test rsi,rsi - 1a93: 78 1b js 1ab0 - else return intop(<<, x, y); - 1a95: 89 f1 mov ecx,esi - 1a97: b8 00 00 00 00 mov eax,0x0 - 1a9c: 48 d3 e7 shl rdi,cl - 1a9f: 48 83 fe 40 cmp rsi,0x40 - 1aa3: 48 0f 4c c7 cmovl rax,rdi -} - 1aa7: c3 ret - 1aa8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1aaf: 00 - if (y <= -NBITS) return 0; - 1ab0: 31 c0 xor eax,eax - 1ab2: 48 83 fe c1 cmp rsi,0xffffffffffffffc1 - 1ab6: 7c ef jl 1aa7 - else return intop(>>, x, -y); - 1ab8: 89 f1 mov ecx,esi - 1aba: 48 89 f8 mov rax,rdi - 1abd: f7 d9 neg ecx - 1abf: 48 d3 e8 shr rax,cl - 1ac2: c3 ret - 1ac3: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 1aca: 00 00 00 00 - 1ace: 66 90 xchg ax,ax - -0000000000001ad0 : - - -/* -** finish execution of an opcode interrupted by an yield -*/ -void luaV_finishOp (lua_State *L) { - 1ad0: 41 54 push r12 - 1ad2: 55 push rbp - 1ad3: 53 push rbx - CallInfo *ci = L->ci; - 1ad4: 48 8b 6f 20 mov rbp,QWORD PTR [rdi+0x20] - StkId base = ci->u.l.base; - Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */ - 1ad8: 48 8b 4d 28 mov rcx,QWORD PTR [rbp+0x28] - StkId base = ci->u.l.base; - 1adc: 4c 8b 45 20 mov r8,QWORD PTR [rbp+0x20] - Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */ - 1ae0: 8b 59 fc mov ebx,DWORD PTR [rcx-0x4] - OpCode op = GET_OPCODE(inst); - 1ae3: 0f b6 c3 movzx eax,bl - switch (op) { /* finish its execution */ - 1ae6: 83 e8 06 sub eax,0x6 - 1ae9: 83 f8 6d cmp eax,0x6d - 1aec: 77 65 ja 1b53 - 1aee: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 1af5 - 1af5: 48 63 04 82 movsxd rax,DWORD PTR [rdx+rax*4] - 1af9: 48 01 d0 add rax,rdx - 1afc: ff e0 jmp rax - 1afe: 66 90 xchg ax,ax - case OP_GETTABUP: case OP_GETTABLE: case OP_SELF: { - setobjs2s(L, base + GETARG_A(inst), --L->top); - break; - } - case OP_LE: case OP_LT: case OP_EQ: { - int res = !l_isfalse(L->top - 1); - 1b00: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 1b04: 31 d2 xor edx,edx - 1b06: 0f b7 70 f8 movzx esi,WORD PTR [rax-0x8] - 1b0a: 66 85 f6 test si,si - 1b0d: 74 19 je 1b28 - 1b0f: ba 01 00 00 00 mov edx,0x1 - 1b14: 66 83 fe 01 cmp si,0x1 - 1b18: 75 0e jne 1b28 - 1b1a: 8b 70 f0 mov esi,DWORD PTR [rax-0x10] - 1b1d: 31 d2 xor edx,edx - 1b1f: 85 f6 test esi,esi - 1b21: 0f 95 c2 setne dl - 1b24: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - L->top--; - 1b28: 48 83 e8 10 sub rax,0x10 - 1b2c: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax - if (ci->callstatus & CIST_LEQ) { /* "<=" using "<" instead? */ - 1b30: 0f b7 45 42 movzx eax,WORD PTR [rbp+0x42] - 1b34: a8 80 test al,0x80 - 1b36: 74 09 je 1b41 - lua_assert(op == OP_LE); - ci->callstatus ^= CIST_LEQ; /* clear mark */ - 1b38: 34 80 xor al,0x80 - 1b3a: 83 f2 01 xor edx,0x1 - 1b3d: 66 89 45 42 mov WORD PTR [rbp+0x42],ax - res = !res; /* negate result */ - } - lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP); - if (res != GETARG_A(inst)) /* condition failed? */ - 1b41: c1 eb 08 shr ebx,0x8 - 1b44: 83 e3 7f and ebx,0x7f - 1b47: 39 d3 cmp ebx,edx - 1b49: 74 08 je 1b53 - ci->u.l.savedpc++; /* skip jump instruction */ - 1b4b: 48 83 c1 04 add rcx,0x4 - 1b4f: 48 89 4d 28 mov QWORD PTR [rbp+0x28],rcx - case OP_RAVI_SETI: case OP_RAVI_TABLE_SETFIELD: case OP_RAVI_SETFIELD: - case OP_TAILCALL: case OP_SETTABUP: case OP_SETTABLE: - break; - default: lua_assert(0); - } -} - 1b53: 5b pop rbx - 1b54: 5d pop rbp - 1b55: 41 5c pop r12 - 1b57: c3 ret - 1b58: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1b5f: 00 - if (GETARG_C(inst) - 1 >= 0) /* nresults >= 0? */ - 1b60: 81 e3 00 00 ff 00 and ebx,0xff0000 - 1b66: 74 eb je 1b53 - L->top = ci->top; /* adjust results */ - 1b68: 48 8b 45 08 mov rax,QWORD PTR [rbp+0x8] - 1b6c: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax -} - 1b70: eb e1 jmp 1b53 - 1b72: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - setobjs2s(L, base + GETARG_A(inst), --L->top); - 1b78: 48 8b 57 10 mov rdx,QWORD PTR [rdi+0x10] - 1b7c: c1 eb 08 shr ebx,0x8 - 1b7f: 83 e3 7f and ebx,0x7f - 1b82: 48 8d 4a f0 lea rcx,[rdx-0x10] - 1b86: 48 c1 e3 04 shl rbx,0x4 - 1b8a: 48 89 4f 10 mov QWORD PTR [rdi+0x10],rcx - 1b8e: 48 8b 4a f0 mov rcx,QWORD PTR [rdx-0x10] - 1b92: 49 8d 04 18 lea rax,[r8+rbx*1] - 1b96: 0f b7 52 f8 movzx edx,WORD PTR [rdx-0x8] - 1b9a: 48 89 08 mov QWORD PTR [rax],rcx - 1b9d: 66 89 50 08 mov WORD PTR [rax+0x8],dx -} - 1ba1: 5b pop rbx - 1ba2: 5d pop rbp - 1ba3: 41 5c pop r12 - 1ba5: c3 ret - 1ba6: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 1bad: 00 00 00 - L->top = ci->top; /* correct top */ - 1bb0: 48 8b 45 08 mov rax,QWORD PTR [rbp+0x8] - 1bb4: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax -} - 1bb8: 5b pop rbx - 1bb9: 5d pop rbp - 1bba: 41 5c pop r12 - 1bbc: c3 ret - 1bbd: 0f 1f 00 nop DWORD PTR [rax] - StkId top = L->top - 1; /* top when 'luaT_trybinTM' was called */ - 1bc0: 48 8b 57 10 mov rdx,QWORD PTR [rdi+0x10] - int b = GETARG_B(inst); /* first element to concatenate */ - 1bc4: 89 d8 mov eax,ebx - 1bc6: 49 89 fc mov r12,rdi - 1bc9: c1 e8 18 shr eax,0x18 - int total = cast_int(top - 1 - (base + b)); /* yet to concatenate */ - 1bcc: 48 8d 7a e0 lea rdi,[rdx-0x20] - 1bd0: 48 c1 e0 04 shl rax,0x4 - setobj2s(L, top - 2, top); /* put TM result in proper position */ - 1bd4: 0f b7 4a f8 movzx ecx,WORD PTR [rdx-0x8] - int total = cast_int(top - 1 - (base + b)); /* yet to concatenate */ - 1bd8: 4c 01 c0 add rax,r8 - 1bdb: 48 89 fe mov rsi,rdi - 1bde: 48 29 c6 sub rsi,rax - setobj2s(L, top - 2, top); /* put TM result in proper position */ - 1be1: 48 8b 42 f0 mov rax,QWORD PTR [rdx-0x10] - 1be5: 66 89 4a d8 mov WORD PTR [rdx-0x28],cx - int total = cast_int(top - 1 - (base + b)); /* yet to concatenate */ - 1be9: 48 c1 fe 04 sar rsi,0x4 - setobj2s(L, top - 2, top); /* put TM result in proper position */ - 1bed: 48 89 42 d0 mov QWORD PTR [rdx-0x30],rax - if (total > 1) { /* are there elements to concat? */ - 1bf1: 83 fe 01 cmp esi,0x1 - 1bf4: 7e 1a jle 1c10 - L->top = top - 1; /* top is one after last element (at top-2) */ - 1bf6: 49 89 7c 24 10 mov QWORD PTR [r12+0x10],rdi - luaV_concat(L, total); /* concat them (may yield again) */ - 1bfb: 4c 89 e7 mov rdi,r12 - 1bfe: e8 00 00 00 00 call 1c03 - 1c03: 49 8b 54 24 10 mov rdx,QWORD PTR [r12+0x10] - 1c08: 4c 8b 45 20 mov r8,QWORD PTR [rbp+0x20] - 1c0c: 0f b7 4a f8 movzx ecx,WORD PTR [rdx-0x8] - setobj2s(L, ci->u.l.base + GETARG_A(inst), L->top - 1); - 1c10: 89 d8 mov eax,ebx - 1c12: 48 8b 52 f0 mov rdx,QWORD PTR [rdx-0x10] - 1c16: c1 e8 08 shr eax,0x8 - 1c19: 83 e0 7f and eax,0x7f - 1c1c: 48 c1 e0 04 shl rax,0x4 - 1c20: 4c 01 c0 add rax,r8 - 1c23: 48 89 10 mov QWORD PTR [rax],rdx - 1c26: 66 89 48 08 mov WORD PTR [rax+0x8],cx - L->top = ci->top; /* restore top */ - 1c2a: 48 8b 45 08 mov rax,QWORD PTR [rbp+0x8] - 1c2e: 49 89 44 24 10 mov QWORD PTR [r12+0x10],rax -} - 1c33: 5b pop rbx - 1c34: 5d pop rbp - 1c35: 41 5c pop r12 - 1c37: c3 ret - 1c38: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1c3f: 00 - -0000000000001c40 : - - -int raviV_check_usertype(lua_State *L, TString *name, const TValue *o) -{ - Table *mt; - switch (ttnov(o)) { - 1c40: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 1c44: 83 e0 0f and eax,0xf - 1c47: 66 83 f8 05 cmp ax,0x5 - 1c4b: 0f 84 7f 00 00 00 je 1cd0 - 1c51: 66 83 f8 07 cmp ax,0x7 - 1c55: 75 59 jne 1cb0 - case LUA_TTABLE: - mt = hvalue(o)->metatable; - break; - case LUA_TUSERDATA: - mt = uvalue(o)->metatable; - 1c57: 48 8b 02 mov rax,QWORD PTR [rdx] - 1c5a: 48 8b 48 10 mov rcx,QWORD PTR [rax+0x10] - break; - default: - mt = NULL; - } - if (mt == NULL) - 1c5e: 48 85 c9 test rcx,rcx - 1c61: 74 79 je 1cdc - return 0; - /* get global table from registry */ - Table *reg = hvalue(&G(L)->l_registry); - 1c63: 48 8b 47 18 mov rax,QWORD PTR [rdi+0x18] -#if defined(RAVI_ENABLED) -/* -** search function for short strings -*/ -static RAVI_ALWAYS_INLINE const TValue *luaH_getshortstr(Table *t, TString *key) { - Node *n = hashstr(t, key); - 1c67: 8b 56 0c mov edx,DWORD PTR [rsi+0xc] - 1c6a: 48 8b 40 40 mov rax,QWORD PTR [rax+0x40] - 1c6e: 23 50 50 and edx,DWORD PTR [rax+0x50] - 1c71: 48 c1 e2 05 shl rdx,0x5 - 1c75: 48 03 50 18 add rdx,QWORD PTR [rax+0x18] - 1c79: eb 14 jmp 1c8f - 1c7b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - for (;;) { /* check whether 'key' is somewhere in the chain */ - const TValue *k = gkey(n); - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - return gval(n); /* that's it */ - else { - int nx = gnext(n); - 1c80: 48 63 42 1c movsxd rax,DWORD PTR [rdx+0x1c] - if (nx == 0) - 1c84: 85 c0 test eax,eax - 1c86: 74 30 je 1cb8 - return luaO_nilobject; /* not found */ - n += nx; - 1c88: 48 c1 e0 05 shl rax,0x5 - 1c8c: 48 01 c2 add rdx,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 1c8f: 66 81 7a 18 04 80 cmp WORD PTR [rdx+0x18],0x8004 - 1c95: 75 e9 jne 1c80 - 1c97: 48 3b 72 10 cmp rsi,QWORD PTR [rdx+0x10] - 1c9b: 75 e3 jne 1c80 - const TValue *metatab = luaH_getshortstr(reg, name); - return (!ttisnil(metatab) && ttisLtable(metatab) && hvalue(metatab) == mt) || 0; - 1c9d: 31 c0 xor eax,eax - 1c9f: 66 81 7a 08 05 80 cmp WORD PTR [rdx+0x8],0x8005 - 1ca5: 74 39 je 1ce0 -} - 1ca7: c3 ret - 1ca8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - 1caf: 00 - return 0; - 1cb0: 31 c0 xor eax,eax - 1cb2: c3 ret - 1cb3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luaO_nilobject; /* not found */ - 1cb8: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 1cbf - return (!ttisnil(metatab) && ttisLtable(metatab) && hvalue(metatab) == mt) || 0; - 1cbf: 31 c0 xor eax,eax - 1cc1: 66 81 7a 08 05 80 cmp WORD PTR [rdx+0x8],0x8005 - 1cc7: 75 de jne 1ca7 - 1cc9: eb 15 jmp 1ce0 - 1ccb: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - mt = hvalue(o)->metatable; - 1cd0: 48 8b 02 mov rax,QWORD PTR [rdx] - 1cd3: 48 8b 48 28 mov rcx,QWORD PTR [rax+0x28] - if (mt == NULL) - 1cd7: 48 85 c9 test rcx,rcx - 1cda: 75 87 jne 1c63 - return (!ttisnil(metatab) && ttisLtable(metatab) && hvalue(metatab) == mt) || 0; - 1cdc: 31 c0 xor eax,eax -} - 1cde: c3 ret - 1cdf: 90 nop - return (!ttisnil(metatab) && ttisLtable(metatab) && hvalue(metatab) == mt) || 0; - 1ce0: 31 c0 xor eax,eax - 1ce2: 48 39 0a cmp QWORD PTR [rdx],rcx - 1ce5: 0f 94 c0 sete al - 1ce8: c3 ret - 1ce9: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -0000000000001cf0 : - -int luaV_execute (lua_State *L) { - 1cf0: 41 57 push r15 - 1cf2: 41 56 push r14 - for (;;) { - Instruction i; - OpCode op; - StkId ra; - - vmfetch; - 1cf4: 4c 8d 35 00 00 00 00 lea r14,[rip+0x0] # 1cfb -int luaV_execute (lua_State *L) { - 1cfb: 41 55 push r13 - 1cfd: 41 54 push r12 - 1cff: 55 push rbp - 1d00: 53 push rbx - 1d01: 48 81 ec 18 01 00 00 sub rsp,0x118 - 1d08: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - 1d0f: 00 00 - 1d11: 48 89 84 24 08 01 00 mov QWORD PTR [rsp+0x108],rax - 1d18: 00 - 1d19: 31 c0 xor eax,eax - CallInfo *ci = L->ci; - 1d1b: 48 8b 47 20 mov rax,QWORD PTR [rdi+0x20] - 1d1f: 48 89 7c 24 08 mov QWORD PTR [rsp+0x8],rdi - ci->callstatus |= CIST_FRESH; /* fresh invocation of 'luaV_execute" */ - 1d24: 66 83 48 42 08 or WORD PTR [rax+0x42],0x8 - 1d29: 0f b6 97 c8 00 00 00 movzx edx,BYTE PTR [rdi+0xc8] - CallInfo *ci = L->ci; - 1d30: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - ci->callstatus |= CIST_FRESH; /* fresh invocation of 'luaV_execute" */ - 1d35: 48 8b 40 28 mov rax,QWORD PTR [rax+0x28] - cl = clLvalue(ci->func); /* local reference to function's closure */ - 1d39: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 1d3e: 45 31 ed xor r13d,r13d - vmfetch; - 1d41: 83 e2 0c and edx,0xc - 1d44: 48 8d 58 04 lea rbx,[rax+0x4] - 1d48: 44 8b 00 mov r8d,DWORD PTR [rax] - cl = clLvalue(ci->func); /* local reference to function's closure */ - 1d4b: 48 8b 0f mov rcx,QWORD PTR [rdi] - base = ci->u.l.base; /* local copy of function's base */ - 1d4e: 4c 8b 67 20 mov r12,QWORD PTR [rdi+0x20] - cl = clLvalue(ci->func); /* local reference to function's closure */ - 1d52: 48 8b 09 mov rcx,QWORD PTR [rcx] - 1d55: 48 89 4c 24 20 mov QWORD PTR [rsp+0x20],rcx - k = cl->p->k; /* local reference to function's constant table */ - 1d5a: 48 8b 49 18 mov rcx,QWORD PTR [rcx+0x18] - 1d5e: 48 8b 71 30 mov rsi,QWORD PTR [rcx+0x30] - 1d62: 48 89 74 24 10 mov QWORD PTR [rsp+0x10],rsi - vmfetch; - 1d67: 0f 85 5c 57 00 00 jne 74c9 - 1d6d: 44 89 c5 mov ebp,r8d - 1d70: 41 0f b6 c0 movzx eax,r8b - 1d74: c1 ed 08 shr ebp,0x8 - 1d77: 48 89 c2 mov rdx,rax - 1d7a: 83 e5 7f and ebp,0x7f - 1d7d: 48 c1 e5 04 shl rbp,0x4 - 1d81: 4c 01 e5 add rbp,r12 - 1d84: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - vmcase(OP_RAVI_TABLE_GETFIELD) { - /* This opcode is used when the key is known to be - short string and the variable is known to be - a table - */ - StkId rb = RB(i); - 1d88: 44 89 c6 mov esi,r8d - 1d8b: c1 ee 18 shr esi,0x18 - 1d8e: 48 c1 e6 04 shl rsi,0x4 - 1d92: 4c 01 e6 add rsi,r12 - if (op == OP_RAVI_TABLE_SELF_SK) { setobjs2s(L, ra + 1, rb); } - 1d95: 83 fa 6d cmp edx,0x6d - 1d98: 75 0f jne 1da9 - 1d9a: 48 8b 06 mov rax,QWORD PTR [rsi] - 1d9d: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax - 1da1: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 1da5: 66 89 45 18 mov WORD PTR [rbp+0x18],ax - { - lua_assert(ISK(GETARG_C(i))); - TValue *rc = k + INDEXK(GETARG_C(i)); - 1da9: 44 89 c2 mov edx,r8d - TString *key = tsvalue(rc); - lua_assert(key->tt == LUA_TSHRSTR); - Table *h = hvalue(rb); - 1dac: 48 8b 06 mov rax,QWORD PTR [rsi] - TValue *rc = k + INDEXK(GETARG_C(i)); - 1daf: c1 ea 10 shr edx,0x10 - 1db2: 83 e2 7f and edx,0x7f - 1db5: 48 c1 e2 04 shl rdx,0x4 - 1db9: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - TString *key = tsvalue(rc); - 1dbe: 48 8b 0a mov rcx,QWORD PTR [rdx] - Node *n = hashstr(t, key); - 1dc1: 44 8b 41 0c mov r8d,DWORD PTR [rcx+0xc] - 1dc5: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - 1dc9: 49 c1 e0 05 shl r8,0x5 - 1dcd: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - 1dd1: eb 18 jmp 1deb - 1dd3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - int nx = gnext(n); - 1dd8: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - 1ddc: 85 c0 test eax,eax - 1dde: 0f 84 fc 37 00 00 je 55e0 - n += nx; - 1de4: 48 c1 e0 05 shl rax,0x5 - 1de8: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 1deb: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - 1df2: 75 e4 jne 1dd8 - 1df4: 49 3b 48 10 cmp rcx,QWORD PTR [r8+0x10] - 1df8: 75 de jne 1dd8 - const TValue *v = luaH_getshortstr(h, key); - if (RAVI_LIKELY(!ttisnil(v))) { - 1dfa: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 1dff: 66 85 c0 test ax,ax - 1e02: 0f 84 ed 37 00 00 je 55f5 - setobj2s(L, ra, v); - 1e08: 49 8b 10 mov rdx,QWORD PTR [r8] - 1e0b: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - } - else { - Protect(luaV_finishget(L, rb, rc, ra, v)); - } - } - vmbreak; - 1e0f: 48 89 d8 mov rax,rbx - 1e12: 48 83 c3 04 add rbx,0x4 - setobj2s(L, ra, v); - 1e16: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 1e1a: 44 8b 00 mov r8d,DWORD PTR [rax] - 1e1d: 45 85 ed test r13d,r13d - 1e20: 0f 85 0b 38 00 00 jne 5631 - 1e26: 44 89 c5 mov ebp,r8d - 1e29: 41 0f b6 c0 movzx eax,r8b - 1e2d: c1 ed 08 shr ebp,0x8 - 1e30: 48 89 c2 mov rdx,rax - 1e33: 83 e5 7f and ebp,0x7f - 1e36: 48 c1 e5 04 shl rbp,0x4 - 1e3a: 4c 01 e5 add rbp,r12 - 1e3d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *pstep = RAVI_LIKELY((op == OP_RAVI_FORPREP_I1)) ? NULL : ra + 2; - 1e41: 83 fa 59 cmp edx,0x59 - 1e44: 0f 85 9e 57 00 00 jne 75e8 - lua_Integer initv = ivalue(pinit); - 1e4a: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - lua_Integer istep = RAVI_LIKELY((op == OP_RAVI_FORPREP_I1)) ? 1 : ivalue(pstep); - 1e4e: ba 01 00 00 00 mov edx,0x1 - setivalue(pinit, initv - istep); - 1e53: 48 29 d0 sub rax,rdx - pc += GETARG_sBx(i); - 1e56: 41 c1 e8 10 shr r8d,0x10 - setivalue(pinit, initv - istep); - 1e5a: 41 bf 13 00 00 00 mov r15d,0x13 - 1e60: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - pc += GETARG_sBx(i); - 1e64: 4a 8d 84 83 00 00 fe lea rax,[rbx+r8*4-0x20000] - 1e6b: ff - setivalue(pinit, initv - istep); - 1e6c: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - vmbreak; - 1e71: 48 8d 58 04 lea rbx,[rax+0x4] - 1e75: 44 8b 00 mov r8d,DWORD PTR [rax] - 1e78: 45 85 ed test r13d,r13d - 1e7b: 0f 85 74 57 00 00 jne 75f5 - 1e81: 44 89 c5 mov ebp,r8d - 1e84: 41 0f b6 c0 movzx eax,r8b - 1e88: c1 ed 08 shr ebp,0x8 - 1e8b: 48 89 c2 mov rdx,rax - 1e8e: 83 e5 7f and ebp,0x7f - 1e91: 48 c1 e5 04 shl rbp,0x4 - 1e95: 4c 01 e5 add rbp,r12 - 1e98: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - lua_Integer step = op == OP_RAVI_FORLOOP_I1 ? 1 : ivalue(ra + 2); - 1e9c: b8 01 00 00 00 mov eax,0x1 - 1ea1: 83 fa 57 cmp edx,0x57 - 1ea4: 74 04 je 1eaa - 1ea6: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - lua_Integer idx = ivalue(ra) + step; /* increment index */ - 1eaa: 48 03 45 00 add rax,QWORD PTR [rbp+0x0] - if (idx <= limit) { - 1eae: 48 89 da mov rdx,rbx - 1eb1: 48 3b 45 10 cmp rax,QWORD PTR [rbp+0x10] - 1eb5: 7f 20 jg 1ed7 - chgivalue(ra, idx); /* update internal index... */ - 1eb7: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - pc += GETARG_sBx(i); /* jump back */ - 1ebb: 41 c1 e8 10 shr r8d,0x10 - setivalue(ra + 3, idx); /* ...and external index */ - 1ebf: 48 89 45 30 mov QWORD PTR [rbp+0x30],rax - 1ec3: b8 13 00 00 00 mov eax,0x13 - pc += GETARG_sBx(i); /* jump back */ - 1ec8: 44 89 c1 mov ecx,r8d - setivalue(ra + 3, idx); /* ...and external index */ - 1ecb: 66 89 45 38 mov WORD PTR [rbp+0x38],ax - pc += GETARG_sBx(i); /* jump back */ - 1ecf: 48 8d 94 8b 00 00 fe lea rdx,[rbx+rcx*4-0x20000] - 1ed6: ff - vmbreak; - 1ed7: 48 8d 5a 04 lea rbx,[rdx+0x4] - 1edb: 44 8b 02 mov r8d,DWORD PTR [rdx] - 1ede: 45 85 ed test r13d,r13d - 1ee1: 0f 85 85 57 00 00 jne 766c - 1ee7: 44 89 c5 mov ebp,r8d - 1eea: 41 0f b6 c0 movzx eax,r8b - 1eee: c1 ed 08 shr ebp,0x8 - 1ef1: 48 89 c2 mov rdx,rax - 1ef4: 83 e5 7f and ebp,0x7f - 1ef7: 48 c1 e5 04 shl rbp,0x4 - 1efb: 4c 01 e5 add rbp,r12 - 1efe: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - setobjs2s(L, cb+2, ra+2); - 1f02: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - StkId cb = ra + 3; /* call base */ - 1f06: 48 8d 75 30 lea rsi,[rbp+0x30] - L->top = cb + 3; /* func. + 2 args (state and index) */ - 1f0a: 48 83 c5 60 add rbp,0x60 - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f0e: 41 c1 e8 10 shr r8d,0x10 - L->top = cb + 3; /* func. + 2 args (state and index) */ - 1f12: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f17: 41 0f b6 d0 movzx edx,r8b - setobjs2s(L, cb+2, ra+2); - 1f1b: 48 89 46 20 mov QWORD PTR [rsi+0x20],rax - 1f1f: 0f b7 45 c8 movzx eax,WORD PTR [rbp-0x38] - L->top = cb + 3; /* func. + 2 args (state and index) */ - 1f23: 4c 89 ff mov rdi,r15 - setobjs2s(L, cb+2, ra+2); - 1f26: 66 89 46 28 mov WORD PTR [rsi+0x28],ax - setobjs2s(L, cb+1, ra+1); - 1f2a: 48 8b 45 b0 mov rax,QWORD PTR [rbp-0x50] - 1f2e: 48 89 46 10 mov QWORD PTR [rsi+0x10],rax - 1f32: 0f b7 45 b8 movzx eax,WORD PTR [rbp-0x48] - 1f36: 66 89 46 18 mov WORD PTR [rsi+0x18],ax - setobjs2s(L, cb, ra); - 1f3a: 48 8b 45 a0 mov rax,QWORD PTR [rbp-0x60] - 1f3e: 48 89 45 d0 mov QWORD PTR [rbp-0x30],rax - 1f42: 0f b7 45 a8 movzx eax,WORD PTR [rbp-0x58] - 1f46: 66 89 46 08 mov WORD PTR [rsi+0x8],ax - L->top = cb + 3; /* func. + 2 args (state and index) */ - 1f4a: 49 89 6f 10 mov QWORD PTR [r15+0x10],rbp - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f4e: 48 8b 6c 24 18 mov rbp,QWORD PTR [rsp+0x18] - 1f53: 48 89 5d 28 mov QWORD PTR [rbp+0x28],rbx - i = *(pc++); /* go to next instruction */ - 1f57: 48 83 c3 04 add rbx,0x4 - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f5b: e8 00 00 00 00 call 1f60 - i = *(pc++); /* go to next instruction */ - 1f60: 44 8b 43 fc mov r8d,DWORD PTR [rbx-0x4] - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f64: 4c 8b 65 20 mov r12,QWORD PTR [rbp+0x20] - L->top = ci->top; - 1f68: 48 8b 45 08 mov rax,QWORD PTR [rbp+0x8] - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f6c: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 1f73: 00 - ra = RA(i); - 1f74: 44 89 c5 mov ebp,r8d - 1f77: c1 ed 08 shr ebp,0x8 - L->top = ci->top; - 1f7a: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - Protect(luaD_call(L, cb, GETARG_C(i))); - 1f7e: 41 83 e5 0c and r13d,0xc - ra = RA(i); - 1f82: 83 e5 7f and ebp,0x7f - 1f85: 48 c1 e5 04 shl rbp,0x4 - 1f89: 4c 01 e5 add rbp,r12 - if (!ttisnil(ra + 1)) { /* continue loop? */ - 1f8c: 0f b7 55 18 movzx edx,WORD PTR [rbp+0x18] - 1f90: 48 89 d8 mov rax,rbx - 1f93: 66 85 d2 test dx,dx - 1f96: 74 1b je 1fb3 - setobjs2s(L, ra, ra + 1); /* save control variable */ - 1f98: 48 8b 4d 10 mov rcx,QWORD PTR [rbp+0x10] - pc += GETARG_sBx(i); /* jump back */ - 1f9c: 41 c1 e8 10 shr r8d,0x10 - setobjs2s(L, ra, ra + 1); /* save control variable */ - 1fa0: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - pc += GETARG_sBx(i); /* jump back */ - 1fa4: 44 89 c2 mov edx,r8d - setobjs2s(L, ra, ra + 1); /* save control variable */ - 1fa7: 48 89 4d 00 mov QWORD PTR [rbp+0x0],rcx - pc += GETARG_sBx(i); /* jump back */ - 1fab: 48 8d 84 93 00 00 fe lea rax,[rbx+rdx*4-0x20000] - 1fb2: ff - vmbreak; - 1fb3: 48 8d 58 04 lea rbx,[rax+0x4] - 1fb7: 44 8b 00 mov r8d,DWORD PTR [rax] - 1fba: 45 85 ed test r13d,r13d - 1fbd: 0f 85 de 56 00 00 jne 76a1 - 1fc3: 44 89 c5 mov ebp,r8d - 1fc6: 41 0f b6 c0 movzx eax,r8b - 1fca: c1 ed 08 shr ebp,0x8 - 1fcd: 48 89 c2 mov rdx,rax - 1fd0: 83 e5 7f and ebp,0x7f - 1fd3: 48 c1 e5 04 shl rbp,0x4 - 1fd7: 4c 01 e5 add rbp,r12 - 1fda: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 1fde: 44 89 c2 mov edx,r8d - 1fe1: c1 ea 18 shr edx,0x18 - 1fe4: f6 c2 80 test dl,0x80 - 1fe7: 0f 84 5f 37 00 00 je 574c - 1fed: 83 e2 7f and edx,0x7f - 1ff0: 48 c1 e2 04 shl rdx,0x4 - 1ff4: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 1ff9: 41 c1 e8 10 shr r8d,0x10 - 1ffd: 41 f6 c0 80 test r8b,0x80 - 2001: 0f 84 ed 36 00 00 je 56f4 - 2007: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 200c: 41 83 e0 7f and r8d,0x7f - 2010: 49 c1 e0 04 shl r8,0x4 - 2014: 4a 8d 0c 00 lea rcx,[rax+r8*1] - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 2018: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 201c: 66 3d 05 80 cmp ax,0x8005 - 2020: 0f 85 e8 36 00 00 jne 570e - 2026: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 202a: 48 8b 32 mov rsi,QWORD PTR [rdx] - Node *n = hashstr(t, key); - 202d: 44 8b 40 50 mov r8d,DWORD PTR [rax+0x50] - 2031: 44 23 46 0c and r8d,DWORD PTR [rsi+0xc] - 2035: 49 c1 e0 05 shl r8,0x5 - 2039: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - 203d: eb 14 jmp 2053 - 203f: 90 nop - int nx = gnext(n); - 2040: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - 2044: 85 c0 test eax,eax - 2046: 0f 84 24 36 00 00 je 5670 - n += nx; - 204c: 48 c1 e0 05 shl rax,0x5 - 2050: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 2053: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - 205a: 75 e4 jne 2040 - 205c: 49 3b 70 10 cmp rsi,QWORD PTR [r8+0x10] - 2060: 75 de jne 2040 - 2062: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - 2068: 0f 84 15 36 00 00 je 5683 - 206e: 48 8b 01 mov rax,QWORD PTR [rcx] - 2071: 49 89 00 mov QWORD PTR [r8],rax - 2074: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - 2078: 66 41 89 40 08 mov WORD PTR [r8+0x8],ax - 207d: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - 2082: 0f 88 12 4d 00 00 js 6d9a - vmbreak; - 2088: 48 89 d8 mov rax,rbx - 208b: 48 83 c3 04 add rbx,0x4 - 208f: 44 8b 00 mov r8d,DWORD PTR [rax] - 2092: 45 85 ed test r13d,r13d - 2095: 0f 85 24 36 00 00 jne 56bf - 209b: 44 89 c5 mov ebp,r8d - 209e: 41 0f b6 c0 movzx eax,r8b - 20a2: c1 ed 08 shr ebp,0x8 - 20a5: 48 89 c2 mov rdx,rax - 20a8: 83 e5 7f and ebp,0x7f - 20ab: 48 c1 e5 04 shl rbp,0x4 - 20af: 4c 01 e5 add rbp,r12 - 20b2: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - savepc(L); /* in case of allocation errors */ - 20b6: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - t = raviH_new(L, RAVI_TARRAYINT, 0); - 20bb: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 20c0: 31 d2 xor edx,edx - 20c2: be 03 00 00 00 mov esi,0x3 - savepc(L); /* in case of allocation errors */ - 20c7: 48 89 5f 28 mov QWORD PTR [rdi+0x28],rbx - t = raviH_new(L, RAVI_TARRAYINT, 0); - 20cb: 4c 89 ff mov rdi,r15 - 20ce: e8 00 00 00 00 call 20d3 - setiarrayvalue(L, ra, t); - 20d3: 41 bb 15 80 ff ff mov r11d,0xffff8015 - 20d9: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - checkGC(L, ra + 1); - 20dd: 49 8b 47 18 mov rax,QWORD PTR [r15+0x18] - setiarrayvalue(L, ra, t); - 20e1: 66 44 89 5d 08 mov WORD PTR [rbp+0x8],r11w - checkGC(L, ra + 1); - 20e6: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - 20eb: 0f 8f 88 47 00 00 jg 6879 - vmbreak; - 20f1: 48 89 d8 mov rax,rbx - 20f4: 48 83 c3 04 add rbx,0x4 - 20f8: 44 8b 00 mov r8d,DWORD PTR [rax] - 20fb: 45 85 ed test r13d,r13d - 20fe: 0f 85 67 67 00 00 jne 886b - 2104: 44 89 c5 mov ebp,r8d - 2107: 41 0f b6 c0 movzx eax,r8b - 210b: c1 ed 08 shr ebp,0x8 - 210e: 48 89 c2 mov rdx,rax - 2111: 83 e5 7f and ebp,0x7f - 2114: 48 c1 e5 04 shl rbp,0x4 - 2118: 4c 01 e5 add rbp,r12 - 211b: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 211f: 44 89 c0 mov eax,r8d - 2122: c1 e8 18 shr eax,0x18 - 2125: a8 80 test al,0x80 - 2127: 0f 85 6b 3e 00 00 jne 5f98 - TValue *rc = RKC(i); - 212d: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 2130: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 2134: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 2137: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 213a: f6 c2 80 test dl,0x80 - 213d: 0f 84 70 3e 00 00 je 5fb3 - 2143: 83 e2 7f and edx,0x7f - 2146: 48 c1 e2 04 shl rdx,0x4 - 214a: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - if (lessequals != GETARG_A(i)) - 214f: 41 c1 e8 08 shr r8d,0x8 - int lessequals = (fltvalue(rb) <= fltvalue(rc)); - 2153: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - if (lessequals != GETARG_A(i)) - 2157: 41 83 e0 7f and r8d,0x7f - int lessequals = (fltvalue(rb) <= fltvalue(rc)); - 215b: 66 0f 2f 00 comisd xmm0,QWORD PTR [rax] - 215f: 0f 93 c0 setae al - 2162: 0f b6 c0 movzx eax,al - if (lessequals != GETARG_A(i)) - 2165: 41 39 c0 cmp r8d,eax - 2168: 0f 84 68 4e 00 00 je 6fd6 - pc++; - 216e: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2172: 48 8d 58 04 lea rbx,[rax+0x4] - 2176: 44 8b 00 mov r8d,DWORD PTR [rax] - 2179: 45 85 ed test r13d,r13d - 217c: 0f 85 53 58 00 00 jne 79d5 - 2182: 44 89 c5 mov ebp,r8d - 2185: 41 0f b6 c0 movzx eax,r8b - 2189: c1 ed 08 shr ebp,0x8 - 218c: 48 89 c2 mov rdx,rax - 218f: 83 e5 7f and ebp,0x7f - 2192: 48 c1 e5 04 shl rbp,0x4 - 2196: 4c 01 e5 add rbp,r12 - 2199: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - StkId rb = RB(i); /* variable - may not be a table */ - 219d: 44 89 c6 mov esi,r8d - TValue *rc = k + INDEXK(GETARG_C(i)); - 21a0: 44 89 c2 mov edx,r8d - StkId rb = RB(i); /* variable - may not be a table */ - 21a3: c1 ee 18 shr esi,0x18 - TValue *rc = k + INDEXK(GETARG_C(i)); - 21a6: c1 ea 10 shr edx,0x10 - StkId rb = RB(i); /* variable - may not be a table */ - 21a9: 48 c1 e6 04 shl rsi,0x4 - TValue *rc = k + INDEXK(GETARG_C(i)); - 21ad: 83 e2 7f and edx,0x7f - StkId rb = RB(i); /* variable - may not be a table */ - 21b0: 4c 01 e6 add rsi,r12 - TValue *rc = k + INDEXK(GETARG_C(i)); - 21b3: 48 c1 e2 04 shl rdx,0x4 - 21b7: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 21bc: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 21c0: 66 3d 05 80 cmp ax,0x8005 - 21c4: 0f 85 0b 67 00 00 jne 88d5 - 21ca: 48 8b 06 mov rax,QWORD PTR [rsi] - 21cd: 48 8b 0a mov rcx,QWORD PTR [rdx] - Node *n = hashstr(t, key); - 21d0: 44 8b 41 0c mov r8d,DWORD PTR [rcx+0xc] - 21d4: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - 21d8: 49 c1 e0 05 shl r8,0x5 - 21dc: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - 21e0: eb 19 jmp 21fb - 21e2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - int nx = gnext(n); - 21e8: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - 21ec: 85 c0 test eax,eax - 21ee: 0f 84 94 4a 00 00 je 6c88 - n += nx; - 21f4: 48 c1 e0 05 shl rax,0x5 - 21f8: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 21fb: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - 2202: 75 e4 jne 21e8 - 2204: 49 3b 48 10 cmp rcx,QWORD PTR [r8+0x10] - 2208: 75 de jne 21e8 - 220a: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 220f: 66 85 c0 test ax,ax - 2212: 0f 84 14 6d 00 00 je 8f2c - 2218: 49 8b 10 mov rdx,QWORD PTR [r8] - 221b: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 221f: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 2223: 48 89 d8 mov rax,rbx - 2226: 48 83 c3 04 add rbx,0x4 - 222a: 44 8b 00 mov r8d,DWORD PTR [rax] - 222d: 45 85 ed test r13d,r13d - 2230: 0f 85 75 60 00 00 jne 82ab - 2236: 44 89 c5 mov ebp,r8d - 2239: 41 0f b6 c0 movzx eax,r8b - 223d: c1 ed 08 shr ebp,0x8 - 2240: 48 89 c2 mov rdx,rax - 2243: 83 e5 7f and ebp,0x7f - 2246: 48 c1 e5 04 shl rbp,0x4 - 224a: 4c 01 e5 add rbp,r12 - 224d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - StkId rb = cl->upvals[GETARG_B(i)]->v; /* variable - may not be a table */ - 2251: 48 8b 74 24 20 mov rsi,QWORD PTR [rsp+0x20] - 2256: 44 89 c0 mov eax,r8d - TValue *rc = k + INDEXK(GETARG_C(i)); - 2259: 44 89 c2 mov edx,r8d - StkId rb = cl->upvals[GETARG_B(i)]->v; /* variable - may not be a table */ - 225c: c1 e8 18 shr eax,0x18 - TValue *rc = k + INDEXK(GETARG_C(i)); - 225f: c1 ea 10 shr edx,0x10 - StkId rb = cl->upvals[GETARG_B(i)]->v; /* variable - may not be a table */ - 2262: 48 8b 44 c6 20 mov rax,QWORD PTR [rsi+rax*8+0x20] - TValue *rc = k + INDEXK(GETARG_C(i)); - 2267: 83 e2 7f and edx,0x7f - 226a: 48 c1 e2 04 shl rdx,0x4 - 226e: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - StkId rb = cl->upvals[GETARG_B(i)]->v; /* variable - may not be a table */ - 2273: 48 8b 30 mov rsi,QWORD PTR [rax] - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 2276: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 227a: 66 3d 05 80 cmp ax,0x8005 - 227e: 0f 85 5c 60 00 00 jne 82e0 - 2284: 48 8b 06 mov rax,QWORD PTR [rsi] - 2287: 48 8b 0a mov rcx,QWORD PTR [rdx] - Node *n = hashstr(t, key); - 228a: 44 8b 41 0c mov r8d,DWORD PTR [rcx+0xc] - 228e: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - 2292: 49 c1 e0 05 shl r8,0x5 - 2296: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - 229a: eb 17 jmp 22b3 - 229c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - int nx = gnext(n); - 22a0: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - 22a4: 85 c0 test eax,eax - 22a6: 0f 84 e8 49 00 00 je 6c94 - n += nx; - 22ac: 48 c1 e0 05 shl rax,0x5 - 22b0: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 22b3: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - 22ba: 75 e4 jne 22a0 - 22bc: 49 3b 48 10 cmp rcx,QWORD PTR [r8+0x10] - 22c0: 75 de jne 22a0 - 22c2: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 22c7: 66 85 c0 test ax,ax - 22ca: 0f 84 29 6d 00 00 je 8ff9 - 22d0: 49 8b 10 mov rdx,QWORD PTR [r8] - 22d3: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 22d7: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 22db: 48 89 d8 mov rax,rbx - 22de: 48 83 c3 04 add rbx,0x4 - 22e2: 44 8b 00 mov r8d,DWORD PTR [rax] - 22e5: 45 85 ed test r13d,r13d - 22e8: 0f 85 30 60 00 00 jne 831e - 22ee: 44 89 c5 mov ebp,r8d - 22f1: 41 0f b6 c0 movzx eax,r8b - 22f5: c1 ed 08 shr ebp,0x8 - 22f8: 48 89 c2 mov rdx,rax - 22fb: 83 e5 7f and ebp,0x7f - 22fe: 48 c1 e5 04 shl rbp,0x4 - 2302: 4c 01 e5 add rbp,r12 - 2305: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2309: 44 89 c0 mov eax,r8d - 230c: c1 e8 18 shr eax,0x18 - 230f: a8 80 test al,0x80 - 2311: 0f 85 ab 3c 00 00 jne 5fc2 - 2317: 48 c1 e0 04 shl rax,0x4 - 231b: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 231f: 44 89 c0 mov eax,r8d - 2322: c1 e8 10 shr eax,0x10 - 2325: a8 80 test al,0x80 - 2327: 0f 84 b3 3c 00 00 je 5fe0 - 232d: 83 e0 7f and eax,0x7f - 2330: 48 c1 e0 04 shl rax,0x4 - 2334: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - if (lessequals != GETARG_A(i)) - 2339: 41 c1 e8 08 shr r8d,0x8 - int lessequals = (ivalue(rb) <= ivalue(rc)); - 233d: 48 8b 00 mov rax,QWORD PTR [rax] - if (lessequals != GETARG_A(i)) - 2340: 41 83 e0 7f and r8d,0x7f - int lessequals = (ivalue(rb) <= ivalue(rc)); - 2344: 48 39 02 cmp QWORD PTR [rdx],rax - 2347: 0f 9e c0 setle al - 234a: 0f b6 c0 movzx eax,al - if (lessequals != GETARG_A(i)) - 234d: 41 39 c0 cmp r8d,eax - 2350: 0f 84 ec 4b 00 00 je 6f42 - pc++; - 2356: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 235a: 48 8d 58 04 lea rbx,[rax+0x4] - 235e: 44 8b 00 mov r8d,DWORD PTR [rax] - 2361: 45 85 ed test r13d,r13d - 2364: 0f 85 36 56 00 00 jne 79a0 - 236a: 44 89 c5 mov ebp,r8d - 236d: 41 0f b6 c0 movzx eax,r8b - 2371: c1 ed 08 shr ebp,0x8 - 2374: 48 89 c2 mov rdx,rax - 2377: 83 e5 7f and ebp,0x7f - 237a: 48 c1 e5 04 shl rbp,0x4 - 237e: 4c 01 e5 add rbp,r12 - 2381: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2385: 44 89 c0 mov eax,r8d - 2388: c1 e8 18 shr eax,0x18 - 238b: a8 80 test al,0x80 - 238d: 0f 85 5c 3c 00 00 jne 5fef - TValue *rc = RKC(i); - 2393: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 2396: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 239a: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 239d: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 23a0: f6 c2 80 test dl,0x80 - 23a3: 0f 84 61 3c 00 00 je 600a - 23a9: 83 e2 7f and edx,0x7f - 23ac: 48 c1 e2 04 shl rdx,0x4 - 23b0: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - if (lessthan != GETARG_A(i)) - 23b5: 41 c1 e8 08 shr r8d,0x8 - int lessthan = (fltvalue(rb) < fltvalue(rc)); - 23b9: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - if (lessthan != GETARG_A(i)) - 23bd: 41 83 e0 7f and r8d,0x7f - int lessthan = (fltvalue(rb) < fltvalue(rc)); - 23c1: 66 0f 2f 00 comisd xmm0,QWORD PTR [rax] - 23c5: 0f 97 c0 seta al - 23c8: 0f b6 c0 movzx eax,al - if (lessthan != GETARG_A(i)) - 23cb: 41 39 c0 cmp r8d,eax - 23ce: 0f 84 37 4b 00 00 je 6f0b - pc++; - 23d4: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 23d8: 48 8d 58 04 lea rbx,[rax+0x4] - 23dc: 44 8b 00 mov r8d,DWORD PTR [rax] - 23df: 45 85 ed test r13d,r13d - 23e2: 0f 85 83 55 00 00 jne 796b - 23e8: 44 89 c5 mov ebp,r8d - 23eb: 41 0f b6 c0 movzx eax,r8b - 23ef: c1 ed 08 shr ebp,0x8 - 23f2: 48 89 c2 mov rdx,rax - 23f5: 83 e5 7f and ebp,0x7f - 23f8: 48 c1 e5 04 shl rbp,0x4 - 23fc: 4c 01 e5 add rbp,r12 - 23ff: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2403: 44 89 c0 mov eax,r8d - 2406: c1 e8 18 shr eax,0x18 - 2409: a8 80 test al,0x80 - 240b: 0f 85 28 3a 00 00 jne 5e39 - 2411: 48 c1 e0 04 shl rax,0x4 - 2415: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 2419: 44 89 c0 mov eax,r8d - 241c: c1 e8 10 shr eax,0x10 - 241f: a8 80 test al,0x80 - 2421: 0f 84 30 3a 00 00 je 5e57 - 2427: 83 e0 7f and eax,0x7f - 242a: 48 c1 e0 04 shl rax,0x4 - 242e: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - if (lessthan != GETARG_A(i)) - 2433: 41 c1 e8 08 shr r8d,0x8 - int lessthan = (ivalue(rb) < ivalue(rc)); - 2437: 48 8b 00 mov rax,QWORD PTR [rax] - if (lessthan != GETARG_A(i)) - 243a: 41 83 e0 7f and r8d,0x7f - int lessthan = (ivalue(rb) < ivalue(rc)); - 243e: 48 39 02 cmp QWORD PTR [rdx],rax - 2441: 0f 9c c0 setl al - 2444: 0f b6 c0 movzx eax,al - if (lessthan != GETARG_A(i)) - 2447: 41 39 c0 cmp r8d,eax - 244a: 0f 84 29 4b 00 00 je 6f79 - pc++; - 2450: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2454: 48 8d 58 04 lea rbx,[rax+0x4] - 2458: 44 8b 00 mov r8d,DWORD PTR [rax] - 245b: 45 85 ed test r13d,r13d - 245e: 0f 85 25 57 00 00 jne 7b89 - 2464: 44 89 c5 mov ebp,r8d - 2467: 41 0f b6 c0 movzx eax,r8b - 246b: c1 ed 08 shr ebp,0x8 - 246e: 48 89 c2 mov rdx,rax - 2471: 83 e5 7f and ebp,0x7f - 2474: 48 c1 e5 04 shl rbp,0x4 - 2478: 4c 01 e5 add rbp,r12 - 247b: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 247f: 44 89 c0 mov eax,r8d - 2482: c1 e8 18 shr eax,0x18 - 2485: a8 80 test al,0x80 - 2487: 0f 85 de 3a 00 00 jne 5f6b - 248d: 48 c1 e0 04 shl rax,0x4 - 2491: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 2495: 44 89 c0 mov eax,r8d - 2498: c1 e8 10 shr eax,0x10 - 249b: a8 80 test al,0x80 - 249d: 0f 84 e6 3a 00 00 je 5f89 - 24a3: 83 e0 7f and eax,0x7f - 24a6: 48 c1 e0 04 shl rax,0x4 - 24aa: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - if (equals != GETARG_A(i)) - 24af: 41 c1 e8 08 shr r8d,0x8 - int equals = (fltvalue(rb) == fltvalue(rc)); - 24b3: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 24b7: 31 d2 xor edx,edx - if (equals != GETARG_A(i)) - 24b9: 41 83 e0 7f and r8d,0x7f - int equals = (fltvalue(rb) == fltvalue(rc)); - 24bd: 66 0f 2e 00 ucomisd xmm0,QWORD PTR [rax] - 24c1: b8 00 00 00 00 mov eax,0x0 - 24c6: 0f 9b c2 setnp dl - 24c9: 0f 44 c2 cmove eax,edx - if (equals != GETARG_A(i)) - 24cc: 41 39 c0 cmp r8d,eax - 24cf: 0f 84 38 4b 00 00 je 700d - pc++; - 24d5: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 24d9: 48 8d 58 04 lea rbx,[rax+0x4] - 24dd: 44 8b 00 mov r8d,DWORD PTR [rax] - 24e0: 45 85 ed test r13d,r13d - 24e3: 0f 85 21 55 00 00 jne 7a0a - 24e9: 44 89 c5 mov ebp,r8d - 24ec: 41 0f b6 c0 movzx eax,r8b - 24f0: c1 ed 08 shr ebp,0x8 - 24f3: 48 89 c2 mov rdx,rax - 24f6: 83 e5 7f and ebp,0x7f - 24f9: 48 c1 e5 04 shl rbp,0x4 - 24fd: 4c 01 e5 add rbp,r12 - 2500: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2504: 44 89 c0 mov eax,r8d - 2507: c1 e8 18 shr eax,0x18 - 250a: a8 80 test al,0x80 - 250c: 0f 85 cd 39 00 00 jne 5edf - 2512: 48 c1 e0 04 shl rax,0x4 - 2516: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 251a: 44 89 c0 mov eax,r8d - 251d: c1 e8 10 shr eax,0x10 - 2520: a8 80 test al,0x80 - 2522: 0f 84 d5 39 00 00 je 5efd - 2528: 83 e0 7f and eax,0x7f - 252b: 48 c1 e0 04 shl rax,0x4 - 252f: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - if (equals != GETARG_A(i)) - 2534: 41 c1 e8 08 shr r8d,0x8 - int equals = (ivalue(rb) == ivalue(rc)); - 2538: 48 8b 00 mov rax,QWORD PTR [rax] - if (equals != GETARG_A(i)) - 253b: 41 83 e0 7f and r8d,0x7f - int equals = (ivalue(rb) == ivalue(rc)); - 253f: 48 39 02 cmp QWORD PTR [rdx],rax - 2542: 0f 94 c0 sete al - 2545: 0f b6 c0 movzx eax,al - if (equals != GETARG_A(i)) - 2548: 41 39 c0 cmp r8d,eax - 254b: 0f 84 f3 4a 00 00 je 7044 - pc++; - 2551: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2555: 48 8d 58 04 lea rbx,[rax+0x4] - 2559: 44 8b 00 mov r8d,DWORD PTR [rax] - 255c: 45 85 ed test r13d,r13d - 255f: 0f 85 50 55 00 00 jne 7ab5 - 2565: 44 89 c5 mov ebp,r8d - 2568: 41 0f b6 c0 movzx eax,r8b - 256c: c1 ed 08 shr ebp,0x8 - 256f: 48 89 c2 mov rdx,rax - 2572: 83 e5 7f and ebp,0x7f - 2575: 48 c1 e5 04 shl rbp,0x4 - 2579: 4c 01 e5 add rbp,r12 - 257c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 2580: 41 c1 e8 18 shr r8d,0x18 - 2584: 44 89 c0 mov eax,r8d - lua_Integer ib = ivalue(rb); - 2587: 48 c1 e0 04 shl rax,0x4 - setivalue(ra, intop(^, ~l_castS2U(0), ib)); - 258b: 49 8b 04 04 mov rax,QWORD PTR [r12+rax*1] - 258f: 48 f7 d0 not rax - 2592: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 2596: b8 13 00 00 00 mov eax,0x13 - 259b: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 259f: 48 89 d8 mov rax,rbx - 25a2: 48 83 c3 04 add rbx,0x4 - 25a6: 44 8b 00 mov r8d,DWORD PTR [rax] - 25a9: 45 85 ed test r13d,r13d - 25ac: 0f 85 ee 62 00 00 jne 88a0 - 25b2: 44 89 c5 mov ebp,r8d - 25b5: 41 0f b6 c0 movzx eax,r8b - 25b9: c1 ed 08 shr ebp,0x8 - 25bc: 48 89 c2 mov rdx,rax - 25bf: 83 e5 7f and ebp,0x7f - 25c2: 48 c1 e5 04 shl rbp,0x4 - 25c6: 4c 01 e5 add rbp,r12 - 25c9: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 25cd: 44 89 c0 mov eax,r8d - 25d0: c1 e8 18 shr eax,0x18 - 25d3: a8 80 test al,0x80 - 25d5: 0f 85 ba 38 00 00 jne 5e95 - 25db: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 25df: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 25e3: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 25e6: 41 f6 c0 80 test r8b,0x80 - 25ea: 0f 84 bf 38 00 00 je 5eaf - 25f0: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - 25f5: 41 83 e0 7f and r8d,0x7f - 25f9: 49 c1 e0 04 shl r8,0x4 - 25fd: 4a 8d 14 01 lea rdx,[rcx+r8*1] - lua_Integer ic = ivalue(rc); - 2601: 48 8b 0a mov rcx,QWORD PTR [rdx] - setivalue(ra, luaV_shiftl(ivalue(rb), -ic)); - 2604: 48 8b 10 mov rdx,QWORD PTR [rax] - if (y < 0) { /* shift right? */ - 2607: 48 85 c9 test rcx,rcx - 260a: 0f 8f ba 38 00 00 jg 5eca - if (y <= -NBITS) return 0; - 2610: 31 c0 xor eax,eax - if (y >= NBITS) return 0; - 2612: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - 2616: 7c 09 jl 2621 - setivalue(ra, luaV_shiftl(ivalue(rb), -ic)); - 2618: 48 f7 d9 neg rcx - else return intop(<<, x, y); - 261b: 48 89 d0 mov rax,rdx - 261e: 48 d3 e0 shl rax,cl - setivalue(ra, luaV_shiftl(ivalue(rb), -ic)); - 2621: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 2625: b8 13 00 00 00 mov eax,0x13 - 262a: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 262e: 48 89 d8 mov rax,rbx - 2631: 48 83 c3 04 add rbx,0x4 - 2635: 44 8b 00 mov r8d,DWORD PTR [rax] - 2638: 45 85 ed test r13d,r13d - 263b: 0f 85 a9 54 00 00 jne 7aea - 2641: 44 89 c5 mov ebp,r8d - 2644: 41 0f b6 c0 movzx eax,r8b - 2648: c1 ed 08 shr ebp,0x8 - 264b: 48 89 c2 mov rdx,rax - 264e: 83 e5 7f and ebp,0x7f - 2651: 48 c1 e5 04 shl rbp,0x4 - 2655: 4c 01 e5 add rbp,r12 - 2658: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 265c: 44 89 c0 mov eax,r8d - 265f: c1 e8 18 shr eax,0x18 - 2662: a8 80 test al,0x80 - 2664: 0f 84 b8 38 00 00 je 5f22 - 266a: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 266d: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 2671: 48 c1 e0 04 shl rax,0x4 - 2675: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 267a: 41 f6 c0 80 test r8b,0x80 - 267e: 0f 84 b3 38 00 00 je 5f37 - 2684: 41 83 e0 7f and r8d,0x7f - 2688: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - 268d: 49 c1 e0 04 shl r8,0x4 - 2691: 4a 8d 14 07 lea rdx,[rdi+r8*1] - setivalue(ra, luaV_shiftl(ivalue(rb), ivalue(rc))); - 2695: 48 8b 0a mov rcx,QWORD PTR [rdx] - 2698: 48 8b 10 mov rdx,QWORD PTR [rax] - if (y < 0) { /* shift right? */ - 269b: 48 85 c9 test rcx,rcx - 269e: 0f 88 ae 38 00 00 js 5f52 - else return intop(<<, x, y); - 26a4: 48 d3 e2 shl rdx,cl - 26a7: b8 00 00 00 00 mov eax,0x0 - 26ac: 48 83 f9 40 cmp rcx,0x40 - 26b0: 48 0f 4c c2 cmovl rax,rdx - setivalue(ra, luaV_shiftl(ivalue(rb), ivalue(rc))); - 26b4: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 26b8: b8 13 00 00 00 mov eax,0x13 - 26bd: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 26c1: 48 89 d8 mov rax,rbx - 26c4: 48 83 c3 04 add rbx,0x4 - 26c8: 44 8b 00 mov r8d,DWORD PTR [rax] - 26cb: 45 85 ed test r13d,r13d - 26ce: 0f 85 4b 54 00 00 jne 7b1f - 26d4: 44 89 c5 mov ebp,r8d - 26d7: 41 0f b6 c0 movzx eax,r8b - 26db: c1 ed 08 shr ebp,0x8 - 26de: 48 89 c2 mov rdx,rax - 26e1: 83 e5 7f and ebp,0x7f - 26e4: 48 c1 e5 04 shl rbp,0x4 - 26e8: 4c 01 e5 add rbp,r12 - 26eb: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 26ef: 45 89 c7 mov r15d,r8d - TValue *rc = RKC(i); - 26f2: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RB(i); - 26f6: 41 c1 ef 18 shr r15d,0x18 - 26fa: 49 c1 e7 04 shl r15,0x4 - 26fe: 4d 01 e7 add r15,r12 - TValue *rc = RKC(i); - 2701: 41 f6 c0 80 test r8b,0x80 - 2705: 0f 85 01 38 00 00 jne 5f0c - 270b: 45 0f b6 c0 movzx r8d,r8b - 270f: 49 c1 e0 04 shl r8,0x4 - 2713: 4b 8d 14 04 lea rdx,[r12+r8*1] - GETTABLE_INLINE_PROTECTED_I(L, rb, rc, ra); - 2717: 41 0f b7 47 08 movzx eax,WORD PTR [r15+0x8] - 271c: 66 3d 05 80 cmp ax,0x8005 - 2720: 0f 85 4e 53 00 00 jne 7a74 - 2726: 49 8b 3f mov rdi,QWORD PTR [r15] - 2729: 48 8b 32 mov rsi,QWORD PTR [rdx] - 272c: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - 272f: 48 8d 4e ff lea rcx,[rsi-0x1] - 2733: 48 39 c1 cmp rcx,rax - 2736: 0f 83 a2 6b 00 00 jae 92de - 273c: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 2740: 48 c1 e6 04 shl rsi,0x4 - 2744: 4c 8d 44 30 f0 lea r8,[rax+rsi*1-0x10] - 2749: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 274e: 66 85 c0 test ax,ax - 2751: 0f 84 54 6b 00 00 je 92ab - 2757: 49 8b 10 mov rdx,QWORD PTR [r8] - 275a: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 275e: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 2762: 48 89 d8 mov rax,rbx - 2765: 48 83 c3 04 add rbx,0x4 - 2769: 44 8b 00 mov r8d,DWORD PTR [rax] - 276c: 45 85 ed test r13d,r13d - 276f: 0f 85 ca 52 00 00 jne 7a3f - 2775: 44 89 c5 mov ebp,r8d - 2778: 41 0f b6 c0 movzx eax,r8b - 277c: c1 ed 08 shr ebp,0x8 - 277f: 48 89 c2 mov rdx,rax - 2782: 83 e5 7f and ebp,0x7f - 2785: 48 c1 e5 04 shl rbp,0x4 - 2789: 4c 01 e5 add rbp,r12 - 278c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - savepc(L); /* in case of allocation errors */ - 2790: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - t = raviH_new(L, RAVI_TARRAYFLT, 0); - 2795: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 279a: 31 d2 xor edx,edx - 279c: be 04 00 00 00 mov esi,0x4 - savepc(L); /* in case of allocation errors */ - 27a1: 48 89 5f 28 mov QWORD PTR [rdi+0x28],rbx - t = raviH_new(L, RAVI_TARRAYFLT, 0); - 27a5: 4c 89 ff mov rdi,r15 - 27a8: e8 00 00 00 00 call 27ad - setfarrayvalue(L, ra, t); - 27ad: 41 ba 25 80 ff ff mov r10d,0xffff8025 - 27b3: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - checkGC(L, ra + 1); - 27b7: 49 8b 47 18 mov rax,QWORD PTR [r15+0x18] - setfarrayvalue(L, ra, t); - 27bb: 66 44 89 55 08 mov WORD PTR [rbp+0x8],r10w - checkGC(L, ra + 1); - 27c0: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - 27c5: 0f 8f 78 40 00 00 jg 6843 - vmbreak; - 27cb: 48 89 d8 mov rax,rbx - 27ce: 48 83 c3 04 add rbx,0x4 - 27d2: 44 8b 00 mov r8d,DWORD PTR [rax] - 27d5: 45 85 ed test r13d,r13d - 27d8: 0f 85 6a 64 00 00 jne 8c48 - 27de: 44 89 c5 mov ebp,r8d - 27e1: 41 0f b6 c0 movzx eax,r8b - 27e5: c1 ed 08 shr ebp,0x8 - 27e8: 48 89 c2 mov rdx,rax - 27eb: 83 e5 7f and ebp,0x7f - 27ee: 48 c1 e5 04 shl rbp,0x4 - 27f2: 4c 01 e5 add rbp,r12 - 27f5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int n = cast_int(base - ci->func) - cl->p->numparams - 1; - 27f9: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - 27fe: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 2803: 4c 89 e0 mov rax,r12 - int b = GETARG_B(i) - 1; /* required results */ - 2806: 44 89 c6 mov esi,r8d - 2809: c1 ee 18 shr esi,0x18 - 280c: 41 bf 00 00 00 00 mov r15d,0x0 - int n = cast_int(base - ci->func) - cl->p->numparams - 1; - 2812: 48 8b 57 18 mov rdx,QWORD PTR [rdi+0x18] - 2816: 48 2b 01 sub rax,QWORD PTR [rcx] - int b = GETARG_B(i) - 1; /* required results */ - 2819: 83 ee 01 sub esi,0x1 - int n = cast_int(base - ci->func) - cl->p->numparams - 1; - 281c: 48 c1 f8 04 sar rax,0x4 - 2820: 0f b6 52 0a movzx edx,BYTE PTR [rdx+0xa] - 2824: 29 d0 sub eax,edx - if (n < 0) /* less arguments than parameters? */ - 2826: 83 e8 01 sub eax,0x1 - 2829: 44 0f 49 f8 cmovns r15d,eax - if (b < 0) { /* B == 0? */ - 282d: 83 fe ff cmp esi,0xffffffff - 2830: 0f 84 17 41 00 00 je 694d - 2836: 41 39 f7 cmp r15d,esi - 2839: 89 f7 mov edi,esi - 283b: 41 0f 4e ff cmovle edi,r15d - for (j = 0; j < b && j < n; j++) - 283f: 85 ff test edi,edi - 2841: 74 39 je 287c - 2843: 44 8d 47 ff lea r8d,[rdi-0x1] - 2847: 4d 63 ff movsxd r15,r15d - 284a: 4c 89 e2 mov rdx,r12 - 284d: 31 c0 xor eax,eax - 284f: 49 83 c0 01 add r8,0x1 - 2853: 49 c1 e7 04 shl r15,0x4 - 2857: 49 c1 e0 04 shl r8,0x4 - 285b: 4c 29 fa sub rdx,r15 - 285e: 66 90 xchg ax,ax - setobjs2s(L, ra + j, base - n + j); - 2860: 48 8b 0c 02 mov rcx,QWORD PTR [rdx+rax*1] - 2864: 48 89 4c 05 00 mov QWORD PTR [rbp+rax*1+0x0],rcx - 2869: 0f b7 4c 02 08 movzx ecx,WORD PTR [rdx+rax*1+0x8] - 286e: 66 89 4c 05 08 mov WORD PTR [rbp+rax*1+0x8],cx - 2873: 48 83 c0 10 add rax,0x10 - for (j = 0; j < b && j < n; j++) - 2877: 49 39 c0 cmp r8,rax - 287a: 75 e4 jne 2860 - for (; j < b; j++) /* complete required results with nil */ - 287c: 39 f7 cmp edi,esi - 287e: 7d 2f jge 28af - 2880: 8d 56 ff lea edx,[rsi-0x1] - 2883: 48 63 cf movsxd rcx,edi - 2886: 29 fa sub edx,edi - 2888: 48 89 c8 mov rax,rcx - 288b: 48 01 ca add rdx,rcx - 288e: 48 c1 e0 04 shl rax,0x4 - 2892: 48 c1 e2 04 shl rdx,0x4 - 2896: 48 01 e8 add rax,rbp - 2899: 48 8d 54 15 10 lea rdx,[rbp+rdx*1+0x10] - 289e: 66 90 xchg ax,ax - setnilvalue(ra + j); - 28a0: 31 c9 xor ecx,ecx - 28a2: 48 83 c0 10 add rax,0x10 - 28a6: 66 89 48 f8 mov WORD PTR [rax-0x8],cx - for (; j < b; j++) /* complete required results with nil */ - 28aa: 48 39 c2 cmp rdx,rax - 28ad: 75 f1 jne 28a0 - vmbreak; - 28af: 48 89 d8 mov rax,rbx - 28b2: 48 83 c3 04 add rbx,0x4 - 28b6: 44 8b 00 mov r8d,DWORD PTR [rax] - 28b9: 45 85 ed test r13d,r13d - 28bc: 0f 85 c8 5d 00 00 jne 868a - 28c2: 44 89 c5 mov ebp,r8d - 28c5: 41 0f b6 c0 movzx eax,r8b - 28c9: c1 ed 08 shr ebp,0x8 - 28cc: 48 89 c2 mov rdx,rax - 28cf: 83 e5 7f and ebp,0x7f - 28d2: 48 c1 e5 04 shl rbp,0x4 - 28d6: 4c 01 e5 add rbp,r12 - 28d9: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - Proto *p = cl->p->p[GETARG_Bx(i)]; - 28dd: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - 28e2: 41 c1 e8 10 shr r8d,0x10 - 28e6: 44 89 c0 mov eax,r8d - 28e9: 48 8b 57 18 mov rdx,QWORD PTR [rdi+0x18] - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - 28ed: 4c 8d 7f 20 lea r15,[rdi+0x20] - 28f1: 4c 89 fe mov rsi,r15 - Proto *p = cl->p->p[GETARG_Bx(i)]; - 28f4: 48 8b 52 40 mov rdx,QWORD PTR [rdx+0x40] - 28f8: 4c 8b 1c c2 mov r11,QWORD PTR [rdx+rax*8] - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - 28fc: 4c 89 e2 mov rdx,r12 - 28ff: 4c 89 df mov rdi,r11 - 2902: e8 f9 d6 ff ff call 0 - if (ncl == NULL) { /* no match? */ - 2907: 48 85 c0 test rax,rax - 290a: 0f 84 d3 4d 00 00 je 76e3 - setclLvalue(L, ra, ncl); /* push cashed closure */ - 2910: be 06 80 ff ff mov esi,0xffff8006 - 2915: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 2919: 66 89 75 08 mov WORD PTR [rbp+0x8],si - checkGC(L, ra + 1); - 291d: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 2922: 49 8b 47 18 mov rax,QWORD PTR [r15+0x18] - 2926: 4c 89 ff mov rdi,r15 - 2929: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - 292e: 0f 8f ae 3f 00 00 jg 68e2 - vmbreak; - 2934: 48 89 d8 mov rax,rbx - 2937: 48 83 c3 04 add rbx,0x4 - 293b: 44 8b 00 mov r8d,DWORD PTR [rax] - 293e: 45 85 ed test r13d,r13d - 2941: 0f 85 a0 63 00 00 jne 8ce7 - 2947: 44 89 c5 mov ebp,r8d - 294a: 41 0f b6 c0 movzx eax,r8b - 294e: c1 ed 08 shr ebp,0x8 - 2951: 48 89 c2 mov rdx,rax - 2954: 83 e5 7f and ebp,0x7f - 2957: 48 c1 e5 04 shl rbp,0x4 - 295b: 4c 01 e5 add rbp,r12 - 295e: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2962: 44 89 c0 mov eax,r8d - 2965: c1 e8 18 shr eax,0x18 - 2968: a8 80 test al,0x80 - 296a: 0f 85 e0 36 00 00 jne 6050 - 2970: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 2974: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 2978: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 297c: 41 f6 c0 80 test r8b,0x80 - 2980: 0f 84 e8 36 00 00 je 606e - 2986: 41 83 e0 7f and r8d,0x7f - 298a: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 298f: 49 c1 e0 04 shl r8,0x4 - 2993: 4c 01 c0 add rax,r8 - setivalue(ra, intop(^, ivalue(rb), ivalue(rc))); - 2996: 48 8b 12 mov rdx,QWORD PTR [rdx] - 2999: 48 33 10 xor rdx,QWORD PTR [rax] - 299c: b8 13 00 00 00 mov eax,0x13 - 29a1: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 29a5: 48 89 d8 mov rax,rbx - 29a8: 48 83 c3 04 add rbx,0x4 - setivalue(ra, intop(^, ivalue(rb), ivalue(rc))); - 29ac: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 29b0: 44 8b 00 mov r8d,DWORD PTR [rax] - 29b3: 45 85 ed test r13d,r13d - 29b6: 0f 85 7a 4f 00 00 jne 7936 - 29bc: 44 89 c5 mov ebp,r8d - 29bf: 41 0f b6 c0 movzx eax,r8b - 29c3: c1 ed 08 shr ebp,0x8 - 29c6: 48 89 c2 mov rdx,rax - 29c9: 83 e5 7f and ebp,0x7f - 29cc: 48 c1 e5 04 shl rbp,0x4 - 29d0: 4c 01 e5 add rbp,r12 - 29d3: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 29d7: 44 89 c0 mov eax,r8d - 29da: c1 e8 18 shr eax,0x18 - 29dd: a8 80 test al,0x80 - 29df: 0f 85 9a 36 00 00 jne 607f - 29e5: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 29e9: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 29ed: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 29f1: 41 f6 c0 80 test r8b,0x80 - 29f5: 0f 84 a2 36 00 00 je 609d - 29fb: 41 83 e0 7f and r8d,0x7f - 29ff: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 2a04: 49 c1 e0 04 shl r8,0x4 - 2a08: 4c 01 c0 add rax,r8 - setivalue(ra, intop(| , ivalue(rb), ivalue(rc))); - 2a0b: 48 8b 12 mov rdx,QWORD PTR [rdx] - 2a0e: 48 0b 10 or rdx,QWORD PTR [rax] - 2a11: b8 13 00 00 00 mov eax,0x13 - 2a16: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 2a1a: 48 89 d8 mov rax,rbx - 2a1d: 48 83 c3 04 add rbx,0x4 - setivalue(ra, intop(| , ivalue(rb), ivalue(rc))); - 2a21: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 2a25: 44 8b 00 mov r8d,DWORD PTR [rax] - 2a28: 45 85 ed test r13d,r13d - 2a2b: 0f 85 d0 4e 00 00 jne 7901 - 2a31: 44 89 c5 mov ebp,r8d - 2a34: 41 0f b6 c0 movzx eax,r8b - 2a38: c1 ed 08 shr ebp,0x8 - 2a3b: 48 89 c2 mov rdx,rax - 2a3e: 83 e5 7f and ebp,0x7f - 2a41: 48 c1 e5 04 shl rbp,0x4 - 2a45: 4c 01 e5 add rbp,r12 - 2a48: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2a4c: 44 89 c0 mov eax,r8d - 2a4f: c1 e8 18 shr eax,0x18 - 2a52: a8 80 test al,0x80 - 2a54: 0f 85 0c 34 00 00 jne 5e66 - 2a5a: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 2a5e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 2a62: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 2a66: 41 f6 c0 80 test r8b,0x80 - 2a6a: 0f 84 14 34 00 00 je 5e84 - 2a70: 41 83 e0 7f and r8d,0x7f - 2a74: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 2a79: 49 c1 e0 04 shl r8,0x4 - 2a7d: 4c 01 c0 add rax,r8 - setivalue(ra, intop(&, ivalue(rb), ivalue(rc))); - 2a80: 48 8b 12 mov rdx,QWORD PTR [rdx] - 2a83: 48 23 10 and rdx,QWORD PTR [rax] - vmbreak; - 2a86: 48 89 d8 mov rax,rbx - 2a89: 48 83 c3 04 add rbx,0x4 - setivalue(ra, intop(&, ivalue(rb), ivalue(rc))); - 2a8d: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - 2a91: ba 13 00 00 00 mov edx,0x13 - vmbreak; - 2a96: 44 8b 00 mov r8d,DWORD PTR [rax] - setivalue(ra, intop(&, ivalue(rb), ivalue(rc))); - 2a99: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - vmbreak; - 2a9d: 45 85 ed test r13d,r13d - 2aa0: 0f 85 ae 50 00 00 jne 7b54 - 2aa6: 44 89 c5 mov ebp,r8d - 2aa9: 41 0f b6 c0 movzx eax,r8b - 2aad: c1 ed 08 shr ebp,0x8 - 2ab0: 48 89 c2 mov rdx,rax - 2ab3: 83 e5 7f and ebp,0x7f - 2ab6: 48 c1 e5 04 shl rbp,0x4 - 2aba: 4c 01 e5 add rbp,r12 - 2abd: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - vmbreak; - 2ac1: 48 89 d8 mov rax,rbx - 2ac4: 48 83 c3 04 add rbx,0x4 - 2ac8: 44 8b 00 mov r8d,DWORD PTR [rax] - 2acb: 45 85 ed test r13d,r13d - 2ace: 0f 85 ea 50 00 00 jne 7bbe - 2ad4: 44 89 c5 mov ebp,r8d - 2ad7: 41 0f b6 c0 movzx eax,r8b - 2adb: c1 ed 08 shr ebp,0x8 - 2ade: 48 89 c2 mov rdx,rax - 2ae1: 83 e5 7f and ebp,0x7f - 2ae4: 48 c1 e5 04 shl rbp,0x4 - 2ae8: 4c 01 e5 add rbp,r12 - 2aeb: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (ttisinteger(init) && ttisinteger(pstep) && - 2aef: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - TValue *plimit = ra + 1; - 2af4: 4c 8d 4d 10 lea r9,[rbp+0x10] - TValue *pstep = ra + 2; - 2af8: 4c 8d 7d 20 lea r15,[rbp+0x20] - if (ttisinteger(init) && ttisinteger(pstep) && - 2afc: 0f 84 ed 3e 00 00 je 69ef - savepc(L); /* in case of errors */ - 2b02: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - if (!tonumber(plimit, &nlimit)) - 2b07: 66 41 83 79 08 03 cmp WORD PTR [r9+0x8],0x3 - savepc(L); /* in case of errors */ - 2b0d: 48 89 58 28 mov QWORD PTR [rax+0x28],rbx - if (!tonumber(plimit, &nlimit)) - 2b11: 0f 85 ab 63 00 00 jne 8ec2 - 2b17: f2 41 0f 10 01 movsd xmm0,QWORD PTR [r9] - 2b1c: f2 0f 11 84 24 c8 00 movsd QWORD PTR [rsp+0xc8],xmm0 - 2b23: 00 00 - setfltvalue(plimit, nlimit); - 2b25: 41 ba 03 00 00 00 mov r10d,0x3 - 2b2b: f2 41 0f 11 01 movsd QWORD PTR [r9],xmm0 - 2b30: 66 45 89 51 08 mov WORD PTR [r9+0x8],r10w - if (!tonumber(pstep, &nstep)) - 2b35: 66 41 83 7f 08 03 cmp WORD PTR [r15+0x8],0x3 - 2b3b: 0f 85 bb 63 00 00 jne 8efc - 2b41: f2 41 0f 10 0f movsd xmm1,QWORD PTR [r15] - 2b46: f2 0f 11 8c 24 d0 00 movsd QWORD PTR [rsp+0xd0],xmm1 - 2b4d: 00 00 - setfltvalue(pstep, nstep); - 2b4f: 41 b9 03 00 00 00 mov r9d,0x3 - 2b55: f2 41 0f 11 0f movsd QWORD PTR [r15],xmm1 - 2b5a: 66 45 89 4f 08 mov WORD PTR [r15+0x8],r9w - if (!tonumber(init, &ninit)) - 2b5f: 66 83 7d 08 03 cmp WORD PTR [rbp+0x8],0x3 - 2b64: 0f 85 65 66 00 00 jne 91cf - 2b6a: f2 0f 10 45 00 movsd xmm0,QWORD PTR [rbp+0x0] - setfltvalue(init, luai_numsub(L, ninit, nstep)); - 2b6f: f2 0f 5c c1 subsd xmm0,xmm1 - 2b73: bf 03 00 00 00 mov edi,0x3 - 2b78: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - 2b7c: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - pc += GETARG_sBx(i); - 2b81: 41 c1 e8 10 shr r8d,0x10 - 2b85: 44 89 c0 mov eax,r8d - 2b88: 48 8d 84 83 00 00 fe lea rax,[rbx+rax*4-0x20000] - 2b8f: ff - vmbreak; - 2b90: 48 8d 58 04 lea rbx,[rax+0x4] - 2b94: 44 8b 00 mov r8d,DWORD PTR [rax] - 2b97: 45 85 ed test r13d,r13d - 2b9a: 0f 85 b0 5f 00 00 jne 8b50 - 2ba0: 44 89 c5 mov ebp,r8d - 2ba3: 41 0f b6 c0 movzx eax,r8b - 2ba7: c1 ed 08 shr ebp,0x8 - 2baa: 48 89 c2 mov rdx,rax - 2bad: 83 e5 7f and ebp,0x7f - 2bb0: 48 c1 e5 04 shl rbp,0x4 - 2bb4: 4c 01 e5 add rbp,r12 - 2bb7: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (RAVI_LIKELY(ttisinteger(ra))) { /* integer loop? */ - 2bbb: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 2bc0: 0f 85 bf 5f 00 00 jne 8b85 - lua_Integer step = ivalue(ra + 2); - 2bc6: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - lua_Integer idx = intop(+, ivalue(ra), step); /* increment index */ - 2bca: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - lua_Integer limit = ivalue(ra + 1); - 2bce: 48 8b 4d 10 mov rcx,QWORD PTR [rbp+0x10] - lua_Integer idx = intop(+, ivalue(ra), step); /* increment index */ - 2bd2: 48 01 c2 add rdx,rax - if (RAVI_LIKELY((0 < step)) ? (idx <= limit) : (limit <= idx)) { - 2bd5: 48 85 c0 test rax,rax - 2bd8: 0f 8e 2a 66 00 00 jle 9208 - 2bde: 48 39 ca cmp rdx,rcx - 2be1: 0f 9e c1 setle cl - 2be4: 48 89 d8 mov rax,rbx - 2be7: 84 c9 test cl,cl - 2be9: 0f 85 1d 3c 00 00 jne 680c - vmbreak; - 2bef: 48 8d 58 04 lea rbx,[rax+0x4] - 2bf3: 44 8b 00 mov r8d,DWORD PTR [rax] - 2bf6: 45 85 ed test r13d,r13d - 2bf9: 0f 85 37 5c 00 00 jne 8836 - 2bff: 44 89 c5 mov ebp,r8d - 2c02: 41 0f b6 c0 movzx eax,r8b - 2c06: c1 ed 08 shr ebp,0x8 - 2c09: 48 89 c2 mov rdx,rax - 2c0c: 83 e5 7f and ebp,0x7f - 2c0f: 48 c1 e5 04 shl rbp,0x4 - 2c13: 4c 01 e5 add rbp,r12 - 2c16: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (cl->p->sizep > 0) luaF_close(L, base); - 2c1a: 48 8b 44 24 20 mov rax,QWORD PTR [rsp+0x20] - int b = GETARG_B(i); - 2c1f: 41 c1 e8 18 shr r8d,0x18 - 2c23: 45 89 c5 mov r13d,r8d - if (cl->p->sizep > 0) luaF_close(L, base); - 2c26: 48 8b 40 18 mov rax,QWORD PTR [rax+0x18] - 2c2a: 8b 78 20 mov edi,DWORD PTR [rax+0x20] - 2c2d: 85 ff test edi,edi - 2c2f: 0f 8f fc 3b 00 00 jg 6831 - savepc(L); - 2c35: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - int nres = (b != 0 ? b - 1 : cast_int(L->top - ra)); - 2c3a: 41 8d 4d ff lea ecx,[r13-0x1] - savepc(L); - 2c3e: 48 89 58 28 mov QWORD PTR [rax+0x28],rbx - int nres = (b != 0 ? b - 1 : cast_int(L->top - ra)); - 2c42: 45 85 ed test r13d,r13d - 2c45: 0f 84 e8 33 00 00 je 6033 - b = luaD_poscall(L, ci, ra, nres); - 2c4b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 2c50: 48 8b 5c 24 08 mov rbx,QWORD PTR [rsp+0x8] - 2c55: 48 89 ea mov rdx,rbp - 2c58: 4c 89 fe mov rsi,r15 - 2c5b: 48 89 df mov rdi,rbx - 2c5e: e8 00 00 00 00 call 2c63 - if (ci->callstatus & CIST_FRESH) /* 'ci' still the called one */ { - 2c63: 41 f6 47 42 08 test BYTE PTR [r15+0x42],0x8 - 2c68: 0f 85 3b 6b 00 00 jne 97a9 - ci = L->ci; - 2c6e: 48 8b 4b 20 mov rcx,QWORD PTR [rbx+0x20] - 2c72: 0f b6 93 c8 00 00 00 movzx edx,BYTE PTR [rbx+0xc8] - 2c79: 48 89 4c 24 18 mov QWORD PTR [rsp+0x18],rcx - if (b) L->top = ci->top; - 2c7e: 85 c0 test eax,eax - 2c80: 0f 84 78 3b 00 00 je 67fe - 2c86: 48 8b 41 08 mov rax,QWORD PTR [rcx+0x8] - 2c8a: 48 89 43 10 mov QWORD PTR [rbx+0x10],rax - 2c8e: 48 8b 41 28 mov rax,QWORD PTR [rcx+0x28] - 2c92: e9 a2 f0 ff ff jmp 1d39 - if (b != 0) L->top = ra+b; /* else previous instruction set top */ - 2c97: 41 c1 e8 18 shr r8d,0x18 - 2c9b: 0f 85 78 33 00 00 jne 6019 - savepc(L); - 2ca1: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - if (luaD_precall(L, ra, LUA_MULTRET, - 2ca6: 48 89 ee mov rsi,rbp - 2ca9: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 2cae: b9 01 00 00 00 mov ecx,0x1 - 2cb3: ba ff ff ff ff mov edx,0xffffffff - savepc(L); - 2cb8: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - if (luaD_precall(L, ra, LUA_MULTRET, - 2cbc: 48 89 ef mov rdi,rbp - 2cbf: e8 00 00 00 00 call 2cc4 - 2cc4: 85 c0 test eax,eax - 2cc6: 0f 84 19 6a 00 00 je 96e5 - vmbreak; - 2ccc: 48 89 d8 mov rax,rbx - Protect((void)0); /* update 'base' */ - 2ccf: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 2cd3: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - vmbreak; - 2cd7: 48 83 c3 04 add rbx,0x4 - 2cdb: 44 8b 00 mov r8d,DWORD PTR [rax] - 2cde: f6 85 c8 00 00 00 0c test BYTE PTR [rbp+0xc8],0xc - 2ce5: 0f 85 45 64 00 00 jne 9130 - 2ceb: 45 31 ed xor r13d,r13d - 2cee: 44 89 c5 mov ebp,r8d - 2cf1: 41 0f b6 c0 movzx eax,r8b - 2cf5: c1 ed 08 shr ebp,0x8 - 2cf8: 48 89 c2 mov rdx,rax - 2cfb: 83 e5 7f and ebp,0x7f - 2cfe: 48 c1 e5 04 shl rbp,0x4 - 2d02: 4c 01 e5 add rbp,r12 - 2d05: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int nresults = GETARG_C(i) - 1; - 2d09: 45 89 c5 mov r13d,r8d - 2d0c: 41 c1 ed 10 shr r13d,0x10 - 2d10: 45 0f b6 ed movzx r13d,r13b - 2d14: 41 83 ed 01 sub r13d,0x1 - if (b != 0) /* fixed number of arguments? */ - 2d18: 41 c1 e8 18 shr r8d,0x18 - 2d1c: 0f 85 fd 30 00 00 jne 5e1f - Protect(c_or_compiled = luaD_precall(L, ra, nresults, 1 /* OP_CALL */)); - 2d22: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 2d27: 48 89 ee mov rsi,rbp - 2d2a: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 2d2f: 44 89 ea mov edx,r13d - 2d32: b9 01 00 00 00 mov ecx,0x1 - 2d37: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 2d3b: 48 89 ef mov rdi,rbp - 2d3e: e8 00 00 00 00 call 2d43 - 2d43: 0f b6 95 c8 00 00 00 movzx edx,BYTE PTR [rbp+0xc8] - 2d4a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 2d4e: 89 d1 mov ecx,edx - 2d50: 83 e1 0c and ecx,0xc - if (c_or_compiled) { /* C or Lua JITed function? */ - 2d53: 85 c0 test eax,eax - 2d55: 0f 84 77 6a 00 00 je 97d2 - if (c_or_compiled == 1 && nresults >= 0) { - 2d5b: 83 f8 01 cmp eax,0x1 - 2d5e: 75 0d jne 2d6d - 2d60: 45 85 ed test r13d,r13d - 2d63: 78 08 js 2d6d - L->top = ci->top; /* adjust results */ - 2d65: 49 8b 47 08 mov rax,QWORD PTR [r15+0x8] - 2d69: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax - vmbreak; - 2d6d: 48 89 d8 mov rax,rbx - 2d70: 45 31 ed xor r13d,r13d - 2d73: 48 83 c3 04 add rbx,0x4 - 2d77: 44 8b 00 mov r8d,DWORD PTR [rax] - 2d7a: 84 c9 test cl,cl - 2d7c: 0f 85 18 64 00 00 jne 919a - 2d82: 44 89 c5 mov ebp,r8d - 2d85: 41 0f b6 c0 movzx eax,r8b - 2d89: c1 ed 08 shr ebp,0x8 - 2d8c: 48 89 c2 mov rdx,rax - 2d8f: 83 e5 7f and ebp,0x7f - 2d92: 48 c1 e5 04 shl rbp,0x4 - 2d96: 4c 01 e5 add rbp,r12 - 2d99: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 2d9d: 44 89 c0 mov eax,r8d - 2da0: c1 e8 18 shr eax,0x18 - 2da3: 48 c1 e0 04 shl rax,0x4 - 2da7: 4c 01 e0 add rax,r12 - if (GETARG_C(i) ? l_isfalse(rb) : !l_isfalse(rb)) - 2daa: 41 81 e0 00 00 ff 00 and r8d,0xff0000 - 2db1: 0f 84 04 30 00 00 je 5dbb - 2db7: 0f b7 50 08 movzx edx,WORD PTR [rax+0x8] - 2dbb: 66 85 d2 test dx,dx - 2dbe: 0f 85 65 44 00 00 jne 7229 - pc++; - 2dc4: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2dc8: 48 8d 58 04 lea rbx,[rax+0x4] - 2dcc: 44 8b 00 mov r8d,DWORD PTR [rax] - 2dcf: 45 85 ed test r13d,r13d - 2dd2: 0f 85 1b 4e 00 00 jne 7bf3 - 2dd8: 44 89 c5 mov ebp,r8d - 2ddb: 41 0f b6 c0 movzx eax,r8b - 2ddf: c1 ed 08 shr ebp,0x8 - 2de2: 48 89 c2 mov rdx,rax - 2de5: 83 e5 7f and ebp,0x7f - 2de8: 48 c1 e5 04 shl rbp,0x4 - 2dec: 4c 01 e5 add rbp,r12 - 2def: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (GETARG_C(i) ? l_isfalse(ra) : !l_isfalse(ra)) - 2df3: 41 81 e0 00 00 ff 00 and r8d,0xff0000 - 2dfa: 0f 84 f1 2e 00 00 je 5cf1 - 2e00: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 2e04: 66 85 c0 test ax,ax - 2e07: 0f 85 37 44 00 00 jne 7244 - pc++; - 2e0d: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2e11: 48 8d 58 04 lea rbx,[rax+0x4] - 2e15: 44 8b 00 mov r8d,DWORD PTR [rax] - 2e18: 45 85 ed test r13d,r13d - 2e1b: 0f 85 07 4e 00 00 jne 7c28 - 2e21: 44 89 c5 mov ebp,r8d - 2e24: 41 0f b6 c0 movzx eax,r8b - 2e28: c1 ed 08 shr ebp,0x8 - 2e2b: 48 89 c2 mov rdx,rax - 2e2e: 83 e5 7f and ebp,0x7f - 2e31: 48 c1 e5 04 shl rbp,0x4 - 2e35: 4c 01 e5 add rbp,r12 - 2e38: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2e3c: 44 89 c0 mov eax,r8d - 2e3f: c1 e8 18 shr eax,0x18 - 2e42: a8 80 test al,0x80 - 2e44: 0f 85 fa 2d 00 00 jne 5c44 - TValue *rc = RKC(i); - 2e4a: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 2e4d: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 2e51: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 2e54: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 2e57: f6 c2 80 test dl,0x80 - 2e5a: 0f 84 ff 2d 00 00 je 5c5f - if (ttisinteger(rb) && ttisinteger(rc)) - 2e60: 0f b7 70 08 movzx esi,WORD PTR [rax+0x8] - TValue *rc = RKC(i); - 2e64: 83 e2 7f and edx,0x7f - 2e67: 48 c1 e2 04 shl rdx,0x4 - 2e6b: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - if (ttisinteger(rb) && ttisinteger(rc)) - 2e70: 66 83 fe 13 cmp si,0x13 - 2e74: 0f 84 fd 2d 00 00 je 5c77 - else if (ttisnumber(rb) && ttisnumber(rc)) - 2e7a: 89 f1 mov ecx,esi - 2e7c: 83 e1 0f and ecx,0xf - 2e7f: 66 83 f9 03 cmp cx,0x3 - 2e83: 0f 84 ef 46 00 00 je 7578 - else Protect( - 2e89: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 2e8e: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 2e93: 48 89 c6 mov rsi,rax - 2e96: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 2e9b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 2e9f: 48 89 ef mov rdi,rbp - 2ea2: e8 00 00 00 00 call 2ea7 - 2ea7: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 2eab: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 2eb0: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 2eb7: 00 - 2eb8: 41 83 e5 0c and r13d,0xc - if (res != GETARG_A(i)) - 2ebc: 41 c1 e8 08 shr r8d,0x8 - 2ec0: 41 83 e0 7f and r8d,0x7f - 2ec4: 41 39 c0 cmp r8d,eax - 2ec7: 0f 84 ed 2d 00 00 je 5cba - pc++; - 2ecd: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2ed1: 48 8d 58 04 lea rbx,[rax+0x4] - 2ed5: 44 8b 00 mov r8d,DWORD PTR [rax] - 2ed8: 45 85 ed test r13d,r13d - 2edb: 0f 85 b1 4d 00 00 jne 7c92 - 2ee1: 44 89 c5 mov ebp,r8d - 2ee4: 41 0f b6 c0 movzx eax,r8b - 2ee8: c1 ed 08 shr ebp,0x8 - 2eeb: 48 89 c2 mov rdx,rax - 2eee: 83 e5 7f and ebp,0x7f - 2ef1: 48 c1 e5 04 shl rbp,0x4 - 2ef5: 4c 01 e5 add rbp,r12 - 2ef8: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2efc: 44 89 c0 mov eax,r8d - 2eff: c1 e8 18 shr eax,0x18 - 2f02: a8 80 test al,0x80 - 2f04: 0f 85 a6 29 00 00 jne 58b0 - TValue *rc = RKC(i); - 2f0a: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 2f0d: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 2f11: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 2f14: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 2f17: f6 c2 80 test dl,0x80 - 2f1a: 0f 84 ab 29 00 00 je 58cb - if (ttisinteger(rb) && ttisinteger(rc)) - 2f20: 0f b7 70 08 movzx esi,WORD PTR [rax+0x8] - TValue *rc = RKC(i); - 2f24: 83 e2 7f and edx,0x7f - 2f27: 48 c1 e2 04 shl rdx,0x4 - 2f2b: 48 03 54 24 10 add rdx,QWORD PTR [rsp+0x10] - if (ttisinteger(rb) && ttisinteger(rc)) - 2f30: 66 83 fe 13 cmp si,0x13 - 2f34: 0f 84 a9 29 00 00 je 58e3 - else if (ttisnumber(rb) && ttisnumber(rc)) - 2f3a: 89 f1 mov ecx,esi - 2f3c: 83 e1 0f and ecx,0xf - 2f3f: 66 83 f9 03 cmp cx,0x3 - 2f43: 0f 84 47 46 00 00 je 7590 - else Protect( - 2f49: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 2f4e: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 2f53: 48 89 c6 mov rsi,rax - 2f56: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 2f5b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 2f5f: 48 89 ef mov rdi,rbp - 2f62: e8 00 00 00 00 call 2f67 - 2f67: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 2f6b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 2f70: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 2f77: 00 - 2f78: 41 83 e5 0c and r13d,0xc - if (res != GETARG_A(i)) - 2f7c: 41 c1 e8 08 shr r8d,0x8 - 2f80: 41 83 e0 7f and r8d,0x7f - 2f84: 41 39 c0 cmp r8d,eax - 2f87: 0f 84 99 29 00 00 je 5926 - pc++; - 2f8d: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 2f91: 48 8d 58 04 lea rbx,[rax+0x4] - 2f95: 44 8b 00 mov r8d,DWORD PTR [rax] - 2f98: 45 85 ed test r13d,r13d - 2f9b: 0f 85 28 4e 00 00 jne 7dc9 - 2fa1: 44 89 c5 mov ebp,r8d - 2fa4: 41 0f b6 c0 movzx eax,r8b - 2fa8: c1 ed 08 shr ebp,0x8 - 2fab: 48 89 c2 mov rdx,rax - 2fae: 83 e5 7f and ebp,0x7f - 2fb1: 48 c1 e5 04 shl rbp,0x4 - 2fb5: 4c 01 e5 add rbp,r12 - 2fb8: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 2fbc: 44 89 c0 mov eax,r8d - 2fbf: c1 e8 18 shr eax,0x18 - 2fc2: a8 80 test al,0x80 - 2fc4: 0f 85 b8 28 00 00 jne 5882 - 2fca: 48 c1 e0 04 shl rax,0x4 - 2fce: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 2fd2: 44 89 c0 mov eax,r8d - 2fd5: c1 e8 10 shr eax,0x10 - 2fd8: a8 80 test al,0x80 - 2fda: 0f 84 c0 28 00 00 je 58a0 - 2fe0: 83 e0 7f and eax,0x7f - 2fe3: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - 2fe8: 48 c1 e0 04 shl rax,0x4 - 2fec: 48 8d 14 07 lea rdx,[rdi+rax*1] - Protect( - 2ff0: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 2ff5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 2ffa: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 2fff: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3003: 48 89 ef mov rdi,rbp - 3006: e8 00 00 00 00 call 300b - if (res != GETARG_A(i)) - 300b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - Protect( - 3010: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 3014: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 301b: 00 - if (res != GETARG_A(i)) - 301c: 41 c1 e8 08 shr r8d,0x8 - 3020: 41 83 e0 7f and r8d,0x7f - Protect( - 3024: 41 83 e5 0c and r13d,0xc - if (res != GETARG_A(i)) - 3028: 41 39 c0 cmp r8d,eax - 302b: 0f 84 7f 3f 00 00 je 6fb0 - pc++; - 3031: 48 8d 43 04 lea rax,[rbx+0x4] - vmbreak; - 3035: 48 8d 58 04 lea rbx,[rax+0x4] - 3039: 44 8b 00 mov r8d,DWORD PTR [rax] - 303c: 45 85 ed test r13d,r13d - 303f: 0f 85 0e 53 00 00 jne 8353 - 3045: 44 89 c5 mov ebp,r8d - 3048: 41 0f b6 c0 movzx eax,r8b - 304c: c1 ed 08 shr ebp,0x8 - 304f: 48 89 c2 mov rdx,rax - 3052: 83 e5 7f and ebp,0x7f - 3055: 48 c1 e5 04 shl rbp,0x4 - 3059: 4c 01 e5 add rbp,r12 - 305c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - dojump(ci, i, 0); - 3060: 44 89 c0 mov eax,r8d - 3063: c1 e8 08 shr eax,0x8 - 3066: 83 e0 7f and eax,0x7f - 3069: 0f 85 d0 3a 00 00 jne 6b3f - 306f: 41 c1 e8 10 shr r8d,0x10 - 3073: 45 31 ed xor r13d,r13d - 3076: 41 8d 80 00 80 ff ff lea eax,[r8-0x8000] - 307d: 48 98 cdqe - 307f: 48 8d 04 83 lea rax,[rbx+rax*4] - vmbreak; - 3083: 48 8d 58 04 lea rbx,[rax+0x4] - 3087: 44 8b 00 mov r8d,DWORD PTR [rax] - 308a: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - 308f: f6 80 c8 00 00 00 0c test BYTE PTR [rax+0xc8],0xc - 3096: 0f 85 80 5c 00 00 jne 8d1c - 309c: 44 89 c5 mov ebp,r8d - 309f: 41 0f b6 c0 movzx eax,r8b - 30a3: c1 ed 08 shr ebp,0x8 - 30a6: 48 89 c2 mov rdx,rax - 30a9: 83 e5 7f and ebp,0x7f - 30ac: 48 c1 e5 04 shl rbp,0x4 - 30b0: 4c 01 e5 add rbp,r12 - 30b3: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int c = GETARG_C(i); - 30b7: 44 89 c0 mov eax,r8d - L->top = base + c + 1; /* mark the end of concat operands */ - 30ba: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - int b = GETARG_B(i); - 30bf: 44 89 c5 mov ebp,r8d - int c = GETARG_C(i); - 30c2: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 30c7: c1 e8 10 shr eax,0x10 - int b = GETARG_B(i); - 30ca: c1 ed 18 shr ebp,0x18 - int c = GETARG_C(i); - 30cd: 0f b6 d0 movzx edx,al - L->top = base + c + 1; /* mark the end of concat operands */ - 30d0: 4c 89 ff mov rdi,r15 - int c = GETARG_C(i); - 30d3: 48 89 d0 mov rax,rdx - L->top = base + c + 1; /* mark the end of concat operands */ - 30d6: 48 83 c2 01 add rdx,0x1 - 30da: 48 c1 e2 04 shl rdx,0x4 - Protect(luaV_concat(L, c - b + 1)); - 30de: 29 e8 sub eax,ebp - L->top = base + c + 1; /* mark the end of concat operands */ - 30e0: 49 01 d4 add r12,rdx - Protect(luaV_concat(L, c - b + 1)); - 30e3: 8d 70 01 lea esi,[rax+0x1] - L->top = base + c + 1; /* mark the end of concat operands */ - 30e6: 4d 89 67 10 mov QWORD PTR [r15+0x10],r12 - Protect(luaV_concat(L, c - b + 1)); - 30ea: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 30ef: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 30f4: e8 00 00 00 00 call 30f9 - ra = RA(i); /* 'luaV_concat' may invoke TMs and move the stack */ - 30f9: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - rb = base + b; - 30fe: 89 e8 mov eax,ebp - Protect(luaV_concat(L, c - b + 1)); - 3100: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - rb = base + b; - 3105: 48 c1 e0 04 shl rax,0x4 - Protect(luaV_concat(L, c - b + 1)); - 3109: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 3110: 00 - ra = RA(i); /* 'luaV_concat' may invoke TMs and move the stack */ - 3111: 44 89 c2 mov edx,r8d - rb = base + b; - 3114: 4c 01 e0 add rax,r12 - ra = RA(i); /* 'luaV_concat' may invoke TMs and move the stack */ - 3117: c1 ea 08 shr edx,0x8 - setobjs2s(L, ra, rb); - 311a: 48 8b 08 mov rcx,QWORD PTR [rax] - Protect(luaV_concat(L, c - b + 1)); - 311d: 41 83 e5 0c and r13d,0xc - ra = RA(i); /* 'luaV_concat' may invoke TMs and move the stack */ - 3121: 83 e2 7f and edx,0x7f - 3124: 48 c1 e2 04 shl rdx,0x4 - 3128: 4c 01 e2 add rdx,r12 - setobjs2s(L, ra, rb); - 312b: 48 89 0a mov QWORD PTR [rdx],rcx - 312e: 0f b7 48 08 movzx ecx,WORD PTR [rax+0x8] - 3132: 66 89 4a 08 mov WORD PTR [rdx+0x8],cx - checkGC(L, (ra >= rb ? ra + 1 : rb)); - 3136: 49 8b 4f 18 mov rcx,QWORD PTR [r15+0x18] - 313a: 48 83 79 18 00 cmp QWORD PTR [rcx+0x18],0x0 - 313f: 7e 35 jle 3176 - 3141: 48 39 c2 cmp rdx,rax - 3144: 48 8d 4a 10 lea rcx,[rdx+0x10] - 3148: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 314d: 48 0f 43 c1 cmovae rax,rcx - 3151: 4c 89 ff mov rdi,r15 - 3154: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - 3158: e8 00 00 00 00 call 315d - 315d: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 3162: 48 89 58 28 mov QWORD PTR [rax+0x28],rbx - 3166: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 316d: 00 - 316e: 4c 8b 60 20 mov r12,QWORD PTR [rax+0x20] - 3172: 41 83 e5 0c and r13d,0xc - L->top = ci->top; /* restore top */ - 3176: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 317b: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 3180: 48 8b 40 08 mov rax,QWORD PTR [rax+0x8] - 3184: 48 89 41 10 mov QWORD PTR [rcx+0x10],rax - vmbreak; - 3188: 48 89 d8 mov rax,rbx - 318b: 48 83 c3 04 add rbx,0x4 - 318f: 44 8b 00 mov r8d,DWORD PTR [rax] - 3192: 45 85 ed test r13d,r13d - 3195: 0f 85 78 57 00 00 jne 8913 - 319b: 44 89 c5 mov ebp,r8d - 319e: 41 0f b6 c0 movzx eax,r8b - 31a2: c1 ed 08 shr ebp,0x8 - 31a5: 48 89 c2 mov rdx,rax - 31a8: 83 e5 7f and ebp,0x7f - 31ab: 48 c1 e5 04 shl rbp,0x4 - 31af: 4c 01 e5 add rbp,r12 - 31b2: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - Protect(luaV_objlen(L, ra, RB(i))); - 31b6: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 31bb: 41 c1 e8 18 shr r8d,0x18 - 31bf: 48 89 ee mov rsi,rbp - 31c2: 45 31 ed xor r13d,r13d - 31c5: 44 89 c2 mov edx,r8d - 31c8: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 31cd: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 31d1: 48 c1 e2 04 shl rdx,0x4 - 31d5: 4c 01 e2 add rdx,r12 - 31d8: 48 89 ef mov rdi,rbp - 31db: e8 00 00 00 00 call 31e0 - vmbreak; - 31e0: 48 89 d8 mov rax,rbx - Protect(luaV_objlen(L, ra, RB(i))); - 31e3: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - vmbreak; - 31e7: 48 83 c3 04 add rbx,0x4 - 31eb: 44 8b 00 mov r8d,DWORD PTR [rax] - 31ee: f6 85 c8 00 00 00 0c test BYTE PTR [rbp+0xc8],0xc - 31f5: 0f 85 89 5b 00 00 jne 8d84 - 31fb: 44 89 c5 mov ebp,r8d - 31fe: 41 0f b6 c0 movzx eax,r8b - 3202: c1 ed 08 shr ebp,0x8 - 3205: 48 89 c2 mov rdx,rax - 3208: 83 e5 7f and ebp,0x7f - 320b: 48 c1 e5 04 shl rbp,0x4 - 320f: 4c 01 e5 add rbp,r12 - 3212: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 3216: 41 c1 e8 18 shr r8d,0x18 - int res = l_isfalse(rb); /* next assignment may change this value */ - 321a: ba 01 00 00 00 mov edx,0x1 - TValue *rb = RB(i); - 321f: 44 89 c0 mov eax,r8d - 3222: 48 c1 e0 04 shl rax,0x4 - 3226: 4c 01 e0 add rax,r12 - int res = l_isfalse(rb); /* next assignment may change this value */ - 3229: 0f b7 48 08 movzx ecx,WORD PTR [rax+0x8] - 322d: 66 85 c9 test cx,cx - 3230: 0f 85 f7 27 00 00 jne 5a2d - vmbreak; - 3236: 48 89 d8 mov rax,rbx - setbvalue(ra, res); - 3239: 41 bf 01 00 00 00 mov r15d,0x1 - 323f: 89 55 00 mov DWORD PTR [rbp+0x0],edx - vmbreak; - 3242: 48 83 c3 04 add rbx,0x4 - setbvalue(ra, res); - 3246: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - vmbreak; - 324b: 44 8b 00 mov r8d,DWORD PTR [rax] - 324e: 45 85 ed test r13d,r13d - 3251: 0f 85 f8 5a 00 00 jne 8d4f - 3257: 44 89 c5 mov ebp,r8d - 325a: 41 0f b6 c0 movzx eax,r8b - 325e: c1 ed 08 shr ebp,0x8 - 3261: 48 89 c2 mov rdx,rax - 3264: 83 e5 7f and ebp,0x7f - 3267: 48 c1 e5 04 shl rbp,0x4 - 326b: 4c 01 e5 add rbp,r12 - 326e: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 3272: 41 c1 e8 18 shr r8d,0x18 - 3276: 45 89 c1 mov r9d,r8d - 3279: 49 c1 e1 04 shl r9,0x4 - 327d: 4d 01 e1 add r9,r12 - if (tointegerns(rb, &ib)) { - 3280: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 3285: 66 83 f8 13 cmp ax,0x13 - 3289: 0f 84 a0 38 00 00 je 6b2f - if (!ttisfloat(obj)) - 328f: 66 83 f8 03 cmp ax,0x3 - 3293: 0f 85 06 3c 00 00 jne 6e9f - 3299: 31 d2 xor edx,edx - 329b: 48 8d b4 24 b0 00 00 lea rsi,[rsp+0xb0] - 32a2: 00 - 32a3: 4c 89 cf mov rdi,r9 - 32a6: e8 e5 cf ff ff call 290 - if (tointegerns(rb, &ib)) { - 32ab: 85 c0 test eax,eax - 32ad: 0f 84 ec 3b 00 00 je 6e9f - 32b3: 48 8b 84 24 b0 00 00 mov rax,QWORD PTR [rsp+0xb0] - 32ba: 00 - setivalue(ra, intop(^, ~l_castS2U(0), ib)); - 32bb: 48 f7 d0 not rax - 32be: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 32c2: b8 13 00 00 00 mov eax,0x13 - 32c7: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 32cb: 48 89 d8 mov rax,rbx - 32ce: 48 83 c3 04 add rbx,0x4 - 32d2: 44 8b 00 mov r8d,DWORD PTR [rax] - 32d5: 45 85 ed test r13d,r13d - 32d8: 0f 85 e1 53 00 00 jne 86bf - 32de: 44 89 c5 mov ebp,r8d - 32e1: 41 0f b6 c0 movzx eax,r8b - 32e5: c1 ed 08 shr ebp,0x8 - 32e8: 48 89 c2 mov rdx,rax - 32eb: 83 e5 7f and ebp,0x7f - 32ee: 48 c1 e5 04 shl rbp,0x4 - 32f2: 4c 01 e5 add rbp,r12 - 32f5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 32f9: 41 c1 e8 18 shr r8d,0x18 - 32fd: 44 89 c6 mov esi,r8d - 3300: 48 c1 e6 04 shl rsi,0x4 - 3304: 4c 01 e6 add rsi,r12 - if (ttisinteger(rb)) { - 3307: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 330b: 66 83 f8 13 cmp ax,0x13 - 330f: 0f 84 02 38 00 00 je 6b17 - else if (tonumberns(rb, nb)) { - 3315: 66 83 f8 03 cmp ax,0x3 - 3319: 0f 85 5c 3d 00 00 jne 707b - setfltvalue(ra, luai_numunm(L, nb)); - 331f: b8 03 00 00 00 mov eax,0x3 - 3324: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 3328: 66 0f 57 05 00 00 00 xorpd xmm0,XMMWORD PTR [rip+0x0] # 3330 - 332f: 00 - 3330: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 3334: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 3339: 48 89 d8 mov rax,rbx - 333c: 48 83 c3 04 add rbx,0x4 - 3340: 44 8b 00 mov r8d,DWORD PTR [rax] - 3343: 45 85 ed test r13d,r13d - 3346: 0f 85 a8 53 00 00 jne 86f4 - 334c: 44 89 c5 mov ebp,r8d - 334f: 41 0f b6 c0 movzx eax,r8b - 3353: c1 ed 08 shr ebp,0x8 - 3356: 48 89 c2 mov rdx,rax - 3359: 83 e5 7f and ebp,0x7f - 335c: 48 c1 e5 04 shl rbp,0x4 - 3360: 4c 01 e5 add rbp,r12 - 3363: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3367: 44 89 c0 mov eax,r8d - 336a: c1 e8 18 shr eax,0x18 - 336d: a8 80 test al,0x80 - 336f: 0f 85 d2 29 00 00 jne 5d47 - 3375: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3379: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 337d: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 3381: 41 f6 c0 80 test r8b,0x80 - 3385: 0f 84 d9 29 00 00 je 5d64 - 338b: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3390: 41 83 e0 7f and r8d,0x7f - 3394: 49 c1 e0 04 shl r8,0x4 - 3398: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 339c: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 33a0: 66 83 f8 03 cmp ax,0x3 - 33a4: 0f 84 d4 29 00 00 je 5d7e - 33aa: 66 83 f8 13 cmp ax,0x13 - 33ae: 0f 84 f4 41 00 00 je 75a8 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_POW)); } - 33b4: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 33b9: 48 89 e9 mov rcx,rbp - 33bc: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 33c1: 41 b8 0a 00 00 00 mov r8d,0xa - 33c7: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 33cb: 48 89 ef mov rdi,rbp - 33ce: e8 00 00 00 00 call 33d3 - 33d3: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 33da: 00 - 33db: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 33df: 41 83 e5 0c and r13d,0xc - vmbreak; - 33e3: 48 89 d8 mov rax,rbx - 33e6: 48 83 c3 04 add rbx,0x4 - 33ea: 44 8b 00 mov r8d,DWORD PTR [rax] - 33ed: 45 85 ed test r13d,r13d - 33f0: 0f 85 98 43 00 00 jne 778e - 33f6: 44 89 c5 mov ebp,r8d - 33f9: 41 0f b6 c0 movzx eax,r8b - 33fd: c1 ed 08 shr ebp,0x8 - 3400: 48 89 c2 mov rdx,rax - 3403: 83 e5 7f and ebp,0x7f - 3406: 48 c1 e5 04 shl rbp,0x4 - 340a: 4c 01 e5 add rbp,r12 - 340d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3411: 44 89 c0 mov eax,r8d - 3414: c1 e8 18 shr eax,0x18 - 3417: a8 80 test al,0x80 - 3419: 0f 85 3e 25 00 00 jne 595d - 341f: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3423: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3427: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 342b: 41 f6 c0 80 test r8b,0x80 - 342f: 0f 84 46 25 00 00 je 597b - 3435: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 343a: 41 83 e0 7f and r8d,0x7f - 343e: 49 c1 e0 04 shl r8,0x4 - 3442: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 3446: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 344a: 66 83 f8 13 cmp ax,0x13 - 344e: 0f 84 41 25 00 00 je 5995 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 3454: 66 83 f8 03 cmp ax,0x3 - 3458: 0f 85 cb 38 00 00 jne 6d29 - 345e: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 3462: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 3466: 66 83 f8 03 cmp ax,0x3 - 346a: 0f 84 49 25 00 00 je 59b9 - 3470: 66 83 f8 13 cmp ax,0x13 - 3474: 0f 85 af 38 00 00 jne 6d29 - 347a: 66 0f ef c9 pxor xmm1,xmm1 - 347e: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - 3483: e9 35 25 00 00 jmp 59bd - TValue *rb = RKB(i); - 3488: 44 89 c0 mov eax,r8d - 348b: c1 e8 18 shr eax,0x18 - 348e: a8 80 test al,0x80 - 3490: 0f 84 18 27 00 00 je 5bae - 3496: 83 e0 7f and eax,0x7f - 3499: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 349e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 34a2: 48 c1 e0 04 shl rax,0x4 - 34a6: 48 8d 34 01 lea rsi,[rcx+rax*1] - TValue *rc = RKC(i); - 34aa: 41 f6 c0 80 test r8b,0x80 - 34ae: 0f 84 10 27 00 00 je 5bc4 - 34b4: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 34b9: 41 83 e0 7f and r8d,0x7f - 34bd: 49 c1 e0 04 shl r8,0x4 - 34c1: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 34c5: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 34c9: 66 83 f8 13 cmp ax,0x13 - 34cd: 0f 84 0b 27 00 00 je 5bde - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 34d3: 66 83 f8 03 cmp ax,0x3 - 34d7: 0f 85 ef 37 00 00 jne 6ccc - 34dd: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 34e1: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 34e5: 66 83 f8 03 cmp ax,0x3 - 34e9: 0f 84 13 27 00 00 je 5c02 - 34ef: 66 83 f8 13 cmp ax,0x13 - 34f3: 0f 85 d3 37 00 00 jne 6ccc - 34f9: 66 0f ef d2 pxor xmm2,xmm2 - 34fd: f2 48 0f 2a 12 cvtsi2sd xmm2,QWORD PTR [rdx] - 3502: e9 ff 26 00 00 jmp 5c06 - TValue *rb = RKB(i); - 3507: 44 89 c0 mov eax,r8d - 350a: c1 e8 18 shr eax,0x18 - 350d: a8 80 test al,0x80 - 350f: 0f 85 e6 25 00 00 jne 5afb - 3515: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3519: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 351d: 4d 8d 0c 04 lea r9,[r12+rax*1] - TValue *rc = RKC(i); - 3521: 41 f6 c0 80 test r8b,0x80 - 3525: 0f 84 ee 25 00 00 je 5b19 - 352b: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3530: 41 83 e0 7f and r8d,0x7f - 3534: 49 c1 e0 04 shl r8,0x4 - 3538: 4e 8d 14 00 lea r10,[rax+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 353c: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 3541: 66 83 f8 13 cmp ax,0x13 - 3545: 0f 84 e9 25 00 00 je 5b34 - if (!ttisfloat(obj)) - 354b: 66 83 f8 03 cmp ax,0x3 - 354f: 75 1a jne 356b - 3551: 31 d2 xor edx,edx - 3553: 48 8d b4 24 a0 00 00 lea rsi,[rsp+0xa0] - 355a: 00 - 355b: 4c 89 cf mov rdi,r9 - 355e: e8 2d cd ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 3563: 85 c0 test eax,eax - 3565: 0f 85 d4 25 00 00 jne 5b3f - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_SHR)); } - 356b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 3570: 48 89 e9 mov rcx,rbp - 3573: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 3578: 4c 89 d2 mov rdx,r10 - 357b: 41 b8 11 00 00 00 mov r8d,0x11 - 3581: 4c 89 ce mov rsi,r9 - 3584: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3588: 48 89 ef mov rdi,rbp - 358b: e8 00 00 00 00 call 3590 - 3590: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 3597: 00 - 3598: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 359c: 41 83 e5 0c and r13d,0xc - vmbreak; - 35a0: 48 89 d8 mov rax,rbx - 35a3: 48 83 c3 04 add rbx,0x4 - 35a7: 44 8b 00 mov r8d,DWORD PTR [rax] - 35aa: 45 85 ed test r13d,r13d - 35ad: 0f 85 e4 42 00 00 jne 7897 - 35b3: 44 89 c5 mov ebp,r8d - 35b6: 41 0f b6 c0 movzx eax,r8b - 35ba: c1 ed 08 shr ebp,0x8 - 35bd: 48 89 c2 mov rdx,rax - 35c0: 83 e5 7f and ebp,0x7f - 35c3: 48 c1 e5 04 shl rbp,0x4 - 35c7: 4c 01 e5 add rbp,r12 - 35ca: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 35ce: 44 89 c0 mov eax,r8d - 35d1: c1 e8 18 shr eax,0x18 - 35d4: a8 80 test al,0x80 - 35d6: 0f 85 6b 24 00 00 jne 5a47 - 35dc: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 35e0: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 35e4: 4d 8d 0c 04 lea r9,[r12+rax*1] - TValue *rc = RKC(i); - 35e8: 41 f6 c0 80 test r8b,0x80 - 35ec: 0f 84 73 24 00 00 je 5a65 - 35f2: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 35f7: 41 83 e0 7f and r8d,0x7f - 35fb: 49 c1 e0 04 shl r8,0x4 - 35ff: 4e 8d 14 00 lea r10,[rax+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 3603: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 3608: 66 83 f8 13 cmp ax,0x13 - 360c: 0f 84 6e 24 00 00 je 5a80 - if (!ttisfloat(obj)) - 3612: 66 83 f8 03 cmp ax,0x3 - 3616: 75 1a jne 3632 - 3618: 31 d2 xor edx,edx - 361a: 48 8d b4 24 90 00 00 lea rsi,[rsp+0x90] - 3621: 00 - 3622: 4c 89 cf mov rdi,r9 - 3625: e8 66 cc ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 362a: 85 c0 test eax,eax - 362c: 0f 85 59 24 00 00 jne 5a8b - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_SHL)); } - 3632: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 3637: 48 89 e9 mov rcx,rbp - 363a: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 363f: 4c 89 d2 mov rdx,r10 - 3642: 41 b8 10 00 00 00 mov r8d,0x10 - 3648: 4c 89 ce mov rsi,r9 - 364b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 364f: 48 89 ef mov rdi,rbp - 3652: e8 00 00 00 00 call 3657 - 3657: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 365e: 00 - 365f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 3663: 41 83 e5 0c and r13d,0xc - vmbreak; - 3667: 48 89 d8 mov rax,rbx - 366a: 48 83 c3 04 add rbx,0x4 - 366e: 44 8b 00 mov r8d,DWORD PTR [rax] - 3671: 45 85 ed test r13d,r13d - 3674: 0f 85 e8 41 00 00 jne 7862 - 367a: 44 89 c5 mov ebp,r8d - 367d: 41 0f b6 c0 movzx eax,r8b - 3681: c1 ed 08 shr ebp,0x8 - 3684: 48 89 c2 mov rdx,rax - 3687: 83 e5 7f and ebp,0x7f - 368a: 48 c1 e5 04 shl rbp,0x4 - 368e: 4c 01 e5 add rbp,r12 - 3691: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3695: 44 89 c0 mov eax,r8d - 3698: c1 e8 18 shr eax,0x18 - 369b: a8 80 test al,0x80 - 369d: 0f 85 44 21 00 00 jne 57e7 - 36a3: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 36a7: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 36ab: 4d 8d 0c 04 lea r9,[r12+rax*1] - TValue *rc = RKC(i); - 36af: 41 f6 c0 80 test r8b,0x80 - 36b3: 0f 84 4c 21 00 00 je 5805 - 36b9: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 36be: 41 83 e0 7f and r8d,0x7f - 36c2: 49 c1 e0 04 shl r8,0x4 - 36c6: 4e 8d 14 00 lea r10,[rax+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 36ca: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 36cf: 66 83 f8 13 cmp ax,0x13 - 36d3: 0f 84 47 21 00 00 je 5820 - if (!ttisfloat(obj)) - 36d9: 66 83 f8 03 cmp ax,0x3 - 36dd: 75 1a jne 36f9 - 36df: 31 d2 xor edx,edx - 36e1: 48 8d b4 24 80 00 00 lea rsi,[rsp+0x80] - 36e8: 00 - 36e9: 4c 89 cf mov rdi,r9 - 36ec: e8 9f cb ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 36f1: 85 c0 test eax,eax - 36f3: 0f 85 32 21 00 00 jne 582b - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_BXOR)); } - 36f9: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 36fe: 48 89 e9 mov rcx,rbp - 3701: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 3706: 4c 89 d2 mov rdx,r10 - 3709: 41 b8 0f 00 00 00 mov r8d,0xf - 370f: 4c 89 ce mov rsi,r9 - 3712: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3716: 48 89 ef mov rdi,rbp - 3719: e8 00 00 00 00 call 371e - 371e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 3725: 00 - 3726: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 372a: 41 83 e5 0c and r13d,0xc - vmbreak; - 372e: 48 89 d8 mov rax,rbx - 3731: 48 83 c3 04 add rbx,0x4 - 3735: 44 8b 00 mov r8d,DWORD PTR [rax] - 3738: 45 85 ed test r13d,r13d - 373b: 0f 85 82 40 00 00 jne 77c3 - 3741: 44 89 c5 mov ebp,r8d - 3744: 41 0f b6 c0 movzx eax,r8b - 3748: c1 ed 08 shr ebp,0x8 - 374b: 48 89 c2 mov rdx,rax - 374e: 83 e5 7f and ebp,0x7f - 3751: 48 c1 e5 04 shl rbp,0x4 - 3755: 4c 01 e5 add rbp,r12 - 3758: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 375c: 44 89 c0 mov eax,r8d - 375f: c1 e8 18 shr eax,0x18 - 3762: a8 80 test al,0x80 - 3764: 0f 85 ee 1f 00 00 jne 5758 - 376a: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 376e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3772: 4d 8d 0c 04 lea r9,[r12+rax*1] - TValue *rc = RKC(i); - 3776: 41 f6 c0 80 test r8b,0x80 - 377a: 0f 84 f6 1f 00 00 je 5776 - 3780: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3785: 41 83 e0 7f and r8d,0x7f - 3789: 49 c1 e0 04 shl r8,0x4 - 378d: 4e 8d 14 00 lea r10,[rax+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 3791: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 3796: 66 83 f8 13 cmp ax,0x13 - 379a: 0f 84 f1 1f 00 00 je 5791 - if (!ttisfloat(obj)) - 37a0: 66 83 f8 03 cmp ax,0x3 - 37a4: 75 17 jne 37bd - 37a6: 31 d2 xor edx,edx - 37a8: 48 8d 74 24 70 lea rsi,[rsp+0x70] - 37ad: 4c 89 cf mov rdi,r9 - 37b0: e8 db ca ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 37b5: 85 c0 test eax,eax - 37b7: 0f 85 dc 1f 00 00 jne 5799 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_BOR)); } - 37bd: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 37c2: 48 89 e9 mov rcx,rbp - 37c5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 37ca: 4c 89 d2 mov rdx,r10 - 37cd: 41 b8 0e 00 00 00 mov r8d,0xe - 37d3: 4c 89 ce mov rsi,r9 - 37d6: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 37da: 48 89 ef mov rdi,rbp - 37dd: e8 00 00 00 00 call 37e2 - 37e2: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 37e9: 00 - 37ea: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 37ee: 41 83 e5 0c and r13d,0xc - vmbreak; - 37f2: 48 89 d8 mov rax,rbx - 37f5: 48 83 c3 04 add rbx,0x4 - 37f9: 44 8b 00 mov r8d,DWORD PTR [rax] - 37fc: 45 85 ed test r13d,r13d - 37ff: 0f 85 c7 40 00 00 jne 78cc - 3805: 44 89 c5 mov ebp,r8d - 3808: 41 0f b6 c0 movzx eax,r8b - 380c: c1 ed 08 shr ebp,0x8 - 380f: 48 89 c2 mov rdx,rax - 3812: 83 e5 7f and ebp,0x7f - 3815: 48 c1 e5 04 shl rbp,0x4 - 3819: 4c 01 e5 add rbp,r12 - 381c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int c = GETARG_C(i); - 3820: 44 89 c0 mov eax,r8d - 3823: c1 e8 10 shr eax,0x10 - if (n == 0) n = cast_int(L->top - ra) - 1; - 3826: 41 c1 e8 18 shr r8d,0x18 - int c = GETARG_C(i); - 382a: 0f b6 c0 movzx eax,al - if (n == 0) n = cast_int(L->top - ra) - 1; - 382d: 75 1c jne 384b - 382f: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 3834: 48 8b 77 10 mov rsi,QWORD PTR [rdi+0x10] - 3838: 49 89 f0 mov r8,rsi - 383b: 48 89 74 24 28 mov QWORD PTR [rsp+0x28],rsi - 3840: 49 29 e8 sub r8,rbp - 3843: 49 c1 f8 04 sar r8,0x4 - 3847: 41 83 e8 01 sub r8d,0x1 - if (c == 0) { - 384b: 48 89 df mov rdi,rbx - 384e: 48 89 5c 24 38 mov QWORD PTR [rsp+0x38],rbx - 3853: 85 c0 test eax,eax - 3855: 75 0e jne 3865 - c = GETARG_Ax(*pc++); - 3857: 48 83 c7 04 add rdi,0x4 - 385b: 8b 03 mov eax,DWORD PTR [rbx] - 385d: 48 89 7c 24 38 mov QWORD PTR [rsp+0x38],rdi - 3862: c1 e8 08 shr eax,0x8 - last = ((c-1)*LFIELDS_PER_FLUSH) + n; - 3865: 44 8d 78 ff lea r15d,[rax-0x1] - h = hvalue(ra); - 3869: 4c 8b 4d 00 mov r9,QWORD PTR [rbp+0x0] - savepc(L); /* in case of allocation errors */ - 386d: 48 8b 7c 24 38 mov rdi,QWORD PTR [rsp+0x38] - last = ((c-1)*LFIELDS_PER_FLUSH) + n; - 3872: 45 6b ff 32 imul r15d,r15d,0x32 - h = hvalue(ra); - 3876: 4c 89 4c 24 30 mov QWORD PTR [rsp+0x30],r9 - last = ((c-1)*LFIELDS_PER_FLUSH) + n; - 387b: 43 8d 04 07 lea eax,[r15+r8*1] - 387f: 89 c6 mov esi,eax - savepc(L); /* in case of allocation errors */ - 3881: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 3886: 48 89 78 28 mov QWORD PTR [rax+0x28],rdi - if (h->ravi_array.array_type == RAVI_TTABLE) { - 388a: 41 0f b6 41 48 movzx eax,BYTE PTR [r9+0x48] - 388f: 3c 06 cmp al,0x6 - 3891: 0f 84 d3 31 00 00 je 6a6a - int i = last - n + 1; - 3897: 41 8d 5f 01 lea ebx,[r15+0x1] - for (; i <= (int)last; i++) { - 389b: 39 de cmp esi,ebx - 389d: 0f 8c cc 00 00 00 jl 396f - 38a3: 4c 63 fb movsxd r15,ebx - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 38a6: 48 8d bc 24 d0 00 00 lea rdi,[rsp+0xd0] - 38ad: 00 - 38ae: 44 89 6c 24 40 mov DWORD PTR [rsp+0x40],r13d - 38b3: 41 89 dd mov r13d,ebx - 38b6: 49 c1 e7 04 shl r15,0x4 - 38ba: 48 89 7c 24 28 mov QWORD PTR [rsp+0x28],rdi - 38bf: 89 f3 mov ebx,esi - 38c1: 4c 89 ff mov rdi,r15 - 38c4: 4c 89 64 24 48 mov QWORD PTR [rsp+0x48],r12 - 38c9: 49 89 ef mov r15,rbp - 38cc: 4d 89 cc mov r12,r9 - 38cf: 48 89 fd mov rbp,rdi - 38d2: eb 57 jmp 392b - 38d4: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - switch (h->ravi_array.array_type) { - 38d8: 3c 04 cmp al,0x4 - 38da: 75 3c jne 3918 - if (ttisfloat(val)) { - 38dc: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 38e0: 66 83 f8 03 cmp ax,0x3 - 38e4: 0f 84 fe 32 00 00 je 6be8 - else if (ttisinteger(val)) { - 38ea: 66 83 f8 13 cmp ax,0x13 - 38ee: 0f 85 1c 33 00 00 jne 6c10 - raviH_set_float_inline(L, h, u, (lua_Number)(ivalue(val))); - 38f4: 66 0f ef c0 pxor xmm0,xmm0 - 38f8: 44 89 ea mov edx,r13d - 38fb: f2 48 0f 2a 07 cvtsi2sd xmm0,QWORD PTR [rdi] - 3900: 45 39 6c 24 40 cmp DWORD PTR [r12+0x40],r13d - 3905: 0f 86 ad 33 00 00 jbe 6cb8 - 390b: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - 3910: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 3915: 0f 1f 00 nop DWORD PTR [rax] - for (; i <= (int)last; i++) { - 3918: 41 83 c5 01 add r13d,0x1 - 391c: 48 83 c5 10 add rbp,0x10 - 3920: 44 39 eb cmp ebx,r13d - 3923: 7c 40 jl 3965 - 3925: 41 0f b6 44 24 48 movzx eax,BYTE PTR [r12+0x48] - TValue *val = ra + i; - 392b: 49 8d 3c 2f lea rdi,[r15+rbp*1] - switch (h->ravi_array.array_type) { - 392f: 3c 03 cmp al,0x3 - 3931: 75 a5 jne 38d8 - if (ttisinteger(val)) { - 3933: 66 83 7f 08 13 cmp WORD PTR [rdi+0x8],0x13 - 3938: 0f 85 62 32 00 00 jne 6ba0 - raviH_set_int_inline(L, h, u, ivalue(val)); - 393e: 48 8b 0f mov rcx,QWORD PTR [rdi] - 3941: 44 89 ea mov edx,r13d - 3944: 45 39 6c 24 40 cmp DWORD PTR [r12+0x40],r13d - 3949: 0f 86 05 33 00 00 jbe 6c54 - 394f: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - for (; i <= (int)last; i++) { - 3954: 41 83 c5 01 add r13d,0x1 - 3958: 48 83 c5 10 add rbp,0x10 - raviH_set_int_inline(L, h, u, ivalue(val)); - 395c: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - for (; i <= (int)last; i++) { - 3960: 44 39 eb cmp ebx,r13d - 3963: 7d c0 jge 3925 - 3965: 44 8b 6c 24 40 mov r13d,DWORD PTR [rsp+0x40] - 396a: 4c 8b 64 24 48 mov r12,QWORD PTR [rsp+0x48] - L->top = ci->top; /* correct top (in case of previous open call) */ - 396f: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 3974: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 3979: 48 8b 40 08 mov rax,QWORD PTR [rax+0x8] - 397d: 48 89 46 10 mov QWORD PTR [rsi+0x10],rax - vmbreak; - 3981: 48 8b 44 24 38 mov rax,QWORD PTR [rsp+0x38] - 3986: 48 8d 58 04 lea rbx,[rax+0x4] - 398a: 44 8b 00 mov r8d,DWORD PTR [rax] - 398d: 45 85 ed test r13d,r13d - 3990: 0f 85 7a 4b 00 00 jne 8510 - 3996: 44 89 c5 mov ebp,r8d - 3999: 41 0f b6 c0 movzx eax,r8b - 399d: c1 ed 08 shr ebp,0x8 - 39a0: 48 89 c2 mov rdx,rax - 39a3: 83 e5 7f and ebp,0x7f - 39a6: 48 c1 e5 04 shl rbp,0x4 - 39aa: 4c 01 e5 add rbp,r12 - 39ad: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 39b1: 44 89 c0 mov eax,r8d - 39b4: c1 e8 18 shr eax,0x18 - 39b7: a8 80 test al,0x80 - 39b9: 0f 85 8b 2c 00 00 jne 664a - 39bf: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 39c3: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 39c7: 4d 8d 3c 04 lea r15,[r12+rax*1] - TValue *rc = RKC(i); - 39cb: 41 f6 c0 80 test r8b,0x80 - 39cf: 0f 84 93 2c 00 00 je 6668 - 39d5: 41 83 e0 7f and r8d,0x7f - 39d9: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 39de: 49 c1 e0 04 shl r8,0x4 - 39e2: 4a 8d 0c 00 lea rcx,[rax+r8*1] - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 39e6: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 39ea: 66 3d 05 80 cmp ax,0x8005 - 39ee: 0f 85 de 44 00 00 jne 7ed2 - 39f4: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - 39f8: 49 8b 37 mov rsi,QWORD PTR [r15] - 39fb: 8b 42 0c mov eax,DWORD PTR [rdx+0xc] - 39fe: 48 8d 7e ff lea rdi,[rsi-0x1] - 3a02: 48 39 c7 cmp rdi,rax - 3a05: 0f 83 56 59 00 00 jae 9361 - 3a0b: 48 8b 42 10 mov rax,QWORD PTR [rdx+0x10] - 3a0f: 48 c1 e6 04 shl rsi,0x4 - 3a13: 4c 8d 44 30 f0 lea r8,[rax+rsi*1-0x10] - 3a18: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - 3a1e: 0f 84 1e 37 00 00 je 7142 - 3a24: 48 8b 01 mov rax,QWORD PTR [rcx] - 3a27: 49 89 00 mov QWORD PTR [r8],rax - 3a2a: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - 3a2e: 66 41 89 40 08 mov WORD PTR [r8+0x8],ax - 3a33: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - 3a38: 0f 88 e7 3a 00 00 js 7525 - vmbreak; - 3a3e: 48 89 d8 mov rax,rbx - 3a41: 48 83 c3 04 add rbx,0x4 - 3a45: 44 8b 00 mov r8d,DWORD PTR [rax] - 3a48: 45 85 ed test r13d,r13d - 3a4b: 0f 85 4c 44 00 00 jne 7e9d - 3a51: 44 89 c5 mov ebp,r8d - 3a54: 41 0f b6 c0 movzx eax,r8b - 3a58: c1 ed 08 shr ebp,0x8 - 3a5b: 48 89 c2 mov rdx,rax - 3a5e: 83 e5 7f and ebp,0x7f - 3a61: 48 c1 e5 04 shl rbp,0x4 - 3a65: 4c 01 e5 add rbp,r12 - 3a68: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3a6c: 44 89 c0 mov eax,r8d - 3a6f: c1 e8 18 shr eax,0x18 - 3a72: a8 80 test al,0x80 - 3a74: 0f 85 a1 2b 00 00 jne 661b - 3a7a: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3a7e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3a82: 4d 8d 3c 04 lea r15,[r12+rax*1] - TValue *rc = RKC(i); - 3a86: 41 f6 c0 80 test r8b,0x80 - 3a8a: 0f 84 a9 2b 00 00 je 6639 - 3a90: 41 83 e0 7f and r8d,0x7f - 3a94: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3a99: 49 c1 e0 04 shl r8,0x4 - 3a9d: 4a 8d 0c 00 lea rcx,[rax+r8*1] - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 3aa1: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 3aa5: 66 3d 05 80 cmp ax,0x8005 - 3aa9: 0f 85 b1 44 00 00 jne 7f60 - 3aaf: 66 41 83 7f 08 13 cmp WORD PTR [r15+0x8],0x13 - 3ab5: 0f 85 8d 33 00 00 jne 6e48 - 3abb: 48 8b 7d 00 mov rdi,QWORD PTR [rbp+0x0] - 3abf: 49 8b 37 mov rsi,QWORD PTR [r15] - 3ac2: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - 3ac5: 48 8d 56 ff lea rdx,[rsi-0x1] - 3ac9: 48 39 c2 cmp rdx,rax - 3acc: 0f 83 bb 5a 00 00 jae 958d - 3ad2: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 3ad6: 48 c1 e6 04 shl rsi,0x4 - 3ada: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - 3adf: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - 3ae4: 0f 84 7f 33 00 00 je 6e69 - 3aea: 48 8b 11 mov rdx,QWORD PTR [rcx] - 3aed: 48 89 10 mov QWORD PTR [rax],rdx - 3af0: 0f b7 51 08 movzx edx,WORD PTR [rcx+0x8] - 3af4: 66 89 50 08 mov WORD PTR [rax+0x8],dx - 3af8: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - 3afd: 0f 88 4b 3a 00 00 js 754e - vmbreak; - 3b03: 48 89 d8 mov rax,rbx - 3b06: 48 83 c3 04 add rbx,0x4 - 3b0a: 44 8b 00 mov r8d,DWORD PTR [rax] - 3b0d: 45 85 ed test r13d,r13d - 3b10: 0f 85 47 41 00 00 jne 7c5d - 3b16: 44 89 c5 mov ebp,r8d - 3b19: 41 0f b6 c0 movzx eax,r8b - 3b1d: c1 ed 08 shr ebp,0x8 - 3b20: 48 89 c2 mov rdx,rax - 3b23: 83 e5 7f and ebp,0x7f - 3b26: 48 c1 e5 04 shl rbp,0x4 - 3b2a: 4c 01 e5 add rbp,r12 - 3b2d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *upval = cl->upvals[GETARG_A(i)]->v; - 3b31: 44 89 c0 mov eax,r8d - 3b34: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - 3b39: c1 e8 08 shr eax,0x8 - 3b3c: 83 e0 7f and eax,0x7f - 3b3f: 48 8b 44 c7 20 mov rax,QWORD PTR [rdi+rax*8+0x20] - 3b44: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rb = RKB(i); - 3b47: 44 89 c0 mov eax,r8d - 3b4a: c1 e8 18 shr eax,0x18 - 3b4d: a8 80 test al,0x80 - 3b4f: 0f 85 24 2b 00 00 jne 6679 - 3b55: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3b59: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3b5d: 49 8d 2c 04 lea rbp,[r12+rax*1] - TValue *rc = RKC(i); - 3b61: 41 f6 c0 80 test r8b,0x80 - 3b65: 0f 84 2c 2b 00 00 je 6697 - 3b6b: 41 83 e0 7f and r8d,0x7f - 3b6f: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3b74: 49 c1 e0 04 shl r8,0x4 - 3b78: 4a 8d 0c 00 lea rcx,[rax+r8*1] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 3b7c: 41 0f b7 47 08 movzx eax,WORD PTR [r15+0x8] - 3b81: 66 3d 05 80 cmp ax,0x8005 - 3b85: 0f 85 88 43 00 00 jne 7f13 - 3b8b: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 3b90: 49 8b 3f mov rdi,QWORD PTR [r15] - 3b93: 0f 85 5c 32 00 00 jne 6df5 - 3b99: 48 8b 75 00 mov rsi,QWORD PTR [rbp+0x0] - 3b9d: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - 3ba0: 48 8d 56 ff lea rdx,[rsi-0x1] - 3ba4: 48 39 c2 cmp rdx,rax - 3ba7: 0f 83 b8 59 00 00 jae 9565 - 3bad: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 3bb1: 48 c1 e6 04 shl rsi,0x4 - 3bb5: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - 3bba: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - 3bbf: 0f 84 4d 32 00 00 je 6e12 - 3bc5: 48 8b 11 mov rdx,QWORD PTR [rcx] - 3bc8: 48 89 10 mov QWORD PTR [rax],rdx - 3bcb: 0f b7 51 08 movzx edx,WORD PTR [rcx+0x8] - 3bcf: 66 89 50 08 mov WORD PTR [rax+0x8],dx - 3bd3: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - 3bd8: 0f 88 1e 39 00 00 js 74fc - vmbreak; - 3bde: 48 89 d8 mov rax,rbx - 3be1: 48 83 c3 04 add rbx,0x4 - 3be5: 44 8b 00 mov r8d,DWORD PTR [rax] - 3be8: 45 85 ed test r13d,r13d - 3beb: 0f 85 77 42 00 00 jne 7e68 - 3bf1: 44 89 c5 mov ebp,r8d - 3bf4: 41 0f b6 c0 movzx eax,r8b - 3bf8: c1 ed 08 shr ebp,0x8 - 3bfb: 48 89 c2 mov rdx,rax - 3bfe: 83 e5 7f and ebp,0x7f - 3c01: 48 c1 e5 04 shl rbp,0x4 - 3c05: 4c 01 e5 add rbp,r12 - 3c08: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - StkId rb = RB(i); /* table */ - 3c0c: 45 89 c7 mov r15d,r8d - TValue *rc = RKC(i); /* key */ - 3c0f: 41 c1 e8 10 shr r8d,0x10 - StkId rb = RB(i); /* table */ - 3c13: 41 c1 ef 18 shr r15d,0x18 - 3c17: 49 c1 e7 04 shl r15,0x4 - 3c1b: 4d 01 e7 add r15,r12 - TValue *rc = RKC(i); /* key */ - 3c1e: 41 f6 c0 80 test r8b,0x80 - 3c22: 0f 85 27 28 00 00 jne 644f - 3c28: 45 0f b6 c0 movzx r8d,r8b - 3c2c: 49 c1 e0 04 shl r8,0x4 - 3c30: 4b 8d 14 04 lea rdx,[r12+r8*1] - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 3c34: 41 0f b7 47 08 movzx eax,WORD PTR [r15+0x8] - 3c39: 66 3d 05 80 cmp ax,0x8005 - 3c3d: 0f 85 dd 44 00 00 jne 8120 - 3c43: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 3c48: 0f 85 8d 31 00 00 jne 6ddb - 3c4e: 49 8b 3f mov rdi,QWORD PTR [r15] - 3c51: 48 8b 32 mov rsi,QWORD PTR [rdx] - 3c54: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - 3c57: 48 8d 4e ff lea rcx,[rsi-0x1] - 3c5b: 48 39 c1 cmp rcx,rax - 3c5e: 0f 83 ed 58 00 00 jae 9551 - 3c64: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 3c68: 48 c1 e6 04 shl rsi,0x4 - 3c6c: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - 3c71: 0f b7 48 08 movzx ecx,WORD PTR [rax+0x8] - 3c75: 66 85 c9 test cx,cx - 3c78: 0f 84 ad 56 00 00 je 932b - 3c7e: 48 8b 00 mov rax,QWORD PTR [rax] - 3c81: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - 3c85: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 3c89: 48 89 d8 mov rax,rbx - 3c8c: 48 83 c3 04 add rbx,0x4 - 3c90: 44 8b 00 mov r8d,DWORD PTR [rax] - 3c93: 45 85 ed test r13d,r13d - 3c96: 0f 85 4f 44 00 00 jne 80eb - 3c9c: 44 89 c5 mov ebp,r8d - 3c9f: 41 0f b6 c0 movzx eax,r8b - 3ca3: c1 ed 08 shr ebp,0x8 - 3ca6: 48 89 c2 mov rdx,rax - 3ca9: 83 e5 7f and ebp,0x7f - 3cac: 48 c1 e5 04 shl rbp,0x4 - 3cb0: 4c 01 e5 add rbp,r12 - 3cb3: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *upval = cl->upvals[GETARG_B(i)]->v; /* table */ - 3cb7: 44 89 c0 mov eax,r8d - 3cba: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - TValue *rc = RKC(i); /* key */ - 3cbf: 41 c1 e8 10 shr r8d,0x10 - TValue *upval = cl->upvals[GETARG_B(i)]->v; /* table */ - 3cc3: c1 e8 18 shr eax,0x18 - 3cc6: 48 8b 44 c1 20 mov rax,QWORD PTR [rcx+rax*8+0x20] - 3ccb: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rc = RKC(i); /* key */ - 3cce: 41 f6 c0 80 test r8b,0x80 - 3cd2: 0f 85 61 27 00 00 jne 6439 - 3cd8: 45 0f b6 c0 movzx r8d,r8b - 3cdc: 49 c1 e0 04 shl r8,0x4 - 3ce0: 4b 8d 14 04 lea rdx,[r12+r8*1] - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 3ce4: 41 0f b7 47 08 movzx eax,WORD PTR [r15+0x8] - 3ce9: 66 3d 05 80 cmp ax,0x8005 - 3ced: 0f 85 ca 46 00 00 jne 83bd - 3cf3: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 3cf8: 49 8b 3f mov rdi,QWORD PTR [r15] - 3cfb: 0f 85 c3 30 00 00 jne 6dc4 - 3d01: 48 8b 32 mov rsi,QWORD PTR [rdx] - 3d04: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - 3d07: 48 8d 4e ff lea rcx,[rsi-0x1] - 3d0b: 48 39 c1 cmp rcx,rax - 3d0e: 0f 83 65 58 00 00 jae 9579 - 3d14: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 3d18: 48 c1 e6 04 shl rsi,0x4 - 3d1c: 48 8d 44 30 f0 lea rax,[rax+rsi*1-0x10] - 3d21: 0f b7 48 08 movzx ecx,WORD PTR [rax+0x8] - 3d25: 66 85 c9 test cx,cx - 3d28: 0f 84 c7 55 00 00 je 92f5 - 3d2e: 48 8b 00 mov rax,QWORD PTR [rax] - 3d31: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - 3d35: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 3d39: 48 89 d8 mov rax,rbx - 3d3c: 48 83 c3 04 add rbx,0x4 - 3d40: 44 8b 00 mov r8d,DWORD PTR [rax] - 3d43: 45 85 ed test r13d,r13d - 3d46: 0f 85 1e 44 00 00 jne 816a - 3d4c: 44 89 c5 mov ebp,r8d - 3d4f: 41 0f b6 c0 movzx eax,r8b - 3d53: c1 ed 08 shr ebp,0x8 - 3d56: 48 89 c2 mov rdx,rax - 3d59: 83 e5 7f and ebp,0x7f - 3d5c: 48 c1 e5 04 shl rbp,0x4 - 3d60: 4c 01 e5 add rbp,r12 - 3d63: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 3d67: 41 c1 e8 18 shr r8d,0x18 - 3d6b: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - setobj(L, uv->v, ra); - 3d70: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 3d74: 49 63 c0 movsxd rax,r8d - 3d77: 48 8b 74 c7 20 mov rsi,QWORD PTR [rdi+rax*8+0x20] - setobj(L, uv->v, ra); - 3d7c: 48 8b 06 mov rax,QWORD PTR [rsi] - 3d7f: 48 89 10 mov QWORD PTR [rax],rdx - 3d82: 0f b7 55 08 movzx edx,WORD PTR [rbp+0x8] - 3d86: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - 3d8a: 66 85 d2 test dx,dx - 3d8d: 0f 88 82 2b 00 00 js 6915 - vmbreak; - 3d93: 48 89 d8 mov rax,rbx - 3d96: 48 83 c3 04 add rbx,0x4 - 3d9a: 44 8b 00 mov r8d,DWORD PTR [rax] - 3d9d: 45 85 ed test r13d,r13d - 3da0: 0f 85 75 4d 00 00 jne 8b1b - 3da6: 44 89 c5 mov ebp,r8d - 3da9: 41 0f b6 c0 movzx eax,r8b - 3dad: c1 ed 08 shr ebp,0x8 - 3db0: 48 89 c2 mov rdx,rax - 3db3: 83 e5 7f and ebp,0x7f - 3db6: 48 c1 e5 04 shl rbp,0x4 - 3dba: 4c 01 e5 add rbp,r12 - 3dbd: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3dc1: 44 89 c0 mov eax,r8d - 3dc4: c1 e8 18 shr eax,0x18 - 3dc7: a8 80 test al,0x80 - 3dc9: 0f 85 db 25 00 00 jne 63aa - 3dcf: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3dd3: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3dd7: 4d 8d 0c 04 lea r9,[r12+rax*1] - TValue *rc = RKC(i); - 3ddb: 41 f6 c0 80 test r8b,0x80 - 3ddf: 0f 84 e3 25 00 00 je 63c8 - 3de5: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3dea: 41 83 e0 7f and r8d,0x7f - 3dee: 49 c1 e0 04 shl r8,0x4 - 3df2: 4e 8d 14 00 lea r10,[rax+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 3df6: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - 3dfb: 66 83 f8 13 cmp ax,0x13 - 3dff: 0f 84 de 25 00 00 je 63e3 - if (!ttisfloat(obj)) - 3e05: 66 83 f8 03 cmp ax,0x3 - 3e09: 75 17 jne 3e22 - 3e0b: 31 d2 xor edx,edx - 3e0d: 48 8d 74 24 60 lea rsi,[rsp+0x60] - 3e12: 4c 89 cf mov rdi,r9 - 3e15: e8 76 c4 ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 3e1a: 85 c0 test eax,eax - 3e1c: 0f 85 c9 25 00 00 jne 63eb - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_BAND)); } - 3e22: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 3e27: 48 89 e9 mov rcx,rbp - 3e2a: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 3e2f: 4c 89 d2 mov rdx,r10 - 3e32: 41 b8 0d 00 00 00 mov r8d,0xd - 3e38: 4c 89 ce mov rsi,r9 - 3e3b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3e3f: 48 89 ef mov rdi,rbp - 3e42: e8 00 00 00 00 call 3e47 - 3e47: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 3e4e: 00 - 3e4f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 3e53: 41 83 e5 0c and r13d,0xc - vmbreak; - 3e57: 48 89 d8 mov rax,rbx - 3e5a: 48 83 c3 04 add rbx,0x4 - 3e5e: 44 8b 00 mov r8d,DWORD PTR [rax] - 3e61: 45 85 ed test r13d,r13d - 3e64: 0f 85 c3 39 00 00 jne 782d - 3e6a: 44 89 c5 mov ebp,r8d - 3e6d: 41 0f b6 c0 movzx eax,r8b - 3e71: c1 ed 08 shr ebp,0x8 - 3e74: 48 89 c2 mov rdx,rax - 3e77: 83 e5 7f and ebp,0x7f - 3e7a: 48 c1 e5 04 shl rbp,0x4 - 3e7e: 4c 01 e5 add rbp,r12 - 3e81: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3e85: 44 89 c0 mov eax,r8d - 3e88: c1 e8 18 shr eax,0x18 - 3e8b: a8 80 test al,0x80 - 3e8d: 0f 85 a1 24 00 00 jne 6334 - 3e93: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3e97: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3e9b: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 3e9f: 41 f6 c0 80 test r8b,0x80 - 3ea3: 0f 84 a9 24 00 00 je 6352 - 3ea9: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3eae: 41 83 e0 7f and r8d,0x7f - 3eb2: 49 c1 e0 04 shl r8,0x4 - 3eb6: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 3eba: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 3ebe: 66 83 f8 03 cmp ax,0x3 - 3ec2: 0f 84 a4 24 00 00 je 636c - 3ec8: 66 83 f8 13 cmp ax,0x13 - 3ecc: 0f 84 f6 36 00 00 je 75c8 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_DIV)); } - 3ed2: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 3ed7: 48 89 e9 mov rcx,rbp - 3eda: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 3edf: 41 b8 0b 00 00 00 mov r8d,0xb - 3ee5: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3ee9: 48 89 ef mov rdi,rbp - 3eec: e8 00 00 00 00 call 3ef1 - 3ef1: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 3ef8: 00 - 3ef9: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 3efd: 41 83 e5 0c and r13d,0xc - vmbreak; - 3f01: 48 89 d8 mov rax,rbx - 3f04: 48 83 c3 04 add rbx,0x4 - 3f08: 44 8b 00 mov r8d,DWORD PTR [rax] - 3f0b: 45 85 ed test r13d,r13d - 3f0e: 0f 85 80 3e 00 00 jne 7d94 - 3f14: 44 89 c5 mov ebp,r8d - 3f17: 41 0f b6 c0 movzx eax,r8b - 3f1b: c1 ed 08 shr ebp,0x8 - 3f1e: 48 89 c2 mov rdx,rax - 3f21: 83 e5 7f and ebp,0x7f - 3f24: 48 c1 e5 04 shl rbp,0x4 - 3f28: 4c 01 e5 add rbp,r12 - 3f2b: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3f2f: 44 89 c0 mov eax,r8d - 3f32: c1 e8 18 shr eax,0x18 - 3f35: a8 80 test al,0x80 - 3f37: 0f 85 93 23 00 00 jne 62d0 - 3f3d: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3f41: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3f45: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 3f49: 41 f6 c0 80 test r8b,0x80 - 3f4d: 0f 84 9a 23 00 00 je 62ed - 3f53: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 3f58: 41 83 e0 7f and r8d,0x7f - 3f5c: 49 c1 e0 04 shl r8,0x4 - 3f60: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 3f64: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 3f68: 66 83 f8 13 cmp ax,0x13 - 3f6c: 0f 84 95 23 00 00 je 6307 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 3f72: 66 83 f8 03 cmp ax,0x3 - 3f76: 0f 84 35 32 00 00 je 71b1 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_MUL)); } - 3f7c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 3f81: 48 89 e9 mov rcx,rbp - 3f84: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 3f89: 41 b8 08 00 00 00 mov r8d,0x8 - 3f8f: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 3f93: 48 89 ef mov rdi,rbp - 3f96: e8 00 00 00 00 call 3f9b - 3f9b: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 3fa2: 00 - 3fa3: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 3fa7: 41 83 e5 0c and r13d,0xc - vmbreak; - 3fab: 48 89 d8 mov rax,rbx - 3fae: 48 83 c3 04 add rbx,0x4 - 3fb2: 44 8b 00 mov r8d,DWORD PTR [rax] - 3fb5: 45 85 ed test r13d,r13d - 3fb8: 0f 85 49 44 00 00 jne 8407 - 3fbe: 44 89 c5 mov ebp,r8d - 3fc1: 41 0f b6 c0 movzx eax,r8b - 3fc5: c1 ed 08 shr ebp,0x8 - 3fc8: 48 89 c2 mov rdx,rax - 3fcb: 83 e5 7f and ebp,0x7f - 3fce: 48 c1 e5 04 shl rbp,0x4 - 3fd2: 4c 01 e5 add rbp,r12 - 3fd5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 3fd9: 44 89 c0 mov eax,r8d - 3fdc: c1 e8 18 shr eax,0x18 - 3fdf: a8 80 test al,0x80 - 3fe1: 0f 85 84 22 00 00 jne 626b - 3fe7: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 3feb: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 3fef: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 3ff3: 41 f6 c0 80 test r8b,0x80 - 3ff7: 0f 84 8c 22 00 00 je 6289 - 3ffd: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4002: 41 83 e0 7f and r8d,0x7f - 4006: 49 c1 e0 04 shl r8,0x4 - 400a: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 400e: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 4012: 66 83 f8 13 cmp ax,0x13 - 4016: 0f 84 87 22 00 00 je 62a3 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 401c: 66 83 f8 03 cmp ax,0x3 - 4020: 0f 84 4f 31 00 00 je 7175 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_SUB)); } - 4026: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 402b: 48 89 e9 mov rcx,rbp - 402e: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 4033: 41 b8 07 00 00 00 mov r8d,0x7 - 4039: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 403d: 48 89 ef mov rdi,rbp - 4040: e8 00 00 00 00 call 4045 - 4045: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 404c: 00 - 404d: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 4051: 41 83 e5 0c and r13d,0xc - vmbreak; - 4055: 48 89 d8 mov rax,rbx - 4058: 48 83 c3 04 add rbx,0x4 - 405c: 44 8b 00 mov r8d,DWORD PTR [rax] - 405f: 45 85 ed test r13d,r13d - 4062: 0f 85 d4 43 00 00 jne 843c - 4068: 44 89 c5 mov ebp,r8d - 406b: 41 0f b6 c0 movzx eax,r8b - 406f: c1 ed 08 shr ebp,0x8 - 4072: 48 89 c2 mov rdx,rax - 4075: 83 e5 7f and ebp,0x7f - 4078: 48 c1 e5 04 shl rbp,0x4 - 407c: 4c 01 e5 add rbp,r12 - 407f: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4083: 44 89 c0 mov eax,r8d - 4086: c1 e8 18 shr eax,0x18 - 4089: a8 80 test al,0x80 - 408b: 0f 85 75 21 00 00 jne 6206 - 4091: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4095: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4099: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 409d: 41 f6 c0 80 test r8b,0x80 - 40a1: 0f 84 7d 21 00 00 je 6224 - 40a7: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 40ac: 41 83 e0 7f and r8d,0x7f - 40b0: 49 c1 e0 04 shl r8,0x4 - 40b4: 4a 8d 14 00 lea rdx,[rax+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 40b8: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 40bc: 66 83 f8 13 cmp ax,0x13 - 40c0: 0f 84 78 21 00 00 je 623e - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 40c6: 66 83 f8 03 cmp ax,0x3 - 40ca: 0f 84 1d 31 00 00 je 71ed - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_ADD)); } - 40d0: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 40d5: 48 89 e9 mov rcx,rbp - 40d8: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 40dd: 41 b8 06 00 00 00 mov r8d,0x6 - 40e3: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 40e7: 48 89 ef mov rdi,rbp - 40ea: e8 00 00 00 00 call 40ef - 40ef: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 40f6: 00 - 40f7: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 40fb: 41 83 e5 0c and r13d,0xc - vmbreak; - 40ff: 48 89 d8 mov rax,rbx - 4102: 48 83 c3 04 add rbx,0x4 - 4106: 44 8b 00 mov r8d,DWORD PTR [rax] - 4109: 45 85 ed test r13d,r13d - 410c: 0f 85 5f 43 00 00 jne 8471 - 4112: 44 89 c5 mov ebp,r8d - 4115: 41 0f b6 c0 movzx eax,r8b - 4119: c1 ed 08 shr ebp,0x8 - 411c: 48 89 c2 mov rdx,rax - 411f: 83 e5 7f and ebp,0x7f - 4122: 48 c1 e5 04 shl rbp,0x4 - 4126: 4c 01 e5 add rbp,r12 - 4129: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - StkId rb = RB(i); - 412d: 45 89 c7 mov r15d,r8d - TValue *rc = RKC(i); - 4130: 41 c1 e8 10 shr r8d,0x10 - StkId rb = RB(i); - 4134: 41 c1 ef 18 shr r15d,0x18 - 4138: 49 c1 e7 04 shl r15,0x4 - 413c: 4d 01 e7 add r15,r12 - TValue *rc = RKC(i); - 413f: 41 f6 c0 80 test r8b,0x80 - 4143: 0f 85 a7 20 00 00 jne 61f0 - 4149: 45 0f b6 c0 movzx r8d,r8b - 414d: 49 c1 e0 04 shl r8,0x4 - 4151: 4b 8d 14 04 lea rdx,[r12+r8*1] - setobjs2s(L, ra + 1, rb); - 4155: 49 8b 07 mov rax,QWORD PTR [r15] - TString *key = tsvalue(rc); /* key must be a string */ - 4158: 48 8b 32 mov rsi,QWORD PTR [rdx] - if (luaV_fastget(L, rb, key, aux, luaH_getstr)) { - 415b: 45 31 c0 xor r8d,r8d - setobjs2s(L, ra + 1, rb); - 415e: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax - 4162: 41 0f b7 47 08 movzx eax,WORD PTR [r15+0x8] - 4167: 66 89 45 18 mov WORD PTR [rbp+0x18],ax - if (luaV_fastget(L, rb, key, aux, luaH_getstr)) { - 416b: 41 0f b7 4f 08 movzx ecx,WORD PTR [r15+0x8] - 4170: 83 e1 0f and ecx,0xf - 4173: 66 83 f9 05 cmp cx,0x5 - 4177: 0f 84 5c 2d 00 00 je 6ed9 - else Protect(luaV_finishget(L, rb, rc, ra, aux)); - 417d: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 4182: 4c 89 fe mov rsi,r15 - 4185: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 418a: 48 89 e9 mov rcx,rbp - 418d: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 4192: 4c 89 ff mov rdi,r15 - 4195: e8 00 00 00 00 call 419a - 419a: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 41a1: 00 - 41a2: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 41a7: 41 83 e5 0c and r13d,0xc - vmbreak; - 41ab: 48 89 d8 mov rax,rbx - 41ae: 48 83 c3 04 add rbx,0x4 - 41b2: 44 8b 00 mov r8d,DWORD PTR [rax] - 41b5: 45 85 ed test r13d,r13d - 41b8: 0f 85 e8 42 00 00 jne 84a6 - 41be: 44 89 c5 mov ebp,r8d - 41c1: 41 0f b6 c0 movzx eax,r8b - 41c5: c1 ed 08 shr ebp,0x8 - 41c8: 48 89 c2 mov rdx,rax - 41cb: 83 e5 7f and ebp,0x7f - 41ce: 48 c1 e5 04 shl rbp,0x4 - 41d2: 4c 01 e5 add rbp,r12 - 41d5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - StkId rb = RB(i); /* variable - may not be a table */ - 41d9: 44 89 c6 mov esi,r8d - TValue *rc = RKC(i); - 41dc: 41 c1 e8 10 shr r8d,0x10 - StkId rb = RB(i); /* variable - may not be a table */ - 41e0: c1 ee 18 shr esi,0x18 - 41e3: 48 c1 e6 04 shl rsi,0x4 - 41e7: 4c 01 e6 add rsi,r12 - TValue *rc = RKC(i); - 41ea: 41 f6 c0 80 test r8b,0x80 - 41ee: 0f 85 e6 1f 00 00 jne 61da - 41f4: 45 0f b6 c0 movzx r8d,r8b - 41f8: 49 c1 e0 04 shl r8,0x4 - 41fc: 4b 8d 14 04 lea rdx,[r12+r8*1] - setobjs2s(L, ra + 1, rb); - 4200: 48 8b 06 mov rax,QWORD PTR [rsi] - 4203: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax - 4207: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 420b: 66 89 45 18 mov WORD PTR [rbp+0x18],ax - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 420f: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 4213: 66 3d 05 80 cmp ax,0x8005 - 4217: 0f 85 90 43 00 00 jne 85ad - 421d: 48 8b 06 mov rax,QWORD PTR [rsi] - 4220: 48 8b 0a mov rcx,QWORD PTR [rdx] - Node *n = hashstr(t, key); - 4223: 44 8b 41 0c mov r8d,DWORD PTR [rcx+0xc] - 4227: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - 422b: 49 c1 e0 05 shl r8,0x5 - 422f: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - 4233: eb 16 jmp 424b - 4235: 0f 1f 00 nop DWORD PTR [rax] - int nx = gnext(n); - 4238: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - 423c: 85 c0 test eax,eax - 423e: 0f 84 38 2a 00 00 je 6c7c - n += nx; - 4244: 48 c1 e0 05 shl rax,0x5 - 4248: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - 424b: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - 4252: 75 e4 jne 4238 - 4254: 49 3b 48 10 cmp rcx,QWORD PTR [r8+0x10] - 4258: 75 de jne 4238 - 425a: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 425f: 66 85 c0 test ax,ax - 4262: 0f 84 15 50 00 00 je 927d - 4268: 49 8b 10 mov rdx,QWORD PTR [r8] - 426b: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 426f: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4273: 48 89 d8 mov rax,rbx - 4276: 48 83 c3 04 add rbx,0x4 - 427a: 44 8b 00 mov r8d,DWORD PTR [rax] - 427d: 45 85 ed test r13d,r13d - 4280: 0f 85 72 35 00 00 jne 77f8 - 4286: 44 89 c5 mov ebp,r8d - 4289: 41 0f b6 c0 movzx eax,r8b - 428d: c1 ed 08 shr ebp,0x8 - 4290: 48 89 c2 mov rdx,rax - 4293: 83 e5 7f and ebp,0x7f - 4296: 48 c1 e5 04 shl rbp,0x4 - 429a: 4c 01 e5 add rbp,r12 - 429d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - savepc(L); /* in case of allocation errors */ - 42a1: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - int b = GETARG_B(i); - 42a6: 44 89 c0 mov eax,r8d - t = luaH_new(L); - 42a9: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - int c = GETARG_C(i); - 42ae: 41 c1 e8 10 shr r8d,0x10 - int b = GETARG_B(i); - 42b2: c1 e8 18 shr eax,0x18 - int c = GETARG_C(i); - 42b5: 45 0f b6 f8 movzx r15d,r8b - savepc(L); /* in case of allocation errors */ - 42b9: 48 89 5e 28 mov QWORD PTR [rsi+0x28],rbx - int b = GETARG_B(i); - 42bd: 89 44 24 28 mov DWORD PTR [rsp+0x28],eax - t = luaH_new(L); - 42c1: e8 00 00 00 00 call 42c6 - sethvalue(L, ra, t); - 42c6: ba 05 80 ff ff mov edx,0xffff8005 - t = luaH_new(L); - 42cb: 48 89 c6 mov rsi,rax - sethvalue(L, ra, t); - 42ce: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - if (b != 0 || c != 0) - 42d2: 8b 44 24 28 mov eax,DWORD PTR [rsp+0x28] - sethvalue(L, ra, t); - 42d6: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - if (b != 0 || c != 0) - 42da: 44 09 f8 or eax,r15d - 42dd: 0f 85 89 28 00 00 jne 6b6c - checkGC(L, ra + 1); - 42e3: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 42e8: 49 8b 47 18 mov rax,QWORD PTR [r15+0x18] - 42ec: 4c 89 ff mov rdi,r15 - 42ef: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - 42f4: 0f 8f b5 25 00 00 jg 68af - vmbreak; - 42fa: 48 89 d8 mov rax,rbx - 42fd: 48 83 c3 04 add rbx,0x4 - 4301: 44 8b 00 mov r8d,DWORD PTR [rax] - 4304: 45 85 ed test r13d,r13d - 4307: 0f 85 ac 4a 00 00 jne 8db9 - 430d: 44 89 c5 mov ebp,r8d - 4310: 41 0f b6 c0 movzx eax,r8b - 4314: c1 ed 08 shr ebp,0x8 - 4317: 48 89 c2 mov rdx,rax - 431a: 83 e5 7f and ebp,0x7f - 431d: 48 c1 e5 04 shl rbp,0x4 - 4321: 4c 01 e5 add rbp,r12 - 4324: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int b = GETARG_B(i); - 4328: 41 c1 e8 18 shr r8d,0x18 - setobj2s(L, ra, cl->upvals[b]->v); - 432c: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - 4331: 49 63 c0 movsxd rax,r8d - 4334: 48 8b 44 c1 20 mov rax,QWORD PTR [rcx+rax*8+0x20] - 4339: 48 8b 00 mov rax,QWORD PTR [rax] - 433c: 48 8b 10 mov rdx,QWORD PTR [rax] - 433f: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 4343: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4347: 48 89 d8 mov rax,rbx - 434a: 48 83 c3 04 add rbx,0x4 - setobj2s(L, ra, cl->upvals[b]->v); - 434e: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4352: 44 8b 00 mov r8d,DWORD PTR [rax] - 4355: 45 85 ed test r13d,r13d - 4358: 0f 85 90 4a 00 00 jne 8dee - 435e: 44 89 c5 mov ebp,r8d - 4361: 41 0f b6 c0 movzx eax,r8b - 4365: c1 ed 08 shr ebp,0x8 - 4368: 48 89 c2 mov rdx,rax - 436b: 83 e5 7f and ebp,0x7f - 436e: 48 c1 e5 04 shl rbp,0x4 - 4372: 4c 01 e5 add rbp,r12 - 4375: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - int b = GETARG_B(i); - 4379: 41 c1 e8 18 shr r8d,0x18 - 437d: 0f 1f 00 nop DWORD PTR [rax] - setnilvalue(ra++); - 4380: 45 31 c9 xor r9d,r9d - } while (b--); - 4383: 41 83 e8 01 sub r8d,0x1 - setnilvalue(ra++); - 4387: 48 83 c5 10 add rbp,0x10 - 438b: 66 44 89 4d f8 mov WORD PTR [rbp-0x8],r9w - } while (b--); - 4390: 41 83 f8 ff cmp r8d,0xffffffff - 4394: 75 ea jne 4380 - vmbreak; - 4396: 48 89 d8 mov rax,rbx - 4399: 48 83 c3 04 add rbx,0x4 - 439d: 44 8b 00 mov r8d,DWORD PTR [rax] - 43a0: 45 85 ed test r13d,r13d - 43a3: 0f 85 7a 4a 00 00 jne 8e23 - 43a9: 44 89 c5 mov ebp,r8d - 43ac: 41 0f b6 c0 movzx eax,r8b - 43b0: c1 ed 08 shr ebp,0x8 - 43b3: 48 89 c2 mov rdx,rax - 43b6: 83 e5 7f and ebp,0x7f - 43b9: 48 c1 e5 04 shl rbp,0x4 - 43bd: 4c 01 e5 add rbp,r12 - 43c0: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - setbvalue(ra, GETARG_B(i)); - 43c4: 44 89 c0 mov eax,r8d - 43c7: 41 ba 01 00 00 00 mov r10d,0x1 - 43cd: c1 e8 18 shr eax,0x18 - if (GETARG_C(i)) pc++; /* skip next instruction (if C) */ - 43d0: 41 81 e0 00 00 ff 00 and r8d,0xff0000 - setbvalue(ra, GETARG_B(i)); - 43d7: 66 44 89 55 08 mov WORD PTR [rbp+0x8],r10w - 43dc: 89 45 00 mov DWORD PTR [rbp+0x0],eax - if (GETARG_C(i)) pc++; /* skip next instruction (if C) */ - 43df: 48 8d 43 04 lea rax,[rbx+0x4] - 43e3: 48 0f 44 c3 cmove rax,rbx - vmbreak; - 43e7: 48 8d 58 04 lea rbx,[rax+0x4] - 43eb: 44 8b 00 mov r8d,DWORD PTR [rax] - 43ee: 45 85 ed test r13d,r13d - 43f1: 0f 85 61 4a 00 00 jne 8e58 - 43f7: 44 89 c5 mov ebp,r8d - 43fa: 41 0f b6 c0 movzx eax,r8b - 43fe: c1 ed 08 shr ebp,0x8 - 4401: 48 89 c2 mov rdx,rax - 4404: 83 e5 7f and ebp,0x7f - 4407: 48 c1 e5 04 shl rbp,0x4 - 440b: 4c 01 e5 add rbp,r12 - 440e: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - rb = k + GETARG_Ax(*pc++); - 4412: 8b 03 mov eax,DWORD PTR [rbx] - 4414: 48 89 da mov rdx,rbx - vmbreak; - 4417: 48 83 c3 08 add rbx,0x8 - rb = k + GETARG_Ax(*pc++); - 441b: c1 e8 08 shr eax,0x8 - 441e: 48 c1 e0 04 shl rax,0x4 - 4422: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - setobj2s(L, ra, rb); - 4427: 48 8b 08 mov rcx,QWORD PTR [rax] - 442a: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 442e: 48 89 4d 00 mov QWORD PTR [rbp+0x0],rcx - vmbreak; - 4432: 44 8b 42 04 mov r8d,DWORD PTR [rdx+0x4] - setobj2s(L, ra, rb); - 4436: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 443a: 45 85 ed test r13d,r13d - 443d: 0f 85 03 45 00 00 jne 8946 - 4443: 44 89 c5 mov ebp,r8d - 4446: 41 0f b6 c0 movzx eax,r8b - 444a: c1 ed 08 shr ebp,0x8 - 444d: 48 89 c2 mov rdx,rax - 4450: 83 e5 7f and ebp,0x7f - 4453: 48 c1 e5 04 shl rbp,0x4 - 4457: 4c 01 e5 add rbp,r12 - 445a: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = k + GETARG_Bx(i); - 445e: 41 c1 e8 10 shr r8d,0x10 - 4462: 44 89 c0 mov eax,r8d - 4465: 48 c1 e0 04 shl rax,0x4 - 4469: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - setobj2s(L, ra, rb); - 446e: 48 8b 10 mov rdx,QWORD PTR [rax] - 4471: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 4475: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4479: 48 89 d8 mov rax,rbx - 447c: 48 83 c3 04 add rbx,0x4 - setobj2s(L, ra, rb); - 4480: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4484: 44 8b 00 mov r8d,DWORD PTR [rax] - 4487: 45 85 ed test r13d,r13d - 448a: 0f 85 eb 44 00 00 jne 897b - 4490: 44 89 c5 mov ebp,r8d - 4493: 41 0f b6 c0 movzx eax,r8b - 4497: c1 ed 08 shr ebp,0x8 - 449a: 48 89 c2 mov rdx,rax - 449d: 83 e5 7f and ebp,0x7f - 44a0: 48 c1 e5 04 shl rbp,0x4 - 44a4: 4c 01 e5 add rbp,r12 - 44a7: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - setobjs2s(L, ra, RB(i)); - 44ab: 41 c1 e8 18 shr r8d,0x18 - vmbreak; - 44af: 4c 8d 7b 04 lea r15,[rbx+0x4] - setobjs2s(L, ra, RB(i)); - 44b3: 44 89 c0 mov eax,r8d - 44b6: 48 c1 e0 04 shl rax,0x4 - 44ba: 4c 01 e0 add rax,r12 - 44bd: 48 8b 10 mov rdx,QWORD PTR [rax] - 44c0: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 44c4: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 44c8: 44 8b 03 mov r8d,DWORD PTR [rbx] - setobjs2s(L, ra, RB(i)); - 44cb: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 44cf: 45 85 ed test r13d,r13d - 44d2: 0f 85 29 43 00 00 jne 8801 - 44d8: 44 89 c5 mov ebp,r8d - 44db: 41 0f b6 c0 movzx eax,r8b - 44df: 4c 89 fb mov rbx,r15 - 44e2: c1 ed 08 shr ebp,0x8 - 44e5: 48 89 c2 mov rdx,rax - 44e8: 49 8b 04 c6 mov rax,QWORD PTR [r14+rax*8] - 44ec: 83 e5 7f and ebp,0x7f - 44ef: 48 c1 e5 04 shl rbp,0x4 - 44f3: 4c 01 e5 add rbp,r12 - 44f6: ff e0 jmp rax - if (!ttisnil(ra) && RAVI_UNLIKELY(!ttisclosure(ra))) - luaG_runerror(L, "closure expected"); - vmbreak; - } - vmcase(OP_RAVI_TOTYPE) { - if (!ttisnil(ra)) { - 44f8: 66 83 7d 08 00 cmp WORD PTR [rbp+0x8],0x0 - 44fd: 74 37 je 4536 - TValue *rb = k + GETARG_Bx(i); - 44ff: 41 c1 e8 10 shr r8d,0x10 - 4503: 44 89 c0 mov eax,r8d - 4506: 48 c1 e0 04 shl rax,0x4 - 450a: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - if (!ttisshrstring(rb)) - 450f: 66 81 78 08 04 80 cmp WORD PTR [rax+0x8],0x8004 - 4515: 0f 85 e9 57 00 00 jne 9d04 - luaG_runerror(L, "type name must be string"); - TString *key = tsvalue(rb); - 451b: 4c 8b 00 mov r8,QWORD PTR [rax] - if (!raviV_check_usertype(L, key, ra)) - 451e: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 4523: 48 89 ea mov rdx,rbp - 4526: 4c 89 c6 mov rsi,r8 - 4529: e8 00 00 00 00 call 452e - 452e: 85 c0 test eax,eax - 4530: 0f 84 8c 57 00 00 je 9cc2 - luaG_runerror(L, "type mismatch: expected %s", getstr(key)); - } - vmbreak; - 4536: 48 89 d8 mov rax,rbx - 4539: 48 83 c3 04 add rbx,0x4 - 453d: 44 8b 00 mov r8d,DWORD PTR [rax] - 4540: 45 85 ed test r13d,r13d - 4543: 0f 85 4e 42 00 00 jne 8797 - 4549: 44 89 c5 mov ebp,r8d - 454c: 41 0f b6 c0 movzx eax,r8b - 4550: c1 ed 08 shr ebp,0x8 - 4553: 48 89 c2 mov rdx,rax - 4556: 83 e5 7f and ebp,0x7f - 4559: 48 c1 e5 04 shl rbp,0x4 - 455d: 4c 01 e5 add rbp,r12 - 4560: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (!ttisnil(ra) && RAVI_UNLIKELY(!ttisclosure(ra))) - 4564: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 4568: 66 85 c0 test ax,ax - 456b: 0f 85 17 1f 00 00 jne 6488 - vmbreak; - 4571: 48 89 d8 mov rax,rbx - 4574: 48 83 c3 04 add rbx,0x4 - 4578: 44 8b 00 mov r8d,DWORD PTR [rax] - 457b: 45 85 ed test r13d,r13d - 457e: 0f 85 d6 49 00 00 jne 8f5a - 4584: 44 89 c5 mov ebp,r8d - 4587: 41 0f b6 c0 movzx eax,r8b - 458b: c1 ed 08 shr ebp,0x8 - 458e: 48 89 c2 mov rdx,rax - 4591: 83 e5 7f and ebp,0x7f - 4594: 48 c1 e5 04 shl rbp,0x4 - 4598: 4c 01 e5 add rbp,r12 - 459b: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (!ttisnil(ra) && RAVI_UNLIKELY(!ttisstring(ra))) - 459f: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 45a3: 66 85 c0 test ax,ax - 45a6: 0f 85 b9 1e 00 00 jne 6465 - vmbreak; - 45ac: 48 89 d8 mov rax,rbx - 45af: 48 83 c3 04 add rbx,0x4 - 45b3: 44 8b 00 mov r8d,DWORD PTR [rax] - 45b6: 45 85 ed test r13d,r13d - 45b9: 0f 85 3c 4b 00 00 jne 90fb - 45bf: 44 89 c5 mov ebp,r8d - 45c2: 41 0f b6 c0 movzx eax,r8b - 45c6: c1 ed 08 shr ebp,0x8 - 45c9: 48 89 c2 mov rdx,rax - 45cc: 49 8b 04 c6 mov rax,QWORD PTR [r14+rax*8] - 45d0: 83 e5 7f and ebp,0x7f - 45d3: 48 c1 e5 04 shl rbp,0x4 - 45d7: 4c 01 e5 add rbp,r12 - 45da: ff e0 jmp rax - if (RAVI_UNLIKELY(!ttisfarray(ra))) - 45dc: 66 81 7d 08 25 80 cmp WORD PTR [rbp+0x8],0x8025 - 45e2: 0f 85 42 30 00 00 jne 762a - vmbreak; - 45e8: 48 89 d8 mov rax,rbx - 45eb: 48 83 c3 04 add rbx,0x4 - 45ef: 44 8b 00 mov r8d,DWORD PTR [rax] - 45f2: 45 85 ed test r13d,r13d - 45f5: 0f 85 94 49 00 00 jne 8f8f - 45fb: 44 89 c5 mov ebp,r8d - 45fe: 41 0f b6 c0 movzx eax,r8b - 4602: c1 ed 08 shr ebp,0x8 - 4605: 48 89 c2 mov rdx,rax - 4608: 83 e5 7f and ebp,0x7f - 460b: 48 c1 e5 04 shl rbp,0x4 - 460f: 4c 01 e5 add rbp,r12 - 4612: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (RAVI_UNLIKELY(!ttisiarray(ra))) - 4616: 66 81 7d 08 15 80 cmp WORD PTR [rbp+0x8],0x8015 - 461c: 0f 85 1e 30 00 00 jne 7640 - vmbreak; - 4622: 48 89 d8 mov rax,rbx - 4625: 48 83 c3 04 add rbx,0x4 - 4629: 44 8b 00 mov r8d,DWORD PTR [rax] - 462c: 45 85 ed test r13d,r13d - 462f: 0f 85 8f 49 00 00 jne 8fc4 - 4635: 44 89 c5 mov ebp,r8d - 4638: 41 0f b6 c0 movzx eax,r8b - 463c: c1 ed 08 shr ebp,0x8 - 463f: 48 89 c2 mov rdx,rax - 4642: 83 e5 7f and ebp,0x7f - 4645: 48 c1 e5 04 shl rbp,0x4 - 4649: 4c 01 e5 add rbp,r12 - 464c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (RAVI_UNLIKELY(!ttisLtable(ra))) - 4650: 66 81 7d 08 05 80 cmp WORD PTR [rbp+0x8],0x8005 - 4656: 0f 85 fa 2f 00 00 jne 7656 - vmbreak; - 465c: 48 89 d8 mov rax,rbx - 465f: 48 83 c3 04 add rbx,0x4 - 4663: 44 8b 00 mov r8d,DWORD PTR [rax] - 4666: 45 85 ed test r13d,r13d - 4669: 0f 85 f6 4a 00 00 jne 9165 - 466f: 44 89 c5 mov ebp,r8d - 4672: 41 0f b6 c0 movzx eax,r8b - 4676: c1 ed 08 shr ebp,0x8 - 4679: 48 89 c2 mov rdx,rax - 467c: 83 e5 7f and ebp,0x7f - 467f: 48 c1 e5 04 shl rbp,0x4 - 4683: 4c 01 e5 add rbp,r12 - 4686: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (RAVI_LIKELY(tonumber(ra, &j))) { setfltvalue(ra, j); } - 468a: 66 83 7d 08 03 cmp WORD PTR [rbp+0x8],0x3 - 468f: 0f 85 de 3b 00 00 jne 8273 - 4695: f2 0f 10 45 00 movsd xmm0,QWORD PTR [rbp+0x0] - 469a: f2 0f 11 84 24 00 01 movsd QWORD PTR [rsp+0x100],xmm0 - 46a1: 00 00 - 46a3: b8 03 00 00 00 mov eax,0x3 - 46a8: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 46ad: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 46b1: 48 89 d8 mov rax,rbx - 46b4: 48 83 c3 04 add rbx,0x4 - 46b8: 44 8b 00 mov r8d,DWORD PTR [rax] - 46bb: 45 85 ed test r13d,r13d - 46be: 0f 85 98 49 00 00 jne 905c - 46c4: 44 89 c5 mov ebp,r8d - 46c7: 41 0f b6 c0 movzx eax,r8b - 46cb: c1 ed 08 shr ebp,0x8 - 46ce: 48 89 c2 mov rdx,rax - 46d1: 83 e5 7f and ebp,0x7f - 46d4: 48 c1 e5 04 shl rbp,0x4 - 46d8: 4c 01 e5 add rbp,r12 - 46db: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (RAVI_LIKELY(tointeger(ra, &j))) { setivalue(ra, j); } - 46df: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 46e4: 0f 85 3f 40 00 00 jne 8729 - 46ea: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 46ee: 48 89 84 24 f8 00 00 mov QWORD PTR [rsp+0xf8],rax - 46f5: 00 - 46f6: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 46fa: ba 13 00 00 00 mov edx,0x13 - vmbreak; - 46ff: 48 89 d8 mov rax,rbx - 4702: 48 83 c3 04 add rbx,0x4 - if (RAVI_LIKELY(tointeger(ra, &j))) { setivalue(ra, j); } - 4706: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - vmbreak; - 470a: 44 8b 00 mov r8d,DWORD PTR [rax] - 470d: 45 85 ed test r13d,r13d - 4710: 0f 85 32 4b 00 00 jne 9248 - 4716: 44 89 c5 mov ebp,r8d - 4719: 41 0f b6 c0 movzx eax,r8b - 471d: c1 ed 08 shr ebp,0x8 - 4720: 48 89 c2 mov rdx,rax - 4723: 83 e5 7f and ebp,0x7f - 4726: 48 c1 e5 04 shl rbp,0x4 - 472a: 4c 01 e5 add rbp,r12 - 472d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 4731: 41 c1 e8 18 shr r8d,0x18 - 4735: 44 89 c0 mov eax,r8d - 4738: 48 c1 e0 04 shl rax,0x4 - 473c: 4c 01 e0 add rax,r12 - if (RAVI_LIKELY(ttisLtable(rb))) { - 473f: 66 81 78 08 05 80 cmp WORD PTR [rax+0x8],0x8005 - 4745: 0f 85 0b 2f 00 00 jne 7656 - setobjs2s(L, ra, rb); - 474b: 48 8b 00 mov rax,QWORD PTR [rax] - 474e: b9 05 80 ff ff mov ecx,0xffff8005 - 4753: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - 4757: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 475b: 48 89 d8 mov rax,rbx - 475e: 48 83 c3 04 add rbx,0x4 - 4762: 44 8b 00 mov r8d,DWORD PTR [rax] - 4765: 45 85 ed test r13d,r13d - 4768: 0f 85 b9 48 00 00 jne 9027 - 476e: 44 89 c5 mov ebp,r8d - 4771: 41 0f b6 c0 movzx eax,r8b - 4775: c1 ed 08 shr ebp,0x8 - 4778: 48 89 c2 mov rdx,rax - 477b: 83 e5 7f and ebp,0x7f - 477e: 48 c1 e5 04 shl rbp,0x4 - 4782: 4c 01 e5 add rbp,r12 - 4785: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 4789: 41 c1 e8 18 shr r8d,0x18 - 478d: 44 89 c0 mov eax,r8d - 4790: 48 c1 e0 04 shl rax,0x4 - 4794: 4c 01 e0 add rax,r12 - if (RAVI_LIKELY(ttisfarray(rb))) { - 4797: 66 81 78 08 25 80 cmp WORD PTR [rax+0x8],0x8025 - 479d: 0f 85 87 2e 00 00 jne 762a - setobjs2s(L, ra, rb); - 47a3: 48 8b 00 mov rax,QWORD PTR [rax] - 47a6: be 25 80 ff ff mov esi,0xffff8025 - 47ab: 66 89 75 08 mov WORD PTR [rbp+0x8],si - 47af: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 47b3: 48 89 d8 mov rax,rbx - 47b6: 48 83 c3 04 add rbx,0x4 - 47ba: 44 8b 00 mov r8d,DWORD PTR [rax] - 47bd: 45 85 ed test r13d,r13d - 47c0: 0f 85 00 49 00 00 jne 90c6 - 47c6: 44 89 c5 mov ebp,r8d - 47c9: 41 0f b6 c0 movzx eax,r8b - 47cd: c1 ed 08 shr ebp,0x8 - 47d0: 48 89 c2 mov rdx,rax - 47d3: 83 e5 7f and ebp,0x7f - 47d6: 48 c1 e5 04 shl rbp,0x4 - 47da: 4c 01 e5 add rbp,r12 - 47dd: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 47e1: 41 c1 e8 18 shr r8d,0x18 - 47e5: 44 89 c0 mov eax,r8d - 47e8: 48 c1 e0 04 shl rax,0x4 - 47ec: 4c 01 e0 add rax,r12 - if (RAVI_LIKELY(ttisiarray(rb))) { - 47ef: 66 81 78 08 15 80 cmp WORD PTR [rax+0x8],0x8015 - 47f5: 0f 85 45 2e 00 00 jne 7640 - setobjs2s(L, ra, rb); - 47fb: 48 8b 00 mov rax,QWORD PTR [rax] - 47fe: bf 15 80 ff ff mov edi,0xffff8015 - 4803: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - 4807: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 480b: 48 89 d8 mov rax,rbx - 480e: 48 83 c3 04 add rbx,0x4 - 4812: 44 8b 00 mov r8d,DWORD PTR [rax] - 4815: 45 85 ed test r13d,r13d - 4818: 0f 85 6f 46 00 00 jne 8e8d - 481e: 44 89 c5 mov ebp,r8d - 4821: 41 0f b6 c0 movzx eax,r8b - 4825: c1 ed 08 shr ebp,0x8 - 4828: 48 89 c2 mov rdx,rax - 482b: 83 e5 7f and ebp,0x7f - 482e: 48 c1 e5 04 shl rbp,0x4 - 4832: 4c 01 e5 add rbp,r12 - 4835: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 4839: 41 c1 e8 18 shr r8d,0x18 - 483d: 44 89 c7 mov edi,r8d - 4840: 48 c1 e7 04 shl rdi,0x4 - 4844: 4c 01 e7 add rdi,r12 - if (RAVI_LIKELY(tonumber(rb, &j))) { setfltvalue(ra, j); } - 4847: 66 83 7f 08 03 cmp WORD PTR [rdi+0x8],0x3 - 484c: 0f 85 10 3f 00 00 jne 8762 - 4852: f2 0f 10 07 movsd xmm0,QWORD PTR [rdi] - 4856: f2 0f 11 84 24 f0 00 movsd QWORD PTR [rsp+0xf0],xmm0 - 485d: 00 00 - 485f: 41 b8 03 00 00 00 mov r8d,0x3 - vmbreak; - 4865: 48 89 d8 mov rax,rbx - if (RAVI_LIKELY(tonumber(rb, &j))) { setfltvalue(ra, j); } - 4868: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 486d: 48 83 c3 04 add rbx,0x4 - if (RAVI_LIKELY(tonumber(rb, &j))) { setfltvalue(ra, j); } - 4871: 66 44 89 45 08 mov WORD PTR [rbp+0x8],r8w - vmbreak; - 4876: 44 8b 00 mov r8d,DWORD PTR [rax] - 4879: 45 85 ed test r13d,r13d - 487c: 0f 85 0f 48 00 00 jne 9091 - 4882: 44 89 c5 mov ebp,r8d - 4885: 41 0f b6 c0 movzx eax,r8b - 4889: c1 ed 08 shr ebp,0x8 - 488c: 48 89 c2 mov rdx,rax - 488f: 83 e5 7f and ebp,0x7f - 4892: 48 c1 e5 04 shl rbp,0x4 - 4896: 4c 01 e5 add rbp,r12 - 4899: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 489d: 41 c1 e8 18 shr r8d,0x18 - 48a1: 44 89 c7 mov edi,r8d - 48a4: 48 c1 e7 04 shl rdi,0x4 - 48a8: 4c 01 e7 add rdi,r12 - if (RAVI_LIKELY(tointeger(rb, &j))) { setivalue(ra, j); } - 48ab: 66 83 7f 08 13 cmp WORD PTR [rdi+0x8],0x13 - 48b0: 0f 85 60 41 00 00 jne 8a16 - 48b6: 48 8b 07 mov rax,QWORD PTR [rdi] - 48b9: 48 89 84 24 e8 00 00 mov QWORD PTR [rsp+0xe8],rax - 48c0: 00 - 48c1: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 48c5: 41 b9 13 00 00 00 mov r9d,0x13 - vmbreak; - 48cb: 48 89 d8 mov rax,rbx - 48ce: 48 83 c3 04 add rbx,0x4 - if (RAVI_LIKELY(tointeger(rb, &j))) { setivalue(ra, j); } - 48d2: 66 44 89 4d 08 mov WORD PTR [rbp+0x8],r9w - vmbreak; - 48d7: 44 8b 00 mov r8d,DWORD PTR [rax] - 48da: 45 85 ed test r13d,r13d - 48dd: 0f 85 30 49 00 00 jne 9213 - 48e3: 44 89 c5 mov ebp,r8d - 48e6: 41 0f b6 c0 movzx eax,r8b - 48ea: c1 ed 08 shr ebp,0x8 - 48ed: 48 89 c2 mov rdx,rax - 48f0: 83 e5 7f and ebp,0x7f - 48f3: 48 c1 e5 04 shl rbp,0x4 - 48f7: 4c 01 e5 add rbp,r12 - 48fa: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 48fe: 44 89 c0 mov eax,r8d - 4901: c1 e8 18 shr eax,0x18 - 4904: a8 80 test al,0x80 - 4906: 0f 85 9c 1d 00 00 jne 66a8 - 490c: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4910: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4914: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4918: 41 f6 c0 80 test r8b,0x80 - 491c: 0f 84 a4 1d 00 00 je 66c6 - 4922: 41 83 e0 7f and r8d,0x7f - 4926: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 492b: 49 c1 e0 04 shl r8,0x4 - 492f: 4c 01 c0 add rax,r8 - setfltvalue(ra, (lua_Number)(ivalue(rb)) / (lua_Number)(ivalue(rc))); - 4932: 66 0f ef c0 pxor xmm0,xmm0 - 4936: 66 0f ef c9 pxor xmm1,xmm1 - 493a: 41 ba 03 00 00 00 mov r10d,0x3 - 4940: f2 48 0f 2a 08 cvtsi2sd xmm1,QWORD PTR [rax] - vmbreak; - 4945: 48 89 d8 mov rax,rbx - 4948: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, (lua_Number)(ivalue(rb)) / (lua_Number)(ivalue(rc))); - 494c: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - 4951: 66 44 89 55 08 mov WORD PTR [rbp+0x8],r10w - 4956: f2 0f 5e c1 divsd xmm0,xmm1 - 495a: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 495f: 44 8b 00 mov r8d,DWORD PTR [rax] - 4962: 45 85 ed test r13d,r13d - 4965: 0f 85 f4 33 00 00 jne 7d5f - 496b: 44 89 c5 mov ebp,r8d - 496e: 41 0f b6 c0 movzx eax,r8b - 4972: c1 ed 08 shr ebp,0x8 - 4975: 48 89 c2 mov rdx,rax - 4978: 83 e5 7f and ebp,0x7f - 497b: 48 c1 e5 04 shl rbp,0x4 - 497f: 4c 01 e5 add rbp,r12 - 4982: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4986: 44 89 c0 mov eax,r8d - 4989: c1 e8 18 shr eax,0x18 - 498c: a8 80 test al,0x80 - 498e: 0f 85 43 1d 00 00 jne 66d7 - 4994: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4998: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 499c: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 49a0: 41 f6 c0 80 test r8b,0x80 - 49a4: 0f 84 4b 1d 00 00 je 66f5 - 49aa: 41 83 e0 7f and r8d,0x7f - 49ae: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 49b3: 49 c1 e0 04 shl r8,0x4 - 49b7: 4c 01 c0 add rax,r8 - setfltvalue(ra, ivalue(rb) / fltvalue(rc)); - 49ba: 66 0f ef c0 pxor xmm0,xmm0 - 49be: 41 bb 03 00 00 00 mov r11d,0x3 - 49c4: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - 49c9: f2 0f 5e 00 divsd xmm0,QWORD PTR [rax] - vmbreak; - 49cd: 48 89 d8 mov rax,rbx - setfltvalue(ra, ivalue(rb) / fltvalue(rc)); - 49d0: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 49d5: 66 44 89 5d 08 mov WORD PTR [rbp+0x8],r11w - vmbreak; - 49da: 48 83 c3 04 add rbx,0x4 - 49de: 44 8b 00 mov r8d,DWORD PTR [rax] - 49e1: 45 85 ed test r13d,r13d - 49e4: 0f 85 40 33 00 00 jne 7d2a - 49ea: 44 89 c5 mov ebp,r8d - 49ed: 41 0f b6 c0 movzx eax,r8b - 49f1: c1 ed 08 shr ebp,0x8 - 49f4: 48 89 c2 mov rdx,rax - 49f7: 83 e5 7f and ebp,0x7f - 49fa: 48 c1 e5 04 shl rbp,0x4 - 49fe: 4c 01 e5 add rbp,r12 - 4a01: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4a05: 44 89 c0 mov eax,r8d - 4a08: c1 e8 18 shr eax,0x18 - 4a0b: a8 80 test al,0x80 - 4a0d: 0f 85 42 17 00 00 jne 6155 - 4a13: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4a17: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4a1b: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 4a1e: 41 f6 c0 80 test r8b,0x80 - 4a22: 0f 84 47 17 00 00 je 616f - 4a28: 41 83 e0 7f and r8d,0x7f - 4a2c: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - 4a31: 49 c1 e0 04 shl r8,0x4 - 4a35: 4a 8d 14 06 lea rdx,[rsi+r8*1] - setfltvalue(ra, fltvalue(rb) / ivalue(rc)); - 4a39: 66 0f ef c9 pxor xmm1,xmm1 - 4a3d: f2 0f 10 00 movsd xmm0,QWORD PTR [rax] - 4a41: 41 bf 03 00 00 00 mov r15d,0x3 - vmbreak; - 4a47: 48 89 d8 mov rax,rbx - setfltvalue(ra, fltvalue(rb) / ivalue(rc)); - 4a4a: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - vmbreak; - 4a4f: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) / ivalue(rc)); - 4a53: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - 4a58: f2 0f 5e c1 divsd xmm0,xmm1 - 4a5c: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4a61: 44 8b 00 mov r8d,DWORD PTR [rax] - 4a64: 45 85 ed test r13d,r13d - 4a67: 0f 85 e8 3b 00 00 jne 8655 - 4a6d: 44 89 c5 mov ebp,r8d - 4a70: 41 0f b6 c0 movzx eax,r8b - 4a74: c1 ed 08 shr ebp,0x8 - 4a77: 48 89 c2 mov rdx,rax - 4a7a: 83 e5 7f and ebp,0x7f - 4a7d: 48 c1 e5 04 shl rbp,0x4 - 4a81: 4c 01 e5 add rbp,r12 - 4a84: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4a88: 44 89 c0 mov eax,r8d - 4a8b: c1 e8 18 shr eax,0x18 - 4a8e: a8 80 test al,0x80 - 4a90: 0f 85 56 1b 00 00 jne 65ec - 4a96: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4a9a: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4a9e: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4aa2: 41 f6 c0 80 test r8b,0x80 - 4aa6: 0f 84 5e 1b 00 00 je 660a - 4aac: 41 83 e0 7f and r8d,0x7f - 4ab0: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4ab5: 49 c1 e0 04 shl r8,0x4 - 4ab9: 4c 01 c0 add rax,r8 - setfltvalue(ra, fltvalue(rb) / fltvalue(rc)); - 4abc: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 4ac0: f2 0f 5e 00 divsd xmm0,QWORD PTR [rax] - 4ac4: b8 03 00 00 00 mov eax,0x3 - 4ac9: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 4ace: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4ad2: 48 89 d8 mov rax,rbx - 4ad5: 48 83 c3 04 add rbx,0x4 - 4ad9: 44 8b 00 mov r8d,DWORD PTR [rax] - 4adc: 45 85 ed test r13d,r13d - 4adf: 0f 85 c8 34 00 00 jne 7fad - 4ae5: 44 89 c5 mov ebp,r8d - 4ae8: 41 0f b6 c0 movzx eax,r8b - 4aec: c1 ed 08 shr ebp,0x8 - 4aef: 48 89 c2 mov rdx,rax - 4af2: 83 e5 7f and ebp,0x7f - 4af5: 48 c1 e5 04 shl rbp,0x4 - 4af9: 4c 01 e5 add rbp,r12 - 4afc: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4b00: 44 89 c0 mov eax,r8d - 4b03: c1 e8 18 shr eax,0x18 - 4b06: a8 80 test al,0x80 - 4b08: 0f 85 af 1a 00 00 jne 65bd - 4b0e: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4b12: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4b16: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4b1a: 41 f6 c0 80 test r8b,0x80 - 4b1e: 0f 84 b7 1a 00 00 je 65db - 4b24: 41 83 e0 7f and r8d,0x7f - 4b28: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4b2d: 49 c1 e0 04 shl r8,0x4 - 4b31: 4c 01 c0 add rax,r8 - setivalue(ra, ivalue(rb) * ivalue(rc)); - 4b34: 48 8b 12 mov rdx,QWORD PTR [rdx] - 4b37: 48 0f af 10 imul rdx,QWORD PTR [rax] - 4b3b: b8 13 00 00 00 mov eax,0x13 - 4b40: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4b44: 48 89 d8 mov rax,rbx - 4b47: 48 83 c3 04 add rbx,0x4 - setivalue(ra, ivalue(rb) * ivalue(rc)); - 4b4b: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4b4f: 44 8b 00 mov r8d,DWORD PTR [rax] - 4b52: 45 85 ed test r13d,r13d - 4b55: 0f 85 87 34 00 00 jne 7fe2 - 4b5b: 44 89 c5 mov ebp,r8d - 4b5e: 41 0f b6 c0 movzx eax,r8b - 4b62: c1 ed 08 shr ebp,0x8 - 4b65: 48 89 c2 mov rdx,rax - 4b68: 83 e5 7f and ebp,0x7f - 4b6b: 48 c1 e5 04 shl rbp,0x4 - 4b6f: 4c 01 e5 add rbp,r12 - 4b72: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4b76: 44 89 c0 mov eax,r8d - 4b79: c1 e8 18 shr eax,0x18 - 4b7c: a8 80 test al,0x80 - 4b7e: 0f 85 0e 1a 00 00 jne 6592 - 4b84: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4b88: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4b8c: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 4b8f: 41 f6 c0 80 test r8b,0x80 - 4b93: 0f 84 13 1a 00 00 je 65ac - 4b99: 41 83 e0 7f and r8d,0x7f - 4b9d: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - 4ba2: 49 c1 e0 04 shl r8,0x4 - 4ba6: 4a 8d 14 07 lea rdx,[rdi+r8*1] - setfltvalue(ra, fltvalue(rb) * ivalue(rc)); - 4baa: 66 0f ef c0 pxor xmm0,xmm0 - 4bae: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - 4bb3: f2 0f 59 00 mulsd xmm0,QWORD PTR [rax] - 4bb7: b8 03 00 00 00 mov eax,0x3 - 4bbc: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4bc0: 48 89 d8 mov rax,rbx - 4bc3: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) * ivalue(rc)); - 4bc7: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4bcc: 44 8b 00 mov r8d,DWORD PTR [rax] - 4bcf: 45 85 ed test r13d,r13d - 4bd2: 0f 85 3f 34 00 00 jne 8017 - 4bd8: 44 89 c5 mov ebp,r8d - 4bdb: 41 0f b6 c0 movzx eax,r8b - 4bdf: c1 ed 08 shr ebp,0x8 - 4be2: 48 89 c2 mov rdx,rax - 4be5: 83 e5 7f and ebp,0x7f - 4be8: 48 c1 e5 04 shl rbp,0x4 - 4bec: 4c 01 e5 add rbp,r12 - 4bef: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4bf3: 44 89 c0 mov eax,r8d - 4bf6: c1 e8 18 shr eax,0x18 - 4bf9: a8 80 test al,0x80 - 4bfb: 0f 85 62 19 00 00 jne 6563 - 4c01: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4c05: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4c09: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4c0d: 41 f6 c0 80 test r8b,0x80 - 4c11: 0f 84 6a 19 00 00 je 6581 - 4c17: 41 83 e0 7f and r8d,0x7f - 4c1b: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4c20: 49 c1 e0 04 shl r8,0x4 - 4c24: 4c 01 c0 add rax,r8 - setfltvalue(ra, fltvalue(rb) * fltvalue(rc)); - 4c27: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 4c2b: f2 0f 59 00 mulsd xmm0,QWORD PTR [rax] - 4c2f: b8 03 00 00 00 mov eax,0x3 - 4c34: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4c38: 48 89 d8 mov rax,rbx - 4c3b: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) * fltvalue(rc)); - 4c3f: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4c44: 44 8b 00 mov r8d,DWORD PTR [rax] - 4c47: 45 85 ed test r13d,r13d - 4c4a: 0f 85 fc 33 00 00 jne 804c - 4c50: 44 89 c5 mov ebp,r8d - 4c53: 41 0f b6 c0 movzx eax,r8b - 4c57: c1 ed 08 shr ebp,0x8 - 4c5a: 48 89 c2 mov rdx,rax - 4c5d: 83 e5 7f and ebp,0x7f - 4c60: 48 c1 e5 04 shl rbp,0x4 - 4c64: 4c 01 e5 add rbp,r12 - 4c67: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4c6b: 44 89 c0 mov eax,r8d - 4c6e: c1 e8 18 shr eax,0x18 - 4c71: a8 80 test al,0x80 - 4c73: 0f 85 bb 18 00 00 jne 6534 - 4c79: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4c7d: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4c81: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4c85: 41 f6 c0 80 test r8b,0x80 - 4c89: 0f 84 c3 18 00 00 je 6552 - 4c8f: 41 83 e0 7f and r8d,0x7f - 4c93: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4c98: 49 c1 e0 04 shl r8,0x4 - 4c9c: 4c 01 c0 add rax,r8 - setivalue(ra, ivalue(rb) - ivalue(rc)); - 4c9f: 48 8b 12 mov rdx,QWORD PTR [rdx] - 4ca2: 48 2b 10 sub rdx,QWORD PTR [rax] - 4ca5: b8 13 00 00 00 mov eax,0x13 - 4caa: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4cae: 48 89 d8 mov rax,rbx - 4cb1: 48 83 c3 04 add rbx,0x4 - setivalue(ra, ivalue(rb) - ivalue(rc)); - 4cb5: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4cb9: 44 8b 00 mov r8d,DWORD PTR [rax] - 4cbc: 45 85 ed test r13d,r13d - 4cbf: 0f 85 da 34 00 00 jne 819f - 4cc5: 44 89 c5 mov ebp,r8d - 4cc8: 41 0f b6 c0 movzx eax,r8b - 4ccc: c1 ed 08 shr ebp,0x8 - 4ccf: 48 89 c2 mov rdx,rax - 4cd2: 83 e5 7f and ebp,0x7f - 4cd5: 48 c1 e5 04 shl rbp,0x4 - 4cd9: 4c 01 e5 add rbp,r12 - 4cdc: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4ce0: 44 89 c0 mov eax,r8d - 4ce3: c1 e8 18 shr eax,0x18 - 4ce6: a8 80 test al,0x80 - 4ce8: 0f 85 17 18 00 00 jne 6505 - 4cee: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4cf2: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4cf6: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4cfa: 41 f6 c0 80 test r8b,0x80 - 4cfe: 0f 84 1f 18 00 00 je 6523 - 4d04: 41 83 e0 7f and r8d,0x7f - 4d08: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4d0d: 49 c1 e0 04 shl r8,0x4 - 4d11: 4c 01 c0 add rax,r8 - setfltvalue(ra, ivalue(rb) - fltvalue(rc)); - 4d14: 66 0f ef c0 pxor xmm0,xmm0 - 4d18: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - 4d1d: f2 0f 5c 00 subsd xmm0,QWORD PTR [rax] - 4d21: b8 03 00 00 00 mov eax,0x3 - 4d26: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - vmbreak; - 4d2a: 48 89 d8 mov rax,rbx - 4d2d: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, ivalue(rb) - fltvalue(rc)); - 4d31: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4d36: 44 8b 00 mov r8d,DWORD PTR [rax] - 4d39: 45 85 ed test r13d,r13d - 4d3c: 0f 85 92 34 00 00 jne 81d4 - 4d42: 44 89 c5 mov ebp,r8d - 4d45: 41 0f b6 c0 movzx eax,r8b - 4d49: c1 ed 08 shr ebp,0x8 - 4d4c: 48 89 c2 mov rdx,rax - 4d4f: 83 e5 7f and ebp,0x7f - 4d52: 48 c1 e5 04 shl rbp,0x4 - 4d56: 4c 01 e5 add rbp,r12 - 4d59: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4d5d: 44 89 c0 mov eax,r8d - 4d60: c1 e8 18 shr eax,0x18 - 4d63: a8 80 test al,0x80 - 4d65: 0f 85 6f 17 00 00 jne 64da - 4d6b: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4d6f: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4d73: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 4d76: 41 f6 c0 80 test r8b,0x80 - 4d7a: 0f 84 74 17 00 00 je 64f4 - 4d80: 41 83 e0 7f and r8d,0x7f - 4d84: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - 4d89: 49 c1 e0 04 shl r8,0x4 - 4d8d: 4a 8d 14 06 lea rdx,[rsi+r8*1] - setfltvalue(ra, fltvalue(rb) - ivalue(rc)); - 4d91: 66 0f ef c9 pxor xmm1,xmm1 - 4d95: f2 0f 10 00 movsd xmm0,QWORD PTR [rax] - vmbreak; - 4d99: 48 89 d8 mov rax,rbx - 4d9c: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) - ivalue(rc)); - 4da0: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - 4da5: ba 03 00 00 00 mov edx,0x3 - 4daa: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - 4dae: f2 0f 5c c1 subsd xmm0,xmm1 - 4db2: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4db7: 44 8b 00 mov r8d,DWORD PTR [rax] - 4dba: 45 85 ed test r13d,r13d - 4dbd: 0f 85 46 34 00 00 jne 8209 - 4dc3: 44 89 c5 mov ebp,r8d - 4dc6: 41 0f b6 c0 movzx eax,r8b - 4dca: c1 ed 08 shr ebp,0x8 - 4dcd: 48 89 c2 mov rdx,rax - 4dd0: 83 e5 7f and ebp,0x7f - 4dd3: 48 c1 e5 04 shl rbp,0x4 - 4dd7: 4c 01 e5 add rbp,r12 - 4dda: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4dde: 44 89 c0 mov eax,r8d - 4de1: c1 e8 18 shr eax,0x18 - 4de4: a8 80 test al,0x80 - 4de6: 0f 85 bf 16 00 00 jne 64ab - 4dec: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4df0: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4df4: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4df8: 41 f6 c0 80 test r8b,0x80 - 4dfc: 0f 84 c7 16 00 00 je 64c9 - 4e02: 41 83 e0 7f and r8d,0x7f - 4e06: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4e0b: 49 c1 e0 04 shl r8,0x4 - 4e0f: 4c 01 c0 add rax,r8 - setfltvalue(ra, fltvalue(rb) - fltvalue(rc)); - 4e12: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 4e16: f2 0f 5c 00 subsd xmm0,QWORD PTR [rax] - 4e1a: b9 03 00 00 00 mov ecx,0x3 - vmbreak; - 4e1f: 48 89 d8 mov rax,rbx - setfltvalue(ra, fltvalue(rb) - fltvalue(rc)); - 4e22: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - vmbreak; - 4e26: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) - fltvalue(rc)); - 4e2a: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4e2f: 44 8b 00 mov r8d,DWORD PTR [rax] - 4e32: 45 85 ed test r13d,r13d - 4e35: 0f 85 03 34 00 00 jne 823e - 4e3b: 44 89 c5 mov ebp,r8d - 4e3e: 41 0f b6 c0 movzx eax,r8b - 4e42: c1 ed 08 shr ebp,0x8 - 4e45: 48 89 c2 mov rdx,rax - 4e48: 83 e5 7f and ebp,0x7f - 4e4b: 48 c1 e5 04 shl rbp,0x4 - 4e4f: 4c 01 e5 add rbp,r12 - 4e52: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4e56: 44 89 c0 mov eax,r8d - 4e59: c1 e8 18 shr eax,0x18 - 4e5c: a8 80 test al,0x80 - 4e5e: 0f 85 6f 19 00 00 jne 67d3 - 4e64: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4e68: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4e6c: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 4e6f: 41 f6 c0 80 test r8b,0x80 - 4e73: 0f 84 74 19 00 00 je 67ed - 4e79: 41 83 e0 7f and r8d,0x7f - 4e7d: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - 4e82: 49 c1 e0 04 shl r8,0x4 - 4e86: 4a 8d 14 06 lea rdx,[rsi+r8*1] - setivalue(ra, ivalue(rb) + ivalue(rc)); - 4e8a: 48 8b 12 mov rdx,QWORD PTR [rdx] - 4e8d: be 13 00 00 00 mov esi,0x13 - 4e92: 48 03 10 add rdx,QWORD PTR [rax] - vmbreak; - 4e95: 48 89 d8 mov rax,rbx - setivalue(ra, ivalue(rb) + ivalue(rc)); - 4e98: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - vmbreak; - 4e9c: 48 83 c3 04 add rbx,0x4 - 4ea0: 44 8b 00 mov r8d,DWORD PTR [rax] - setivalue(ra, ivalue(rb) + ivalue(rc)); - 4ea3: 66 89 75 08 mov WORD PTR [rbp+0x8],si - vmbreak; - 4ea7: 45 85 ed test r13d,r13d - 4eaa: 0f 85 45 2e 00 00 jne 7cf5 - 4eb0: 44 89 c5 mov ebp,r8d - 4eb3: 41 0f b6 c0 movzx eax,r8b - 4eb7: c1 ed 08 shr ebp,0x8 - 4eba: 48 89 c2 mov rdx,rax - 4ebd: 83 e5 7f and ebp,0x7f - 4ec0: 48 c1 e5 04 shl rbp,0x4 - 4ec4: 4c 01 e5 add rbp,r12 - 4ec7: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4ecb: 44 89 c0 mov eax,r8d - 4ece: c1 e8 18 shr eax,0x18 - 4ed1: a8 80 test al,0x80 - 4ed3: 0f 85 d6 12 00 00 jne 61af - 4ed9: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4edd: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4ee1: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 4ee4: 41 f6 c0 80 test r8b,0x80 - 4ee8: 0f 84 db 12 00 00 je 61c9 - 4eee: 41 83 e0 7f and r8d,0x7f - 4ef2: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - 4ef7: 49 c1 e0 04 shl r8,0x4 - 4efb: 4a 8d 14 01 lea rdx,[rcx+r8*1] - setfltvalue(ra, fltvalue(rb) + ivalue(rc)); - 4eff: 66 0f ef c0 pxor xmm0,xmm0 - 4f03: bf 03 00 00 00 mov edi,0x3 - 4f08: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - 4f0d: f2 0f 58 00 addsd xmm0,QWORD PTR [rax] - vmbreak; - 4f11: 48 89 d8 mov rax,rbx - setfltvalue(ra, fltvalue(rb) + ivalue(rc)); - 4f14: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - vmbreak; - 4f18: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) + ivalue(rc)); - 4f1c: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4f21: 44 8b 00 mov r8d,DWORD PTR [rax] - 4f24: 45 85 ed test r13d,r13d - 4f27: 0f 85 be 36 00 00 jne 85eb - 4f2d: 44 89 c5 mov ebp,r8d - 4f30: 41 0f b6 c0 movzx eax,r8b - 4f34: c1 ed 08 shr ebp,0x8 - 4f37: 48 89 c2 mov rdx,rax - 4f3a: 83 e5 7f and ebp,0x7f - 4f3d: 48 c1 e5 04 shl rbp,0x4 - 4f41: 4c 01 e5 add rbp,r12 - 4f44: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 4f48: 44 89 c0 mov eax,r8d - 4f4b: c1 e8 18 shr eax,0x18 - 4f4e: a8 80 test al,0x80 - 4f50: 0f 85 2a 12 00 00 jne 6180 - 4f56: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 4f5a: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 4f5e: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 4f62: 41 f6 c0 80 test r8b,0x80 - 4f66: 0f 84 32 12 00 00 je 619e - 4f6c: 41 83 e0 7f and r8d,0x7f - 4f70: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 4f75: 49 c1 e0 04 shl r8,0x4 - 4f79: 4c 01 c0 add rax,r8 - setfltvalue(ra, fltvalue(rb) + fltvalue(rc)); - 4f7c: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 4f80: f2 0f 58 00 addsd xmm0,QWORD PTR [rax] - 4f84: 41 b8 03 00 00 00 mov r8d,0x3 - vmbreak; - 4f8a: 48 89 d8 mov rax,rbx - setfltvalue(ra, fltvalue(rb) + fltvalue(rc)); - 4f8d: 66 44 89 45 08 mov WORD PTR [rbp+0x8],r8w - vmbreak; - 4f92: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, fltvalue(rb) + fltvalue(rc)); - 4f96: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 4f9b: 44 8b 00 mov r8d,DWORD PTR [rax] - 4f9e: 45 85 ed test r13d,r13d - 4fa1: 0f 85 79 36 00 00 jne 8620 - 4fa7: 44 89 c5 mov ebp,r8d - 4faa: 41 0f b6 c0 movzx eax,r8b - 4fae: c1 ed 08 shr ebp,0x8 - 4fb1: 48 89 c2 mov rdx,rax - 4fb4: 83 e5 7f and ebp,0x7f - 4fb7: 48 c1 e5 04 shl rbp,0x4 - 4fbb: 4c 01 e5 add rbp,r12 - 4fbe: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 4fc2: 41 c1 e8 18 shr r8d,0x18 - setivalue(ra, -ivalue(rb)); - 4fc6: 41 b9 13 00 00 00 mov r9d,0x13 - TValue *rb = RB(i); - 4fcc: 44 89 c0 mov eax,r8d - setivalue(ra, -ivalue(rb)); - 4fcf: 48 c1 e0 04 shl rax,0x4 - 4fd3: 49 8b 04 04 mov rax,QWORD PTR [r12+rax*1] - 4fd7: 66 44 89 4d 08 mov WORD PTR [rbp+0x8],r9w - 4fdc: 48 f7 d8 neg rax - 4fdf: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 4fe3: 48 89 d8 mov rax,rbx - 4fe6: 48 83 c3 04 add rbx,0x4 - 4fea: 44 8b 00 mov r8d,DWORD PTR [rax] - 4fed: 45 85 ed test r13d,r13d - 4ff0: 0f 85 56 3a 00 00 jne 8a4c - 4ff6: 44 89 c5 mov ebp,r8d - 4ff9: 41 0f b6 c0 movzx eax,r8b - 4ffd: c1 ed 08 shr ebp,0x8 - 5000: 48 89 c2 mov rdx,rax - 5003: 83 e5 7f and ebp,0x7f - 5006: 48 c1 e5 04 shl rbp,0x4 - 500a: 4c 01 e5 add rbp,r12 - 500d: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 5011: 41 c1 e8 18 shr r8d,0x18 - setfltvalue(ra, -fltvalue(rb)); - 5015: 41 ba 03 00 00 00 mov r10d,0x3 - TValue *rb = RB(i); - 501b: 44 89 c0 mov eax,r8d - setfltvalue(ra, -fltvalue(rb)); - 501e: 48 c1 e0 04 shl rax,0x4 - 5022: f2 41 0f 10 04 04 movsd xmm0,QWORD PTR [r12+rax*1] - vmbreak; - 5028: 48 89 d8 mov rax,rbx - setfltvalue(ra, -fltvalue(rb)); - 502b: 66 44 89 55 08 mov WORD PTR [rbp+0x8],r10w - vmbreak; - 5030: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, -fltvalue(rb)); - 5034: 66 0f 57 05 00 00 00 xorpd xmm0,XMMWORD PTR [rip+0x0] # 503c - 503b: 00 - 503c: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 5041: 44 8b 00 mov r8d,DWORD PTR [rax] - 5044: 45 85 ed test r13d,r13d - 5047: 0f 85 34 3a 00 00 jne 8a81 - 504d: 44 89 c5 mov ebp,r8d - 5050: 41 0f b6 c0 movzx eax,r8b - 5054: c1 ed 08 shr ebp,0x8 - 5057: 48 89 c2 mov rdx,rax - 505a: 83 e5 7f and ebp,0x7f - 505d: 48 c1 e5 04 shl rbp,0x4 - 5061: 4c 01 e5 add rbp,r12 - 5064: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - vmbreak; - 5068: 48 89 d8 mov rax,rbx - setfltvalue(ra, 0.0); - 506b: 41 bb 03 00 00 00 mov r11d,0x3 - vmbreak; - 5071: 48 83 c3 04 add rbx,0x4 - setfltvalue(ra, 0.0); - 5075: 48 c7 45 00 00 00 00 mov QWORD PTR [rbp+0x0],0x0 - 507c: 00 - 507d: 66 44 89 5d 08 mov WORD PTR [rbp+0x8],r11w - vmbreak; - 5082: 44 8b 00 mov r8d,DWORD PTR [rax] - 5085: 45 85 ed test r13d,r13d - 5088: 0f 85 50 3b 00 00 jne 8bde - 508e: 44 89 c5 mov ebp,r8d - 5091: 41 0f b6 c0 movzx eax,r8b - 5095: c1 ed 08 shr ebp,0x8 - 5098: 48 89 c2 mov rdx,rax - 509b: 83 e5 7f and ebp,0x7f - 509e: 48 c1 e5 04 shl rbp,0x4 - 50a2: 4c 01 e5 add rbp,r12 - 50a5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - vmbreak; - 50a9: 48 89 d8 mov rax,rbx - setivalue(ra, 0); - 50ac: 41 bf 13 00 00 00 mov r15d,0x13 - vmbreak; - 50b2: 48 83 c3 04 add rbx,0x4 - setivalue(ra, 0); - 50b6: 48 c7 45 00 00 00 00 mov QWORD PTR [rbp+0x0],0x0 - 50bd: 00 - 50be: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - vmbreak; - 50c3: 44 8b 00 mov r8d,DWORD PTR [rax] - 50c6: 45 85 ed test r13d,r13d - 50c9: 0f 85 44 3b 00 00 jne 8c13 - 50cf: 44 89 c5 mov ebp,r8d - 50d2: 41 0f b6 c0 movzx eax,r8b - 50d6: c1 ed 08 shr ebp,0x8 - 50d9: 48 89 c2 mov rdx,rax - 50dc: 83 e5 7f and ebp,0x7f - 50df: 48 c1 e5 04 shl rbp,0x4 - 50e3: 4c 01 e5 add rbp,r12 - 50e6: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (!ttisLtable(ra)) - 50ea: 66 81 7d 08 05 80 cmp WORD PTR [rbp+0x8],0x8005 - 50f0: 0f 85 d2 4a 00 00 jne 9bc8 - UpVal *uv = cl->upvals[GETARG_B(i)]; - 50f6: 41 c1 e8 18 shr r8d,0x18 - 50fa: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - setobj(L, uv->v, ra); - 50ff: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 5103: 49 63 c0 movsxd rax,r8d - 5106: 48 8b 74 c7 20 mov rsi,QWORD PTR [rdi+rax*8+0x20] - setobj(L, uv->v, ra); - 510b: 48 8b 06 mov rax,QWORD PTR [rsi] - 510e: 48 89 10 mov QWORD PTR [rax],rdx - 5111: 0f b7 55 08 movzx edx,WORD PTR [rbp+0x8] - 5115: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - 5119: 66 85 d2 test dx,dx - 511c: 0f 88 b1 18 00 00 js 69d3 - vmbreak; - 5122: 48 89 d8 mov rax,rbx - 5125: 48 83 c3 04 add rbx,0x4 - 5129: 44 8b 00 mov r8d,DWORD PTR [rax] - 512c: 45 85 ed test r13d,r13d - 512f: 0f 85 48 3b 00 00 jne 8c7d - 5135: 44 89 c5 mov ebp,r8d - 5138: 41 0f b6 c0 movzx eax,r8b - 513c: c1 ed 08 shr ebp,0x8 - 513f: 48 89 c2 mov rdx,rax - 5142: 83 e5 7f and ebp,0x7f - 5145: 48 c1 e5 04 shl rbp,0x4 - 5149: 4c 01 e5 add rbp,r12 - 514c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (!ttisfarray(ra)) - 5150: 66 81 7d 08 25 80 cmp WORD PTR [rbp+0x8],0x8025 - 5156: 0f 85 98 4a 00 00 jne 9bf4 - UpVal *uv = cl->upvals[GETARG_B(i)]; - 515c: 41 c1 e8 18 shr r8d,0x18 - 5160: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - setobj(L, uv->v, ra); - 5165: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 5169: 49 63 c0 movsxd rax,r8d - 516c: 48 8b 74 c1 20 mov rsi,QWORD PTR [rcx+rax*8+0x20] - setobj(L, uv->v, ra); - 5171: 48 8b 06 mov rax,QWORD PTR [rsi] - 5174: 48 89 10 mov QWORD PTR [rax],rdx - 5177: 0f b7 55 08 movzx edx,WORD PTR [rbp+0x8] - 517b: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - 517f: 66 85 d2 test dx,dx - 5182: 0f 88 2f 18 00 00 js 69b7 - vmbreak; - 5188: 48 89 d8 mov rax,rbx - 518b: 48 83 c3 04 add rbx,0x4 - 518f: 44 8b 00 mov r8d,DWORD PTR [rax] - 5192: 45 85 ed test r13d,r13d - 5195: 0f 85 17 3b 00 00 jne 8cb2 - 519b: 44 89 c5 mov ebp,r8d - 519e: 41 0f b6 c0 movzx eax,r8b - 51a2: c1 ed 08 shr ebp,0x8 - 51a5: 48 89 c2 mov rdx,rax - 51a8: 83 e5 7f and ebp,0x7f - 51ab: 48 c1 e5 04 shl rbp,0x4 - 51af: 4c 01 e5 add rbp,r12 - 51b2: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (!ttisiarray(ra)) - 51b6: 66 81 7d 08 15 80 cmp WORD PTR [rbp+0x8],0x8015 - 51bc: 0f 85 1c 4a 00 00 jne 9bde - UpVal *uv = cl->upvals[GETARG_B(i)]; - 51c2: 41 c1 e8 18 shr r8d,0x18 - 51c6: 48 8b 74 24 20 mov rsi,QWORD PTR [rsp+0x20] - setobj(L, uv->v, ra); - 51cb: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 51cf: 49 63 c0 movsxd rax,r8d - 51d2: 48 8b 74 c6 20 mov rsi,QWORD PTR [rsi+rax*8+0x20] - setobj(L, uv->v, ra); - 51d7: 48 8b 06 mov rax,QWORD PTR [rsi] - 51da: 48 89 10 mov QWORD PTR [rax],rdx - 51dd: 0f b7 55 08 movzx edx,WORD PTR [rbp+0x8] - 51e1: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - 51e5: 66 85 d2 test dx,dx - 51e8: 0f 88 43 17 00 00 js 6931 - vmbreak; - 51ee: 48 89 d8 mov rax,rbx - 51f1: 48 83 c3 04 add rbx,0x4 - 51f5: 44 8b 00 mov r8d,DWORD PTR [rax] - 51f8: 45 85 ed test r13d,r13d - 51fb: 0f 85 b5 38 00 00 jne 8ab6 - 5201: 44 89 c5 mov ebp,r8d - 5204: 41 0f b6 c0 movzx eax,r8b - 5208: c1 ed 08 shr ebp,0x8 - 520b: 48 89 c2 mov rdx,rax - 520e: 83 e5 7f and ebp,0x7f - 5211: 48 c1 e5 04 shl rbp,0x4 - 5215: 4c 01 e5 add rbp,r12 - 5218: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (tonumber(ra, &na)) { - 521c: 66 83 7d 08 03 cmp WORD PTR [rbp+0x8],0x3 - 5221: 0f 85 c4 38 00 00 jne 8aeb - 5227: f2 0f 10 45 00 movsd xmm0,QWORD PTR [rbp+0x0] - 522c: f2 0f 11 84 24 e0 00 movsd QWORD PTR [rsp+0xe0],xmm0 - 5233: 00 00 - UpVal *uv = cl->upvals[GETARG_B(i)]; - 5235: 41 c1 e8 18 shr r8d,0x18 - setfltvalue(uv->v, na); - 5239: 48 8b 7c 24 20 mov rdi,QWORD PTR [rsp+0x20] - 523e: ba 03 00 00 00 mov edx,0x3 - UpVal *uv = cl->upvals[GETARG_B(i)]; - 5243: 49 63 c0 movsxd rax,r8d - setfltvalue(uv->v, na); - 5246: 48 8b 44 c7 20 mov rax,QWORD PTR [rdi+rax*8+0x20] - 524b: 48 8b 00 mov rax,QWORD PTR [rax] - 524e: f2 0f 11 00 movsd QWORD PTR [rax],xmm0 - 5252: 66 89 50 08 mov WORD PTR [rax+0x8],dx - vmbreak; - 5256: 48 89 d8 mov rax,rbx - 5259: 48 83 c3 04 add rbx,0x4 - 525d: 44 8b 00 mov r8d,DWORD PTR [rax] - 5260: 45 85 ed test r13d,r13d - 5263: 0f 85 47 37 00 00 jne 89b0 - 5269: 44 89 c5 mov ebp,r8d - 526c: 41 0f b6 c0 movzx eax,r8b - 5270: c1 ed 08 shr ebp,0x8 - 5273: 48 89 c2 mov rdx,rax - 5276: 83 e5 7f and ebp,0x7f - 5279: 48 c1 e5 04 shl rbp,0x4 - 527d: 4c 01 e5 add rbp,r12 - 5280: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - if (tointeger(ra, &ia)) { - 5284: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 5289: 0f 85 56 37 00 00 jne 89e5 - 528f: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - 5293: 48 89 94 24 d8 00 00 mov QWORD PTR [rsp+0xd8],rdx - 529a: 00 - UpVal *uv = cl->upvals[GETARG_B(i)]; - 529b: 41 c1 e8 18 shr r8d,0x18 - setivalue(uv->v, ia); - 529f: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - UpVal *uv = cl->upvals[GETARG_B(i)]; - 52a4: 49 63 c0 movsxd rax,r8d - setivalue(uv->v, ia); - 52a7: 48 8b 44 c1 20 mov rax,QWORD PTR [rcx+rax*8+0x20] - 52ac: b9 13 00 00 00 mov ecx,0x13 - 52b1: 48 8b 00 mov rax,QWORD PTR [rax] - 52b4: 48 89 10 mov QWORD PTR [rax],rdx - 52b7: 66 89 48 08 mov WORD PTR [rax+0x8],cx - vmbreak; - 52bb: 48 89 d8 mov rax,rbx - 52be: 48 83 c3 04 add rbx,0x4 - 52c2: 44 8b 00 mov r8d,DWORD PTR [rax] - 52c5: 45 85 ed test r13d,r13d - 52c8: 0f 85 fe 34 00 00 jne 87cc - 52ce: 44 89 c5 mov ebp,r8d - 52d1: 41 0f b6 c0 movzx eax,r8b - 52d5: c1 ed 08 shr ebp,0x8 - 52d8: 48 89 c2 mov rdx,rax - 52db: 83 e5 7f and ebp,0x7f - 52de: 48 c1 e5 04 shl rbp,0x4 - 52e2: 4c 01 e5 add rbp,r12 - 52e5: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 52e9: 44 89 c0 mov eax,r8d - Table *t = hvalue(ra); - 52ec: 48 8b 75 00 mov rsi,QWORD PTR [rbp+0x0] - TValue *rb = RKB(i); - 52f0: c1 e8 18 shr eax,0x18 - 52f3: a8 80 test al,0x80 - 52f5: 0f 84 b1 14 00 00 je 67ac - 52fb: 83 e0 7f and eax,0x7f - 52fe: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5303: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5307: 48 c1 e0 04 shl rax,0x4 - 530b: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 530f: 41 f6 c0 80 test r8b,0x80 - 5313: 0f 84 a9 14 00 00 je 67c2 - 5319: 41 83 e0 7f and r8d,0x7f - 531d: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 5322: 49 c1 e0 04 shl r8,0x4 - 5326: 4c 01 c0 add rax,r8 - lua_Integer idx = ivalue(rb); - 5329: 48 8b 0a mov rcx,QWORD PTR [rdx] - raviH_set_float_inline(L, t, idx, fltvalue(rc)); - 532c: 48 8b 7e 38 mov rdi,QWORD PTR [rsi+0x38] - 5330: f2 0f 10 00 movsd xmm0,QWORD PTR [rax] - 5334: 89 ca mov edx,ecx - 5336: 39 4e 40 cmp DWORD PTR [rsi+0x40],ecx - 5339: 0f 86 bb 1d 00 00 jbe 70fa - 533f: f2 0f 11 04 d7 movsd QWORD PTR [rdi+rdx*8],xmm0 - vmbreak; - 5344: 48 89 d8 mov rax,rbx - 5347: 48 83 c3 04 add rbx,0x4 - 534b: 44 8b 00 mov r8d,DWORD PTR [rax] - 534e: 45 85 ed test r13d,r13d - 5351: 0f 85 5f 2d 00 00 jne 80b6 - 5357: 44 89 c5 mov ebp,r8d - 535a: 41 0f b6 c0 movzx eax,r8b - 535e: c1 ed 08 shr ebp,0x8 - 5361: 48 89 c2 mov rdx,rax - 5364: 83 e5 7f and ebp,0x7f - 5367: 48 c1 e5 04 shl rbp,0x4 - 536b: 4c 01 e5 add rbp,r12 - 536e: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 5372: 44 89 c0 mov eax,r8d - Table *t = hvalue(ra); - 5375: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - TValue *rb = RKB(i); - 5379: c1 e8 18 shr eax,0x18 - 537c: a8 80 test al,0x80 - 537e: 0f 85 a9 13 00 00 jne 672d - 5384: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 5388: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 538c: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 538f: 41 f6 c0 80 test r8b,0x80 - 5393: 0f 84 ae 13 00 00 je 6747 - 5399: 41 83 e0 7f and r8d,0x7f - 539d: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - lua_Integer idx = ivalue(rb); - 53a2: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rc = RKC(i); - 53a5: 49 c1 e0 04 shl r8,0x4 - 53a9: 4a 8d 3c 06 lea rdi,[rsi+r8*1] - if (ttisfloat(rc)) { raviH_set_float_inline(L, t, idx, fltvalue(rc)); } - 53ad: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 53b1: 66 83 f8 03 cmp ax,0x3 - 53b5: 0f 84 a9 13 00 00 je 6764 - else if (ttisinteger(rc)) { - 53bb: 66 83 f8 13 cmp ax,0x13 - 53bf: 0f 85 44 1d 00 00 jne 7109 - raviH_set_float_inline(L, t, idx, ((lua_Number)ivalue(rc))); - 53c5: 66 0f ef c0 pxor xmm0,xmm0 - 53c9: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 53cd: 44 89 fa mov edx,r15d - 53d0: f2 48 0f 2a 07 cvtsi2sd xmm0,QWORD PTR [rdi] - 53d5: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 53d9: 0f 86 5a 1f 00 00 jbe 7339 - 53df: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 53e4: e9 95 13 00 00 jmp 677e - TValue *rb = RKB(i); - 53e9: 44 89 c0 mov eax,r8d - Table *t = hvalue(ra); - 53ec: 48 8b 75 00 mov rsi,QWORD PTR [rbp+0x0] - TValue *rb = RKB(i); - 53f0: c1 e8 18 shr eax,0x18 - 53f3: a8 80 test al,0x80 - 53f5: 0f 84 0b 13 00 00 je 6706 - 53fb: 83 e0 7f and eax,0x7f - 53fe: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5403: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5407: 48 c1 e0 04 shl rax,0x4 - 540b: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 540f: 41 f6 c0 80 test r8b,0x80 - 5413: 0f 84 03 13 00 00 je 671c - 5419: 41 83 e0 7f and r8d,0x7f - 541d: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 5422: 49 c1 e0 04 shl r8,0x4 - 5426: 4c 01 c0 add rax,r8 - lua_Integer idx = ivalue(rb); - 5429: 48 8b 3a mov rdi,QWORD PTR [rdx] - raviH_set_int_inline(L, t, idx, ivalue(rc)); - 542c: 4c 8b 46 38 mov r8,QWORD PTR [rsi+0x38] - 5430: 48 8b 08 mov rcx,QWORD PTR [rax] - 5433: 89 fa mov edx,edi - 5435: 39 7e 40 cmp DWORD PTR [rsi+0x40],edi - 5438: 0f 86 ad 1c 00 00 jbe 70eb - 543e: 49 89 0c d0 mov QWORD PTR [r8+rdx*8],rcx - vmbreak; - 5442: 48 89 d8 mov rax,rbx - 5445: 48 83 c3 04 add rbx,0x4 - 5449: 44 8b 00 mov r8d,DWORD PTR [rax] - 544c: 45 85 ed test r13d,r13d - 544f: 0f 85 2c 2c 00 00 jne 8081 - 5455: 44 89 c5 mov ebp,r8d - 5458: 41 0f b6 c0 movzx eax,r8b - 545c: c1 ed 08 shr ebp,0x8 - 545f: 48 89 c2 mov rdx,rax - 5462: 83 e5 7f and ebp,0x7f - 5465: 48 c1 e5 04 shl rbp,0x4 - 5469: 4c 01 e5 add rbp,r12 - 546c: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 5470: 44 89 c0 mov eax,r8d - Table *t = hvalue(ra); - 5473: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - TValue *rb = RKB(i); - 5477: c1 e8 18 shr eax,0x18 - 547a: a8 80 test al,0x80 - 547c: 0f 85 56 0c 00 00 jne 60d8 - 5482: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 5486: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 548a: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 548d: 41 f6 c0 80 test r8b,0x80 - 5491: 0f 84 5b 0c 00 00 je 60f2 - 5497: 41 83 e0 7f and r8d,0x7f - 549b: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - lua_Integer idx = ivalue(rb); - 54a0: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rc = RKC(i); - 54a3: 49 c1 e0 04 shl r8,0x4 - 54a7: 4a 8d 3c 06 lea rdi,[rsi+r8*1] - if (ttisinteger(rc)) { raviH_set_int_inline(L, t, idx, ivalue(rc)); } - 54ab: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 54af: 66 83 f8 13 cmp ax,0x13 - 54b3: 0f 84 56 0c 00 00 je 610f - else if (ttisfloat(rc)) { - 54b9: 66 83 f8 03 cmp ax,0x3 - 54bd: 0f 85 ef 1b 00 00 jne 70b2 - raviH_set_int_inline(L, t, idx, (lua_Integer)fltvalue(rc)); - 54c3: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 54c7: f2 48 0f 2c 0f cvttsd2si rcx,QWORD PTR [rdi] - 54cc: 44 89 fa mov edx,r15d - 54cf: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 54d3: 0f 86 20 1f 00 00 jbe 73f9 - 54d9: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 54dd: e9 45 0c 00 00 jmp 6127 - TValue *rb = RB(i); - 54e2: 44 89 c2 mov edx,r8d - TValue *rc = RKC(i); - 54e5: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RB(i); - 54e9: c1 ea 18 shr edx,0x18 - 54ec: 48 c1 e2 04 shl rdx,0x4 - 54f0: 4c 01 e2 add rdx,r12 - TValue *rc = RKC(i); - 54f3: 41 f6 c0 80 test r8b,0x80 - 54f7: 0f 85 c6 0b 00 00 jne 60c3 - 54fd: 45 0f b6 c0 movzx r8d,r8b - 5501: 49 c1 e0 04 shl r8,0x4 - 5505: 4b 8d 04 04 lea rax,[r12+r8*1] - Table *t = hvalue(rb); - 5509: 48 8b 12 mov rdx,QWORD PTR [rdx] - lua_Integer idx = ivalue(rc); - 550c: 48 8b 00 mov rax,QWORD PTR [rax] - raviH_get_float_inline(L, t, idx, ra); - 550f: 48 8b 4a 38 mov rcx,QWORD PTR [rdx+0x38] - 5513: 39 42 40 cmp DWORD PTR [rdx+0x40],eax - 5516: 0f 86 14 48 00 00 jbe 9d30 - 551c: 89 c0 mov eax,eax - 551e: be 03 00 00 00 mov esi,0x3 - 5523: f2 0f 10 04 c1 movsd xmm0,QWORD PTR [rcx+rax*8] - vmbreak; - 5528: 48 89 d8 mov rax,rbx - raviH_get_float_inline(L, t, idx, ra); - 552b: 66 89 75 08 mov WORD PTR [rbp+0x8],si - vmbreak; - 552f: 48 83 c3 04 add rbx,0x4 - raviH_get_float_inline(L, t, idx, ra); - 5533: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - vmbreak; - 5538: 44 8b 00 mov r8d,DWORD PTR [rax] - 553b: 45 85 ed test r13d,r13d - 553e: 0f 85 ff 2f 00 00 jne 8543 - 5544: 44 89 c5 mov ebp,r8d - 5547: 41 0f b6 c0 movzx eax,r8b - 554b: c1 ed 08 shr ebp,0x8 - 554e: 48 89 c2 mov rdx,rax - 5551: 83 e5 7f and ebp,0x7f - 5554: 48 c1 e5 04 shl rbp,0x4 - 5558: 4c 01 e5 add rbp,r12 - 555b: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RB(i); - 555f: 44 89 c2 mov edx,r8d - TValue *rc = RKC(i); - 5562: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RB(i); - 5566: c1 ea 18 shr edx,0x18 - 5569: 48 c1 e2 04 shl rdx,0x4 - 556d: 4c 01 e2 add rdx,r12 - TValue *rc = RKC(i); - 5570: 41 f6 c0 80 test r8b,0x80 - 5574: 0f 85 34 0b 00 00 jne 60ae - 557a: 45 0f b6 c0 movzx r8d,r8b - 557e: 49 c1 e0 04 shl r8,0x4 - 5582: 4b 8d 04 04 lea rax,[r12+r8*1] - Table *t = hvalue(rb); - 5586: 48 8b 12 mov rdx,QWORD PTR [rdx] - lua_Integer idx = ivalue(rc); - 5589: 48 8b 00 mov rax,QWORD PTR [rax] - raviH_get_int_inline(L, t, idx, ra); - 558c: 48 8b 4a 38 mov rcx,QWORD PTR [rdx+0x38] - 5590: 39 42 40 cmp DWORD PTR [rdx+0x40],eax - 5593: 0f 86 97 47 00 00 jbe 9d30 - 5599: 89 c0 mov eax,eax - 559b: bf 13 00 00 00 mov edi,0x13 - 55a0: 48 8b 04 c1 mov rax,QWORD PTR [rcx+rax*8] - 55a4: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - 55a8: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - vmbreak; - 55ac: 48 89 d8 mov rax,rbx - 55af: 48 83 c3 04 add rbx,0x4 - 55b3: 44 8b 00 mov r8d,DWORD PTR [rax] - 55b6: 45 85 ed test r13d,r13d - 55b9: 0f 85 b9 2f 00 00 jne 8578 - 55bf: 44 89 c5 mov ebp,r8d - 55c2: 41 0f b6 c0 movzx eax,r8b - 55c6: c1 ed 08 shr ebp,0x8 - 55c9: 48 89 c2 mov rdx,rax - 55cc: 83 e5 7f and ebp,0x7f - 55cf: 48 c1 e5 04 shl rbp,0x4 - 55d3: 4c 01 e5 add rbp,r12 - 55d6: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - 55da: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - return luaO_nilobject; /* not found */ - 55e0: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # 55e7 - if (RAVI_LIKELY(!ttisnil(v))) { - 55e7: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - 55ec: 66 85 c0 test ax,ax - 55ef: 0f 85 13 c8 ff ff jne 1e08 - Protect(luaV_finishget(L, rb, rc, ra, v)); - 55f5: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 55fa: 48 89 e9 mov rcx,rbp - 55fd: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 5602: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 5606: 48 89 ef mov rdi,rbp - 5609: e8 00 00 00 00 call 560e - 560e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 5615: 00 - vmbreak; - 5616: 48 89 d8 mov rax,rbx - Protect(luaV_finishget(L, rb, rc, ra, v)); - 5619: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - vmbreak; - 561d: 48 83 c3 04 add rbx,0x4 - 5621: 44 8b 00 mov r8d,DWORD PTR [rax] - Protect(luaV_finishget(L, rb, rc, ra, v)); - 5624: 41 83 e5 0c and r13d,0xc - vmbreak; - 5628: 45 85 ed test r13d,r13d - 562b: 0f 84 f5 c7 ff ff je 1e26 - 5631: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 5636: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 563b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 5640: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 5644: 48 89 ef mov rdi,rbp - 5647: e8 00 00 00 00 call 564c - 564c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 5650: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 5655: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 565c: 00 - 565d: 41 83 e5 0c and r13d,0xc - 5661: e9 c0 c7 ff ff jmp 1e26 - 5666: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 566d: 00 00 00 - 5670: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # 5677 - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 5677: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - 567d: 0f 85 eb c9 ff ff jne 206e - 5683: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 5688: 48 89 ee mov rsi,rbp - 568b: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 5690: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 5694: 48 89 ef mov rdi,rbp - 5697: e8 00 00 00 00 call 569c - 569c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 56a3: 00 - vmbreak; - 56a4: 48 89 d8 mov rax,rbx - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 56a7: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - vmbreak; - 56ab: 48 83 c3 04 add rbx,0x4 - 56af: 44 8b 00 mov r8d,DWORD PTR [rax] - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 56b2: 41 83 e5 0c and r13d,0xc - vmbreak; - 56b6: 45 85 ed test r13d,r13d - 56b9: 0f 84 dc c9 ff ff je 209b - 56bf: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 56c4: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 56c9: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 56ce: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 56d2: 48 89 ef mov rdi,rbp - 56d5: e8 00 00 00 00 call 56da - 56da: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 56de: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 56e3: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 56ea: 00 - 56eb: 41 83 e5 0c and r13d,0xc - 56ef: e9 a7 c9 ff ff jmp 209b - TValue *rc = RKC(i); - 56f4: 45 0f b6 c0 movzx r8d,r8b - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 56f8: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - TValue *rc = RKC(i); - 56fc: 49 c1 e0 04 shl r8,0x4 - 5700: 4b 8d 0c 04 lea rcx,[r12+r8*1] - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 5704: 66 3d 05 80 cmp ax,0x8005 - 5708: 0f 84 18 c9 ff ff je 2026 - 570e: 83 e0 0f and eax,0xf - 5711: 66 83 f8 05 cmp ax,0x5 - 5715: 0f 84 1d 43 00 00 je 9a38 - 571b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 5720: 48 89 ee mov rsi,rbp - 5723: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 5728: 45 31 c0 xor r8d,r8d - 572b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 572f: 48 89 ef mov rdi,rbp - 5732: e8 00 00 00 00 call 5737 - 5737: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 573e: 00 - 573f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 5743: 41 83 e5 0c and r13d,0xc - 5747: e9 3c c9 ff ff jmp 2088 - TValue *rb = RKB(i); - 574c: 48 c1 e2 04 shl rdx,0x4 - 5750: 4c 01 e2 add rdx,r12 - 5753: e9 a1 c8 ff ff jmp 1ff9 - TValue *rb = RKB(i); - 5758: 83 e0 7f and eax,0x7f - 575b: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5760: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5764: 48 c1 e0 04 shl rax,0x4 - 5768: 4c 8d 0c 06 lea r9,[rsi+rax*1] - TValue *rc = RKC(i); - 576c: 41 f6 c0 80 test r8b,0x80 - 5770: 0f 85 0a e0 ff ff jne 3780 - 5776: 45 0f b6 c0 movzx r8d,r8b - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 577a: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - TValue *rc = RKC(i); - 577f: 49 c1 e0 04 shl r8,0x4 - 5783: 4f 8d 14 04 lea r10,[r12+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5787: 66 83 f8 13 cmp ax,0x13 - 578b: 0f 85 0f e0 ff ff jne 37a0 - 5791: 49 8b 01 mov rax,QWORD PTR [r9] - 5794: 48 89 44 24 70 mov QWORD PTR [rsp+0x70],rax - 5799: 41 0f b7 42 08 movzx eax,WORD PTR [r10+0x8] - 579e: 66 83 f8 13 cmp ax,0x13 - 57a2: 0f 84 2e 1f 00 00 je 76d6 - if (!ttisfloat(obj)) - 57a8: 66 83 f8 03 cmp ax,0x3 - 57ac: 0f 85 0b e0 ff ff jne 37bd - 57b2: 31 d2 xor edx,edx - 57b4: 48 8d 74 24 78 lea rsi,[rsp+0x78] - 57b9: 4c 89 d7 mov rdi,r10 - 57bc: e8 cf aa ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 57c1: 85 c0 test eax,eax - 57c3: 0f 84 f4 df ff ff je 37bd - 57c9: 48 8b 44 24 78 mov rax,QWORD PTR [rsp+0x78] - setivalue(ra, intop(|, ib, ic)); - 57ce: 48 0b 44 24 70 or rax,QWORD PTR [rsp+0x70] - 57d3: 41 ba 13 00 00 00 mov r10d,0x13 - 57d9: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 57dd: 66 44 89 55 08 mov WORD PTR [rbp+0x8],r10w - 57e2: e9 0b e0 ff ff jmp 37f2 - TValue *rb = RKB(i); - 57e7: 83 e0 7f and eax,0x7f - 57ea: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 57ef: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 57f3: 48 c1 e0 04 shl rax,0x4 - 57f7: 4c 8d 0c 01 lea r9,[rcx+rax*1] - TValue *rc = RKC(i); - 57fb: 41 f6 c0 80 test r8b,0x80 - 57ff: 0f 85 b4 de ff ff jne 36b9 - 5805: 45 0f b6 c0 movzx r8d,r8b - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5809: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - TValue *rc = RKC(i); - 580e: 49 c1 e0 04 shl r8,0x4 - 5812: 4f 8d 14 04 lea r10,[r12+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5816: 66 83 f8 13 cmp ax,0x13 - 581a: 0f 85 b9 de ff ff jne 36d9 - 5820: 49 8b 01 mov rax,QWORD PTR [r9] - 5823: 48 89 84 24 80 00 00 mov QWORD PTR [rsp+0x80],rax - 582a: 00 - 582b: 41 0f b7 42 08 movzx eax,WORD PTR [r10+0x8] - 5830: 66 83 f8 13 cmp ax,0x13 - 5834: 0f 84 e1 1e 00 00 je 771b - if (!ttisfloat(obj)) - 583a: 66 83 f8 03 cmp ax,0x3 - 583e: 0f 85 b5 de ff ff jne 36f9 - 5844: 31 d2 xor edx,edx - 5846: 48 8d b4 24 88 00 00 lea rsi,[rsp+0x88] - 584d: 00 - 584e: 4c 89 d7 mov rdi,r10 - 5851: e8 3a aa ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5856: 85 c0 test eax,eax - 5858: 0f 84 9b de ff ff je 36f9 - 585e: 48 8b 84 24 88 00 00 mov rax,QWORD PTR [rsp+0x88] - 5865: 00 - setivalue(ra, intop(^, ib, ic)); - 5866: 48 33 84 24 80 00 00 xor rax,QWORD PTR [rsp+0x80] - 586d: 00 - 586e: 41 b9 13 00 00 00 mov r9d,0x13 - 5874: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 5878: 66 44 89 4d 08 mov WORD PTR [rbp+0x8],r9w - 587d: e9 ac de ff ff jmp 372e - TValue *rb = RKB(i); - 5882: 83 e0 7f and eax,0x7f - 5885: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - 588a: 48 c1 e0 04 shl rax,0x4 - 588e: 48 8d 34 01 lea rsi,[rcx+rax*1] - TValue *rc = RKC(i); - 5892: 44 89 c0 mov eax,r8d - 5895: c1 e8 10 shr eax,0x10 - 5898: a8 80 test al,0x80 - 589a: 0f 85 40 d7 ff ff jne 2fe0 - 58a0: 0f b6 c0 movzx eax,al - 58a3: 48 c1 e0 04 shl rax,0x4 - 58a7: 49 8d 14 04 lea rdx,[r12+rax*1] - 58ab: e9 40 d7 ff ff jmp 2ff0 - TValue *rc = RKC(i); - 58b0: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 58b3: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 58b6: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 58b9: 48 c1 e0 04 shl rax,0x4 - 58bd: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 58c2: f6 c2 80 test dl,0x80 - 58c5: 0f 85 55 d6 ff ff jne 2f20 - 58cb: 0f b6 d2 movzx edx,dl - if (ttisinteger(rb) && ttisinteger(rc)) - 58ce: 0f b7 70 08 movzx esi,WORD PTR [rax+0x8] - TValue *rc = RKC(i); - 58d2: 48 c1 e2 04 shl rdx,0x4 - 58d6: 4c 01 e2 add rdx,r12 - if (ttisinteger(rb) && ttisinteger(rc)) - 58d9: 66 83 fe 13 cmp si,0x13 - 58dd: 0f 85 57 d6 ff ff jne 2f3a - 58e3: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - 58e7: 66 83 f9 13 cmp cx,0x13 - 58eb: 0f 84 72 1a 00 00 je 7363 - else if (ttisnumber(rb) && ttisnumber(rc)) - 58f1: 89 cf mov edi,ecx - 58f3: 83 e7 0f and edi,0xf - 58f6: 66 83 ff 03 cmp di,0x3 - 58fa: 0f 85 49 d6 ff ff jne 2f49 - res = LTnum(rb, rc); - 5900: 48 8b 12 mov rdx,QWORD PTR [rdx] - 5903: 48 8b 38 mov rdi,QWORD PTR [rax] - 5906: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 590b: e8 90 ab ff ff call 4a0 - 5910: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - if (res != GETARG_A(i)) - 5915: 41 c1 e8 08 shr r8d,0x8 - 5919: 41 83 e0 7f and r8d,0x7f - 591d: 41 39 c0 cmp r8d,eax - 5920: 0f 85 67 d6 ff ff jne 2f8d - donextjump(ci); - 5926: 8b 2b mov ebp,DWORD PTR [rbx] - 5928: 89 e8 mov eax,ebp - 592a: c1 e8 08 shr eax,0x8 - 592d: 83 e0 7f and eax,0x7f - 5930: 0f 85 a0 1a 00 00 jne 73d6 - 5936: 89 e8 mov eax,ebp - 5938: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 593d: c1 e8 10 shr eax,0x10 - 5940: 2d 00 80 00 00 sub eax,0x8000 - 5945: 44 0f b6 ae c8 00 00 movzx r13d,BYTE PTR [rsi+0xc8] - 594c: 00 - 594d: 48 98 cdqe - 594f: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 5954: 41 83 e5 0c and r13d,0xc - 5958: e9 34 d6 ff ff jmp 2f91 - TValue *rb = RKB(i); - 595d: 83 e0 7f and eax,0x7f - 5960: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5965: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5969: 48 c1 e0 04 shl rax,0x4 - 596d: 48 8d 34 07 lea rsi,[rdi+rax*1] - TValue *rc = RKC(i); - 5971: 41 f6 c0 80 test r8b,0x80 - 5975: 0f 85 ba da ff ff jne 3435 - 597b: 45 0f b6 c0 movzx r8d,r8b - if (ttisinteger(rb) && ttisinteger(rc)) { - 597f: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 5983: 49 c1 e0 04 shl r8,0x4 - 5987: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 598b: 66 83 f8 13 cmp ax,0x13 - 598f: 0f 85 bf da ff ff jne 3454 - 5995: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 5999: 66 83 f8 13 cmp ax,0x13 - 599d: 0f 84 e2 39 00 00 je 9385 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 59a3: 48 8b 0e mov rcx,QWORD PTR [rsi] - 59a6: 66 83 f8 03 cmp ax,0x3 - 59aa: 0f 85 79 13 00 00 jne 6d29 - 59b0: 66 0f ef c0 pxor xmm0,xmm0 - 59b4: f2 48 0f 2a c1 cvtsi2sd xmm0,rcx - 59b9: f2 0f 10 0a movsd xmm1,QWORD PTR [rdx] - setfltvalue(ra, luai_numidiv(L, nb, nc)); - 59bd: f2 0f 5e c1 divsd xmm0,xmm1 - 59c1: f2 0f 10 1d 00 00 00 movsd xmm3,QWORD PTR [rip+0x0] # 59c9 - 59c8: 00 - 59c9: f2 0f 10 25 00 00 00 movsd xmm4,QWORD PTR [rip+0x0] # 59d1 - 59d0: 00 - 59d1: 66 0f 28 d0 movapd xmm2,xmm0 - 59d5: 66 0f 28 c8 movapd xmm1,xmm0 - 59d9: 66 0f 54 d3 andpd xmm2,xmm3 - 59dd: 66 0f 2e e2 ucomisd xmm4,xmm2 - 59e1: 76 37 jbe 5a1a - 59e3: f2 48 0f 2c c0 cvttsd2si rax,xmm0 - 59e8: 66 0f ef d2 pxor xmm2,xmm2 - 59ec: f2 0f 10 25 00 00 00 movsd xmm4,QWORD PTR [rip+0x0] # 59f4 - 59f3: 00 - 59f4: 66 0f 55 d8 andnpd xmm3,xmm0 - 59f8: f2 48 0f 2a d0 cvtsi2sd xmm2,rax - 59fd: 66 0f 28 ea movapd xmm5,xmm2 - 5a01: f2 0f c2 e8 06 cmpnlesd xmm5,xmm0 - 5a06: 66 0f 28 cd movapd xmm1,xmm5 - 5a0a: 66 0f 54 cc andpd xmm1,xmm4 - 5a0e: f2 0f 5c d1 subsd xmm2,xmm1 - 5a12: 66 0f 28 ca movapd xmm1,xmm2 - 5a16: 66 0f 56 cb orpd xmm1,xmm3 - 5a1a: b8 03 00 00 00 mov eax,0x3 - 5a1f: f2 0f 11 4d 00 movsd QWORD PTR [rbp+0x0],xmm1 - 5a24: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 5a28: e9 2b 13 00 00 jmp 6d58 - int res = l_isfalse(rb); /* next assignment may change this value */ - 5a2d: 31 d2 xor edx,edx - 5a2f: 66 83 f9 01 cmp cx,0x1 - 5a33: 0f 85 fd d7 ff ff jne 3236 - 5a39: 8b 00 mov eax,DWORD PTR [rax] - 5a3b: 31 d2 xor edx,edx - 5a3d: 85 c0 test eax,eax - 5a3f: 0f 94 c2 sete dl - 5a42: e9 ef d7 ff ff jmp 3236 - TValue *rb = RKB(i); - 5a47: 83 e0 7f and eax,0x7f - 5a4a: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5a4f: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5a53: 48 c1 e0 04 shl rax,0x4 - 5a57: 4c 8d 0c 07 lea r9,[rdi+rax*1] - TValue *rc = RKC(i); - 5a5b: 41 f6 c0 80 test r8b,0x80 - 5a5f: 0f 85 8d db ff ff jne 35f2 - 5a65: 45 0f b6 c0 movzx r8d,r8b - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5a69: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - TValue *rc = RKC(i); - 5a6e: 49 c1 e0 04 shl r8,0x4 - 5a72: 4f 8d 14 04 lea r10,[r12+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5a76: 66 83 f8 13 cmp ax,0x13 - 5a7a: 0f 85 92 db ff ff jne 3612 - 5a80: 49 8b 01 mov rax,QWORD PTR [r9] - 5a83: 48 89 84 24 90 00 00 mov QWORD PTR [rsp+0x90],rax - 5a8a: 00 - 5a8b: 41 0f b7 42 08 movzx eax,WORD PTR [r10+0x8] - 5a90: 66 83 f8 13 cmp ax,0x13 - 5a94: 0f 84 71 1c 00 00 je 770b - if (!ttisfloat(obj)) - 5a9a: 66 83 f8 03 cmp ax,0x3 - 5a9e: 0f 85 8e db ff ff jne 3632 - 5aa4: 31 d2 xor edx,edx - 5aa6: 48 8d b4 24 98 00 00 lea rsi,[rsp+0x98] - 5aad: 00 - 5aae: 4c 89 d7 mov rdi,r10 - 5ab1: e8 da a7 ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5ab6: 85 c0 test eax,eax - 5ab8: 0f 84 74 db ff ff je 3632 - 5abe: 48 8b 8c 24 98 00 00 mov rcx,QWORD PTR [rsp+0x98] - 5ac5: 00 - setivalue(ra, luaV_shiftl(ib, ic)); - 5ac6: 48 8b 94 24 90 00 00 mov rdx,QWORD PTR [rsp+0x90] - 5acd: 00 - if (y < 0) { /* shift right? */ - 5ace: 48 85 c9 test rcx,rcx - 5ad1: 0f 88 05 22 00 00 js 7cdc - else return intop(<<, x, y); - 5ad7: 48 d3 e2 shl rdx,cl - 5ada: b8 00 00 00 00 mov eax,0x0 - 5adf: 48 83 f9 40 cmp rcx,0x40 - 5ae3: 48 0f 4c c2 cmovl rax,rdx - setivalue(ra, luaV_shiftl(ib, ic)); - 5ae7: 41 b8 13 00 00 00 mov r8d,0x13 - 5aed: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 5af1: 66 44 89 45 08 mov WORD PTR [rbp+0x8],r8w - 5af6: e9 6c db ff ff jmp 3667 - TValue *rb = RKB(i); - 5afb: 83 e0 7f and eax,0x7f - 5afe: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5b03: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5b07: 48 c1 e0 04 shl rax,0x4 - 5b0b: 4c 8d 0c 06 lea r9,[rsi+rax*1] - TValue *rc = RKC(i); - 5b0f: 41 f6 c0 80 test r8b,0x80 - 5b13: 0f 85 12 da ff ff jne 352b - 5b19: 45 0f b6 c0 movzx r8d,r8b - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5b1d: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - TValue *rc = RKC(i); - 5b22: 49 c1 e0 04 shl r8,0x4 - 5b26: 4f 8d 14 04 lea r10,[r12+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5b2a: 66 83 f8 13 cmp ax,0x13 - 5b2e: 0f 85 17 da ff ff jne 354b - 5b34: 49 8b 01 mov rax,QWORD PTR [r9] - 5b37: 48 89 84 24 a0 00 00 mov QWORD PTR [rsp+0xa0],rax - 5b3e: 00 - 5b3f: 41 0f b7 42 08 movzx eax,WORD PTR [r10+0x8] - 5b44: 66 83 f8 13 cmp ax,0x13 - 5b48: 0f 84 ea 1b 00 00 je 7738 - if (!ttisfloat(obj)) - 5b4e: 66 83 f8 03 cmp ax,0x3 - 5b52: 0f 85 13 da ff ff jne 356b - 5b58: 31 d2 xor edx,edx - 5b5a: 48 8d b4 24 a8 00 00 lea rsi,[rsp+0xa8] - 5b61: 00 - 5b62: 4c 89 d7 mov rdi,r10 - 5b65: e8 26 a7 ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 5b6a: 85 c0 test eax,eax - 5b6c: 0f 84 f9 d9 ff ff je 356b - 5b72: 48 8b 8c 24 a8 00 00 mov rcx,QWORD PTR [rsp+0xa8] - 5b79: 00 - setivalue(ra, luaV_shiftl(ib, -ic)); - 5b7a: 48 8b 94 24 a0 00 00 mov rdx,QWORD PTR [rsp+0xa0] - 5b81: 00 - if (y < 0) { /* shift right? */ - 5b82: 48 85 c9 test rcx,rcx - 5b85: 0f 8f 3c 21 00 00 jg 7cc7 - if (y <= -NBITS) return 0; - 5b8b: 31 c0 xor eax,eax - if (y >= NBITS) return 0; - 5b8d: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - 5b91: 7c 09 jl 5b9c - setivalue(ra, luaV_shiftl(ib, -ic)); - 5b93: 48 f7 d9 neg rcx - else return intop(<<, x, y); - 5b96: 48 89 d0 mov rax,rdx - 5b99: 48 d3 e0 shl rax,cl - setivalue(ra, luaV_shiftl(ib, -ic)); - 5b9c: bf 13 00 00 00 mov edi,0x13 - 5ba1: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 5ba5: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - 5ba9: e9 f2 d9 ff ff jmp 35a0 - TValue *rb = RKB(i); - 5bae: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 5bb2: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5bb6: 49 8d 34 04 lea rsi,[r12+rax*1] - TValue *rc = RKC(i); - 5bba: 41 f6 c0 80 test r8b,0x80 - 5bbe: 0f 85 f0 d8 ff ff jne 34b4 - 5bc4: 45 0f b6 c0 movzx r8d,r8b - if (ttisinteger(rb) && ttisinteger(rc)) { - 5bc8: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 5bcc: 49 c1 e0 04 shl r8,0x4 - 5bd0: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 5bd4: 66 83 f8 13 cmp ax,0x13 - 5bd8: 0f 85 f5 d8 ff ff jne 34d3 - 5bde: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 5be2: 66 83 f8 13 cmp ax,0x13 - 5be6: 0f 84 bb 37 00 00 je 93a7 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 5bec: 48 8b 0e mov rcx,QWORD PTR [rsi] - 5bef: 66 83 f8 03 cmp ax,0x3 - 5bf3: 0f 85 d3 10 00 00 jne 6ccc - 5bf9: 66 0f ef c0 pxor xmm0,xmm0 - 5bfd: f2 48 0f 2a c1 cvtsi2sd xmm0,rcx - 5c02: f2 0f 10 12 movsd xmm2,QWORD PTR [rdx] - luai_nummod(L, nb, nc, m); - 5c06: 66 0f 28 ca movapd xmm1,xmm2 - 5c0a: f2 0f 11 54 24 28 movsd QWORD PTR [rsp+0x28],xmm2 - 5c10: e8 00 00 00 00 call 5c15 - 5c15: f2 0f 10 54 24 28 movsd xmm2,QWORD PTR [rsp+0x28] - 5c1b: 66 0f ef db pxor xmm3,xmm3 - 5c1f: 66 0f 28 ca movapd xmm1,xmm2 - 5c23: f2 0f 59 c8 mulsd xmm1,xmm0 - 5c27: 66 0f 2f d9 comisd xmm3,xmm1 - 5c2b: 76 04 jbe 5c31 - 5c2d: f2 0f 58 c2 addsd xmm0,xmm2 - setfltvalue(ra, m); - 5c31: b9 03 00 00 00 mov ecx,0x3 - 5c36: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 5c3b: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 5c3f: e9 b7 10 00 00 jmp 6cfb - TValue *rc = RKC(i); - 5c44: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 5c47: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 5c4a: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 5c4d: 48 c1 e0 04 shl rax,0x4 - 5c51: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5c56: f6 c2 80 test dl,0x80 - 5c59: 0f 85 01 d2 ff ff jne 2e60 - 5c5f: 0f b6 d2 movzx edx,dl - if (ttisinteger(rb) && ttisinteger(rc)) - 5c62: 0f b7 70 08 movzx esi,WORD PTR [rax+0x8] - TValue *rc = RKC(i); - 5c66: 48 c1 e2 04 shl rdx,0x4 - 5c6a: 4c 01 e2 add rdx,r12 - if (ttisinteger(rb) && ttisinteger(rc)) - 5c6d: 66 83 fe 13 cmp si,0x13 - 5c71: 0f 85 03 d2 ff ff jne 2e7a - 5c77: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - 5c7b: 66 83 f9 13 cmp cx,0x13 - 5c7f: 0f 84 2d 16 00 00 je 72b2 - else if (ttisnumber(rb) && ttisnumber(rc)) - 5c85: 89 cf mov edi,ecx - 5c87: 83 e7 0f and edi,0xf - 5c8a: 66 83 ff 03 cmp di,0x3 - 5c8e: 0f 85 f5 d1 ff ff jne 2e89 - res = LEnum(rb, rc); - 5c94: 48 8b 12 mov rdx,QWORD PTR [rdx] - 5c97: 48 8b 38 mov rdi,QWORD PTR [rax] - 5c9a: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 5c9f: e8 ac a6 ff ff call 350 - 5ca4: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - if (res != GETARG_A(i)) - 5ca9: 41 c1 e8 08 shr r8d,0x8 - 5cad: 41 83 e0 7f and r8d,0x7f - 5cb1: 41 39 c0 cmp r8d,eax - 5cb4: 0f 85 13 d2 ff ff jne 2ecd - donextjump(ci); - 5cba: 8b 2b mov ebp,DWORD PTR [rbx] - 5cbc: 89 e8 mov eax,ebp - 5cbe: c1 e8 08 shr eax,0x8 - 5cc1: 83 e0 7f and eax,0x7f - 5cc4: 0f 85 1c 16 00 00 jne 72e6 - 5cca: 89 e8 mov eax,ebp - 5ccc: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 5cd1: c1 e8 10 shr eax,0x10 - 5cd4: 2d 00 80 00 00 sub eax,0x8000 - 5cd9: 44 0f b6 ae c8 00 00 movzx r13d,BYTE PTR [rsi+0xc8] - 5ce0: 00 - 5ce1: 48 98 cdqe - 5ce3: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 5ce8: 41 83 e5 0c and r13d,0xc - 5cec: e9 e0 d1 ff ff jmp 2ed1 - if (GETARG_C(i) ? l_isfalse(ra) : !l_isfalse(ra)) - 5cf1: 0f b7 45 08 movzx eax,WORD PTR [rbp+0x8] - 5cf5: 66 85 c0 test ax,ax - 5cf8: 74 17 je 5d11 - 5cfa: 66 83 f8 01 cmp ax,0x1 - 5cfe: 0f 85 09 d1 ff ff jne 2e0d - 5d04: 44 8b 5d 00 mov r11d,DWORD PTR [rbp+0x0] - 5d08: 45 85 db test r11d,r11d - 5d0b: 0f 85 fc d0 ff ff jne 2e0d - donextjump(ci); - 5d11: 8b 2b mov ebp,DWORD PTR [rbx] - 5d13: 89 e8 mov eax,ebp - 5d15: c1 e8 08 shr eax,0x8 - 5d18: 83 e0 7f and eax,0x7f - 5d1b: 0f 85 27 1a 00 00 jne 7748 - 5d21: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 5d26: c1 ed 10 shr ebp,0x10 - 5d29: 8d 85 00 80 ff ff lea eax,[rbp-0x8000] - 5d2f: 44 0f b6 a9 c8 00 00 movzx r13d,BYTE PTR [rcx+0xc8] - 5d36: 00 - 5d37: 48 98 cdqe - 5d39: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 5d3e: 41 83 e5 0c and r13d,0xc - 5d42: e9 ca d0 ff ff jmp 2e11 - TValue *rb = RKB(i); - 5d47: 83 e0 7f and eax,0x7f - 5d4a: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5d4f: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5d53: 48 c1 e0 04 shl rax,0x4 - 5d57: 48 01 c6 add rsi,rax - TValue *rc = RKC(i); - 5d5a: 41 f6 c0 80 test r8b,0x80 - 5d5e: 0f 85 27 d6 ff ff jne 338b - 5d64: 45 0f b6 c0 movzx r8d,r8b - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 5d68: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 5d6c: 49 c1 e0 04 shl r8,0x4 - 5d70: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 5d74: 66 83 f8 03 cmp ax,0x3 - 5d78: 0f 85 2c d6 ff ff jne 33aa - 5d7e: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 5d82: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 5d86: 66 83 f8 03 cmp ax,0x3 - 5d8a: 0f 84 2f 18 00 00 je 75bf - 5d90: 66 83 f8 13 cmp ax,0x13 - 5d94: 0f 85 1a d6 ff ff jne 33b4 - 5d9a: 66 0f ef c9 pxor xmm1,xmm1 - 5d9e: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - setfltvalue(ra, luai_numpow(L, nb, nc)); - 5da3: e8 00 00 00 00 call 5da8 - 5da8: b8 03 00 00 00 mov eax,0x3 - 5dad: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 5db2: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 5db6: e9 28 d6 ff ff jmp 33e3 - if (GETARG_C(i) ? l_isfalse(rb) : !l_isfalse(rb)) - 5dbb: 0f b7 50 08 movzx edx,WORD PTR [rax+0x8] - 5dbf: 66 85 d2 test dx,dx - 5dc2: 74 16 je 5dda - 5dc4: 66 83 fa 01 cmp dx,0x1 - 5dc8: 0f 85 f6 cf ff ff jne 2dc4 - 5dce: 44 8b 08 mov r9d,DWORD PTR [rax] - 5dd1: 45 85 c9 test r9d,r9d - 5dd4: 0f 85 ea cf ff ff jne 2dc4 - setobjs2s(L, ra, rb); - 5dda: 48 8b 10 mov rdx,QWORD PTR [rax] - 5ddd: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 5de1: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - 5de5: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - donextjump(ci); - 5de9: 8b 2b mov ebp,DWORD PTR [rbx] - 5deb: 89 e8 mov eax,ebp - 5ded: c1 e8 08 shr eax,0x8 - 5df0: 83 e0 7f and eax,0x7f - 5df3: 0f 85 72 19 00 00 jne 776b - 5df9: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 5dfe: c1 ed 10 shr ebp,0x10 - 5e01: 8d 85 00 80 ff ff lea eax,[rbp-0x8000] - 5e07: 44 0f b6 af c8 00 00 movzx r13d,BYTE PTR [rdi+0xc8] - 5e0e: 00 - 5e0f: 48 98 cdqe - 5e11: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 5e16: 41 83 e5 0c and r13d,0xc - 5e1a: e9 a9 cf ff ff jmp 2dc8 - L->top = ra+b; /* top signals number of arguments */ - 5e1f: 45 89 c0 mov r8d,r8d - 5e22: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 5e27: 49 c1 e0 04 shl r8,0x4 - 5e2b: 4a 8d 44 05 00 lea rax,[rbp+r8*1+0x0] - 5e30: 48 89 46 10 mov QWORD PTR [rsi+0x10],rax - 5e34: e9 e9 ce ff ff jmp 2d22 - TValue *rb = RKB(i); - 5e39: 83 e0 7f and eax,0x7f - 5e3c: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - 5e41: 48 c1 e0 04 shl rax,0x4 - 5e45: 48 8d 14 06 lea rdx,[rsi+rax*1] - TValue *rc = RKC(i); - 5e49: 44 89 c0 mov eax,r8d - 5e4c: c1 e8 10 shr eax,0x10 - 5e4f: a8 80 test al,0x80 - 5e51: 0f 85 d0 c5 ff ff jne 2427 - 5e57: 0f b6 c0 movzx eax,al - 5e5a: 48 c1 e0 04 shl rax,0x4 - 5e5e: 4c 01 e0 add rax,r12 - 5e61: e9 cd c5 ff ff jmp 2433 - TValue *rb = RKB(i); - 5e66: 83 e0 7f and eax,0x7f - 5e69: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5e6e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5e72: 48 c1 e0 04 shl rax,0x4 - 5e76: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 5e7a: 41 f6 c0 80 test r8b,0x80 - 5e7e: 0f 85 ec cb ff ff jne 2a70 - 5e84: 45 0f b6 c0 movzx r8d,r8b - 5e88: 49 c1 e0 04 shl r8,0x4 - 5e8c: 4b 8d 04 04 lea rax,[r12+r8*1] - 5e90: e9 eb cb ff ff jmp 2a80 - TValue *rb = RKB(i); - 5e95: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 5e98: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5e9c: 48 c1 e0 04 shl rax,0x4 - 5ea0: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5ea5: 41 f6 c0 80 test r8b,0x80 - 5ea9: 0f 85 41 c7 ff ff jne 25f0 - 5eaf: 45 0f b6 c0 movzx r8d,r8b - 5eb3: 49 c1 e0 04 shl r8,0x4 - 5eb7: 4b 8d 14 04 lea rdx,[r12+r8*1] - lua_Integer ic = ivalue(rc); - 5ebb: 48 8b 0a mov rcx,QWORD PTR [rdx] - setivalue(ra, luaV_shiftl(ivalue(rb), -ic)); - 5ebe: 48 8b 10 mov rdx,QWORD PTR [rax] - if (y < 0) { /* shift right? */ - 5ec1: 48 85 c9 test rcx,rcx - 5ec4: 0f 8e 46 c7 ff ff jle 2610 - else return intop(>>, x, -y); - 5eca: 48 d3 ea shr rdx,cl - 5ecd: b8 00 00 00 00 mov eax,0x0 - 5ed2: 48 83 f9 40 cmp rcx,0x40 - 5ed6: 48 0f 4c c2 cmovl rax,rdx - 5eda: e9 42 c7 ff ff jmp 2621 - TValue *rb = RKB(i); - 5edf: 83 e0 7f and eax,0x7f - 5ee2: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - 5ee7: 48 c1 e0 04 shl rax,0x4 - 5eeb: 48 8d 14 07 lea rdx,[rdi+rax*1] - TValue *rc = RKC(i); - 5eef: 44 89 c0 mov eax,r8d - 5ef2: c1 e8 10 shr eax,0x10 - 5ef5: a8 80 test al,0x80 - 5ef7: 0f 85 2b c6 ff ff jne 2528 - 5efd: 0f b6 c0 movzx eax,al - 5f00: 48 c1 e0 04 shl rax,0x4 - 5f04: 4c 01 e0 add rax,r12 - 5f07: e9 28 c6 ff ff jmp 2534 - TValue *rc = RKC(i); - 5f0c: 41 83 e0 7f and r8d,0x7f - 5f10: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 5f15: 49 c1 e0 04 shl r8,0x4 - 5f19: 4a 8d 14 00 lea rdx,[rax+r8*1] - 5f1d: e9 f5 c7 ff ff jmp 2717 - TValue *rb = RKB(i); - 5f22: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 5f26: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 5f2a: 4c 01 e0 add rax,r12 - TValue *rc = RKC(i); - 5f2d: 41 f6 c0 80 test r8b,0x80 - 5f31: 0f 85 4d c7 ff ff jne 2684 - 5f37: 45 0f b6 c0 movzx r8d,r8b - 5f3b: 49 c1 e0 04 shl r8,0x4 - 5f3f: 4b 8d 14 04 lea rdx,[r12+r8*1] - setivalue(ra, luaV_shiftl(ivalue(rb), ivalue(rc))); - 5f43: 48 8b 0a mov rcx,QWORD PTR [rdx] - 5f46: 48 8b 10 mov rdx,QWORD PTR [rax] - if (y < 0) { /* shift right? */ - 5f49: 48 85 c9 test rcx,rcx - 5f4c: 0f 89 52 c7 ff ff jns 26a4 - if (y <= -NBITS) return 0; - 5f52: 31 c0 xor eax,eax - 5f54: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - 5f58: 0f 8c 56 c7 ff ff jl 26b4 - else return intop(>>, x, -y); - 5f5e: f7 d9 neg ecx - 5f60: 48 89 d0 mov rax,rdx - 5f63: 48 d3 e8 shr rax,cl - 5f66: e9 49 c7 ff ff jmp 26b4 - TValue *rb = RKB(i); - 5f6b: 83 e0 7f and eax,0x7f - 5f6e: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - 5f73: 48 c1 e0 04 shl rax,0x4 - 5f77: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 5f7b: 44 89 c0 mov eax,r8d - 5f7e: c1 e8 10 shr eax,0x10 - 5f81: a8 80 test al,0x80 - 5f83: 0f 85 1a c5 ff ff jne 24a3 - 5f89: 0f b6 c0 movzx eax,al - 5f8c: 48 c1 e0 04 shl rax,0x4 - 5f90: 4c 01 e0 add rax,r12 - 5f93: e9 17 c5 ff ff jmp 24af - TValue *rc = RKC(i); - 5f98: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 5f9b: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 5f9e: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 5fa1: 48 c1 e0 04 shl rax,0x4 - 5fa5: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 5faa: f6 c2 80 test dl,0x80 - 5fad: 0f 85 90 c1 ff ff jne 2143 - 5fb3: 0f b6 d2 movzx edx,dl - 5fb6: 48 c1 e2 04 shl rdx,0x4 - 5fba: 4c 01 e2 add rdx,r12 - 5fbd: e9 8d c1 ff ff jmp 214f - TValue *rb = RKB(i); - 5fc2: 83 e0 7f and eax,0x7f - 5fc5: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - 5fca: 48 c1 e0 04 shl rax,0x4 - 5fce: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 5fd2: 44 89 c0 mov eax,r8d - 5fd5: c1 e8 10 shr eax,0x10 - 5fd8: a8 80 test al,0x80 - 5fda: 0f 85 4d c3 ff ff jne 232d - 5fe0: 0f b6 c0 movzx eax,al - 5fe3: 48 c1 e0 04 shl rax,0x4 - 5fe7: 4c 01 e0 add rax,r12 - 5fea: e9 4a c3 ff ff jmp 2339 - TValue *rc = RKC(i); - 5fef: 44 89 c2 mov edx,r8d - TValue *rb = RKB(i); - 5ff2: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 5ff5: c1 ea 10 shr edx,0x10 - TValue *rb = RKB(i); - 5ff8: 48 c1 e0 04 shl rax,0x4 - 5ffc: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6001: f6 c2 80 test dl,0x80 - 6004: 0f 85 9f c3 ff ff jne 23a9 - 600a: 0f b6 d2 movzx edx,dl - 600d: 48 c1 e2 04 shl rdx,0x4 - 6011: 4c 01 e2 add rdx,r12 - 6014: e9 9c c3 ff ff jmp 23b5 - if (b != 0) L->top = ra+b; /* else previous instruction set top */ - 6019: 45 89 c0 mov r8d,r8d - 601c: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 6021: 49 c1 e0 04 shl r8,0x4 - 6025: 4a 8d 44 05 00 lea rax,[rbp+r8*1+0x0] - 602a: 48 89 41 10 mov QWORD PTR [rcx+0x10],rax - 602e: e9 6e cc ff ff jmp 2ca1 - int nres = (b != 0 ? b - 1 : cast_int(L->top - ra)); - 6033: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - 6038: 48 8b 40 10 mov rax,QWORD PTR [rax+0x10] - 603c: 48 89 c1 mov rcx,rax - 603f: 48 89 44 24 10 mov QWORD PTR [rsp+0x10],rax - 6044: 48 29 e9 sub rcx,rbp - 6047: 48 c1 f9 04 sar rcx,0x4 - 604b: e9 fb cb ff ff jmp 2c4b - TValue *rb = RKB(i); - 6050: 83 e0 7f and eax,0x7f - 6053: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6058: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 605c: 48 c1 e0 04 shl rax,0x4 - 6060: 48 8d 14 06 lea rdx,[rsi+rax*1] - TValue *rc = RKC(i); - 6064: 41 f6 c0 80 test r8b,0x80 - 6068: 0f 85 18 c9 ff ff jne 2986 - 606e: 45 0f b6 c0 movzx r8d,r8b - 6072: 49 c1 e0 04 shl r8,0x4 - 6076: 4b 8d 04 04 lea rax,[r12+r8*1] - 607a: e9 17 c9 ff ff jmp 2996 - TValue *rb = RKB(i); - 607f: 83 e0 7f and eax,0x7f - 6082: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6087: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 608b: 48 c1 e0 04 shl rax,0x4 - 608f: 48 8d 14 07 lea rdx,[rdi+rax*1] - TValue *rc = RKC(i); - 6093: 41 f6 c0 80 test r8b,0x80 - 6097: 0f 85 5e c9 ff ff jne 29fb - 609d: 45 0f b6 c0 movzx r8d,r8b - 60a1: 49 c1 e0 04 shl r8,0x4 - 60a5: 4b 8d 04 04 lea rax,[r12+r8*1] - 60a9: e9 5d c9 ff ff jmp 2a0b - TValue *rc = RKC(i); - 60ae: 41 83 e0 7f and r8d,0x7f - 60b2: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 60b7: 49 c1 e0 04 shl r8,0x4 - 60bb: 4c 01 c0 add rax,r8 - 60be: e9 c3 f4 ff ff jmp 5586 - TValue *rc = RKC(i); - 60c3: 41 83 e0 7f and r8d,0x7f - 60c7: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 60cc: 49 c1 e0 04 shl r8,0x4 - 60d0: 4c 01 c0 add rax,r8 - 60d3: e9 31 f4 ff ff jmp 5509 - TValue *rb = RKB(i); - 60d8: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 60db: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 60df: 48 c1 e0 04 shl rax,0x4 - 60e3: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 60e8: 41 f6 c0 80 test r8b,0x80 - 60ec: 0f 85 a5 f3 ff ff jne 5497 - 60f2: 45 0f b6 c0 movzx r8d,r8b - lua_Integer idx = ivalue(rb); - 60f6: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rc = RKC(i); - 60f9: 49 c1 e0 04 shl r8,0x4 - 60fd: 4b 8d 3c 04 lea rdi,[r12+r8*1] - if (ttisinteger(rc)) { raviH_set_int_inline(L, t, idx, ivalue(rc)); } - 6101: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 6105: 66 83 f8 13 cmp ax,0x13 - 6109: 0f 85 aa f3 ff ff jne 54b9 - 610f: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 6113: 44 89 fa mov edx,r15d - 6116: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 611a: 0f 86 7d 11 00 00 jbe 729d - 6120: 48 8b 0f mov rcx,QWORD PTR [rdi] - 6123: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - vmbreak; - 6127: 48 89 d8 mov rax,rbx - 612a: 48 83 c3 04 add rbx,0x4 - 612e: 44 8b 00 mov r8d,DWORD PTR [rax] - 6131: 45 85 ed test r13d,r13d - 6134: 0f 85 c4 1c 00 00 jne 7dfe - 613a: 44 89 c5 mov ebp,r8d - 613d: 41 0f b6 c0 movzx eax,r8b - 6141: c1 ed 08 shr ebp,0x8 - 6144: 48 89 c2 mov rdx,rax - 6147: 83 e5 7f and ebp,0x7f - 614a: 48 c1 e5 04 shl rbp,0x4 - 614e: 4c 01 e5 add rbp,r12 - 6151: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 6155: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 6158: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 615c: 48 c1 e0 04 shl rax,0x4 - 6160: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6165: 41 f6 c0 80 test r8b,0x80 - 6169: 0f 85 b9 e8 ff ff jne 4a28 - 616f: 45 0f b6 c0 movzx r8d,r8b - 6173: 49 c1 e0 04 shl r8,0x4 - 6177: 4b 8d 14 04 lea rdx,[r12+r8*1] - 617b: e9 b9 e8 ff ff jmp 4a39 - TValue *rb = RKB(i); - 6180: 83 e0 7f and eax,0x7f - 6183: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6188: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 618c: 48 c1 e0 04 shl rax,0x4 - 6190: 48 8d 14 07 lea rdx,[rdi+rax*1] - TValue *rc = RKC(i); - 6194: 41 f6 c0 80 test r8b,0x80 - 6198: 0f 85 ce ed ff ff jne 4f6c - 619e: 45 0f b6 c0 movzx r8d,r8b - 61a2: 49 c1 e0 04 shl r8,0x4 - 61a6: 4b 8d 04 04 lea rax,[r12+r8*1] - 61aa: e9 cd ed ff ff jmp 4f7c - TValue *rb = RKB(i); - 61af: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 61b2: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 61b6: 48 c1 e0 04 shl rax,0x4 - 61ba: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 61bf: 41 f6 c0 80 test r8b,0x80 - 61c3: 0f 85 25 ed ff ff jne 4eee - 61c9: 45 0f b6 c0 movzx r8d,r8b - 61cd: 49 c1 e0 04 shl r8,0x4 - 61d1: 4b 8d 14 04 lea rdx,[r12+r8*1] - 61d5: e9 25 ed ff ff jmp 4eff - TValue *rc = RKC(i); - 61da: 41 83 e0 7f and r8d,0x7f - 61de: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 61e3: 49 c1 e0 04 shl r8,0x4 - 61e7: 4a 8d 14 00 lea rdx,[rax+r8*1] - 61eb: e9 10 e0 ff ff jmp 4200 - TValue *rc = RKC(i); - 61f0: 41 83 e0 7f and r8d,0x7f - 61f4: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 61f9: 49 c1 e0 04 shl r8,0x4 - 61fd: 4a 8d 14 00 lea rdx,[rax+r8*1] - 6201: e9 4f df ff ff jmp 4155 - TValue *rb = RKB(i); - 6206: 83 e0 7f and eax,0x7f - 6209: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 620e: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6212: 48 c1 e0 04 shl rax,0x4 - 6216: 48 8d 34 01 lea rsi,[rcx+rax*1] - TValue *rc = RKC(i); - 621a: 41 f6 c0 80 test r8b,0x80 - 621e: 0f 85 83 de ff ff jne 40a7 - 6224: 45 0f b6 c0 movzx r8d,r8b - if (ttisinteger(rb) && ttisinteger(rc)) { - 6228: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 622c: 49 c1 e0 04 shl r8,0x4 - 6230: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 6234: 66 83 f8 13 cmp ax,0x13 - 6238: 0f 85 88 de ff ff jne 40c6 - 623e: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 6242: 66 83 f8 13 cmp ax,0x13 - 6246: 0f 84 bf 11 00 00 je 740b - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 624c: 48 8b 0e mov rcx,QWORD PTR [rsi] - 624f: 66 83 f8 03 cmp ax,0x3 - 6253: 0f 85 77 de ff ff jne 40d0 - 6259: 66 0f ef c9 pxor xmm1,xmm1 - 625d: f2 48 0f 2a c9 cvtsi2sd xmm1,rcx - 6262: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 6266: e9 a7 0f 00 00 jmp 7212 - TValue *rb = RKB(i); - 626b: 83 e0 7f and eax,0x7f - 626e: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6273: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6277: 48 c1 e0 04 shl rax,0x4 - 627b: 48 8d 34 07 lea rsi,[rdi+rax*1] - TValue *rc = RKC(i); - 627f: 41 f6 c0 80 test r8b,0x80 - 6283: 0f 85 74 dd ff ff jne 3ffd - 6289: 45 0f b6 c0 movzx r8d,r8b - if (ttisinteger(rb) && ttisinteger(rc)) { - 628d: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 6291: 49 c1 e0 04 shl r8,0x4 - 6295: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 6299: 66 83 f8 13 cmp ax,0x13 - 629d: 0f 85 79 dd ff ff jne 401c - 62a3: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 62a7: 66 83 f8 13 cmp ax,0x13 - 62ab: 0f 84 9a 10 00 00 je 734b - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 62b1: 48 8b 0e mov rcx,QWORD PTR [rsi] - 62b4: 66 83 f8 03 cmp ax,0x3 - 62b8: 0f 85 68 dd ff ff jne 4026 - 62be: 66 0f ef c0 pxor xmm0,xmm0 - 62c2: f2 48 0f 2a c1 cvtsi2sd xmm0,rcx - 62c7: f2 0f 10 0a movsd xmm1,QWORD PTR [rdx] - 62cb: e9 ca 0e 00 00 jmp 719a - TValue *rb = RKB(i); - 62d0: 83 e0 7f and eax,0x7f - 62d3: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 62d8: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 62dc: 48 c1 e0 04 shl rax,0x4 - 62e0: 48 01 c6 add rsi,rax - TValue *rc = RKC(i); - 62e3: 41 f6 c0 80 test r8b,0x80 - 62e7: 0f 85 66 dc ff ff jne 3f53 - 62ed: 45 0f b6 c0 movzx r8d,r8b - if (ttisinteger(rb) && ttisinteger(rc)) { - 62f1: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 62f5: 49 c1 e0 04 shl r8,0x4 - 62f9: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (ttisinteger(rb) && ttisinteger(rc)) { - 62fd: 66 83 f8 13 cmp ax,0x13 - 6301: 0f 85 6b dc ff ff jne 3f72 - 6307: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 630b: 66 83 f8 13 cmp ax,0x13 - 630f: 0f 84 0e 11 00 00 je 7423 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 6315: 48 8b 0e mov rcx,QWORD PTR [rsi] - 6318: 66 83 f8 03 cmp ax,0x3 - 631c: 0f 85 5a dc ff ff jne 3f7c - 6322: 66 0f ef c9 pxor xmm1,xmm1 - 6326: f2 48 0f 2a c9 cvtsi2sd xmm1,rcx - 632b: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - 632f: e9 a2 0e 00 00 jmp 71d6 - TValue *rb = RKB(i); - 6334: 83 e0 7f and eax,0x7f - 6337: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 633c: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6340: 48 c1 e0 04 shl rax,0x4 - 6344: 48 8d 34 01 lea rsi,[rcx+rax*1] - TValue *rc = RKC(i); - 6348: 41 f6 c0 80 test r8b,0x80 - 634c: 0f 85 57 db ff ff jne 3ea9 - 6352: 45 0f b6 c0 movzx r8d,r8b - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 6356: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - TValue *rc = RKC(i); - 635a: 49 c1 e0 04 shl r8,0x4 - 635e: 4b 8d 14 04 lea rdx,[r12+r8*1] - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 6362: 66 83 f8 03 cmp ax,0x3 - 6366: 0f 85 5c db ff ff jne 3ec8 - 636c: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 6370: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 6374: 66 83 f8 03 cmp ax,0x3 - 6378: 0f 84 61 12 00 00 je 75df - 637e: 66 83 f8 13 cmp ax,0x13 - 6382: 0f 85 4a db ff ff jne 3ed2 - 6388: 66 0f ef c9 pxor xmm1,xmm1 - 638c: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - setfltvalue(ra, luai_numdiv(L, nb, nc)); - 6391: f2 0f 5e c1 divsd xmm0,xmm1 - 6395: 41 bf 03 00 00 00 mov r15d,0x3 - 639b: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - 63a0: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 63a5: e9 57 db ff ff jmp 3f01 - TValue *rb = RKB(i); - 63aa: 83 e0 7f and eax,0x7f - 63ad: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 63b2: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 63b6: 48 c1 e0 04 shl rax,0x4 - 63ba: 4c 8d 0c 07 lea r9,[rdi+rax*1] - TValue *rc = RKC(i); - 63be: 41 f6 c0 80 test r8b,0x80 - 63c2: 0f 85 1d da ff ff jne 3de5 - 63c8: 45 0f b6 c0 movzx r8d,r8b - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 63cc: 41 0f b7 41 08 movzx eax,WORD PTR [r9+0x8] - TValue *rc = RKC(i); - 63d1: 49 c1 e0 04 shl r8,0x4 - 63d5: 4f 8d 14 04 lea r10,[r12+r8*1] - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 63d9: 66 83 f8 13 cmp ax,0x13 - 63dd: 0f 85 22 da ff ff jne 3e05 - 63e3: 49 8b 01 mov rax,QWORD PTR [r9] - 63e6: 48 89 44 24 60 mov QWORD PTR [rsp+0x60],rax - 63eb: 41 0f b7 42 08 movzx eax,WORD PTR [r10+0x8] - 63f0: 66 83 f8 13 cmp ax,0x13 - 63f4: 0f 84 31 13 00 00 je 772b - if (!ttisfloat(obj)) - 63fa: 66 83 f8 03 cmp ax,0x3 - 63fe: 0f 85 1e da ff ff jne 3e22 - 6404: 31 d2 xor edx,edx - 6406: 48 8d 74 24 68 lea rsi,[rsp+0x68] - 640b: 4c 89 d7 mov rdi,r10 - 640e: e8 7d 9e ff ff call 290 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 6413: 85 c0 test eax,eax - 6415: 0f 84 07 da ff ff je 3e22 - 641b: 48 8b 44 24 68 mov rax,QWORD PTR [rsp+0x68] - setivalue(ra, intop(&, ib, ic)); - 6420: 48 23 44 24 60 and rax,QWORD PTR [rsp+0x60] - 6425: 41 bb 13 00 00 00 mov r11d,0x13 - 642b: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 642f: 66 44 89 5d 08 mov WORD PTR [rbp+0x8],r11w - 6434: e9 1e da ff ff jmp 3e57 - TValue *rc = RKC(i); /* key */ - 6439: 41 83 e0 7f and r8d,0x7f - 643d: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 6442: 49 c1 e0 04 shl r8,0x4 - 6446: 4a 8d 14 00 lea rdx,[rax+r8*1] - 644a: e9 95 d8 ff ff jmp 3ce4 - TValue *rc = RKC(i); /* key */ - 644f: 41 83 e0 7f and r8d,0x7f - 6453: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - 6458: 49 c1 e0 04 shl r8,0x4 - 645c: 4a 8d 14 00 lea rdx,[rax+r8*1] - 6460: e9 cf d7 ff ff jmp 3c34 - if (!ttisnil(ra) && RAVI_UNLIKELY(!ttisstring(ra))) - 6465: 83 e0 0f and eax,0xf - 6468: 66 83 f8 04 cmp ax,0x4 - 646c: 0f 84 3a e1 ff ff je 45ac - 6472: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "string expected"); - 6477: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 647e - 647e: 31 c0 xor eax,eax - 6480: 4c 89 ef mov rdi,r13 - 6483: e8 00 00 00 00 call 6488 - if (!ttisnil(ra) && RAVI_UNLIKELY(!ttisclosure(ra))) - 6488: 83 e0 1f and eax,0x1f - 648b: 66 83 f8 06 cmp ax,0x6 - 648f: 0f 84 dc e0 ff ff je 4571 - 6495: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "closure expected"); - 649a: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 64a1 - 64a1: 31 c0 xor eax,eax - 64a3: 4c 89 ef mov rdi,r13 - 64a6: e8 00 00 00 00 call 64ab - TValue *rb = RKB(i); - 64ab: 83 e0 7f and eax,0x7f - 64ae: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 64b3: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 64b7: 48 c1 e0 04 shl rax,0x4 - 64bb: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 64bf: 41 f6 c0 80 test r8b,0x80 - 64c3: 0f 85 39 e9 ff ff jne 4e02 - 64c9: 45 0f b6 c0 movzx r8d,r8b - 64cd: 49 c1 e0 04 shl r8,0x4 - 64d1: 4b 8d 04 04 lea rax,[r12+r8*1] - 64d5: e9 38 e9 ff ff jmp 4e12 - TValue *rb = RKB(i); - 64da: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 64dd: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 64e1: 48 c1 e0 04 shl rax,0x4 - 64e5: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 64ea: 41 f6 c0 80 test r8b,0x80 - 64ee: 0f 85 8c e8 ff ff jne 4d80 - 64f4: 45 0f b6 c0 movzx r8d,r8b - 64f8: 49 c1 e0 04 shl r8,0x4 - 64fc: 4b 8d 14 04 lea rdx,[r12+r8*1] - 6500: e9 8c e8 ff ff jmp 4d91 - TValue *rb = RKB(i); - 6505: 83 e0 7f and eax,0x7f - 6508: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 650d: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6511: 48 c1 e0 04 shl rax,0x4 - 6515: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 6519: 41 f6 c0 80 test r8b,0x80 - 651d: 0f 85 e1 e7 ff ff jne 4d04 - 6523: 45 0f b6 c0 movzx r8d,r8b - 6527: 49 c1 e0 04 shl r8,0x4 - 652b: 4b 8d 04 04 lea rax,[r12+r8*1] - 652f: e9 e0 e7 ff ff jmp 4d14 - TValue *rb = RKB(i); - 6534: 83 e0 7f and eax,0x7f - 6537: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 653c: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6540: 48 c1 e0 04 shl rax,0x4 - 6544: 48 8d 14 07 lea rdx,[rdi+rax*1] - TValue *rc = RKC(i); - 6548: 41 f6 c0 80 test r8b,0x80 - 654c: 0f 85 3d e7 ff ff jne 4c8f - 6552: 45 0f b6 c0 movzx r8d,r8b - 6556: 49 c1 e0 04 shl r8,0x4 - 655a: 4b 8d 04 04 lea rax,[r12+r8*1] - 655e: e9 3c e7 ff ff jmp 4c9f - TValue *rb = RKB(i); - 6563: 83 e0 7f and eax,0x7f - 6566: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 656b: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 656f: 48 c1 e0 04 shl rax,0x4 - 6573: 48 8d 14 06 lea rdx,[rsi+rax*1] - TValue *rc = RKC(i); - 6577: 41 f6 c0 80 test r8b,0x80 - 657b: 0f 85 96 e6 ff ff jne 4c17 - 6581: 45 0f b6 c0 movzx r8d,r8b - 6585: 49 c1 e0 04 shl r8,0x4 - 6589: 4b 8d 04 04 lea rax,[r12+r8*1] - 658d: e9 95 e6 ff ff jmp 4c27 - TValue *rb = RKB(i); - 6592: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 6595: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6599: 48 c1 e0 04 shl rax,0x4 - 659d: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 65a2: 41 f6 c0 80 test r8b,0x80 - 65a6: 0f 85 ed e5 ff ff jne 4b99 - 65ac: 45 0f b6 c0 movzx r8d,r8b - 65b0: 49 c1 e0 04 shl r8,0x4 - 65b4: 4b 8d 14 04 lea rdx,[r12+r8*1] - 65b8: e9 ed e5 ff ff jmp 4baa - TValue *rb = RKB(i); - 65bd: 83 e0 7f and eax,0x7f - 65c0: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 65c5: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 65c9: 48 c1 e0 04 shl rax,0x4 - 65cd: 48 8d 14 06 lea rdx,[rsi+rax*1] - TValue *rc = RKC(i); - 65d1: 41 f6 c0 80 test r8b,0x80 - 65d5: 0f 85 49 e5 ff ff jne 4b24 - 65db: 45 0f b6 c0 movzx r8d,r8b - 65df: 49 c1 e0 04 shl r8,0x4 - 65e3: 4b 8d 04 04 lea rax,[r12+r8*1] - 65e7: e9 48 e5 ff ff jmp 4b34 - TValue *rb = RKB(i); - 65ec: 83 e0 7f and eax,0x7f - 65ef: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 65f4: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 65f8: 48 c1 e0 04 shl rax,0x4 - 65fc: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 6600: 41 f6 c0 80 test r8b,0x80 - 6604: 0f 85 a2 e4 ff ff jne 4aac - 660a: 45 0f b6 c0 movzx r8d,r8b - 660e: 49 c1 e0 04 shl r8,0x4 - 6612: 4b 8d 04 04 lea rax,[r12+r8*1] - 6616: e9 a1 e4 ff ff jmp 4abc - TValue *rb = RKB(i); - 661b: 83 e0 7f and eax,0x7f - 661e: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6623: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6627: 48 c1 e0 04 shl rax,0x4 - 662b: 4c 8d 3c 07 lea r15,[rdi+rax*1] - TValue *rc = RKC(i); - 662f: 41 f6 c0 80 test r8b,0x80 - 6633: 0f 85 57 d4 ff ff jne 3a90 - 6639: 45 0f b6 c0 movzx r8d,r8b - 663d: 49 c1 e0 04 shl r8,0x4 - 6641: 4b 8d 0c 04 lea rcx,[r12+r8*1] - 6645: e9 57 d4 ff ff jmp 3aa1 - TValue *rb = RKB(i); - 664a: 83 e0 7f and eax,0x7f - 664d: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6652: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6656: 48 c1 e0 04 shl rax,0x4 - 665a: 4c 8d 3c 06 lea r15,[rsi+rax*1] - TValue *rc = RKC(i); - 665e: 41 f6 c0 80 test r8b,0x80 - 6662: 0f 85 6d d3 ff ff jne 39d5 - 6668: 45 0f b6 c0 movzx r8d,r8b - 666c: 49 c1 e0 04 shl r8,0x4 - 6670: 4b 8d 0c 04 lea rcx,[r12+r8*1] - 6674: e9 6d d3 ff ff jmp 39e6 - TValue *rb = RKB(i); - 6679: 83 e0 7f and eax,0x7f - 667c: 48 8b 74 24 10 mov rsi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 6681: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6685: 48 c1 e0 04 shl rax,0x4 - 6689: 48 8d 2c 06 lea rbp,[rsi+rax*1] - TValue *rc = RKC(i); - 668d: 41 f6 c0 80 test r8b,0x80 - 6691: 0f 85 d4 d4 ff ff jne 3b6b - 6697: 45 0f b6 c0 movzx r8d,r8b - 669b: 49 c1 e0 04 shl r8,0x4 - 669f: 4b 8d 0c 04 lea rcx,[r12+r8*1] - 66a3: e9 d4 d4 ff ff jmp 3b7c - TValue *rb = RKB(i); - 66a8: 83 e0 7f and eax,0x7f - 66ab: 48 8b 7c 24 10 mov rdi,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 66b0: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 66b4: 48 c1 e0 04 shl rax,0x4 - 66b8: 48 8d 14 07 lea rdx,[rdi+rax*1] - TValue *rc = RKC(i); - 66bc: 41 f6 c0 80 test r8b,0x80 - 66c0: 0f 85 5c e2 ff ff jne 4922 - 66c6: 45 0f b6 c0 movzx r8d,r8b - 66ca: 49 c1 e0 04 shl r8,0x4 - 66ce: 4b 8d 04 04 lea rax,[r12+r8*1] - 66d2: e9 5b e2 ff ff jmp 4932 - TValue *rb = RKB(i); - 66d7: 83 e0 7f and eax,0x7f - 66da: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 66df: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 66e3: 48 c1 e0 04 shl rax,0x4 - 66e7: 48 8d 14 01 lea rdx,[rcx+rax*1] - TValue *rc = RKC(i); - 66eb: 41 f6 c0 80 test r8b,0x80 - 66ef: 0f 85 b5 e2 ff ff jne 49aa - 66f5: 45 0f b6 c0 movzx r8d,r8b - 66f9: 49 c1 e0 04 shl r8,0x4 - 66fd: 4b 8d 04 04 lea rax,[r12+r8*1] - 6701: e9 b4 e2 ff ff jmp 49ba - TValue *rb = RKB(i); - 6706: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 670a: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 670e: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 6712: 41 f6 c0 80 test r8b,0x80 - 6716: 0f 85 fd ec ff ff jne 5419 - 671c: 45 0f b6 c0 movzx r8d,r8b - 6720: 49 c1 e0 04 shl r8,0x4 - 6724: 4b 8d 04 04 lea rax,[r12+r8*1] - 6728: e9 fc ec ff ff jmp 5429 - TValue *rb = RKB(i); - 672d: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 6730: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 6734: 48 c1 e0 04 shl rax,0x4 - 6738: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 673d: 41 f6 c0 80 test r8b,0x80 - 6741: 0f 85 52 ec ff ff jne 5399 - 6747: 45 0f b6 c0 movzx r8d,r8b - lua_Integer idx = ivalue(rb); - 674b: 4c 8b 38 mov r15,QWORD PTR [rax] - TValue *rc = RKC(i); - 674e: 49 c1 e0 04 shl r8,0x4 - 6752: 4b 8d 3c 04 lea rdi,[r12+r8*1] - if (ttisfloat(rc)) { raviH_set_float_inline(L, t, idx, fltvalue(rc)); } - 6756: 0f b7 47 08 movzx eax,WORD PTR [rdi+0x8] - 675a: 66 83 f8 03 cmp ax,0x3 - 675e: 0f 85 57 ec ff ff jne 53bb - 6764: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 6768: 44 89 fa mov edx,r15d - 676b: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 676f: 0f 86 ff 0b 00 00 jbe 7374 - 6775: f2 0f 10 07 movsd xmm0,QWORD PTR [rdi] - 6779: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - vmbreak; - 677e: 48 89 d8 mov rax,rbx - 6781: 48 83 c3 04 add rbx,0x4 - 6785: 44 8b 00 mov r8d,DWORD PTR [rax] - 6788: 45 85 ed test r13d,r13d - 678b: 0f 85 a2 16 00 00 jne 7e33 - 6791: 44 89 c5 mov ebp,r8d - 6794: 41 0f b6 c0 movzx eax,r8b - 6798: c1 ed 08 shr ebp,0x8 - 679b: 48 89 c2 mov rdx,rax - 679e: 83 e5 7f and ebp,0x7f - 67a1: 48 c1 e5 04 shl rbp,0x4 - 67a5: 4c 01 e5 add rbp,r12 - 67a8: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - TValue *rb = RKB(i); - 67ac: 48 c1 e0 04 shl rax,0x4 - TValue *rc = RKC(i); - 67b0: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 67b4: 49 8d 14 04 lea rdx,[r12+rax*1] - TValue *rc = RKC(i); - 67b8: 41 f6 c0 80 test r8b,0x80 - 67bc: 0f 85 57 eb ff ff jne 5319 - 67c2: 45 0f b6 c0 movzx r8d,r8b - 67c6: 49 c1 e0 04 shl r8,0x4 - 67ca: 4b 8d 04 04 lea rax,[r12+r8*1] - 67ce: e9 56 eb ff ff jmp 5329 - TValue *rb = RKB(i); - 67d3: 83 e0 7f and eax,0x7f - TValue *rc = RKC(i); - 67d6: 41 c1 e8 10 shr r8d,0x10 - TValue *rb = RKB(i); - 67da: 48 c1 e0 04 shl rax,0x4 - 67de: 48 03 44 24 10 add rax,QWORD PTR [rsp+0x10] - TValue *rc = RKC(i); - 67e3: 41 f6 c0 80 test r8b,0x80 - 67e7: 0f 85 8c e6 ff ff jne 4e79 - 67ed: 45 0f b6 c0 movzx r8d,r8b - 67f1: 49 c1 e0 04 shl r8,0x4 - 67f5: 4b 8d 14 04 lea rdx,[r12+r8*1] - 67f9: e9 8c e6 ff ff jmp 4e8a - 67fe: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 6803: 48 8b 40 28 mov rax,QWORD PTR [rax+0x28] - 6807: e9 2d b5 ff ff jmp 1d39 - pc += GETARG_sBx(i); /* jump back */ - 680c: 41 c1 e8 10 shr r8d,0x10 - setivalue(ra + 3, idx); /* ...and external index */ - 6810: be 13 00 00 00 mov esi,0x13 - chgivalue(ra, idx); /* update internal index... */ - 6815: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - pc += GETARG_sBx(i); /* jump back */ - 6819: 44 89 c1 mov ecx,r8d - setivalue(ra + 3, idx); /* ...and external index */ - 681c: 48 89 55 30 mov QWORD PTR [rbp+0x30],rdx - pc += GETARG_sBx(i); /* jump back */ - 6820: 48 8d 84 8b 00 00 fe lea rax,[rbx+rcx*4-0x20000] - 6827: ff - setivalue(ra + 3, idx); /* ...and external index */ - 6828: 66 89 75 38 mov WORD PTR [rbp+0x38],si - 682c: e9 be c3 ff ff jmp 2bef - if (cl->p->sizep > 0) luaF_close(L, base); - 6831: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6836: 4c 89 e6 mov rsi,r12 - 6839: e8 00 00 00 00 call 683e - 683e: e9 f2 c3 ff ff jmp 2c35 - checkGC(L, ra + 1); - 6843: 48 83 c5 10 add rbp,0x10 - 6847: 4c 89 ff mov rdi,r15 - 684a: 49 89 6f 10 mov QWORD PTR [r15+0x10],rbp - 684e: e8 00 00 00 00 call 6853 - 6853: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 6858: 48 8b 47 08 mov rax,QWORD PTR [rdi+0x8] - 685c: 4c 8b 67 20 mov r12,QWORD PTR [rdi+0x20] - 6860: 48 89 5f 28 mov QWORD PTR [rdi+0x28],rbx - 6864: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 686b: 00 - 686c: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - 6870: 41 83 e5 0c and r13d,0xc - 6874: e9 52 bf ff ff jmp 27cb - checkGC(L, ra + 1); - 6879: 48 83 c5 10 add rbp,0x10 - 687d: 4c 89 ff mov rdi,r15 - 6880: 49 89 6f 10 mov QWORD PTR [r15+0x10],rbp - 6884: e8 00 00 00 00 call 6889 - 6889: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 688e: 48 8b 47 08 mov rax,QWORD PTR [rdi+0x8] - 6892: 4c 8b 67 20 mov r12,QWORD PTR [rdi+0x20] - 6896: 48 89 5f 28 mov QWORD PTR [rdi+0x28],rbx - 689a: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 68a1: 00 - 68a2: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - 68a6: 41 83 e5 0c and r13d,0xc - 68aa: e9 42 b8 ff ff jmp 20f1 - checkGC(L, ra + 1); - 68af: 48 83 c5 10 add rbp,0x10 - 68b3: 49 89 6f 10 mov QWORD PTR [r15+0x10],rbp - 68b7: e8 00 00 00 00 call 68bc - 68bc: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 68c1: 48 8b 46 08 mov rax,QWORD PTR [rsi+0x8] - 68c5: 4c 8b 66 20 mov r12,QWORD PTR [rsi+0x20] - 68c9: 48 89 5e 28 mov QWORD PTR [rsi+0x28],rbx - 68cd: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 68d4: 00 - 68d5: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - 68d9: 41 83 e5 0c and r13d,0xc - 68dd: e9 18 da ff ff jmp 42fa - checkGC(L, ra + 1); - 68e2: 48 83 c5 10 add rbp,0x10 - 68e6: 49 89 6f 10 mov QWORD PTR [r15+0x10],rbp - 68ea: e8 00 00 00 00 call 68ef - 68ef: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 68f4: 48 8b 41 08 mov rax,QWORD PTR [rcx+0x8] - 68f8: 4c 8b 61 20 mov r12,QWORD PTR [rcx+0x20] - 68fc: 48 89 59 28 mov QWORD PTR [rcx+0x28],rbx - 6900: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 6907: 00 - 6908: 49 89 47 10 mov QWORD PTR [r15+0x10],rax - 690c: 41 83 e5 0c and r13d,0xc - 6910: e9 1f c0 ff ff jmp 2934 - luaC_upvalbarrier(L, uv); - 6915: 48 8d 56 10 lea rdx,[rsi+0x10] - 6919: 48 39 d0 cmp rax,rdx - 691c: 0f 85 71 d4 ff ff jne 3d93 - 6922: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6927: e8 00 00 00 00 call 692c - 692c: e9 62 d4 ff ff jmp 3d93 - luaC_upvalbarrier(L, uv); - 6931: 48 8d 56 10 lea rdx,[rsi+0x10] - 6935: 48 39 d0 cmp rax,rdx - 6938: 0f 85 b0 e8 ff ff jne 51ee - 693e: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6943: e8 00 00 00 00 call 6948 - 6948: e9 a1 e8 ff ff jmp 51ee - Protect(luaD_checkstack(L, n)); - 694d: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - 6952: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 6957: 49 63 d7 movsxd rdx,r15d - 695a: 48 89 58 28 mov QWORD PTR [rax+0x28],rbx - 695e: 48 8b 46 30 mov rax,QWORD PTR [rsi+0x30] - 6962: 48 2b 46 10 sub rax,QWORD PTR [rsi+0x10] - 6966: 48 c1 f8 04 sar rax,0x4 - 696a: 48 39 d0 cmp rax,rdx - 696d: 0f 8e eb 08 00 00 jle 725e - 6973: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - ra = RA(i); /* previous call may change the stack */ - 6978: 41 c1 e8 08 shr r8d,0x8 - Protect(luaD_checkstack(L, n)); - 697c: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - b = n; /* get all var. arguments */ - 6981: 44 89 fe mov esi,r15d - ra = RA(i); /* previous call may change the stack */ - 6984: 44 89 c5 mov ebp,r8d - Protect(luaD_checkstack(L, n)); - 6987: 4c 8b 60 20 mov r12,QWORD PTR [rax+0x20] - ra = RA(i); /* previous call may change the stack */ - 698b: 83 e5 7f and ebp,0x7f - L->top = ra + n; - 698e: 49 63 c7 movsxd rax,r15d - Protect(luaD_checkstack(L, n)); - 6991: 44 0f b6 af c8 00 00 movzx r13d,BYTE PTR [rdi+0xc8] - 6998: 00 - ra = RA(i); /* previous call may change the stack */ - 6999: 48 c1 e5 04 shl rbp,0x4 - L->top = ra + n; - 699d: 48 c1 e0 04 shl rax,0x4 - ra = RA(i); /* previous call may change the stack */ - 69a1: 4c 01 e5 add rbp,r12 - Protect(luaD_checkstack(L, n)); - 69a4: 41 83 e5 0c and r13d,0xc - L->top = ra + n; - 69a8: 48 01 e8 add rax,rbp - 69ab: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax - 69af: 44 89 ff mov edi,r15d - 69b2: e9 88 be ff ff jmp 283f - luaC_upvalbarrier(L, uv); - 69b7: 48 8d 56 10 lea rdx,[rsi+0x10] - 69bb: 48 39 d0 cmp rax,rdx - 69be: 0f 85 c4 e7 ff ff jne 5188 - 69c4: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 69c9: e8 00 00 00 00 call 69ce - 69ce: e9 b5 e7 ff ff jmp 5188 - luaC_upvalbarrier(L, uv); - 69d3: 48 8d 56 10 lea rdx,[rsi+0x10] - 69d7: 48 39 d0 cmp rax,rdx - 69da: 0f 85 42 e7 ff ff jne 5122 - 69e0: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 69e5: e8 00 00 00 00 call 69ea - 69ea: e9 33 e7 ff ff jmp 5122 - if (ttisinteger(init) && ttisinteger(pstep) && - 69ef: 66 41 83 7f 08 13 cmp WORD PTR [r15+0x8],0x13 - 69f5: 0f 85 07 c1 ff ff jne 2b02 - luaV_forlimit(plimit, &ilimit, ivalue(pstep), &stopnow)) { - 69fb: 49 8b 17 mov rdx,QWORD PTR [r15] - 69fe: 4c 89 cf mov rdi,r9 - 6a01: 48 8d 4c 24 54 lea rcx,[rsp+0x54] - 6a06: 44 89 44 24 30 mov DWORD PTR [rsp+0x30],r8d - 6a0b: 48 8d b4 24 b8 00 00 lea rsi,[rsp+0xb8] - 6a12: 00 - 6a13: 4c 89 4c 24 28 mov QWORD PTR [rsp+0x28],r9 - 6a18: e8 00 00 00 00 call 6a1d - if (ttisinteger(init) && ttisinteger(pstep) && - 6a1d: 4c 8b 4c 24 28 mov r9,QWORD PTR [rsp+0x28] - 6a22: 44 8b 44 24 30 mov r8d,DWORD PTR [rsp+0x30] - 6a27: 85 c0 test eax,eax - 6a29: 0f 84 d3 c0 ff ff je 2b02 - lua_Integer initv = (stopnow ? 0 : ivalue(init)); - 6a2f: 8b 54 24 54 mov edx,DWORD PTR [rsp+0x54] - 6a33: 31 c0 xor eax,eax - 6a35: 85 d2 test edx,edx - 6a37: 75 04 jne 6a3d - 6a39: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - setivalue(plimit, ilimit); - 6a3d: 48 8b 94 24 b8 00 00 mov rdx,QWORD PTR [rsp+0xb8] - 6a44: 00 - 6a45: 41 bb 13 00 00 00 mov r11d,0x13 - 6a4b: 66 45 89 59 08 mov WORD PTR [r9+0x8],r11w - 6a50: 49 89 11 mov QWORD PTR [r9],rdx - setivalue(init, intop(-, initv, ivalue(pstep))); - 6a53: 49 2b 07 sub rax,QWORD PTR [r15] - 6a56: 41 bf 13 00 00 00 mov r15d,0x13 - 6a5c: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 6a60: 66 44 89 7d 08 mov WORD PTR [rbp+0x8],r15w - luaV_forlimit(plimit, &ilimit, ivalue(pstep), &stopnow)) { - 6a65: e9 17 c1 ff ff jmp 2b81 - last = ((c-1)*LFIELDS_PER_FLUSH) + n; - 6a6a: 89 f1 mov ecx,esi - if (last > h->sizearray) /* needs more space? */ - 6a6c: 41 39 71 0c cmp DWORD PTR [r9+0xc],esi - 6a70: 0f 82 93 08 00 00 jb 7309 - 6a76: 49 63 c0 movsxd rax,r8d - 6a79: 44 89 7c 24 28 mov DWORD PTR [rsp+0x28],r15d - 6a7e: 48 c1 e0 04 shl rax,0x4 - 6a82: 48 89 c3 mov rbx,rax - for (; n > 0; n--) { - 6a85: 45 85 c0 test r8d,r8d - 6a88: 0f 8e e1 ce ff ff jle 396f - 6a8e: 44 89 6c 24 48 mov DWORD PTR [rsp+0x48],r13d - 6a93: 4c 8b 6c 24 30 mov r13,QWORD PTR [rsp+0x30] - 6a98: 4c 89 4c 24 40 mov QWORD PTR [rsp+0x40],r9 - 6a9d: 4c 89 64 24 30 mov QWORD PTR [rsp+0x30],r12 - 6aa2: eb 12 jmp 6ab6 - 6aa4: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - 6aa8: 48 83 eb 10 sub rbx,0x10 - 6aac: 44 89 e1 mov ecx,r12d - 6aaf: 44 3b 64 24 28 cmp r12d,DWORD PTR [rsp+0x28] - 6ab4: 74 52 je 6b08 - TValue *val = ra + n; - 6ab6: 4c 8d 7c 1d 00 lea r15,[rbp+rbx*1+0x0] - luaH_setint(L, h, last--, val); - 6abb: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6ac0: 89 ca mov edx,ecx - 6ac2: 44 8d 61 ff lea r12d,[rcx-0x1] - 6ac6: 4c 89 ee mov rsi,r13 - 6ac9: 4c 89 f9 mov rcx,r15 - 6acc: e8 00 00 00 00 call 6ad1 - luaC_barrierback(L, h, val); - 6ad1: 66 41 83 7f 08 00 cmp WORD PTR [r15+0x8],0x0 - 6ad7: 79 cf jns 6aa8 - 6ad9: 48 8b 44 24 40 mov rax,QWORD PTR [rsp+0x40] - 6ade: f6 40 09 04 test BYTE PTR [rax+0x9],0x4 - 6ae2: 74 c4 je 6aa8 - 6ae4: 49 8b 07 mov rax,QWORD PTR [r15] - 6ae7: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - 6aeb: 74 bb je 6aa8 - 6aed: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6af2: 4c 89 ee mov rsi,r13 - 6af5: 48 83 eb 10 sub rbx,0x10 - 6af9: e8 00 00 00 00 call 6afe - 6afe: 44 89 e1 mov ecx,r12d - for (; n > 0; n--) { - 6b01: 44 3b 64 24 28 cmp r12d,DWORD PTR [rsp+0x28] - 6b06: 75 ae jne 6ab6 - 6b08: 44 8b 6c 24 48 mov r13d,DWORD PTR [rsp+0x48] - 6b0d: 4c 8b 64 24 30 mov r12,QWORD PTR [rsp+0x30] - 6b12: e9 58 ce ff ff jmp 396f - setivalue(ra, intop(-, 0, ib)); - 6b17: 48 8b 06 mov rax,QWORD PTR [rsi] - 6b1a: 48 f7 d8 neg rax - 6b1d: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 6b21: b8 13 00 00 00 mov eax,0x13 - 6b26: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 6b2a: e9 0a c8 ff ff jmp 3339 - if (tointegerns(rb, &ib)) { - 6b2f: 49 8b 01 mov rax,QWORD PTR [r9] - 6b32: 48 89 84 24 b0 00 00 mov QWORD PTR [rsp+0xb0],rax - 6b39: 00 - 6b3a: e9 7c c7 ff ff jmp 32bb - dojump(ci, i, 0); - 6b3f: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 6b44: 48 98 cdqe - 6b46: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6b4b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 6b50: 48 c1 e0 04 shl rax,0x4 - 6b54: 48 8b 56 20 mov rdx,QWORD PTR [rsi+0x20] - 6b58: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 6b5d: e8 00 00 00 00 call 6b62 - 6b62: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 6b67: e9 03 c5 ff ff jmp 306f - luaH_resize(L, t, luaO_fb2int(b), luaO_fb2int(c)); - 6b6c: 44 89 ff mov edi,r15d - 6b6f: 48 89 74 24 38 mov QWORD PTR [rsp+0x38],rsi - 6b74: e8 00 00 00 00 call 6b79 - 6b79: 8b 7c 24 28 mov edi,DWORD PTR [rsp+0x28] - 6b7d: 89 44 24 30 mov DWORD PTR [rsp+0x30],eax - 6b81: e8 00 00 00 00 call 6b86 - 6b86: 8b 4c 24 30 mov ecx,DWORD PTR [rsp+0x30] - 6b8a: 48 8b 74 24 38 mov rsi,QWORD PTR [rsp+0x38] - 6b8f: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6b94: 89 c2 mov edx,eax - 6b96: e8 00 00 00 00 call 6b9b - 6b9b: e9 43 d7 ff ff jmp 42e3 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 6ba0: 48 8b 74 24 28 mov rsi,QWORD PTR [rsp+0x28] - 6ba5: 31 d2 xor edx,edx - lua_Integer i = 0; - 6ba7: 48 c7 84 24 d0 00 00 mov QWORD PTR [rsp+0xd0],0x0 - 6bae: 00 00 00 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 6bb3: e8 00 00 00 00 call 6bb8 - if (luaV_tointeger_(val, &i)) { - 6bb8: 85 c0 test eax,eax - 6bba: 0f 84 30 31 00 00 je 9cf0 - raviH_set_int_inline(L, h, u, i); - 6bc0: 48 8b 8c 24 d0 00 00 mov rcx,QWORD PTR [rsp+0xd0] - 6bc7: 00 - 6bc8: 44 89 ea mov edx,r13d - 6bcb: 45 39 6c 24 40 cmp DWORD PTR [r12+0x40],r13d - 6bd0: 0f 86 92 00 00 00 jbe 6c68 - 6bd6: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - 6bdb: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 6bdf: e9 34 cd ff ff jmp 3918 - 6be4: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - raviH_set_float_inline(L, h, u, fltvalue(val)); - 6be8: 44 89 ea mov edx,r13d - 6beb: 45 39 6c 24 40 cmp DWORD PTR [r12+0x40],r13d - 6bf0: 0f 86 aa 00 00 00 jbe 6ca0 - 6bf6: f2 0f 10 07 movsd xmm0,QWORD PTR [rdi] - 6bfa: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - 6bff: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 6c04: e9 0f cd ff ff jmp 3918 - 6c09: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - if (luaV_tonumber_(val, &d)) { - 6c10: 48 8b 74 24 28 mov rsi,QWORD PTR [rsp+0x28] - lua_Number d = 0.0; - 6c15: 48 c7 84 24 d0 00 00 mov QWORD PTR [rsp+0xd0],0x0 - 6c1c: 00 00 00 00 00 - if (luaV_tonumber_(val, &d)) { - 6c21: e8 00 00 00 00 call 6c26 - 6c26: 85 c0 test eax,eax - 6c28: 0f 84 cc 30 00 00 je 9cfa - raviH_set_float_inline(L, h, u, d); - 6c2e: f2 0f 10 84 24 d0 00 movsd xmm0,QWORD PTR [rsp+0xd0] - 6c35: 00 00 - 6c37: 44 89 ea mov edx,r13d - 6c3a: 45 39 6c 24 40 cmp DWORD PTR [r12+0x40],r13d - 6c3f: 0f 86 41 01 00 00 jbe 6d86 - 6c45: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - 6c4a: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 6c4f: e9 c4 cc ff ff jmp 3918 - raviH_set_int_inline(L, h, u, ivalue(val)); - 6c54: 48 8b 74 24 30 mov rsi,QWORD PTR [rsp+0x30] - 6c59: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6c5e: e8 00 00 00 00 call 6c63 - 6c63: e9 b0 cc ff ff jmp 3918 - raviH_set_int_inline(L, h, u, i); - 6c68: 48 8b 74 24 30 mov rsi,QWORD PTR [rsp+0x30] - 6c6d: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6c72: e8 00 00 00 00 call 6c77 - 6c77: e9 9c cc ff ff jmp 3918 - 6c7c: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # 6c83 - 6c83: e9 d2 d5 ff ff jmp 425a - 6c88: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # 6c8f - 6c8f: e9 76 b5 ff ff jmp 220a - 6c94: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # 6c9b - 6c9b: e9 22 b6 ff ff jmp 22c2 - raviH_set_float_inline(L, h, u, fltvalue(val)); - 6ca0: f2 0f 10 07 movsd xmm0,QWORD PTR [rdi] - 6ca4: 48 8b 74 24 30 mov rsi,QWORD PTR [rsp+0x30] - 6ca9: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6cae: e8 00 00 00 00 call 6cb3 - 6cb3: e9 60 cc ff ff jmp 3918 - raviH_set_float_inline(L, h, u, (lua_Number)(ivalue(val))); - 6cb8: 48 8b 74 24 30 mov rsi,QWORD PTR [rsp+0x30] - 6cbd: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6cc2: e8 00 00 00 00 call 6cc7 - 6cc7: e9 4c cc ff ff jmp 3918 - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_MOD)); } - 6ccc: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 6cd1: 48 89 e9 mov rcx,rbp - 6cd4: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 6cd9: 41 b8 09 00 00 00 mov r8d,0x9 - 6cdf: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 6ce3: 48 89 ef mov rdi,rbp - 6ce6: e8 00 00 00 00 call 6ceb - 6ceb: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 6cf2: 00 - 6cf3: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 6cf7: 41 83 e5 0c and r13d,0xc - vmbreak; - 6cfb: 48 89 d8 mov rax,rbx - 6cfe: 48 83 c3 04 add rbx,0x4 - 6d02: 44 8b 00 mov r8d,DWORD PTR [rax] - 6d05: 45 85 ed test r13d,r13d - 6d08: 0f 85 cd 17 00 00 jne 84db - 6d0e: 44 89 c5 mov ebp,r8d - 6d11: 41 0f b6 c0 movzx eax,r8b - 6d15: c1 ed 08 shr ebp,0x8 - 6d18: 48 89 c2 mov rdx,rax - 6d1b: 83 e5 7f and ebp,0x7f - 6d1e: 48 c1 e5 04 shl rbp,0x4 - 6d22: 4c 01 e5 add rbp,r12 - 6d25: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - else { Protect(luaT_trybinTM(L, rb, rc, ra, TM_IDIV)); } - 6d29: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 6d2e: 48 89 e9 mov rcx,rbp - 6d31: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 6d36: 41 b8 0c 00 00 00 mov r8d,0xc - 6d3c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 6d40: 48 89 ef mov rdi,rbp - 6d43: e8 00 00 00 00 call 6d48 - 6d48: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 6d4f: 00 - 6d50: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 6d54: 41 83 e5 0c and r13d,0xc - vmbreak; - 6d58: 48 89 d8 mov rax,rbx - 6d5b: 48 83 c3 04 add rbx,0x4 - 6d5f: 44 8b 00 mov r8d,DWORD PTR [rax] - 6d62: 45 85 ed test r13d,r13d - 6d65: 0f 85 1d 16 00 00 jne 8388 - 6d6b: 44 89 c5 mov ebp,r8d - 6d6e: 41 0f b6 c0 movzx eax,r8b - 6d72: c1 ed 08 shr ebp,0x8 - 6d75: 48 89 c2 mov rdx,rax - 6d78: 83 e5 7f and ebp,0x7f - 6d7b: 48 c1 e5 04 shl rbp,0x4 - 6d7f: 4c 01 e5 add rbp,r12 - 6d82: 41 ff 24 c6 jmp QWORD PTR [r14+rax*8] - raviH_set_float_inline(L, h, u, d); - 6d86: 48 8b 74 24 30 mov rsi,QWORD PTR [rsp+0x30] - 6d8b: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6d90: e8 00 00 00 00 call 6d95 - 6d95: e9 7e cb ff ff jmp 3918 - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 6d9a: 48 8b 75 00 mov rsi,QWORD PTR [rbp+0x0] - 6d9e: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - 6da2: 0f 84 e0 b2 ff ff je 2088 - 6da8: 48 8b 01 mov rax,QWORD PTR [rcx] - 6dab: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - 6daf: 0f 84 d3 b2 ff ff je 2088 - 6db5: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6dba: e8 00 00 00 00 call 6dbf - 6dbf: e9 c4 b2 ff ff jmp 2088 - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 6dc4: 48 89 d6 mov rsi,rdx - 6dc7: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - 6dcc: e8 00 00 00 00 call 6dd1 - 6dd1: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 6dd6: e9 46 cf ff ff jmp 3d21 - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 6ddb: 49 8b 3f mov rdi,QWORD PTR [r15] - 6dde: 48 89 d6 mov rsi,rdx - 6de1: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - 6de6: e8 00 00 00 00 call 6deb - 6deb: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 6df0: e9 7c ce ff ff jmp 3c71 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 6df5: 48 89 ee mov rsi,rbp - 6df8: 48 89 4c 24 28 mov QWORD PTR [rsp+0x28],rcx - 6dfd: e8 00 00 00 00 call 6e02 - 6e02: 48 8b 4c 24 28 mov rcx,QWORD PTR [rsp+0x28] - 6e07: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - 6e0c: 0f 85 b3 cd ff ff jne 3bc5 - 6e12: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 6e17: 4c 89 fe mov rsi,r15 - 6e1a: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 6e1f: 49 89 c0 mov r8,rax - 6e22: 48 89 ea mov rdx,rbp - 6e25: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 6e2a: 4c 89 ff mov rdi,r15 - 6e2d: e8 00 00 00 00 call 6e32 - 6e32: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 6e39: 00 - 6e3a: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 6e3f: 41 83 e5 0c and r13d,0xc - 6e43: e9 96 cd ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 6e48: 48 8b 7d 00 mov rdi,QWORD PTR [rbp+0x0] - 6e4c: 4c 89 fe mov rsi,r15 - 6e4f: 48 89 4c 24 28 mov QWORD PTR [rsp+0x28],rcx - 6e54: e8 00 00 00 00 call 6e59 - 6e59: 48 8b 4c 24 28 mov rcx,QWORD PTR [rsp+0x28] - 6e5e: 66 83 78 08 00 cmp WORD PTR [rax+0x8],0x0 - 6e63: 0f 85 81 cc ff ff jne 3aea - 6e69: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 6e6e: 4c 89 fa mov rdx,r15 - 6e71: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 6e76: 49 89 c0 mov r8,rax - 6e79: 48 89 ee mov rsi,rbp - 6e7c: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 6e81: 4c 89 ff mov rdi,r15 - 6e84: e8 00 00 00 00 call 6e89 - 6e89: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 6e90: 00 - 6e91: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 6e96: 41 83 e5 0c and r13d,0xc - 6e9a: e9 64 cc ff ff jmp 3b03 - Protect(luaT_trybinTM(L, rb, rb, ra, TM_BNOT)); - 6e9f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 6ea4: 48 89 e9 mov rcx,rbp - 6ea7: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 6eac: 4c 89 ca mov rdx,r9 - 6eaf: 41 b8 13 00 00 00 mov r8d,0x13 - 6eb5: 4c 89 ce mov rsi,r9 - 6eb8: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 6ebc: 48 89 ef mov rdi,rbp - 6ebf: e8 00 00 00 00 call 6ec4 - 6ec4: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 6ecb: 00 - 6ecc: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 6ed0: 41 83 e5 0c and r13d,0xc - 6ed4: e9 f2 c3 ff ff jmp 32cb - if (luaV_fastget(L, rb, key, aux, luaH_getstr)) { - 6ed9: 49 8b 3f mov rdi,QWORD PTR [r15] - 6edc: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - 6ee1: e8 00 00 00 00 call 6ee6 - 6ee6: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 6eeb: 49 89 c0 mov r8,rax - 6eee: 0f b7 40 08 movzx eax,WORD PTR [rax+0x8] - 6ef2: 66 85 c0 test ax,ax - 6ef5: 0f 84 82 d2 ff ff je 417d - setobj2s(L, ra, aux); - 6efb: 49 8b 10 mov rdx,QWORD PTR [r8] - 6efe: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 6f02: 48 89 55 00 mov QWORD PTR [rbp+0x0],rdx - 6f06: e9 a0 d2 ff ff jmp 41ab - donextjump(ci); - 6f0b: 8b 2b mov ebp,DWORD PTR [rbx] - 6f0d: 89 e8 mov eax,ebp - 6f0f: c1 e8 08 shr eax,0x8 - 6f12: 83 e0 7f and eax,0x7f - 6f15: 0f 85 21 05 00 00 jne 743c - 6f1b: 89 e8 mov eax,ebp - 6f1d: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 6f22: c1 e8 10 shr eax,0x10 - 6f25: 2d 00 80 00 00 sub eax,0x8000 - 6f2a: 44 0f b6 af c8 00 00 movzx r13d,BYTE PTR [rdi+0xc8] - 6f31: 00 - 6f32: 48 98 cdqe - 6f34: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 6f39: 41 83 e5 0c and r13d,0xc - 6f3d: e9 96 b4 ff ff jmp 23d8 - donextjump(ci); - 6f42: 8b 2b mov ebp,DWORD PTR [rbx] - 6f44: 89 e8 mov eax,ebp - 6f46: c1 e8 08 shr eax,0x8 - 6f49: 83 e0 7f and eax,0x7f - 6f4c: 0f 85 28 03 00 00 jne 727a - 6f52: 89 e8 mov eax,ebp - 6f54: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - 6f59: c1 e8 10 shr eax,0x10 - 6f5c: 2d 00 80 00 00 sub eax,0x8000 - 6f61: 44 0f b6 ae c8 00 00 movzx r13d,BYTE PTR [rsi+0xc8] - 6f68: 00 - 6f69: 48 98 cdqe - 6f6b: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 6f70: 41 83 e5 0c and r13d,0xc - 6f74: e9 e1 b3 ff ff jmp 235a - donextjump(ci); - 6f79: 8b 2b mov ebp,DWORD PTR [rbx] - 6f7b: 89 e8 mov eax,ebp - 6f7d: c1 e8 08 shr eax,0x8 - 6f80: 83 e0 7f and eax,0x7f - 6f83: 0f 85 3a 03 00 00 jne 72c3 - 6f89: 89 e8 mov eax,ebp - 6f8b: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 6f90: c1 e8 10 shr eax,0x10 - 6f93: 2d 00 80 00 00 sub eax,0x8000 - 6f98: 44 0f b6 a9 c8 00 00 movzx r13d,BYTE PTR [rcx+0xc8] - 6f9f: 00 - 6fa0: 48 98 cdqe - 6fa2: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 6fa7: 41 83 e5 0c and r13d,0xc - 6fab: e9 a4 b4 ff ff jmp 2454 - donextjump(ci); - 6fb0: 8b 2b mov ebp,DWORD PTR [rbx] - 6fb2: 89 e8 mov eax,ebp - 6fb4: c1 e8 08 shr eax,0x8 - 6fb7: 83 e0 7f and eax,0x7f - 6fba: 0f 85 ed 03 00 00 jne 73ad - 6fc0: 89 e8 mov eax,ebp - 6fc2: c1 e8 10 shr eax,0x10 - 6fc5: 2d 00 80 00 00 sub eax,0x8000 - 6fca: 48 98 cdqe - 6fcc: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 6fd1: e9 5f c0 ff ff jmp 3035 - donextjump(ci); - 6fd6: 8b 2b mov ebp,DWORD PTR [rbx] - 6fd8: 89 e8 mov eax,ebp - 6fda: c1 e8 08 shr eax,0x8 - 6fdd: 83 e0 7f and eax,0x7f - 6fe0: 0f 85 a4 03 00 00 jne 738a - 6fe6: 89 e8 mov eax,ebp - 6fe8: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - 6fed: c1 e8 10 shr eax,0x10 - 6ff0: 2d 00 80 00 00 sub eax,0x8000 - 6ff5: 44 0f b6 a9 c8 00 00 movzx r13d,BYTE PTR [rcx+0xc8] - 6ffc: 00 - 6ffd: 48 98 cdqe - 6fff: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 7004: 41 83 e5 0c and r13d,0xc - 7008: e9 65 b1 ff ff jmp 2172 - donextjump(ci); - 700d: 8b 2b mov ebp,DWORD PTR [rbx] - 700f: 89 e8 mov eax,ebp - 7011: c1 e8 08 shr eax,0x8 - 7014: 83 e0 7f and eax,0x7f - 7017: 0f 85 65 04 00 00 jne 7482 - 701d: 89 e8 mov eax,ebp - 701f: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7024: c1 e8 10 shr eax,0x10 - 7027: 2d 00 80 00 00 sub eax,0x8000 - 702c: 44 0f b6 af c8 00 00 movzx r13d,BYTE PTR [rdi+0xc8] - 7033: 00 - 7034: 48 98 cdqe - 7036: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 703b: 41 83 e5 0c and r13d,0xc - 703f: e9 95 b4 ff ff jmp 24d9 - donextjump(ci); - 7044: 8b 2b mov ebp,DWORD PTR [rbx] - 7046: 89 e8 mov eax,ebp - 7048: c1 e8 08 shr eax,0x8 - 704b: 83 e0 7f and eax,0x7f - 704e: 0f 85 0b 04 00 00 jne 745f - 7054: 89 e8 mov eax,ebp - 7056: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 705b: c1 e8 10 shr eax,0x10 - 705e: 2d 00 80 00 00 sub eax,0x8000 - 7063: 44 0f b6 af c8 00 00 movzx r13d,BYTE PTR [rdi+0xc8] - 706a: 00 - 706b: 48 98 cdqe - 706d: 48 8d 44 83 04 lea rax,[rbx+rax*4+0x4] - 7072: 41 83 e5 0c and r13d,0xc - 7076: e9 da b4 ff ff jmp 2555 - Protect(luaT_trybinTM(L, rb, rb, ra, TM_UNM)); - 707b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7080: 48 89 e9 mov rcx,rbp - 7083: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7088: 48 89 f2 mov rdx,rsi - 708b: 41 b8 12 00 00 00 mov r8d,0x12 - 7091: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7095: 48 89 ef mov rdi,rbp - 7098: e8 00 00 00 00 call 709d - 709d: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 70a4: 00 - 70a5: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 70a9: 41 83 e5 0c and r13d,0xc - 70ad: e9 87 c2 ff ff jmp 3339 - if (tointeger(rc, &j)) { raviH_set_int_inline(L, t, idx, j); } - 70b2: 31 d2 xor edx,edx - 70b4: 48 8d b4 24 d0 00 00 lea rsi,[rsp+0xd0] - 70bb: 00 - 70bc: e8 00 00 00 00 call 70c1 - 70c1: 85 c0 test eax,eax - 70c3: 0f 84 51 2c 00 00 je 9d1a - 70c9: 48 8b 8c 24 d0 00 00 mov rcx,QWORD PTR [rsp+0xd0] - 70d0: 00 - 70d1: 44 89 fa mov edx,r15d - 70d4: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 70d8: 0f 86 d9 03 00 00 jbe 74b7 - 70de: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 70e2: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 70e6: e9 3c f0 ff ff jmp 6127 - raviH_set_int_inline(L, t, idx, ivalue(rc)); - 70eb: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 70f0: e8 00 00 00 00 call 70f5 - 70f5: e9 48 e3 ff ff jmp 5442 - raviH_set_float_inline(L, t, idx, fltvalue(rc)); - 70fa: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 70ff: e8 00 00 00 00 call 7104 - 7104: e9 3b e2 ff ff jmp 5344 - if (tonumber(rc, &j)) { raviH_set_float_inline(L, t, idx, j); } - 7109: 48 8d b4 24 d0 00 00 lea rsi,[rsp+0xd0] - 7110: 00 - 7111: e8 00 00 00 00 call 7116 - 7116: 85 c0 test eax,eax - 7118: 0f 84 bc 2b 00 00 je 9cda - 711e: f2 0f 10 84 24 d0 00 movsd xmm0,QWORD PTR [rsp+0xd0] - 7125: 00 00 - 7127: 44 89 fa mov edx,r15d - 712a: 44 39 7d 40 cmp DWORD PTR [rbp+0x40],r15d - 712e: 0f 86 71 03 00 00 jbe 74a5 - 7134: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 7138: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 713d: e9 3c f6 ff ff jmp 677e - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 7142: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 7147: 4c 89 fa mov rdx,r15 - 714a: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 714f: 48 89 ee mov rsi,rbp - 7152: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 7157: 4c 89 ff mov rdi,r15 - 715a: e8 00 00 00 00 call 715f - 715f: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 7166: 00 - 7167: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 716c: 41 83 e5 0c and r13d,0xc - 7170: e9 c9 c8 ff ff jmp 3a3e - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 7175: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 7179: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 717d: 66 83 f8 03 cmp ax,0x3 - 7181: 0f 84 40 f1 ff ff je 62c7 - 7187: 66 83 f8 13 cmp ax,0x13 - 718b: 0f 85 95 ce ff ff jne 4026 - 7191: 66 0f ef c9 pxor xmm1,xmm1 - 7195: f2 48 0f 2a 0a cvtsi2sd xmm1,QWORD PTR [rdx] - setfltvalue(ra, luai_numsub(L, nb, nc)); - 719a: f2 0f 5c c1 subsd xmm0,xmm1 - 719e: b8 03 00 00 00 mov eax,0x3 - 71a3: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 71a7: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 71ac: e9 a4 ce ff ff jmp 4055 - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 71b1: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 71b5: f2 0f 10 0e movsd xmm1,QWORD PTR [rsi] - 71b9: 66 83 f8 03 cmp ax,0x3 - 71bd: 0f 84 68 f1 ff ff je 632b - 71c3: 66 83 f8 13 cmp ax,0x13 - 71c7: 0f 85 af cd ff ff jne 3f7c - 71cd: 66 0f ef c0 pxor xmm0,xmm0 - 71d1: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - setfltvalue(ra, luai_nummul(L, nb, nc)); - 71d6: f2 0f 59 c1 mulsd xmm0,xmm1 - 71da: b8 03 00 00 00 mov eax,0x3 - 71df: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 71e3: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 71e8: e9 be cd ff ff jmp 3fab - else if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 71ed: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 71f1: f2 0f 10 0e movsd xmm1,QWORD PTR [rsi] - 71f5: 66 83 f8 03 cmp ax,0x3 - 71f9: 0f 84 63 f0 ff ff je 6262 - 71ff: 66 83 f8 13 cmp ax,0x13 - 7203: 0f 85 c7 ce ff ff jne 40d0 - 7209: 66 0f ef c0 pxor xmm0,xmm0 - 720d: f2 48 0f 2a 02 cvtsi2sd xmm0,QWORD PTR [rdx] - setfltvalue(ra, luai_numadd(L, nb, nc)); - 7212: f2 0f 58 c1 addsd xmm0,xmm1 - 7216: b8 03 00 00 00 mov eax,0x3 - 721b: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - 721f: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 7224: e9 d6 ce ff ff jmp 40ff - if (GETARG_C(i) ? l_isfalse(rb) : !l_isfalse(rb)) - 7229: 66 83 fa 01 cmp dx,0x1 - 722d: 0f 85 a7 eb ff ff jne 5dda - 7233: 44 8b 10 mov r10d,DWORD PTR [rax] - 7236: 45 85 d2 test r10d,r10d - 7239: 0f 84 85 bb ff ff je 2dc4 - 723f: e9 96 eb ff ff jmp 5dda - if (GETARG_C(i) ? l_isfalse(ra) : !l_isfalse(ra)) - 7244: 66 83 f8 01 cmp ax,0x1 - 7248: 0f 85 c3 ea ff ff jne 5d11 - 724e: 8b 6d 00 mov ebp,DWORD PTR [rbp+0x0] - 7251: 85 ed test ebp,ebp - 7253: 0f 84 b4 bb ff ff je 2e0d - 7259: e9 b3 ea ff ff jmp 5d11 - Protect(luaD_checkstack(L, n)); - 725e: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7263: 44 89 fe mov esi,r15d - 7266: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 726b: e8 00 00 00 00 call 7270 - 7270: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7275: e9 f9 f6 ff ff jmp 6973 - donextjump(ci); - 727a: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 727f: 48 98 cdqe - 7281: 48 c1 e0 04 shl rax,0x4 - 7285: 48 8b 57 20 mov rdx,QWORD PTR [rdi+0x20] - 7289: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 728e: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 7293: e8 00 00 00 00 call 7298 - 7298: e9 b5 fc ff ff jmp 6f52 - if (ttisinteger(rc)) { raviH_set_int_inline(L, t, idx, ivalue(rc)); } - 729d: 48 8b 0f mov rcx,QWORD PTR [rdi] - 72a0: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 72a5: 48 89 ee mov rsi,rbp - 72a8: e8 00 00 00 00 call 72ad - 72ad: e9 75 ee ff ff jmp 6127 - res = (ivalue(rb) <= ivalue(rc)); - 72b2: 48 8b 32 mov rsi,QWORD PTR [rdx] - 72b5: 48 39 30 cmp QWORD PTR [rax],rsi - 72b8: 0f 9e c0 setle al - 72bb: 0f b6 c0 movzx eax,al - 72be: e9 f9 bb ff ff jmp 2ebc - donextjump(ci); - 72c3: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 72c8: 48 98 cdqe - 72ca: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 72cf: 48 c1 e0 04 shl rax,0x4 - 72d3: 48 8b 51 20 mov rdx,QWORD PTR [rcx+0x20] - 72d7: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 72dc: e8 00 00 00 00 call 72e1 - 72e1: e9 a3 fc ff ff jmp 6f89 - donextjump(ci); - 72e6: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 72eb: 48 98 cdqe - 72ed: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 72f2: 48 c1 e0 04 shl rax,0x4 - 72f6: 48 8b 51 20 mov rdx,QWORD PTR [rcx+0x20] - 72fa: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 72ff: e8 00 00 00 00 call 7304 - 7304: e9 c1 e9 ff ff jmp 5cca - luaH_resizearray(L, h, last); /* pre-allocate it at once */ - 7309: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 730e: 89 f2 mov edx,esi - 7310: 89 74 24 40 mov DWORD PTR [rsp+0x40],esi - 7314: 4c 89 ce mov rsi,r9 - 7317: 44 89 44 24 48 mov DWORD PTR [rsp+0x48],r8d - 731c: 4c 89 4c 24 28 mov QWORD PTR [rsp+0x28],r9 - 7321: e8 00 00 00 00 call 7326 - 7326: 4c 8b 4c 24 28 mov r9,QWORD PTR [rsp+0x28] - 732b: 8b 4c 24 40 mov ecx,DWORD PTR [rsp+0x40] - 732f: 44 8b 44 24 48 mov r8d,DWORD PTR [rsp+0x48] - 7334: e9 3d f7 ff ff jmp 6a76 - raviH_set_float_inline(L, t, idx, ((lua_Number)ivalue(rc))); - 7339: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 733e: 48 89 ee mov rsi,rbp - 7341: e8 00 00 00 00 call 7346 - 7346: e9 33 f4 ff ff jmp 677e - setivalue(ra, intop(-, ib, ic)); - 734b: 48 8b 06 mov rax,QWORD PTR [rsi] - 734e: 48 2b 02 sub rax,QWORD PTR [rdx] - 7351: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 7355: b8 13 00 00 00 mov eax,0x13 - 735a: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - if (ttisinteger(rb) && ttisinteger(rc)) { - 735e: e9 f2 cc ff ff jmp 4055 - res = (ivalue(rb) < ivalue(rc)); - 7363: 48 8b 32 mov rsi,QWORD PTR [rdx] - 7366: 48 39 30 cmp QWORD PTR [rax],rsi - 7369: 0f 9c c0 setl al - 736c: 0f b6 c0 movzx eax,al - 736f: e9 08 bc ff ff jmp 2f7c - if (ttisfloat(rc)) { raviH_set_float_inline(L, t, idx, fltvalue(rc)); } - 7374: f2 0f 10 07 movsd xmm0,QWORD PTR [rdi] - 7378: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 737d: 48 89 ee mov rsi,rbp - 7380: e8 00 00 00 00 call 7385 - 7385: e9 f4 f3 ff ff jmp 677e - donextjump(ci); - 738a: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 738f: 48 98 cdqe - 7391: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7396: 48 c1 e0 04 shl rax,0x4 - 739a: 48 8b 51 20 mov rdx,QWORD PTR [rcx+0x20] - 739e: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 73a3: e8 00 00 00 00 call 73a8 - 73a8: e9 39 fc ff ff jmp 6fe6 - donextjump(ci); - 73ad: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 73b2: 48 98 cdqe - 73b4: 48 c1 e0 04 shl rax,0x4 - 73b8: 49 8d 74 04 f0 lea rsi,[r12+rax*1-0x10] - 73bd: 4c 89 ff mov rdi,r15 - 73c0: e8 00 00 00 00 call 73c5 - 73c5: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 73cc: 00 - 73cd: 41 83 e5 0c and r13d,0xc - 73d1: e9 ea fb ff ff jmp 6fc0 - donextjump(ci); - 73d6: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - 73db: 48 98 cdqe - 73dd: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 73e2: 48 c1 e0 04 shl rax,0x4 - 73e6: 48 8b 51 20 mov rdx,QWORD PTR [rcx+0x20] - 73ea: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 73ef: e8 00 00 00 00 call 73f4 - 73f4: e9 3d e5 ff ff jmp 5936 - raviH_set_int_inline(L, t, idx, (lua_Integer)fltvalue(rc)); - 73f9: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 73fe: 48 89 ee mov rsi,rbp - 7401: e8 00 00 00 00 call 7406 - 7406: e9 1c ed ff ff jmp 6127 - setivalue(ra, intop(+, ib, ic)); - 740b: 48 8b 02 mov rax,QWORD PTR [rdx] - 740e: 48 03 06 add rax,QWORD PTR [rsi] - 7411: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 7415: b8 13 00 00 00 mov eax,0x13 - 741a: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - if (ttisinteger(rb) && ttisinteger(rc)) { - 741e: e9 dc cc ff ff jmp 40ff - setivalue(ra, intop(*, ib, ic)); - 7423: 48 8b 06 mov rax,QWORD PTR [rsi] - 7426: 48 0f af 02 imul rax,QWORD PTR [rdx] - 742a: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 742e: b8 13 00 00 00 mov eax,0x13 - 7433: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - if (ttisinteger(rb) && ttisinteger(rc)) { - 7437: e9 6f cb ff ff jmp 3fab - donextjump(ci); - 743c: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 7441: 48 98 cdqe - 7443: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7448: 48 c1 e0 04 shl rax,0x4 - 744c: 48 8b 56 20 mov rdx,QWORD PTR [rsi+0x20] - 7450: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 7455: e8 00 00 00 00 call 745a - 745a: e9 bc fa ff ff jmp 6f1b - donextjump(ci); - 745f: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 7464: 48 98 cdqe - 7466: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 746b: 48 c1 e0 04 shl rax,0x4 - 746f: 48 8b 56 20 mov rdx,QWORD PTR [rsi+0x20] - 7473: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 7478: e8 00 00 00 00 call 747d - 747d: e9 d2 fb ff ff jmp 7054 - donextjump(ci); - 7482: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 7487: 48 98 cdqe - 7489: 48 c1 e0 04 shl rax,0x4 - 748d: 48 8b 57 20 mov rdx,QWORD PTR [rdi+0x20] - 7491: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7496: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 749b: e8 00 00 00 00 call 74a0 - 74a0: e9 78 fb ff ff jmp 701d - if (tonumber(rc, &j)) { raviH_set_float_inline(L, t, idx, j); } - 74a5: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 74aa: 48 89 ee mov rsi,rbp - 74ad: e8 00 00 00 00 call 74b2 - 74b2: e9 c7 f2 ff ff jmp 677e - if (tointeger(rc, &j)) { raviH_set_int_inline(L, t, idx, j); } - 74b7: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 74bc: 48 89 ee mov rsi,rbp - 74bf: e8 00 00 00 00 call 74c4 - 74c4: e9 5e ec ff ff jmp 6127 - vmfetch; - 74c9: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 74ce: 48 89 5f 28 mov QWORD PTR [rdi+0x28],rbx - 74d2: 49 89 ff mov r15,rdi - 74d5: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 74da: 48 89 ef mov rdi,rbp - 74dd: e8 00 00 00 00 call 74e2 - 74e2: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 74e6: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 74eb: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 74f2: 00 - 74f3: 41 83 e5 0c and r13d,0xc - 74f7: e9 71 a8 ff ff jmp 1d6d - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 74fc: 49 8b 37 mov rsi,QWORD PTR [r15] - 74ff: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - 7503: 0f 84 d5 c6 ff ff je 3bde - 7509: 48 8b 01 mov rax,QWORD PTR [rcx] - 750c: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - 7510: 0f 84 c8 c6 ff ff je 3bde - 7516: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 751b: e8 00 00 00 00 call 7520 - 7520: e9 b9 c6 ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 7525: f6 42 09 04 test BYTE PTR [rdx+0x9],0x4 - 7529: 0f 84 0f c5 ff ff je 3a3e - 752f: 48 8b 01 mov rax,QWORD PTR [rcx] - 7532: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - 7536: 0f 84 02 c5 ff ff je 3a3e - 753c: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7541: 48 89 d6 mov rsi,rdx - 7544: e8 00 00 00 00 call 7549 - 7549: e9 f0 c4 ff ff jmp 3a3e - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 754e: 48 8b 75 00 mov rsi,QWORD PTR [rbp+0x0] - 7552: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - 7556: 0f 84 a7 c5 ff ff je 3b03 - 755c: 48 8b 01 mov rax,QWORD PTR [rcx] - 755f: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - 7563: 0f 84 9a c5 ff ff je 3b03 - 7569: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 756e: e8 00 00 00 00 call 7573 - 7573: e9 8b c5 ff ff jmp 3b03 - 7578: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - else if (ttisnumber(rb) && ttisnumber(rc)) - 757c: 89 cf mov edi,ecx - 757e: 83 e7 0f and edi,0xf - 7581: 66 83 ff 03 cmp di,0x3 - 7585: 0f 85 fe b8 ff ff jne 2e89 - 758b: e9 04 e7 ff ff jmp 5c94 - 7590: 0f b7 4a 08 movzx ecx,WORD PTR [rdx+0x8] - else if (ttisnumber(rb) && ttisnumber(rc)) - 7594: 89 cf mov edi,ecx - 7596: 83 e7 0f and edi,0xf - 7599: 66 83 ff 03 cmp di,0x3 - 759d: 0f 85 a6 b9 ff ff jne 2f49 - 75a3: e9 58 e3 ff ff jmp 5900 - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 75a8: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 75ac: 66 0f ef c0 pxor xmm0,xmm0 - 75b0: f2 48 0f 2a 06 cvtsi2sd xmm0,QWORD PTR [rsi] - 75b5: 66 83 f8 03 cmp ax,0x3 - 75b9: 0f 85 d1 e7 ff ff jne 5d90 - 75bf: f2 0f 10 0a movsd xmm1,QWORD PTR [rdx] - 75c3: e9 db e7 ff ff jmp 5da3 - if (tonumberns(rb, nb) && tonumberns(rc, nc)) { - 75c8: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - 75cc: 66 0f ef c0 pxor xmm0,xmm0 - 75d0: f2 48 0f 2a 06 cvtsi2sd xmm0,QWORD PTR [rsi] - 75d5: 66 83 f8 03 cmp ax,0x3 - 75d9: 0f 85 9f ed ff ff jne 637e - 75df: f2 0f 10 0a movsd xmm1,QWORD PTR [rdx] - 75e3: e9 a9 ed ff ff jmp 6391 - lua_Integer initv = ivalue(pinit); - 75e8: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - lua_Integer istep = RAVI_LIKELY((op == OP_RAVI_FORPREP_I1)) ? 1 : ivalue(pstep); - 75ec: 48 8b 55 20 mov rdx,QWORD PTR [rbp+0x20] - 75f0: e9 5e a8 ff ff jmp 1e53 - vmbreak; - 75f5: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 75fa: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 75ff: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7604: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7608: 48 89 ef mov rdi,rbp - 760b: e8 00 00 00 00 call 7610 - 7610: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7614: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7619: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7620: 00 - 7621: 41 83 e5 0c and r13d,0xc - 7625: e9 57 a8 ff ff jmp 1e81 - 762a: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "number[] expected"); - 762f: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 7636 - 7636: 31 c0 xor eax,eax - 7638: 4c 89 ef mov rdi,r13 - 763b: e8 00 00 00 00 call 7640 - 7640: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "integer[] expected"); - 7645: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 764c - 764c: 31 c0 xor eax,eax - 764e: 4c 89 ef mov rdi,r13 - 7651: e8 00 00 00 00 call 7656 - 7656: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "table expected"); - 765b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 7662 - 7662: 31 c0 xor eax,eax - 7664: 4c 89 ef mov rdi,r13 - 7667: e8 00 00 00 00 call 766c - vmbreak; - 766c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7671: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7676: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 767b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 767f: 48 89 ef mov rdi,rbp - 7682: e8 00 00 00 00 call 7687 - 7687: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 768b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7690: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7697: 00 - 7698: 41 83 e5 0c and r13d,0xc - 769c: e9 46 a8 ff ff jmp 1ee7 - vmbreak; - 76a1: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 76a6: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 76ab: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 76b0: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 76b4: 48 89 ef mov rdi,rbp - 76b7: e8 00 00 00 00 call 76bc - 76bc: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 76c0: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 76c5: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 76cc: 00 - 76cd: 41 83 e5 0c and r13d,0xc - 76d1: e9 ed a8 ff ff jmp 1fc3 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 76d6: 49 8b 02 mov rax,QWORD PTR [r10] - 76d9: 48 89 44 24 78 mov QWORD PTR [rsp+0x78],rax - 76de: e9 eb e0 ff ff jmp 57ce - savepc(L); /* in case of allocation errors */ - 76e3: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - pushclosure(L, p, cl->upvals, base, ra); /* create a new one */ - 76e8: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 76ed: 49 89 e8 mov r8,rbp - 76f0: 4c 89 e1 mov rcx,r12 - 76f3: 4c 8d 4d 08 lea r9,[rbp+0x8] - 76f7: 4c 89 fa mov rdx,r15 - 76fa: 4c 89 de mov rsi,r11 - savepc(L); /* in case of allocation errors */ - 76fd: 48 89 58 28 mov QWORD PTR [rax+0x28],rbx - pushclosure(L, p, cl->upvals, base, ra); /* create a new one */ - 7701: e8 ba 8a ff ff call 1c0 - 7706: e9 12 b2 ff ff jmp 291d - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 770b: 49 8b 0a mov rcx,QWORD PTR [r10] - 770e: 48 89 8c 24 98 00 00 mov QWORD PTR [rsp+0x98],rcx - 7715: 00 - 7716: e9 ab e3 ff ff jmp 5ac6 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 771b: 49 8b 02 mov rax,QWORD PTR [r10] - 771e: 48 89 84 24 88 00 00 mov QWORD PTR [rsp+0x88],rax - 7725: 00 - 7726: e9 3b e1 ff ff jmp 5866 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 772b: 49 8b 02 mov rax,QWORD PTR [r10] - 772e: 48 89 44 24 68 mov QWORD PTR [rsp+0x68],rax - 7733: e9 e8 ec ff ff jmp 6420 - if (tointegerns(rb, &ib) && tointegerns(rc, &ic)) { - 7738: 49 8b 0a mov rcx,QWORD PTR [r10] - 773b: 48 89 8c 24 a8 00 00 mov QWORD PTR [rsp+0xa8],rcx - 7742: 00 - 7743: e9 32 e4 ff ff jmp 5b7a - donextjump(ci); - 7748: 48 8b 74 24 18 mov rsi,QWORD PTR [rsp+0x18] - 774d: 48 98 cdqe - 774f: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 7754: 48 c1 e0 04 shl rax,0x4 - 7758: 48 8b 56 20 mov rdx,QWORD PTR [rsi+0x20] - 775c: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 7761: e8 00 00 00 00 call 7766 - 7766: e9 b6 e5 ff ff jmp 5d21 - donextjump(ci); - 776b: 48 8b 7c 24 18 mov rdi,QWORD PTR [rsp+0x18] - 7770: 48 98 cdqe - 7772: 48 c1 e0 04 shl rax,0x4 - 7776: 48 8b 57 20 mov rdx,QWORD PTR [rdi+0x20] - 777a: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 777f: 48 8d 74 02 f0 lea rsi,[rdx+rax*1-0x10] - 7784: e8 00 00 00 00 call 7789 - 7789: e9 6b e6 ff ff jmp 5df9 - vmbreak; - 778e: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7793: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7798: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 779d: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 77a1: 48 89 ef mov rdi,rbp - 77a4: e8 00 00 00 00 call 77a9 - 77a9: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 77ad: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 77b2: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 77b9: 00 - 77ba: 41 83 e5 0c and r13d,0xc - 77be: e9 33 bc ff ff jmp 33f6 - vmbreak; - 77c3: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 77c8: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 77cd: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 77d2: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 77d6: 48 89 ef mov rdi,rbp - 77d9: e8 00 00 00 00 call 77de - 77de: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 77e2: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 77e7: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 77ee: 00 - 77ef: 41 83 e5 0c and r13d,0xc - 77f3: e9 49 bf ff ff jmp 3741 - vmbreak; - 77f8: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 77fd: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7802: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7807: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 780b: 48 89 ef mov rdi,rbp - 780e: e8 00 00 00 00 call 7813 - 7813: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7817: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 781c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7823: 00 - 7824: 41 83 e5 0c and r13d,0xc - 7828: e9 59 ca ff ff jmp 4286 - vmbreak; - 782d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7832: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7837: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 783c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7840: 48 89 ef mov rdi,rbp - 7843: e8 00 00 00 00 call 7848 - 7848: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 784c: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7851: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7858: 00 - 7859: 41 83 e5 0c and r13d,0xc - 785d: e9 08 c6 ff ff jmp 3e6a - vmbreak; - 7862: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7867: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 786c: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7871: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7875: 48 89 ef mov rdi,rbp - 7878: e8 00 00 00 00 call 787d - 787d: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7881: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7886: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 788d: 00 - 788e: 41 83 e5 0c and r13d,0xc - 7892: e9 e3 bd ff ff jmp 367a - vmbreak; - 7897: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 789c: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 78a1: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 78a6: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 78aa: 48 89 ef mov rdi,rbp - 78ad: e8 00 00 00 00 call 78b2 - 78b2: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 78b6: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 78bb: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 78c2: 00 - 78c3: 41 83 e5 0c and r13d,0xc - 78c7: e9 e7 bc ff ff jmp 35b3 - vmbreak; - 78cc: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 78d1: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 78d6: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 78db: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 78df: 48 89 ef mov rdi,rbp - 78e2: e8 00 00 00 00 call 78e7 - 78e7: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 78eb: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 78f0: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 78f7: 00 - 78f8: 41 83 e5 0c and r13d,0xc - 78fc: e9 04 bf ff ff jmp 3805 - vmbreak; - 7901: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7906: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 790b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7910: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7914: 48 89 ef mov rdi,rbp - 7917: e8 00 00 00 00 call 791c - 791c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7920: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7925: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 792c: 00 - 792d: 41 83 e5 0c and r13d,0xc - 7931: e9 fb b0 ff ff jmp 2a31 - vmbreak; - 7936: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 793b: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7940: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7945: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7949: 48 89 ef mov rdi,rbp - 794c: e8 00 00 00 00 call 7951 - 7951: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7955: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 795a: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7961: 00 - 7962: 41 83 e5 0c and r13d,0xc - 7966: e9 51 b0 ff ff jmp 29bc - vmbreak; - 796b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7970: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7975: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 797a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 797e: 48 89 ef mov rdi,rbp - 7981: e8 00 00 00 00 call 7986 - 7986: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 798a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 798f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7996: 00 - 7997: 41 83 e5 0c and r13d,0xc - 799b: e9 48 aa ff ff jmp 23e8 - vmbreak; - 79a0: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 79a5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 79aa: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 79af: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 79b3: 48 89 ef mov rdi,rbp - 79b6: e8 00 00 00 00 call 79bb - 79bb: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 79bf: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 79c4: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 79cb: 00 - 79cc: 41 83 e5 0c and r13d,0xc - 79d0: e9 95 a9 ff ff jmp 236a - vmbreak; - 79d5: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 79da: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 79df: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 79e4: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 79e8: 48 89 ef mov rdi,rbp - 79eb: e8 00 00 00 00 call 79f0 - 79f0: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 79f4: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 79f9: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7a00: 00 - 7a01: 41 83 e5 0c and r13d,0xc - 7a05: e9 78 a7 ff ff jmp 2182 - vmbreak; - 7a0a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7a0f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7a14: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7a19: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7a1d: 48 89 ef mov rdi,rbp - 7a20: e8 00 00 00 00 call 7a25 - 7a25: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7a29: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7a2e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7a35: 00 - 7a36: 41 83 e5 0c and r13d,0xc - 7a3a: e9 aa aa ff ff jmp 24e9 - vmbreak; - 7a3f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7a44: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7a49: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7a4e: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7a52: 48 89 ef mov rdi,rbp - 7a55: e8 00 00 00 00 call 7a5a - 7a5a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7a5e: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7a63: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7a6a: 00 - 7a6b: 41 83 e5 0c and r13d,0xc - 7a6f: e9 01 ad ff ff jmp 2775 - GETTABLE_INLINE_PROTECTED_I(L, rb, rc, ra); - 7a74: 66 3d 25 80 cmp ax,0x8025 - 7a78: 0f 84 57 19 00 00 je 93d5 - 7a7e: 66 3d 15 80 cmp ax,0x8015 - 7a82: 0f 85 4f 1b 00 00 jne 95d7 - 7a88: 49 8b 0f mov rcx,QWORD PTR [r15] - 7a8b: 48 8b 02 mov rax,QWORD PTR [rdx] - 7a8e: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 7a92: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 7a95: 0f 86 95 22 00 00 jbe 9d30 - 7a9b: 89 c0 mov eax,eax - 7a9d: 41 b8 13 00 00 00 mov r8d,0x13 - 7aa3: 48 8b 04 c2 mov rax,QWORD PTR [rdx+rax*8] - 7aa7: 66 44 89 45 08 mov WORD PTR [rbp+0x8],r8w - 7aac: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 7ab0: e9 ad ac ff ff jmp 2762 - vmbreak; - 7ab5: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7aba: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7abf: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7ac4: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7ac8: 48 89 ef mov rdi,rbp - 7acb: e8 00 00 00 00 call 7ad0 - 7ad0: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7ad4: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7ad9: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7ae0: 00 - 7ae1: 41 83 e5 0c and r13d,0xc - 7ae5: e9 7b aa ff ff jmp 2565 - vmbreak; - 7aea: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7aef: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7af4: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7af9: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7afd: 48 89 ef mov rdi,rbp - 7b00: e8 00 00 00 00 call 7b05 - 7b05: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7b09: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7b0e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7b15: 00 - 7b16: 41 83 e5 0c and r13d,0xc - 7b1a: e9 22 ab ff ff jmp 2641 - vmbreak; - 7b1f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7b24: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7b29: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7b2e: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7b32: 48 89 ef mov rdi,rbp - 7b35: e8 00 00 00 00 call 7b3a - 7b3a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7b3e: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7b43: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7b4a: 00 - 7b4b: 41 83 e5 0c and r13d,0xc - 7b4f: e9 80 ab ff ff jmp 26d4 - vmbreak; - 7b54: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7b59: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7b5e: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7b63: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7b67: 48 89 ef mov rdi,rbp - 7b6a: e8 00 00 00 00 call 7b6f - 7b6f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7b73: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7b78: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7b7f: 00 - 7b80: 41 83 e5 0c and r13d,0xc - 7b84: e9 1d af ff ff jmp 2aa6 - vmbreak; - 7b89: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7b8e: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7b93: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7b98: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7b9c: 48 89 ef mov rdi,rbp - 7b9f: e8 00 00 00 00 call 7ba4 - 7ba4: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7ba8: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7bad: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7bb4: 00 - 7bb5: 41 83 e5 0c and r13d,0xc - 7bb9: e9 a6 a8 ff ff jmp 2464 - vmbreak; - 7bbe: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7bc3: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7bc8: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7bcd: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7bd1: 48 89 ef mov rdi,rbp - 7bd4: e8 00 00 00 00 call 7bd9 - 7bd9: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7bdd: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7be2: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7be9: 00 - 7bea: 41 83 e5 0c and r13d,0xc - 7bee: e9 e1 ae ff ff jmp 2ad4 - vmbreak; - 7bf3: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7bf8: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7bfd: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7c02: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7c06: 48 89 ef mov rdi,rbp - 7c09: e8 00 00 00 00 call 7c0e - 7c0e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7c12: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7c17: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7c1e: 00 - 7c1f: 41 83 e5 0c and r13d,0xc - 7c23: e9 b0 b1 ff ff jmp 2dd8 - vmbreak; - 7c28: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7c2d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7c32: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7c37: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7c3b: 48 89 ef mov rdi,rbp - 7c3e: e8 00 00 00 00 call 7c43 - 7c43: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7c47: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7c4c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7c53: 00 - 7c54: 41 83 e5 0c and r13d,0xc - 7c58: e9 c4 b1 ff ff jmp 2e21 - vmbreak; - 7c5d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7c62: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7c67: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7c6c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7c70: 48 89 ef mov rdi,rbp - 7c73: e8 00 00 00 00 call 7c78 - 7c78: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7c7c: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7c81: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7c88: 00 - 7c89: 41 83 e5 0c and r13d,0xc - 7c8d: e9 84 be ff ff jmp 3b16 - vmbreak; - 7c92: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7c97: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7c9c: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7ca1: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7ca5: 48 89 ef mov rdi,rbp - 7ca8: e8 00 00 00 00 call 7cad - 7cad: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7cb1: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7cb6: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7cbd: 00 - 7cbe: 41 83 e5 0c and r13d,0xc - 7cc2: e9 1a b2 ff ff jmp 2ee1 - else return intop(>>, x, -y); - 7cc7: 48 d3 ea shr rdx,cl - 7cca: b8 00 00 00 00 mov eax,0x0 - 7ccf: 48 83 f9 40 cmp rcx,0x40 - 7cd3: 48 0f 4c c2 cmovl rax,rdx - 7cd7: e9 c0 de ff ff jmp 5b9c - if (y <= -NBITS) return 0; - 7cdc: 31 c0 xor eax,eax - 7cde: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - 7ce2: 0f 8c ff dd ff ff jl 5ae7 - else return intop(>>, x, -y); - 7ce8: f7 d9 neg ecx - 7cea: 48 89 d0 mov rax,rdx - 7ced: 48 d3 e8 shr rax,cl - 7cf0: e9 f2 dd ff ff jmp 5ae7 - vmbreak; - 7cf5: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7cfa: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7cff: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7d04: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7d08: 48 89 ef mov rdi,rbp - 7d0b: e8 00 00 00 00 call 7d10 - 7d10: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7d14: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7d19: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7d20: 00 - 7d21: 41 83 e5 0c and r13d,0xc - 7d25: e9 86 d1 ff ff jmp 4eb0 - vmbreak; - 7d2a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7d2f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7d34: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7d39: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7d3d: 48 89 ef mov rdi,rbp - 7d40: e8 00 00 00 00 call 7d45 - 7d45: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7d49: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7d4e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7d55: 00 - 7d56: 41 83 e5 0c and r13d,0xc - 7d5a: e9 8b cc ff ff jmp 49ea - vmbreak; - 7d5f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7d64: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7d69: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7d6e: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7d72: 48 89 ef mov rdi,rbp - 7d75: e8 00 00 00 00 call 7d7a - 7d7a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7d7e: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7d83: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7d8a: 00 - 7d8b: 41 83 e5 0c and r13d,0xc - 7d8f: e9 d7 cb ff ff jmp 496b - vmbreak; - 7d94: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7d99: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7d9e: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7da3: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7da7: 48 89 ef mov rdi,rbp - 7daa: e8 00 00 00 00 call 7daf - 7daf: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7db3: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7db8: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7dbf: 00 - 7dc0: 41 83 e5 0c and r13d,0xc - 7dc4: e9 4b c1 ff ff jmp 3f14 - vmbreak; - 7dc9: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7dce: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7dd3: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7dd8: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7ddc: 48 89 ef mov rdi,rbp - 7ddf: e8 00 00 00 00 call 7de4 - 7de4: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7de8: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7ded: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7df4: 00 - 7df5: 41 83 e5 0c and r13d,0xc - 7df9: e9 a3 b1 ff ff jmp 2fa1 - vmbreak; - 7dfe: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7e03: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7e08: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7e0d: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7e11: 48 89 ef mov rdi,rbp - 7e14: e8 00 00 00 00 call 7e19 - 7e19: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7e1d: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7e22: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7e29: 00 - 7e2a: 41 83 e5 0c and r13d,0xc - 7e2e: e9 07 e3 ff ff jmp 613a - vmbreak; - 7e33: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7e38: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7e3d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7e42: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7e46: 48 89 ef mov rdi,rbp - 7e49: e8 00 00 00 00 call 7e4e - 7e4e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7e52: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7e57: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7e5e: 00 - 7e5f: 41 83 e5 0c and r13d,0xc - 7e63: e9 29 e9 ff ff jmp 6791 - vmbreak; - 7e68: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7e6d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7e72: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7e77: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7e7b: 48 89 ef mov rdi,rbp - 7e7e: e8 00 00 00 00 call 7e83 - 7e83: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7e87: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7e8c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7e93: 00 - 7e94: 41 83 e5 0c and r13d,0xc - 7e98: e9 54 bd ff ff jmp 3bf1 - vmbreak; - 7e9d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7ea2: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7ea7: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7eac: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7eb0: 48 89 ef mov rdi,rbp - 7eb3: e8 00 00 00 00 call 7eb8 - 7eb8: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7ebc: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7ec1: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7ec8: 00 - 7ec9: 41 83 e5 0c and r13d,0xc - 7ecd: e9 7f bb ff ff jmp 3a51 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 7ed2: 66 3d 25 80 cmp ax,0x8025 - 7ed6: 0f 84 34 16 00 00 je 9510 - 7edc: 66 3d 15 80 cmp ax,0x8015 - 7ee0: 0f 85 bb 16 00 00 jne 95a1 - 7ee6: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - 7eeb: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - 7eef: 0f 85 f4 18 00 00 jne 97e9 - 7ef5: 49 8b 07 mov rax,QWORD PTR [r15] - 7ef8: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 7efc: 48 8b 09 mov rcx,QWORD PTR [rcx] - 7eff: 89 c2 mov edx,eax - 7f01: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 7f04: 0f 86 a6 1d 00 00 jbe 9cb0 - 7f0a: 48 89 0c d6 mov QWORD PTR [rsi+rdx*8],rcx - 7f0e: e9 2b bb ff ff jmp 3a3e - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 7f13: 66 3d 25 80 cmp ax,0x8025 - 7f17: 0f 84 6c 15 00 00 je 9489 - 7f1d: 66 3d 15 80 cmp ax,0x8015 - 7f21: 0f 85 88 17 00 00 jne 96af - 7f27: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 7f2c: 4d 8b 3f mov r15,QWORD PTR [r15] - 7f2f: 0f 85 be 1a 00 00 jne 99f3 - 7f35: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - 7f3a: 0f 85 51 1a 00 00 jne 9991 - 7f40: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 7f44: 49 8b 77 38 mov rsi,QWORD PTR [r15+0x38] - 7f48: 48 8b 09 mov rcx,QWORD PTR [rcx] - 7f4b: 89 c2 mov edx,eax - 7f4d: 41 39 47 40 cmp DWORD PTR [r15+0x40],eax - 7f51: 0f 86 17 1e 00 00 jbe 9d6e - 7f57: 48 89 0c d6 mov QWORD PTR [rsi+rdx*8],rcx - 7f5b: e9 7e bc ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 7f60: 66 3d 25 80 cmp ax,0x8025 - 7f64: 0f 84 9a 14 00 00 je 9404 - 7f6a: 66 3d 15 80 cmp ax,0x8015 - 7f6e: 0f 85 cf 16 00 00 jne 9643 - 7f74: 66 41 83 7f 08 13 cmp WORD PTR [r15+0x8],0x13 - 7f7a: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - 7f7e: 0f 85 8b 1c 00 00 jne 9c0f - 7f84: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - 7f89: 0f 85 0c 19 00 00 jne 989b - 7f8f: 49 8b 07 mov rax,QWORD PTR [r15] - 7f92: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 7f96: 48 8b 09 mov rcx,QWORD PTR [rcx] - 7f99: 89 c2 mov edx,eax - 7f9b: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 7f9e: 0f 86 a2 1d 00 00 jbe 9d46 - 7fa4: 48 89 0c d6 mov QWORD PTR [rsi+rdx*8],rcx - 7fa8: e9 56 bb ff ff jmp 3b03 - vmbreak; - 7fad: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7fb2: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7fb7: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7fbc: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7fc0: 48 89 ef mov rdi,rbp - 7fc3: e8 00 00 00 00 call 7fc8 - 7fc8: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 7fcc: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 7fd1: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 7fd8: 00 - 7fd9: 41 83 e5 0c and r13d,0xc - 7fdd: e9 03 cb ff ff jmp 4ae5 - vmbreak; - 7fe2: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 7fe7: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 7fec: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 7ff1: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 7ff5: 48 89 ef mov rdi,rbp - 7ff8: e8 00 00 00 00 call 7ffd - 7ffd: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8001: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8006: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 800d: 00 - 800e: 41 83 e5 0c and r13d,0xc - 8012: e9 44 cb ff ff jmp 4b5b - vmbreak; - 8017: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 801c: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8021: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8026: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 802a: 48 89 ef mov rdi,rbp - 802d: e8 00 00 00 00 call 8032 - 8032: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8036: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 803b: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8042: 00 - 8043: 41 83 e5 0c and r13d,0xc - 8047: e9 8c cb ff ff jmp 4bd8 - vmbreak; - 804c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8051: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8056: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 805b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 805f: 48 89 ef mov rdi,rbp - 8062: e8 00 00 00 00 call 8067 - 8067: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 806b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8070: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8077: 00 - 8078: 41 83 e5 0c and r13d,0xc - 807c: e9 cf cb ff ff jmp 4c50 - vmbreak; - 8081: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8086: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 808b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8090: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8094: 48 89 ef mov rdi,rbp - 8097: e8 00 00 00 00 call 809c - 809c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 80a0: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 80a5: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 80ac: 00 - 80ad: 41 83 e5 0c and r13d,0xc - 80b1: e9 9f d3 ff ff jmp 5455 - vmbreak; - 80b6: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 80bb: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 80c0: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 80c5: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 80c9: 48 89 ef mov rdi,rbp - 80cc: e8 00 00 00 00 call 80d1 - 80d1: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 80d5: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 80da: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 80e1: 00 - 80e2: 41 83 e5 0c and r13d,0xc - 80e6: e9 6c d2 ff ff jmp 5357 - vmbreak; - 80eb: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 80f0: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 80f5: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 80fa: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 80fe: 48 89 ef mov rdi,rbp - 8101: e8 00 00 00 00 call 8106 - 8106: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 810a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 810f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8116: 00 - 8117: 41 83 e5 0c and r13d,0xc - 811b: e9 7c bb ff ff jmp 3c9c - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 8120: 66 3d 25 80 cmp ax,0x8025 - 8124: 0f 84 27 13 00 00 je 9451 - 812a: 66 3d 15 80 cmp ax,0x8015 - 812e: 0f 85 d9 14 00 00 jne 960d - 8134: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 8139: 0f 85 10 19 00 00 jne 9a4f - 813f: 49 8b 0f mov rcx,QWORD PTR [r15] - 8142: 48 8b 02 mov rax,QWORD PTR [rdx] - 8145: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 8149: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 814c: 0f 86 de 1b 00 00 jbe 9d30 - 8152: 89 c0 mov eax,eax - 8154: b9 13 00 00 00 mov ecx,0x13 - 8159: 48 8b 04 c2 mov rax,QWORD PTR [rdx+rax*8] - 815d: 66 89 4d 08 mov WORD PTR [rbp+0x8],cx - 8161: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 8165: e9 1f bb ff ff jmp 3c89 - vmbreak; - 816a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 816f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8174: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8179: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 817d: 48 89 ef mov rdi,rbp - 8180: e8 00 00 00 00 call 8185 - 8185: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8189: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 818e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8195: 00 - 8196: 41 83 e5 0c and r13d,0xc - 819a: e9 ad bb ff ff jmp 3d4c - vmbreak; - 819f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 81a4: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 81a9: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 81ae: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 81b2: 48 89 ef mov rdi,rbp - 81b5: e8 00 00 00 00 call 81ba - 81ba: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 81be: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 81c3: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 81ca: 00 - 81cb: 41 83 e5 0c and r13d,0xc - 81cf: e9 f1 ca ff ff jmp 4cc5 - vmbreak; - 81d4: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 81d9: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 81de: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 81e3: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 81e7: 48 89 ef mov rdi,rbp - 81ea: e8 00 00 00 00 call 81ef - 81ef: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 81f3: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 81f8: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 81ff: 00 - 8200: 41 83 e5 0c and r13d,0xc - 8204: e9 39 cb ff ff jmp 4d42 - vmbreak; - 8209: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 820e: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8213: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8218: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 821c: 48 89 ef mov rdi,rbp - 821f: e8 00 00 00 00 call 8224 - 8224: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8228: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 822d: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8234: 00 - 8235: 41 83 e5 0c and r13d,0xc - 8239: e9 85 cb ff ff jmp 4dc3 - vmbreak; - 823e: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8243: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8248: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 824d: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8251: 48 89 ef mov rdi,rbp - 8254: e8 00 00 00 00 call 8259 - 8259: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 825d: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8262: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8269: 00 - 826a: 41 83 e5 0c and r13d,0xc - 826e: e9 c8 cb ff ff jmp 4e3b - if (RAVI_LIKELY(tonumber(ra, &j))) { setfltvalue(ra, j); } - 8273: 48 8d b4 24 00 01 00 lea rsi,[rsp+0x100] - 827a: 00 - 827b: 48 89 ef mov rdi,rbp - 827e: e8 00 00 00 00 call 8283 - 8283: 85 c0 test eax,eax - 8285: 74 0e je 8295 - 8287: f2 0f 10 84 24 00 01 movsd xmm0,QWORD PTR [rsp+0x100] - 828e: 00 00 - 8290: e9 0e c4 ff ff jmp 46a3 - 8295: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "TOFLT: number expected"); - 829a: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 82a1 - 82a1: 31 c0 xor eax,eax - 82a3: 4c 89 ef mov rdi,r13 - 82a6: e8 00 00 00 00 call 82ab - vmbreak; - 82ab: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 82b0: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 82b5: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 82ba: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 82be: 48 89 ef mov rdi,rbp - 82c1: e8 00 00 00 00 call 82c6 - 82c6: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 82ca: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 82cf: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 82d6: 00 - 82d7: 41 83 e5 0c and r13d,0xc - 82db: e9 56 9f ff ff jmp 2236 - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 82e0: 83 e0 0f and eax,0xf - 82e3: 66 83 f8 05 cmp ax,0x5 - 82e7: 0f 84 53 19 00 00 je 9c40 - 82ed: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 82f2: 48 89 e9 mov rcx,rbp - 82f5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 82fa: 45 31 c0 xor r8d,r8d - 82fd: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8301: 48 89 ef mov rdi,rbp - 8304: e8 00 00 00 00 call 8309 - 8309: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8310: 00 - 8311: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8315: 41 83 e5 0c and r13d,0xc - 8319: e9 bd 9f ff ff jmp 22db - vmbreak; - 831e: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8323: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8328: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 832d: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8331: 48 89 ef mov rdi,rbp - 8334: e8 00 00 00 00 call 8339 - 8339: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 833d: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8342: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8349: 00 - 834a: 41 83 e5 0c and r13d,0xc - 834e: e9 9b 9f ff ff jmp 22ee - vmbreak; - 8353: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8358: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 835d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8362: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8366: 48 89 ef mov rdi,rbp - 8369: e8 00 00 00 00 call 836e - 836e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8372: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8377: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 837e: 00 - 837f: 41 83 e5 0c and r13d,0xc - 8383: e9 bd ac ff ff jmp 3045 - vmbreak; - 8388: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 838d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8392: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8397: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 839b: 48 89 ef mov rdi,rbp - 839e: e8 00 00 00 00 call 83a3 - 83a3: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 83a7: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 83ac: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 83b3: 00 - 83b4: 41 83 e5 0c and r13d,0xc - 83b8: e9 ae e9 ff ff jmp 6d6b - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 83bd: 66 3d 25 80 cmp ax,0x8025 - 83c1: 0f 84 0f 11 00 00 je 94d6 - 83c7: 66 3d 15 80 cmp ax,0x8015 - 83cb: 0f 85 a8 12 00 00 jne 9679 - 83d1: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 83d6: 0f 85 4a 18 00 00 jne 9c26 - 83dc: 49 8b 0f mov rcx,QWORD PTR [r15] - 83df: 48 8b 02 mov rax,QWORD PTR [rdx] - 83e2: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 83e6: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 83e9: 0f 86 41 19 00 00 jbe 9d30 - 83ef: 89 c0 mov eax,eax - 83f1: bf 13 00 00 00 mov edi,0x13 - 83f6: 48 8b 04 c2 mov rax,QWORD PTR [rdx+rax*8] - 83fa: 66 89 7d 08 mov WORD PTR [rbp+0x8],di - 83fe: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 8402: e9 32 b9 ff ff jmp 3d39 - vmbreak; - 8407: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 840c: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8411: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8416: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 841a: 48 89 ef mov rdi,rbp - 841d: e8 00 00 00 00 call 8422 - 8422: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8426: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 842b: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8432: 00 - 8433: 41 83 e5 0c and r13d,0xc - 8437: e9 82 bb ff ff jmp 3fbe - vmbreak; - 843c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8441: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8446: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 844b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 844f: 48 89 ef mov rdi,rbp - 8452: e8 00 00 00 00 call 8457 - 8457: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 845b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8460: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8467: 00 - 8468: 41 83 e5 0c and r13d,0xc - 846c: e9 f7 bb ff ff jmp 4068 - vmbreak; - 8471: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8476: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 847b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8480: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8484: 48 89 ef mov rdi,rbp - 8487: e8 00 00 00 00 call 848c - 848c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8490: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8495: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 849c: 00 - 849d: 41 83 e5 0c and r13d,0xc - 84a1: e9 6c bc ff ff jmp 4112 - vmbreak; - 84a6: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 84ab: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 84b0: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 84b5: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 84b9: 48 89 ef mov rdi,rbp - 84bc: e8 00 00 00 00 call 84c1 - 84c1: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 84c5: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 84ca: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 84d1: 00 - 84d2: 41 83 e5 0c and r13d,0xc - 84d6: e9 e3 bc ff ff jmp 41be - vmbreak; - 84db: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 84e0: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 84e5: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 84ea: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 84ee: 48 89 ef mov rdi,rbp - 84f1: e8 00 00 00 00 call 84f6 - 84f6: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 84fa: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 84ff: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8506: 00 - 8507: 41 83 e5 0c and r13d,0xc - 850b: e9 fe e7 ff ff jmp 6d0e - vmbreak; - 8510: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8515: 48 89 f5 mov rbp,rsi - 8518: 48 89 f7 mov rdi,rsi - 851b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8520: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8524: e8 00 00 00 00 call 8529 - 8529: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 852d: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8532: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8539: 00 - 853a: 41 83 e5 0c and r13d,0xc - 853e: e9 53 b4 ff ff jmp 3996 - vmbreak; - 8543: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8548: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 854d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8552: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8556: 48 89 ef mov rdi,rbp - 8559: e8 00 00 00 00 call 855e - 855e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8562: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8567: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 856e: 00 - 856f: 41 83 e5 0c and r13d,0xc - 8573: e9 cc cf ff ff jmp 5544 - vmbreak; - 8578: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 857d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8582: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8587: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 858b: 48 89 ef mov rdi,rbp - 858e: e8 00 00 00 00 call 8593 - 8593: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8597: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 859c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 85a3: 00 - 85a4: 41 83 e5 0c and r13d,0xc - 85a8: e9 12 d0 ff ff jmp 55bf - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 85ad: 83 e0 0f and eax,0xf - 85b0: 66 83 f8 05 cmp ax,0x5 - 85b4: 0f 84 d0 15 00 00 je 9b8a - 85ba: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 85bf: 48 89 e9 mov rcx,rbp - 85c2: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 85c7: 45 31 c0 xor r8d,r8d - 85ca: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 85ce: 48 89 ef mov rdi,rbp - 85d1: e8 00 00 00 00 call 85d6 - 85d6: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 85dd: 00 - 85de: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 85e2: 41 83 e5 0c and r13d,0xc - 85e6: e9 88 bc ff ff jmp 4273 - vmbreak; - 85eb: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 85f0: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 85f5: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 85fa: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 85fe: 48 89 ef mov rdi,rbp - 8601: e8 00 00 00 00 call 8606 - 8606: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 860a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 860f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8616: 00 - 8617: 41 83 e5 0c and r13d,0xc - 861b: e9 0d c9 ff ff jmp 4f2d - vmbreak; - 8620: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8625: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 862a: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 862f: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8633: 48 89 ef mov rdi,rbp - 8636: e8 00 00 00 00 call 863b - 863b: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 863f: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8644: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 864b: 00 - 864c: 41 83 e5 0c and r13d,0xc - 8650: e9 52 c9 ff ff jmp 4fa7 - vmbreak; - 8655: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 865a: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 865f: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8664: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8668: 48 89 ef mov rdi,rbp - 866b: e8 00 00 00 00 call 8670 - 8670: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8674: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8679: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8680: 00 - 8681: 41 83 e5 0c and r13d,0xc - 8685: e9 e3 c3 ff ff jmp 4a6d - vmbreak; - 868a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 868f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8694: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8699: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 869d: 48 89 ef mov rdi,rbp - 86a0: e8 00 00 00 00 call 86a5 - 86a5: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 86a9: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 86ae: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 86b5: 00 - 86b6: 41 83 e5 0c and r13d,0xc - 86ba: e9 03 a2 ff ff jmp 28c2 - vmbreak; - 86bf: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 86c4: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 86c9: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 86ce: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 86d2: 48 89 ef mov rdi,rbp - 86d5: e8 00 00 00 00 call 86da - 86da: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 86de: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 86e3: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 86ea: 00 - 86eb: 41 83 e5 0c and r13d,0xc - 86ef: e9 ea ab ff ff jmp 32de - vmbreak; - 86f4: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 86f9: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 86fe: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8703: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8707: 48 89 ef mov rdi,rbp - 870a: e8 00 00 00 00 call 870f - 870f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8713: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8718: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 871f: 00 - 8720: 41 83 e5 0c and r13d,0xc - 8724: e9 23 ac ff ff jmp 334c - if (RAVI_LIKELY(tointeger(ra, &j))) { setivalue(ra, j); } - 8729: 31 d2 xor edx,edx - 872b: 48 8d b4 24 f8 00 00 lea rsi,[rsp+0xf8] - 8732: 00 - 8733: 48 89 ef mov rdi,rbp - 8736: e8 00 00 00 00 call 873b - 873b: 85 c0 test eax,eax - 873d: 74 0d je 874c - 873f: 48 8b 84 24 f8 00 00 mov rax,QWORD PTR [rsp+0xf8] - 8746: 00 - 8747: e9 aa bf ff ff jmp 46f6 - 874c: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "TOINT: integer expected"); - 8751: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 8758 - 8758: 31 c0 xor eax,eax - 875a: 4c 89 ef mov rdi,r13 - 875d: e8 00 00 00 00 call 8762 - if (RAVI_LIKELY(tonumber(rb, &j))) { setfltvalue(ra, j); } - 8762: 48 8d b4 24 f0 00 00 lea rsi,[rsp+0xf0] - 8769: 00 - 876a: e8 00 00 00 00 call 876f - 876f: 85 c0 test eax,eax - 8771: 74 0e je 8781 - 8773: f2 0f 10 84 24 f0 00 movsd xmm0,QWORD PTR [rsp+0xf0] - 877a: 00 00 - 877c: e9 de c0 ff ff jmp 485f - 8781: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "MOVEF: number expected"); - 8786: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 878d - 878d: 31 c0 xor eax,eax - 878f: 4c 89 ef mov rdi,r13 - 8792: e8 00 00 00 00 call 8797 - vmbreak; - 8797: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 879c: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 87a1: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 87a6: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 87aa: 48 89 ef mov rdi,rbp - 87ad: e8 00 00 00 00 call 87b2 - 87b2: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 87b6: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 87bb: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 87c2: 00 - 87c3: 41 83 e5 0c and r13d,0xc - 87c7: e9 7d bd ff ff jmp 4549 - vmbreak; - 87cc: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 87d1: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 87d6: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 87db: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 87df: 48 89 ef mov rdi,rbp - 87e2: e8 00 00 00 00 call 87e7 - 87e7: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 87eb: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 87f0: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 87f7: 00 - 87f8: 41 83 e5 0c and r13d,0xc - 87fc: e9 cd ca ff ff jmp 52ce - vmbreak; - 8801: 48 8b 5c 24 18 mov rbx,QWORD PTR [rsp+0x18] - 8806: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 880b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8810: 4c 89 7b 28 mov QWORD PTR [rbx+0x28],r15 - 8814: 48 89 ef mov rdi,rbp - 8817: e8 00 00 00 00 call 881c - 881c: 4c 8b 63 20 mov r12,QWORD PTR [rbx+0x20] - 8820: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8825: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 882c: 00 - 882d: 41 83 e5 0c and r13d,0xc - 8831: e9 a2 bc ff ff jmp 44d8 - vmbreak; - 8836: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 883b: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8840: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8845: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8849: 48 89 ef mov rdi,rbp - 884c: e8 00 00 00 00 call 8851 - 8851: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8855: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 885a: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8861: 00 - 8862: 41 83 e5 0c and r13d,0xc - 8866: e9 94 a3 ff ff jmp 2bff - vmbreak; - 886b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8870: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8875: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 887a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 887e: 48 89 ef mov rdi,rbp - 8881: e8 00 00 00 00 call 8886 - 8886: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 888a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 888f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8896: 00 - 8897: 41 83 e5 0c and r13d,0xc - 889b: e9 64 98 ff ff jmp 2104 - vmbreak; - 88a0: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 88a5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 88aa: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 88af: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 88b3: 48 89 ef mov rdi,rbp - 88b6: e8 00 00 00 00 call 88bb - 88bb: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 88bf: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 88c4: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 88cb: 00 - 88cc: 41 83 e5 0c and r13d,0xc - 88d0: e9 dd 9c ff ff jmp 25b2 - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 88d5: 83 e0 0f and eax,0xf - 88d8: 66 83 f8 05 cmp ax,0x5 - 88dc: 0f 84 d2 12 00 00 je 9bb4 - 88e2: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 88e7: 48 89 e9 mov rcx,rbp - 88ea: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 88ef: 45 31 c0 xor r8d,r8d - 88f2: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 88f6: 48 89 ef mov rdi,rbp - 88f9: e8 00 00 00 00 call 88fe - 88fe: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8905: 00 - 8906: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 890a: 41 83 e5 0c and r13d,0xc - 890e: e9 10 99 ff ff jmp 2223 - vmbreak; - 8913: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8918: 48 89 cd mov rbp,rcx - 891b: 48 89 cf mov rdi,rcx - 891e: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8923: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8927: e8 00 00 00 00 call 892c - 892c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8930: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8935: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 893c: 00 - 893d: 41 83 e5 0c and r13d,0xc - 8941: e9 55 a8 ff ff jmp 319b - vmbreak; - 8946: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 894b: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8950: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8955: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8959: 48 89 ef mov rdi,rbp - 895c: e8 00 00 00 00 call 8961 - 8961: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8965: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 896a: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8971: 00 - 8972: 41 83 e5 0c and r13d,0xc - 8976: e9 c8 ba ff ff jmp 4443 - vmbreak; - 897b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8980: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8985: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 898a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 898e: 48 89 ef mov rdi,rbp - 8991: e8 00 00 00 00 call 8996 - 8996: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 899a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 899f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 89a6: 00 - 89a7: 41 83 e5 0c and r13d,0xc - 89ab: e9 e0 ba ff ff jmp 4490 - vmbreak; - 89b0: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 89b5: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 89ba: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 89bf: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 89c3: 48 89 ef mov rdi,rbp - 89c6: e8 00 00 00 00 call 89cb - 89cb: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 89cf: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 89d4: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 89db: 00 - 89dc: 41 83 e5 0c and r13d,0xc - 89e0: e9 84 c8 ff ff jmp 5269 - if (tointeger(ra, &ia)) { - 89e5: 31 d2 xor edx,edx - 89e7: 48 8d b4 24 d8 00 00 lea rsi,[rsp+0xd8] - 89ee: 00 - 89ef: 48 89 ef mov rdi,rbp - 89f2: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 89f7: e8 00 00 00 00 call 89fc - 89fc: 85 c0 test eax,eax - 89fe: 0f 84 9a 11 00 00 je 9b9e - 8a04: 48 8b 94 24 d8 00 00 mov rdx,QWORD PTR [rsp+0xd8] - 8a0b: 00 - 8a0c: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8a11: e9 85 c8 ff ff jmp 529b - if (RAVI_LIKELY(tointeger(rb, &j))) { setivalue(ra, j); } - 8a16: 31 d2 xor edx,edx - 8a18: 48 8d b4 24 e8 00 00 lea rsi,[rsp+0xe8] - 8a1f: 00 - 8a20: e8 00 00 00 00 call 8a25 - 8a25: 85 c0 test eax,eax - 8a27: 74 0d je 8a36 - 8a29: 48 8b 84 24 e8 00 00 mov rax,QWORD PTR [rsp+0xe8] - 8a30: 00 - 8a31: e9 8b be ff ff jmp 48c1 - 8a36: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "MOVEI: integer expected"); - 8a3b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 8a42 - 8a42: 31 c0 xor eax,eax - 8a44: 4c 89 ef mov rdi,r13 - 8a47: e8 00 00 00 00 call 8a4c - vmbreak; - 8a4c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8a51: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8a56: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8a5b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8a5f: 48 89 ef mov rdi,rbp - 8a62: e8 00 00 00 00 call 8a67 - 8a67: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8a6b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8a70: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8a77: 00 - 8a78: 41 83 e5 0c and r13d,0xc - 8a7c: e9 75 c5 ff ff jmp 4ff6 - vmbreak; - 8a81: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8a86: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8a8b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8a90: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8a94: 48 89 ef mov rdi,rbp - 8a97: e8 00 00 00 00 call 8a9c - 8a9c: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8aa0: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8aa5: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8aac: 00 - 8aad: 41 83 e5 0c and r13d,0xc - 8ab1: e9 97 c5 ff ff jmp 504d - vmbreak; - 8ab6: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8abb: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8ac0: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8ac5: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8ac9: 48 89 ef mov rdi,rbp - 8acc: e8 00 00 00 00 call 8ad1 - 8ad1: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8ad5: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8ada: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8ae1: 00 - 8ae2: 41 83 e5 0c and r13d,0xc - 8ae6: e9 16 c7 ff ff jmp 5201 - if (tonumber(ra, &na)) { - 8aeb: 48 8d b4 24 e0 00 00 lea rsi,[rsp+0xe0] - 8af2: 00 - 8af3: 48 89 ef mov rdi,rbp - 8af6: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8afb: e8 00 00 00 00 call 8b00 - 8b00: 85 c0 test eax,eax - 8b02: 0f 84 10 10 00 00 je 9b18 - 8b08: f2 0f 10 84 24 e0 00 movsd xmm0,QWORD PTR [rsp+0xe0] - 8b0f: 00 00 - 8b11: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8b16: e9 1a c7 ff ff jmp 5235 - vmbreak; - 8b1b: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8b20: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8b25: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8b2a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8b2e: 48 89 ef mov rdi,rbp - 8b31: e8 00 00 00 00 call 8b36 - 8b36: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8b3a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8b3f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8b46: 00 - 8b47: 41 83 e5 0c and r13d,0xc - 8b4b: e9 56 b2 ff ff jmp 3da6 - vmbreak; - 8b50: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8b55: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8b5a: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8b5f: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8b63: 48 89 ef mov rdi,rbp - 8b66: e8 00 00 00 00 call 8b6b - 8b6b: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8b6f: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8b74: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8b7b: 00 - 8b7c: 41 83 e5 0c and r13d,0xc - 8b80: e9 1b a0 ff ff jmp 2ba0 - lua_Number step = fltvalue(ra + 2); - 8b85: f2 0f 10 55 20 movsd xmm2,QWORD PTR [rbp+0x20] - if (luai_numlt(0, step) ? luai_numle(idx, limit) - 8b8a: 66 0f 2f 15 00 00 00 comisd xmm2,QWORD PTR [rip+0x0] # 8b92 - 8b91: 00 - lua_Number idx = luai_numadd(L, fltvalue(ra), step); /* inc. index */ - 8b92: f2 0f 10 45 00 movsd xmm0,QWORD PTR [rbp+0x0] - lua_Number limit = fltvalue(ra + 1); - 8b97: f2 0f 10 4d 10 movsd xmm1,QWORD PTR [rbp+0x10] - lua_Number idx = luai_numadd(L, fltvalue(ra), step); /* inc. index */ - 8b9c: f2 0f 58 c2 addsd xmm0,xmm2 - if (luai_numlt(0, step) ? luai_numle(idx, limit) - 8ba0: 0f 86 23 08 00 00 jbe 93c9 - 8ba6: 66 0f 2f c8 comisd xmm1,xmm0 - 8baa: 0f 93 c2 setae dl - 8bad: 48 89 d8 mov rax,rbx - 8bb0: 84 d2 test dl,dl - 8bb2: 0f 84 37 a0 ff ff je 2bef - pc += GETARG_sBx(i); /* jump back */ - 8bb8: 44 89 c2 mov edx,r8d - setfltvalue(ra + 3, idx); /* ...and external index */ - 8bbb: b9 03 00 00 00 mov ecx,0x3 - chgfltvalue(ra, idx); /* update internal index... */ - 8bc0: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - pc += GETARG_sBx(i); /* jump back */ - 8bc5: c1 ea 10 shr edx,0x10 - setfltvalue(ra + 3, idx); /* ...and external index */ - 8bc8: f2 0f 11 45 30 movsd QWORD PTR [rbp+0x30],xmm0 - pc += GETARG_sBx(i); /* jump back */ - 8bcd: 48 8d 84 93 00 00 fe lea rax,[rbx+rdx*4-0x20000] - 8bd4: ff - setfltvalue(ra + 3, idx); /* ...and external index */ - 8bd5: 66 89 4d 38 mov WORD PTR [rbp+0x38],cx - 8bd9: e9 11 a0 ff ff jmp 2bef - vmbreak; - 8bde: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8be3: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8be8: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8bed: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8bf1: 48 89 ef mov rdi,rbp - 8bf4: e8 00 00 00 00 call 8bf9 - 8bf9: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8bfd: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8c02: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8c09: 00 - 8c0a: 41 83 e5 0c and r13d,0xc - 8c0e: e9 7b c4 ff ff jmp 508e - vmbreak; - 8c13: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8c18: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8c1d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8c22: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8c26: 48 89 ef mov rdi,rbp - 8c29: e8 00 00 00 00 call 8c2e - 8c2e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8c32: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8c37: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8c3e: 00 - 8c3f: 41 83 e5 0c and r13d,0xc - 8c43: e9 87 c4 ff ff jmp 50cf - vmbreak; - 8c48: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8c4d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8c52: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8c57: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8c5b: 48 89 ef mov rdi,rbp - 8c5e: e8 00 00 00 00 call 8c63 - 8c63: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8c67: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8c6c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8c73: 00 - 8c74: 41 83 e5 0c and r13d,0xc - 8c78: e9 61 9b ff ff jmp 27de - vmbreak; - 8c7d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8c82: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8c87: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8c8c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8c90: 48 89 ef mov rdi,rbp - 8c93: e8 00 00 00 00 call 8c98 - 8c98: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8c9c: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8ca1: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8ca8: 00 - 8ca9: 41 83 e5 0c and r13d,0xc - 8cad: e9 83 c4 ff ff jmp 5135 - vmbreak; - 8cb2: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8cb7: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8cbc: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8cc1: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8cc5: 48 89 ef mov rdi,rbp - 8cc8: e8 00 00 00 00 call 8ccd - 8ccd: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8cd1: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8cd6: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8cdd: 00 - 8cde: 41 83 e5 0c and r13d,0xc - 8ce2: e9 b4 c4 ff ff jmp 519b - vmbreak; - 8ce7: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8cec: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8cf1: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8cf6: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8cfa: 48 89 ef mov rdi,rbp - 8cfd: e8 00 00 00 00 call 8d02 - 8d02: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8d06: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8d0b: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8d12: 00 - 8d13: 41 83 e5 0c and r13d,0xc - 8d17: e9 2b 9c ff ff jmp 2947 - vmbreak; - 8d1c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8d21: 48 89 c5 mov rbp,rax - 8d24: 48 89 c7 mov rdi,rax - 8d27: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8d2c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8d30: e8 00 00 00 00 call 8d35 - 8d35: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8d39: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8d3e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8d45: 00 - 8d46: 41 83 e5 0c and r13d,0xc - 8d4a: e9 4d a3 ff ff jmp 309c - vmbreak; - 8d4f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8d54: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8d59: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8d5e: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8d62: 48 89 ef mov rdi,rbp - 8d65: e8 00 00 00 00 call 8d6a - 8d6a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8d6e: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8d73: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8d7a: 00 - 8d7b: 41 83 e5 0c and r13d,0xc - 8d7f: e9 d3 a4 ff ff jmp 3257 - vmbreak; - 8d84: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8d89: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8d8e: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8d93: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8d97: 48 89 ef mov rdi,rbp - 8d9a: e8 00 00 00 00 call 8d9f - 8d9f: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8da3: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8da8: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8daf: 00 - 8db0: 41 83 e5 0c and r13d,0xc - 8db4: e9 42 a4 ff ff jmp 31fb - vmbreak; - 8db9: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8dbe: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8dc3: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8dc8: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8dcc: 48 89 ef mov rdi,rbp - 8dcf: e8 00 00 00 00 call 8dd4 - 8dd4: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8dd8: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8ddd: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8de4: 00 - 8de5: 41 83 e5 0c and r13d,0xc - 8de9: e9 1f b5 ff ff jmp 430d - vmbreak; - 8dee: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8df3: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8df8: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8dfd: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8e01: 48 89 ef mov rdi,rbp - 8e04: e8 00 00 00 00 call 8e09 - 8e09: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8e0d: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8e12: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8e19: 00 - 8e1a: 41 83 e5 0c and r13d,0xc - 8e1e: e9 3b b5 ff ff jmp 435e - vmbreak; - 8e23: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8e28: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8e2d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8e32: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8e36: 48 89 ef mov rdi,rbp - 8e39: e8 00 00 00 00 call 8e3e - 8e3e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8e42: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8e47: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8e4e: 00 - 8e4f: 41 83 e5 0c and r13d,0xc - 8e53: e9 51 b5 ff ff jmp 43a9 - vmbreak; - 8e58: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8e5d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8e62: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8e67: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8e6b: 48 89 ef mov rdi,rbp - 8e6e: e8 00 00 00 00 call 8e73 - 8e73: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8e77: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8e7c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8e83: 00 - 8e84: 41 83 e5 0c and r13d,0xc - 8e88: e9 6a b5 ff ff jmp 43f7 - vmbreak; - 8e8d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8e92: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8e97: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8e9c: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8ea0: 48 89 ef mov rdi,rbp - 8ea3: e8 00 00 00 00 call 8ea8 - 8ea8: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8eac: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8eb1: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8eb8: 00 - 8eb9: 41 83 e5 0c and r13d,0xc - 8ebd: e9 5c b9 ff ff jmp 481e - if (!tonumber(plimit, &nlimit)) - 8ec2: 4c 89 cf mov rdi,r9 - 8ec5: 48 8d b4 24 c8 00 00 lea rsi,[rsp+0xc8] - 8ecc: 00 - 8ecd: 44 89 44 24 30 mov DWORD PTR [rsp+0x30],r8d - 8ed2: 4c 89 4c 24 28 mov QWORD PTR [rsp+0x28],r9 - 8ed7: e8 00 00 00 00 call 8edc - 8edc: 4c 8b 4c 24 28 mov r9,QWORD PTR [rsp+0x28] - 8ee1: 44 8b 44 24 30 mov r8d,DWORD PTR [rsp+0x30] - 8ee6: 85 c0 test eax,eax - 8ee8: 0f 84 40 0c 00 00 je 9b2e - 8eee: f2 0f 10 84 24 c8 00 movsd xmm0,QWORD PTR [rsp+0xc8] - 8ef5: 00 00 - 8ef7: e9 29 9c ff ff jmp 2b25 - if (!tonumber(pstep, &nstep)) - 8efc: 48 8d b4 24 d0 00 00 lea rsi,[rsp+0xd0] - 8f03: 00 - 8f04: 4c 89 ff mov rdi,r15 - 8f07: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8f0c: e8 00 00 00 00 call 8f11 - 8f11: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8f16: 85 c0 test eax,eax - 8f18: 0f 84 b8 0b 00 00 je 9ad6 - 8f1e: f2 0f 10 8c 24 d0 00 movsd xmm1,QWORD PTR [rsp+0xd0] - 8f25: 00 00 - 8f27: e9 23 9c ff ff jmp 2b4f - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 8f2c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8f31: 48 89 e9 mov rcx,rbp - 8f34: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8f39: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8f3d: 48 89 ef mov rdi,rbp - 8f40: e8 00 00 00 00 call 8f45 - 8f45: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8f4c: 00 - 8f4d: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8f51: 41 83 e5 0c and r13d,0xc - 8f55: e9 c9 92 ff ff jmp 2223 - vmbreak; - 8f5a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8f5f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8f64: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8f69: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8f6d: 48 89 ef mov rdi,rbp - 8f70: e8 00 00 00 00 call 8f75 - 8f75: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8f79: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8f7e: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8f85: 00 - 8f86: 41 83 e5 0c and r13d,0xc - 8f8a: e9 f5 b5 ff ff jmp 4584 - vmbreak; - 8f8f: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8f94: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8f99: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8f9e: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8fa2: 48 89 ef mov rdi,rbp - 8fa5: e8 00 00 00 00 call 8faa - 8faa: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8fae: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8fb3: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8fba: 00 - 8fbb: 41 83 e5 0c and r13d,0xc - 8fbf: e9 37 b6 ff ff jmp 45fb - vmbreak; - 8fc4: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8fc9: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 8fce: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 8fd3: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 8fd7: 48 89 ef mov rdi,rbp - 8fda: e8 00 00 00 00 call 8fdf - 8fdf: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 8fe3: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 8fe8: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 8fef: 00 - 8ff0: 41 83 e5 0c and r13d,0xc - 8ff4: e9 3c b6 ff ff jmp 4635 - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 8ff9: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 8ffe: 48 89 e9 mov rcx,rbp - 9001: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 9006: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 900a: 48 89 ef mov rdi,rbp - 900d: e8 00 00 00 00 call 9012 - 9012: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9019: 00 - 901a: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 901e: 41 83 e5 0c and r13d,0xc - 9022: e9 b4 92 ff ff jmp 22db - vmbreak; - 9027: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 902c: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 9031: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 9036: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 903a: 48 89 ef mov rdi,rbp - 903d: e8 00 00 00 00 call 9042 - 9042: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 9046: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 904b: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9052: 00 - 9053: 41 83 e5 0c and r13d,0xc - 9057: e9 12 b7 ff ff jmp 476e - vmbreak; - 905c: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9061: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 9066: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 906b: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 906f: 48 89 ef mov rdi,rbp - 9072: e8 00 00 00 00 call 9077 - 9077: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 907b: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 9080: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9087: 00 - 9088: 41 83 e5 0c and r13d,0xc - 908c: e9 33 b6 ff ff jmp 46c4 - vmbreak; - 9091: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9096: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 909b: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 90a0: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 90a4: 48 89 ef mov rdi,rbp - 90a7: e8 00 00 00 00 call 90ac - 90ac: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 90b0: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 90b5: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 90bc: 00 - 90bd: 41 83 e5 0c and r13d,0xc - 90c1: e9 bc b7 ff ff jmp 4882 - vmbreak; - 90c6: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 90cb: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 90d0: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 90d5: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 90d9: 48 89 ef mov rdi,rbp - 90dc: e8 00 00 00 00 call 90e1 - 90e1: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 90e5: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 90ea: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 90f1: 00 - 90f2: 41 83 e5 0c and r13d,0xc - 90f6: e9 cb b6 ff ff jmp 47c6 - vmbreak; - 90fb: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9100: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 9105: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 910a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 910e: 48 89 ef mov rdi,rbp - 9111: e8 00 00 00 00 call 9116 - 9116: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 911a: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 911f: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9126: 00 - 9127: 41 83 e5 0c and r13d,0xc - 912b: e9 8f b4 ff ff jmp 45bf - vmbreak; - 9130: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9135: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 913a: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 913f: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 9143: 48 89 ef mov rdi,rbp - 9146: e8 00 00 00 00 call 914b - 914b: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 914f: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 9154: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 915b: 00 - 915c: 41 83 e5 0c and r13d,0xc - 9160: e9 89 9b ff ff jmp 2cee - vmbreak; - 9165: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 916a: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 916f: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 9174: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 9178: 48 89 ef mov rdi,rbp - 917b: e8 00 00 00 00 call 9180 - 9180: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 9184: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 9189: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9190: 00 - 9191: 41 83 e5 0c and r13d,0xc - 9195: e9 d5 b4 ff ff jmp 466f - vmbreak; - 919a: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 919f: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 91a4: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 91a9: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 91ad: 48 89 ef mov rdi,rbp - 91b0: e8 00 00 00 00 call 91b5 - 91b5: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 91b9: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 91be: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 91c5: 00 - 91c6: 41 83 e5 0c and r13d,0xc - 91ca: e9 b3 9b ff ff jmp 2d82 - if (!tonumber(init, &ninit)) - 91cf: 48 8d b4 24 c0 00 00 lea rsi,[rsp+0xc0] - 91d6: 00 - 91d7: 48 89 ef mov rdi,rbp - 91da: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 91df: e8 00 00 00 00 call 91e4 - 91e4: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 91e9: 85 c0 test eax,eax - 91eb: 0f 84 d1 08 00 00 je 9ac2 - 91f1: f2 0f 10 84 24 c0 00 movsd xmm0,QWORD PTR [rsp+0xc0] - 91f8: 00 00 - 91fa: f2 0f 10 8c 24 d0 00 movsd xmm1,QWORD PTR [rsp+0xd0] - 9201: 00 00 - 9203: e9 67 99 ff ff jmp 2b6f - if (RAVI_LIKELY((0 < step)) ? (idx <= limit) : (limit <= idx)) { - 9208: 48 39 ca cmp rdx,rcx - 920b: 0f 9d c1 setge cl - 920e: e9 d1 99 ff ff jmp 2be4 - vmbreak; - 9213: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9218: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 921d: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 9222: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 9226: 48 89 ef mov rdi,rbp - 9229: e8 00 00 00 00 call 922e - 922e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 9232: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 9237: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 923e: 00 - 923f: 41 83 e5 0c and r13d,0xc - 9243: e9 9b b6 ff ff jmp 48e3 - vmbreak; - 9248: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 924d: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 9252: 44 89 44 24 28 mov DWORD PTR [rsp+0x28],r8d - 9257: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 925b: 48 89 ef mov rdi,rbp - 925e: e8 00 00 00 00 call 9263 - 9263: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 9267: 44 8b 44 24 28 mov r8d,DWORD PTR [rsp+0x28] - 926c: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 9273: 00 - 9274: 41 83 e5 0c and r13d,0xc - 9278: e9 99 b4 ff ff jmp 4716 - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 927d: 4c 8b 7c 24 18 mov r15,QWORD PTR [rsp+0x18] - 9282: 48 89 e9 mov rcx,rbp - 9285: 48 8b 6c 24 08 mov rbp,QWORD PTR [rsp+0x8] - 928a: 49 89 5f 28 mov QWORD PTR [r15+0x28],rbx - 928e: 48 89 ef mov rdi,rbp - 9291: e8 00 00 00 00 call 9296 - 9296: 44 0f b6 ad c8 00 00 movzx r13d,BYTE PTR [rbp+0xc8] - 929d: 00 - 929e: 4d 8b 67 20 mov r12,QWORD PTR [r15+0x20] - 92a2: 41 83 e5 0c and r13d,0xc - 92a6: e9 c8 af ff ff jmp 4273 - GETTABLE_INLINE_PROTECTED_I(L, rb, rc, ra); - 92ab: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 92b0: 4c 89 fe mov rsi,r15 - 92b3: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 92b8: 48 89 e9 mov rcx,rbp - 92bb: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 92c0: 4c 89 ff mov rdi,r15 - 92c3: e8 00 00 00 00 call 92c8 - 92c8: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 92cf: 00 - 92d0: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 92d5: 41 83 e5 0c and r13d,0xc - 92d9: e9 84 94 ff ff jmp 2762 - 92de: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - 92e3: e8 00 00 00 00 call 92e8 - 92e8: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 92ed: 49 89 c0 mov r8,rax - 92f0: e9 54 94 ff ff jmp 2749 - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 92f5: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 92fa: 4c 89 fe mov rsi,r15 - 92fd: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 9302: 49 89 c0 mov r8,rax - 9305: 48 89 e9 mov rcx,rbp - 9308: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 930d: 4c 89 ff mov rdi,r15 - 9310: e8 00 00 00 00 call 9315 - 9315: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 931c: 00 - 931d: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 9322: 41 83 e5 0c and r13d,0xc - 9326: e9 0e aa ff ff jmp 3d39 - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 932b: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 9330: 4c 89 fe mov rsi,r15 - 9333: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 9338: 49 89 c0 mov r8,rax - 933b: 48 89 e9 mov rcx,rbp - 933e: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 9343: 4c 89 ff mov rdi,r15 - 9346: e8 00 00 00 00 call 934b - 934b: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 9352: 00 - 9353: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 9358: 41 83 e5 0c and r13d,0xc - 935c: e9 28 a9 ff ff jmp 3c89 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9361: 48 89 d7 mov rdi,rdx - 9364: 48 89 4c 24 30 mov QWORD PTR [rsp+0x30],rcx - 9369: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - 936e: e8 00 00 00 00 call 9373 - 9373: 48 8b 4c 24 30 mov rcx,QWORD PTR [rsp+0x30] - 9378: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 937d: 49 89 c0 mov r8,rax - 9380: e9 93 a6 ff ff jmp 3a18 - setivalue(ra, luaV_div(L, ib, ic)); - 9385: 48 8b 12 mov rdx,QWORD PTR [rdx] - 9388: 48 8b 36 mov rsi,QWORD PTR [rsi] - 938b: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9390: e8 00 00 00 00 call 9395 - 9395: ba 13 00 00 00 mov edx,0x13 - 939a: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 939e: 66 89 55 08 mov WORD PTR [rbp+0x8],dx - if (ttisinteger(rb) && ttisinteger(rc)) { - 93a2: e9 b1 d9 ff ff jmp 6d58 - setivalue(ra, luaV_mod(L, ib, ic)); - 93a7: 48 8b 36 mov rsi,QWORD PTR [rsi] - 93aa: 48 8b 12 mov rdx,QWORD PTR [rdx] - 93ad: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 93b2: e8 00 00 00 00 call 93b7 - 93b7: be 13 00 00 00 mov esi,0x13 - 93bc: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - 93c0: 66 89 75 08 mov WORD PTR [rbp+0x8],si - if (ttisinteger(rb) && ttisinteger(rc)) { - 93c4: e9 32 d9 ff ff jmp 6cfb - if (luai_numlt(0, step) ? luai_numle(idx, limit) - 93c9: 66 0f 2f c1 comisd xmm0,xmm1 - 93cd: 0f 93 c2 setae dl - 93d0: e9 d8 f7 ff ff jmp 8bad - GETTABLE_INLINE_PROTECTED_I(L, rb, rc, ra); - 93d5: 49 8b 0f mov rcx,QWORD PTR [r15] - 93d8: 48 8b 02 mov rax,QWORD PTR [rdx] - 93db: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 93df: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 93e2: 0f 86 48 09 00 00 jbe 9d30 - 93e8: 89 c0 mov eax,eax - 93ea: 41 b9 03 00 00 00 mov r9d,0x3 - 93f0: f2 0f 10 04 c2 movsd xmm0,QWORD PTR [rdx+rax*8] - 93f5: 66 44 89 4d 08 mov WORD PTR [rbp+0x8],r9w - 93fa: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 93ff: e9 5e 93 ff ff jmp 2762 - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9404: 66 41 83 7f 08 13 cmp WORD PTR [r15+0x8],0x13 - 940a: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - 940e: 0f 85 97 06 00 00 jne 9aab - 9414: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - 9418: 66 83 f8 03 cmp ax,0x3 - 941c: 0f 84 b1 05 00 00 je 99d3 - 9422: 66 83 f8 13 cmp ax,0x13 - 9426: 0f 85 fa 04 00 00 jne 9926 - 942c: 49 8b 07 mov rax,QWORD PTR [r15] - 942f: 66 0f ef c0 pxor xmm0,xmm0 - 9433: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 9437: f2 48 0f 2a 01 cvtsi2sd xmm0,QWORD PTR [rcx] - 943c: 89 c2 mov edx,eax - 943e: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 9441: 0f 86 3b 06 00 00 jbe 9a82 - 9447: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 944c: e9 b2 a6 ff ff jmp 3b03 - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 9451: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 9456: 0f 85 14 07 00 00 jne 9b70 - 945c: 49 8b 0f mov rcx,QWORD PTR [r15] - 945f: 48 8b 02 mov rax,QWORD PTR [rdx] - 9462: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 9466: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 9469: 0f 86 c1 08 00 00 jbe 9d30 - 946f: 89 c0 mov eax,eax - 9471: be 03 00 00 00 mov esi,0x3 - 9476: f2 0f 10 04 c2 movsd xmm0,QWORD PTR [rdx+rax*8] - 947b: 66 89 75 08 mov WORD PTR [rbp+0x8],si - 947f: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 9484: e9 00 a8 ff ff jmp 3c89 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9489: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - 948e: 4d 8b 3f mov r15,QWORD PTR [r15] - 9491: 0f 85 fd 05 00 00 jne 9a94 - 9497: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - 949b: 66 83 f8 03 cmp ax,0x3 - 949f: 0f 84 ca 04 00 00 je 996f - 94a5: 66 83 f8 13 cmp ax,0x13 - 94a9: 0f 85 35 04 00 00 jne 98e4 - 94af: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 94b3: 66 0f ef c0 pxor xmm0,xmm0 - 94b7: 49 8b 77 38 mov rsi,QWORD PTR [r15+0x38] - 94bb: f2 48 0f 2a 01 cvtsi2sd xmm0,QWORD PTR [rcx] - 94c0: 89 c2 mov edx,eax - 94c2: 41 39 47 40 cmp DWORD PTR [r15+0x40],eax - 94c6: 0f 86 a4 05 00 00 jbe 9a70 - 94cc: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 94d1: e9 08 a7 ff ff jmp 3bde - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 94d6: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - 94db: 0f 85 73 07 00 00 jne 9c54 - 94e1: 49 8b 0f mov rcx,QWORD PTR [r15] - 94e4: 48 8b 02 mov rax,QWORD PTR [rdx] - 94e7: 48 8b 51 38 mov rdx,QWORD PTR [rcx+0x38] - 94eb: 39 41 40 cmp DWORD PTR [rcx+0x40],eax - 94ee: 0f 86 3c 08 00 00 jbe 9d30 - 94f4: 89 c0 mov eax,eax - 94f6: 41 b8 03 00 00 00 mov r8d,0x3 - 94fc: f2 0f 10 04 c2 movsd xmm0,QWORD PTR [rdx+rax*8] - 9501: 66 44 89 45 08 mov WORD PTR [rbp+0x8],r8w - 9506: f2 0f 11 45 00 movsd QWORD PTR [rbp+0x0],xmm0 - 950b: e9 29 a8 ff ff jmp 3d39 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9510: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - 9514: 48 8b 6d 00 mov rbp,QWORD PTR [rbp+0x0] - 9518: 66 83 f8 03 cmp ax,0x3 - 951c: 0f 84 59 03 00 00 je 987b - 9522: 66 83 f8 13 cmp ax,0x13 - 9526: 0f 85 06 03 00 00 jne 9832 - 952c: 49 8b 07 mov rax,QWORD PTR [r15] - 952f: 66 0f ef c0 pxor xmm0,xmm0 - 9533: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 9537: f2 48 0f 2a 01 cvtsi2sd xmm0,QWORD PTR [rcx] - 953c: 89 c2 mov edx,eax - 953e: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 9541: 0f 86 01 06 00 00 jbe 9b48 - 9547: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 954c: e9 ed a4 ff ff jmp 3a3e - 9551: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 9556: e8 00 00 00 00 call 955b - 955b: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 9560: e9 0c a7 ff ff jmp 3c71 - 9565: 48 89 4c 24 28 mov QWORD PTR [rsp+0x28],rcx - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 956a: e8 00 00 00 00 call 956f - 956f: 48 8b 4c 24 28 mov rcx,QWORD PTR [rsp+0x28] - 9574: e9 41 a6 ff ff jmp 3bba - 9579: 48 89 54 24 28 mov QWORD PTR [rsp+0x28],rdx - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 957e: e8 00 00 00 00 call 9583 - 9583: 48 8b 54 24 28 mov rdx,QWORD PTR [rsp+0x28] - 9588: e9 94 a7 ff ff jmp 3d21 - 958d: 48 89 4c 24 28 mov QWORD PTR [rsp+0x28],rcx - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9592: e8 00 00 00 00 call 9597 - 9597: 48 8b 4c 24 28 mov rcx,QWORD PTR [rsp+0x28] - 959c: e9 3e a5 ff ff jmp 3adf - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 95a1: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 95a6: 4c 89 fa mov rdx,r15 - 95a9: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 95ae: 45 31 c0 xor r8d,r8d - 95b1: 48 89 ee mov rsi,rbp - 95b4: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 95b9: 4c 89 ff mov rdi,r15 - 95bc: e8 00 00 00 00 call 95c1 - 95c1: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 95c8: 00 - 95c9: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 95ce: 41 83 e5 0c and r13d,0xc - 95d2: e9 67 a4 ff ff jmp 3a3e - GETTABLE_INLINE_PROTECTED_I(L, rb, rc, ra); - 95d7: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 95dc: 4c 89 fe mov rsi,r15 - 95df: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 95e4: 45 31 c0 xor r8d,r8d - 95e7: 48 89 e9 mov rcx,rbp - 95ea: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 95ef: 4c 89 ff mov rdi,r15 - 95f2: e8 00 00 00 00 call 95f7 - 95f7: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 95fe: 00 - 95ff: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 9604: 41 83 e5 0c and r13d,0xc - 9608: e9 55 91 ff ff jmp 2762 - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 960d: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 9612: 4c 89 fe mov rsi,r15 - 9615: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 961a: 45 31 c0 xor r8d,r8d - 961d: 48 89 e9 mov rcx,rbp - 9620: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 9625: 4c 89 ff mov rdi,r15 - 9628: e8 00 00 00 00 call 962d - 962d: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 9634: 00 - 9635: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 963a: 41 83 e5 0c and r13d,0xc - 963e: e9 46 a6 ff ff jmp 3c89 - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9643: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 9648: 4c 89 fa mov rdx,r15 - 964b: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 9650: 45 31 c0 xor r8d,r8d - 9653: 48 89 ee mov rsi,rbp - 9656: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 965b: 4c 89 ff mov rdi,r15 - 965e: e8 00 00 00 00 call 9663 - 9663: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 966a: 00 - 966b: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 9670: 41 83 e5 0c and r13d,0xc - 9674: e9 8a a4 ff ff jmp 3b03 - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 9679: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 967e: 4c 89 fe mov rsi,r15 - 9681: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 9686: 45 31 c0 xor r8d,r8d - 9689: 48 89 e9 mov rcx,rbp - 968c: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 9691: 4c 89 ff mov rdi,r15 - 9694: e8 00 00 00 00 call 9699 - 9699: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 96a0: 00 - 96a1: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 96a6: 41 83 e5 0c and r13d,0xc - 96aa: e9 8a a6 ff ff jmp 3d39 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 96af: 4c 8b 64 24 18 mov r12,QWORD PTR [rsp+0x18] - 96b4: 4c 89 fe mov rsi,r15 - 96b7: 4c 8b 7c 24 08 mov r15,QWORD PTR [rsp+0x8] - 96bc: 45 31 c0 xor r8d,r8d - 96bf: 48 89 ea mov rdx,rbp - 96c2: 49 89 5c 24 28 mov QWORD PTR [r12+0x28],rbx - 96c7: 4c 89 ff mov rdi,r15 - 96ca: e8 00 00 00 00 call 96cf - 96cf: 45 0f b6 af c8 00 00 movzx r13d,BYTE PTR [r15+0xc8] - 96d6: 00 - 96d7: 4d 8b 64 24 20 mov r12,QWORD PTR [r12+0x20] - 96dc: 41 83 e5 0c and r13d,0xc - 96e0: e9 f9 a4 ff ff jmp 3bde - CallInfo *nci = L->ci; /* called frame */ - 96e5: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); - 96ea: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - CallInfo *nci = L->ci; /* called frame */ - 96ef: 48 8b 6f 20 mov rbp,QWORD PTR [rdi+0x20] - StkId nfunc = nci->func; /* called function */ - 96f3: 4c 8b 6d 00 mov r13,QWORD PTR [rbp+0x0] - CallInfo *oci = nci->previous; /* caller frame */ - 96f7: 48 8b 75 10 mov rsi,QWORD PTR [rbp+0x10] - StkId lim = nci->u.l.base + getproto(nfunc)->numparams; - 96fb: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - 96ff: 49 8b 55 00 mov rdx,QWORD PTR [r13+0x0] - StkId ofunc = oci->func; /* caller function */ - 9703: 4c 8b 26 mov r12,QWORD PTR [rsi] - CallInfo *oci = nci->previous; /* caller frame */ - 9706: 48 89 74 24 18 mov QWORD PTR [rsp+0x18],rsi - StkId lim = nci->u.l.base + getproto(nfunc)->numparams; - 970b: 48 8b 52 18 mov rdx,QWORD PTR [rdx+0x18] - 970f: 0f b6 5a 0a movzx ebx,BYTE PTR [rdx+0xa] - if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); - 9713: 48 8b 51 18 mov rdx,QWORD PTR [rcx+0x18] - 9717: 44 8b 42 20 mov r8d,DWORD PTR [rdx+0x20] - StkId lim = nci->u.l.base + getproto(nfunc)->numparams; - 971b: 48 c1 e3 04 shl rbx,0x4 - 971f: 48 01 c3 add rbx,rax - if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); - 9722: 45 85 c0 test r8d,r8d - 9725: 7e 0d jle 9734 - 9727: 48 8b 76 20 mov rsi,QWORD PTR [rsi+0x20] - 972b: e8 00 00 00 00 call 9730 - 9730: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - 9734: 4c 89 ea mov rdx,r13 - 9737: 49 8d 4c 24 08 lea rcx,[r12+0x8] - for (aux = 0; nfunc + aux < lim; aux++) - 973c: 49 39 dd cmp r13,rbx - 973f: 73 1c jae 975d - setobjs2s(L, ofunc + aux, nfunc + aux); - 9741: 48 8b 32 mov rsi,QWORD PTR [rdx] - 9744: 48 83 c2 10 add rdx,0x10 - 9748: 48 83 c1 10 add rcx,0x10 - 974c: 48 89 71 e8 mov QWORD PTR [rcx-0x18],rsi - 9750: 0f b7 72 f8 movzx esi,WORD PTR [rdx-0x8] - 9754: 66 89 71 f0 mov WORD PTR [rcx-0x10],si - for (aux = 0; nfunc + aux < lim; aux++) - 9758: 48 39 d3 cmp rbx,rdx - 975b: 77 e4 ja 9741 - oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ - 975d: 48 8b 4c 24 18 mov rcx,QWORD PTR [rsp+0x18] - oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ - 9762: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ - 9767: 4c 29 e8 sub rax,r13 - 976a: 4c 01 e0 add rax,r12 - 976d: 48 89 41 20 mov QWORD PTR [rcx+0x20],rax - oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ - 9771: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - 9775: 48 89 44 24 10 mov QWORD PTR [rsp+0x10],rax - 977a: 4c 29 e8 sub rax,r13 - 977d: 4c 01 e0 add rax,r12 - 9780: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax - 9784: 48 89 41 08 mov QWORD PTR [rcx+0x8],rax - oci->u.l.savedpc = nci->u.l.savedpc; - 9788: 48 8b 45 28 mov rax,QWORD PTR [rbp+0x28] - oci->callstatus |= CIST_TAIL; /* function was tail called */ - 978c: 66 83 49 42 20 or WORD PTR [rcx+0x42],0x20 - oci->u.l.savedpc = nci->u.l.savedpc; - 9791: 48 89 41 28 mov QWORD PTR [rcx+0x28],rax - oci->jitstatus = 0; - 9795: c6 41 46 00 mov BYTE PTR [rcx+0x46],0x0 - ci = L->ci = oci; /* remove new frame */ - 9799: 0f b6 97 c8 00 00 00 movzx edx,BYTE PTR [rdi+0xc8] - 97a0: 48 89 4f 20 mov QWORD PTR [rdi+0x20],rcx - goto newframe; /* restart luaV_execute over new Lua function */ - 97a4: e9 90 85 ff ff jmp 1d39 - } - } - } -} - 97a9: 48 8b b4 24 08 01 00 mov rsi,QWORD PTR [rsp+0x108] - 97b0: 00 - 97b1: 64 48 33 34 25 28 00 xor rsi,QWORD PTR fs:0x28 - 97b8: 00 00 - 97ba: 0f 85 4a 04 00 00 jne 9c0a - 97c0: 48 81 c4 18 01 00 00 add rsp,0x118 - 97c7: 5b pop rbx - 97c8: 5d pop rbp - 97c9: 41 5c pop r12 - 97cb: 41 5d pop r13 - 97cd: 41 5e pop r14 - 97cf: 41 5f pop r15 - 97d1: c3 ret - ci = L->ci; - 97d2: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - 97d7: 48 8b 40 20 mov rax,QWORD PTR [rax+0x20] - 97db: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - goto newframe; /* restart luaV_execute over new Lua function */ - 97e0: 48 8b 40 28 mov rax,QWORD PTR [rax+0x28] - 97e4: e9 50 85 ff ff jmp 1d39 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 97e9: 31 d2 xor edx,edx - 97eb: 48 89 cf mov rdi,rcx - 97ee: 48 8d b4 24 c8 00 00 lea rsi,[rsp+0xc8] - 97f5: 00 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 97f6: 48 c7 84 24 c8 00 00 mov QWORD PTR [rsp+0xc8],0x0 - 97fd: 00 00 00 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 9802: e8 00 00 00 00 call 9807 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9807: 85 c0 test eax,eax - 9809: 0f 84 f3 02 00 00 je 9b02 - 980f: 49 8b 07 mov rax,QWORD PTR [r15] - 9812: 48 8b 8c 24 c8 00 00 mov rcx,QWORD PTR [rsp+0xc8] - 9819: 00 - 981a: 89 c2 mov edx,eax - 981c: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 981f: 0f 86 cb 02 00 00 jbe 9af0 - 9825: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 9829: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 982d: e9 0c a2 ff ff jmp 3a3e - 9832: 48 8d b4 24 c8 00 00 lea rsi,[rsp+0xc8] - 9839: 00 - 983a: 48 89 cf mov rdi,rcx - 983d: 48 c7 84 24 c8 00 00 mov QWORD PTR [rsp+0xc8],0x0 - 9844: 00 00 00 00 00 - 9849: e8 00 00 00 00 call 984e - 984e: 85 c0 test eax,eax - 9850: 0f 84 cc 01 00 00 je 9a22 - 9856: f2 0f 10 84 24 c8 00 movsd xmm0,QWORD PTR [rsp+0xc8] - 985d: 00 00 - 985f: 49 8b 07 mov rax,QWORD PTR [r15] - 9862: 89 c2 mov edx,eax - 9864: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 9867: 0f 86 a3 01 00 00 jbe 9a10 - 986d: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 9871: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 9876: e9 c3 a1 ff ff jmp 3a3e - 987b: 49 8b 07 mov rax,QWORD PTR [r15] - 987e: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 9882: 89 c2 mov edx,eax - 9884: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 9887: 0f 86 cb 04 00 00 jbe 9d58 - 988d: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 9891: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 9896: e9 a3 a1 ff ff jmp 3a3e - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 989b: 31 d2 xor edx,edx - 989d: 48 89 cf mov rdi,rcx - 98a0: 48 8d b4 24 c0 00 00 lea rsi,[rsp+0xc0] - 98a7: 00 - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 98a8: 48 c7 84 24 c0 00 00 mov QWORD PTR [rsp+0xc0],0x0 - 98af: 00 00 00 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 98b4: e8 00 00 00 00 call 98b9 - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 98b9: 85 c0 test eax,eax - 98bb: 0f 84 c1 03 00 00 je 9c82 - 98c1: 49 8b 07 mov rax,QWORD PTR [r15] - 98c4: 48 8b 8c 24 c0 00 00 mov rcx,QWORD PTR [rsp+0xc0] - 98cb: 00 - 98cc: 89 c2 mov edx,eax - 98ce: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 98d1: 0f 86 99 03 00 00 jbe 9c70 - 98d7: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 98db: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 98df: e9 1f a2 ff ff jmp 3b03 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 98e4: 48 8d 74 24 58 lea rsi,[rsp+0x58] - 98e9: 48 89 cf mov rdi,rcx - 98ec: 48 c7 44 24 58 00 00 mov QWORD PTR [rsp+0x58],0x0 - 98f3: 00 00 - 98f5: e8 00 00 00 00 call 98fa - 98fa: 85 c0 test eax,eax - 98fc: 0f 84 a6 04 00 00 je 9da8 - 9902: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 9906: f2 0f 10 44 24 58 movsd xmm0,QWORD PTR [rsp+0x58] - 990c: 89 c2 mov edx,eax - 990e: 41 39 47 40 cmp DWORD PTR [r15+0x40],eax - 9912: 0f 86 7e 04 00 00 jbe 9d96 - 9918: 49 8b 47 38 mov rax,QWORD PTR [r15+0x38] - 991c: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 9921: e9 b8 a2 ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9926: 48 8d b4 24 c0 00 00 lea rsi,[rsp+0xc0] - 992d: 00 - 992e: 48 89 cf mov rdi,rcx - 9931: 48 c7 84 24 c0 00 00 mov QWORD PTR [rsp+0xc0],0x0 - 9938: 00 00 00 00 00 - 993d: e8 00 00 00 00 call 9942 - 9942: 85 c0 test eax,eax - 9944: 0f 84 58 03 00 00 je 9ca2 - 994a: f2 0f 10 84 24 c0 00 movsd xmm0,QWORD PTR [rsp+0xc0] - 9951: 00 00 - 9953: 49 8b 07 mov rax,QWORD PTR [r15] - 9956: 89 c2 mov edx,eax - 9958: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 995b: 0f 86 2f 03 00 00 jbe 9c90 - 9961: 48 8b 45 38 mov rax,QWORD PTR [rbp+0x38] - 9965: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - 996a: e9 94 a1 ff ff jmp 3b03 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 996f: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 9973: 49 8b 77 38 mov rsi,QWORD PTR [r15+0x38] - 9977: 89 c2 mov edx,eax - 9979: 41 39 47 40 cmp DWORD PTR [r15+0x40],eax - 997d: 0f 86 fd 03 00 00 jbe 9d80 - 9983: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 9987: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 998c: e9 4d a2 ff ff jmp 3bde - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 9991: 31 d2 xor edx,edx - 9993: 48 8d 74 24 58 lea rsi,[rsp+0x58] - 9998: 48 89 cf mov rdi,rcx - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 999b: 48 c7 44 24 58 00 00 mov QWORD PTR [rsp+0x58],0x0 - 99a2: 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - 99a4: e8 00 00 00 00 call 99a9 - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 99a9: 85 c0 test eax,eax - 99ab: 0f 84 19 04 00 00 je 9dca - 99b1: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - 99b5: 48 8b 4c 24 58 mov rcx,QWORD PTR [rsp+0x58] - 99ba: 89 c2 mov edx,eax - 99bc: 41 39 47 40 cmp DWORD PTR [r15+0x40],eax - 99c0: 0f 86 f2 03 00 00 jbe 9db8 - 99c6: 49 8b 47 38 mov rax,QWORD PTR [r15+0x38] - 99ca: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - 99ce: e9 0b a2 ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 99d3: 49 8b 07 mov rax,QWORD PTR [r15] - 99d6: 48 8b 75 38 mov rsi,QWORD PTR [rbp+0x38] - 99da: 89 c2 mov edx,eax - 99dc: 39 45 40 cmp DWORD PTR [rbp+0x40],eax - 99df: 0f 86 75 01 00 00 jbe 9b5a - 99e5: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 99e9: f2 0f 11 04 d6 movsd QWORD PTR [rsi+rdx*8],xmm0 - 99ee: e9 10 a1 ff ff jmp 3b03 - 99f3: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 99f8: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 99ff - 99ff: 48 89 ee mov rsi,rbp - 9a02: 4c 89 ef mov rdi,r13 - 9a05: e8 00 00 00 00 call 9a0a - 9a0a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9a10: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9a15: 48 89 ee mov rsi,rbp - 9a18: e8 00 00 00 00 call 9a1d - 9a1d: e9 1c a0 ff ff jmp 3a3e - 9a22: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9a27: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9a2e - 9a2e: 4c 89 ef mov rdi,r13 - 9a31: 31 c0 xor eax,eax - 9a33: e8 00 00 00 00 call 9a38 - 9a38: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_SSKEY_PROTECTED(L, ra, rb, rc); - 9a3d: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9a44 - 9a44: 48 89 ee mov rsi,rbp - 9a47: 4c 89 ef mov rdi,r13 - 9a4a: e8 00 00 00 00 call 9a4f - 9a4f: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 9a54: 49 89 d7 mov r15,rdx - 9a57: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9a5e - 9a5e: 4c 89 fe mov rsi,r15 - 9a61: 4c 89 ef mov rdi,r13 - 9a64: e8 00 00 00 00 call 9a69 - 9a69: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9a70: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9a75: 4c 89 fe mov rsi,r15 - 9a78: e8 00 00 00 00 call 9a7d - 9a7d: e9 5c a1 ff ff jmp 3bde - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9a82: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9a87: 48 89 ee mov rsi,rbp - 9a8a: e8 00 00 00 00 call 9a8f - 9a8f: e9 6f a0 ff ff jmp 3b03 - 9a94: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9a99: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9aa0 - 9aa0: 48 89 ee mov rsi,rbp - 9aa3: 4c 89 ef mov rdi,r13 - 9aa6: e8 00 00 00 00 call 9aab - 9aab: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9ab0: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9ab7 - 9ab7: 4c 89 fe mov rsi,r15 - 9aba: 4c 89 ef mov rdi,r13 - 9abd: e8 00 00 00 00 call 9ac2 - 9ac2: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "'for' initial value must be a number"); - 9ac7: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ace - 9ace: 4c 89 ef mov rdi,r13 - 9ad1: e8 00 00 00 00 call 9ad6 - 9ad6: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "'for' step must be a number"); - 9adb: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ae2 - 9ae2: 4c 89 ef mov rdi,r13 - 9ae5: e8 00 00 00 00 call 9aea - 9aea: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9af0: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9af5: 48 89 ee mov rsi,rbp - 9af8: e8 00 00 00 00 call 9afd - 9afd: e9 3c 9f ff ff jmp 3a3e - 9b02: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9b07: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9b0e - 9b0e: 4c 89 ef mov rdi,r13 - 9b11: 31 c0 xor eax,eax - 9b13: e8 00 00 00 00 call 9b18 - 9b18: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror( - 9b1d: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9b24 - 9b24: 31 c0 xor eax,eax - 9b26: 4c 89 ef mov rdi,r13 - 9b29: e8 00 00 00 00 call 9b2e - 9b2e: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "'for' limit must be a number"); - 9b33: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9b3a - 9b3a: 4c 89 ef mov rdi,r13 - 9b3d: e8 00 00 00 00 call 9b42 - 9b42: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9b48: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9b4d: 48 89 ee mov rsi,rbp - 9b50: e8 00 00 00 00 call 9b55 - 9b55: e9 e4 9e ff ff jmp 3a3e - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9b5a: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 9b5e: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9b63: 48 89 ee mov rsi,rbp - 9b66: e8 00 00 00 00 call 9b6b - 9b6b: e9 93 9f ff ff jmp 3b03 - 9b70: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_PROTECTED(L, rb, rc, ra); - 9b75: 49 89 d7 mov r15,rdx - 9b78: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9b7f - 9b7f: 4c 89 fe mov rsi,r15 - 9b82: 4c 89 ef mov rdi,r13 - 9b85: e8 00 00 00 00 call 9b8a - 9b8a: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 9b8f: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9b96 - 9b96: 4c 89 ef mov rdi,r13 - 9b99: e8 00 00 00 00 call 9b9e - 9b9e: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror( - 9ba3: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9baa - 9baa: 31 c0 xor eax,eax - 9bac: 4c 89 ef mov rdi,r13 - 9baf: e8 00 00 00 00 call 9bb4 - 9bb4: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 9bb9: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9bc0 - 9bc0: 4c 89 ef mov rdi,r13 - 9bc3: e8 00 00 00 00 call 9bc8 - 9bc8: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror( - 9bcd: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9bd4 - 9bd4: 31 c0 xor eax,eax - 9bd6: 4c 89 ef mov rdi,r13 - 9bd9: e8 00 00 00 00 call 9bde - 9bde: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, - 9be3: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9bea - 9bea: 31 c0 xor eax,eax - 9bec: 4c 89 ef mov rdi,r13 - 9bef: e8 00 00 00 00 call 9bf4 - 9bf4: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror( - 9bf9: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9c00 - 9c00: 31 c0 xor eax,eax - 9c02: 4c 89 ef mov rdi,r13 - 9c05: e8 00 00 00 00 call 9c0a -} - 9c0a: e8 00 00 00 00 call 9c0f - 9c0f: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9c14: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9c1b - 9c1b: 4c 89 fe mov rsi,r15 - 9c1e: 4c 89 ef mov rdi,r13 - 9c21: e8 00 00 00 00 call 9c26 - 9c26: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 9c2b: 49 89 d7 mov r15,rdx - 9c2e: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9c35 - 9c35: 4c 89 fe mov rsi,r15 - 9c38: 4c 89 ef mov rdi,r13 - 9c3b: e8 00 00 00 00 call 9c40 - 9c40: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_SSKEY_PROTECTED(L, rb, rc, ra); - 9c45: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9c4c - 9c4c: 4c 89 ef mov rdi,r13 - 9c4f: e8 00 00 00 00 call 9c54 - 9c54: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 9c59: 49 89 d7 mov r15,rdx - 9c5c: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # 9c63 - 9c63: 4c 89 fe mov rsi,r15 - 9c66: 4c 89 ef mov rdi,r13 - 9c69: e8 00 00 00 00 call 9c6e - 9c6e: 66 90 xchg ax,ax - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9c70: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9c75: 48 89 ee mov rsi,rbp - 9c78: e8 00 00 00 00 call 9c7d - 9c7d: e9 81 9e ff ff jmp 3b03 - 9c82: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9c87: e9 7b fe ff ff jmp 9b07 - 9c8c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - 9c90: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9c95: 48 89 ee mov rsi,rbp - 9c98: e8 00 00 00 00 call 9c9d - 9c9d: e9 61 9e ff ff jmp 3b03 - 9ca2: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9ca7: e9 7b fd ff ff jmp 9a27 - 9cac: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9cb0: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9cb5: 48 89 ee mov rsi,rbp - 9cb8: e8 00 00 00 00 call 9cbd - 9cbd: e9 7c 9d ff ff jmp 3a3e - 9cc2: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "type mismatch: expected %s", getstr(key)); - 9cc7: 49 8d 50 18 lea rdx,[r8+0x18] - 9ccb: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9cd2 - 9cd2: 4c 89 ef mov rdi,r13 - 9cd5: e8 00 00 00 00 call 9cda - 9cda: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "number expected"); - 9cdf: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ce6 - 9ce6: 31 c0 xor eax,eax - 9ce8: 4c 89 ef mov rdi,r13 - 9ceb: e8 00 00 00 00 call 9cf0 - 9cf0: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9cf5: e9 0d fe ff ff jmp 9b07 - 9cfa: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9cff: e9 23 fd ff ff jmp 9a27 - 9d04: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "type name must be string"); - 9d09: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9d10 - 9d10: 31 c0 xor eax,eax - 9d12: 4c 89 ef mov rdi,r13 - 9d15: e8 00 00 00 00 call 9d1a - 9d1a: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - luaG_runerror(L, "integer expected"); - 9d1f: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9d26 - 9d26: 31 c0 xor eax,eax - 9d28: 4c 89 ef mov rdi,r13 - 9d2b: e8 00 00 00 00 call 9d30 - 9d30: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - GETTABLE_INLINE_PROTECTED(L, upval, rc, ra); - 9d35: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9d3c - 9d3c: 31 c0 xor eax,eax - 9d3e: 4c 89 ef mov rdi,r13 - 9d41: e8 00 00 00 00 call 9d46 - SETTABLE_INLINE_PROTECTED(L, ra, rb, rc); - 9d46: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9d4b: 48 89 ee mov rsi,rbp - 9d4e: e8 00 00 00 00 call 9d53 - 9d53: e9 ab 9d ff ff jmp 3b03 - SETTABLE_INLINE_PROTECTED_I(L, ra, rb, rc); - 9d58: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 9d5c: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9d61: 48 89 ee mov rsi,rbp - 9d64: e8 00 00 00 00 call 9d69 - 9d69: e9 d0 9c ff ff jmp 3a3e - SETTABLE_INLINE_PROTECTED(L, upval, rb, rc); - 9d6e: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9d73: 4c 89 fe mov rsi,r15 - 9d76: e8 00 00 00 00 call 9d7b - 9d7b: e9 5e 9e ff ff jmp 3bde - 9d80: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - 9d84: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9d89: 4c 89 fe mov rsi,r15 - 9d8c: e8 00 00 00 00 call 9d91 - 9d91: e9 48 9e ff ff jmp 3bde - 9d96: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9d9b: 4c 89 fe mov rsi,r15 - 9d9e: e8 00 00 00 00 call 9da3 - 9da3: e9 36 9e ff ff jmp 3bde - 9da8: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9dad: e9 75 fc ff ff jmp 9a27 - 9db2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - 9db8: 48 8b 7c 24 08 mov rdi,QWORD PTR [rsp+0x8] - 9dbd: 4c 89 fe mov rsi,r15 - 9dc0: e8 00 00 00 00 call 9dc5 - 9dc5: e9 14 9e ff ff jmp 3bde - 9dca: 4c 8b 6c 24 08 mov r13,QWORD PTR [rsp+0x8] - 9dcf: e9 33 fd ff ff jmp 9b07 - 9dd4: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - 9ddb: 00 00 00 00 - 9ddf: 90 nop - -0000000000009de0 : - -void ravi_dump_value(lua_State *L, const TValue *stack_ptr) { - (void)L; - if (ttisCclosure(stack_ptr)) - 9de0: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - 9de4: 66 3d 26 80 cmp ax,0x8026 - 9de8: 0f 84 b2 00 00 00 je 9ea0 - printf("C closure\n"); - else if (ttislcf(stack_ptr)) - 9dee: 66 83 f8 16 cmp ax,0x16 - 9df2: 0f 84 f8 00 00 00 je 9ef0 - printf("light C function\n"); - else if (ttisfcf(stack_ptr)) - 9df8: 89 c2 mov edx,eax - 9dfa: 83 e2 7f and edx,0x7f - 9dfd: 66 83 fa 46 cmp dx,0x46 - 9e01: 0f 84 01 01 00 00 je 9f08 - printf("fast C function\n"); - else if (ttisLclosure(stack_ptr)) - 9e07: 66 3d 06 80 cmp ax,0x8006 - 9e0b: 0f 84 a7 00 00 00 je 9eb8 - printf("Lua closure\n"); - else if (ttisfunction(stack_ptr)) - 9e11: 89 c2 mov edx,eax - 9e13: 83 e2 0f and edx,0xf - 9e16: 66 83 fa 06 cmp dx,0x6 - 9e1a: 0f 84 00 01 00 00 je 9f20 - printf("function\n"); - else if (ttislngstring(stack_ptr) || ttisshrstring(stack_ptr) || - 9e20: 89 c1 mov ecx,eax - 9e22: 83 e1 ef and ecx,0xffffffef - 9e25: 66 81 f9 04 80 cmp cx,0x8004 - 9e2a: 0f 84 a0 00 00 00 je 9ed0 - 9e30: 66 83 fa 04 cmp dx,0x4 - 9e34: 0f 84 96 00 00 00 je 9ed0 - ttisstring(stack_ptr)) - printf("'%s'\n", svalue(stack_ptr)); - else if (ttistable(stack_ptr)) - 9e3a: 66 83 fa 05 cmp dx,0x5 - 9e3e: 0f 84 24 01 00 00 je 9f68 - printf("table\n"); - else if (ttisnil(stack_ptr)) - 9e44: 66 85 c0 test ax,ax - 9e47: 0f 84 03 01 00 00 je 9f50 - printf("nil\n"); - else if (ttisfloat(stack_ptr)) - 9e4d: 66 83 f8 03 cmp ax,0x3 - 9e51: 0f 84 29 01 00 00 je 9f80 - printf("%.6f\n", fltvalue(stack_ptr)); - else if (ttisinteger(stack_ptr)) - 9e57: 66 83 f8 13 cmp ax,0x13 - 9e5b: 0f 84 d7 00 00 00 je 9f38 - printf("%lld\n", (long long)ivalue(stack_ptr)); - else if (ttislightuserdata(stack_ptr)) - 9e61: 66 83 f8 02 cmp ax,0x2 - 9e65: 0f 84 2f 01 00 00 je 9f9a - printf("light user data\n"); - else if (ttisfulluserdata(stack_ptr)) - 9e6b: 66 3d 07 80 cmp ax,0x8007 - 9e6f: 0f 84 4b 01 00 00 je 9fc0 - printf("full user data\n"); - else if (ttisboolean(stack_ptr)) - 9e75: 66 83 f8 01 cmp ax,0x1 - 9e79: 0f 84 54 01 00 00 je 9fd3 - printf("boolean\n"); - else if (ttisthread(stack_ptr)) - 9e7f: 66 3d 08 80 cmp ax,0x8008 - 9e83: 0f 84 24 01 00 00 je 9fad -} - -__fortify_function int -printf (const char *__restrict __fmt, ...) -{ - return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ()); - 9e89: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9e90 - 9e90: bf 01 00 00 00 mov edi,0x1 - 9e95: 31 c0 xor eax,eax - 9e97: e9 00 00 00 00 jmp 9e9c - 9e9c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - 9ea0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ea7 - 9ea7: bf 01 00 00 00 mov edi,0x1 - 9eac: 31 c0 xor eax,eax - 9eae: e9 00 00 00 00 jmp 9eb3 - 9eb3: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 9eb8: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ebf - 9ebf: bf 01 00 00 00 mov edi,0x1 - 9ec4: 31 c0 xor eax,eax - 9ec6: e9 00 00 00 00 jmp 9ecb - 9ecb: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - printf("'%s'\n", svalue(stack_ptr)); - 9ed0: 48 8b 16 mov rdx,QWORD PTR [rsi] - 9ed3: bf 01 00 00 00 mov edi,0x1 - 9ed8: 31 c0 xor eax,eax - 9eda: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ee1 - 9ee1: 48 83 c2 18 add rdx,0x18 - 9ee5: e9 00 00 00 00 jmp 9eea - 9eea: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - 9ef0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9ef7 - 9ef7: bf 01 00 00 00 mov edi,0x1 - 9efc: 31 c0 xor eax,eax - 9efe: e9 00 00 00 00 jmp 9f03 - 9f03: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 9f08: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f0f - 9f0f: bf 01 00 00 00 mov edi,0x1 - 9f14: 31 c0 xor eax,eax - 9f16: e9 00 00 00 00 jmp 9f1b - 9f1b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 9f20: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f27 - 9f27: bf 01 00 00 00 mov edi,0x1 - 9f2c: 31 c0 xor eax,eax - 9f2e: e9 00 00 00 00 jmp 9f33 - 9f33: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 9f38: 48 8b 16 mov rdx,QWORD PTR [rsi] - 9f3b: bf 01 00 00 00 mov edi,0x1 - 9f40: 31 c0 xor eax,eax - 9f42: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f49 - 9f49: e9 00 00 00 00 jmp 9f4e - 9f4e: 66 90 xchg ax,ax - 9f50: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f57 - 9f57: bf 01 00 00 00 mov edi,0x1 - 9f5c: e9 00 00 00 00 jmp 9f61 - 9f61: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - 9f68: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f6f - 9f6f: bf 01 00 00 00 mov edi,0x1 - 9f74: 31 c0 xor eax,eax - 9f76: e9 00 00 00 00 jmp 9f7b - 9f7b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - 9f80: f2 0f 10 06 movsd xmm0,QWORD PTR [rsi] - 9f84: bf 01 00 00 00 mov edi,0x1 - 9f89: b8 01 00 00 00 mov eax,0x1 - 9f8e: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9f95 - 9f95: e9 00 00 00 00 jmp 9f9a - 9f9a: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9fa1 - 9fa1: bf 01 00 00 00 mov edi,0x1 - 9fa6: 31 c0 xor eax,eax - 9fa8: e9 00 00 00 00 jmp 9fad - 9fad: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9fb4 - 9fb4: bf 01 00 00 00 mov edi,0x1 - 9fb9: 31 c0 xor eax,eax - 9fbb: e9 00 00 00 00 jmp 9fc0 - 9fc0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9fc7 - 9fc7: bf 01 00 00 00 mov edi,0x1 - 9fcc: 31 c0 xor eax,eax - 9fce: e9 00 00 00 00 jmp 9fd3 - 9fd3: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # 9fda - 9fda: bf 01 00 00 00 mov edi,0x1 - 9fdf: 31 c0 xor eax,eax - 9fe1: e9 00 00 00 00 jmp 9fe6 - 9fe6: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - 9fed: 00 00 00 - -0000000000009ff0 : - funcpos, (int)(p->maxstacksize), (int)(p->numparams), p->sizelocvars); - printf("---> called from \n"); -} - -void ravi_dump_stack(lua_State *L, const char *s) { - if (!s) - 9ff0: 48 85 f6 test rsi,rsi - 9ff3: 0f 84 e7 03 00 00 je a3e0 -void ravi_dump_stack(lua_State *L, const char *s) { - 9ff9: 41 57 push r15 - 9ffb: 31 c0 xor eax,eax - 9ffd: 41 56 push r14 - 9fff: 49 89 fe mov r14,rdi - a002: 41 55 push r13 - a004: 41 54 push r12 - a006: 55 push rbp - a007: 53 push rbx - a008: 48 89 f3 mov rbx,rsi - a00b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a012 - a012: 48 83 ec 18 sub rsp,0x18 - return; - CallInfo *ci = L->ci; - a016: 48 8b 6f 20 mov rbp,QWORD PTR [rdi+0x20] - a01a: bf 01 00 00 00 mov edi,0x1 - a01f: e8 00 00 00 00 call a024 - a024: 48 89 da mov rdx,rbx - a027: bf 01 00 00 00 mov edi,0x1 - a02c: 31 c0 xor eax,eax - a02e: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a035 - a035: e8 00 00 00 00 call a03a - a03a: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a041 - a041: bf 01 00 00 00 mov edi,0x1 - a046: 31 c0 xor eax,eax - a048: e8 00 00 00 00 call a04d - printf("=======================\n"); - printf("Stack dump %s\n", s); - printf("=======================\n"); - printf("L->top = %d\n", (int)(L->top - L->stack)); - a04d: 49 8b 56 10 mov rdx,QWORD PTR [r14+0x10] - a051: 49 2b 56 38 sub rdx,QWORD PTR [r14+0x38] - a055: 31 c0 xor eax,eax - a057: 48 c1 fa 04 sar rdx,0x4 - a05b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a062 - a062: bf 01 00 00 00 mov edi,0x1 - a067: e8 00 00 00 00 call a06c - while (ci) { - a06c: 48 85 ed test rbp,rbp - a06f: 0f 84 a5 00 00 00 je a11a - printf("stack[%d] reg[%d] = %s %s", i, (int)(stack_ptr-base), (stack_ptr == base ? "(base) " : ""), (stack_ptr == L->top ? "(L->top) " : "")); - a075: 4c 8d 3d 00 00 00 00 lea r15,[rip+0x0] # a07c - a07c: eb 3b jmp a0b9 - a07e: 66 90 xchg ax,ax - switch (func_type) { - a080: 66 83 f8 46 cmp ax,0x46 - a084: 75 2a jne a0b0 - a086: 8b 14 24 mov edx,DWORD PTR [rsp] - a089: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a090 - a090: bf 01 00 00 00 mov edi,0x1 - a095: 31 c0 xor eax,eax - a097: e8 00 00 00 00 call a09c - a09c: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a0a3 - a0a3: bf 01 00 00 00 mov edi,0x1 - a0a8: 31 c0 xor eax,eax - a0aa: e8 00 00 00 00 call a0af - a0af: 90 nop - ravi_dump_ci(L, ci); - ci = ci->previous; - a0b0: 48 8b 6d 10 mov rbp,QWORD PTR [rbp+0x10] - while (ci) { - a0b4: 48 85 ed test rbp,rbp - a0b7: 74 61 je a11a - StkId func = ci->func; - a0b9: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - int funcpos = ci->func - L->stack; - a0bd: 49 8b 4e 38 mov rcx,QWORD PTR [r14+0x38] - a0c1: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - a0c5: 49 89 d4 mov r12,rdx - a0c8: 49 29 cc sub r12,rcx - a0cb: 49 c1 fc 04 sar r12,0x4 - a0cf: 83 e0 7f and eax,0x7f - a0d2: 4c 89 24 24 mov QWORD PTR [rsp],r12 - switch (func_type) { - a0d6: 66 83 f8 16 cmp ax,0x16 - a0da: 0f 84 68 02 00 00 je a348 - a0e0: 76 5e jbe a140 - a0e2: 66 83 f8 26 cmp ax,0x26 - a0e6: 75 98 jne a080 - a0e8: 8b 14 24 mov edx,DWORD PTR [rsp] - a0eb: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a0f2 - a0f2: bf 01 00 00 00 mov edi,0x1 - a0f7: 31 c0 xor eax,eax - a0f9: e8 00 00 00 00 call a0fe - a0fe: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a105 - a105: bf 01 00 00 00 mov edi,0x1 - a10a: 31 c0 xor eax,eax - a10c: e8 00 00 00 00 call a111 - ci = ci->previous; - a111: 48 8b 6d 10 mov rbp,QWORD PTR [rbp+0x10] - while (ci) { - a115: 48 85 ed test rbp,rbp - a118: 75 9f jne a0b9 - } - printf("\n"); -} - a11a: 48 83 c4 18 add rsp,0x18 - a11e: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a125 - a125: bf 01 00 00 00 mov edi,0x1 - a12a: 31 c0 xor eax,eax - a12c: 5b pop rbx - a12d: 5d pop rbp - a12e: 41 5c pop r12 - a130: 41 5d pop r13 - a132: 41 5e pop r14 - a134: 41 5f pop r15 - a136: e9 00 00 00 00 jmp a13b - a13b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - switch (func_type) { - a140: 66 83 f8 06 cmp ax,0x6 - a144: 0f 85 66 ff ff ff jne a0b0 - StkId stack_ptr = ci->top - 1; - a14a: 48 8b 5d 08 mov rbx,QWORD PTR [rbp+0x8] - p = clLvalue(func)->p; - a14e: 48 8b 02 mov rax,QWORD PTR [rdx] - base = ci->u.l.base; - a151: 4c 8b 6d 20 mov r13,QWORD PTR [rbp+0x20] - StkId stack_ptr = ci->top - 1; - a155: 4c 8d 63 f0 lea r12,[rbx-0x10] - p = clLvalue(func)->p; - a159: 48 8b 40 18 mov rax,QWORD PTR [rax+0x18] - i = ci->top - L->stack - 1; - a15d: 48 29 cb sub rbx,rcx - a160: 48 c1 fb 04 sar rbx,0x4 - p = clLvalue(func)->p; - a164: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - i = ci->top - L->stack - 1; - a169: 83 eb 01 sub ebx,0x1 - for (; stack_ptr >= base; stack_ptr--, i--) { - a16c: 4d 39 ec cmp r12,r13 - a16f: 0f 82 13 01 00 00 jb a288 - a175: 0f 1f 00 nop DWORD PTR [rax] - printf("stack[%d] reg[%d] = %s %s", i, (int)(stack_ptr-base), (stack_ptr == base ? "(base) " : ""), (stack_ptr == L->top ? "(L->top) " : "")); - a178: 4d 39 66 10 cmp QWORD PTR [r14+0x10],r12 - a17c: 4c 8d 0d 00 00 00 00 lea r9,[rip+0x0] # a183 - a183: 4c 89 e1 mov rcx,r12 - a186: 89 da mov edx,ebx - a188: 4d 0f 45 cf cmovne r9,r15 - a18c: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # a193 - a193: 4d 39 e5 cmp r13,r12 - a196: bf 01 00 00 00 mov edi,0x1 - a19b: 4d 0f 45 c7 cmovne r8,r15 - a19f: 4c 29 e9 sub rcx,r13 - a1a2: 31 c0 xor eax,eax - a1a4: 48 c1 f9 04 sar rcx,0x4 - a1a8: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a1af - a1af: e8 00 00 00 00 call a1b4 - if (ttisCclosure(stack_ptr)) - a1b4: 41 0f b7 44 24 08 movzx eax,WORD PTR [r12+0x8] - a1ba: 66 3d 26 80 cmp ax,0x8026 - a1be: 0f 84 0c 01 00 00 je a2d0 - else if (ttislcf(stack_ptr)) - a1c4: 66 83 f8 16 cmp ax,0x16 - a1c8: 0f 84 4a 01 00 00 je a318 - else if (ttisfcf(stack_ptr)) - a1ce: 89 c2 mov edx,eax - a1d0: 83 e2 7f and edx,0x7f - a1d3: 66 83 fa 46 cmp dx,0x46 - a1d7: 0f 84 53 01 00 00 je a330 - else if (ttisLclosure(stack_ptr)) - a1dd: 66 3d 06 80 cmp ax,0x8006 - a1e1: 0f 84 99 01 00 00 je a380 - else if (ttisfunction(stack_ptr)) - a1e7: 89 c2 mov edx,eax - a1e9: 83 e2 0f and edx,0xf - a1ec: 66 83 fa 06 cmp dx,0x6 - a1f0: 0f 84 aa 01 00 00 je a3a0 - else if (ttislngstring(stack_ptr) || ttisshrstring(stack_ptr) || - a1f6: 89 c1 mov ecx,eax - a1f8: 83 e1 ef and ecx,0xffffffef - a1fb: 66 81 f9 04 80 cmp cx,0x8004 - a200: 0f 84 f2 00 00 00 je a2f8 - a206: 66 83 fa 04 cmp dx,0x4 - a20a: 0f 84 e8 00 00 00 je a2f8 - else if (ttistable(stack_ptr)) - a210: 66 83 fa 05 cmp dx,0x5 - a214: 0f 84 ce 01 00 00 je a3e8 - else if (ttisnil(stack_ptr)) - a21a: 66 85 c0 test ax,ax - a21d: 0f 84 9d 01 00 00 je a3c0 - else if (ttisfloat(stack_ptr)) - a223: 66 83 f8 03 cmp ax,0x3 - a227: 0f 84 13 02 00 00 je a440 - else if (ttisinteger(stack_ptr)) - a22d: 66 83 f8 13 cmp ax,0x13 - a231: 0f 84 c9 01 00 00 je a400 - else if (ttislightuserdata(stack_ptr)) - a237: 66 83 f8 02 cmp ax,0x2 - a23b: 0f 84 27 02 00 00 je a468 - else if (ttisfulluserdata(stack_ptr)) - a241: 66 3d 07 80 cmp ax,0x8007 - a245: 0f 84 35 02 00 00 je a480 - else if (ttisboolean(stack_ptr)) - a24b: 66 83 f8 01 cmp ax,0x1 - a24f: 0f 84 43 02 00 00 je a498 - else if (ttisthread(stack_ptr)) - a255: 66 3d 08 80 cmp ax,0x8008 - a259: 0f 84 c1 01 00 00 je a420 - a25f: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a266 - a266: 31 c0 xor eax,eax - for (; stack_ptr >= base; stack_ptr--, i--) { - a268: 49 83 ec 10 sub r12,0x10 - a26c: 83 eb 01 sub ebx,0x1 - a26f: bf 01 00 00 00 mov edi,0x1 - a274: e8 00 00 00 00 call a279 - a279: 4d 39 e5 cmp r13,r12 - a27c: 0f 86 f6 fe ff ff jbe a178 - a282: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - printf( - a288: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - a28d: 8b 14 24 mov edx,DWORD PTR [rsp] - a290: bf 01 00 00 00 mov edi,0x1 - a295: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a29c - a29c: 0f b6 48 0c movzx ecx,BYTE PTR [rax+0xc] - a2a0: 44 8b 48 24 mov r9d,DWORD PTR [rax+0x24] - a2a4: 44 0f b6 40 0a movzx r8d,BYTE PTR [rax+0xa] - a2a9: 31 c0 xor eax,eax - a2ab: e8 00 00 00 00 call a2b0 - a2b0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a2b7 - a2b7: bf 01 00 00 00 mov edi,0x1 - a2bc: 31 c0 xor eax,eax - a2be: e8 00 00 00 00 call a2c3 - a2c3: e9 e8 fd ff ff jmp a0b0 - a2c8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a2cf: 00 - a2d0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a2d7 - a2d7: bf 01 00 00 00 mov edi,0x1 - a2dc: 31 c0 xor eax,eax - a2de: e8 00 00 00 00 call a2e3 - for (; stack_ptr >= base; stack_ptr--, i--) { - a2e3: 49 83 ec 10 sub r12,0x10 - a2e7: 83 eb 01 sub ebx,0x1 - a2ea: 4d 39 e5 cmp r13,r12 - a2ed: 0f 86 85 fe ff ff jbe a178 - a2f3: eb 93 jmp a288 - a2f5: 0f 1f 00 nop DWORD PTR [rax] - printf("'%s'\n", svalue(stack_ptr)); - a2f8: 49 8b 04 24 mov rax,QWORD PTR [r12] - a2fc: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a303 - a303: bf 01 00 00 00 mov edi,0x1 - a308: 48 8d 50 18 lea rdx,[rax+0x18] - a30c: 31 c0 xor eax,eax - a30e: e8 00 00 00 00 call a313 - a313: eb ce jmp a2e3 - a315: 0f 1f 00 nop DWORD PTR [rax] - a318: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a31f - a31f: bf 01 00 00 00 mov edi,0x1 - a324: 31 c0 xor eax,eax - a326: e8 00 00 00 00 call a32b - a32b: eb b6 jmp a2e3 - a32d: 0f 1f 00 nop DWORD PTR [rax] - a330: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a337 - a337: bf 01 00 00 00 mov edi,0x1 - a33c: 31 c0 xor eax,eax - a33e: e8 00 00 00 00 call a343 - a343: eb 9e jmp a2e3 - a345: 0f 1f 00 nop DWORD PTR [rax] - a348: 8b 14 24 mov edx,DWORD PTR [rsp] - a34b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a352 - a352: bf 01 00 00 00 mov edi,0x1 - a357: 31 c0 xor eax,eax - a359: e8 00 00 00 00 call a35e - a35e: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a365 - a365: bf 01 00 00 00 mov edi,0x1 - a36a: 31 c0 xor eax,eax - a36c: e8 00 00 00 00 call a371 - a371: e9 3a fd ff ff jmp a0b0 - a376: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - a37d: 00 00 00 - a380: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a387 - a387: bf 01 00 00 00 mov edi,0x1 - a38c: 31 c0 xor eax,eax - a38e: e8 00 00 00 00 call a393 - a393: e9 4b ff ff ff jmp a2e3 - a398: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a39f: 00 - a3a0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a3a7 - a3a7: bf 01 00 00 00 mov edi,0x1 - a3ac: 31 c0 xor eax,eax - a3ae: e8 00 00 00 00 call a3b3 - a3b3: e9 2b ff ff ff jmp a2e3 - a3b8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a3bf: 00 - a3c0: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a3c7 - a3c7: bf 01 00 00 00 mov edi,0x1 - a3cc: e8 00 00 00 00 call a3d1 - a3d1: e9 0d ff ff ff jmp a2e3 - a3d6: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - a3dd: 00 00 00 - a3e0: c3 ret - a3e1: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - a3e8: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a3ef - a3ef: bf 01 00 00 00 mov edi,0x1 - a3f4: 31 c0 xor eax,eax - a3f6: e8 00 00 00 00 call a3fb - a3fb: e9 e3 fe ff ff jmp a2e3 - a400: 49 8b 14 24 mov rdx,QWORD PTR [r12] - a404: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a40b - a40b: bf 01 00 00 00 mov edi,0x1 - a410: 31 c0 xor eax,eax - a412: e8 00 00 00 00 call a417 - a417: e9 c7 fe ff ff jmp a2e3 - a41c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - a420: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a427 - a427: bf 01 00 00 00 mov edi,0x1 - a42c: 31 c0 xor eax,eax - a42e: e8 00 00 00 00 call a433 - a433: e9 ab fe ff ff jmp a2e3 - a438: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a43f: 00 - a440: f2 41 0f 10 04 24 movsd xmm0,QWORD PTR [r12] - a446: bf 01 00 00 00 mov edi,0x1 - a44b: b8 01 00 00 00 mov eax,0x1 - a450: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a457 - a457: e8 00 00 00 00 call a45c - a45c: e9 82 fe ff ff jmp a2e3 - a461: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - a468: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a46f - a46f: bf 01 00 00 00 mov edi,0x1 - a474: 31 c0 xor eax,eax - a476: e8 00 00 00 00 call a47b - a47b: e9 63 fe ff ff jmp a2e3 - a480: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a487 - a487: bf 01 00 00 00 mov edi,0x1 - a48c: 31 c0 xor eax,eax - a48e: e8 00 00 00 00 call a493 - a493: e9 4b fe ff ff jmp a2e3 - a498: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a49f - a49f: bf 01 00 00 00 mov edi,0x1 - a4a4: 31 c0 xor eax,eax - a4a6: e8 00 00 00 00 call a4ab - a4ab: e9 33 fe ff ff jmp a2e3 - -000000000000a4b0 : - -void ravi_dump_stacktop(lua_State *L, const char *s) { - CallInfo *ci = L->ci; - a4b0: 48 8b 4f 20 mov rcx,QWORD PTR [rdi+0x20] - int funcpos = (int)(ci->func - L->stack); - a4b4: 48 8b 47 38 mov rax,QWORD PTR [rdi+0x38] -void ravi_dump_stacktop(lua_State *L, const char *s) { - a4b8: 48 89 f2 mov rdx,rsi - a4bb: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a4c2 - int top = (int)(L->top - L->stack); - a4c2: 4c 8b 47 10 mov r8,QWORD PTR [rdi+0x10] - a4c6: bf 01 00 00 00 mov edi,0x1 - int ci_top = (int)(ci->top - L->stack); - a4cb: 4c 8b 49 08 mov r9,QWORD PTR [rcx+0x8] - int funcpos = (int)(ci->func - L->stack); - a4cf: 48 8b 09 mov rcx,QWORD PTR [rcx] - int top = (int)(L->top - L->stack); - a4d2: 49 29 c0 sub r8,rax - int ci_top = (int)(ci->top - L->stack); - a4d5: 49 29 c1 sub r9,rax - int funcpos = (int)(ci->func - L->stack); - a4d8: 48 29 c1 sub rcx,rax - int top = (int)(L->top - L->stack); - a4db: 49 c1 f8 04 sar r8,0x4 - a4df: 31 c0 xor eax,eax - int ci_top = (int)(ci->top - L->stack); - a4e1: 49 c1 f9 04 sar r9,0x4 - int funcpos = (int)(ci->func - L->stack); - a4e5: 48 c1 f9 04 sar rcx,0x4 - a4e9: e9 00 00 00 00 jmp a4ee - a4ee: 66 90 xchg ax,ax - -000000000000a4f0 : -/* -** This function is called from JIT compiled code when JIT trace is -** enabled; the function needs to update the savedpc and -** call luaG_traceexec() if necessary -*/ -void ravi_debug_trace(lua_State *L, int opCode, int pc) { - a4f0: 41 57 push r15 - a4f2: 41 56 push r14 - a4f4: 4c 63 f2 movsxd r14,edx - a4f7: 41 55 push r13 - a4f9: 41 54 push r12 - a4fb: 55 push rbp - a4fc: 53 push rbx - a4fd: 48 89 fb mov rbx,rdi - a500: 48 81 ec 98 00 00 00 sub rsp,0x98 - a507: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - a50e: 00 00 - a510: 48 89 84 24 88 00 00 mov QWORD PTR [rsp+0x88],rax - a517: 00 - a518: 31 c0 xor eax,eax - RAVI_DEBUG_STACK( - a51a: 48 8b 47 20 mov rax,QWORD PTR [rdi+0x20] - a51e: 48 8b 28 mov rbp,QWORD PTR [rax] - a521: 48 8b 55 00 mov rdx,QWORD PTR [rbp+0x0] - a525: 48 8b 52 18 mov rdx,QWORD PTR [rdx+0x18] - a529: 48 8b 52 38 mov rdx,QWORD PTR [rdx+0x38] - a52d: f6 05 00 00 00 00 08 test BYTE PTR [rip+0x0],0x8 # a534 - a534: 75 42 jne a578 - // required if someone wishes to set a line hook. The second option - // is very expensive and will inhibit optimizations, hence it is optional. - // This is the setting that is done below - and then the hook is invoked - // See issue #15 - LClosure *closure = clLvalue(L->ci->func); - L->ci->u.l.savedpc = &closure->p->code[pc + 1]; - a536: 4a 8d 54 b2 04 lea rdx,[rdx+r14*4+0x4] - a53b: 48 89 50 28 mov QWORD PTR [rax+0x28],rdx - if (L->hookmask & (LUA_MASKLINE | LUA_MASKCOUNT)) luaG_traceexec(L); - a53f: f6 83 c8 00 00 00 0c test BYTE PTR [rbx+0xc8],0xc - a546: 0f 85 e4 00 00 00 jne a630 -} - a54c: 48 8b 84 24 88 00 00 mov rax,QWORD PTR [rsp+0x88] - a553: 00 - a554: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - a55b: 00 00 - a55d: 0f 85 da 00 00 00 jne a63d - a563: 48 81 c4 98 00 00 00 add rsp,0x98 - a56a: 5b pop rbx - a56b: 5d pop rbp - a56c: 41 5c pop r12 - a56e: 41 5d pop r13 - a570: 41 5e pop r14 - a572: 41 5f pop r15 - a574: c3 ret - a575: 0f 1f 00 nop DWORD PTR [rax] - RAVI_DEBUG_STACK( - a578: 4c 8b 47 38 mov r8,QWORD PTR [rdi+0x38] - a57c: 4c 8b 50 20 mov r10,QWORD PTR [rax+0x20] - a580: 48 8d 4c 24 20 lea rcx,[rsp+0x20] - a585: 89 74 24 1c mov DWORD PTR [rsp+0x1c],esi - a589: 4c 8b 67 10 mov r12,QWORD PTR [rdi+0x10] - a58d: 4c 8b 68 08 mov r13,QWORD PTR [rax+0x8] - a591: 48 89 cf mov rdi,rcx - a594: 48 89 0c 24 mov QWORD PTR [rsp],rcx - a598: 4d 29 c2 sub r10,r8 - a59b: 42 8b 14 b2 mov edx,DWORD PTR [rdx+r14*4] - a59f: be 64 00 00 00 mov esi,0x64 - a5a4: 4c 89 44 24 10 mov QWORD PTR [rsp+0x10],r8 - a5a9: 49 c1 fa 04 sar r10,0x4 - a5ad: 4d 29 c4 sub r12,r8 - a5b0: 4d 29 c5 sub r13,r8 - a5b3: 4c 89 54 24 08 mov QWORD PTR [rsp+0x8],r10 - a5b8: 49 c1 fc 04 sar r12,0x4 - a5bc: 49 c1 fd 04 sar r13,0x4 - a5c0: e8 00 00 00 00 call a5c5 - a5c5: 4c 8b 54 24 08 mov r10,QWORD PTR [rsp+0x8] - a5ca: 4c 8b 44 24 10 mov r8,QWORD PTR [rsp+0x10] - a5cf: 48 8d 05 00 00 00 00 lea rax,[rip+0x0] # a5d6 - a5d6: 4c 63 4c 24 1c movsxd r9,DWORD PTR [rsp+0x1c] - a5db: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # a5e2 - a5e2: bf 01 00 00 00 mov edi,0x1 - a5e7: 45 29 d5 sub r13d,r10d - a5ea: 45 29 d4 sub r12d,r10d - a5ed: 4c 29 c5 sub rbp,r8 - a5f0: 41 55 push r13 - a5f2: 4a 8b 14 c8 mov rdx,QWORD PTR [rax+r9*8] - a5f6: 49 89 e8 mov r8,rbp - a5f9: 45 89 f1 mov r9d,r14d - a5fc: 41 54 push r12 - a5fe: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - a603: 49 c1 f8 04 sar r8,0x4 - a607: 31 c0 xor eax,eax - a609: e8 00 00 00 00 call a60e - a60e: 48 8b 43 20 mov rax,QWORD PTR [rbx+0x20] - a612: 59 pop rcx - a613: 5e pop rsi - a614: 48 8b 10 mov rdx,QWORD PTR [rax] - a617: 48 8b 12 mov rdx,QWORD PTR [rdx] - a61a: 48 8b 52 18 mov rdx,QWORD PTR [rdx+0x18] - a61e: 48 8b 52 38 mov rdx,QWORD PTR [rdx+0x38] - a622: e9 0f ff ff ff jmp a536 - a627: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - a62e: 00 00 - if (L->hookmask & (LUA_MASKLINE | LUA_MASKCOUNT)) luaG_traceexec(L); - a630: 48 89 df mov rdi,rbx - a633: e8 00 00 00 00 call a638 -} - a638: e9 0f ff ff ff jmp a54c - a63d: e8 00 00 00 00 call a642 - a642: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - a649: 00 00 00 00 - a64d: 0f 1f 00 nop DWORD PTR [rax] - -000000000000a650 : - -void raviV_op_newarrayint(lua_State *L, CallInfo *ci, TValue *ra) { - a650: 41 54 push r12 - a652: 49 89 f4 mov r12,rsi - Table *t = raviH_new(L, RAVI_TARRAYINT, 0); - a655: be 03 00 00 00 mov esi,0x3 -void raviV_op_newarrayint(lua_State *L, CallInfo *ci, TValue *ra) { - a65a: 55 push rbp - a65b: 48 89 d5 mov rbp,rdx - Table *t = raviH_new(L, RAVI_TARRAYINT, 0); - a65e: 31 d2 xor edx,edx -void raviV_op_newarrayint(lua_State *L, CallInfo *ci, TValue *ra) { - a660: 53 push rbx - a661: 48 89 fb mov rbx,rdi - Table *t = raviH_new(L, RAVI_TARRAYINT, 0); - a664: e8 00 00 00 00 call a669 - setiarrayvalue(L, ra, t); - a669: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - a66d: b8 15 80 ff ff mov eax,0xffff8015 - a672: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - checkGC_(L, ra + 1); - a676: 48 8b 43 18 mov rax,QWORD PTR [rbx+0x18] - a67a: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - a67f: 7e 19 jle a69a - a681: 48 83 c5 10 add rbp,0x10 - a685: 48 89 df mov rdi,rbx - a688: 48 89 6b 10 mov QWORD PTR [rbx+0x10],rbp - a68c: e8 00 00 00 00 call a691 - a691: 49 8b 44 24 08 mov rax,QWORD PTR [r12+0x8] - a696: 48 89 43 10 mov QWORD PTR [rbx+0x10],rax -} - a69a: 5b pop rbx - a69b: 5d pop rbp - a69c: 41 5c pop r12 - a69e: c3 ret - a69f: 90 nop - -000000000000a6a0 : - -void raviV_op_newarrayfloat(lua_State *L, CallInfo *ci, TValue *ra) { - a6a0: 41 54 push r12 - a6a2: 49 89 f4 mov r12,rsi - Table *t = raviH_new(L, RAVI_TARRAYFLT, 0); - a6a5: be 04 00 00 00 mov esi,0x4 -void raviV_op_newarrayfloat(lua_State *L, CallInfo *ci, TValue *ra) { - a6aa: 55 push rbp - a6ab: 48 89 d5 mov rbp,rdx - Table *t = raviH_new(L, RAVI_TARRAYFLT, 0); - a6ae: 31 d2 xor edx,edx -void raviV_op_newarrayfloat(lua_State *L, CallInfo *ci, TValue *ra) { - a6b0: 53 push rbx - a6b1: 48 89 fb mov rbx,rdi - Table *t = raviH_new(L, RAVI_TARRAYFLT, 0); - a6b4: e8 00 00 00 00 call a6b9 - setfarrayvalue(L, ra, t); - a6b9: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - a6bd: b8 25 80 ff ff mov eax,0xffff8025 - a6c2: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - checkGC_(L, ra + 1); - a6c6: 48 8b 43 18 mov rax,QWORD PTR [rbx+0x18] - a6ca: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - a6cf: 7e 19 jle a6ea - a6d1: 48 83 c5 10 add rbp,0x10 - a6d5: 48 89 df mov rdi,rbx - a6d8: 48 89 6b 10 mov QWORD PTR [rbx+0x10],rbp - a6dc: e8 00 00 00 00 call a6e1 - a6e1: 49 8b 44 24 08 mov rax,QWORD PTR [r12+0x8] - a6e6: 48 89 43 10 mov QWORD PTR [rbx+0x10],rax -} - a6ea: 5b pop rbx - a6eb: 5d pop rbp - a6ec: 41 5c pop r12 - a6ee: c3 ret - a6ef: 90 nop - -000000000000a6f0 : - -void raviV_op_newtable(lua_State *L, CallInfo *ci, TValue *ra, int b, int c) { - a6f0: 41 57 push r15 - a6f2: 45 89 c7 mov r15d,r8d - a6f5: 41 56 push r14 - a6f7: 49 89 f6 mov r14,rsi - a6fa: 41 55 push r13 - a6fc: 41 89 cd mov r13d,ecx - a6ff: 41 54 push r12 - a701: 55 push rbp - a702: 48 89 d5 mov rbp,rdx - a705: 53 push rbx - a706: 48 89 fb mov rbx,rdi - a709: 48 83 ec 08 sub rsp,0x8 - Table *t = luaH_new(L); - a70d: e8 00 00 00 00 call a712 - a712: 49 89 c4 mov r12,rax - sethvalue(L, ra, t); - a715: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - a719: b8 05 80 ff ff mov eax,0xffff8005 - a71e: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - if (b != 0 || c != 0) luaH_resize(L, t, luaO_fb2int(b), luaO_fb2int(c)); - a722: 44 89 e8 mov eax,r13d - a725: 44 09 f8 or eax,r15d - a728: 75 36 jne a760 - checkGC_(L, ra + 1); - a72a: 48 8b 43 18 mov rax,QWORD PTR [rbx+0x18] - a72e: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - a733: 7e 18 jle a74d - a735: 48 83 c5 10 add rbp,0x10 - a739: 48 89 df mov rdi,rbx - a73c: 48 89 6b 10 mov QWORD PTR [rbx+0x10],rbp - a740: e8 00 00 00 00 call a745 - a745: 49 8b 46 08 mov rax,QWORD PTR [r14+0x8] - a749: 48 89 43 10 mov QWORD PTR [rbx+0x10],rax -} - a74d: 48 83 c4 08 add rsp,0x8 - a751: 5b pop rbx - a752: 5d pop rbp - a753: 41 5c pop r12 - a755: 41 5d pop r13 - a757: 41 5e pop r14 - a759: 41 5f pop r15 - a75b: c3 ret - a75c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - if (b != 0 || c != 0) luaH_resize(L, t, luaO_fb2int(b), luaO_fb2int(c)); - a760: 44 89 ff mov edi,r15d - a763: e8 00 00 00 00 call a768 - a768: 44 89 ef mov edi,r13d - a76b: 41 89 c7 mov r15d,eax - a76e: e8 00 00 00 00 call a773 - a773: 44 89 f9 mov ecx,r15d - a776: 4c 89 e6 mov rsi,r12 - a779: 48 89 df mov rdi,rbx - a77c: 89 c2 mov edx,eax - a77e: e8 00 00 00 00 call a783 - a783: eb a5 jmp a72a - a785: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - a78c: 00 00 00 00 - -000000000000a790 : - -void raviV_op_setlist(lua_State *L, CallInfo *ci, TValue *ra, int b, int c) { - a790: 41 57 push r15 - a792: 41 56 push r14 - a794: 41 55 push r13 - a796: 49 89 d5 mov r13,rdx - a799: 41 54 push r12 - a79b: 55 push rbp - a79c: 48 89 fd mov rbp,rdi - a79f: 53 push rbx - a7a0: 48 83 ec 38 sub rsp,0x38 - a7a4: 48 89 74 24 10 mov QWORD PTR [rsp+0x10],rsi - a7a9: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - a7b0: 00 00 - a7b2: 48 89 44 24 28 mov QWORD PTR [rsp+0x28],rax - a7b7: 31 c0 xor eax,eax - int n = b; - unsigned int last; - Table *h; - if (n == 0) n = cast_int(L->top - ra) - 1; - a7b9: 85 c9 test ecx,ecx - a7bb: 75 0e jne a7cb - a7bd: 48 8b 4f 10 mov rcx,QWORD PTR [rdi+0x10] - a7c1: 48 29 d1 sub rcx,rdx - a7c4: 48 c1 f9 04 sar rcx,0x4 - a7c8: 83 e9 01 sub ecx,0x1 - h = hvalue(ra); - a7cb: 4d 8b 65 00 mov r12,QWORD PTR [r13+0x0] - last = ((c - 1) * LFIELDS_PER_FLUSH) + n; - a7cf: 41 8d 58 ff lea ebx,[r8-0x1] - a7d3: 6b db 32 imul ebx,ebx,0x32 - if (h->ravi_array.array_type == RAVI_TTABLE) { - a7d6: 41 0f b6 44 24 48 movzx eax,BYTE PTR [r12+0x48] - h = hvalue(ra); - a7dc: 4c 89 64 24 08 mov QWORD PTR [rsp+0x8],r12 - last = ((c - 1) * LFIELDS_PER_FLUSH) + n; - a7e1: 44 8d 34 0b lea r14d,[rbx+rcx*1] - if (h->ravi_array.array_type == RAVI_TTABLE) { - a7e5: 3c 06 cmp al,0x6 - a7e7: 0f 84 03 02 00 00 je a9f0 - luaH_setint(L, h, last--, val); - luaC_barrierback(L, h, val); - } - } - else { - int i = last - n + 1; - a7ed: 83 c3 01 add ebx,0x1 - for (; i <= (int)last; i++) { - a7f0: 41 39 de cmp r14d,ebx - a7f3: 0f 8c 9f 00 00 00 jl a898 - a7f9: 4c 63 c3 movsxd r8,ebx - return luaV_tointeger(obj, p, LUA_FLOORN2I); - a7fc: 4c 8d 7c 24 20 lea r15,[rsp+0x20] - a801: 49 c1 e0 04 shl r8,0x4 - a805: 4d 01 c5 add r13,r8 - a808: eb 58 jmp a862 - a80a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - TValue *val = ra + i; - unsigned int u = (unsigned int)(i); - switch (h->ravi_array.array_type) { - a810: 3c 04 cmp al,0x4 - a812: 75 3c jne a850 - else - luaG_runerror(L, "value cannot be converted to integer"); - } - } break; - case RAVI_TARRAYFLT: { - if (ttisfloat(val)) { - a814: 41 0f b7 45 08 movzx eax,WORD PTR [r13+0x8] - a819: 66 83 f8 03 cmp ax,0x3 - a81d: 0f 84 ed 00 00 00 je a910 - raviH_set_float_inline(L, h, u, fltvalue(val)); - } - else if (ttisinteger(val)) { - a823: 66 83 f8 13 cmp ax,0x13 - a827: 0f 85 0b 01 00 00 jne a938 - raviH_set_float_inline(L, h, u, (lua_Number)(ivalue(val))); - a82d: 66 0f ef c0 pxor xmm0,xmm0 - a831: 89 da mov edx,ebx - a833: f2 49 0f 2a 45 00 cvtsi2sd xmm0,QWORD PTR [r13+0x0] - a839: 41 3b 5c 24 40 cmp ebx,DWORD PTR [r12+0x40] - a83e: 0f 83 7c 01 00 00 jae a9c0 - a844: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - a849: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - a84e: 66 90 xchg ax,ax - for (; i <= (int)last; i++) { - a850: 83 c3 01 add ebx,0x1 - a853: 49 83 c5 10 add r13,0x10 - a857: 41 39 de cmp r14d,ebx - a85a: 7c 3c jl a898 - a85c: 41 0f b6 44 24 48 movzx eax,BYTE PTR [r12+0x48] - switch (h->ravi_array.array_type) { - a862: 3c 03 cmp al,0x3 - a864: 75 aa jne a810 - if (ttisinteger(val)) { raviH_set_int_inline(L, h, u, ivalue(val)); } - a866: 66 41 83 7d 08 13 cmp WORD PTR [r13+0x8],0x13 - a86c: 75 62 jne a8d0 - a86e: 49 8b 4d 00 mov rcx,QWORD PTR [r13+0x0] - a872: 89 da mov edx,ebx - a874: 41 39 5c 24 40 cmp DWORD PTR [r12+0x40],ebx - a879: 0f 86 f9 00 00 00 jbe a978 - a87f: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - for (; i <= (int)last; i++) { - a884: 83 c3 01 add ebx,0x1 - a887: 49 83 c5 10 add r13,0x10 - if (ttisinteger(val)) { raviH_set_int_inline(L, h, u, ivalue(val)); } - a88b: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - for (; i <= (int)last; i++) { - a88f: 41 39 de cmp r14d,ebx - a892: 7d c8 jge a85c - a894: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - } break; - default: lua_assert(0); - } - } - } - L->top = ci->top; /* correct top (in case of previous open call) */ - a898: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - a89d: 48 8b 40 08 mov rax,QWORD PTR [rax+0x8] - a8a1: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax -} - a8a5: 48 8b 44 24 28 mov rax,QWORD PTR [rsp+0x28] - a8aa: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - a8b1: 00 00 - a8b3: 0f 85 d3 01 00 00 jne aa8c - a8b9: 48 83 c4 38 add rsp,0x38 - a8bd: 5b pop rbx - a8be: 5d pop rbp - a8bf: 41 5c pop r12 - a8c1: 41 5d pop r13 - a8c3: 41 5e pop r14 - a8c5: 41 5f pop r15 - a8c7: c3 ret - a8c8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - a8cf: 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - a8d0: 31 d2 xor edx,edx - a8d2: 4c 89 fe mov rsi,r15 - a8d5: 4c 89 ef mov rdi,r13 - lua_Integer i = 0; - a8d8: 48 c7 44 24 20 00 00 mov QWORD PTR [rsp+0x20],0x0 - a8df: 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - a8e1: e8 00 00 00 00 call a8e6 - if (luaV_tointeger_(val, &i)) { raviH_set_int_inline(L, h, u, i); } - a8e6: 85 c0 test eax,eax - a8e8: 0f 84 8d 01 00 00 je aa7b - a8ee: 48 8b 4c 24 20 mov rcx,QWORD PTR [rsp+0x20] - a8f3: 89 da mov edx,ebx - a8f5: 41 39 5c 24 40 cmp DWORD PTR [r12+0x40],ebx - a8fa: 0f 86 90 00 00 00 jbe a990 - a900: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - a905: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - a909: e9 42 ff ff ff jmp a850 - a90e: 66 90 xchg ax,ax - raviH_set_float_inline(L, h, u, fltvalue(val)); - a910: 89 da mov edx,ebx - a912: 41 39 5c 24 40 cmp DWORD PTR [r12+0x40],ebx - a917: 0f 86 8b 00 00 00 jbe a9a8 - a91d: f2 41 0f 10 45 00 movsd xmm0,QWORD PTR [r13+0x0] - a923: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - a928: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - a92d: e9 1e ff ff ff jmp a850 - a932: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - lua_Number d = 0.0; - a938: 48 c7 44 24 20 00 00 mov QWORD PTR [rsp+0x20],0x0 - a93f: 00 00 - if (luaV_tonumber_(val, &d)) { raviH_set_float_inline(L, h, u, d); } - a941: 4c 89 fe mov rsi,r15 - a944: 4c 89 ef mov rdi,r13 - a947: e8 00 00 00 00 call a94c - a94c: 85 c0 test eax,eax - a94e: 0f 84 3d 01 00 00 je aa91 - a954: f2 0f 10 44 24 20 movsd xmm0,QWORD PTR [rsp+0x20] - a95a: 89 da mov edx,ebx - a95c: 41 3b 5c 24 40 cmp ebx,DWORD PTR [r12+0x40] - a961: 73 75 jae a9d8 - a963: 49 8b 44 24 38 mov rax,QWORD PTR [r12+0x38] - a968: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - a96d: e9 de fe ff ff jmp a850 - a972: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (ttisinteger(val)) { raviH_set_int_inline(L, h, u, ivalue(val)); } - a978: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - a97d: 48 89 ef mov rdi,rbp - a980: e8 00 00 00 00 call a985 - a985: e9 c6 fe ff ff jmp a850 - a98a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (luaV_tointeger_(val, &i)) { raviH_set_int_inline(L, h, u, i); } - a990: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - a995: 48 89 ef mov rdi,rbp - a998: e8 00 00 00 00 call a99d - a99d: e9 ae fe ff ff jmp a850 - a9a2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - raviH_set_float_inline(L, h, u, fltvalue(val)); - a9a8: f2 41 0f 10 45 00 movsd xmm0,QWORD PTR [r13+0x0] - a9ae: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - a9b3: 48 89 ef mov rdi,rbp - a9b6: e8 00 00 00 00 call a9bb - a9bb: e9 90 fe ff ff jmp a850 - raviH_set_float_inline(L, h, u, (lua_Number)(ivalue(val))); - a9c0: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - a9c5: 48 89 ef mov rdi,rbp - a9c8: e8 00 00 00 00 call a9cd - a9cd: e9 7e fe ff ff jmp a850 - a9d2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (luaV_tonumber_(val, &d)) { raviH_set_float_inline(L, h, u, d); } - a9d8: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - a9dd: 48 89 ef mov rdi,rbp - a9e0: e8 00 00 00 00 call a9e5 - a9e5: e9 66 fe ff ff jmp a850 - a9ea: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (last > h->sizearray) /* needs more space? */ - a9f0: 45 39 74 24 0c cmp DWORD PTR [r12+0xc],r14d - a9f5: 72 69 jb aa60 - for (; n > 0; n--) { - a9f7: 85 c9 test ecx,ecx - a9f9: 0f 8e 99 fe ff ff jle a898 - a9ff: 48 63 c9 movsxd rcx,ecx - aa02: 48 c1 e1 04 shl rcx,0x4 - aa06: 49 01 cd add r13,rcx - aa09: eb 15 jmp aa20 - aa0b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - aa10: 49 83 ed 10 sub r13,0x10 - aa14: 45 89 fe mov r14d,r15d - aa17: 44 39 fb cmp ebx,r15d - aa1a: 0f 84 78 fe ff ff je a898 - luaH_setint(L, h, last--, val); - aa20: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - aa25: 44 89 f2 mov edx,r14d - aa28: 4c 89 e9 mov rcx,r13 - aa2b: 48 89 ef mov rdi,rbp - aa2e: 45 8d 7e ff lea r15d,[r14-0x1] - aa32: e8 00 00 00 00 call aa37 - luaC_barrierback(L, h, val); - aa37: 66 41 83 7d 08 00 cmp WORD PTR [r13+0x8],0x0 - aa3d: 79 d1 jns aa10 - aa3f: 41 f6 44 24 09 04 test BYTE PTR [r12+0x9],0x4 - aa45: 74 c9 je aa10 - aa47: 49 8b 45 00 mov rax,QWORD PTR [r13+0x0] - aa4b: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - aa4f: 74 bf je aa10 - aa51: 48 8b 74 24 08 mov rsi,QWORD PTR [rsp+0x8] - aa56: 48 89 ef mov rdi,rbp - aa59: e8 00 00 00 00 call aa5e - aa5e: eb b0 jmp aa10 - luaH_resizearray(L, h, last); /* pre-allocate it at once */ - aa60: 44 89 f2 mov edx,r14d - aa63: 4c 89 e6 mov rsi,r12 - aa66: 48 89 ef mov rdi,rbp - aa69: 89 4c 24 1c mov DWORD PTR [rsp+0x1c],ecx - aa6d: e8 00 00 00 00 call aa72 - aa72: 8b 4c 24 1c mov ecx,DWORD PTR [rsp+0x1c] - aa76: e9 7c ff ff ff jmp a9f7 - luaG_runerror(L, "value cannot be converted to integer"); - aa7b: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # aa82 - aa82: 48 89 ef mov rdi,rbp - aa85: 31 c0 xor eax,eax - aa87: e8 00 00 00 00 call aa8c -} - aa8c: e8 00 00 00 00 call aa91 - luaG_runerror(L, "value cannot be converted to number"); - aa91: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # aa98 - aa98: 48 89 ef mov rdi,rbp - aa9b: 31 c0 xor eax,eax - aa9d: e8 00 00 00 00 call aaa2 - aaa2: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - aaa9: 00 00 00 00 - aaad: 0f 1f 00 nop DWORD PTR [rax] - -000000000000aab0 : - -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aab0: 41 55 push r13 - StkId rb, ra; - StkId base = ci->u.l.base; - L->top = base + c + 1; /* mark the end of concat operands */ - aab2: 49 63 c0 movsxd rax,r8d -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aab5: 4c 63 e9 movsxd r13,ecx - aab8: 41 54 push r12 - L->top = base + c + 1; /* mark the end of concat operands */ - aaba: 48 83 c0 01 add rax,0x1 - Protect_base(luaV_concat(L, c - b + 1)); - aabe: 45 29 e8 sub r8d,r13d -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aac1: 49 89 f4 mov r12,rsi - aac4: 55 push rbp - L->top = base + c + 1; /* mark the end of concat operands */ - aac5: 48 c1 e0 04 shl rax,0x4 -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aac9: 48 89 fd mov rbp,rdi - ra = base + a; /* 'luav_concat' may invoke TMs and move the stack */ - rb = base + b; - aacc: 49 c1 e5 04 shl r13,0x4 -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aad0: 53 push rbx - aad1: 48 63 da movsxd rbx,edx - ra = base + a; /* 'luav_concat' may invoke TMs and move the stack */ - aad4: 48 c1 e3 04 shl rbx,0x4 -void raviV_op_concat(lua_State *L, CallInfo *ci, int a, int b, int c) { - aad8: 48 83 ec 08 sub rsp,0x8 - L->top = base + c + 1; /* mark the end of concat operands */ - aadc: 48 03 46 20 add rax,QWORD PTR [rsi+0x20] - Protect_base(luaV_concat(L, c - b + 1)); - aae0: 41 8d 70 01 lea esi,[r8+0x1] - L->top = base + c + 1; /* mark the end of concat operands */ - aae4: 48 89 47 10 mov QWORD PTR [rdi+0x10],rax - Protect_base(luaV_concat(L, c - b + 1)); - aae8: e8 00 00 00 00 call aaed - aaed: 49 8b 44 24 20 mov rax,QWORD PTR [r12+0x20] - rb = base + b; - aaf2: 4a 8d 0c 28 lea rcx,[rax+r13*1] - ra = base + a; /* 'luav_concat' may invoke TMs and move the stack */ - aaf6: 48 8d 14 18 lea rdx,[rax+rbx*1] - setobjs2s(L, ra, rb); - aafa: 48 8b 01 mov rax,QWORD PTR [rcx] - aafd: 48 89 02 mov QWORD PTR [rdx],rax - ab00: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - ab04: 66 89 42 08 mov WORD PTR [rdx+0x8],ax - checkGC_protectbase(L, (ra >= rb ? ra + 1 : rb)); - ab08: 48 8b 45 18 mov rax,QWORD PTR [rbp+0x18] - ab0c: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - ab11: 7e 17 jle ab2a - ab13: 48 8d 42 10 lea rax,[rdx+0x10] - ab17: 48 39 ca cmp rdx,rcx - ab1a: 48 89 ef mov rdi,rbp - ab1d: 48 0f 43 c8 cmovae rcx,rax - ab21: 48 89 4d 10 mov QWORD PTR [rbp+0x10],rcx - ab25: e8 00 00 00 00 call ab2a - L->top = ci->top; /* restore top */ - ab2a: 49 8b 44 24 08 mov rax,QWORD PTR [r12+0x8] - ab2f: 48 89 45 10 mov QWORD PTR [rbp+0x10],rax -} - ab33: 48 83 c4 08 add rsp,0x8 - ab37: 5b pop rbx - ab38: 5d pop rbp - ab39: 41 5c pop r12 - ab3b: 41 5d pop r13 - ab3d: c3 ret - ab3e: 66 90 xchg ax,ax - -000000000000ab40 : - -void raviV_op_closure(lua_State *L, CallInfo *ci, LClosure *cl, int a, int Bx) { - ab40: 41 56 push r14 - StkId base = ci->u.l.base; - Proto *p = cl->p->p[Bx]; - ab42: 4d 63 c0 movsxd r8,r8d - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - ab45: 4c 8d 5a 20 lea r11,[rdx+0x20] -void raviV_op_closure(lua_State *L, CallInfo *ci, LClosure *cl, int a, int Bx) { - ab49: 41 55 push r13 - ab4b: 49 89 fd mov r13,rdi - ab4e: 41 54 push r12 - ab50: 55 push rbp - ab51: 48 89 f5 mov rbp,rsi - ab54: 53 push rbx - Proto *p = cl->p->p[Bx]; - ab55: 48 8b 42 18 mov rax,QWORD PTR [rdx+0x18] -void raviV_op_closure(lua_State *L, CallInfo *ci, LClosure *cl, int a, int Bx) { - ab59: 48 63 d9 movsxd rbx,ecx - StkId base = ci->u.l.base; - ab5c: 4c 8b 76 20 mov r14,QWORD PTR [rsi+0x20] - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - ab60: 4c 89 de mov rsi,r11 - StkId ra = base + a; - ab63: 48 c1 e3 04 shl rbx,0x4 - Proto *p = cl->p->p[Bx]; - ab67: 48 8b 40 40 mov rax,QWORD PTR [rax+0x40] - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - ab6b: 4c 89 f2 mov rdx,r14 - StkId ra = base + a; - ab6e: 4c 01 f3 add rbx,r14 - Proto *p = cl->p->p[Bx]; - ab71: 4e 8b 24 c0 mov r12,QWORD PTR [rax+r8*8] - LClosure *ncl = getcached(p, cl->upvals, base); /* cached closure */ - ab75: 4c 89 e7 mov rdi,r12 - ab78: e8 83 54 ff ff call 0 - if (ncl == NULL) /* no match? */ { - ab7d: 48 85 c0 test rax,rax - ab80: 74 3e je abc0 - pushclosure(L, p, cl->upvals, base, ra); /* create a new one */ - } - else { - setclLvalue(L, ra, ncl); /* push cashed closure */ - ab82: 48 89 03 mov QWORD PTR [rbx],rax - ab85: b8 06 80 ff ff mov eax,0xffff8006 - ab8a: 66 89 43 08 mov WORD PTR [rbx+0x8],ax - } - checkGC_protectbase(L, ra + 1); - ab8e: 49 8b 45 18 mov rax,QWORD PTR [r13+0x18] - ab92: 48 83 78 18 00 cmp QWORD PTR [rax+0x18],0x0 - ab97: 7e 18 jle abb1 - ab99: 48 83 c3 10 add rbx,0x10 - ab9d: 4c 89 ef mov rdi,r13 - aba0: 49 89 5d 10 mov QWORD PTR [r13+0x10],rbx - aba4: e8 00 00 00 00 call aba9 - aba9: 48 8b 45 08 mov rax,QWORD PTR [rbp+0x8] - abad: 49 89 45 10 mov QWORD PTR [r13+0x10],rax -} - abb1: 5b pop rbx - abb2: 5d pop rbp - abb3: 41 5c pop r12 - abb5: 41 5d pop r13 - abb7: 41 5e pop r14 - abb9: c3 ret - abba: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - pushclosure(L, p, cl->upvals, base, ra); /* create a new one */ - abc0: 4c 8d 4b 08 lea r9,[rbx+0x8] - abc4: 49 89 d8 mov r8,rbx - abc7: 4c 89 f1 mov rcx,r14 - abca: 4c 89 da mov rdx,r11 - abcd: 4c 89 e6 mov rsi,r12 - abd0: 4c 89 ef mov rdi,r13 - abd3: e8 e8 55 ff ff call 1c0 - abd8: eb b4 jmp ab8e - abda: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - -000000000000abe0 : - -void raviV_op_vararg(lua_State *L, CallInfo *ci, LClosure *cl, int a, int b) { - abe0: 41 55 push r13 - abe2: 41 54 push r12 - abe4: 55 push rbp - abe5: 53 push rbx - abe6: 48 83 ec 08 sub rsp,0x8 - StkId base = ci->u.l.base; - abea: 48 8b 46 20 mov rax,QWORD PTR [rsi+0x20] - StkId ra; - int j; - int n = cast_int(base - ci->func) - cl->p->numparams - 1; - abee: 48 8b 52 18 mov rdx,QWORD PTR [rdx+0x18] - abf2: 48 89 c3 mov rbx,rax - abf5: 0f b6 52 0a movzx edx,BYTE PTR [rdx+0xa] - abf9: 48 2b 1e sub rbx,QWORD PTR [rsi] - abfc: 48 c1 fb 04 sar rbx,0x4 - ac00: 29 d3 sub ebx,edx - if (n < 0) /* less arguments than parameters? */ - ac02: ba 00 00 00 00 mov edx,0x0 - ac07: 83 eb 01 sub ebx,0x1 - ac0a: 0f 48 da cmovs ebx,edx - n = 0; /* no vararg arguments */ - b = b - 1; - if (b < 0) { /* B == 0? */ - ac0d: 48 63 d1 movsxd rdx,ecx - ac10: 48 c1 e2 04 shl rdx,0x4 - ac14: 49 89 d5 mov r13,rdx - ac17: 41 83 e8 01 sub r8d,0x1 - ac1b: 0f 88 8f 00 00 00 js acb0 - Protect_base(luaD_checkstack(L, n)); - ra = base + a; /* previous call may change the stack */ - L->top = ra + n; - } - else { - ra = base + a; - ac21: 41 39 d8 cmp r8d,ebx - ac24: 41 89 d9 mov r9d,ebx - ac27: 48 8d 14 10 lea rdx,[rax+rdx*1] - ac2b: 45 0f 4e c8 cmovle r9d,r8d - } - for (j = 0; j < b && j < n; j++) - ac2f: 45 85 c9 test r9d,r9d - ac32: 74 37 je ac6b - ac34: 48 63 db movsxd rbx,ebx - ac37: 41 8d 79 ff lea edi,[r9-0x1] - ac3b: 48 c1 e3 04 shl rbx,0x4 - ac3f: 48 83 c7 01 add rdi,0x1 - ac43: 48 29 d8 sub rax,rbx - ac46: 48 c1 e7 04 shl rdi,0x4 - ac4a: 48 89 c1 mov rcx,rax - ac4d: 31 c0 xor eax,eax - ac4f: 90 nop - setobjs2s(L, ra + j, base - n + j); - ac50: 48 8b 34 01 mov rsi,QWORD PTR [rcx+rax*1] - ac54: 48 89 34 02 mov QWORD PTR [rdx+rax*1],rsi - ac58: 0f b7 74 01 08 movzx esi,WORD PTR [rcx+rax*1+0x8] - ac5d: 66 89 74 02 08 mov WORD PTR [rdx+rax*1+0x8],si - ac62: 48 83 c0 10 add rax,0x10 - for (j = 0; j < b && j < n; j++) - ac66: 48 39 f8 cmp rax,rdi - ac69: 75 e5 jne ac50 - for (; j < b; j++) /* complete required results with nil */ - ac6b: 45 39 c8 cmp r8d,r9d - ac6e: 7e 2f jle ac9f - ac70: 41 8d 48 ff lea ecx,[r8-0x1] - ac74: 49 63 f1 movsxd rsi,r9d - ac77: 44 29 c9 sub ecx,r9d - ac7a: 48 89 f0 mov rax,rsi - ac7d: 48 01 f1 add rcx,rsi - ac80: 48 c1 e0 04 shl rax,0x4 - ac84: 48 c1 e1 04 shl rcx,0x4 - ac88: 48 01 d0 add rax,rdx - ac8b: 48 8d 54 0a 10 lea rdx,[rdx+rcx*1+0x10] - setnilvalue(ra + j); - ac90: 31 c9 xor ecx,ecx - ac92: 48 83 c0 10 add rax,0x10 - ac96: 66 89 48 f8 mov WORD PTR [rax-0x8],cx - for (; j < b; j++) /* complete required results with nil */ - ac9a: 48 39 d0 cmp rax,rdx - ac9d: 75 f1 jne ac90 -} - ac9f: 48 83 c4 08 add rsp,0x8 - aca3: 5b pop rbx - aca4: 5d pop rbp - aca5: 41 5c pop r12 - aca7: 41 5d pop r13 - aca9: c3 ret - acaa: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - Protect_base(luaD_checkstack(L, n)); - acb0: 48 8b 57 30 mov rdx,QWORD PTR [rdi+0x30] - acb4: 48 2b 57 10 sub rdx,QWORD PTR [rdi+0x10] - acb8: 48 89 f5 mov rbp,rsi - acbb: 48 63 f3 movsxd rsi,ebx - acbe: 48 c1 fa 04 sar rdx,0x4 - acc2: 49 89 fc mov r12,rdi - acc5: 48 39 f2 cmp rdx,rsi - acc8: 7e 26 jle acf0 - L->top = ra + n; - acca: 48 63 cb movsxd rcx,ebx - ra = base + a; /* previous call may change the stack */ - accd: 4a 8d 14 28 lea rdx,[rax+r13*1] - L->top = ra + n; - acd1: 41 89 d9 mov r9d,ebx - b = n; /* get all var. arguments */ - acd4: 41 89 d8 mov r8d,ebx - L->top = ra + n; - acd7: 48 c1 e1 04 shl rcx,0x4 - acdb: 48 01 d1 add rcx,rdx - acde: 49 89 4c 24 10 mov QWORD PTR [r12+0x10],rcx - ace3: e9 47 ff ff ff jmp ac2f - ace8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - acef: 00 - Protect_base(luaD_checkstack(L, n)); - acf0: 89 de mov esi,ebx - acf2: e8 00 00 00 00 call acf7 - acf7: 48 8b 45 20 mov rax,QWORD PTR [rbp+0x20] - acfb: eb cd jmp acca - acfd: 0f 1f 00 nop DWORD PTR [rax] - -000000000000ad00 : - -// This is a cheat for a boring opcode -void raviV_op_loadnil(CallInfo *ci, int a, int b) { - StkId base; - base = ci->u.l.base; - TValue *ra = base + a; - ad00: 48 63 f6 movsxd rsi,esi - ad03: 48 8b 47 20 mov rax,QWORD PTR [rdi+0x20] - ad07: 89 d2 mov edx,edx - ad09: 48 c1 e6 04 shl rsi,0x4 - ad0d: 48 83 c2 01 add rdx,0x1 - ad11: 48 01 f0 add rax,rsi - ad14: 48 c1 e2 04 shl rdx,0x4 - ad18: 48 01 c2 add rdx,rax - ad1b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - do { setnilvalue(ra++); } while (b--); - ad20: 48 83 c0 10 add rax,0x10 - ad24: 31 c9 xor ecx,ecx - ad26: 66 89 48 f8 mov WORD PTR [rax-0x8],cx - ad2a: 48 39 d0 cmp rax,rdx - ad2d: 75 f1 jne ad20 -} - ad2f: c3 ret - -000000000000ad30 : - -void raviV_op_setupvali(lua_State *L, LClosure *cl, TValue *ra, int b) { - ad30: 55 push rbp - ad31: 48 89 fd mov rbp,rdi - ad34: 48 89 d7 mov rdi,rdx - ad37: 53 push rbx - ad38: 48 89 f3 mov rbx,rsi - ad3b: 48 83 ec 28 sub rsp,0x28 - ad3f: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - ad46: 00 00 - ad48: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - ad4d: 31 c0 xor eax,eax - lua_Integer ia; - if (tointeger(ra, &ia)) { - ad4f: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - ad54: 75 3a jne ad90 - ad56: 48 8b 12 mov rdx,QWORD PTR [rdx] - UpVal *uv = cl->upvals[b]; - ad59: 48 63 c9 movsxd rcx,ecx - setivalue(uv->v, ia); - ad5c: 48 8b 44 cb 20 mov rax,QWORD PTR [rbx+rcx*8+0x20] - ad61: 48 8b 00 mov rax,QWORD PTR [rax] - ad64: 48 89 10 mov QWORD PTR [rax],rdx - ad67: ba 13 00 00 00 mov edx,0x13 - ad6c: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - } - else - luaG_runerror( - L, "upvalue of integer type, cannot be set to non integer value"); -} - ad70: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - ad75: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - ad7c: 00 00 - ad7e: 75 2f jne adaf - ad80: 48 83 c4 28 add rsp,0x28 - ad84: 5b pop rbx - ad85: 5d pop rbp - ad86: c3 ret - ad87: 66 0f 1f 84 00 00 00 nop WORD PTR [rax+rax*1+0x0] - ad8e: 00 00 - if (tointeger(ra, &ia)) { - ad90: 31 d2 xor edx,edx - ad92: 48 8d 74 24 10 lea rsi,[rsp+0x10] - ad97: 89 4c 24 0c mov DWORD PTR [rsp+0xc],ecx - ad9b: e8 00 00 00 00 call ada0 - ada0: 85 c0 test eax,eax - ada2: 74 10 je adb4 - ada4: 48 8b 54 24 10 mov rdx,QWORD PTR [rsp+0x10] - ada9: 8b 4c 24 0c mov ecx,DWORD PTR [rsp+0xc] - adad: eb aa jmp ad59 -} - adaf: e8 00 00 00 00 call adb4 - luaG_runerror( - adb4: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # adbb - adbb: 48 89 ef mov rdi,rbp - adbe: 31 c0 xor eax,eax - adc0: e8 00 00 00 00 call adc5 - adc5: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - adcc: 00 00 00 00 - -000000000000add0 : - -void raviV_op_setupvalf(lua_State *L, LClosure *cl, TValue *ra, int b) { - add0: 55 push rbp - add1: 53 push rbx - add2: 48 89 f3 mov rbx,rsi - add5: 48 83 ec 28 sub rsp,0x28 - add9: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - ade0: 00 00 - ade2: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - ade7: 31 c0 xor eax,eax - lua_Number na; - if (tonumber(ra, &na)) { - ade9: 66 83 7a 08 03 cmp WORD PTR [rdx+0x8],0x3 - adee: 75 38 jne ae28 - adf0: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - UpVal *uv = cl->upvals[b]; - adf4: 48 63 c9 movsxd rcx,ecx - setfltvalue(uv->v, na); - adf7: ba 03 00 00 00 mov edx,0x3 - adfc: 48 8b 44 cb 20 mov rax,QWORD PTR [rbx+rcx*8+0x20] - ae01: 48 8b 00 mov rax,QWORD PTR [rax] - ae04: 66 89 50 08 mov WORD PTR [rax+0x8],dx - ae08: f2 0f 11 00 movsd QWORD PTR [rax],xmm0 - luaC_upvalbarrier(L, uv); - } - else - luaG_runerror(L, - "upvalue of number type, cannot be set to non number value"); -} - ae0c: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - ae11: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - ae18: 00 00 - ae1a: 75 30 jne ae4c - ae1c: 48 83 c4 28 add rsp,0x28 - ae20: 5b pop rbx - ae21: 5d pop rbp - ae22: c3 ret - ae23: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - ae28: 48 89 fd mov rbp,rdi - if (tonumber(ra, &na)) { - ae2b: 48 8d 74 24 10 lea rsi,[rsp+0x10] - ae30: 48 89 d7 mov rdi,rdx - ae33: 89 4c 24 0c mov DWORD PTR [rsp+0xc],ecx - ae37: e8 00 00 00 00 call ae3c - ae3c: 85 c0 test eax,eax - ae3e: 74 11 je ae51 - ae40: f2 0f 10 44 24 10 movsd xmm0,QWORD PTR [rsp+0x10] - ae46: 8b 4c 24 0c mov ecx,DWORD PTR [rsp+0xc] - ae4a: eb a8 jmp adf4 -} - ae4c: e8 00 00 00 00 call ae51 - luaG_runerror(L, - ae51: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # ae58 - ae58: 48 89 ef mov rdi,rbp - ae5b: 31 c0 xor eax,eax - ae5d: e8 00 00 00 00 call ae62 - ae62: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - ae69: 00 00 00 00 - ae6d: 0f 1f 00 nop DWORD PTR [rax] - -000000000000ae70 : - -void raviV_op_setupvalai(lua_State *L, LClosure *cl, TValue *ra, int b) { - if (!ttisiarray(ra)) - ae70: 66 81 7a 08 15 80 cmp WORD PTR [rdx+0x8],0x8015 - ae76: 75 2d jne aea5 - luaG_runerror( - L, "upvalue of integer[] type, cannot be set to non integer[] value"); - UpVal *uv = cl->upvals[b]; - ae78: 48 63 c9 movsxd rcx,ecx - setobj(L, uv->v, ra); - ae7b: 48 8b 12 mov rdx,QWORD PTR [rdx] - UpVal *uv = cl->upvals[b]; - ae7e: 48 8b 74 ce 20 mov rsi,QWORD PTR [rsi+rcx*8+0x20] - setobj(L, uv->v, ra); - ae83: 48 8b 06 mov rax,QWORD PTR [rsi] - ae86: 48 89 10 mov QWORD PTR [rax],rdx - ae89: ba 15 80 ff ff mov edx,0xffff8015 - ae8e: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - ae92: 48 8d 56 10 lea rdx,[rsi+0x10] - ae96: 48 39 d0 cmp rax,rdx - ae99: 74 05 je aea0 - ae9b: c3 ret - ae9c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - aea0: e9 00 00 00 00 jmp aea5 -void raviV_op_setupvalai(lua_State *L, LClosure *cl, TValue *ra, int b) { - aea5: 51 push rcx - luaG_runerror( - aea6: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # aead - aead: 31 c0 xor eax,eax - aeaf: e8 00 00 00 00 call aeb4 - aeb4: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - aebb: 00 00 00 00 - aebf: 90 nop - -000000000000aec0 : -} - -void raviV_op_setupvalaf(lua_State *L, LClosure *cl, TValue *ra, int b) { - if (!ttisfarray(ra)) - aec0: 66 81 7a 08 25 80 cmp WORD PTR [rdx+0x8],0x8025 - aec6: 75 2d jne aef5 - luaG_runerror( - L, "upvalue of number[] type, cannot be set to non number[] value"); - UpVal *uv = cl->upvals[b]; - aec8: 48 63 c9 movsxd rcx,ecx - setobj(L, uv->v, ra); - aecb: 48 8b 12 mov rdx,QWORD PTR [rdx] - UpVal *uv = cl->upvals[b]; - aece: 48 8b 74 ce 20 mov rsi,QWORD PTR [rsi+rcx*8+0x20] - setobj(L, uv->v, ra); - aed3: 48 8b 06 mov rax,QWORD PTR [rsi] - aed6: 48 89 10 mov QWORD PTR [rax],rdx - aed9: ba 25 80 ff ff mov edx,0xffff8025 - aede: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - aee2: 48 8d 56 10 lea rdx,[rsi+0x10] - aee6: 48 39 d0 cmp rax,rdx - aee9: 74 05 je aef0 - aeeb: c3 ret - aeec: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - aef0: e9 00 00 00 00 jmp aef5 -void raviV_op_setupvalaf(lua_State *L, LClosure *cl, TValue *ra, int b) { - aef5: 51 push rcx - luaG_runerror( - aef6: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # aefd - aefd: 31 c0 xor eax,eax - aeff: e8 00 00 00 00 call af04 - af04: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - af0b: 00 00 00 00 - af0f: 90 nop - -000000000000af10 : -} - -void raviV_op_setupvalt(lua_State *L, LClosure *cl, TValue *ra, int b) { - if (!ttisLtable(ra)) - af10: 66 81 7a 08 05 80 cmp WORD PTR [rdx+0x8],0x8005 - af16: 75 2d jne af45 - luaG_runerror(L, "upvalue of table type, cannot be set to non table value"); - UpVal *uv = cl->upvals[b]; - af18: 48 63 c9 movsxd rcx,ecx - setobj(L, uv->v, ra); - af1b: 48 8b 12 mov rdx,QWORD PTR [rdx] - UpVal *uv = cl->upvals[b]; - af1e: 48 8b 74 ce 20 mov rsi,QWORD PTR [rsi+rcx*8+0x20] - setobj(L, uv->v, ra); - af23: 48 8b 06 mov rax,QWORD PTR [rsi] - af26: 48 89 10 mov QWORD PTR [rax],rdx - af29: ba 05 80 ff ff mov edx,0xffff8005 - af2e: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - af32: 48 8d 56 10 lea rdx,[rsi+0x10] - af36: 48 39 d0 cmp rax,rdx - af39: 74 05 je af40 - af3b: c3 ret - af3c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - af40: e9 00 00 00 00 jmp af45 -void raviV_op_setupvalt(lua_State *L, LClosure *cl, TValue *ra, int b) { - af45: 51 push rcx - luaG_runerror(L, "upvalue of table type, cannot be set to non table value"); - af46: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # af4d - af4d: 31 c0 xor eax,eax - af4f: e8 00 00 00 00 call af54 - af54: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - af5b: 00 00 00 00 - af5f: 90 nop - -000000000000af60 : -} - -void raviV_op_setupval(lua_State *L, LClosure *cl, TValue *ra, int b) { - UpVal *uv = cl->upvals[b]; - af60: 48 63 c9 movsxd rcx,ecx - af63: 48 8b 74 ce 20 mov rsi,QWORD PTR [rsi+rcx*8+0x20] - setobj(L, uv->v, ra); - af68: 48 8b 0a mov rcx,QWORD PTR [rdx] - af6b: 0f b7 52 08 movzx edx,WORD PTR [rdx+0x8] - af6f: 48 8b 06 mov rax,QWORD PTR [rsi] - af72: 48 89 08 mov QWORD PTR [rax],rcx - af75: 66 89 50 08 mov WORD PTR [rax+0x8],dx - luaC_upvalbarrier(L, uv); - af79: 66 85 d2 test dx,dx - af7c: 78 02 js af80 -} - af7e: c3 ret - af7f: 90 nop - luaC_upvalbarrier(L, uv); - af80: 48 8d 56 10 lea rdx,[rsi+0x10] - af84: 48 39 d0 cmp rax,rdx - af87: 75 f5 jne af7e - af89: e9 00 00 00 00 jmp af8e - af8e: 66 90 xchg ax,ax - -000000000000af90 : - -void raviV_op_add(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - af90: 41 55 push r13 - af92: 49 89 fd mov r13,rdi - af95: 41 54 push r12 - af97: 49 89 f4 mov r12,rsi - af9a: 55 push rbp - af9b: 48 89 d5 mov rbp,rdx - af9e: 53 push rbx - af9f: 48 89 cb mov rbx,rcx - afa2: 48 83 ec 28 sub rsp,0x28 - afa6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - afad: 00 00 - afaf: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - afb4: 31 c0 xor eax,eax - lua_Number nb; - lua_Number nc; - if (ttisinteger(rb) && ttisinteger(rc)) { - afb6: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - afba: 66 83 f8 13 cmp ax,0x13 - afbe: 74 58 je b018 - lua_Integer ib = ivalue(rb); - lua_Integer ic = ivalue(rc); - setivalue(ra, intop(+, ib, ic)); - } - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - afc0: 66 83 f8 03 cmp ax,0x3 - afc4: 75 59 jne b01f - afc6: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - afca: f2 0f 11 44 24 08 movsd QWORD PTR [rsp+0x8],xmm0 - afd0: 66 83 7b 08 03 cmp WORD PTR [rbx+0x8],0x3 - afd5: 0f 85 8d 00 00 00 jne b068 - afdb: f2 0f 10 03 movsd xmm0,QWORD PTR [rbx] - setfltvalue(ra, luai_numadd(L, nb, nc)); - afdf: f2 0f 58 44 24 08 addsd xmm0,QWORD PTR [rsp+0x8] - afe5: b8 03 00 00 00 mov eax,0x3 - afea: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - aff0: f2 41 0f 11 04 24 movsd QWORD PTR [r12],xmm0 - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_ADD); - } -} - aff6: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - affb: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b002: 00 00 - b004: 75 7e jne b084 - b006: 48 83 c4 28 add rsp,0x28 - b00a: 5b pop rbx - b00b: 5d pop rbp - b00c: 41 5c pop r12 - b00e: 41 5d pop r13 - b010: c3 ret - b011: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - if (ttisinteger(rb) && ttisinteger(rc)) { - b018: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - b01d: 74 31 je b050 - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b01f: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b024: 48 89 ef mov rdi,rbp - b027: e8 00 00 00 00 call b02c - b02c: 85 c0 test eax,eax - b02e: 75 a0 jne afd0 - luaT_trybinTM(L, rb, rc, ra, TM_ADD); - b030: 41 b8 06 00 00 00 mov r8d,0x6 - b036: 4c 89 e1 mov rcx,r12 - b039: 48 89 da mov rdx,rbx - b03c: 48 89 ee mov rsi,rbp - b03f: 4c 89 ef mov rdi,r13 - b042: e8 00 00 00 00 call b047 -} - b047: eb ad jmp aff6 - b049: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - setivalue(ra, intop(+, ib, ic)); - b050: 48 8b 01 mov rax,QWORD PTR [rcx] - b053: 48 03 02 add rax,QWORD PTR [rdx] - b056: ba 13 00 00 00 mov edx,0x13 - b05b: 48 89 06 mov QWORD PTR [rsi],rax - b05e: 66 89 56 08 mov WORD PTR [rsi+0x8],dx - if (ttisinteger(rb) && ttisinteger(rc)) { - b062: eb 92 jmp aff6 - b064: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b068: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b06d: 48 89 df mov rdi,rbx - b070: e8 00 00 00 00 call b075 - b075: 85 c0 test eax,eax - b077: 74 b7 je b030 - b079: f2 0f 10 44 24 10 movsd xmm0,QWORD PTR [rsp+0x10] - b07f: e9 5b ff ff ff jmp afdf -} - b084: e8 00 00 00 00 call b089 - b089: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -000000000000b090 : - -void raviV_op_sub(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b090: 41 55 push r13 - b092: 49 89 fd mov r13,rdi - b095: 41 54 push r12 - b097: 49 89 f4 mov r12,rsi - b09a: 55 push rbp - b09b: 48 89 d5 mov rbp,rdx - b09e: 53 push rbx - b09f: 48 89 cb mov rbx,rcx - b0a2: 48 83 ec 28 sub rsp,0x28 - b0a6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b0ad: 00 00 - b0af: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b0b4: 31 c0 xor eax,eax - lua_Number nb; - lua_Number nc; - if (ttisinteger(rb) && ttisinteger(rc)) { - b0b6: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - b0ba: 66 83 f8 13 cmp ax,0x13 - b0be: 74 58 je b118 - lua_Integer ib = ivalue(rb); - lua_Integer ic = ivalue(rc); - setivalue(ra, intop(-, ib, ic)); - } - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b0c0: 66 83 f8 03 cmp ax,0x3 - b0c4: 75 59 jne b11f - b0c6: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - b0ca: f2 0f 11 44 24 08 movsd QWORD PTR [rsp+0x8],xmm0 - b0d0: 66 83 7b 08 03 cmp WORD PTR [rbx+0x8],0x3 - b0d5: 0f 85 8d 00 00 00 jne b168 - b0db: f2 0f 10 0b movsd xmm1,QWORD PTR [rbx] - setfltvalue(ra, luai_numsub(L, nb, nc)); - b0df: f2 0f 10 44 24 08 movsd xmm0,QWORD PTR [rsp+0x8] - b0e5: b8 03 00 00 00 mov eax,0x3 - b0ea: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - b0f0: f2 0f 5c c1 subsd xmm0,xmm1 - b0f4: f2 41 0f 11 04 24 movsd QWORD PTR [r12],xmm0 - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_SUB); - } -} - b0fa: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b0ff: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b106: 00 00 - b108: 75 7a jne b184 - b10a: 48 83 c4 28 add rsp,0x28 - b10e: 5b pop rbx - b10f: 5d pop rbp - b110: 41 5c pop r12 - b112: 41 5d pop r13 - b114: c3 ret - b115: 0f 1f 00 nop DWORD PTR [rax] - if (ttisinteger(rb) && ttisinteger(rc)) { - b118: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - b11d: 74 31 je b150 - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b11f: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b124: 48 89 ef mov rdi,rbp - b127: e8 00 00 00 00 call b12c - b12c: 85 c0 test eax,eax - b12e: 75 a0 jne b0d0 - luaT_trybinTM(L, rb, rc, ra, TM_SUB); - b130: 41 b8 07 00 00 00 mov r8d,0x7 - b136: 4c 89 e1 mov rcx,r12 - b139: 48 89 da mov rdx,rbx - b13c: 48 89 ee mov rsi,rbp - b13f: 4c 89 ef mov rdi,r13 - b142: e8 00 00 00 00 call b147 -} - b147: eb b1 jmp b0fa - b149: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - setivalue(ra, intop(-, ib, ic)); - b150: 48 8b 02 mov rax,QWORD PTR [rdx] - b153: ba 13 00 00 00 mov edx,0x13 - b158: 48 2b 01 sub rax,QWORD PTR [rcx] - b15b: 48 89 06 mov QWORD PTR [rsi],rax - b15e: 66 89 56 08 mov WORD PTR [rsi+0x8],dx - if (ttisinteger(rb) && ttisinteger(rc)) { - b162: eb 96 jmp b0fa - b164: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b168: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b16d: 48 89 df mov rdi,rbx - b170: e8 00 00 00 00 call b175 - b175: 85 c0 test eax,eax - b177: 74 b7 je b130 - b179: f2 0f 10 4c 24 10 movsd xmm1,QWORD PTR [rsp+0x10] - b17f: e9 5b ff ff ff jmp b0df -} - b184: e8 00 00 00 00 call b189 - b189: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -000000000000b190 : - -void raviV_op_mul(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b190: 41 55 push r13 - b192: 49 89 fd mov r13,rdi - b195: 41 54 push r12 - b197: 49 89 f4 mov r12,rsi - b19a: 55 push rbp - b19b: 48 89 d5 mov rbp,rdx - b19e: 53 push rbx - b19f: 48 89 cb mov rbx,rcx - b1a2: 48 83 ec 28 sub rsp,0x28 - b1a6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b1ad: 00 00 - b1af: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b1b4: 31 c0 xor eax,eax - lua_Number nb; - lua_Number nc; - if (ttisinteger(rb) && ttisinteger(rc)) { - b1b6: 0f b7 42 08 movzx eax,WORD PTR [rdx+0x8] - b1ba: 66 83 f8 13 cmp ax,0x13 - b1be: 74 58 je b218 - lua_Integer ib = ivalue(rb); - lua_Integer ic = ivalue(rc); - setivalue(ra, intop(*, ib, ic)); - } - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b1c0: 66 83 f8 03 cmp ax,0x3 - b1c4: 75 59 jne b21f - b1c6: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - b1ca: f2 0f 11 44 24 08 movsd QWORD PTR [rsp+0x8],xmm0 - b1d0: 66 83 7b 08 03 cmp WORD PTR [rbx+0x8],0x3 - b1d5: 0f 85 8d 00 00 00 jne b268 - b1db: f2 0f 10 03 movsd xmm0,QWORD PTR [rbx] - setfltvalue(ra, luai_nummul(L, nb, nc)); - b1df: f2 0f 59 44 24 08 mulsd xmm0,QWORD PTR [rsp+0x8] - b1e5: b8 03 00 00 00 mov eax,0x3 - b1ea: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - b1f0: f2 41 0f 11 04 24 movsd QWORD PTR [r12],xmm0 - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_MUL); - } -} - b1f6: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b1fb: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b202: 00 00 - b204: 75 7e jne b284 - b206: 48 83 c4 28 add rsp,0x28 - b20a: 5b pop rbx - b20b: 5d pop rbp - b20c: 41 5c pop r12 - b20e: 41 5d pop r13 - b210: c3 ret - b211: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - if (ttisinteger(rb) && ttisinteger(rc)) { - b218: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - b21d: 74 31 je b250 - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b21f: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b224: 48 89 ef mov rdi,rbp - b227: e8 00 00 00 00 call b22c - b22c: 85 c0 test eax,eax - b22e: 75 a0 jne b1d0 - luaT_trybinTM(L, rb, rc, ra, TM_MUL); - b230: 41 b8 08 00 00 00 mov r8d,0x8 - b236: 4c 89 e1 mov rcx,r12 - b239: 48 89 da mov rdx,rbx - b23c: 48 89 ee mov rsi,rbp - b23f: 4c 89 ef mov rdi,r13 - b242: e8 00 00 00 00 call b247 -} - b247: eb ad jmp b1f6 - b249: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - setivalue(ra, intop(*, ib, ic)); - b250: 48 8b 02 mov rax,QWORD PTR [rdx] - b253: 48 0f af 01 imul rax,QWORD PTR [rcx] - b257: ba 13 00 00 00 mov edx,0x13 - b25c: 66 89 56 08 mov WORD PTR [rsi+0x8],dx - b260: 48 89 06 mov QWORD PTR [rsi],rax - if (ttisinteger(rb) && ttisinteger(rc)) { - b263: eb 91 jmp b1f6 - b265: 0f 1f 00 nop DWORD PTR [rax] - else if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b268: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b26d: 48 89 df mov rdi,rbx - b270: e8 00 00 00 00 call b275 - b275: 85 c0 test eax,eax - b277: 74 b7 je b230 - b279: f2 0f 10 44 24 10 movsd xmm0,QWORD PTR [rsp+0x10] - b27f: e9 5b ff ff ff jmp b1df -} - b284: e8 00 00 00 00 call b289 - b289: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -000000000000b290 : - -void raviV_op_div(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b290: 41 55 push r13 - b292: 49 89 fd mov r13,rdi - b295: 41 54 push r12 - b297: 49 89 f4 mov r12,rsi - b29a: 55 push rbp - b29b: 48 89 cd mov rbp,rcx - b29e: 53 push rbx - b29f: 48 89 d3 mov rbx,rdx - b2a2: 48 83 ec 28 sub rsp,0x28 - b2a6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b2ad: 00 00 - b2af: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b2b4: 31 c0 xor eax,eax - lua_Number nb; - lua_Number nc; - if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b2b6: 66 83 7a 08 03 cmp WORD PTR [rdx+0x8],0x3 - b2bb: 75 53 jne b310 - b2bd: f2 0f 10 02 movsd xmm0,QWORD PTR [rdx] - b2c1: f2 0f 11 44 24 08 movsd QWORD PTR [rsp+0x8],xmm0 - b2c7: 66 83 7d 08 03 cmp WORD PTR [rbp+0x8],0x3 - b2cc: 75 72 jne b340 - b2ce: f2 0f 10 4d 00 movsd xmm1,QWORD PTR [rbp+0x0] - setfltvalue(ra, luai_numdiv(L, nb, nc)); - b2d3: f2 0f 10 44 24 08 movsd xmm0,QWORD PTR [rsp+0x8] - b2d9: b8 03 00 00 00 mov eax,0x3 - b2de: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - b2e4: f2 0f 5e c1 divsd xmm0,xmm1 - b2e8: f2 41 0f 11 04 24 movsd QWORD PTR [r12],xmm0 - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_DIV); - } -} - b2ee: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b2f3: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b2fa: 00 00 - b2fc: 75 5e jne b35c - b2fe: 48 83 c4 28 add rsp,0x28 - b302: 5b pop rbx - b303: 5d pop rbp - b304: 41 5c pop r12 - b306: 41 5d pop r13 - b308: c3 ret - b309: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b310: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b315: 48 89 d7 mov rdi,rdx - b318: e8 00 00 00 00 call b31d - b31d: 85 c0 test eax,eax - b31f: 75 a6 jne b2c7 - luaT_trybinTM(L, rb, rc, ra, TM_DIV); - b321: 41 b8 0b 00 00 00 mov r8d,0xb - b327: 4c 89 e1 mov rcx,r12 - b32a: 48 89 ea mov rdx,rbp - b32d: 48 89 de mov rsi,rbx - b330: 4c 89 ef mov rdi,r13 - b333: e8 00 00 00 00 call b338 -} - b338: eb b4 jmp b2ee - b33a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (tonumber(rb, &nb) && tonumber(rc, &nc)) { - b340: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b345: 48 89 ef mov rdi,rbp - b348: e8 00 00 00 00 call b34d - b34d: 85 c0 test eax,eax - b34f: 74 d0 je b321 - b351: f2 0f 10 4c 24 10 movsd xmm1,QWORD PTR [rsp+0x10] - b357: e9 77 ff ff ff jmp b2d3 -} - b35c: e8 00 00 00 00 call b361 - b361: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - b368: 00 00 00 00 - b36c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -000000000000b370 : - -void raviV_op_shl(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b370: 41 55 push r13 - b372: 49 89 fd mov r13,rdi - b375: 41 54 push r12 - b377: 49 89 f4 mov r12,rsi - b37a: 55 push rbp - b37b: 48 89 cd mov rbp,rcx - b37e: 53 push rbx - b37f: 48 89 d3 mov rbx,rdx - b382: 48 83 ec 28 sub rsp,0x28 - b386: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b38d: 00 00 - b38f: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b394: 31 c0 xor eax,eax - lua_Integer ib; - lua_Integer ic; - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b396: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b39b: 75 7b jne b418 - b39d: 48 8b 02 mov rax,QWORD PTR [rdx] - b3a0: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b3a5: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - b3aa: 0f 85 a0 00 00 00 jne b450 - b3b0: 48 8b 4d 00 mov rcx,QWORD PTR [rbp+0x0] - setivalue(ra, luaV_shiftl(ib, ic)); - b3b4: 48 8b 54 24 08 mov rdx,QWORD PTR [rsp+0x8] - if (y < 0) { /* shift right? */ - b3b9: 48 85 c9 test rcx,rcx - b3bc: 78 42 js b400 - else return intop(<<, x, y); - b3be: 48 d3 e2 shl rdx,cl - b3c1: b8 00 00 00 00 mov eax,0x0 - b3c6: 48 83 f9 40 cmp rcx,0x40 - b3ca: 48 0f 4c c2 cmovl rax,rdx - setivalue(ra, luaV_shiftl(ib, ic)); - b3ce: 49 89 04 24 mov QWORD PTR [r12],rax - b3d2: b8 13 00 00 00 mov eax,0x13 - b3d7: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_SHL); - } -} - b3dd: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b3e2: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b3e9: 00 00 - b3eb: 0f 85 7c 00 00 00 jne b46d - b3f1: 48 83 c4 28 add rsp,0x28 - b3f5: 5b pop rbx - b3f6: 5d pop rbp - b3f7: 41 5c pop r12 - b3f9: 41 5d pop r13 - b3fb: c3 ret - b3fc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - if (y <= -NBITS) return 0; - b400: 31 c0 xor eax,eax - b402: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - b406: 7c c6 jl b3ce - else return intop(>>, x, -y); - b408: f7 d9 neg ecx - b40a: 48 89 d0 mov rax,rdx - b40d: 48 d3 e8 shr rax,cl - b410: eb bc jmp b3ce - b412: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b418: 31 d2 xor edx,edx - b41a: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b41f: 48 89 df mov rdi,rbx - b422: e8 00 00 00 00 call b427 - b427: 85 c0 test eax,eax - b429: 0f 85 76 ff ff ff jne b3a5 - luaT_trybinTM(L, rb, rc, ra, TM_SHL); - b42f: 41 b8 10 00 00 00 mov r8d,0x10 - b435: 4c 89 e1 mov rcx,r12 - b438: 48 89 ea mov rdx,rbp - b43b: 48 89 de mov rsi,rbx - b43e: 4c 89 ef mov rdi,r13 - b441: e8 00 00 00 00 call b446 -} - b446: eb 95 jmp b3dd - b448: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - b44f: 00 - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b450: 31 d2 xor edx,edx - b452: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b457: 48 89 ef mov rdi,rbp - b45a: e8 00 00 00 00 call b45f - b45f: 85 c0 test eax,eax - b461: 74 cc je b42f - b463: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - b468: e9 47 ff ff ff jmp b3b4 -} - b46d: e8 00 00 00 00 call b472 - b472: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - b479: 00 00 00 00 - b47d: 0f 1f 00 nop DWORD PTR [rax] - -000000000000b480 : - -void raviV_op_shr(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b480: 41 55 push r13 - b482: 49 89 fd mov r13,rdi - b485: 41 54 push r12 - b487: 49 89 f4 mov r12,rsi - b48a: 55 push rbp - b48b: 48 89 cd mov rbp,rcx - b48e: 53 push rbx - b48f: 48 89 d3 mov rbx,rdx - b492: 48 83 ec 28 sub rsp,0x28 - b496: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b49d: 00 00 - b49f: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b4a4: 31 c0 xor eax,eax - lua_Integer ib; - lua_Integer ic; - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b4a6: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b4ab: 0f 85 87 00 00 00 jne b538 - b4b1: 48 8b 02 mov rax,QWORD PTR [rdx] - b4b4: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b4b9: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - b4be: 0f 85 ac 00 00 00 jne b570 - b4c4: 48 8b 4d 00 mov rcx,QWORD PTR [rbp+0x0] - setivalue(ra, luaV_shiftl(ib, -ic)); - b4c8: 48 8b 54 24 08 mov rdx,QWORD PTR [rsp+0x8] - if (y < 0) { /* shift right? */ - b4cd: 48 85 c9 test rcx,rcx - b4d0: 7f 4e jg b520 - if (y <= -NBITS) return 0; - b4d2: 31 c0 xor eax,eax - if (y >= NBITS) return 0; - b4d4: 48 83 f9 c1 cmp rcx,0xffffffffffffffc1 - b4d8: 7d 36 jge b510 - setivalue(ra, luaV_shiftl(ib, -ic)); - b4da: 49 89 04 24 mov QWORD PTR [r12],rax - b4de: b8 13 00 00 00 mov eax,0x13 - b4e3: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_SHR); - } -} - b4e9: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b4ee: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b4f5: 00 00 - b4f7: 0f 85 90 00 00 00 jne b58d - b4fd: 48 83 c4 28 add rsp,0x28 - b501: 5b pop rbx - b502: 5d pop rbp - b503: 41 5c pop r12 - b505: 41 5d pop r13 - b507: c3 ret - b508: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - b50f: 00 - setivalue(ra, luaV_shiftl(ib, -ic)); - b510: 48 f7 d9 neg rcx - else return intop(<<, x, y); - b513: 48 89 d0 mov rax,rdx - b516: 48 d3 e0 shl rax,cl - b519: eb bf jmp b4da - b51b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - else return intop(>>, x, -y); - b520: 48 d3 ea shr rdx,cl - b523: b8 00 00 00 00 mov eax,0x0 - b528: 48 83 f9 40 cmp rcx,0x40 - b52c: 48 0f 4c c2 cmovl rax,rdx - b530: eb a8 jmp b4da - b532: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b538: 31 d2 xor edx,edx - b53a: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b53f: 48 89 df mov rdi,rbx - b542: e8 00 00 00 00 call b547 - b547: 85 c0 test eax,eax - b549: 0f 85 6a ff ff ff jne b4b9 - luaT_trybinTM(L, rb, rc, ra, TM_SHR); - b54f: 41 b8 11 00 00 00 mov r8d,0x11 - b555: 4c 89 e1 mov rcx,r12 - b558: 48 89 ea mov rdx,rbp - b55b: 48 89 de mov rsi,rbx - b55e: 4c 89 ef mov rdi,r13 - b561: e8 00 00 00 00 call b566 -} - b566: eb 81 jmp b4e9 - b568: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - b56f: 00 - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b570: 31 d2 xor edx,edx - b572: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b577: 48 89 ef mov rdi,rbp - b57a: e8 00 00 00 00 call b57f - b57f: 85 c0 test eax,eax - b581: 74 cc je b54f - b583: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - b588: e9 3b ff ff ff jmp b4c8 -} - b58d: e8 00 00 00 00 call b592 - b592: 66 66 2e 0f 1f 84 00 data16 nop WORD PTR cs:[rax+rax*1+0x0] - b599: 00 00 00 00 - b59d: 0f 1f 00 nop DWORD PTR [rax] - -000000000000b5a0 : - -void raviV_op_band(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b5a0: 41 55 push r13 - b5a2: 49 89 fd mov r13,rdi - b5a5: 41 54 push r12 - b5a7: 49 89 f4 mov r12,rsi - b5aa: 55 push rbp - b5ab: 48 89 cd mov rbp,rcx - b5ae: 53 push rbx - b5af: 48 89 d3 mov rbx,rdx - b5b2: 48 83 ec 28 sub rsp,0x28 - b5b6: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b5bd: 00 00 - b5bf: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b5c4: 31 c0 xor eax,eax - lua_Integer ib; - lua_Integer ic; - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b5c6: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b5cb: 75 43 jne b610 - b5cd: 48 8b 02 mov rax,QWORD PTR [rdx] - b5d0: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b5d5: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - b5da: 75 64 jne b640 - b5dc: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - setivalue(ra, intop(&, ib, ic)); - b5e0: 48 23 44 24 08 and rax,QWORD PTR [rsp+0x8] - b5e5: 49 89 04 24 mov QWORD PTR [r12],rax - b5e9: b8 13 00 00 00 mov eax,0x13 - b5ee: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_BAND); - } -} - b5f4: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b5f9: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b600: 00 00 - b602: 75 56 jne b65a - b604: 48 83 c4 28 add rsp,0x28 - b608: 5b pop rbx - b609: 5d pop rbp - b60a: 41 5c pop r12 - b60c: 41 5d pop r13 - b60e: c3 ret - b60f: 90 nop - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b610: 31 d2 xor edx,edx - b612: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b617: 48 89 df mov rdi,rbx - b61a: e8 00 00 00 00 call b61f - b61f: 85 c0 test eax,eax - b621: 75 b2 jne b5d5 - luaT_trybinTM(L, rb, rc, ra, TM_BAND); - b623: 41 b8 0d 00 00 00 mov r8d,0xd - b629: 4c 89 e1 mov rcx,r12 - b62c: 48 89 ea mov rdx,rbp - b62f: 48 89 de mov rsi,rbx - b632: 4c 89 ef mov rdi,r13 - b635: e8 00 00 00 00 call b63a -} - b63a: eb b8 jmp b5f4 - b63c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b640: 31 d2 xor edx,edx - b642: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b647: 48 89 ef mov rdi,rbp - b64a: e8 00 00 00 00 call b64f - b64f: 85 c0 test eax,eax - b651: 74 d0 je b623 - b653: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - b658: eb 86 jmp b5e0 -} - b65a: e8 00 00 00 00 call b65f - b65f: 90 nop - -000000000000b660 : - -void raviV_op_bor(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b660: 41 55 push r13 - b662: 49 89 fd mov r13,rdi - b665: 41 54 push r12 - b667: 49 89 f4 mov r12,rsi - b66a: 55 push rbp - b66b: 48 89 cd mov rbp,rcx - b66e: 53 push rbx - b66f: 48 89 d3 mov rbx,rdx - b672: 48 83 ec 28 sub rsp,0x28 - b676: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b67d: 00 00 - b67f: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b684: 31 c0 xor eax,eax - lua_Integer ib; - lua_Integer ic; - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b686: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b68b: 75 43 jne b6d0 - b68d: 48 8b 02 mov rax,QWORD PTR [rdx] - b690: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b695: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - b69a: 75 64 jne b700 - b69c: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - setivalue(ra, intop(|, ib, ic)); - b6a0: 48 0b 44 24 08 or rax,QWORD PTR [rsp+0x8] - b6a5: 49 89 04 24 mov QWORD PTR [r12],rax - b6a9: b8 13 00 00 00 mov eax,0x13 - b6ae: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_BOR); - } -} - b6b4: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b6b9: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b6c0: 00 00 - b6c2: 75 56 jne b71a - b6c4: 48 83 c4 28 add rsp,0x28 - b6c8: 5b pop rbx - b6c9: 5d pop rbp - b6ca: 41 5c pop r12 - b6cc: 41 5d pop r13 - b6ce: c3 ret - b6cf: 90 nop - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b6d0: 31 d2 xor edx,edx - b6d2: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b6d7: 48 89 df mov rdi,rbx - b6da: e8 00 00 00 00 call b6df - b6df: 85 c0 test eax,eax - b6e1: 75 b2 jne b695 - luaT_trybinTM(L, rb, rc, ra, TM_BOR); - b6e3: 41 b8 0e 00 00 00 mov r8d,0xe - b6e9: 4c 89 e1 mov rcx,r12 - b6ec: 48 89 ea mov rdx,rbp - b6ef: 48 89 de mov rsi,rbx - b6f2: 4c 89 ef mov rdi,r13 - b6f5: e8 00 00 00 00 call b6fa -} - b6fa: eb b8 jmp b6b4 - b6fc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b700: 31 d2 xor edx,edx - b702: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b707: 48 89 ef mov rdi,rbp - b70a: e8 00 00 00 00 call b70f - b70f: 85 c0 test eax,eax - b711: 74 d0 je b6e3 - b713: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - b718: eb 86 jmp b6a0 -} - b71a: e8 00 00 00 00 call b71f - b71f: 90 nop - -000000000000b720 : - -void raviV_op_bxor(lua_State *L, TValue *ra, TValue *rb, TValue *rc) { - b720: 41 55 push r13 - b722: 49 89 fd mov r13,rdi - b725: 41 54 push r12 - b727: 49 89 f4 mov r12,rsi - b72a: 55 push rbp - b72b: 48 89 cd mov rbp,rcx - b72e: 53 push rbx - b72f: 48 89 d3 mov rbx,rdx - b732: 48 83 ec 28 sub rsp,0x28 - b736: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b73d: 00 00 - b73f: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - b744: 31 c0 xor eax,eax - lua_Integer ib; - lua_Integer ic; - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b746: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b74b: 75 43 jne b790 - b74d: 48 8b 02 mov rax,QWORD PTR [rdx] - b750: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b755: 66 83 7d 08 13 cmp WORD PTR [rbp+0x8],0x13 - b75a: 75 64 jne b7c0 - b75c: 48 8b 45 00 mov rax,QWORD PTR [rbp+0x0] - setivalue(ra, intop (^, ib, ic)); - b760: 48 33 44 24 08 xor rax,QWORD PTR [rsp+0x8] - b765: 49 89 04 24 mov QWORD PTR [r12],rax - b769: b8 13 00 00 00 mov eax,0x13 - b76e: 66 41 89 44 24 08 mov WORD PTR [r12+0x8],ax - } - else { - luaT_trybinTM(L, rb, rc, ra, TM_BXOR); - } -} - b774: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - b779: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b780: 00 00 - b782: 75 56 jne b7da - b784: 48 83 c4 28 add rsp,0x28 - b788: 5b pop rbx - b789: 5d pop rbp - b78a: 41 5c pop r12 - b78c: 41 5d pop r13 - b78e: c3 ret - b78f: 90 nop - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b790: 31 d2 xor edx,edx - b792: 48 8d 74 24 08 lea rsi,[rsp+0x8] - b797: 48 89 df mov rdi,rbx - b79a: e8 00 00 00 00 call b79f - b79f: 85 c0 test eax,eax - b7a1: 75 b2 jne b755 - luaT_trybinTM(L, rb, rc, ra, TM_BXOR); - b7a3: 41 b8 0f 00 00 00 mov r8d,0xf - b7a9: 4c 89 e1 mov rcx,r12 - b7ac: 48 89 ea mov rdx,rbp - b7af: 48 89 de mov rsi,rbx - b7b2: 4c 89 ef mov rdi,r13 - b7b5: e8 00 00 00 00 call b7ba -} - b7ba: eb b8 jmp b774 - b7bc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - if (tointeger(rb, &ib) && tointeger(rc, &ic)) { - b7c0: 31 d2 xor edx,edx - b7c2: 48 8d 74 24 10 lea rsi,[rsp+0x10] - b7c7: 48 89 ef mov rdi,rbp - b7ca: e8 00 00 00 00 call b7cf - b7cf: 85 c0 test eax,eax - b7d1: 74 d0 je b7a3 - b7d3: 48 8b 44 24 10 mov rax,QWORD PTR [rsp+0x10] - b7d8: eb 86 jmp b760 -} - b7da: e8 00 00 00 00 call b7df - b7df: 90 nop - -000000000000b7e0 : - -void raviV_op_bnot(lua_State *L, TValue *ra, TValue *rb) { - b7e0: 41 54 push r12 - b7e2: 55 push rbp - b7e3: 48 89 f5 mov rbp,rsi - b7e6: 53 push rbx - b7e7: 48 89 d3 mov rbx,rdx - b7ea: 48 83 ec 10 sub rsp,0x10 - b7ee: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - b7f5: 00 00 - b7f7: 48 89 44 24 08 mov QWORD PTR [rsp+0x8],rax - b7fc: 31 c0 xor eax,eax - lua_Integer ib; - if (tointeger(rb, &ib)) { setivalue(ra, intop (^, ~l_castS2U(0), ib)); } - b7fe: 66 83 7a 08 13 cmp WORD PTR [rdx+0x8],0x13 - b803: 75 33 jne b838 - b805: 48 8b 02 mov rax,QWORD PTR [rdx] - b808: 48 f7 d0 not rax - b80b: 48 89 45 00 mov QWORD PTR [rbp+0x0],rax - b80f: b8 13 00 00 00 mov eax,0x13 - b814: 66 89 45 08 mov WORD PTR [rbp+0x8],ax - else { - luaT_trybinTM(L, rb, rb, ra, TM_BNOT); - } -} - b818: 48 8b 44 24 08 mov rax,QWORD PTR [rsp+0x8] - b81d: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - b824: 00 00 - b826: 75 49 jne b871 - b828: 48 83 c4 10 add rsp,0x10 - b82c: 5b pop rbx - b82d: 5d pop rbp - b82e: 41 5c pop r12 - b830: c3 ret - b831: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - b838: 49 89 fc mov r12,rdi - if (tointeger(rb, &ib)) { setivalue(ra, intop (^, ~l_castS2U(0), ib)); } - b83b: 31 d2 xor edx,edx - b83d: 48 89 e6 mov rsi,rsp - b840: 48 89 df mov rdi,rbx - b843: e8 00 00 00 00 call b848 - b848: 85 c0 test eax,eax - b84a: 74 0c je b858 - b84c: 48 8b 04 24 mov rax,QWORD PTR [rsp] - b850: eb b6 jmp b808 - b852: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - luaT_trybinTM(L, rb, rb, ra, TM_BNOT); - b858: 41 b8 13 00 00 00 mov r8d,0x13 - b85e: 48 89 e9 mov rcx,rbp - b861: 48 89 da mov rdx,rbx - b864: 48 89 de mov rsi,rbx - b867: 4c 89 e7 mov rdi,r12 - b86a: e8 00 00 00 00 call b86f -} - b86f: eb a7 jmp b818 - b871: e8 00 00 00 00 call b876 - b876: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - b87d: 00 00 00 - -000000000000b880 : -** Compute 'val = t[key]' -** In Lua 5.3.2 this function is a macro but we need it to be a function -** so that JIT code can invoke it -*/ -void raviV_gettable_sskey(lua_State *L, const TValue *t, TValue *key, StkId val) { - GETTABLE_INLINE_SSKEY(L, t, key, val); - b880: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - b884: 66 3d 05 80 cmp ax,0x8005 - b888: 75 5f jne b8e9 - b88a: 48 8b 06 mov rax,QWORD PTR [rsi] - b88d: 4c 8b 0a mov r9,QWORD PTR [rdx] - Node *n = hashstr(t, key); - b890: 45 8b 41 0c mov r8d,DWORD PTR [r9+0xc] - b894: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - b898: 49 c1 e0 05 shl r8,0x5 - b89c: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - b8a0: eb 15 jmp b8b7 - b8a2: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - int nx = gnext(n); - b8a8: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - b8ac: 85 c0 test eax,eax - b8ae: 74 30 je b8e0 - n += nx; - b8b0: 48 c1 e0 05 shl rax,0x5 - b8b4: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - b8b7: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - b8be: 75 e8 jne b8a8 - b8c0: 4d 3b 48 10 cmp r9,QWORD PTR [r8+0x10] - b8c4: 75 e2 jne b8a8 - b8c6: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - b8cb: 66 85 c0 test ax,ax - b8ce: 74 2a je b8fa - b8d0: 49 8b 10 mov rdx,QWORD PTR [r8] - b8d3: 66 89 41 08 mov WORD PTR [rcx+0x8],ax - b8d7: 48 89 11 mov QWORD PTR [rcx],rdx - b8da: c3 ret - b8db: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - return luaO_nilobject; /* not found */ - b8e0: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # b8e7 - b8e7: eb dd jmp b8c6 - b8e9: 83 e0 0f and eax,0xf - b8ec: 66 83 f8 05 cmp ax,0x5 - b8f0: 74 0d je b8ff - b8f2: 45 31 c0 xor r8d,r8d - b8f5: e9 b6 4f ff ff jmp 8b0 - b8fa: e9 b1 4f ff ff jmp 8b0 -void raviV_gettable_sskey(lua_State *L, const TValue *t, TValue *key, StkId val) { - b8ff: 50 push rax - GETTABLE_INLINE_SSKEY(L, t, key, val); - b900: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # b907 - b907: e8 00 00 00 00 call b90c - b90c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - -000000000000b910 : -** Compute 't[key] = val' -** In Lua 5.3.2 this function is a macro but we need it to be a function -** so that JIT code can invoke it -*/ -void raviV_settable_sskey(lua_State *L, const TValue *t, TValue *key, StkId val) { - SETTABLE_INLINE_SSKEY(L, t, key, val); - b910: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - b914: 66 3d 05 80 cmp ax,0x8005 - b918: 0f 85 91 00 00 00 jne b9af - b91e: 48 8b 06 mov rax,QWORD PTR [rsi] - b921: 4c 8b 0a mov r9,QWORD PTR [rdx] - Node *n = hashstr(t, key); - b924: 45 8b 41 0c mov r8d,DWORD PTR [r9+0xc] - b928: 44 23 40 50 and r8d,DWORD PTR [rax+0x50] - b92c: 49 c1 e0 05 shl r8,0x5 - b930: 4c 03 40 18 add r8,QWORD PTR [rax+0x18] - b934: eb 19 jmp b94f - b936: 66 2e 0f 1f 84 00 00 nop WORD PTR cs:[rax+rax*1+0x0] - b93d: 00 00 00 - int nx = gnext(n); - b940: 49 63 40 1c movsxd rax,DWORD PTR [r8+0x1c] - if (nx == 0) - b944: 85 c0 test eax,eax - b946: 74 38 je b980 - n += nx; - b948: 48 c1 e0 05 shl rax,0x5 - b94c: 49 01 c0 add r8,rax - if (ttisshrstring(k) && eqshrstr(tsvalue(k), key)) - b94f: 66 41 81 78 18 04 80 cmp WORD PTR [r8+0x18],0x8004 - b956: 75 e8 jne b940 - b958: 4d 3b 48 10 cmp r9,QWORD PTR [r8+0x10] - b95c: 75 e2 jne b940 - b95e: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - b964: 74 29 je b98f - b966: 48 8b 01 mov rax,QWORD PTR [rcx] - b969: 49 89 00 mov QWORD PTR [r8],rax - b96c: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - b970: 66 41 89 40 08 mov WORD PTR [r8+0x8],ax - b975: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - b97a: 78 1c js b998 - b97c: c3 ret - b97d: 0f 1f 00 nop DWORD PTR [rax] - return luaO_nilobject; /* not found */ - b980: 4c 8d 05 00 00 00 00 lea r8,[rip+0x0] # b987 - b987: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - b98d: 75 d7 jne b966 - b98f: e9 7c 50 ff ff jmp a10 - b994: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - b998: 48 8b 36 mov rsi,QWORD PTR [rsi] - b99b: f6 46 09 04 test BYTE PTR [rsi+0x9],0x4 - b99f: 74 db je b97c - b9a1: 48 8b 01 mov rax,QWORD PTR [rcx] - b9a4: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - b9a8: 74 d2 je b97c - b9aa: e9 00 00 00 00 jmp b9af - b9af: 83 e0 0f and eax,0xf - b9b2: 66 83 f8 05 cmp ax,0x5 - b9b6: 74 08 je b9c0 - b9b8: 45 31 c0 xor r8d,r8d - b9bb: e9 50 50 ff ff jmp a10 -void raviV_settable_sskey(lua_State *L, const TValue *t, TValue *key, StkId val) { - b9c0: 50 push rax - SETTABLE_INLINE_SSKEY(L, t, key, val); - b9c1: 48 8d 15 00 00 00 00 lea rdx,[rip+0x0] # b9c8 - b9c8: e8 00 00 00 00 call b9cd - b9cd: 0f 1f 00 nop DWORD PTR [rax] - -000000000000b9d0 : -** Main function for table access (invoking metamethods if needed). -** Compute 'val = t[key]' -** In Lua 5.3.2 this function is a macro but we need it to be a function -** so that JIT code can invoke it -*/ -void raviV_gettable_i(lua_State *L, const TValue *t, TValue *key, StkId val) { - b9d0: 55 push rbp - b9d1: 48 89 fd mov rbp,rdi - b9d4: 53 push rbx - b9d5: 48 89 f3 mov rbx,rsi - b9d8: 48 83 ec 18 sub rsp,0x18 - GETTABLE_INLINE_I(L, t, key, val); - b9dc: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - b9e0: 66 3d 05 80 cmp ax,0x8005 - b9e4: 75 3a jne ba20 - b9e6: 48 8b 3b mov rdi,QWORD PTR [rbx] - b9e9: 48 8b 32 mov rsi,QWORD PTR [rdx] - b9ec: 8b 47 0c mov eax,DWORD PTR [rdi+0xc] - b9ef: 4c 8d 46 ff lea r8,[rsi-0x1] - b9f3: 49 39 c0 cmp r8,rax - b9f6: 73 60 jae ba58 - b9f8: 48 8b 47 10 mov rax,QWORD PTR [rdi+0x10] - b9fc: 48 c1 e6 04 shl rsi,0x4 - ba00: 4c 8d 44 30 f0 lea r8,[rax+rsi*1-0x10] - ba05: 41 0f b7 40 08 movzx eax,WORD PTR [r8+0x8] - ba0a: 66 85 c0 test ax,ax - ba0d: 74 69 je ba78 - ba0f: 49 8b 10 mov rdx,QWORD PTR [r8] - ba12: 66 89 41 08 mov WORD PTR [rcx+0x8],ax - ba16: 48 89 11 mov QWORD PTR [rcx],rdx -} - ba19: 48 83 c4 18 add rsp,0x18 - ba1d: 5b pop rbx - ba1e: 5d pop rbp - ba1f: c3 ret - GETTABLE_INLINE_I(L, t, key, val); - ba20: 66 3d 25 80 cmp ax,0x8025 - ba24: 74 7a je baa0 - ba26: 66 3d 15 80 cmp ax,0x8015 - ba2a: 75 64 jne ba90 - ba2c: 48 8b 36 mov rsi,QWORD PTR [rsi] - ba2f: 48 8b 02 mov rax,QWORD PTR [rdx] - ba32: 48 8b 56 38 mov rdx,QWORD PTR [rsi+0x38] - ba36: 39 46 40 cmp DWORD PTR [rsi+0x40],eax - ba39: 0f 86 89 00 00 00 jbe bac8 - ba3f: 89 c0 mov eax,eax - ba41: 48 8b 04 c2 mov rax,QWORD PTR [rdx+rax*8] - ba45: 48 89 01 mov QWORD PTR [rcx],rax - ba48: b8 13 00 00 00 mov eax,0x13 - ba4d: 66 89 41 08 mov WORD PTR [rcx+0x8],ax - ba51: eb c6 jmp ba19 - ba53: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - ba58: 48 89 4c 24 08 mov QWORD PTR [rsp+0x8],rcx - ba5d: 48 89 14 24 mov QWORD PTR [rsp],rdx - ba61: e8 00 00 00 00 call ba66 - ba66: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - ba6b: 48 8b 14 24 mov rdx,QWORD PTR [rsp] - ba6f: 49 89 c0 mov r8,rax - ba72: eb 91 jmp ba05 - ba74: 0f 1f 40 00 nop DWORD PTR [rax+0x0] -} - ba78: 48 83 c4 18 add rsp,0x18 - GETTABLE_INLINE_I(L, t, key, val); - ba7c: 48 89 de mov rsi,rbx - ba7f: 48 89 ef mov rdi,rbp -} - ba82: 5b pop rbx - ba83: 5d pop rbp - GETTABLE_INLINE_I(L, t, key, val); - ba84: e9 27 4e ff ff jmp 8b0 - ba89: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] -} - ba90: 48 83 c4 18 add rsp,0x18 - GETTABLE_INLINE_I(L, t, key, val); - ba94: 45 31 c0 xor r8d,r8d -} - ba97: 5b pop rbx - ba98: 5d pop rbp - GETTABLE_INLINE_I(L, t, key, val); - ba99: e9 12 4e ff ff jmp 8b0 - ba9e: 66 90 xchg ax,ax - baa0: 48 8b 36 mov rsi,QWORD PTR [rsi] - baa3: 48 8b 02 mov rax,QWORD PTR [rdx] - baa6: 48 8b 56 38 mov rdx,QWORD PTR [rsi+0x38] - baaa: 39 46 40 cmp DWORD PTR [rsi+0x40],eax - baad: 76 19 jbe bac8 - baaf: 89 c0 mov eax,eax - bab1: f2 0f 10 04 c2 movsd xmm0,QWORD PTR [rdx+rax*8] - bab6: ba 03 00 00 00 mov edx,0x3 - babb: 66 89 51 08 mov WORD PTR [rcx+0x8],dx - babf: f2 0f 11 01 movsd QWORD PTR [rcx],xmm0 - bac3: e9 51 ff ff ff jmp ba19 - bac8: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # bacf - bacf: 48 89 ef mov rdi,rbp - bad2: 31 c0 xor eax,eax - bad4: e8 00 00 00 00 call bad9 - bad9: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - -000000000000bae0 : -** Main function for table assignment (invoking metamethods if needed). -** Compute 't[key] = val' -** In Lua 5.3.2 this function is a macro but we need it to be a function -** so that JIT code can invoke it -*/ -void raviV_settable_i(lua_State *L, const TValue *t, TValue *key, StkId val) { - bae0: 41 55 push r13 - bae2: 49 89 fd mov r13,rdi - bae5: 41 54 push r12 - bae7: 49 89 d4 mov r12,rdx - baea: 55 push rbp - baeb: 53 push rbx - baec: 48 89 f3 mov rbx,rsi - baef: 48 83 ec 28 sub rsp,0x28 - baf3: 64 48 8b 04 25 28 00 mov rax,QWORD PTR fs:0x28 - bafa: 00 00 - bafc: 48 89 44 24 18 mov QWORD PTR [rsp+0x18],rax - bb01: 31 c0 xor eax,eax - SETTABLE_INLINE_I(L, t, key, val); - bb03: 0f b7 46 08 movzx eax,WORD PTR [rsi+0x8] - bb07: 66 3d 05 80 cmp ax,0x8005 - bb0b: 0f 85 9f 00 00 00 jne bbb0 - bb11: 48 8b 2b mov rbp,QWORD PTR [rbx] - bb14: 48 8b 32 mov rsi,QWORD PTR [rdx] - bb17: 8b 45 0c mov eax,DWORD PTR [rbp+0xc] - bb1a: 48 8d 56 ff lea rdx,[rsi-0x1] - bb1e: 48 39 c2 cmp rdx,rax - bb21: 0f 83 c9 00 00 00 jae bbf0 - bb27: 48 8b 45 10 mov rax,QWORD PTR [rbp+0x10] - bb2b: 48 c1 e6 04 shl rsi,0x4 - bb2f: 4c 8d 44 30 f0 lea r8,[rax+rsi*1-0x10] - bb34: 66 41 83 78 08 00 cmp WORD PTR [r8+0x8],0x0 - bb3a: 74 5c je bb98 - bb3c: 48 8b 01 mov rax,QWORD PTR [rcx] - bb3f: 49 89 00 mov QWORD PTR [r8],rax - bb42: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - bb46: 66 41 89 40 08 mov WORD PTR [r8+0x8],ax - bb4b: 66 83 79 08 00 cmp WORD PTR [rcx+0x8],0x0 - bb50: 78 26 js bb78 -} - bb52: 48 8b 44 24 18 mov rax,QWORD PTR [rsp+0x18] - bb57: 64 48 33 04 25 28 00 xor rax,QWORD PTR fs:0x28 - bb5e: 00 00 - bb60: 0f 85 de 01 00 00 jne bd44 - bb66: 48 83 c4 28 add rsp,0x28 - bb6a: 5b pop rbx - bb6b: 5d pop rbp - bb6c: 41 5c pop r12 - bb6e: 41 5d pop r13 - bb70: c3 ret - bb71: 0f 1f 80 00 00 00 00 nop DWORD PTR [rax+0x0] - SETTABLE_INLINE_I(L, t, key, val); - bb78: f6 45 09 04 test BYTE PTR [rbp+0x9],0x4 - bb7c: 74 d4 je bb52 - bb7e: 48 8b 01 mov rax,QWORD PTR [rcx] - bb81: f6 40 09 03 test BYTE PTR [rax+0x9],0x3 - bb85: 74 cb je bb52 - bb87: 48 89 ee mov rsi,rbp - bb8a: 4c 89 ef mov rdi,r13 - bb8d: e8 00 00 00 00 call bb92 - bb92: eb be jmp bb52 - bb94: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - bb98: 4c 89 e2 mov rdx,r12 - bb9b: 48 89 de mov rsi,rbx - bb9e: 4c 89 ef mov rdi,r13 - bba1: e8 00 00 00 00 call bba6 - bba6: eb aa jmp bb52 - bba8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - bbaf: 00 - bbb0: 66 3d 25 80 cmp ax,0x8025 - bbb4: 74 6a je bc20 - bbb6: 66 3d 15 80 cmp ax,0x8015 - bbba: 75 54 jne bc10 - bbbc: 66 83 79 08 13 cmp WORD PTR [rcx+0x8],0x13 - bbc1: 48 8b 1e mov rbx,QWORD PTR [rsi] - bbc4: 0f 85 96 00 00 00 jne bc60 - bbca: 48 8b 02 mov rax,QWORD PTR [rdx] - bbcd: 48 8b 09 mov rcx,QWORD PTR [rcx] - bbd0: 89 c2 mov edx,eax - bbd2: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - bbd5: 0f 86 1e 01 00 00 jbe bcf9 - bbdb: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - bbdf: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - bbe3: e9 6a ff ff ff jmp bb52 - bbe8: 0f 1f 84 00 00 00 00 nop DWORD PTR [rax+rax*1+0x0] - bbef: 00 - bbf0: 48 89 ef mov rdi,rbp - bbf3: 48 89 4c 24 08 mov QWORD PTR [rsp+0x8],rcx - bbf8: e8 00 00 00 00 call bbfd - bbfd: 48 8b 4c 24 08 mov rcx,QWORD PTR [rsp+0x8] - bc02: 49 89 c0 mov r8,rax - bc05: e9 2a ff ff ff jmp bb34 - bc0a: 66 0f 1f 44 00 00 nop WORD PTR [rax+rax*1+0x0] - bc10: 45 31 c0 xor r8d,r8d - bc13: e8 00 00 00 00 call bc18 -} - bc18: e9 35 ff ff ff jmp bb52 - bc1d: 0f 1f 00 nop DWORD PTR [rax] - SETTABLE_INLINE_I(L, t, key, val); - bc20: 0f b7 41 08 movzx eax,WORD PTR [rcx+0x8] - bc24: 48 8b 1e mov rbx,QWORD PTR [rsi] - bc27: 66 83 f8 03 cmp ax,0x3 - bc2b: 74 73 je bca0 - bc2d: 66 83 f8 13 cmp ax,0x13 - bc31: 0f 85 89 00 00 00 jne bcc0 - bc37: 48 8b 02 mov rax,QWORD PTR [rdx] - bc3a: 66 0f ef c0 pxor xmm0,xmm0 - bc3e: f2 48 0f 2a 01 cvtsi2sd xmm0,QWORD PTR [rcx] - bc43: 89 c2 mov edx,eax - bc45: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - bc48: 0f 86 d9 00 00 00 jbe bd27 - bc4e: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - bc52: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - bc57: e9 f6 fe ff ff jmp bb52 - bc5c: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - return luaV_tointeger(obj, p, LUA_FLOORN2I); - bc60: 31 d2 xor edx,edx - bc62: 48 8d 74 24 10 lea rsi,[rsp+0x10] - bc67: 48 89 cf mov rdi,rcx - SETTABLE_INLINE_I(L, t, key, val); - bc6a: 48 c7 44 24 10 00 00 mov QWORD PTR [rsp+0x10],0x0 - bc71: 00 00 - return luaV_tointeger(obj, p, LUA_FLOORN2I); - bc73: e8 00 00 00 00 call bc78 - SETTABLE_INLINE_I(L, t, key, val); - bc78: 85 c0 test eax,eax - bc7a: 0f 84 da 00 00 00 je bd5a - bc80: 49 8b 04 24 mov rax,QWORD PTR [r12] - bc84: 48 8b 4c 24 10 mov rcx,QWORD PTR [rsp+0x10] - bc89: 89 c2 mov edx,eax - bc8b: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - bc8e: 76 76 jbe bd06 - bc90: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - bc94: 48 89 0c d0 mov QWORD PTR [rax+rdx*8],rcx - bc98: e9 b5 fe ff ff jmp bb52 - bc9d: 0f 1f 00 nop DWORD PTR [rax] - bca0: 48 8b 02 mov rax,QWORD PTR [rdx] - bca3: 89 c2 mov edx,eax - bca5: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - bca8: 76 6c jbe bd16 - bcaa: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - bcae: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - bcb2: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - bcb7: e9 96 fe ff ff jmp bb52 - bcbc: 0f 1f 40 00 nop DWORD PTR [rax+0x0] - bcc0: 48 8d 74 24 10 lea rsi,[rsp+0x10] - bcc5: 48 89 cf mov rdi,rcx - bcc8: 48 c7 44 24 10 00 00 mov QWORD PTR [rsp+0x10],0x0 - bccf: 00 00 - bcd1: e8 00 00 00 00 call bcd6 - bcd6: 85 c0 test eax,eax - bcd8: 74 6f je bd49 - bcda: 49 8b 04 24 mov rax,QWORD PTR [r12] - bcde: f2 0f 10 44 24 10 movsd xmm0,QWORD PTR [rsp+0x10] - bce4: 89 c2 mov edx,eax - bce6: 39 43 40 cmp DWORD PTR [rbx+0x40],eax - bce9: 76 49 jbe bd34 - bceb: 48 8b 43 38 mov rax,QWORD PTR [rbx+0x38] - bcef: f2 0f 11 04 d0 movsd QWORD PTR [rax+rdx*8],xmm0 - bcf4: e9 59 fe ff ff jmp bb52 - bcf9: 48 89 de mov rsi,rbx - bcfc: e8 00 00 00 00 call bd01 - bd01: e9 4c fe ff ff jmp bb52 - bd06: 48 89 de mov rsi,rbx - bd09: 4c 89 ef mov rdi,r13 - bd0c: e8 00 00 00 00 call bd11 - bd11: e9 3c fe ff ff jmp bb52 - bd16: f2 0f 10 01 movsd xmm0,QWORD PTR [rcx] - bd1a: 48 89 de mov rsi,rbx - bd1d: e8 00 00 00 00 call bd22 - bd22: e9 2b fe ff ff jmp bb52 - bd27: 48 89 de mov rsi,rbx - bd2a: e8 00 00 00 00 call bd2f - bd2f: e9 1e fe ff ff jmp bb52 - bd34: 48 89 de mov rsi,rbx - bd37: 4c 89 ef mov rdi,r13 - bd3a: e8 00 00 00 00 call bd3f - bd3f: e9 0e fe ff ff jmp bb52 -} - bd44: e8 00 00 00 00 call bd49 - SETTABLE_INLINE_I(L, t, key, val); - bd49: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # bd50 - bd50: 4c 89 ef mov rdi,r13 - bd53: 31 c0 xor eax,eax - bd55: e8 00 00 00 00 call bd5a - bd5a: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # bd61 - bd61: 4c 89 ef mov rdi,r13 - bd64: 31 c0 xor eax,eax - bd66: e8 00 00 00 00 call bd6b - bd6b: 0f 1f 44 00 00 nop DWORD PTR [rax+rax*1+0x0] - -000000000000bd70 : -/** -** Opcode TOTYPE validates that the register A contains a -** type whose metatable is registered by name in constant Bx -*/ -void raviV_op_totype(lua_State *L, TValue *ra, TValue *rb) { - if (ttisnil(ra)) - bd70: 66 83 7e 08 00 cmp WORD PTR [rsi+0x8],0x0 - bd75: 74 29 je bda0 - bd77: 48 89 d0 mov rax,rdx -void raviV_op_totype(lua_State *L, TValue *ra, TValue *rb) { - bd7a: 48 83 ec 08 sub rsp,0x8 - bd7e: 48 89 f2 mov rdx,rsi - return; - if (!ttisshrstring(rb)) luaG_runerror(L, "type name must be string"); - bd81: 66 81 78 08 04 80 cmp WORD PTR [rax+0x8],0x8004 - bd87: 75 28 jne bdb1 - TString *key = tsvalue(rb); - bd89: 4c 8b 08 mov r9,QWORD PTR [rax] - if (!raviV_check_usertype(L, key, ra)) - bd8c: 4c 89 ce mov rsi,r9 - bd8f: e8 00 00 00 00 call bd94 - bd94: 85 c0 test eax,eax - bd96: 74 09 je bda1 - luaG_runerror(L, "type mismatch: expected %s", getstr(key)); -} - bd98: 48 83 c4 08 add rsp,0x8 - bd9c: c3 ret - bd9d: 0f 1f 00 nop DWORD PTR [rax] - bda0: c3 ret - luaG_runerror(L, "type mismatch: expected %s", getstr(key)); - bda1: 49 8d 51 18 lea rdx,[r9+0x18] - bda5: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # bdac - bdac: e8 00 00 00 00 call bdb1 - if (!ttisshrstring(rb)) luaG_runerror(L, "type name must be string"); - bdb1: 48 8d 35 00 00 00 00 lea rsi,[rip+0x0] # bdb8 - bdb8: 31 c0 xor eax,eax - bdba: e8 00 00 00 00 call bdbf diff --git a/vmbuilder/docs/asm-calling-sequence.rst b/vmbuilder/docs/asm-calling-sequence.rst deleted file mode 100644 index bebf1d9..0000000 --- a/vmbuilder/docs/asm-calling-sequence.rst +++ /dev/null @@ -1,35 +0,0 @@ -X86-64 calling sequence -======================= - -On Windows 64-bit calling sequence requires caller to reserve 32 bytes (for 4 register parameters). See below sequence for example:: - - subq $32, %rsp - movq %rcx, %rsi - movq 32(%rsi), %rdi - movq (%rdi), %rax - movq 32(%rdi), %rbx - movq (%rax), %rax - movq 24(%rax), %rax - cmpl $0, 32(%rax) - jle .LBB0_2 - movabsq $luaF_close, %rax - movq %rsi, %rcx - movq %rbx, %rdx - callq *%rax - .LBB0_2: - movabsq $luaD_poscall, %rax - xorl %r9d, %r9d - movq %rsi, %rcx - movq %rdi, %rdx - movq %rbx, %r8 - addq $32, %rsp - -References -========== -* `X86-64 Calling conventions `_ -* `Windows X86-64 Conventions `_ - -Windows Unwind Data -=================== -* `Manual Stack Reconstruction `_. -* `X84 Deep Dive `_ - has useful depiction of unwind info on Win64. diff --git a/vmbuilder/docs/luajit_buildvm.rst b/vmbuilder/docs/luajit_buildvm.rst deleted file mode 100644 index 64ddb42..0000000 --- a/vmbuilder/docs/luajit_buildvm.rst +++ /dev/null @@ -1,29 +0,0 @@ -Notes on LuaJIT 2.1 Interpreter VM -================================== - -These notes are only for X86-64 architecture. - -* The VM code is generated using a number of steps: - - 1. First the `vm_x86.dasc `_ file is processed by dynasm to create the ``buildvm_arch.h`` file. - 2. Next the generated ``buildvm_arch.h`` is combined with the ``buildvm`` files to create a custom VM code generator called ``buildvm``. - 3. The ``buildvm`` tool is run to output the VM code. The output is an object file in the case of Windows, but on UNIX machines the output is assembly code; however, this file does not contain human readable assembly code - instead the code is output as a sequence of binary values. An example of the output file is available `at the RaptorJIT project `_. - -* The generated VM code contains assembler routines for each LuaJIT bytecode, and also a number of other library and utility functions. -* The offsets of the byte code assembler routines are gathered and used to create the computed goto ``DISPATCH`` table. This table is stored alongside `LuaJIT global_State/lua_State structure in GG_State `_. The initialization of the dispatch table occurs in ``lj_dispatch_init()`` function in `lj_dispatch.c `_. The relevant code is shown below. - -:: - - /* Initialize instruction dispatch table and hot counters. */ - void lj_dispatch_init(GG_State *GG) - { - uint32_t i; - ASMFunction *disp = GG->dispatch; - for (i = 0; i < GG_LEN_SDISP; i++) - disp[GG_LEN_DDISP+i] = disp[i] = makeasmfunc(lj_bc_ofs[i]); - for (i = GG_LEN_SDISP; i < GG_LEN_DDISP; i++) - disp[i] = makeasmfunc(lj_bc_ofs[i]); - /* omitted code */ - } - -* Each generated bye-code assembly function does a fetch of the next bytecode instruction and then jumps to the assembly function for the next op code using the ``DISPATCH`` table. diff --git a/vmbuilder/docs/vm-design.rst b/vmbuilder/docs/vm-design.rst deleted file mode 100644 index 285d6a5..0000000 --- a/vmbuilder/docs/vm-design.rst +++ /dev/null @@ -1,297 +0,0 @@ -Design and Implementation Notes -=============================== -The overall approach is: - -* For each bytecode create an assembler routine -* Create a dispatch table with pointers to the assembler routines; the dispatch table is stored in the Lua global_State structure - but this could change in future -* Each assembler routine will (after completing its action) fetch the next bytecode instruction and jump to the next - assembler routine using the dispatch table (equivalent to computed goto) -* The assembler routines are **not** C functions - they are part of one whole program. Hence they make assumptions about - register usage which will be documented below. The VM as a whole will have a fixed set of register allocations so that most - important information is held in registers. - -Implementation Considerations ------------------------------ -* The dispatch table is stored in global_State - it is not clear yet whether it is worth making a local stack copy of it when the - VM starts executing. - -Why dynasm ----------- -The implementation requires following key abilities that dynasm has: - -* Obtain the offsets of the bytecode labels so that these can be gathered into a dispatch table. -* Use C code to calculate various structure offsets etc. -* Macros to create aliases for registers, and generate common sequences. - -I am not sure whether this combination of features is available in other approaches such as using inline assembler in C code. I have briefly looked at: - -* Inline assembly in gcc / clang - too ugly syntactically to work with -* Inline assembly in D - almost okay - no macros however so simple stuff like creating aliases for registers requires ugly mixin templates. The generated code appears to lack enough controls (such as disabling the frame pointer register, and ensuring correct unwind data on Win64). Also do not know how to get the offsets from generated code. - -Using an assembler like yasm has the problem of computing offsets of C structures. - -Issues with dynasm ------------------- -On Windows 64-bit the generated code requires UNWIND information however the mechanism for this was in LuaJIT specific files (buildvm_peobj) and not fully reusable. I have modified this to de-couple from LuaJIT. This took some effort because LuaJIT's code -has numerous magic numbers with no explanation of what the code is doing. Not very helpful for anyone trying to work out what -the code is doing unless you already know what needs doing. - -I wish dynasm could generate annotated assembly source file that is human readable. This would allow debuggers to display the -source code and would make debugging the assembly instructions much easier. - -Register Allocations --------------------- -The VM will use a fixed set of registers mostly with some register usage varying across routines. The following table shows the -planned usage. - -Nomenclature - -* cs - callee saved, if we call a C function then after it returns we can rely on these registers -* v - volatile, these registers may be overridden by a called function so do not rely on them after function call -* `(n)` - used to pass arg n to function - -+--------------------+------------------+------------------------------+------------------------------------------+ -| Windows X64 reg | Linux X64 reg | Assignment | Notes | -+====================+==================+==============================+==========================================+ -| rbx (cs) | rbx (cs) | PC | Pointer to next bytecode | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rbp (cs) | rbp (cs) | L | Pointer to lua_State | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rdi (cs) | rdi (v) (1) | | | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rsi (cs) | rsi (v) (2) | | | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rsp (cs) | rsp | | Stack pointer | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r12 (cs) | r12 (cs) | CI | CallInfo (Lua frame) | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r13 (cs) | r13 (cs) | LCL | Current function's LClosure | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r14 (cs) | r14 (cs) | DISPATCH | Ptr to Dispatch table | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r15 (cs) | r15 (cs) | KBASE | Ptr to constants table in Proto | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rax (v) | rax (v) | RCa = rax, RC = eax | Scratch - also eax used for | -| | | | the B,C portion of bytecode | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rcx (v) (1) | rcx (v) (4) | RAa = rcx, RA = ecx | Scratch - also ecx used for | -| | | | the value of A in bytecode | -+--------------------+------------------+------------------------------+------------------------------------------+ -| rdx (v) (2) | rdx (v) (3) | RBa = rdx, OP = edx | Scratch - also edx used for | -| | | | the OpCode | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r8 (v) (3) | r8 (v) (5) | BASE | Pointer to Lua stack base | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r9 (v) (4) | r9 (v) (6) | TMP3 | Scratch | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r10 (v) | r10 (v | TMP1 | Scratch | -+--------------------+------------------+------------------------------+------------------------------------------+ -| r11 (v) | r11 (v) | TMP2 | Scratch | -+--------------------+------------------+------------------------------+------------------------------------------+ - -Stack space ------------ -On Win64 every function gets a 32-byte shadow space for the 4 register arguments, which we can use. But we also need -to provide a shadow space for function calls inside the VM. Basically these 4 stack positions cancel out if we make use -of the slots provided by the caller. - -VMBuilder ---------- -The `VMBuilder `_ is a tool that generates the code for the VM. It is a sub-project and the only component that needs to use dynasm. - -To build the tool, you have to use CMake. Following steps are for Windows:: - - cd vmbuilder\src - mkdir build - cd build - cmake -G "Visual Studio 15 Win64" .. - -Above will generate the Visual Studio project that you can open in VS2017. Do a BUILD, followed by INSTALL. The resulting buildvm.exe -will be installed under ``vmbuilber/bin``. - -On Linux, the process is as follows:: - - cd vmbuilder/src - mkdir build - cd build - cmake .. - make - make install - -Running VMBuilder on Windows ----------------------------- -VMBuilder tool is run as follows on Windows:: - - cd vmbuilder\bin - buildvm -m peobj -o vm.obj - buildvm -m bcdef > ravi_bcdef.h - -If you have LLVM installed you can obtain the assembly source as follows:: - - llvm-objdump -unwind-info -d -t vm.obj > vm.asm - -Running VMBuilder on UNIX systems ---------------------------------- -On Linux, the steps for unning ``buildvm`` are:: - - cd vmbuilder/bin - ./buildvm -m elfasm -o vm.s - ./buildvm -m bcdef > ravi_bcdef.h - -Note that you should not have to run VMBuilder manually this way as the Ravi CMake build will do these steps anyway. - -Files generated by VMBuilder ----------------------------- -On Windows VMBuilder generates an object file. On Linux and Mac OSX it generates assembly source file. -The generated file is then linked with the main Ravi library. - -Additionally a header file is generated named 'ravi_bcdef.h' - containing an array of offsets that can be used to obtain the -address of each assembly routine by adding the offset to the 'ravi_vm_asm_begin' symbol. - -Current Issues --------------- -* Some additional work may be necessary to link the ASM routines when shared library builds are on - at least on Windows where - I noticed that the ASM functions were not properly being invoked. Have switched to static builds for now. - -Exported Symbols ----------------- -The main public symbols that are accessed externally are: - -* ravi_vm_asm_begin - this is the start of the generated code, and all the assembly routines are at offets relative to the address of this symbol. -* ravi_luaV_interp - this is the entry VM point, equivalent to luaV_execute(). - -Setup of dispatch table ------------------------ -Currently this occurs in `lstate.c `_ in function ``dispatch_init()`` which is shown below:: - - #ifdef RAVI_USE_ASMVM - /* Initialize dispatch table used by the ASM VM */ - static void dispatch_init(global_State *G) { - ASMFunction *disp = G->dispatch; - for (uint32_t i = 0; i < NUM_OPCODES; i++) { - /* - Following computes an offset for the assembly routine for the given OpCode. - The offset is relative to the global symbol ravi_vm_asm_begin that is - generated as part of the VMBuilder code generation. All the bytecode - routines are at some offset to this global symbol. - */ - /* NOTE: enabling ltests.h modifies the global_State and breaks the assumptions about - the location of the dispatch table */ - disp[i] = makeasmfunc(ravi_bytecode_offsets[i]); - } - } - #endif - -OpCode structure ----------------- -The OpCode is stored in LuaJIT inspired format when the ASM VM is enabled. This is showns below:: - - +---+---+---+----+ - | B | C | A | Op | - +---+---+---+----+ - | Bx | A | Op | - +-------+---+----+ - | Ax | Op | - +-----------+----+ - -Note that the bytecode decoding assumes above and will break if Lua style encoding is used. - -Progress --------- -The only op codes implemented so far are: - -* OP_RETURN (some scenarios to be tested, e.g. upvalues) -* OP_LOADK -* OP_MOVE -* OP_RAVI_FORPREP_IP and OP_RAVI_FORPREP_I1 -* OP_RAVI_FORLOOP_I1 and OP_RAVI_FORLOOP_I1 - -Here is a `link to the generated assembly code on Windows X64 `_. - -The equivalent `Linux assembly code is `_. - -It seems hard to test and validate the assembly code. I have to step through the code instruction by instruction. - -On Windows I debug in Visual Studio 2017. - -On Linux I use Eclipse CDT to debug the code. I use the instruction step mode. - -On Mac OSX I use Xcode. - -I think it might be useful to create a test harness that mocks the Lua structures -and functions so that each bytecode instruction can be tested in isolation. This will need some work however, so not yet sure. -The other alternative is to check by running Lua scripts which is how we test Ravi normally. - -Windows X64 Specifics ---------------------- -On Windows the VMBuilder tool generates object code rather than an assembly source file. Win64 also requires some special data -for stack unwinding in case of exceptions. I believe even longjmps trigger this functionality. - -The way we handle this now is by generating following in the object file:: - - Unwind info: - - Function Table: - Start Address: ravi_vm_asm_begin - End Address: ravi_vm_asm_begin + 0x06a2 - Unwind Info Address: .xdata - Version: 1 - Flags: 0 - Size of prolog: 0 - Number of Codes: 9 - No frame pointer used - Unwind Codes: - 0x00: UOP_AllocSmall 40 - 0x00: UOP_PushNonVol R15 - 0x00: UOP_PushNonVol R14 - 0x00: UOP_PushNonVol R13 - 0x00: UOP_PushNonVol R12 - 0x00: UOP_PushNonVol RBX - 0x00: UOP_PushNonVol RSI - 0x00: UOP_PushNonVol RDI - 0x00: UOP_PushNonVol RBP - -Basically above tells Windows what the function epilogue (stack) looks like so that Windows can correctly restore the registers when -unwinding the stack. Note that the unwind information applies to the entire generated code and not a specific function. In particular -the assumption is that there any entry point in the code needs to have a prologue that is the exact inverse of the -epilogue described above. - -Here is the function prologue:: - - ravi_luaV_interp: - 651: 55 pushq %rbp - 652: 57 pushq %rdi - 653: 56 pushq %rsi - 654: 53 pushq %rbx - 655: 41 54 pushq %r12 - 657: 41 55 pushq %r13 - 659: 41 56 pushq %r14 - 65b: 41 57 pushq %r15 - 65d: 48 83 ec 28 subq $40, %rsp - -And the epilogue:: - - ravi_vm_return: - 691: 48 83 c4 28 addq $40, %rsp - 695: 41 5f popq %r15 - 697: 41 5e popq %r14 - 699: 41 5d popq %r13 - 69b: 41 5c popq %r12 - 69d: 5b popq %rbx - 69e: 5e popq %rsi - 69f: 5f popq %rdi - 6a0: 5d popq %rbp - 6a1: c3 retq - -As you can see the unwind information basically tells Windows what the epilogue is supposed to be, and where to find the saved -values of the registers. - -Building Ravi With New ASM VM ------------------------------ -This is only for the brave who want to hack with the code. - -To enable the new VM first build and install VMBuilder as described above. -Then build Ravi using the cmake flags ``-DSTATIC_BUILD=ON`` and ``-DASM_VM=ON`` enabled. Don't enable JIT. - -Right now the ASM VM is exercised via the ``test_asmvm`` sub project. The ASM VM is only invoked in special cases, i.e. a function has small number of instructions and only contains supported instructions, and additionally as OP_CALL is not yet implemented, you can only call the new VM via the Lua C api (see `test_asmvm() in test_asmvm.c `_). diff --git a/vmbuilder/dynasm/dasm_arm.h b/vmbuilder/dynasm/dasm_arm.h deleted file mode 100644 index a43f7c6..0000000 --- a/vmbuilder/dynasm/dasm_arm.h +++ /dev/null @@ -1,456 +0,0 @@ -/* -** DynASM ARM encoding engine. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#include -#include -#include -#include - -#define DASM_ARCH "arm" - -#ifndef DASM_EXTERN -#define DASM_EXTERN(a,b,c,d) 0 -#endif - -/* Action definitions. */ -enum { - DASM_STOP, DASM_SECTION, DASM_ESC, DASM_REL_EXT, - /* The following actions need a buffer position. */ - DASM_ALIGN, DASM_REL_LG, DASM_LABEL_LG, - /* The following actions also have an argument. */ - DASM_REL_PC, DASM_LABEL_PC, - DASM_IMM, DASM_IMM12, DASM_IMM16, DASM_IMML8, DASM_IMML12, DASM_IMMV8, - DASM__MAX -}; - -/* Maximum number of section buffer positions for a single dasm_put() call. */ -#define DASM_MAXSECPOS 25 - -/* DynASM encoder status codes. Action list offset or number are or'ed in. */ -#define DASM_S_OK 0x00000000 -#define DASM_S_NOMEM 0x01000000 -#define DASM_S_PHASE 0x02000000 -#define DASM_S_MATCH_SEC 0x03000000 -#define DASM_S_RANGE_I 0x11000000 -#define DASM_S_RANGE_SEC 0x12000000 -#define DASM_S_RANGE_LG 0x13000000 -#define DASM_S_RANGE_PC 0x14000000 -#define DASM_S_RANGE_REL 0x15000000 -#define DASM_S_UNDEF_LG 0x21000000 -#define DASM_S_UNDEF_PC 0x22000000 - -/* Macros to convert positions (8 bit section + 24 bit index). */ -#define DASM_POS2IDX(pos) ((pos)&0x00ffffff) -#define DASM_POS2BIAS(pos) ((pos)&0xff000000) -#define DASM_SEC2POS(sec) ((sec)<<24) -#define DASM_POS2SEC(pos) ((pos)>>24) -#define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) - -/* Action list type. */ -typedef const unsigned int *dasm_ActList; - -/* Per-section structure. */ -typedef struct dasm_Section { - int *rbuf; /* Biased buffer pointer (negative section bias). */ - int *buf; /* True buffer pointer. */ - size_t bsize; /* Buffer size in bytes. */ - int pos; /* Biased buffer position. */ - int epos; /* End of biased buffer position - max single put. */ - int ofs; /* Byte offset into section. */ -} dasm_Section; - -/* Core structure holding the DynASM encoding state. */ -struct dasm_State { - size_t psize; /* Allocated size of this structure. */ - dasm_ActList actionlist; /* Current actionlist pointer. */ - int *lglabels; /* Local/global chain/pos ptrs. */ - size_t lgsize; - int *pclabels; /* PC label chains/pos ptrs. */ - size_t pcsize; - void **globals; /* Array of globals (bias -10). */ - dasm_Section *section; /* Pointer to active section. */ - size_t codesize; /* Total size of all code sections. */ - int maxsection; /* 0 <= sectionidx < maxsection. */ - int status; /* Status code. */ - dasm_Section sections[1]; /* All sections. Alloc-extended. */ -}; - -/* The size of the core structure depends on the max. number of sections. */ -#define DASM_PSZ(ms) (sizeof(dasm_State)+(ms-1)*sizeof(dasm_Section)) - - -/* Initialize DynASM state. */ -void dasm_init(Dst_DECL, int maxsection) -{ - dasm_State *D; - size_t psz = 0; - int i; - Dst_REF = NULL; - DASM_M_GROW(Dst, struct dasm_State, Dst_REF, psz, DASM_PSZ(maxsection)); - D = Dst_REF; - D->psize = psz; - D->lglabels = NULL; - D->lgsize = 0; - D->pclabels = NULL; - D->pcsize = 0; - D->globals = NULL; - D->maxsection = maxsection; - for (i = 0; i < maxsection; i++) { - D->sections[i].buf = NULL; /* Need this for pass3. */ - D->sections[i].rbuf = D->sections[i].buf - DASM_SEC2POS(i); - D->sections[i].bsize = 0; - D->sections[i].epos = 0; /* Wrong, but is recalculated after resize. */ - } -} - -/* Free DynASM state. */ -void dasm_free(Dst_DECL) -{ - dasm_State *D = Dst_REF; - int i; - for (i = 0; i < D->maxsection; i++) - if (D->sections[i].buf) - DASM_M_FREE(Dst, D->sections[i].buf, D->sections[i].bsize); - if (D->pclabels) DASM_M_FREE(Dst, D->pclabels, D->pcsize); - if (D->lglabels) DASM_M_FREE(Dst, D->lglabels, D->lgsize); - DASM_M_FREE(Dst, D, D->psize); -} - -/* Setup global label array. Must be called before dasm_setup(). */ -void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl) -{ - dasm_State *D = Dst_REF; - D->globals = gl - 10; /* Negative bias to compensate for locals. */ - DASM_M_GROW(Dst, int, D->lglabels, D->lgsize, (10+maxgl)*sizeof(int)); -} - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -void dasm_growpc(Dst_DECL, unsigned int maxpc) -{ - dasm_State *D = Dst_REF; - size_t osz = D->pcsize; - DASM_M_GROW(Dst, int, D->pclabels, D->pcsize, maxpc*sizeof(int)); - memset((void *)(((unsigned char *)D->pclabels)+osz), 0, D->pcsize-osz); -} - -/* Setup encoder. */ -void dasm_setup(Dst_DECL, const void *actionlist) -{ - dasm_State *D = Dst_REF; - int i; - D->actionlist = (dasm_ActList)actionlist; - D->status = DASM_S_OK; - D->section = &D->sections[0]; - memset((void *)D->lglabels, 0, D->lgsize); - if (D->pclabels) memset((void *)D->pclabels, 0, D->pcsize); - for (i = 0; i < D->maxsection; i++) { - D->sections[i].pos = DASM_SEC2POS(i); - D->sections[i].ofs = 0; - } -} - - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) { \ - D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0) -#define CKPL(kind, st) \ - do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \ - D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0) -#else -#define CK(x, st) ((void)0) -#define CKPL(kind, st) ((void)0) -#endif - -static int dasm_imm12(unsigned int n) -{ - int i; - for (i = 0; i < 16; i++, n = (n << 2) | (n >> 30)) - if (n <= 255) return (int)(n + (i << 8)); - return -1; -} - -/* Pass 1: Store actions and args, link branches/labels, estimate offsets. */ -void dasm_put(Dst_DECL, int start, ...) -{ - va_list ap; - dasm_State *D = Dst_REF; - dasm_ActList p = D->actionlist + start; - dasm_Section *sec = D->section; - int pos = sec->pos, ofs = sec->ofs; - int *b; - - if (pos >= sec->epos) { - DASM_M_GROW(Dst, int, sec->buf, sec->bsize, - sec->bsize + 2*DASM_MAXSECPOS*sizeof(int)); - sec->rbuf = sec->buf - DASM_POS2BIAS(pos); - sec->epos = (int)sec->bsize/sizeof(int) - DASM_MAXSECPOS+DASM_POS2BIAS(pos); - } - - b = sec->rbuf; - b[pos++] = start; - - va_start(ap, start); - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - if (action >= DASM__MAX) { - ofs += 4; - } else { - int *pl, n = action >= DASM_REL_PC ? va_arg(ap, int) : 0; - switch (action) { - case DASM_STOP: goto stop; - case DASM_SECTION: - n = (ins & 255); CK(n < D->maxsection, RANGE_SEC); - D->section = &D->sections[n]; goto stop; - case DASM_ESC: p++; ofs += 4; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; - case DASM_REL_LG: - n = (ins & 2047) - 10; pl = D->lglabels + n; - /* Bkwd rel or global. */ - if (n >= 0) { CK(n>=10||*pl<0, RANGE_LG); CKPL(lg, LG); goto putrel; } - pl += 10; n = *pl; - if (n < 0) n = 0; /* Start new chain for fwd rel if label exists. */ - goto linkrel; - case DASM_REL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putrel: - n = *pl; - if (n < 0) { /* Label exists. Get label pos and store it. */ - b[pos] = -n; - } else { - linkrel: - b[pos] = n; /* Else link to rel chain, anchored at label. */ - *pl = pos; - } - pos++; - break; - case DASM_LABEL_LG: - pl = D->lglabels + (ins & 2047) - 10; CKPL(lg, LG); goto putlabel; - case DASM_LABEL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putlabel: - n = *pl; /* n > 0: Collapse rel chain and replace with label pos. */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; - } - *pl = -pos; /* Label exists now. */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_IMM: - case DASM_IMM16: -#ifdef DASM_CHECKS - CK((n & ((1<<((ins>>10)&31))-1)) == 0, RANGE_I); - if ((ins & 0x8000)) - CK(((n + (1<<(((ins>>5)&31)-1)))>>((ins>>5)&31)) == 0, RANGE_I); - else - CK((n>>((ins>>5)&31)) == 0, RANGE_I); -#endif - b[pos++] = n; - break; - case DASM_IMMV8: - CK((n & 3) == 0, RANGE_I); - n >>= 2; - case DASM_IMML8: - case DASM_IMML12: - CK(n >= 0 ? ((n>>((ins>>5)&31)) == 0) : - (((-n)>>((ins>>5)&31)) == 0), RANGE_I); - b[pos++] = n; - break; - case DASM_IMM12: - CK(dasm_imm12((unsigned int)n) != -1, RANGE_I); - b[pos++] = n; - break; - } - } - } -stop: - va_end(ap); - sec->pos = pos; - sec->ofs = ofs; -} -#undef CK - -/* Pass 2: Link sections, shrink aligns, fix label offsets. */ -int dasm_link(Dst_DECL, size_t *szp) -{ - dasm_State *D = Dst_REF; - int secnum; - int ofs = 0; - -#ifdef DASM_CHECKS - *szp = 0; - if (D->status != DASM_S_OK) return D->status; - { - int pc; - for (pc = 0; pc*sizeof(int) < D->pcsize; pc++) - if (D->pclabels[pc] > 0) return DASM_S_UNDEF_PC|pc; - } -#endif - - { /* Handle globals not defined in this translation unit. */ - int idx; - for (idx = 20; idx*sizeof(int) < D->lgsize; idx++) { - int n = D->lglabels[idx]; - /* Undefined label: Collapse rel chain and replace with marker (< 0). */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } - } - } - - /* Combine all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->rbuf; - int pos = DASM_SEC2POS(secnum); - int lastpos = sec->pos; - - while (pos != lastpos) { - dasm_ActList p = D->actionlist + b[pos++]; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: p++; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; - case DASM_REL_LG: case DASM_REL_PC: pos++; break; - case DASM_LABEL_LG: case DASM_LABEL_PC: b[pos++] += ofs; break; - case DASM_IMM: case DASM_IMM12: case DASM_IMM16: - case DASM_IMML8: case DASM_IMML12: case DASM_IMMV8: pos++; break; - } - } - stop: (void)0; - } - ofs += sec->ofs; /* Next section starts right after current section. */ - } - - D->codesize = ofs; /* Total size of all code sections */ - *szp = ofs; - return DASM_S_OK; -} - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0) -#else -#define CK(x, st) ((void)0) -#endif - -/* Pass 3: Encode sections. */ -int dasm_encode(Dst_DECL, void *buffer) -{ - dasm_State *D = Dst_REF; - char *base = (char *)buffer; - unsigned int *cp = (unsigned int *)buffer; - int secnum; - - /* Encode all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->buf; - int *endb = sec->rbuf + sec->pos; - - while (b != endb) { - dasm_ActList p = D->actionlist + *b++; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - int n = (action >= DASM_ALIGN && action < DASM__MAX) ? *b++ : 0; - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: *cp++ = *p++; break; - case DASM_REL_EXT: - n = DASM_EXTERN(Dst, (unsigned char *)cp, (ins&2047), !(ins&2048)); - goto patchrel; - case DASM_ALIGN: - ins &= 255; while ((((char *)cp - base) & ins)) *cp++ = 0xe1a00000; - break; - case DASM_REL_LG: - CK(n >= 0, UNDEF_LG); - case DASM_REL_PC: - CK(n >= 0, UNDEF_PC); - n = *DASM_POS2PTR(D, n) - (int)((char *)cp - base) - 4; - patchrel: - if ((ins & 0x800) == 0) { - CK((n & 3) == 0 && ((n+0x02000000) >> 26) == 0, RANGE_REL); - cp[-1] |= ((n >> 2) & 0x00ffffff); - } else if ((ins & 0x1000)) { - CK((n & 3) == 0 && -256 <= n && n <= 256, RANGE_REL); - goto patchimml8; - } else if ((ins & 0x2000) == 0) { - CK((n & 3) == 0 && -4096 <= n && n <= 4096, RANGE_REL); - goto patchimml; - } else { - CK((n & 3) == 0 && -1020 <= n && n <= 1020, RANGE_REL); - n >>= 2; - goto patchimml; - } - break; - case DASM_LABEL_LG: - ins &= 2047; if (ins >= 20) D->globals[ins-10] = (void *)(base + n); - break; - case DASM_LABEL_PC: break; - case DASM_IMM: - cp[-1] |= ((n>>((ins>>10)&31)) & ((1<<((ins>>5)&31))-1)) << (ins&31); - break; - case DASM_IMM12: - cp[-1] |= dasm_imm12((unsigned int)n); - break; - case DASM_IMM16: - cp[-1] |= ((n & 0xf000) << 4) | (n & 0x0fff); - break; - case DASM_IMML8: patchimml8: - cp[-1] |= n >= 0 ? (0x00800000 | (n & 0x0f) | ((n & 0xf0) << 4)) : - ((-n & 0x0f) | ((-n & 0xf0) << 4)); - break; - case DASM_IMML12: case DASM_IMMV8: patchimml: - cp[-1] |= n >= 0 ? (0x00800000 | n) : (-n); - break; - default: *cp++ = ins; break; - } - } - stop: (void)0; - } - } - - if (base + D->codesize != (char *)cp) /* Check for phase errors. */ - return DASM_S_PHASE; - return DASM_S_OK; -} -#undef CK - -/* Get PC label offset. */ -int dasm_getpclabel(Dst_DECL, unsigned int pc) -{ - dasm_State *D = Dst_REF; - if (pc*sizeof(int) < D->pcsize) { - int pos = D->pclabels[pc]; - if (pos < 0) return *DASM_POS2PTR(D, -pos); - if (pos > 0) return -1; /* Undefined. */ - } - return -2; /* Unused or out of range. */ -} - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -int dasm_checkstep(Dst_DECL, int secmatch) -{ - dasm_State *D = Dst_REF; - if (D->status == DASM_S_OK) { - int i; - for (i = 1; i <= 9; i++) { - if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_LG|i; break; } - D->lglabels[i] = 0; - } - } - if (D->status == DASM_S_OK && secmatch >= 0 && - D->section != &D->sections[secmatch]) - D->status = DASM_S_MATCH_SEC|(D->section-D->sections); - return D->status; -} -#endif - diff --git a/vmbuilder/dynasm/dasm_arm.lua b/vmbuilder/dynasm/dasm_arm.lua deleted file mode 100644 index 32f595a..0000000 --- a/vmbuilder/dynasm/dasm_arm.lua +++ /dev/null @@ -1,1125 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM ARM module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- - --- Module information: -local _info = { - arch = "arm", - description = "DynASM ARM module", - version = "1.4.0", - vernum = 10400, - release = "2015-10-18", - author = "Mike Pall", - license = "MIT", -} - --- Exported glue functions for the arch-specific module. -local _M = { _info = _info } - --- Cache library functions. -local type, tonumber, pairs, ipairs = type, tonumber, pairs, ipairs -local assert, setmetatable, rawget = assert, setmetatable, rawget -local _s = string -local sub, format, byte, char = _s.sub, _s.format, _s.byte, _s.char -local match, gmatch, gsub = _s.match, _s.gmatch, _s.gsub -local concat, sort, insert = table.concat, table.sort, table.insert -local bit = bit or require("bit") -local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift -local ror, tohex = bit.ror, bit.tohex - --- Inherited tables and callbacks. -local g_opt, g_arch -local wline, werror, wfatal, wwarn - --- Action name list. --- CHECK: Keep this in sync with the C code! -local action_names = { - "STOP", "SECTION", "ESC", "REL_EXT", - "ALIGN", "REL_LG", "LABEL_LG", - "REL_PC", "LABEL_PC", "IMM", "IMM12", "IMM16", "IMML8", "IMML12", "IMMV8", -} - --- Maximum number of section buffer positions for dasm_put(). --- CHECK: Keep this in sync with the C code! -local maxsecpos = 25 -- Keep this low, to avoid excessively long C lines. - --- Action name -> action number. -local map_action = {} -for n,name in ipairs(action_names) do - map_action[name] = n-1 -end - --- Action list buffer. -local actlist = {} - --- Argument list for next dasm_put(). Start with offset 0 into action list. -local actargs = { 0 } - --- Current number of section buffer positions for dasm_put(). -local secpos = 1 - ------------------------------------------------------------------------------- - --- Dump action names and numbers. -local function dumpactions(out) - out:write("DynASM encoding engine action codes:\n") - for n,name in ipairs(action_names) do - local num = map_action[name] - out:write(format(" %-10s %02X %d\n", name, num, num)) - end - out:write("\n") -end - --- Write action list buffer as a huge static C array. -local function writeactions(out, name) - local nn = #actlist - if nn == 0 then nn = 1; actlist[0] = map_action.STOP end - out:write("static const unsigned int ", name, "[", nn, "] = {\n") - for i = 1,nn-1 do - assert(out:write("0x", tohex(actlist[i]), ",\n")) - end - assert(out:write("0x", tohex(actlist[nn]), "\n};\n\n")) -end - ------------------------------------------------------------------------------- - --- Add word to action list. -local function wputxw(n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[#actlist+1] = n -end - --- Add action to list with optional arg. Advance buffer pos, too. -local function waction(action, val, a, num) - local w = assert(map_action[action], "bad action name `"..action.."'") - wputxw(w * 0x10000 + (val or 0)) - if a then actargs[#actargs+1] = a end - if a or num then secpos = secpos + (num or 1) end -end - --- Flush action list (intervening C code or buffer pos overflow). -local function wflush(term) - if #actlist == actargs[1] then return end -- Nothing to flush. - if not term then waction("STOP") end -- Terminate action list. - wline(format("dasm_put(Dst, %s);", concat(actargs, ", ")), true) - actargs = { #actlist } -- Actionlist offset is 1st arg to next dasm_put(). - secpos = 1 -- The actionlist offset occupies a buffer position, too. -end - --- Put escaped word. -local function wputw(n) - if n <= 0x000fffff then waction("ESC") end - wputxw(n) -end - --- Reserve position for word. -local function wpos() - local pos = #actlist+1 - actlist[pos] = "" - return pos -end - --- Store word to reserved position. -local function wputpos(pos, n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - if n <= 0x000fffff then - insert(actlist, pos+1, n) - n = map_action.ESC * 0x10000 - end - actlist[pos] = n -end - ------------------------------------------------------------------------------- - --- Global label name -> global label number. With auto assignment on 1st use. -local next_global = 20 -local map_global = setmetatable({}, { __index = function(t, name) - if not match(name, "^[%a_][%w_]*$") then werror("bad global label") end - local n = next_global - if n > 2047 then werror("too many global labels") end - next_global = n + 1 - t[name] = n - return n -end}) - --- Dump global labels. -local function dumpglobals(out, lvl) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("Global labels:\n") - for i=20,next_global-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write global label enum. -local function writeglobals(out, prefix) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("enum {\n") - for i=20,next_global-1 do - out:write(" ", prefix, t[i], ",\n") - end - out:write(" ", prefix, "_MAX\n};\n") -end - --- Write global label names. -local function writeglobalnames(out, name) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=20,next_global-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Extern label name -> extern label number. With auto assignment on 1st use. -local next_extern = 0 -local map_extern_ = {} -local map_extern = setmetatable({}, { __index = function(t, name) - -- No restrictions on the name for now. - local n = next_extern - if n > 2047 then werror("too many extern labels") end - next_extern = n + 1 - t[name] = n - map_extern_[n] = name - return n -end}) - --- Dump extern labels. -local function dumpexterns(out, lvl) - out:write("Extern labels:\n") - for i=0,next_extern-1 do - out:write(format(" %s\n", map_extern_[i])) - end - out:write("\n") -end - --- Write extern label names. -local function writeexternnames(out, name) - out:write("static const char *const ", name, "[] = {\n") - for i=0,next_extern-1 do - out:write(" \"", map_extern_[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Arch-specific maps. - --- Ext. register name -> int. name. -local map_archdef = { sp = "r13", lr = "r14", pc = "r15", } - --- Int. register name -> ext. name. -local map_reg_rev = { r13 = "sp", r14 = "lr", r15 = "pc", } - -local map_type = {} -- Type name -> { ctype, reg } -local ctypenum = 0 -- Type number (for Dt... macros). - --- Reverse defines for registers. -function _M.revdef(s) - return map_reg_rev[s] or s -end - -local map_shift = { lsl = 0, lsr = 1, asr = 2, ror = 3, } - -local map_cond = { - eq = 0, ne = 1, cs = 2, cc = 3, mi = 4, pl = 5, vs = 6, vc = 7, - hi = 8, ls = 9, ge = 10, lt = 11, gt = 12, le = 13, al = 14, - hs = 2, lo = 3, -} - ------------------------------------------------------------------------------- - --- Template strings for ARM instructions. -local map_op = { - -- Basic data processing instructions. - and_3 = "e0000000DNPs", - eor_3 = "e0200000DNPs", - sub_3 = "e0400000DNPs", - rsb_3 = "e0600000DNPs", - add_3 = "e0800000DNPs", - adc_3 = "e0a00000DNPs", - sbc_3 = "e0c00000DNPs", - rsc_3 = "e0e00000DNPs", - tst_2 = "e1100000NP", - teq_2 = "e1300000NP", - cmp_2 = "e1500000NP", - cmn_2 = "e1700000NP", - orr_3 = "e1800000DNPs", - mov_2 = "e1a00000DPs", - bic_3 = "e1c00000DNPs", - mvn_2 = "e1e00000DPs", - - and_4 = "e0000000DNMps", - eor_4 = "e0200000DNMps", - sub_4 = "e0400000DNMps", - rsb_4 = "e0600000DNMps", - add_4 = "e0800000DNMps", - adc_4 = "e0a00000DNMps", - sbc_4 = "e0c00000DNMps", - rsc_4 = "e0e00000DNMps", - tst_3 = "e1100000NMp", - teq_3 = "e1300000NMp", - cmp_3 = "e1500000NMp", - cmn_3 = "e1700000NMp", - orr_4 = "e1800000DNMps", - mov_3 = "e1a00000DMps", - bic_4 = "e1c00000DNMps", - mvn_3 = "e1e00000DMps", - - lsl_3 = "e1a00000DMws", - lsr_3 = "e1a00020DMws", - asr_3 = "e1a00040DMws", - ror_3 = "e1a00060DMws", - rrx_2 = "e1a00060DMs", - - -- Multiply and multiply-accumulate. - mul_3 = "e0000090NMSs", - mla_4 = "e0200090NMSDs", - umaal_4 = "e0400090DNMSs", -- v6 - mls_4 = "e0600090DNMSs", -- v6T2 - umull_4 = "e0800090DNMSs", - umlal_4 = "e0a00090DNMSs", - smull_4 = "e0c00090DNMSs", - smlal_4 = "e0e00090DNMSs", - - -- Halfword multiply and multiply-accumulate. - smlabb_4 = "e1000080NMSD", -- v5TE - smlatb_4 = "e10000a0NMSD", -- v5TE - smlabt_4 = "e10000c0NMSD", -- v5TE - smlatt_4 = "e10000e0NMSD", -- v5TE - smlawb_4 = "e1200080NMSD", -- v5TE - smulwb_3 = "e12000a0NMS", -- v5TE - smlawt_4 = "e12000c0NMSD", -- v5TE - smulwt_3 = "e12000e0NMS", -- v5TE - smlalbb_4 = "e1400080NMSD", -- v5TE - smlaltb_4 = "e14000a0NMSD", -- v5TE - smlalbt_4 = "e14000c0NMSD", -- v5TE - smlaltt_4 = "e14000e0NMSD", -- v5TE - smulbb_3 = "e1600080NMS", -- v5TE - smultb_3 = "e16000a0NMS", -- v5TE - smulbt_3 = "e16000c0NMS", -- v5TE - smultt_3 = "e16000e0NMS", -- v5TE - - -- Miscellaneous data processing instructions. - clz_2 = "e16f0f10DM", -- v5T - rev_2 = "e6bf0f30DM", -- v6 - rev16_2 = "e6bf0fb0DM", -- v6 - revsh_2 = "e6ff0fb0DM", -- v6 - sel_3 = "e6800fb0DNM", -- v6 - usad8_3 = "e780f010NMS", -- v6 - usada8_4 = "e7800010NMSD", -- v6 - rbit_2 = "e6ff0f30DM", -- v6T2 - movw_2 = "e3000000DW", -- v6T2 - movt_2 = "e3400000DW", -- v6T2 - -- Note: the X encodes width-1, not width. - sbfx_4 = "e7a00050DMvX", -- v6T2 - ubfx_4 = "e7e00050DMvX", -- v6T2 - -- Note: the X encodes the msb field, not the width. - bfc_3 = "e7c0001fDvX", -- v6T2 - bfi_4 = "e7c00010DMvX", -- v6T2 - - -- Packing and unpacking instructions. - pkhbt_3 = "e6800010DNM", pkhbt_4 = "e6800010DNMv", -- v6 - pkhtb_3 = "e6800050DNM", pkhtb_4 = "e6800050DNMv", -- v6 - sxtab_3 = "e6a00070DNM", sxtab_4 = "e6a00070DNMv", -- v6 - sxtab16_3 = "e6800070DNM", sxtab16_4 = "e6800070DNMv", -- v6 - sxtah_3 = "e6b00070DNM", sxtah_4 = "e6b00070DNMv", -- v6 - sxtb_2 = "e6af0070DM", sxtb_3 = "e6af0070DMv", -- v6 - sxtb16_2 = "e68f0070DM", sxtb16_3 = "e68f0070DMv", -- v6 - sxth_2 = "e6bf0070DM", sxth_3 = "e6bf0070DMv", -- v6 - uxtab_3 = "e6e00070DNM", uxtab_4 = "e6e00070DNMv", -- v6 - uxtab16_3 = "e6c00070DNM", uxtab16_4 = "e6c00070DNMv", -- v6 - uxtah_3 = "e6f00070DNM", uxtah_4 = "e6f00070DNMv", -- v6 - uxtb_2 = "e6ef0070DM", uxtb_3 = "e6ef0070DMv", -- v6 - uxtb16_2 = "e6cf0070DM", uxtb16_3 = "e6cf0070DMv", -- v6 - uxth_2 = "e6ff0070DM", uxth_3 = "e6ff0070DMv", -- v6 - - -- Saturating instructions. - qadd_3 = "e1000050DMN", -- v5TE - qsub_3 = "e1200050DMN", -- v5TE - qdadd_3 = "e1400050DMN", -- v5TE - qdsub_3 = "e1600050DMN", -- v5TE - -- Note: the X for ssat* encodes sat_imm-1, not sat_imm. - ssat_3 = "e6a00010DXM", ssat_4 = "e6a00010DXMp", -- v6 - usat_3 = "e6e00010DXM", usat_4 = "e6e00010DXMp", -- v6 - ssat16_3 = "e6a00f30DXM", -- v6 - usat16_3 = "e6e00f30DXM", -- v6 - - -- Parallel addition and subtraction. - sadd16_3 = "e6100f10DNM", -- v6 - sasx_3 = "e6100f30DNM", -- v6 - ssax_3 = "e6100f50DNM", -- v6 - ssub16_3 = "e6100f70DNM", -- v6 - sadd8_3 = "e6100f90DNM", -- v6 - ssub8_3 = "e6100ff0DNM", -- v6 - qadd16_3 = "e6200f10DNM", -- v6 - qasx_3 = "e6200f30DNM", -- v6 - qsax_3 = "e6200f50DNM", -- v6 - qsub16_3 = "e6200f70DNM", -- v6 - qadd8_3 = "e6200f90DNM", -- v6 - qsub8_3 = "e6200ff0DNM", -- v6 - shadd16_3 = "e6300f10DNM", -- v6 - shasx_3 = "e6300f30DNM", -- v6 - shsax_3 = "e6300f50DNM", -- v6 - shsub16_3 = "e6300f70DNM", -- v6 - shadd8_3 = "e6300f90DNM", -- v6 - shsub8_3 = "e6300ff0DNM", -- v6 - uadd16_3 = "e6500f10DNM", -- v6 - uasx_3 = "e6500f30DNM", -- v6 - usax_3 = "e6500f50DNM", -- v6 - usub16_3 = "e6500f70DNM", -- v6 - uadd8_3 = "e6500f90DNM", -- v6 - usub8_3 = "e6500ff0DNM", -- v6 - uqadd16_3 = "e6600f10DNM", -- v6 - uqasx_3 = "e6600f30DNM", -- v6 - uqsax_3 = "e6600f50DNM", -- v6 - uqsub16_3 = "e6600f70DNM", -- v6 - uqadd8_3 = "e6600f90DNM", -- v6 - uqsub8_3 = "e6600ff0DNM", -- v6 - uhadd16_3 = "e6700f10DNM", -- v6 - uhasx_3 = "e6700f30DNM", -- v6 - uhsax_3 = "e6700f50DNM", -- v6 - uhsub16_3 = "e6700f70DNM", -- v6 - uhadd8_3 = "e6700f90DNM", -- v6 - uhsub8_3 = "e6700ff0DNM", -- v6 - - -- Load/store instructions. - str_2 = "e4000000DL", str_3 = "e4000000DL", str_4 = "e4000000DL", - strb_2 = "e4400000DL", strb_3 = "e4400000DL", strb_4 = "e4400000DL", - ldr_2 = "e4100000DL", ldr_3 = "e4100000DL", ldr_4 = "e4100000DL", - ldrb_2 = "e4500000DL", ldrb_3 = "e4500000DL", ldrb_4 = "e4500000DL", - strh_2 = "e00000b0DL", strh_3 = "e00000b0DL", - ldrh_2 = "e01000b0DL", ldrh_3 = "e01000b0DL", - ldrd_2 = "e00000d0DL", ldrd_3 = "e00000d0DL", -- v5TE - ldrsb_2 = "e01000d0DL", ldrsb_3 = "e01000d0DL", - strd_2 = "e00000f0DL", strd_3 = "e00000f0DL", -- v5TE - ldrsh_2 = "e01000f0DL", ldrsh_3 = "e01000f0DL", - - ldm_2 = "e8900000oR", ldmia_2 = "e8900000oR", ldmfd_2 = "e8900000oR", - ldmda_2 = "e8100000oR", ldmfa_2 = "e8100000oR", - ldmdb_2 = "e9100000oR", ldmea_2 = "e9100000oR", - ldmib_2 = "e9900000oR", ldmed_2 = "e9900000oR", - stm_2 = "e8800000oR", stmia_2 = "e8800000oR", stmfd_2 = "e8800000oR", - stmda_2 = "e8000000oR", stmfa_2 = "e8000000oR", - stmdb_2 = "e9000000oR", stmea_2 = "e9000000oR", - stmib_2 = "e9800000oR", stmed_2 = "e9800000oR", - pop_1 = "e8bd0000R", push_1 = "e92d0000R", - - -- Branch instructions. - b_1 = "ea000000B", - bl_1 = "eb000000B", - blx_1 = "e12fff30C", - bx_1 = "e12fff10M", - - -- Miscellaneous instructions. - nop_0 = "e1a00000", - mrs_1 = "e10f0000D", - bkpt_1 = "e1200070K", -- v5T - svc_1 = "ef000000T", swi_1 = "ef000000T", - ud_0 = "e7f001f0", - - -- VFP instructions. - ["vadd.f32_3"] = "ee300a00dnm", - ["vadd.f64_3"] = "ee300b00Gdnm", - ["vsub.f32_3"] = "ee300a40dnm", - ["vsub.f64_3"] = "ee300b40Gdnm", - ["vmul.f32_3"] = "ee200a00dnm", - ["vmul.f64_3"] = "ee200b00Gdnm", - ["vnmul.f32_3"] = "ee200a40dnm", - ["vnmul.f64_3"] = "ee200b40Gdnm", - ["vmla.f32_3"] = "ee000a00dnm", - ["vmla.f64_3"] = "ee000b00Gdnm", - ["vmls.f32_3"] = "ee000a40dnm", - ["vmls.f64_3"] = "ee000b40Gdnm", - ["vnmla.f32_3"] = "ee100a40dnm", - ["vnmla.f64_3"] = "ee100b40Gdnm", - ["vnmls.f32_3"] = "ee100a00dnm", - ["vnmls.f64_3"] = "ee100b00Gdnm", - ["vdiv.f32_3"] = "ee800a00dnm", - ["vdiv.f64_3"] = "ee800b00Gdnm", - - ["vabs.f32_2"] = "eeb00ac0dm", - ["vabs.f64_2"] = "eeb00bc0Gdm", - ["vneg.f32_2"] = "eeb10a40dm", - ["vneg.f64_2"] = "eeb10b40Gdm", - ["vsqrt.f32_2"] = "eeb10ac0dm", - ["vsqrt.f64_2"] = "eeb10bc0Gdm", - ["vcmp.f32_2"] = "eeb40a40dm", - ["vcmp.f64_2"] = "eeb40b40Gdm", - ["vcmpe.f32_2"] = "eeb40ac0dm", - ["vcmpe.f64_2"] = "eeb40bc0Gdm", - ["vcmpz.f32_1"] = "eeb50a40d", - ["vcmpz.f64_1"] = "eeb50b40Gd", - ["vcmpze.f32_1"] = "eeb50ac0d", - ["vcmpze.f64_1"] = "eeb50bc0Gd", - - vldr_2 = "ed100a00dl|ed100b00Gdl", - vstr_2 = "ed000a00dl|ed000b00Gdl", - vldm_2 = "ec900a00or", - vldmia_2 = "ec900a00or", - vldmdb_2 = "ed100a00or", - vpop_1 = "ecbd0a00r", - vstm_2 = "ec800a00or", - vstmia_2 = "ec800a00or", - vstmdb_2 = "ed000a00or", - vpush_1 = "ed2d0a00r", - - ["vmov.f32_2"] = "eeb00a40dm|eeb00a00dY", -- #imm is VFPv3 only - ["vmov.f64_2"] = "eeb00b40Gdm|eeb00b00GdY", -- #imm is VFPv3 only - vmov_2 = "ee100a10Dn|ee000a10nD", - vmov_3 = "ec500a10DNm|ec400a10mDN|ec500b10GDNm|ec400b10GmDN", - - vmrs_0 = "eef1fa10", - vmrs_1 = "eef10a10D", - vmsr_1 = "eee10a10D", - - ["vcvt.s32.f32_2"] = "eebd0ac0dm", - ["vcvt.s32.f64_2"] = "eebd0bc0dGm", - ["vcvt.u32.f32_2"] = "eebc0ac0dm", - ["vcvt.u32.f64_2"] = "eebc0bc0dGm", - ["vcvtr.s32.f32_2"] = "eebd0a40dm", - ["vcvtr.s32.f64_2"] = "eebd0b40dGm", - ["vcvtr.u32.f32_2"] = "eebc0a40dm", - ["vcvtr.u32.f64_2"] = "eebc0b40dGm", - ["vcvt.f32.s32_2"] = "eeb80ac0dm", - ["vcvt.f64.s32_2"] = "eeb80bc0GdFm", - ["vcvt.f32.u32_2"] = "eeb80a40dm", - ["vcvt.f64.u32_2"] = "eeb80b40GdFm", - ["vcvt.f32.f64_2"] = "eeb70bc0dGm", - ["vcvt.f64.f32_2"] = "eeb70ac0GdFm", - - -- VFPv4 only: - ["vfma.f32_3"] = "eea00a00dnm", - ["vfma.f64_3"] = "eea00b00Gdnm", - ["vfms.f32_3"] = "eea00a40dnm", - ["vfms.f64_3"] = "eea00b40Gdnm", - ["vfnma.f32_3"] = "ee900a40dnm", - ["vfnma.f64_3"] = "ee900b40Gdnm", - ["vfnms.f32_3"] = "ee900a00dnm", - ["vfnms.f64_3"] = "ee900b00Gdnm", - - -- NYI: Advanced SIMD instructions. - - -- NYI: I have no need for these instructions right now: - -- swp, swpb, strex, ldrex, strexd, ldrexd, strexb, ldrexb, strexh, ldrexh - -- msr, nopv6, yield, wfe, wfi, sev, dbg, bxj, smc, srs, rfe - -- cps, setend, pli, pld, pldw, clrex, dsb, dmb, isb - -- stc, ldc, mcr, mcr2, mrc, mrc2, mcrr, mcrr2, mrrc, mrrc2, cdp, cdp2 -} - --- Add mnemonics for "s" variants. -do - local t = {} - for k,v in pairs(map_op) do - if sub(v, -1) == "s" then - local v2 = sub(v, 1, 2)..char(byte(v, 3)+1)..sub(v, 4, -2) - t[sub(k, 1, -3).."s"..sub(k, -2)] = v2 - end - end - for k,v in pairs(t) do - map_op[k] = v - end -end - ------------------------------------------------------------------------------- - -local function parse_gpr(expr) - local tname, ovreg = match(expr, "^([%w_]+):(r1?[0-9])$") - local tp = map_type[tname or expr] - if tp then - local reg = ovreg or tp.reg - if not reg then - werror("type `"..(tname or expr).."' needs a register override") - end - expr = reg - end - local r = match(expr, "^r(1?[0-9])$") - if r then - r = tonumber(r) - if r <= 15 then return r, tp end - end - werror("bad register name `"..expr.."'") -end - -local function parse_gpr_pm(expr) - local pm, expr2 = match(expr, "^([+-]?)(.*)$") - return parse_gpr(expr2), (pm == "-") -end - -local function parse_vr(expr, tp) - local t, r = match(expr, "^([sd])([0-9]+)$") - if t == tp then - r = tonumber(r) - if r <= 31 then - if t == "s" then return shr(r, 1), band(r, 1) end - return band(r, 15), shr(r, 4) - end - end - werror("bad register name `"..expr.."'") -end - -local function parse_reglist(reglist) - reglist = match(reglist, "^{%s*([^}]*)}$") - if not reglist then werror("register list expected") end - local rr = 0 - for p in gmatch(reglist..",", "%s*([^,]*),") do - local rbit = shl(1, parse_gpr(gsub(p, "%s+$", ""))) - if band(rr, rbit) ~= 0 then - werror("duplicate register `"..p.."'") - end - rr = rr + rbit - end - return rr -end - -local function parse_vrlist(reglist) - local ta, ra, tb, rb = match(reglist, - "^{%s*([sd])([0-9]+)%s*%-%s*([sd])([0-9]+)%s*}$") - ra, rb = tonumber(ra), tonumber(rb) - if ta and ta == tb and ra and rb and ra <= 31 and rb <= 31 and ra <= rb then - local nr = rb+1 - ra - if ta == "s" then - return shl(shr(ra,1),12)+shl(band(ra,1),22) + nr - else - return shl(band(ra,15),12)+shl(shr(ra,4),22) + nr*2 + 0x100 - end - end - werror("register list expected") -end - -local function parse_imm(imm, bits, shift, scale, signed) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = tonumber(imm) - if n then - local m = sar(n, scale) - if shl(m, scale) == n then - if signed then - local s = sar(m, bits-1) - if s == 0 then return shl(m, shift) - elseif s == -1 then return shl(m + shl(1, bits), shift) end - else - if sar(m, bits) == 0 then return shl(m, shift) end - end - end - werror("out of range immediate `"..imm.."'") - else - waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm) - return 0 - end -end - -local function parse_imm12(imm) - local n = tonumber(imm) - if n then - local m = band(n) - for i=0,-15,-1 do - if shr(m, 8) == 0 then return m + shl(band(i, 15), 8) end - m = ror(m, 2) - end - werror("out of range immediate `"..imm.."'") - else - waction("IMM12", 0, imm) - return 0 - end -end - -local function parse_imm16(imm) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = tonumber(imm) - if n then - if shr(n, 16) == 0 then return band(n, 0x0fff) + shl(band(n, 0xf000), 4) end - werror("out of range immediate `"..imm.."'") - else - waction("IMM16", 32*16, imm) - return 0 - end -end - -local function parse_imm_load(imm, ext) - local n = tonumber(imm) - if n then - if ext then - if n >= -255 and n <= 255 then - local up = 0x00800000 - if n < 0 then n = -n; up = 0 end - return shl(band(n, 0xf0), 4) + band(n, 0x0f) + up - end - else - if n >= -4095 and n <= 4095 then - if n >= 0 then return n+0x00800000 end - return -n - end - end - werror("out of range immediate `"..imm.."'") - else - waction(ext and "IMML8" or "IMML12", 32768 + shl(ext and 8 or 12, 5), imm) - return 0 - end -end - -local function parse_shift(shift, gprok) - if shift == "rrx" then - return 3 * 32 - else - local s, s2 = match(shift, "^(%S+)%s*(.*)$") - s = map_shift[s] - if not s then werror("expected shift operand") end - if sub(s2, 1, 1) == "#" then - return parse_imm(s2, 5, 7, 0, false) + shl(s, 5) - else - if not gprok then werror("expected immediate shift operand") end - return shl(parse_gpr(s2), 8) + shl(s, 5) + 16 - end - end -end - -local function parse_label(label, def) - local prefix = sub(label, 1, 2) - -- =>label (pc label reference) - if prefix == "=>" then - return "PC", 0, sub(label, 3) - end - -- ->name (global label reference) - if prefix == "->" then - return "LG", map_global[sub(label, 3)] - end - if def then - -- [1-9] (local label definition) - if match(label, "^[1-9]$") then - return "LG", 10+tonumber(label) - end - else - -- [<>][1-9] (local label reference) - local dir, lnum = match(label, "^([<>])([1-9])$") - if dir then -- Fwd: 1-9, Bkwd: 11-19. - return "LG", lnum + (dir == ">" and 0 or 10) - end - -- extern label (extern label reference) - local extname = match(label, "^extern%s+(%S+)$") - if extname then - return "EXT", map_extern[extname] - end - end - werror("bad label `"..label.."'") -end - -local function parse_load(params, nparams, n, op) - local oplo = band(op, 255) - local ext, ldrd = (oplo ~= 0), (oplo == 208) - local d - if (ldrd or oplo == 240) then - d = band(shr(op, 12), 15) - if band(d, 1) ~= 0 then werror("odd destination register") end - end - local pn = params[n] - local p1, wb = match(pn, "^%[%s*(.-)%s*%](!?)$") - local p2 = params[n+1] - if not p1 then - if not p2 then - if match(pn, "^[<>=%-]") or match(pn, "^extern%s+") then - local mode, n, s = parse_label(pn, false) - waction("REL_"..mode, n + (ext and 0x1800 or 0x0800), s, 1) - return op + 15 * 65536 + 0x01000000 + (ext and 0x00400000 or 0) - end - local reg, tailr = match(pn, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local d, tp = parse_gpr(reg) - if tp then - waction(ext and "IMML8" or "IMML12", 32768 + 32*(ext and 8 or 12), - format(tp.ctypefmt, tailr)) - return op + shl(d, 16) + 0x01000000 + (ext and 0x00400000 or 0) - end - end - end - werror("expected address operand") - end - if wb == "!" then op = op + 0x00200000 end - if p2 then - if wb == "!" then werror("bad use of '!'") end - local p3 = params[n+2] - op = op + shl(parse_gpr(p1), 16) - local imm = match(p2, "^#(.*)$") - if imm then - local m = parse_imm_load(imm, ext) - if p3 then werror("too many parameters") end - op = op + m + (ext and 0x00400000 or 0) - else - local m, neg = parse_gpr_pm(p2) - if ldrd and (m == d or m-1 == d) then werror("register conflict") end - op = op + m + (neg and 0 or 0x00800000) + (ext and 0 or 0x02000000) - if p3 then op = op + parse_shift(p3) end - end - else - local p1a, p2 = match(p1, "^([^,%s]*)%s*(.*)$") - op = op + shl(parse_gpr(p1a), 16) + 0x01000000 - if p2 ~= "" then - local imm = match(p2, "^,%s*#(.*)$") - if imm then - local m = parse_imm_load(imm, ext) - op = op + m + (ext and 0x00400000 or 0) - else - local p2a, p3 = match(p2, "^,%s*([^,%s]*)%s*,?%s*(.*)$") - local m, neg = parse_gpr_pm(p2a) - if ldrd and (m == d or m-1 == d) then werror("register conflict") end - op = op + m + (neg and 0 or 0x00800000) + (ext and 0 or 0x02000000) - if p3 ~= "" then - if ext then werror("too many parameters") end - op = op + parse_shift(p3) - end - end - else - if wb == "!" then werror("bad use of '!'") end - op = op + (ext and 0x00c00000 or 0x00800000) - end - end - return op -end - -local function parse_vload(q) - local reg, imm = match(q, "^%[%s*([^,%s]*)%s*(.*)%]$") - if reg then - local d = shl(parse_gpr(reg), 16) - if imm == "" then return d end - imm = match(imm, "^,%s*#(.*)$") - if imm then - local n = tonumber(imm) - if n then - if n >= -1020 and n <= 1020 and n%4 == 0 then - return d + (n >= 0 and n/4+0x00800000 or -n/4) - end - werror("out of range immediate `"..imm.."'") - else - waction("IMMV8", 32768 + 32*8, imm) - return d - end - end - else - if match(q, "^[<>=%-]") or match(q, "^extern%s+") then - local mode, n, s = parse_label(q, false) - waction("REL_"..mode, n + 0x2800, s, 1) - return 15 * 65536 - end - local reg, tailr = match(q, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local d, tp = parse_gpr(reg) - if tp then - waction("IMMV8", 32768 + 32*8, format(tp.ctypefmt, tailr)) - return shl(d, 16) - end - end - end - werror("expected address operand") -end - ------------------------------------------------------------------------------- - --- Handle opcodes defined with template strings. -local function parse_template(params, template, nparams, pos) - local op = tonumber(sub(template, 1, 8), 16) - local n = 1 - local vr = "s" - - -- Process each character. - for p in gmatch(sub(template, 9), ".") do - local q = params[n] - if p == "D" then - op = op + shl(parse_gpr(q), 12); n = n + 1 - elseif p == "N" then - op = op + shl(parse_gpr(q), 16); n = n + 1 - elseif p == "S" then - op = op + shl(parse_gpr(q), 8); n = n + 1 - elseif p == "M" then - op = op + parse_gpr(q); n = n + 1 - elseif p == "d" then - local r,h = parse_vr(q, vr); op = op+shl(r,12)+shl(h,22); n = n + 1 - elseif p == "n" then - local r,h = parse_vr(q, vr); op = op+shl(r,16)+shl(h,7); n = n + 1 - elseif p == "m" then - local r,h = parse_vr(q, vr); op = op+r+shl(h,5); n = n + 1 - elseif p == "P" then - local imm = match(q, "^#(.*)$") - if imm then - op = op + parse_imm12(imm) + 0x02000000 - else - op = op + parse_gpr(q) - end - n = n + 1 - elseif p == "p" then - op = op + parse_shift(q, true); n = n + 1 - elseif p == "L" then - op = parse_load(params, nparams, n, op) - elseif p == "l" then - op = op + parse_vload(q) - elseif p == "B" then - local mode, n, s = parse_label(q, false) - waction("REL_"..mode, n, s, 1) - elseif p == "C" then -- blx gpr vs. blx label. - if match(q, "^([%w_]+):(r1?[0-9])$") or match(q, "^r(1?[0-9])$") then - op = op + parse_gpr(q) - else - if op < 0xe0000000 then werror("unconditional instruction") end - local mode, n, s = parse_label(q, false) - waction("REL_"..mode, n, s, 1) - op = 0xfa000000 - end - elseif p == "F" then - vr = "s" - elseif p == "G" then - vr = "d" - elseif p == "o" then - local r, wb = match(q, "^([^!]*)(!?)$") - op = op + shl(parse_gpr(r), 16) + (wb == "!" and 0x00200000 or 0) - n = n + 1 - elseif p == "R" then - op = op + parse_reglist(q); n = n + 1 - elseif p == "r" then - op = op + parse_vrlist(q); n = n + 1 - elseif p == "W" then - op = op + parse_imm16(q); n = n + 1 - elseif p == "v" then - op = op + parse_imm(q, 5, 7, 0, false); n = n + 1 - elseif p == "w" then - local imm = match(q, "^#(.*)$") - if imm then - op = op + parse_imm(q, 5, 7, 0, false); n = n + 1 - else - op = op + shl(parse_gpr(q), 8) + 16 - end - elseif p == "X" then - op = op + parse_imm(q, 5, 16, 0, false); n = n + 1 - elseif p == "Y" then - local imm = tonumber(match(q, "^#(.*)$")); n = n + 1 - if not imm or shr(imm, 8) ~= 0 then - werror("bad immediate operand") - end - op = op + shl(band(imm, 0xf0), 12) + band(imm, 0x0f) - elseif p == "K" then - local imm = tonumber(match(q, "^#(.*)$")); n = n + 1 - if not imm or shr(imm, 16) ~= 0 then - werror("bad immediate operand") - end - op = op + shl(band(imm, 0xfff0), 4) + band(imm, 0x000f) - elseif p == "T" then - op = op + parse_imm(q, 24, 0, 0, false); n = n + 1 - elseif p == "s" then - -- Ignored. - else - assert(false) - end - end - wputpos(pos, op) -end - -map_op[".template__"] = function(params, template, nparams) - if not params then return template:gsub("%x%x%x%x%x%x%x%x", "") end - - -- Limit number of section buffer positions used by a single dasm_put(). - -- A single opcode needs a maximum of 3 positions. - if secpos+3 > maxsecpos then wflush() end - local pos = wpos() - local lpos, apos, spos = #actlist, #actargs, secpos - - local ok, err - for t in gmatch(template, "[^|]+") do - ok, err = pcall(parse_template, params, t, nparams, pos) - if ok then return end - secpos = spos - actlist[lpos+1] = nil - actlist[lpos+2] = nil - actlist[lpos+3] = nil - actargs[apos+1] = nil - actargs[apos+2] = nil - actargs[apos+3] = nil - end - error(err, 0) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode to mark the position where the action list is to be emitted. -map_op[".actionlist_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeactions(out, name) end) -end - --- Pseudo-opcode to mark the position where the global enum is to be emitted. -map_op[".globals_1"] = function(params) - if not params then return "prefix" end - local prefix = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobals(out, prefix) end) -end - --- Pseudo-opcode to mark the position where the global names are to be emitted. -map_op[".globalnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobalnames(out, name) end) -end - --- Pseudo-opcode to mark the position where the extern names are to be emitted. -map_op[".externnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeexternnames(out, name) end) -end - ------------------------------------------------------------------------------- - --- Label pseudo-opcode (converted from trailing colon form). -map_op[".label_1"] = function(params) - if not params then return "[1-9] | ->global | =>pcexpr" end - if secpos+1 > maxsecpos then wflush() end - local mode, n, s = parse_label(params[1], true) - if mode == "EXT" then werror("bad label definition") end - waction("LABEL_"..mode, n, s, 1) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcodes for data storage. -map_op[".long_*"] = function(params) - if not params then return "imm..." end - for _,p in ipairs(params) do - local n = tonumber(p) - if not n then werror("bad immediate `"..p.."'") end - if n < 0 then n = n + 2^32 end - wputw(n) - if secpos+2 > maxsecpos then wflush() end - end -end - --- Alignment pseudo-opcode. -map_op[".align_1"] = function(params) - if not params then return "numpow2" end - if secpos+1 > maxsecpos then wflush() end - local align = tonumber(params[1]) - if align then - local x = align - -- Must be a power of 2 in the range (2 ... 256). - for i=1,8 do - x = x / 2 - if x == 1 then - waction("ALIGN", align-1, nil, 1) -- Action byte is 2**n-1. - return - end - end - end - werror("bad alignment") -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode for (primitive) type definitions (map to C types). -map_op[".type_3"] = function(params, nparams) - if not params then - return nparams == 2 and "name, ctype" or "name, ctype, reg" - end - local name, ctype, reg = params[1], params[2], params[3] - if not match(name, "^[%a_][%w_]*$") then - werror("bad type name `"..name.."'") - end - local tp = map_type[name] - if tp then - werror("duplicate type `"..name.."'") - end - -- Add #type to defines. A bit unclean to put it in map_archdef. - map_archdef["#"..name] = "sizeof("..ctype..")" - -- Add new type and emit shortcut define. - local num = ctypenum + 1 - map_type[name] = { - ctype = ctype, - ctypefmt = format("Dt%X(%%s)", num), - reg = reg, - } - wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype)) - ctypenum = num -end -map_op[".type_2"] = map_op[".type_3"] - --- Dump type definitions. -local function dumptypes(out, lvl) - local t = {} - for name in pairs(map_type) do t[#t+1] = name end - sort(t) - out:write("Type definitions:\n") - for _,name in ipairs(t) do - local tp = map_type[name] - local reg = tp.reg or "" - out:write(format(" %-20s %-20s %s\n", name, tp.ctype, reg)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Set the current section. -function _M.section(num) - waction("SECTION", num) - wflush(true) -- SECTION is a terminal action. -end - ------------------------------------------------------------------------------- - --- Dump architecture description. -function _M.dumparch(out) - out:write(format("DynASM %s version %s, released %s\n\n", - _info.arch, _info.version, _info.release)) - dumpactions(out) -end - --- Dump all user defined elements. -function _M.dumpdef(out, lvl) - dumptypes(out, lvl) - dumpglobals(out, lvl) - dumpexterns(out, lvl) -end - ------------------------------------------------------------------------------- - --- Pass callbacks from/to the DynASM core. -function _M.passcb(wl, we, wf, ww) - wline, werror, wfatal, wwarn = wl, we, wf, ww - return wflush -end - --- Setup the arch-specific module. -function _M.setup(arch, opt) - g_arch, g_opt = arch, opt -end - --- Merge the core maps and the arch-specific maps. -function _M.mergemaps(map_coreop, map_def) - setmetatable(map_op, { __index = function(t, k) - local v = map_coreop[k] - if v then return v end - local k1, cc, k2 = match(k, "^(.-)(..)([._].*)$") - local cv = map_cond[cc] - if cv then - local v = rawget(t, k1..k2) - if type(v) == "string" then - local scv = format("%x", cv) - return gsub(scv..sub(v, 2), "|e", "|"..scv) - end - end - end }) - setmetatable(map_def, { __index = map_archdef }) - return map_op, map_def -end - -return _M - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/dynasm/dasm_arm64.h b/vmbuilder/dynasm/dasm_arm64.h deleted file mode 100644 index 47e1e07..0000000 --- a/vmbuilder/dynasm/dasm_arm64.h +++ /dev/null @@ -1,518 +0,0 @@ -/* -** DynASM ARM64 encoding engine. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#include -#include -#include -#include - -#define DASM_ARCH "arm64" - -#ifndef DASM_EXTERN -#define DASM_EXTERN(a,b,c,d) 0 -#endif - -/* Action definitions. */ -enum { - DASM_STOP, DASM_SECTION, DASM_ESC, DASM_REL_EXT, - /* The following actions need a buffer position. */ - DASM_ALIGN, DASM_REL_LG, DASM_LABEL_LG, - /* The following actions also have an argument. */ - DASM_REL_PC, DASM_LABEL_PC, - DASM_IMM, DASM_IMM6, DASM_IMM12, DASM_IMM13W, DASM_IMM13X, DASM_IMML, - DASM__MAX -}; - -/* Maximum number of section buffer positions for a single dasm_put() call. */ -#define DASM_MAXSECPOS 25 - -/* DynASM encoder status codes. Action list offset or number are or'ed in. */ -#define DASM_S_OK 0x00000000 -#define DASM_S_NOMEM 0x01000000 -#define DASM_S_PHASE 0x02000000 -#define DASM_S_MATCH_SEC 0x03000000 -#define DASM_S_RANGE_I 0x11000000 -#define DASM_S_RANGE_SEC 0x12000000 -#define DASM_S_RANGE_LG 0x13000000 -#define DASM_S_RANGE_PC 0x14000000 -#define DASM_S_RANGE_REL 0x15000000 -#define DASM_S_UNDEF_LG 0x21000000 -#define DASM_S_UNDEF_PC 0x22000000 - -/* Macros to convert positions (8 bit section + 24 bit index). */ -#define DASM_POS2IDX(pos) ((pos)&0x00ffffff) -#define DASM_POS2BIAS(pos) ((pos)&0xff000000) -#define DASM_SEC2POS(sec) ((sec)<<24) -#define DASM_POS2SEC(pos) ((pos)>>24) -#define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) - -/* Action list type. */ -typedef const unsigned int *dasm_ActList; - -/* Per-section structure. */ -typedef struct dasm_Section { - int *rbuf; /* Biased buffer pointer (negative section bias). */ - int *buf; /* True buffer pointer. */ - size_t bsize; /* Buffer size in bytes. */ - int pos; /* Biased buffer position. */ - int epos; /* End of biased buffer position - max single put. */ - int ofs; /* Byte offset into section. */ -} dasm_Section; - -/* Core structure holding the DynASM encoding state. */ -struct dasm_State { - size_t psize; /* Allocated size of this structure. */ - dasm_ActList actionlist; /* Current actionlist pointer. */ - int *lglabels; /* Local/global chain/pos ptrs. */ - size_t lgsize; - int *pclabels; /* PC label chains/pos ptrs. */ - size_t pcsize; - void **globals; /* Array of globals (bias -10). */ - dasm_Section *section; /* Pointer to active section. */ - size_t codesize; /* Total size of all code sections. */ - int maxsection; /* 0 <= sectionidx < maxsection. */ - int status; /* Status code. */ - dasm_Section sections[1]; /* All sections. Alloc-extended. */ -}; - -/* The size of the core structure depends on the max. number of sections. */ -#define DASM_PSZ(ms) (sizeof(dasm_State)+(ms-1)*sizeof(dasm_Section)) - - -/* Initialize DynASM state. */ -void dasm_init(Dst_DECL, int maxsection) -{ - dasm_State *D; - size_t psz = 0; - int i; - Dst_REF = NULL; - DASM_M_GROW(Dst, struct dasm_State, Dst_REF, psz, DASM_PSZ(maxsection)); - D = Dst_REF; - D->psize = psz; - D->lglabels = NULL; - D->lgsize = 0; - D->pclabels = NULL; - D->pcsize = 0; - D->globals = NULL; - D->maxsection = maxsection; - for (i = 0; i < maxsection; i++) { - D->sections[i].buf = NULL; /* Need this for pass3. */ - D->sections[i].rbuf = D->sections[i].buf - DASM_SEC2POS(i); - D->sections[i].bsize = 0; - D->sections[i].epos = 0; /* Wrong, but is recalculated after resize. */ - } -} - -/* Free DynASM state. */ -void dasm_free(Dst_DECL) -{ - dasm_State *D = Dst_REF; - int i; - for (i = 0; i < D->maxsection; i++) - if (D->sections[i].buf) - DASM_M_FREE(Dst, D->sections[i].buf, D->sections[i].bsize); - if (D->pclabels) DASM_M_FREE(Dst, D->pclabels, D->pcsize); - if (D->lglabels) DASM_M_FREE(Dst, D->lglabels, D->lgsize); - DASM_M_FREE(Dst, D, D->psize); -} - -/* Setup global label array. Must be called before dasm_setup(). */ -void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl) -{ - dasm_State *D = Dst_REF; - D->globals = gl - 10; /* Negative bias to compensate for locals. */ - DASM_M_GROW(Dst, int, D->lglabels, D->lgsize, (10+maxgl)*sizeof(int)); -} - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -void dasm_growpc(Dst_DECL, unsigned int maxpc) -{ - dasm_State *D = Dst_REF; - size_t osz = D->pcsize; - DASM_M_GROW(Dst, int, D->pclabels, D->pcsize, maxpc*sizeof(int)); - memset((void *)(((unsigned char *)D->pclabels)+osz), 0, D->pcsize-osz); -} - -/* Setup encoder. */ -void dasm_setup(Dst_DECL, const void *actionlist) -{ - dasm_State *D = Dst_REF; - int i; - D->actionlist = (dasm_ActList)actionlist; - D->status = DASM_S_OK; - D->section = &D->sections[0]; - memset((void *)D->lglabels, 0, D->lgsize); - if (D->pclabels) memset((void *)D->pclabels, 0, D->pcsize); - for (i = 0; i < D->maxsection; i++) { - D->sections[i].pos = DASM_SEC2POS(i); - D->sections[i].ofs = 0; - } -} - - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) { \ - D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0) -#define CKPL(kind, st) \ - do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \ - D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0) -#else -#define CK(x, st) ((void)0) -#define CKPL(kind, st) ((void)0) -#endif - -static int dasm_imm12(unsigned int n) -{ - if ((n >> 12) == 0) - return n; - else if ((n & 0xff000fff) == 0) - return (n >> 12) | 0x1000; - else - return -1; -} - -static int dasm_ffs(unsigned long long x) -{ - int n = -1; - while (x) { x >>= 1; n++; } - return n; -} - -static int dasm_imm13(int lo, int hi) -{ - int inv = 0, w = 64, s = 0xfff, xa, xb; - unsigned long long n = (((unsigned long long)hi) << 32) | (unsigned int)lo; - unsigned long long m = 1ULL, a, b, c; - if (n & 1) { n = ~n; inv = 1; } - a = n & -n; b = (n+a)&-(n+a); c = (n+a-b)&-(n+a-b); - xa = dasm_ffs(a); xb = dasm_ffs(b); - if (c) { - w = dasm_ffs(c) - xa; - if (w == 32) m = 0x0000000100000001UL; - else if (w == 16) m = 0x0001000100010001UL; - else if (w == 8) m = 0x0101010101010101UL; - else if (w == 4) m = 0x1111111111111111UL; - else if (w == 2) m = 0x5555555555555555UL; - else return -1; - s = (-2*w & 0x3f) - 1; - } else if (!a) { - return -1; - } else if (xb == -1) { - xb = 64; - } - if ((b-a) * m != n) return -1; - if (inv) { - return ((w - xb) << 6) | (s+w+xa-xb); - } else { - return ((w - xa) << 6) | (s+xb-xa); - } - return -1; -} - -/* Pass 1: Store actions and args, link branches/labels, estimate offsets. */ -void dasm_put(Dst_DECL, int start, ...) -{ - va_list ap; - dasm_State *D = Dst_REF; - dasm_ActList p = D->actionlist + start; - dasm_Section *sec = D->section; - int pos = sec->pos, ofs = sec->ofs; - int *b; - - if (pos >= sec->epos) { - DASM_M_GROW(Dst, int, sec->buf, sec->bsize, - sec->bsize + 2*DASM_MAXSECPOS*sizeof(int)); - sec->rbuf = sec->buf - DASM_POS2BIAS(pos); - sec->epos = (int)sec->bsize/sizeof(int) - DASM_MAXSECPOS+DASM_POS2BIAS(pos); - } - - b = sec->rbuf; - b[pos++] = start; - - va_start(ap, start); - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - if (action >= DASM__MAX) { - ofs += 4; - } else { - int *pl, n = action >= DASM_REL_PC ? va_arg(ap, int) : 0; - switch (action) { - case DASM_STOP: goto stop; - case DASM_SECTION: - n = (ins & 255); CK(n < D->maxsection, RANGE_SEC); - D->section = &D->sections[n]; goto stop; - case DASM_ESC: p++; ofs += 4; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; - case DASM_REL_LG: - n = (ins & 2047) - 10; pl = D->lglabels + n; - /* Bkwd rel or global. */ - if (n >= 0) { CK(n>=10||*pl<0, RANGE_LG); CKPL(lg, LG); goto putrel; } - pl += 10; n = *pl; - if (n < 0) n = 0; /* Start new chain for fwd rel if label exists. */ - goto linkrel; - case DASM_REL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putrel: - n = *pl; - if (n < 0) { /* Label exists. Get label pos and store it. */ - b[pos] = -n; - } else { - linkrel: - b[pos] = n; /* Else link to rel chain, anchored at label. */ - *pl = pos; - } - pos++; - break; - case DASM_LABEL_LG: - pl = D->lglabels + (ins & 2047) - 10; CKPL(lg, LG); goto putlabel; - case DASM_LABEL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putlabel: - n = *pl; /* n > 0: Collapse rel chain and replace with label pos. */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; - } - *pl = -pos; /* Label exists now. */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_IMM: - CK((n & ((1<<((ins>>10)&31))-1)) == 0, RANGE_I); - n >>= ((ins>>10)&31); -#ifdef DASM_CHECKS - if ((ins & 0x8000)) - CK(((n + (1<<(((ins>>5)&31)-1)))>>((ins>>5)&31)) == 0, RANGE_I); - else - CK((n>>((ins>>5)&31)) == 0, RANGE_I); -#endif - b[pos++] = n; - break; - case DASM_IMM6: - CK((n >> 6) == 0, RANGE_I); - b[pos++] = n; - break; - case DASM_IMM12: - CK(dasm_imm12((unsigned int)n) != -1, RANGE_I); - b[pos++] = n; - break; - case DASM_IMM13W: - CK(dasm_imm13(n, n) != -1, RANGE_I); - b[pos++] = n; - break; - case DASM_IMM13X: { - int m = va_arg(ap, int); - CK(dasm_imm13(n, m) != -1, RANGE_I); - b[pos++] = n; - b[pos++] = m; - break; - } - case DASM_IMML: { -#ifdef DASM_CHECKS - int scale = (p[-2] >> 30); - CK((!(n & ((1<>scale) < 4096) || - (unsigned int)(n+256) < 512, RANGE_I); -#endif - b[pos++] = n; - break; - } - } - } - } -stop: - va_end(ap); - sec->pos = pos; - sec->ofs = ofs; -} -#undef CK - -/* Pass 2: Link sections, shrink aligns, fix label offsets. */ -int dasm_link(Dst_DECL, size_t *szp) -{ - dasm_State *D = Dst_REF; - int secnum; - int ofs = 0; - -#ifdef DASM_CHECKS - *szp = 0; - if (D->status != DASM_S_OK) return D->status; - { - int pc; - for (pc = 0; pc*sizeof(int) < D->pcsize; pc++) - if (D->pclabels[pc] > 0) return DASM_S_UNDEF_PC|pc; - } -#endif - - { /* Handle globals not defined in this translation unit. */ - int idx; - for (idx = 20; idx*sizeof(int) < D->lgsize; idx++) { - int n = D->lglabels[idx]; - /* Undefined label: Collapse rel chain and replace with marker (< 0). */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } - } - } - - /* Combine all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->rbuf; - int pos = DASM_SEC2POS(secnum); - int lastpos = sec->pos; - - while (pos != lastpos) { - dasm_ActList p = D->actionlist + b[pos++]; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: p++; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; - case DASM_REL_LG: case DASM_REL_PC: pos++; break; - case DASM_LABEL_LG: case DASM_LABEL_PC: b[pos++] += ofs; break; - case DASM_IMM: case DASM_IMM6: case DASM_IMM12: case DASM_IMM13W: - case DASM_IMML: pos++; break; - case DASM_IMM13X: pos += 2; break; - } - } - stop: (void)0; - } - ofs += sec->ofs; /* Next section starts right after current section. */ - } - - D->codesize = ofs; /* Total size of all code sections */ - *szp = ofs; - return DASM_S_OK; -} - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0) -#else -#define CK(x, st) ((void)0) -#endif - -/* Pass 3: Encode sections. */ -int dasm_encode(Dst_DECL, void *buffer) -{ - dasm_State *D = Dst_REF; - char *base = (char *)buffer; - unsigned int *cp = (unsigned int *)buffer; - int secnum; - - /* Encode all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->buf; - int *endb = sec->rbuf + sec->pos; - - while (b != endb) { - dasm_ActList p = D->actionlist + *b++; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - int n = (action >= DASM_ALIGN && action < DASM__MAX) ? *b++ : 0; - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: *cp++ = *p++; break; - case DASM_REL_EXT: - n = DASM_EXTERN(Dst, (unsigned char *)cp, (ins&2047), !(ins&2048)); - goto patchrel; - case DASM_ALIGN: - ins &= 255; while ((((char *)cp - base) & ins)) *cp++ = 0xe1a00000; - break; - case DASM_REL_LG: - CK(n >= 0, UNDEF_LG); - case DASM_REL_PC: - CK(n >= 0, UNDEF_PC); - n = *DASM_POS2PTR(D, n) - (int)((char *)cp - base) + 4; - patchrel: - if (!(ins & 0xf800)) { /* B, BL */ - CK((n & 3) == 0 && ((n+0x08000000) >> 28) == 0, RANGE_REL); - cp[-1] |= ((n >> 2) & 0x03ffffff); - } else if ((ins & 0x800)) { /* B.cond, CBZ, CBNZ, LDR* literal */ - CK((n & 3) == 0 && ((n+0x00100000) >> 21) == 0, RANGE_REL); - cp[-1] |= ((n << 3) & 0x00ffffe0); - } else if ((ins & 0x3000) == 0x2000) { /* ADR */ - CK(((n+0x00100000) >> 21) == 0, RANGE_REL); - cp[-1] |= ((n << 3) & 0x00ffffe0) | ((n & 3) << 29); - } else if ((ins & 0x3000) == 0x3000) { /* ADRP */ - cp[-1] |= ((n >> 9) & 0x00ffffe0) | (((n >> 12) & 3) << 29); - } else if ((ins & 0x1000)) { /* TBZ, TBNZ */ - CK((n & 3) == 0 && ((n+0x00008000) >> 16) == 0, RANGE_REL); - cp[-1] |= ((n << 3) & 0x0007ffe0); - } - break; - case DASM_LABEL_LG: - ins &= 2047; if (ins >= 20) D->globals[ins-10] = (void *)(base + n); - break; - case DASM_LABEL_PC: break; - case DASM_IMM: - cp[-1] |= (n & ((1<<((ins>>5)&31))-1)) << (ins&31); - break; - case DASM_IMM6: - cp[-1] |= ((n&31) << 19) | ((n&32) << 26); - break; - case DASM_IMM12: - cp[-1] |= (dasm_imm12((unsigned int)n) << 10); - break; - case DASM_IMM13W: - cp[-1] |= (dasm_imm13(n, n) << 10); - break; - case DASM_IMM13X: - cp[-1] |= (dasm_imm13(n, *b++) << 10); - break; - case DASM_IMML: { - int scale = (p[-2] >> 30); - cp[-1] |= (!(n & ((1<>scale) < 4096) ? - ((n << (10-scale)) | 0x01000000) : ((n & 511) << 12); - break; - } - default: *cp++ = ins; break; - } - } - stop: (void)0; - } - } - - if (base + D->codesize != (char *)cp) /* Check for phase errors. */ - return DASM_S_PHASE; - return DASM_S_OK; -} -#undef CK - -/* Get PC label offset. */ -int dasm_getpclabel(Dst_DECL, unsigned int pc) -{ - dasm_State *D = Dst_REF; - if (pc*sizeof(int) < D->pcsize) { - int pos = D->pclabels[pc]; - if (pos < 0) return *DASM_POS2PTR(D, -pos); - if (pos > 0) return -1; /* Undefined. */ - } - return -2; /* Unused or out of range. */ -} - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -int dasm_checkstep(Dst_DECL, int secmatch) -{ - dasm_State *D = Dst_REF; - if (D->status == DASM_S_OK) { - int i; - for (i = 1; i <= 9; i++) { - if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_LG|i; break; } - D->lglabels[i] = 0; - } - } - if (D->status == DASM_S_OK && secmatch >= 0 && - D->section != &D->sections[secmatch]) - D->status = DASM_S_MATCH_SEC|(D->section-D->sections); - return D->status; -} -#endif - diff --git a/vmbuilder/dynasm/dasm_arm64.lua b/vmbuilder/dynasm/dasm_arm64.lua deleted file mode 100644 index 8a5f735..0000000 --- a/vmbuilder/dynasm/dasm_arm64.lua +++ /dev/null @@ -1,1166 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM ARM64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- - --- Module information: -local _info = { - arch = "arm", - description = "DynASM ARM64 module", - version = "1.4.0", - vernum = 10400, - release = "2015-10-18", - author = "Mike Pall", - license = "MIT", -} - --- Exported glue functions for the arch-specific module. -local _M = { _info = _info } - --- Cache library functions. -local type, tonumber, pairs, ipairs = type, tonumber, pairs, ipairs -local assert, setmetatable, rawget = assert, setmetatable, rawget -local _s = string -local sub, format, byte, char = _s.sub, _s.format, _s.byte, _s.char -local match, gmatch, gsub = _s.match, _s.gmatch, _s.gsub -local concat, sort, insert = table.concat, table.sort, table.insert -local bit = bit or require("bit") -local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift -local ror, tohex = bit.ror, bit.tohex - --- Inherited tables and callbacks. -local g_opt, g_arch -local wline, werror, wfatal, wwarn - --- Action name list. --- CHECK: Keep this in sync with the C code! -local action_names = { - "STOP", "SECTION", "ESC", "REL_EXT", - "ALIGN", "REL_LG", "LABEL_LG", - "REL_PC", "LABEL_PC", "IMM", "IMM6", "IMM12", "IMM13W", "IMM13X", "IMML", -} - --- Maximum number of section buffer positions for dasm_put(). --- CHECK: Keep this in sync with the C code! -local maxsecpos = 25 -- Keep this low, to avoid excessively long C lines. - --- Action name -> action number. -local map_action = {} -for n,name in ipairs(action_names) do - map_action[name] = n-1 -end - --- Action list buffer. -local actlist = {} - --- Argument list for next dasm_put(). Start with offset 0 into action list. -local actargs = { 0 } - --- Current number of section buffer positions for dasm_put(). -local secpos = 1 - ------------------------------------------------------------------------------- - --- Dump action names and numbers. -local function dumpactions(out) - out:write("DynASM encoding engine action codes:\n") - for n,name in ipairs(action_names) do - local num = map_action[name] - out:write(format(" %-10s %02X %d\n", name, num, num)) - end - out:write("\n") -end - --- Write action list buffer as a huge static C array. -local function writeactions(out, name) - local nn = #actlist - if nn == 0 then nn = 1; actlist[0] = map_action.STOP end - out:write("static const unsigned int ", name, "[", nn, "] = {\n") - for i = 1,nn-1 do - assert(out:write("0x", tohex(actlist[i]), ",\n")) - end - assert(out:write("0x", tohex(actlist[nn]), "\n};\n\n")) -end - ------------------------------------------------------------------------------- - --- Add word to action list. -local function wputxw(n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[#actlist+1] = n -end - --- Add action to list with optional arg. Advance buffer pos, too. -local function waction(action, val, a, num) - local w = assert(map_action[action], "bad action name `"..action.."'") - wputxw(w * 0x10000 + (val or 0)) - if a then actargs[#actargs+1] = a end - if a or num then secpos = secpos + (num or 1) end -end - --- Flush action list (intervening C code or buffer pos overflow). -local function wflush(term) - if #actlist == actargs[1] then return end -- Nothing to flush. - if not term then waction("STOP") end -- Terminate action list. - wline(format("dasm_put(Dst, %s);", concat(actargs, ", ")), true) - actargs = { #actlist } -- Actionlist offset is 1st arg to next dasm_put(). - secpos = 1 -- The actionlist offset occupies a buffer position, too. -end - --- Put escaped word. -local function wputw(n) - if n <= 0x000fffff then waction("ESC") end - wputxw(n) -end - --- Reserve position for word. -local function wpos() - local pos = #actlist+1 - actlist[pos] = "" - return pos -end - --- Store word to reserved position. -local function wputpos(pos, n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - if n <= 0x000fffff then - insert(actlist, pos+1, n) - n = map_action.ESC * 0x10000 - end - actlist[pos] = n -end - ------------------------------------------------------------------------------- - --- Global label name -> global label number. With auto assignment on 1st use. -local next_global = 20 -local map_global = setmetatable({}, { __index = function(t, name) - if not match(name, "^[%a_][%w_]*$") then werror("bad global label") end - local n = next_global - if n > 2047 then werror("too many global labels") end - next_global = n + 1 - t[name] = n - return n -end}) - --- Dump global labels. -local function dumpglobals(out, lvl) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("Global labels:\n") - for i=20,next_global-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write global label enum. -local function writeglobals(out, prefix) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("enum {\n") - for i=20,next_global-1 do - out:write(" ", prefix, t[i], ",\n") - end - out:write(" ", prefix, "_MAX\n};\n") -end - --- Write global label names. -local function writeglobalnames(out, name) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=20,next_global-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Extern label name -> extern label number. With auto assignment on 1st use. -local next_extern = 0 -local map_extern_ = {} -local map_extern = setmetatable({}, { __index = function(t, name) - -- No restrictions on the name for now. - local n = next_extern - if n > 2047 then werror("too many extern labels") end - next_extern = n + 1 - t[name] = n - map_extern_[n] = name - return n -end}) - --- Dump extern labels. -local function dumpexterns(out, lvl) - out:write("Extern labels:\n") - for i=0,next_extern-1 do - out:write(format(" %s\n", map_extern_[i])) - end - out:write("\n") -end - --- Write extern label names. -local function writeexternnames(out, name) - out:write("static const char *const ", name, "[] = {\n") - for i=0,next_extern-1 do - out:write(" \"", map_extern_[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Arch-specific maps. - --- Ext. register name -> int. name. -local map_archdef = { xzr = "@x31", wzr = "@w31", lr = "x30", } - --- Int. register name -> ext. name. -local map_reg_rev = { ["@x31"] = "xzr", ["@w31"] = "wzr", x30 = "lr", } - -local map_type = {} -- Type name -> { ctype, reg } -local ctypenum = 0 -- Type number (for Dt... macros). - --- Reverse defines for registers. -function _M.revdef(s) - return map_reg_rev[s] or s -end - -local map_shift = { lsl = 0, lsr = 1, asr = 2, } - -local map_extend = { - uxtb = 0, uxth = 1, uxtw = 2, uxtx = 3, - sxtb = 4, sxth = 5, sxtw = 6, sxtx = 7, -} - -local map_cond = { - eq = 0, ne = 1, cs = 2, cc = 3, mi = 4, pl = 5, vs = 6, vc = 7, - hi = 8, ls = 9, ge = 10, lt = 11, gt = 12, le = 13, al = 14, - hs = 2, lo = 3, -} - ------------------------------------------------------------------------------- - -local parse_reg_type - -local function parse_reg(expr) - if not expr then werror("expected register name") end - local tname, ovreg = match(expr, "^([%w_]+):(@?%l%d+)$") - local tp = map_type[tname or expr] - if tp then - local reg = ovreg or tp.reg - if not reg then - werror("type `"..(tname or expr).."' needs a register override") - end - expr = reg - end - local ok31, rt, r = match(expr, "^(@?)([xwqdshb])([123]?[0-9])$") - if r then - r = tonumber(r) - if r <= 30 or (r == 31 and ok31 ~= "" or (rt ~= "w" and rt ~= "x")) then - if not parse_reg_type then - parse_reg_type = rt - elseif parse_reg_type ~= rt then - werror("register size mismatch") - end - return r, tp - end - end - werror("bad register name `"..expr.."'") -end - -local function parse_reg_base(expr) - if expr == "sp" then return 0x3e0 end - local base, tp = parse_reg(expr) - if parse_reg_type ~= "x" then werror("bad register type") end - parse_reg_type = false - return shl(base, 5), tp -end - -local parse_ctx = {} - -local loadenv = setfenv and function(s) - local code = loadstring(s, "") - if code then setfenv(code, parse_ctx) end - return code -end or function(s) - return load(s, "", nil, parse_ctx) -end - --- Try to parse simple arithmetic, too, since some basic ops are aliases. -local function parse_number(n) - local x = tonumber(n) - if x then return x end - local code = loadenv("return "..n) - if code then - local ok, y = pcall(code) - if ok then return y end - end - return nil -end - -local function parse_imm(imm, bits, shift, scale, signed) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = parse_number(imm) - if n then - local m = sar(n, scale) - if shl(m, scale) == n then - if signed then - local s = sar(m, bits-1) - if s == 0 then return shl(m, shift) - elseif s == -1 then return shl(m + shl(1, bits), shift) end - else - if sar(m, bits) == 0 then return shl(m, shift) end - end - end - werror("out of range immediate `"..imm.."'") - else - waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm) - return 0 - end -end - -local function parse_imm12(imm) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = parse_number(imm) - if n then - if shr(n, 12) == 0 then - return shl(n, 10) - elseif band(n, 0xff000fff) == 0 then - return shr(n, 2) + 0x00400000 - end - werror("out of range immediate `"..imm.."'") - else - waction("IMM12", 0, imm) - return 0 - end -end - -local function parse_imm13(imm) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = parse_number(imm) - local r64 = parse_reg_type == "x" - if n and n % 1 == 0 and n >= 0 and n <= 0xffffffff then - local inv = false - if band(n, 1) == 1 then n = bit.bnot(n); inv = true end - local t = {} - for i=1,32 do t[i] = band(n, 1); n = shr(n, 1) end - local b = table.concat(t) - b = b..(r64 and (inv and "1" or "0"):rep(32) or b) - local p0, p1, p0a, p1a = b:match("^(0+)(1+)(0*)(1*)") - if p0 then - local w = p1a == "" and (r64 and 64 or 32) or #p1+#p0a - if band(w, w-1) == 0 and b == b:sub(1, w):rep(64/w) then - local s = band(-2*w, 0x3f) - 1 - if w == 64 then s = s + 0x1000 end - if inv then - return shl(w-#p1-#p0, 16) + shl(s+w-#p1, 10) - else - return shl(w-#p0, 16) + shl(s+#p1, 10) - end - end - end - werror("out of range immediate `"..imm.."'") - elseif r64 then - waction("IMM13X", 0, format("(unsigned int)(%s)", imm)) - actargs[#actargs+1] = format("(unsigned int)((unsigned long long)(%s)>>32)", imm) - return 0 - else - waction("IMM13W", 0, imm) - return 0 - end -end - -local function parse_imm6(imm) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = parse_number(imm) - if n then - if n >= 0 and n <= 63 then - return shl(band(n, 0x1f), 19) + (n >= 32 and 0x80000000 or 0) - end - werror("out of range immediate `"..imm.."'") - else - waction("IMM6", 0, imm) - return 0 - end -end - -local function parse_imm_load(imm, scale) - local n = parse_number(imm) - if n then - local m = sar(n, scale) - if shl(m, scale) == n and m >= 0 and m < 0x1000 then - return shl(m, 10) + 0x01000000 -- Scaled, unsigned 12 bit offset. - elseif n >= -256 and n < 256 then - return shl(band(n, 511), 12) -- Unscaled, signed 9 bit offset. - end - werror("out of range immediate `"..imm.."'") - else - waction("IMML", 0, imm) - return 0 - end -end - -local function parse_fpimm(imm) - imm = match(imm, "^#(.*)$") - if not imm then werror("expected immediate operand") end - local n = parse_number(imm) - if n then - local m, e = math.frexp(n) - local s, e2 = 0, band(e-2, 7) - if m < 0 then m = -m; s = 0x00100000 end - m = m*32-16 - if m % 1 == 0 and m >= 0 and m <= 15 and sar(shl(e2, 29), 29)+2 == e then - return s + shl(e2, 17) + shl(m, 13) - end - werror("out of range immediate `"..imm.."'") - else - werror("NYI fpimm action") - end -end - -local function parse_shift(expr) - local s, s2 = match(expr, "^(%S+)%s*(.*)$") - s = map_shift[s] - if not s then werror("expected shift operand") end - return parse_imm(s2, 6, 10, 0, false) + shl(s, 22) -end - -local function parse_lslx16(expr) - local n = match(expr, "^lsl%s*#(%d+)$") - n = tonumber(n) - if not n then werror("expected shift operand") end - if band(n, parse_reg_type == "x" and 0xffffffcf or 0xffffffef) ~= 0 then - werror("bad shift amount") - end - return shl(n, 17) -end - -local function parse_extend(expr) - local s, s2 = match(expr, "^(%S+)%s*(.*)$") - if s == "lsl" then - s = parse_reg_type == "x" and 3 or 2 - else - s = map_extend[s] - end - if not s then werror("expected extend operand") end - return (s2 == "" and 0 or parse_imm(s2, 3, 10, 0, false)) + shl(s, 13) -end - -local function parse_cond(expr, inv) - local c = map_cond[expr] - if not c then werror("expected condition operand") end - return shl(bit.bxor(c, inv), 12) -end - -local function parse_load(params, nparams, n, op) - if params[n+2] then werror("too many operands") end - local pn, p2 = params[n], params[n+1] - local p1, wb = match(pn, "^%[%s*(.-)%s*%](!?)$") - if not p1 then - if not p2 then - local reg, tailr = match(pn, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local base, tp = parse_reg_base(reg) - if tp then - waction("IMML", 0, format(tp.ctypefmt, tailr)) - return op + base - end - end - end - werror("expected address operand") - end - local scale = shr(op, 30) - if p2 then - if wb == "!" then werror("bad use of '!'") end - op = op + parse_reg_base(p1) + parse_imm(p2, 9, 12, 0, true) + 0x400 - elseif wb == "!" then - local p1a, p2a = match(p1, "^([^,%s]*)%s*,%s*(.*)$") - if not p1a then werror("bad use of '!'") end - op = op + parse_reg_base(p1a) + parse_imm(p2a, 9, 12, 0, true) + 0xc00 - else - local p1a, p2a = match(p1, "^([^,%s]*)%s*(.*)$") - op = op + parse_reg_base(p1a) - if p2a ~= "" then - local imm = match(p2a, "^,%s*#(.*)$") - if imm then - op = op + parse_imm_load(imm, scale) - else - local p2b, p3b, p3s = match(p2a, "^,%s*([^,%s]*)%s*,?%s*(%S*)%s*(.*)$") - op = op + shl(parse_reg(p2b), 16) + 0x00200800 - if parse_reg_type ~= "x" and parse_reg_type ~= "w" then - werror("bad index register type") - end - if p3b == "" then - if parse_reg_type ~= "x" then werror("bad index register type") end - op = op + 0x6000 - else - if p3s == "" or p3s == "#0" then - elseif p3s == "#"..scale then - op = op + 0x1000 - else - werror("bad scale") - end - if parse_reg_type == "x" then - if p3b == "lsl" and p3s ~= "" then op = op + 0x6000 - elseif p3b == "sxtx" then op = op + 0xe000 - else - werror("bad extend/shift specifier") - end - else - if p3b == "uxtw" then op = op + 0x4000 - elseif p3b == "sxtw" then op = op + 0xc000 - else - werror("bad extend/shift specifier") - end - end - end - end - else - if wb == "!" then werror("bad use of '!'") end - op = op + 0x01000000 - end - end - return op -end - -local function parse_load_pair(params, nparams, n, op) - if params[n+2] then werror("too many operands") end - local pn, p2 = params[n], params[n+1] - local scale = shr(op, 30) == 0 and 2 or 3 - local p1, wb = match(pn, "^%[%s*(.-)%s*%](!?)$") - if not p1 then - if not p2 then - local reg, tailr = match(pn, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local base, tp = parse_reg_base(reg) - if tp then - waction("IMM", 32768+7*32+15+scale*1024, format(tp.ctypefmt, tailr)) - return op + base + 0x01000000 - end - end - end - werror("expected address operand") - end - if p2 then - if wb == "!" then werror("bad use of '!'") end - op = op + 0x00800000 - else - local p1a, p2a = match(p1, "^([^,%s]*)%s*,%s*(.*)$") - if p1a then p1, p2 = p1a, p2a else p2 = "#0" end - op = op + (wb == "!" and 0x01800000 or 0x01000000) - end - return op + parse_reg_base(p1) + parse_imm(p2, 7, 15, scale, true) -end - -local function parse_label(label, def) - local prefix = sub(label, 1, 2) - -- =>label (pc label reference) - if prefix == "=>" then - return "PC", 0, sub(label, 3) - end - -- ->name (global label reference) - if prefix == "->" then - return "LG", map_global[sub(label, 3)] - end - if def then - -- [1-9] (local label definition) - if match(label, "^[1-9]$") then - return "LG", 10+tonumber(label) - end - else - -- [<>][1-9] (local label reference) - local dir, lnum = match(label, "^([<>])([1-9])$") - if dir then -- Fwd: 1-9, Bkwd: 11-19. - return "LG", lnum + (dir == ">" and 0 or 10) - end - -- extern label (extern label reference) - local extname = match(label, "^extern%s+(%S+)$") - if extname then - return "EXT", map_extern[extname] - end - end - werror("bad label `"..label.."'") -end - -local function branch_type(op) - if band(op, 0x7c000000) == 0x14000000 then return 0 -- B, BL - elseif shr(op, 24) == 0x54 or band(op, 0x7e000000) == 0x34000000 or - band(op, 0x3b000000) == 0x18000000 then - return 0x800 -- B.cond, CBZ, CBNZ, LDR* literal - elseif band(op, 0x7e000000) == 0x36000000 then return 0x1000 -- TBZ, TBNZ - elseif band(op, 0x9f000000) == 0x10000000 then return 0x2000 -- ADR - elseif band(op, 0x9f000000) == band(0x90000000) then return 0x3000 -- ADRP - else - assert(false, "unknown branch type") - end -end - ------------------------------------------------------------------------------- - -local map_op, op_template - -local function op_alias(opname, f) - return function(params, nparams) - if not params then return "-> "..opname:sub(1, -3) end - f(params, nparams) - op_template(params, map_op[opname], nparams) - end -end - -local function alias_bfx(p) - p[4] = "#("..p[3]:sub(2)..")+("..p[4]:sub(2)..")-1" -end - -local function alias_bfiz(p) - parse_reg(p[1]) - if parse_reg_type == "w" then - p[3] = "#-("..p[3]:sub(2)..")%32" - p[4] = "#("..p[4]:sub(2)..")-1" - else - p[3] = "#-("..p[3]:sub(2)..")%64" - p[4] = "#("..p[4]:sub(2)..")-1" - end -end - -local alias_lslimm = op_alias("ubfm_4", function(p) - parse_reg(p[1]) - local sh = p[3]:sub(2) - if parse_reg_type == "w" then - p[3] = "#-("..sh..")%32" - p[4] = "#31-("..sh..")" - else - p[3] = "#-("..sh..")%64" - p[4] = "#63-("..sh..")" - end -end) - --- Template strings for ARM instructions. -map_op = { - -- Basic data processing instructions. - add_3 = "0b000000DNMg|11000000pDpNIg|8b206000pDpNMx", - add_4 = "0b000000DNMSg|0b200000DNMXg|8b200000pDpNMXx|8b200000pDpNxMwX", - adds_3 = "2b000000DNMg|31000000DpNIg|ab206000DpNMx", - adds_4 = "2b000000DNMSg|2b200000DNMXg|ab200000DpNMXx|ab200000DpNxMwX", - cmn_2 = "2b00001fNMg|3100001fpNIg|ab20601fpNMx", - cmn_3 = "2b00001fNMSg|2b20001fNMXg|ab20001fpNMXx|ab20001fpNxMwX", - - sub_3 = "4b000000DNMg|51000000pDpNIg|cb206000pDpNMx", - sub_4 = "4b000000DNMSg|4b200000DNMXg|cb200000pDpNMXx|cb200000pDpNxMwX", - subs_3 = "6b000000DNMg|71000000DpNIg|eb206000DpNMx", - subs_4 = "6b000000DNMSg|6b200000DNMXg|eb200000DpNMXx|eb200000DpNxMwX", - cmp_2 = "6b00001fNMg|7100001fpNIg|eb20601fpNMx", - cmp_3 = "6b00001fNMSg|6b20001fNMXg|eb20001fpNMXx|eb20001fpNxMwX", - - neg_2 = "4b0003e0DMg", - neg_3 = "4b0003e0DMSg", - negs_2 = "6b0003e0DMg", - negs_3 = "6b0003e0DMSg", - - adc_3 = "1a000000DNMg", - adcs_3 = "3a000000DNMg", - sbc_3 = "5a000000DNMg", - sbcs_3 = "7a000000DNMg", - ngc_2 = "5a0003e0DMg", - ngcs_2 = "7a0003e0DMg", - - and_3 = "0a000000DNMg|12000000pDNig", - and_4 = "0a000000DNMSg", - orr_3 = "2a000000DNMg|32000000pDNig", - orr_4 = "2a000000DNMSg", - eor_3 = "4a000000DNMg|52000000pDNig", - eor_4 = "4a000000DNMSg", - ands_3 = "6a000000DNMg|72000000DNig", - ands_4 = "6a000000DNMSg", - tst_2 = "6a00001fNMg|7200001fNig", - tst_3 = "6a00001fNMSg", - - bic_3 = "0a200000DNMg", - bic_4 = "0a200000DNMSg", - orn_3 = "2a200000DNMg", - orn_4 = "2a200000DNMSg", - eon_3 = "4a200000DNMg", - eon_4 = "4a200000DNMSg", - bics_3 = "6a200000DNMg", - bics_4 = "6a200000DNMSg", - - movn_2 = "12800000DWg", - movn_3 = "12800000DWRg", - movz_2 = "52800000DWg", - movz_3 = "52800000DWRg", - movk_2 = "72800000DWg", - movk_3 = "72800000DWRg", - - -- TODO: this doesn't cover all valid immediates for mov reg, #imm. - mov_2 = "2a0003e0DMg|52800000DW|320003e0pDig|11000000pDpNg", - mov_3 = "2a0003e0DMSg", - mvn_2 = "2a2003e0DMg", - mvn_3 = "2a2003e0DMSg", - - adr_2 = "10000000DBx", - adrp_2 = "90000000DBx", - - csel_4 = "1a800000DNMCg", - csinc_4 = "1a800400DNMCg", - csinv_4 = "5a800000DNMCg", - csneg_4 = "5a800400DNMCg", - cset_2 = "1a9f07e0Dcg", - csetm_2 = "5a9f03e0Dcg", - cinc_3 = "1a800400DNmcg", - cinv_3 = "5a800000DNmcg", - cneg_3 = "5a800400DNmcg", - - ccmn_4 = "3a400000NMVCg|3a400800N5VCg", - ccmp_4 = "7a400000NMVCg|7a400800N5VCg", - - madd_4 = "1b000000DNMAg", - msub_4 = "1b008000DNMAg", - mul_3 = "1b007c00DNMg", - mneg_3 = "1b00fc00DNMg", - - smaddl_4 = "9b200000DxNMwAx", - smsubl_4 = "9b208000DxNMwAx", - smull_3 = "9b207c00DxNMw", - smnegl_3 = "9b20fc00DxNMw", - smulh_3 = "9b407c00DNMx", - umaddl_4 = "9ba00000DxNMwAx", - umsubl_4 = "9ba08000DxNMwAx", - umull_3 = "9ba07c00DxNMw", - umnegl_3 = "9ba0fc00DxNMw", - umulh_3 = "9bc07c00DNMx", - - udiv_3 = "1ac00800DNMg", - sdiv_3 = "1ac00c00DNMg", - - -- Bit operations. - sbfm_4 = "13000000DN12w|93400000DN12x", - bfm_4 = "33000000DN12w|b3400000DN12x", - ubfm_4 = "53000000DN12w|d3400000DN12x", - extr_4 = "13800000DNM2w|93c00000DNM2x", - - sxtb_2 = "13001c00DNw|93401c00DNx", - sxth_2 = "13003c00DNw|93403c00DNx", - sxtw_2 = "93407c00DxNw", - uxtb_2 = "53001c00DNw", - uxth_2 = "53003c00DNw", - - sbfx_4 = op_alias("sbfm_4", alias_bfx), - bfxil_4 = op_alias("bfm_4", alias_bfx), - ubfx_4 = op_alias("ubfm_4", alias_bfx), - sbfiz_4 = op_alias("sbfm_4", alias_bfiz), - bfi_4 = op_alias("bfm_4", alias_bfiz), - ubfiz_4 = op_alias("ubfm_4", alias_bfiz), - - lsl_3 = function(params, nparams) - if params and params[3]:byte() == 35 then - return alias_lslimm(params, nparams) - else - return op_template(params, "1ac02000DNMg", nparams) - end - end, - lsr_3 = "1ac02400DNMg|53007c00DN1w|d340fc00DN1x", - asr_3 = "1ac02800DNMg|13007c00DN1w|9340fc00DN1x", - ror_3 = "1ac02c00DNMg|13800000DNm2w|93c00000DNm2x", - - clz_2 = "5ac01000DNg", - cls_2 = "5ac01400DNg", - rbit_2 = "5ac00000DNg", - rev_2 = "5ac00800DNw|dac00c00DNx", - rev16_2 = "5ac00400DNg", - rev32_2 = "dac00800DNx", - - -- Loads and stores. - ["strb_*"] = "38000000DwL", - ["ldrb_*"] = "38400000DwL", - ["ldrsb_*"] = "38c00000DwL|38800000DxL", - ["strh_*"] = "78000000DwL", - ["ldrh_*"] = "78400000DwL", - ["ldrsh_*"] = "78c00000DwL|78800000DxL", - ["str_*"] = "b8000000DwL|f8000000DxL|bc000000DsL|fc000000DdL", - ["ldr_*"] = "18000000DwB|58000000DxB|1c000000DsB|5c000000DdB|b8400000DwL|f8400000DxL|bc400000DsL|fc400000DdL", - ["ldrsw_*"] = "98000000DxB|b8800000DxL", - -- NOTE: ldur etc. are handled by ldr et al. - - ["stp_*"] = "28000000DAwP|a8000000DAxP|2c000000DAsP|6c000000DAdP", - ["ldp_*"] = "28400000DAwP|a8400000DAxP|2c400000DAsP|6c400000DAdP", - ["ldpsw_*"] = "68400000DAxP", - - -- Branches. - b_1 = "14000000B", - bl_1 = "94000000B", - blr_1 = "d63f0000Nx", - br_1 = "d61f0000Nx", - ret_0 = "d65f03c0", - ret_1 = "d65f0000Nx", - -- b.cond is added below. - cbz_2 = "34000000DBg", - cbnz_2 = "35000000DBg", - tbz_3 = "36000000DTBw|36000000DTBx", - tbnz_3 = "37000000DTBw|37000000DTBx", - - -- Miscellaneous instructions. - -- TODO: hlt, hvc, smc, svc, eret, dcps[123], drps, mrs, msr - -- TODO: sys, sysl, ic, dc, at, tlbi - -- TODO: hint, yield, wfe, wfi, sev, sevl - -- TODO: clrex, dsb, dmb, isb - nop_0 = "d503201f", - brk_0 = "d4200000", - brk_1 = "d4200000W", - - -- Floating point instructions. - fmov_2 = "1e204000DNf|1e260000DwNs|1e270000DsNw|9e660000DxNd|9e670000DdNx|1e201000DFf", - fabs_2 = "1e20c000DNf", - fneg_2 = "1e214000DNf", - fsqrt_2 = "1e21c000DNf", - - fcvt_2 = "1e22c000DdNs|1e624000DsNd", - - -- TODO: half-precision and fixed-point conversions. - fcvtas_2 = "1e240000DwNs|9e240000DxNs|1e640000DwNd|9e640000DxNd", - fcvtau_2 = "1e250000DwNs|9e250000DxNs|1e650000DwNd|9e650000DxNd", - fcvtms_2 = "1e300000DwNs|9e300000DxNs|1e700000DwNd|9e700000DxNd", - fcvtmu_2 = "1e310000DwNs|9e310000DxNs|1e710000DwNd|9e710000DxNd", - fcvtns_2 = "1e200000DwNs|9e200000DxNs|1e600000DwNd|9e600000DxNd", - fcvtnu_2 = "1e210000DwNs|9e210000DxNs|1e610000DwNd|9e610000DxNd", - fcvtps_2 = "1e280000DwNs|9e280000DxNs|1e680000DwNd|9e680000DxNd", - fcvtpu_2 = "1e290000DwNs|9e290000DxNs|1e690000DwNd|9e690000DxNd", - fcvtzs_2 = "1e380000DwNs|9e380000DxNs|1e780000DwNd|9e780000DxNd", - fcvtzu_2 = "1e390000DwNs|9e390000DxNs|1e790000DwNd|9e790000DxNd", - - scvtf_2 = "1e220000DsNw|9e220000DsNx|1e620000DdNw|9e620000DdNx", - ucvtf_2 = "1e230000DsNw|9e230000DsNx|1e630000DdNw|9e630000DdNx", - - frintn_2 = "1e244000DNf", - frintp_2 = "1e24c000DNf", - frintm_2 = "1e254000DNf", - frintz_2 = "1e25c000DNf", - frinta_2 = "1e264000DNf", - frintx_2 = "1e274000DNf", - frinti_2 = "1e27c000DNf", - - fadd_3 = "1e202800DNMf", - fsub_3 = "1e203800DNMf", - fmul_3 = "1e200800DNMf", - fnmul_3 = "1e208800DNMf", - fdiv_3 = "1e201800DNMf", - - fmadd_4 = "1f000000DNMAf", - fmsub_4 = "1f008000DNMAf", - fnmadd_4 = "1f200000DNMAf", - fnmsub_4 = "1f208000DNMAf", - - fmax_3 = "1e204800DNMf", - fmaxnm_3 = "1e206800DNMf", - fmin_3 = "1e205800DNMf", - fminnm_3 = "1e207800DNMf", - - fcmp_2 = "1e202000NMf|1e202008NZf", - fcmpe_2 = "1e202010NMf|1e202018NZf", - - fccmp_4 = "1e200400NMVCf", - fccmpe_4 = "1e200410NMVCf", - - fcsel_4 = "1e200c00DNMCf", - - -- TODO: crc32*, aes*, sha*, pmull - -- TODO: SIMD instructions. -} - -for cond,c in pairs(map_cond) do - map_op["b"..cond.."_1"] = tohex(0x54000000+c).."B" -end - ------------------------------------------------------------------------------- - --- Handle opcodes defined with template strings. -local function parse_template(params, template, nparams, pos) - local op = tonumber(sub(template, 1, 8), 16) - local n = 1 - local rtt = {} - - parse_reg_type = false - - -- Process each character. - for p in gmatch(sub(template, 9), ".") do - local q = params[n] - if p == "D" then - op = op + parse_reg(q); n = n + 1 - elseif p == "N" then - op = op + shl(parse_reg(q), 5); n = n + 1 - elseif p == "M" then - op = op + shl(parse_reg(q), 16); n = n + 1 - elseif p == "A" then - op = op + shl(parse_reg(q), 10); n = n + 1 - elseif p == "m" then - op = op + shl(parse_reg(params[n-1]), 16) - - elseif p == "p" then - if q == "sp" then params[n] = "@x31" end - elseif p == "g" then - if parse_reg_type == "x" then - op = op + 0x80000000 - elseif parse_reg_type ~= "w" then - werror("bad register type") - end - parse_reg_type = false - elseif p == "f" then - if parse_reg_type == "d" then - op = op + 0x00400000 - elseif parse_reg_type ~= "s" then - werror("bad register type") - end - parse_reg_type = false - elseif p == "x" or p == "w" or p == "d" or p == "s" then - if parse_reg_type ~= p then - werror("register size mismatch") - end - parse_reg_type = false - - elseif p == "L" then - op = parse_load(params, nparams, n, op) - elseif p == "P" then - op = parse_load_pair(params, nparams, n, op) - - elseif p == "B" then - local mode, v, s = parse_label(q, false); n = n + 1 - local m = branch_type(op) - waction("REL_"..mode, v+m, s, 1) - - elseif p == "I" then - op = op + parse_imm12(q); n = n + 1 - elseif p == "i" then - op = op + parse_imm13(q); n = n + 1 - elseif p == "W" then - op = op + parse_imm(q, 16, 5, 0, false); n = n + 1 - elseif p == "T" then - op = op + parse_imm6(q); n = n + 1 - elseif p == "1" then - op = op + parse_imm(q, 6, 16, 0, false); n = n + 1 - elseif p == "2" then - op = op + parse_imm(q, 6, 10, 0, false); n = n + 1 - elseif p == "5" then - op = op + parse_imm(q, 5, 16, 0, false); n = n + 1 - elseif p == "V" then - op = op + parse_imm(q, 4, 0, 0, false); n = n + 1 - elseif p == "F" then - op = op + parse_fpimm(q); n = n + 1 - elseif p == "Z" then - if q ~= "#0" and q ~= "#0.0" then werror("expected zero immediate") end - n = n + 1 - - elseif p == "S" then - op = op + parse_shift(q); n = n + 1 - elseif p == "X" then - op = op + parse_extend(q); n = n + 1 - elseif p == "R" then - op = op + parse_lslx16(q); n = n + 1 - elseif p == "C" then - op = op + parse_cond(q, 0); n = n + 1 - elseif p == "c" then - op = op + parse_cond(q, 1); n = n + 1 - - else - assert(false) - end - end - wputpos(pos, op) -end - -function op_template(params, template, nparams) - if not params then return template:gsub("%x%x%x%x%x%x%x%x", "") end - - -- Limit number of section buffer positions used by a single dasm_put(). - -- A single opcode needs a maximum of 3 positions. - if secpos+3 > maxsecpos then wflush() end - local pos = wpos() - local lpos, apos, spos = #actlist, #actargs, secpos - - local ok, err - for t in gmatch(template, "[^|]+") do - ok, err = pcall(parse_template, params, t, nparams, pos) - if ok then return end - secpos = spos - actlist[lpos+1] = nil - actlist[lpos+2] = nil - actlist[lpos+3] = nil - actargs[apos+1] = nil - actargs[apos+2] = nil - actargs[apos+3] = nil - end - error(err, 0) -end - -map_op[".template__"] = op_template - ------------------------------------------------------------------------------- - --- Pseudo-opcode to mark the position where the action list is to be emitted. -map_op[".actionlist_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeactions(out, name) end) -end - --- Pseudo-opcode to mark the position where the global enum is to be emitted. -map_op[".globals_1"] = function(params) - if not params then return "prefix" end - local prefix = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobals(out, prefix) end) -end - --- Pseudo-opcode to mark the position where the global names are to be emitted. -map_op[".globalnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobalnames(out, name) end) -end - --- Pseudo-opcode to mark the position where the extern names are to be emitted. -map_op[".externnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeexternnames(out, name) end) -end - ------------------------------------------------------------------------------- - --- Label pseudo-opcode (converted from trailing colon form). -map_op[".label_1"] = function(params) - if not params then return "[1-9] | ->global | =>pcexpr" end - if secpos+1 > maxsecpos then wflush() end - local mode, n, s = parse_label(params[1], true) - if mode == "EXT" then werror("bad label definition") end - waction("LABEL_"..mode, n, s, 1) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcodes for data storage. -map_op[".long_*"] = function(params) - if not params then return "imm..." end - for _,p in ipairs(params) do - local n = tonumber(p) - if not n then werror("bad immediate `"..p.."'") end - if n < 0 then n = n + 2^32 end - wputw(n) - if secpos+2 > maxsecpos then wflush() end - end -end - --- Alignment pseudo-opcode. -map_op[".align_1"] = function(params) - if not params then return "numpow2" end - if secpos+1 > maxsecpos then wflush() end - local align = tonumber(params[1]) - if align then - local x = align - -- Must be a power of 2 in the range (2 ... 256). - for i=1,8 do - x = x / 2 - if x == 1 then - waction("ALIGN", align-1, nil, 1) -- Action byte is 2**n-1. - return - end - end - end - werror("bad alignment") -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode for (primitive) type definitions (map to C types). -map_op[".type_3"] = function(params, nparams) - if not params then - return nparams == 2 and "name, ctype" or "name, ctype, reg" - end - local name, ctype, reg = params[1], params[2], params[3] - if not match(name, "^[%a_][%w_]*$") then - werror("bad type name `"..name.."'") - end - local tp = map_type[name] - if tp then - werror("duplicate type `"..name.."'") - end - -- Add #type to defines. A bit unclean to put it in map_archdef. - map_archdef["#"..name] = "sizeof("..ctype..")" - -- Add new type and emit shortcut define. - local num = ctypenum + 1 - map_type[name] = { - ctype = ctype, - ctypefmt = format("Dt%X(%%s)", num), - reg = reg, - } - wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype)) - ctypenum = num -end -map_op[".type_2"] = map_op[".type_3"] - --- Dump type definitions. -local function dumptypes(out, lvl) - local t = {} - for name in pairs(map_type) do t[#t+1] = name end - sort(t) - out:write("Type definitions:\n") - for _,name in ipairs(t) do - local tp = map_type[name] - local reg = tp.reg or "" - out:write(format(" %-20s %-20s %s\n", name, tp.ctype, reg)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Set the current section. -function _M.section(num) - waction("SECTION", num) - wflush(true) -- SECTION is a terminal action. -end - ------------------------------------------------------------------------------- - --- Dump architecture description. -function _M.dumparch(out) - out:write(format("DynASM %s version %s, released %s\n\n", - _info.arch, _info.version, _info.release)) - dumpactions(out) -end - --- Dump all user defined elements. -function _M.dumpdef(out, lvl) - dumptypes(out, lvl) - dumpglobals(out, lvl) - dumpexterns(out, lvl) -end - ------------------------------------------------------------------------------- - --- Pass callbacks from/to the DynASM core. -function _M.passcb(wl, we, wf, ww) - wline, werror, wfatal, wwarn = wl, we, wf, ww - return wflush -end - --- Setup the arch-specific module. -function _M.setup(arch, opt) - g_arch, g_opt = arch, opt -end - --- Merge the core maps and the arch-specific maps. -function _M.mergemaps(map_coreop, map_def) - setmetatable(map_op, { __index = map_coreop }) - setmetatable(map_def, { __index = map_archdef }) - return map_op, map_def -end - -return _M - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/dynasm/dasm_mips.h b/vmbuilder/dynasm/dasm_mips.h deleted file mode 100644 index 4b49fd8..0000000 --- a/vmbuilder/dynasm/dasm_mips.h +++ /dev/null @@ -1,419 +0,0 @@ -/* -** DynASM MIPS encoding engine. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#include -#include -#include -#include - -#define DASM_ARCH "mips" - -#ifndef DASM_EXTERN -#define DASM_EXTERN(a,b,c,d) 0 -#endif - -/* Action definitions. */ -enum { - DASM_STOP, DASM_SECTION, DASM_ESC, DASM_REL_EXT, - /* The following actions need a buffer position. */ - DASM_ALIGN, DASM_REL_LG, DASM_LABEL_LG, - /* The following actions also have an argument. */ - DASM_REL_PC, DASM_LABEL_PC, DASM_IMM, DASM_IMMS, - DASM__MAX -}; - -/* Maximum number of section buffer positions for a single dasm_put() call. */ -#define DASM_MAXSECPOS 25 - -/* DynASM encoder status codes. Action list offset or number are or'ed in. */ -#define DASM_S_OK 0x00000000 -#define DASM_S_NOMEM 0x01000000 -#define DASM_S_PHASE 0x02000000 -#define DASM_S_MATCH_SEC 0x03000000 -#define DASM_S_RANGE_I 0x11000000 -#define DASM_S_RANGE_SEC 0x12000000 -#define DASM_S_RANGE_LG 0x13000000 -#define DASM_S_RANGE_PC 0x14000000 -#define DASM_S_RANGE_REL 0x15000000 -#define DASM_S_UNDEF_LG 0x21000000 -#define DASM_S_UNDEF_PC 0x22000000 - -/* Macros to convert positions (8 bit section + 24 bit index). */ -#define DASM_POS2IDX(pos) ((pos)&0x00ffffff) -#define DASM_POS2BIAS(pos) ((pos)&0xff000000) -#define DASM_SEC2POS(sec) ((sec)<<24) -#define DASM_POS2SEC(pos) ((pos)>>24) -#define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) - -/* Action list type. */ -typedef const unsigned int *dasm_ActList; - -/* Per-section structure. */ -typedef struct dasm_Section { - int *rbuf; /* Biased buffer pointer (negative section bias). */ - int *buf; /* True buffer pointer. */ - size_t bsize; /* Buffer size in bytes. */ - int pos; /* Biased buffer position. */ - int epos; /* End of biased buffer position - max single put. */ - int ofs; /* Byte offset into section. */ -} dasm_Section; - -/* Core structure holding the DynASM encoding state. */ -struct dasm_State { - size_t psize; /* Allocated size of this structure. */ - dasm_ActList actionlist; /* Current actionlist pointer. */ - int *lglabels; /* Local/global chain/pos ptrs. */ - size_t lgsize; - int *pclabels; /* PC label chains/pos ptrs. */ - size_t pcsize; - void **globals; /* Array of globals (bias -10). */ - dasm_Section *section; /* Pointer to active section. */ - size_t codesize; /* Total size of all code sections. */ - int maxsection; /* 0 <= sectionidx < maxsection. */ - int status; /* Status code. */ - dasm_Section sections[1]; /* All sections. Alloc-extended. */ -}; - -/* The size of the core structure depends on the max. number of sections. */ -#define DASM_PSZ(ms) (sizeof(dasm_State)+(ms-1)*sizeof(dasm_Section)) - - -/* Initialize DynASM state. */ -void dasm_init(Dst_DECL, int maxsection) -{ - dasm_State *D; - size_t psz = 0; - int i; - Dst_REF = NULL; - DASM_M_GROW(Dst, struct dasm_State, Dst_REF, psz, DASM_PSZ(maxsection)); - D = Dst_REF; - D->psize = psz; - D->lglabels = NULL; - D->lgsize = 0; - D->pclabels = NULL; - D->pcsize = 0; - D->globals = NULL; - D->maxsection = maxsection; - for (i = 0; i < maxsection; i++) { - D->sections[i].buf = NULL; /* Need this for pass3. */ - D->sections[i].rbuf = D->sections[i].buf - DASM_SEC2POS(i); - D->sections[i].bsize = 0; - D->sections[i].epos = 0; /* Wrong, but is recalculated after resize. */ - } -} - -/* Free DynASM state. */ -void dasm_free(Dst_DECL) -{ - dasm_State *D = Dst_REF; - int i; - for (i = 0; i < D->maxsection; i++) - if (D->sections[i].buf) - DASM_M_FREE(Dst, D->sections[i].buf, D->sections[i].bsize); - if (D->pclabels) DASM_M_FREE(Dst, D->pclabels, D->pcsize); - if (D->lglabels) DASM_M_FREE(Dst, D->lglabels, D->lgsize); - DASM_M_FREE(Dst, D, D->psize); -} - -/* Setup global label array. Must be called before dasm_setup(). */ -void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl) -{ - dasm_State *D = Dst_REF; - D->globals = gl - 10; /* Negative bias to compensate for locals. */ - DASM_M_GROW(Dst, int, D->lglabels, D->lgsize, (10+maxgl)*sizeof(int)); -} - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -void dasm_growpc(Dst_DECL, unsigned int maxpc) -{ - dasm_State *D = Dst_REF; - size_t osz = D->pcsize; - DASM_M_GROW(Dst, int, D->pclabels, D->pcsize, maxpc*sizeof(int)); - memset((void *)(((unsigned char *)D->pclabels)+osz), 0, D->pcsize-osz); -} - -/* Setup encoder. */ -void dasm_setup(Dst_DECL, const void *actionlist) -{ - dasm_State *D = Dst_REF; - int i; - D->actionlist = (dasm_ActList)actionlist; - D->status = DASM_S_OK; - D->section = &D->sections[0]; - memset((void *)D->lglabels, 0, D->lgsize); - if (D->pclabels) memset((void *)D->pclabels, 0, D->pcsize); - for (i = 0; i < D->maxsection; i++) { - D->sections[i].pos = DASM_SEC2POS(i); - D->sections[i].ofs = 0; - } -} - - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) { \ - D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0) -#define CKPL(kind, st) \ - do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \ - D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0) -#else -#define CK(x, st) ((void)0) -#define CKPL(kind, st) ((void)0) -#endif - -/* Pass 1: Store actions and args, link branches/labels, estimate offsets. */ -void dasm_put(Dst_DECL, int start, ...) -{ - va_list ap; - dasm_State *D = Dst_REF; - dasm_ActList p = D->actionlist + start; - dasm_Section *sec = D->section; - int pos = sec->pos, ofs = sec->ofs; - int *b; - - if (pos >= sec->epos) { - DASM_M_GROW(Dst, int, sec->buf, sec->bsize, - sec->bsize + 2*DASM_MAXSECPOS*sizeof(int)); - sec->rbuf = sec->buf - DASM_POS2BIAS(pos); - sec->epos = (int)sec->bsize/sizeof(int) - DASM_MAXSECPOS+DASM_POS2BIAS(pos); - } - - b = sec->rbuf; - b[pos++] = start; - - va_start(ap, start); - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16) - 0xff00; - if (action >= DASM__MAX) { - ofs += 4; - } else { - int *pl, n = action >= DASM_REL_PC ? va_arg(ap, int) : 0; - switch (action) { - case DASM_STOP: goto stop; - case DASM_SECTION: - n = (ins & 255); CK(n < D->maxsection, RANGE_SEC); - D->section = &D->sections[n]; goto stop; - case DASM_ESC: p++; ofs += 4; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; - case DASM_REL_LG: - n = (ins & 2047) - 10; pl = D->lglabels + n; - /* Bkwd rel or global. */ - if (n >= 0) { CK(n>=10||*pl<0, RANGE_LG); CKPL(lg, LG); goto putrel; } - pl += 10; n = *pl; - if (n < 0) n = 0; /* Start new chain for fwd rel if label exists. */ - goto linkrel; - case DASM_REL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putrel: - n = *pl; - if (n < 0) { /* Label exists. Get label pos and store it. */ - b[pos] = -n; - } else { - linkrel: - b[pos] = n; /* Else link to rel chain, anchored at label. */ - *pl = pos; - } - pos++; - break; - case DASM_LABEL_LG: - pl = D->lglabels + (ins & 2047) - 10; CKPL(lg, LG); goto putlabel; - case DASM_LABEL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putlabel: - n = *pl; /* n > 0: Collapse rel chain and replace with label pos. */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; - } - *pl = -pos; /* Label exists now. */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_IMM: case DASM_IMMS: -#ifdef DASM_CHECKS - CK((n & ((1<<((ins>>10)&31))-1)) == 0, RANGE_I); -#endif - n >>= ((ins>>10)&31); -#ifdef DASM_CHECKS - if (ins & 0x8000) - CK(((n + (1<<(((ins>>5)&31)-1)))>>((ins>>5)&31)) == 0, RANGE_I); - else - CK((n>>((ins>>5)&31)) == 0, RANGE_I); -#endif - b[pos++] = n; - break; - } - } - } -stop: - va_end(ap); - sec->pos = pos; - sec->ofs = ofs; -} -#undef CK - -/* Pass 2: Link sections, shrink aligns, fix label offsets. */ -int dasm_link(Dst_DECL, size_t *szp) -{ - dasm_State *D = Dst_REF; - int secnum; - int ofs = 0; - -#ifdef DASM_CHECKS - *szp = 0; - if (D->status != DASM_S_OK) return D->status; - { - int pc; - for (pc = 0; pc*sizeof(int) < D->pcsize; pc++) - if (D->pclabels[pc] > 0) return DASM_S_UNDEF_PC|pc; - } -#endif - - { /* Handle globals not defined in this translation unit. */ - int idx; - for (idx = 20; idx*sizeof(int) < D->lgsize; idx++) { - int n = D->lglabels[idx]; - /* Undefined label: Collapse rel chain and replace with marker (< 0). */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } - } - } - - /* Combine all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->rbuf; - int pos = DASM_SEC2POS(secnum); - int lastpos = sec->pos; - - while (pos != lastpos) { - dasm_ActList p = D->actionlist + b[pos++]; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16) - 0xff00; - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: p++; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; - case DASM_REL_LG: case DASM_REL_PC: pos++; break; - case DASM_LABEL_LG: case DASM_LABEL_PC: b[pos++] += ofs; break; - case DASM_IMM: case DASM_IMMS: pos++; break; - } - } - stop: (void)0; - } - ofs += sec->ofs; /* Next section starts right after current section. */ - } - - D->codesize = ofs; /* Total size of all code sections */ - *szp = ofs; - return DASM_S_OK; -} - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0) -#else -#define CK(x, st) ((void)0) -#endif - -/* Pass 3: Encode sections. */ -int dasm_encode(Dst_DECL, void *buffer) -{ - dasm_State *D = Dst_REF; - char *base = (char *)buffer; - unsigned int *cp = (unsigned int *)buffer; - int secnum; - - /* Encode all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->buf; - int *endb = sec->rbuf + sec->pos; - - while (b != endb) { - dasm_ActList p = D->actionlist + *b++; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16) - 0xff00; - int n = (action >= DASM_ALIGN && action < DASM__MAX) ? *b++ : 0; - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: *cp++ = *p++; break; - case DASM_REL_EXT: - n = DASM_EXTERN(Dst, (unsigned char *)cp, (ins & 2047), 1); - goto patchrel; - case DASM_ALIGN: - ins &= 255; while ((((char *)cp - base) & ins)) *cp++ = 0x60000000; - break; - case DASM_REL_LG: - CK(n >= 0, UNDEF_LG); - case DASM_REL_PC: - CK(n >= 0, UNDEF_PC); - n = *DASM_POS2PTR(D, n); - if (ins & 2048) - n = n - (int)((char *)cp - base); - else - n = (n + (int)(size_t)base) & 0x0fffffff; - patchrel: - CK((n & 3) == 0 && - ((n + ((ins & 2048) ? 0x00020000 : 0)) >> - ((ins & 2048) ? 18 : 28)) == 0, RANGE_REL); - cp[-1] |= ((n>>2) & ((ins & 2048) ? 0x0000ffff: 0x03ffffff)); - break; - case DASM_LABEL_LG: - ins &= 2047; if (ins >= 20) D->globals[ins-10] = (void *)(base + n); - break; - case DASM_LABEL_PC: break; - case DASM_IMMS: - cp[-1] |= ((n>>3) & 4); n &= 0x1f; - /* fallthrough */ - case DASM_IMM: - cp[-1] |= (n & ((1<<((ins>>5)&31))-1)) << (ins&31); - break; - default: *cp++ = ins; break; - } - } - stop: (void)0; - } - } - - if (base + D->codesize != (char *)cp) /* Check for phase errors. */ - return DASM_S_PHASE; - return DASM_S_OK; -} -#undef CK - -/* Get PC label offset. */ -int dasm_getpclabel(Dst_DECL, unsigned int pc) -{ - dasm_State *D = Dst_REF; - if (pc*sizeof(int) < D->pcsize) { - int pos = D->pclabels[pc]; - if (pos < 0) return *DASM_POS2PTR(D, -pos); - if (pos > 0) return -1; /* Undefined. */ - } - return -2; /* Unused or out of range. */ -} - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -int dasm_checkstep(Dst_DECL, int secmatch) -{ - dasm_State *D = Dst_REF; - if (D->status == DASM_S_OK) { - int i; - for (i = 1; i <= 9; i++) { - if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_LG|i; break; } - D->lglabels[i] = 0; - } - } - if (D->status == DASM_S_OK && secmatch >= 0 && - D->section != &D->sections[secmatch]) - D->status = DASM_S_MATCH_SEC|(D->section-D->sections); - return D->status; -} -#endif - diff --git a/vmbuilder/dynasm/dasm_mips.lua b/vmbuilder/dynasm/dasm_mips.lua deleted file mode 100644 index 78a4e34..0000000 --- a/vmbuilder/dynasm/dasm_mips.lua +++ /dev/null @@ -1,1008 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM MIPS32/MIPS64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- - -local mips64 = mips64 - --- Module information: -local _info = { - arch = mips64 and "mips64" or "mips", - description = "DynASM MIPS32/MIPS64 module", - version = "1.4.0", - vernum = 10400, - release = "2016-05-24", - author = "Mike Pall", - license = "MIT", -} - --- Exported glue functions for the arch-specific module. -local _M = { _info = _info } - --- Cache library functions. -local type, tonumber, pairs, ipairs = type, tonumber, pairs, ipairs -local assert, setmetatable = assert, setmetatable -local _s = string -local sub, format, byte, char = _s.sub, _s.format, _s.byte, _s.char -local match, gmatch = _s.match, _s.gmatch -local concat, sort = table.concat, table.sort -local bit = bit or require("bit") -local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift -local tohex = bit.tohex - --- Inherited tables and callbacks. -local g_opt, g_arch -local wline, werror, wfatal, wwarn - --- Action name list. --- CHECK: Keep this in sync with the C code! -local action_names = { - "STOP", "SECTION", "ESC", "REL_EXT", - "ALIGN", "REL_LG", "LABEL_LG", - "REL_PC", "LABEL_PC", "IMM", "IMMS", -} - --- Maximum number of section buffer positions for dasm_put(). --- CHECK: Keep this in sync with the C code! -local maxsecpos = 25 -- Keep this low, to avoid excessively long C lines. - --- Action name -> action number. -local map_action = {} -for n,name in ipairs(action_names) do - map_action[name] = n-1 -end - --- Action list buffer. -local actlist = {} - --- Argument list for next dasm_put(). Start with offset 0 into action list. -local actargs = { 0 } - --- Current number of section buffer positions for dasm_put(). -local secpos = 1 - ------------------------------------------------------------------------------- - --- Dump action names and numbers. -local function dumpactions(out) - out:write("DynASM encoding engine action codes:\n") - for n,name in ipairs(action_names) do - local num = map_action[name] - out:write(format(" %-10s %02X %d\n", name, num, num)) - end - out:write("\n") -end - --- Write action list buffer as a huge static C array. -local function writeactions(out, name) - local nn = #actlist - if nn == 0 then nn = 1; actlist[0] = map_action.STOP end - out:write("static const unsigned int ", name, "[", nn, "] = {\n") - for i = 1,nn-1 do - assert(out:write("0x", tohex(actlist[i]), ",\n")) - end - assert(out:write("0x", tohex(actlist[nn]), "\n};\n\n")) -end - ------------------------------------------------------------------------------- - --- Add word to action list. -local function wputxw(n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[#actlist+1] = n -end - --- Add action to list with optional arg. Advance buffer pos, too. -local function waction(action, val, a, num) - local w = assert(map_action[action], "bad action name `"..action.."'") - wputxw(0xff000000 + w * 0x10000 + (val or 0)) - if a then actargs[#actargs+1] = a end - if a or num then secpos = secpos + (num or 1) end -end - --- Flush action list (intervening C code or buffer pos overflow). -local function wflush(term) - if #actlist == actargs[1] then return end -- Nothing to flush. - if not term then waction("STOP") end -- Terminate action list. - wline(format("dasm_put(Dst, %s);", concat(actargs, ", ")), true) - actargs = { #actlist } -- Actionlist offset is 1st arg to next dasm_put(). - secpos = 1 -- The actionlist offset occupies a buffer position, too. -end - --- Put escaped word. -local function wputw(n) - if n >= 0xff000000 then waction("ESC") end - wputxw(n) -end - --- Reserve position for word. -local function wpos() - local pos = #actlist+1 - actlist[pos] = "" - return pos -end - --- Store word to reserved position. -local function wputpos(pos, n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[pos] = n -end - ------------------------------------------------------------------------------- - --- Global label name -> global label number. With auto assignment on 1st use. -local next_global = 20 -local map_global = setmetatable({}, { __index = function(t, name) - if not match(name, "^[%a_][%w_]*$") then werror("bad global label") end - local n = next_global - if n > 2047 then werror("too many global labels") end - next_global = n + 1 - t[name] = n - return n -end}) - --- Dump global labels. -local function dumpglobals(out, lvl) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("Global labels:\n") - for i=20,next_global-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write global label enum. -local function writeglobals(out, prefix) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("enum {\n") - for i=20,next_global-1 do - out:write(" ", prefix, t[i], ",\n") - end - out:write(" ", prefix, "_MAX\n};\n") -end - --- Write global label names. -local function writeglobalnames(out, name) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=20,next_global-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Extern label name -> extern label number. With auto assignment on 1st use. -local next_extern = 0 -local map_extern_ = {} -local map_extern = setmetatable({}, { __index = function(t, name) - -- No restrictions on the name for now. - local n = next_extern - if n > 2047 then werror("too many extern labels") end - next_extern = n + 1 - t[name] = n - map_extern_[n] = name - return n -end}) - --- Dump extern labels. -local function dumpexterns(out, lvl) - out:write("Extern labels:\n") - for i=0,next_extern-1 do - out:write(format(" %s\n", map_extern_[i])) - end - out:write("\n") -end - --- Write extern label names. -local function writeexternnames(out, name) - out:write("static const char *const ", name, "[] = {\n") - for i=0,next_extern-1 do - out:write(" \"", map_extern_[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Arch-specific maps. -local map_archdef = { sp="r29", ra="r31" } -- Ext. register name -> int. name. - -local map_type = {} -- Type name -> { ctype, reg } -local ctypenum = 0 -- Type number (for Dt... macros). - --- Reverse defines for registers. -function _M.revdef(s) - if s == "r29" then return "sp" - elseif s == "r31" then return "ra" end - return s -end - ------------------------------------------------------------------------------- - --- Template strings for MIPS instructions. -local map_op = { - -- First-level opcodes. - j_1 = "08000000J", - jal_1 = "0c000000J", - b_1 = "10000000B", - beqz_2 = "10000000SB", - beq_3 = "10000000STB", - bnez_2 = "14000000SB", - bne_3 = "14000000STB", - blez_2 = "18000000SB", - bgtz_2 = "1c000000SB", - addi_3 = "20000000TSI", - li_2 = "24000000TI", - addiu_3 = "24000000TSI", - slti_3 = "28000000TSI", - sltiu_3 = "2c000000TSI", - andi_3 = "30000000TSU", - lu_2 = "34000000TU", - ori_3 = "34000000TSU", - xori_3 = "38000000TSU", - lui_2 = "3c000000TU", - beqzl_2 = "50000000SB", - beql_3 = "50000000STB", - bnezl_2 = "54000000SB", - bnel_3 = "54000000STB", - blezl_2 = "58000000SB", - bgtzl_2 = "5c000000SB", - daddi_3 = mips64 and "60000000TSI", - daddiu_3 = mips64 and "64000000TSI", - ldl_2 = mips64 and "68000000TO", - ldr_2 = mips64 and "6c000000TO", - lb_2 = "80000000TO", - lh_2 = "84000000TO", - lwl_2 = "88000000TO", - lw_2 = "8c000000TO", - lbu_2 = "90000000TO", - lhu_2 = "94000000TO", - lwr_2 = "98000000TO", - lwu_2 = mips64 and "9c000000TO", - sb_2 = "a0000000TO", - sh_2 = "a4000000TO", - swl_2 = "a8000000TO", - sw_2 = "ac000000TO", - sdl_2 = mips64 and "b0000000TO", - sdr_2 = mips64 and "b1000000TO", - swr_2 = "b8000000TO", - cache_2 = "bc000000NO", - ll_2 = "c0000000TO", - lwc1_2 = "c4000000HO", - pref_2 = "cc000000NO", - ldc1_2 = "d4000000HO", - ld_2 = mips64 and "dc000000TO", - sc_2 = "e0000000TO", - swc1_2 = "e4000000HO", - scd_2 = mips64 and "f0000000TO", - sdc1_2 = "f4000000HO", - sd_2 = mips64 and "fc000000TO", - - -- Opcode SPECIAL. - nop_0 = "00000000", - sll_3 = "00000000DTA", - sextw_2 = "00000000DT", - movf_2 = "00000001DS", - movf_3 = "00000001DSC", - movt_2 = "00010001DS", - movt_3 = "00010001DSC", - srl_3 = "00000002DTA", - rotr_3 = "00200002DTA", - sra_3 = "00000003DTA", - sllv_3 = "00000004DTS", - srlv_3 = "00000006DTS", - rotrv_3 = "00000046DTS", - drotrv_3 = mips64 and "00000056DTS", - srav_3 = "00000007DTS", - jr_1 = "00000008S", - jalr_1 = "0000f809S", - jalr_2 = "00000009DS", - movz_3 = "0000000aDST", - movn_3 = "0000000bDST", - syscall_0 = "0000000c", - syscall_1 = "0000000cY", - break_0 = "0000000d", - break_1 = "0000000dY", - sync_0 = "0000000f", - mfhi_1 = "00000010D", - mthi_1 = "00000011S", - mflo_1 = "00000012D", - mtlo_1 = "00000013S", - dsllv_3 = mips64 and "00000014DTS", - dsrlv_3 = mips64 and "00000016DTS", - dsrav_3 = mips64 and "00000017DTS", - mult_2 = "00000018ST", - multu_2 = "00000019ST", - div_2 = "0000001aST", - divu_2 = "0000001bST", - dmult_2 = mips64 and "0000001cST", - dmultu_2 = mips64 and "0000001dST", - ddiv_2 = mips64 and "0000001eST", - ddivu_2 = mips64 and "0000001fST", - add_3 = "00000020DST", - move_2 = mips64 and "00000025DS" or "00000021DS", - addu_3 = "00000021DST", - sub_3 = "00000022DST", - negu_2 = mips64 and "0000002fDT" or "00000023DT", - subu_3 = "00000023DST", - and_3 = "00000024DST", - or_3 = "00000025DST", - xor_3 = "00000026DST", - not_2 = "00000027DS", - nor_3 = "00000027DST", - slt_3 = "0000002aDST", - sltu_3 = "0000002bDST", - dadd_3 = mips64 and "0000002cDST", - daddu_3 = mips64 and "0000002dDST", - dsub_3 = mips64 and "0000002eDST", - dsubu_3 = mips64 and "0000002fDST", - tge_2 = "00000030ST", - tge_3 = "00000030STZ", - tgeu_2 = "00000031ST", - tgeu_3 = "00000031STZ", - tlt_2 = "00000032ST", - tlt_3 = "00000032STZ", - tltu_2 = "00000033ST", - tltu_3 = "00000033STZ", - teq_2 = "00000034ST", - teq_3 = "00000034STZ", - tne_2 = "00000036ST", - tne_3 = "00000036STZ", - dsll_3 = mips64 and "00000038DTa", - dsrl_3 = mips64 and "0000003aDTa", - drotr_3 = mips64 and "0020003aDTa", - dsra_3 = mips64 and "0000003bDTa", - dsll32_3 = mips64 and "0000003cDTA", - dsrl32_3 = mips64 and "0000003eDTA", - drotr32_3 = mips64 and "0020003eDTA", - dsra32_3 = mips64 and "0000003fDTA", - - -- Opcode REGIMM. - bltz_2 = "04000000SB", - bgez_2 = "04010000SB", - bltzl_2 = "04020000SB", - bgezl_2 = "04030000SB", - tgei_2 = "04080000SI", - tgeiu_2 = "04090000SI", - tlti_2 = "040a0000SI", - tltiu_2 = "040b0000SI", - teqi_2 = "040c0000SI", - tnei_2 = "040e0000SI", - bltzal_2 = "04100000SB", - bal_1 = "04110000B", - bgezal_2 = "04110000SB", - bltzall_2 = "04120000SB", - bgezall_2 = "04130000SB", - synci_1 = "041f0000O", - - -- Opcode SPECIAL2. - madd_2 = "70000000ST", - maddu_2 = "70000001ST", - mul_3 = "70000002DST", - msub_2 = "70000004ST", - msubu_2 = "70000005ST", - clz_2 = "70000020DS=", - clo_2 = "70000021DS=", - dclz_2 = mips64 and "70000024DS=", - dclo_2 = mips64 and "70000025DS=", - sdbbp_0 = "7000003f", - sdbbp_1 = "7000003fY", - - -- Opcode SPECIAL3. - ext_4 = "7c000000TSAM", -- Note: last arg is msbd = size-1 - dextm_4 = mips64 and "7c000001TSAM", -- Args: pos | size-1-32 - dextu_4 = mips64 and "7c000002TSAM", -- Args: pos-32 | size-1 - dext_4 = mips64 and "7c000003TSAM", -- Args: pos | size-1 - zextw_2 = mips64 and "7c00f803TS", - ins_4 = "7c000004TSAM", -- Note: last arg is msb = pos+size-1 - dinsm_4 = mips64 and "7c000005TSAM", -- Args: pos | pos+size-33 - dinsu_4 = mips64 and "7c000006TSAM", -- Args: pos-32 | pos+size-33 - dins_4 = mips64 and "7c000007TSAM", -- Args: pos | pos+size-1 - wsbh_2 = "7c0000a0DT", - dsbh_2 = mips64 and "7c0000a4DT", - dshd_2 = mips64 and "7c000164DT", - seb_2 = "7c000420DT", - seh_2 = "7c000620DT", - rdhwr_2 = "7c00003bTD", - - -- Opcode COP0. - mfc0_2 = "40000000TD", - mfc0_3 = "40000000TDW", - dmfc0_2 = mips64 and "40200000TD", - dmfc0_3 = mips64 and "40200000TDW", - mtc0_2 = "40800000TD", - mtc0_3 = "40800000TDW", - dmtc0_2 = mips64 and "40a00000TD", - dmtc0_3 = mips64 and "40a00000TDW", - rdpgpr_2 = "41400000DT", - di_0 = "41606000", - di_1 = "41606000T", - ei_0 = "41606020", - ei_1 = "41606020T", - wrpgpr_2 = "41c00000DT", - tlbr_0 = "42000001", - tlbwi_0 = "42000002", - tlbwr_0 = "42000006", - tlbp_0 = "42000008", - eret_0 = "42000018", - deret_0 = "4200001f", - wait_0 = "42000020", - - -- Opcode COP1. - mfc1_2 = "44000000TG", - dmfc1_2 = mips64 and "44200000TG", - cfc1_2 = "44400000TG", - mfhc1_2 = "44600000TG", - mtc1_2 = "44800000TG", - dmtc1_2 = mips64 and "44a00000TG", - ctc1_2 = "44c00000TG", - mthc1_2 = "44e00000TG", - - bc1f_1 = "45000000B", - bc1f_2 = "45000000CB", - bc1t_1 = "45010000B", - bc1t_2 = "45010000CB", - bc1fl_1 = "45020000B", - bc1fl_2 = "45020000CB", - bc1tl_1 = "45030000B", - bc1tl_2 = "45030000CB", - - ["add.s_3"] = "46000000FGH", - ["sub.s_3"] = "46000001FGH", - ["mul.s_3"] = "46000002FGH", - ["div.s_3"] = "46000003FGH", - ["sqrt.s_2"] = "46000004FG", - ["abs.s_2"] = "46000005FG", - ["mov.s_2"] = "46000006FG", - ["neg.s_2"] = "46000007FG", - ["round.l.s_2"] = "46000008FG", - ["trunc.l.s_2"] = "46000009FG", - ["ceil.l.s_2"] = "4600000aFG", - ["floor.l.s_2"] = "4600000bFG", - ["round.w.s_2"] = "4600000cFG", - ["trunc.w.s_2"] = "4600000dFG", - ["ceil.w.s_2"] = "4600000eFG", - ["floor.w.s_2"] = "4600000fFG", - ["movf.s_2"] = "46000011FG", - ["movf.s_3"] = "46000011FGC", - ["movt.s_2"] = "46010011FG", - ["movt.s_3"] = "46010011FGC", - ["movz.s_3"] = "46000012FGT", - ["movn.s_3"] = "46000013FGT", - ["recip.s_2"] = "46000015FG", - ["rsqrt.s_2"] = "46000016FG", - ["cvt.d.s_2"] = "46000021FG", - ["cvt.w.s_2"] = "46000024FG", - ["cvt.l.s_2"] = "46000025FG", - ["cvt.ps.s_3"] = "46000026FGH", - ["c.f.s_2"] = "46000030GH", - ["c.f.s_3"] = "46000030VGH", - ["c.un.s_2"] = "46000031GH", - ["c.un.s_3"] = "46000031VGH", - ["c.eq.s_2"] = "46000032GH", - ["c.eq.s_3"] = "46000032VGH", - ["c.ueq.s_2"] = "46000033GH", - ["c.ueq.s_3"] = "46000033VGH", - ["c.olt.s_2"] = "46000034GH", - ["c.olt.s_3"] = "46000034VGH", - ["c.ult.s_2"] = "46000035GH", - ["c.ult.s_3"] = "46000035VGH", - ["c.ole.s_2"] = "46000036GH", - ["c.ole.s_3"] = "46000036VGH", - ["c.ule.s_2"] = "46000037GH", - ["c.ule.s_3"] = "46000037VGH", - ["c.sf.s_2"] = "46000038GH", - ["c.sf.s_3"] = "46000038VGH", - ["c.ngle.s_2"] = "46000039GH", - ["c.ngle.s_3"] = "46000039VGH", - ["c.seq.s_2"] = "4600003aGH", - ["c.seq.s_3"] = "4600003aVGH", - ["c.ngl.s_2"] = "4600003bGH", - ["c.ngl.s_3"] = "4600003bVGH", - ["c.lt.s_2"] = "4600003cGH", - ["c.lt.s_3"] = "4600003cVGH", - ["c.nge.s_2"] = "4600003dGH", - ["c.nge.s_3"] = "4600003dVGH", - ["c.le.s_2"] = "4600003eGH", - ["c.le.s_3"] = "4600003eVGH", - ["c.ngt.s_2"] = "4600003fGH", - ["c.ngt.s_3"] = "4600003fVGH", - - ["add.d_3"] = "46200000FGH", - ["sub.d_3"] = "46200001FGH", - ["mul.d_3"] = "46200002FGH", - ["div.d_3"] = "46200003FGH", - ["sqrt.d_2"] = "46200004FG", - ["abs.d_2"] = "46200005FG", - ["mov.d_2"] = "46200006FG", - ["neg.d_2"] = "46200007FG", - ["round.l.d_2"] = "46200008FG", - ["trunc.l.d_2"] = "46200009FG", - ["ceil.l.d_2"] = "4620000aFG", - ["floor.l.d_2"] = "4620000bFG", - ["round.w.d_2"] = "4620000cFG", - ["trunc.w.d_2"] = "4620000dFG", - ["ceil.w.d_2"] = "4620000eFG", - ["floor.w.d_2"] = "4620000fFG", - ["movf.d_2"] = "46200011FG", - ["movf.d_3"] = "46200011FGC", - ["movt.d_2"] = "46210011FG", - ["movt.d_3"] = "46210011FGC", - ["movz.d_3"] = "46200012FGT", - ["movn.d_3"] = "46200013FGT", - ["recip.d_2"] = "46200015FG", - ["rsqrt.d_2"] = "46200016FG", - ["cvt.s.d_2"] = "46200020FG", - ["cvt.w.d_2"] = "46200024FG", - ["cvt.l.d_2"] = "46200025FG", - ["c.f.d_2"] = "46200030GH", - ["c.f.d_3"] = "46200030VGH", - ["c.un.d_2"] = "46200031GH", - ["c.un.d_3"] = "46200031VGH", - ["c.eq.d_2"] = "46200032GH", - ["c.eq.d_3"] = "46200032VGH", - ["c.ueq.d_2"] = "46200033GH", - ["c.ueq.d_3"] = "46200033VGH", - ["c.olt.d_2"] = "46200034GH", - ["c.olt.d_3"] = "46200034VGH", - ["c.ult.d_2"] = "46200035GH", - ["c.ult.d_3"] = "46200035VGH", - ["c.ole.d_2"] = "46200036GH", - ["c.ole.d_3"] = "46200036VGH", - ["c.ule.d_2"] = "46200037GH", - ["c.ule.d_3"] = "46200037VGH", - ["c.sf.d_2"] = "46200038GH", - ["c.sf.d_3"] = "46200038VGH", - ["c.ngle.d_2"] = "46200039GH", - ["c.ngle.d_3"] = "46200039VGH", - ["c.seq.d_2"] = "4620003aGH", - ["c.seq.d_3"] = "4620003aVGH", - ["c.ngl.d_2"] = "4620003bGH", - ["c.ngl.d_3"] = "4620003bVGH", - ["c.lt.d_2"] = "4620003cGH", - ["c.lt.d_3"] = "4620003cVGH", - ["c.nge.d_2"] = "4620003dGH", - ["c.nge.d_3"] = "4620003dVGH", - ["c.le.d_2"] = "4620003eGH", - ["c.le.d_3"] = "4620003eVGH", - ["c.ngt.d_2"] = "4620003fGH", - ["c.ngt.d_3"] = "4620003fVGH", - - ["add.ps_3"] = "46c00000FGH", - ["sub.ps_3"] = "46c00001FGH", - ["mul.ps_3"] = "46c00002FGH", - ["abs.ps_2"] = "46c00005FG", - ["mov.ps_2"] = "46c00006FG", - ["neg.ps_2"] = "46c00007FG", - ["movf.ps_2"] = "46c00011FG", - ["movf.ps_3"] = "46c00011FGC", - ["movt.ps_2"] = "46c10011FG", - ["movt.ps_3"] = "46c10011FGC", - ["movz.ps_3"] = "46c00012FGT", - ["movn.ps_3"] = "46c00013FGT", - ["cvt.s.pu_2"] = "46c00020FG", - ["cvt.s.pl_2"] = "46c00028FG", - ["pll.ps_3"] = "46c0002cFGH", - ["plu.ps_3"] = "46c0002dFGH", - ["pul.ps_3"] = "46c0002eFGH", - ["puu.ps_3"] = "46c0002fFGH", - ["c.f.ps_2"] = "46c00030GH", - ["c.f.ps_3"] = "46c00030VGH", - ["c.un.ps_2"] = "46c00031GH", - ["c.un.ps_3"] = "46c00031VGH", - ["c.eq.ps_2"] = "46c00032GH", - ["c.eq.ps_3"] = "46c00032VGH", - ["c.ueq.ps_2"] = "46c00033GH", - ["c.ueq.ps_3"] = "46c00033VGH", - ["c.olt.ps_2"] = "46c00034GH", - ["c.olt.ps_3"] = "46c00034VGH", - ["c.ult.ps_2"] = "46c00035GH", - ["c.ult.ps_3"] = "46c00035VGH", - ["c.ole.ps_2"] = "46c00036GH", - ["c.ole.ps_3"] = "46c00036VGH", - ["c.ule.ps_2"] = "46c00037GH", - ["c.ule.ps_3"] = "46c00037VGH", - ["c.sf.ps_2"] = "46c00038GH", - ["c.sf.ps_3"] = "46c00038VGH", - ["c.ngle.ps_2"] = "46c00039GH", - ["c.ngle.ps_3"] = "46c00039VGH", - ["c.seq.ps_2"] = "46c0003aGH", - ["c.seq.ps_3"] = "46c0003aVGH", - ["c.ngl.ps_2"] = "46c0003bGH", - ["c.ngl.ps_3"] = "46c0003bVGH", - ["c.lt.ps_2"] = "46c0003cGH", - ["c.lt.ps_3"] = "46c0003cVGH", - ["c.nge.ps_2"] = "46c0003dGH", - ["c.nge.ps_3"] = "46c0003dVGH", - ["c.le.ps_2"] = "46c0003eGH", - ["c.le.ps_3"] = "46c0003eVGH", - ["c.ngt.ps_2"] = "46c0003fGH", - ["c.ngt.ps_3"] = "46c0003fVGH", - - ["cvt.s.w_2"] = "46800020FG", - ["cvt.d.w_2"] = "46800021FG", - - ["cvt.s.l_2"] = "46a00020FG", - ["cvt.d.l_2"] = "46a00021FG", - - -- Opcode COP1X. - lwxc1_2 = "4c000000FX", - ldxc1_2 = "4c000001FX", - luxc1_2 = "4c000005FX", - swxc1_2 = "4c000008FX", - sdxc1_2 = "4c000009FX", - suxc1_2 = "4c00000dFX", - prefx_2 = "4c00000fMX", - ["alnv.ps_4"] = "4c00001eFGHS", - ["madd.s_4"] = "4c000020FRGH", - ["madd.d_4"] = "4c000021FRGH", - ["madd.ps_4"] = "4c000026FRGH", - ["msub.s_4"] = "4c000028FRGH", - ["msub.d_4"] = "4c000029FRGH", - ["msub.ps_4"] = "4c00002eFRGH", - ["nmadd.s_4"] = "4c000030FRGH", - ["nmadd.d_4"] = "4c000031FRGH", - ["nmadd.ps_4"] = "4c000036FRGH", - ["nmsub.s_4"] = "4c000038FRGH", - ["nmsub.d_4"] = "4c000039FRGH", - ["nmsub.ps_4"] = "4c00003eFRGH", -} - ------------------------------------------------------------------------------- - -local function parse_gpr(expr) - local tname, ovreg = match(expr, "^([%w_]+):(r[1-3]?[0-9])$") - local tp = map_type[tname or expr] - if tp then - local reg = ovreg or tp.reg - if not reg then - werror("type `"..(tname or expr).."' needs a register override") - end - expr = reg - end - local r = match(expr, "^r([1-3]?[0-9])$") - if r then - r = tonumber(r) - if r <= 31 then return r, tp end - end - werror("bad register name `"..expr.."'") -end - -local function parse_fpr(expr) - local r = match(expr, "^f([1-3]?[0-9])$") - if r then - r = tonumber(r) - if r <= 31 then return r end - end - werror("bad register name `"..expr.."'") -end - -local function parse_imm(imm, bits, shift, scale, signed, action) - local n = tonumber(imm) - if n then - local m = sar(n, scale) - if shl(m, scale) == n then - if signed then - local s = sar(m, bits-1) - if s == 0 then return shl(m, shift) - elseif s == -1 then return shl(m + shl(1, bits), shift) end - else - if sar(m, bits) == 0 then return shl(m, shift) end - end - end - werror("out of range immediate `"..imm.."'") - elseif match(imm, "^[rf]([1-3]?[0-9])$") or - match(imm, "^([%w_]+):([rf][1-3]?[0-9])$") then - werror("expected immediate operand, got register") - else - waction(action or "IMM", - (signed and 32768 or 0)+shl(scale, 10)+shl(bits, 5)+shift, imm) - return 0 - end -end - -local function parse_disp(disp) - local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$") - if imm then - local r = shl(parse_gpr(reg), 21) - local extname = match(imm, "^extern%s+(%S+)$") - if extname then - waction("REL_EXT", map_extern[extname], nil, 1) - return r - else - return r + parse_imm(imm, 16, 0, 0, true) - end - end - local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local r, tp = parse_gpr(reg) - if tp then - waction("IMM", 32768+16*32, format(tp.ctypefmt, tailr)) - return shl(r, 21) - end - end - werror("bad displacement `"..disp.."'") -end - -local function parse_index(idx) - local rt, rs = match(idx, "^(.*)%(([%w_:]+)%)$") - if rt then - rt = parse_gpr(rt) - rs = parse_gpr(rs) - return shl(rt, 16) + shl(rs, 21) - end - werror("bad index `"..idx.."'") -end - -local function parse_label(label, def) - local prefix = sub(label, 1, 2) - -- =>label (pc label reference) - if prefix == "=>" then - return "PC", 0, sub(label, 3) - end - -- ->name (global label reference) - if prefix == "->" then - return "LG", map_global[sub(label, 3)] - end - if def then - -- [1-9] (local label definition) - if match(label, "^[1-9]$") then - return "LG", 10+tonumber(label) - end - else - -- [<>][1-9] (local label reference) - local dir, lnum = match(label, "^([<>])([1-9])$") - if dir then -- Fwd: 1-9, Bkwd: 11-19. - return "LG", lnum + (dir == ">" and 0 or 10) - end - -- extern label (extern label reference) - local extname = match(label, "^extern%s+(%S+)$") - if extname then - return "EXT", map_extern[extname] - end - end - werror("bad label `"..label.."'") -end - ------------------------------------------------------------------------------- - --- Handle opcodes defined with template strings. -map_op[".template__"] = function(params, template, nparams) - if not params then return sub(template, 9) end - local op = tonumber(sub(template, 1, 8), 16) - local n = 1 - - -- Limit number of section buffer positions used by a single dasm_put(). - -- A single opcode needs a maximum of 2 positions (ins/ext). - if secpos+2 > maxsecpos then wflush() end - local pos = wpos() - - -- Process each character. - for p in gmatch(sub(template, 9), ".") do - if p == "D" then - op = op + shl(parse_gpr(params[n]), 11); n = n + 1 - elseif p == "T" then - op = op + shl(parse_gpr(params[n]), 16); n = n + 1 - elseif p == "S" then - op = op + shl(parse_gpr(params[n]), 21); n = n + 1 - elseif p == "F" then - op = op + shl(parse_fpr(params[n]), 6); n = n + 1 - elseif p == "G" then - op = op + shl(parse_fpr(params[n]), 11); n = n + 1 - elseif p == "H" then - op = op + shl(parse_fpr(params[n]), 16); n = n + 1 - elseif p == "R" then - op = op + shl(parse_fpr(params[n]), 21); n = n + 1 - elseif p == "I" then - op = op + parse_imm(params[n], 16, 0, 0, true); n = n + 1 - elseif p == "U" then - op = op + parse_imm(params[n], 16, 0, 0, false); n = n + 1 - elseif p == "O" then - op = op + parse_disp(params[n]); n = n + 1 - elseif p == "X" then - op = op + parse_index(params[n]); n = n + 1 - elseif p == "B" or p == "J" then - local mode, n, s = parse_label(params[n], false) - if p == "B" then n = n + 2048 end - waction("REL_"..mode, n, s, 1) - n = n + 1 - elseif p == "A" then - op = op + parse_imm(params[n], 5, 6, 0, false); n = n + 1 - elseif p == "a" then - local m = parse_imm(params[n], 6, 6, 0, false, "IMMS"); n = n + 1 - op = op + band(m, 0x7c0) + band(shr(m, 9), 4) - elseif p == "M" then - op = op + parse_imm(params[n], 5, 11, 0, false); n = n + 1 - elseif p == "N" then - op = op + parse_imm(params[n], 5, 16, 0, false); n = n + 1 - elseif p == "C" then - op = op + parse_imm(params[n], 3, 18, 0, false); n = n + 1 - elseif p == "V" then - op = op + parse_imm(params[n], 3, 8, 0, false); n = n + 1 - elseif p == "W" then - op = op + parse_imm(params[n], 3, 0, 0, false); n = n + 1 - elseif p == "Y" then - op = op + parse_imm(params[n], 20, 6, 0, false); n = n + 1 - elseif p == "Z" then - op = op + parse_imm(params[n], 10, 6, 0, false); n = n + 1 - elseif p == "=" then - op = op + shl(band(op, 0xf800), 5) -- Copy D to T for clz, clo. - else - assert(false) - end - end - wputpos(pos, op) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode to mark the position where the action list is to be emitted. -map_op[".actionlist_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeactions(out, name) end) -end - --- Pseudo-opcode to mark the position where the global enum is to be emitted. -map_op[".globals_1"] = function(params) - if not params then return "prefix" end - local prefix = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobals(out, prefix) end) -end - --- Pseudo-opcode to mark the position where the global names are to be emitted. -map_op[".globalnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobalnames(out, name) end) -end - --- Pseudo-opcode to mark the position where the extern names are to be emitted. -map_op[".externnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeexternnames(out, name) end) -end - ------------------------------------------------------------------------------- - --- Label pseudo-opcode (converted from trailing colon form). -map_op[".label_1"] = function(params) - if not params then return "[1-9] | ->global | =>pcexpr" end - if secpos+1 > maxsecpos then wflush() end - local mode, n, s = parse_label(params[1], true) - if mode == "EXT" then werror("bad label definition") end - waction("LABEL_"..mode, n, s, 1) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcodes for data storage. -map_op[".long_*"] = function(params) - if not params then return "imm..." end - for _,p in ipairs(params) do - local n = tonumber(p) - if not n then werror("bad immediate `"..p.."'") end - if n < 0 then n = n + 2^32 end - wputw(n) - if secpos+2 > maxsecpos then wflush() end - end -end - --- Alignment pseudo-opcode. -map_op[".align_1"] = function(params) - if not params then return "numpow2" end - if secpos+1 > maxsecpos then wflush() end - local align = tonumber(params[1]) - if align then - local x = align - -- Must be a power of 2 in the range (2 ... 256). - for i=1,8 do - x = x / 2 - if x == 1 then - waction("ALIGN", align-1, nil, 1) -- Action byte is 2**n-1. - return - end - end - end - werror("bad alignment") -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode for (primitive) type definitions (map to C types). -map_op[".type_3"] = function(params, nparams) - if not params then - return nparams == 2 and "name, ctype" or "name, ctype, reg" - end - local name, ctype, reg = params[1], params[2], params[3] - if not match(name, "^[%a_][%w_]*$") then - werror("bad type name `"..name.."'") - end - local tp = map_type[name] - if tp then - werror("duplicate type `"..name.."'") - end - -- Add #type to defines. A bit unclean to put it in map_archdef. - map_archdef["#"..name] = "sizeof("..ctype..")" - -- Add new type and emit shortcut define. - local num = ctypenum + 1 - map_type[name] = { - ctype = ctype, - ctypefmt = format("Dt%X(%%s)", num), - reg = reg, - } - wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype)) - ctypenum = num -end -map_op[".type_2"] = map_op[".type_3"] - --- Dump type definitions. -local function dumptypes(out, lvl) - local t = {} - for name in pairs(map_type) do t[#t+1] = name end - sort(t) - out:write("Type definitions:\n") - for _,name in ipairs(t) do - local tp = map_type[name] - local reg = tp.reg or "" - out:write(format(" %-20s %-20s %s\n", name, tp.ctype, reg)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Set the current section. -function _M.section(num) - waction("SECTION", num) - wflush(true) -- SECTION is a terminal action. -end - ------------------------------------------------------------------------------- - --- Dump architecture description. -function _M.dumparch(out) - out:write(format("DynASM %s version %s, released %s\n\n", - _info.arch, _info.version, _info.release)) - dumpactions(out) -end - --- Dump all user defined elements. -function _M.dumpdef(out, lvl) - dumptypes(out, lvl) - dumpglobals(out, lvl) - dumpexterns(out, lvl) -end - ------------------------------------------------------------------------------- - --- Pass callbacks from/to the DynASM core. -function _M.passcb(wl, we, wf, ww) - wline, werror, wfatal, wwarn = wl, we, wf, ww - return wflush -end - --- Setup the arch-specific module. -function _M.setup(arch, opt) - g_arch, g_opt = arch, opt -end - --- Merge the core maps and the arch-specific maps. -function _M.mergemaps(map_coreop, map_def) - setmetatable(map_op, { __index = map_coreop }) - setmetatable(map_def, { __index = map_archdef }) - return map_op, map_def -end - -return _M - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/dynasm/dasm_mips64.lua b/vmbuilder/dynasm/dasm_mips64.lua deleted file mode 100644 index 5636b23..0000000 --- a/vmbuilder/dynasm/dasm_mips64.lua +++ /dev/null @@ -1,12 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM MIPS64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- --- This module just sets 64 bit mode for the combined MIPS/MIPS64 module. --- All the interesting stuff is there. ------------------------------------------------------------------------------- - -mips64 = true -- Using a global is an ugly, but effective solution. -return require("dasm_mips") diff --git a/vmbuilder/dynasm/dasm_ppc.h b/vmbuilder/dynasm/dasm_ppc.h deleted file mode 100644 index 3a7ee9b..0000000 --- a/vmbuilder/dynasm/dasm_ppc.h +++ /dev/null @@ -1,419 +0,0 @@ -/* -** DynASM PPC/PPC64 encoding engine. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#include -#include -#include -#include - -#define DASM_ARCH "ppc" - -#ifndef DASM_EXTERN -#define DASM_EXTERN(a,b,c,d) 0 -#endif - -/* Action definitions. */ -enum { - DASM_STOP, DASM_SECTION, DASM_ESC, DASM_REL_EXT, - /* The following actions need a buffer position. */ - DASM_ALIGN, DASM_REL_LG, DASM_LABEL_LG, - /* The following actions also have an argument. */ - DASM_REL_PC, DASM_LABEL_PC, DASM_IMM, DASM_IMMSH, - DASM__MAX -}; - -/* Maximum number of section buffer positions for a single dasm_put() call. */ -#define DASM_MAXSECPOS 25 - -/* DynASM encoder status codes. Action list offset or number are or'ed in. */ -#define DASM_S_OK 0x00000000 -#define DASM_S_NOMEM 0x01000000 -#define DASM_S_PHASE 0x02000000 -#define DASM_S_MATCH_SEC 0x03000000 -#define DASM_S_RANGE_I 0x11000000 -#define DASM_S_RANGE_SEC 0x12000000 -#define DASM_S_RANGE_LG 0x13000000 -#define DASM_S_RANGE_PC 0x14000000 -#define DASM_S_RANGE_REL 0x15000000 -#define DASM_S_UNDEF_LG 0x21000000 -#define DASM_S_UNDEF_PC 0x22000000 - -/* Macros to convert positions (8 bit section + 24 bit index). */ -#define DASM_POS2IDX(pos) ((pos)&0x00ffffff) -#define DASM_POS2BIAS(pos) ((pos)&0xff000000) -#define DASM_SEC2POS(sec) ((sec)<<24) -#define DASM_POS2SEC(pos) ((pos)>>24) -#define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) - -/* Action list type. */ -typedef const unsigned int *dasm_ActList; - -/* Per-section structure. */ -typedef struct dasm_Section { - int *rbuf; /* Biased buffer pointer (negative section bias). */ - int *buf; /* True buffer pointer. */ - size_t bsize; /* Buffer size in bytes. */ - int pos; /* Biased buffer position. */ - int epos; /* End of biased buffer position - max single put. */ - int ofs; /* Byte offset into section. */ -} dasm_Section; - -/* Core structure holding the DynASM encoding state. */ -struct dasm_State { - size_t psize; /* Allocated size of this structure. */ - dasm_ActList actionlist; /* Current actionlist pointer. */ - int *lglabels; /* Local/global chain/pos ptrs. */ - size_t lgsize; - int *pclabels; /* PC label chains/pos ptrs. */ - size_t pcsize; - void **globals; /* Array of globals (bias -10). */ - dasm_Section *section; /* Pointer to active section. */ - size_t codesize; /* Total size of all code sections. */ - int maxsection; /* 0 <= sectionidx < maxsection. */ - int status; /* Status code. */ - dasm_Section sections[1]; /* All sections. Alloc-extended. */ -}; - -/* The size of the core structure depends on the max. number of sections. */ -#define DASM_PSZ(ms) (sizeof(dasm_State)+(ms-1)*sizeof(dasm_Section)) - - -/* Initialize DynASM state. */ -void dasm_init(Dst_DECL, int maxsection) -{ - dasm_State *D; - size_t psz = 0; - int i; - Dst_REF = NULL; - DASM_M_GROW(Dst, struct dasm_State, Dst_REF, psz, DASM_PSZ(maxsection)); - D = Dst_REF; - D->psize = psz; - D->lglabels = NULL; - D->lgsize = 0; - D->pclabels = NULL; - D->pcsize = 0; - D->globals = NULL; - D->maxsection = maxsection; - for (i = 0; i < maxsection; i++) { - D->sections[i].buf = NULL; /* Need this for pass3. */ - D->sections[i].rbuf = D->sections[i].buf - DASM_SEC2POS(i); - D->sections[i].bsize = 0; - D->sections[i].epos = 0; /* Wrong, but is recalculated after resize. */ - } -} - -/* Free DynASM state. */ -void dasm_free(Dst_DECL) -{ - dasm_State *D = Dst_REF; - int i; - for (i = 0; i < D->maxsection; i++) - if (D->sections[i].buf) - DASM_M_FREE(Dst, D->sections[i].buf, D->sections[i].bsize); - if (D->pclabels) DASM_M_FREE(Dst, D->pclabels, D->pcsize); - if (D->lglabels) DASM_M_FREE(Dst, D->lglabels, D->lgsize); - DASM_M_FREE(Dst, D, D->psize); -} - -/* Setup global label array. Must be called before dasm_setup(). */ -void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl) -{ - dasm_State *D = Dst_REF; - D->globals = gl - 10; /* Negative bias to compensate for locals. */ - DASM_M_GROW(Dst, int, D->lglabels, D->lgsize, (10+maxgl)*sizeof(int)); -} - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -void dasm_growpc(Dst_DECL, unsigned int maxpc) -{ - dasm_State *D = Dst_REF; - size_t osz = D->pcsize; - DASM_M_GROW(Dst, int, D->pclabels, D->pcsize, maxpc*sizeof(int)); - memset((void *)(((unsigned char *)D->pclabels)+osz), 0, D->pcsize-osz); -} - -/* Setup encoder. */ -void dasm_setup(Dst_DECL, const void *actionlist) -{ - dasm_State *D = Dst_REF; - int i; - D->actionlist = (dasm_ActList)actionlist; - D->status = DASM_S_OK; - D->section = &D->sections[0]; - memset((void *)D->lglabels, 0, D->lgsize); - if (D->pclabels) memset((void *)D->pclabels, 0, D->pcsize); - for (i = 0; i < D->maxsection; i++) { - D->sections[i].pos = DASM_SEC2POS(i); - D->sections[i].ofs = 0; - } -} - - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) { \ - D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0) -#define CKPL(kind, st) \ - do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \ - D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0) -#else -#define CK(x, st) ((void)0) -#define CKPL(kind, st) ((void)0) -#endif - -/* Pass 1: Store actions and args, link branches/labels, estimate offsets. */ -void dasm_put(Dst_DECL, int start, ...) -{ - va_list ap; - dasm_State *D = Dst_REF; - dasm_ActList p = D->actionlist + start; - dasm_Section *sec = D->section; - int pos = sec->pos, ofs = sec->ofs; - int *b; - - if (pos >= sec->epos) { - DASM_M_GROW(Dst, int, sec->buf, sec->bsize, - sec->bsize + 2*DASM_MAXSECPOS*sizeof(int)); - sec->rbuf = sec->buf - DASM_POS2BIAS(pos); - sec->epos = (int)sec->bsize/sizeof(int) - DASM_MAXSECPOS+DASM_POS2BIAS(pos); - } - - b = sec->rbuf; - b[pos++] = start; - - va_start(ap, start); - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - if (action >= DASM__MAX) { - ofs += 4; - } else { - int *pl, n = action >= DASM_REL_PC ? va_arg(ap, int) : 0; - switch (action) { - case DASM_STOP: goto stop; - case DASM_SECTION: - n = (ins & 255); CK(n < D->maxsection, RANGE_SEC); - D->section = &D->sections[n]; goto stop; - case DASM_ESC: p++; ofs += 4; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; - case DASM_REL_LG: - n = (ins & 2047) - 10; pl = D->lglabels + n; - /* Bkwd rel or global. */ - if (n >= 0) { CK(n>=10||*pl<0, RANGE_LG); CKPL(lg, LG); goto putrel; } - pl += 10; n = *pl; - if (n < 0) n = 0; /* Start new chain for fwd rel if label exists. */ - goto linkrel; - case DASM_REL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putrel: - n = *pl; - if (n < 0) { /* Label exists. Get label pos and store it. */ - b[pos] = -n; - } else { - linkrel: - b[pos] = n; /* Else link to rel chain, anchored at label. */ - *pl = pos; - } - pos++; - break; - case DASM_LABEL_LG: - pl = D->lglabels + (ins & 2047) - 10; CKPL(lg, LG); goto putlabel; - case DASM_LABEL_PC: - pl = D->pclabels + n; CKPL(pc, PC); - putlabel: - n = *pl; /* n > 0: Collapse rel chain and replace with label pos. */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; - } - *pl = -pos; /* Label exists now. */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_IMM: -#ifdef DASM_CHECKS - CK((n & ((1<<((ins>>10)&31))-1)) == 0, RANGE_I); -#endif - n >>= ((ins>>10)&31); -#ifdef DASM_CHECKS - if (ins & 0x8000) - CK(((n + (1<<(((ins>>5)&31)-1)))>>((ins>>5)&31)) == 0, RANGE_I); - else - CK((n>>((ins>>5)&31)) == 0, RANGE_I); -#endif - b[pos++] = n; - break; - case DASM_IMMSH: - CK((n >> 6) == 0, RANGE_I); - b[pos++] = n; - break; - } - } - } -stop: - va_end(ap); - sec->pos = pos; - sec->ofs = ofs; -} -#undef CK - -/* Pass 2: Link sections, shrink aligns, fix label offsets. */ -int dasm_link(Dst_DECL, size_t *szp) -{ - dasm_State *D = Dst_REF; - int secnum; - int ofs = 0; - -#ifdef DASM_CHECKS - *szp = 0; - if (D->status != DASM_S_OK) return D->status; - { - int pc; - for (pc = 0; pc*sizeof(int) < D->pcsize; pc++) - if (D->pclabels[pc] > 0) return DASM_S_UNDEF_PC|pc; - } -#endif - - { /* Handle globals not defined in this translation unit. */ - int idx; - for (idx = 20; idx*sizeof(int) < D->lgsize; idx++) { - int n = D->lglabels[idx]; - /* Undefined label: Collapse rel chain and replace with marker (< 0). */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } - } - } - - /* Combine all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->rbuf; - int pos = DASM_SEC2POS(secnum); - int lastpos = sec->pos; - - while (pos != lastpos) { - dasm_ActList p = D->actionlist + b[pos++]; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: p++; break; - case DASM_REL_EXT: break; - case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; - case DASM_REL_LG: case DASM_REL_PC: pos++; break; - case DASM_LABEL_LG: case DASM_LABEL_PC: b[pos++] += ofs; break; - case DASM_IMM: case DASM_IMMSH: pos++; break; - } - } - stop: (void)0; - } - ofs += sec->ofs; /* Next section starts right after current section. */ - } - - D->codesize = ofs; /* Total size of all code sections */ - *szp = ofs; - return DASM_S_OK; -} - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0) -#else -#define CK(x, st) ((void)0) -#endif - -/* Pass 3: Encode sections. */ -int dasm_encode(Dst_DECL, void *buffer) -{ - dasm_State *D = Dst_REF; - char *base = (char *)buffer; - unsigned int *cp = (unsigned int *)buffer; - int secnum; - - /* Encode all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->buf; - int *endb = sec->rbuf + sec->pos; - - while (b != endb) { - dasm_ActList p = D->actionlist + *b++; - while (1) { - unsigned int ins = *p++; - unsigned int action = (ins >> 16); - int n = (action >= DASM_ALIGN && action < DASM__MAX) ? *b++ : 0; - switch (action) { - case DASM_STOP: case DASM_SECTION: goto stop; - case DASM_ESC: *cp++ = *p++; break; - case DASM_REL_EXT: - n = DASM_EXTERN(Dst, (unsigned char *)cp, (ins & 2047), 1) - 4; - goto patchrel; - case DASM_ALIGN: - ins &= 255; while ((((char *)cp - base) & ins)) *cp++ = 0x60000000; - break; - case DASM_REL_LG: - CK(n >= 0, UNDEF_LG); - case DASM_REL_PC: - CK(n >= 0, UNDEF_PC); - n = *DASM_POS2PTR(D, n) - (int)((char *)cp - base); - patchrel: - CK((n & 3) == 0 && - (((n+4) + ((ins & 2048) ? 0x00008000 : 0x02000000)) >> - ((ins & 2048) ? 16 : 26)) == 0, RANGE_REL); - cp[-1] |= ((n+4) & ((ins & 2048) ? 0x0000fffc: 0x03fffffc)); - break; - case DASM_LABEL_LG: - ins &= 2047; if (ins >= 20) D->globals[ins-10] = (void *)(base + n); - break; - case DASM_LABEL_PC: break; - case DASM_IMM: - cp[-1] |= (n & ((1<<((ins>>5)&31))-1)) << (ins&31); - break; - case DASM_IMMSH: - cp[-1] |= (ins & 1) ? ((n&31)<<11)|((n&32)>>4) : ((n&31)<<6)|(n&32); - break; - default: *cp++ = ins; break; - } - } - stop: (void)0; - } - } - - if (base + D->codesize != (char *)cp) /* Check for phase errors. */ - return DASM_S_PHASE; - return DASM_S_OK; -} -#undef CK - -/* Get PC label offset. */ -int dasm_getpclabel(Dst_DECL, unsigned int pc) -{ - dasm_State *D = Dst_REF; - if (pc*sizeof(int) < D->pcsize) { - int pos = D->pclabels[pc]; - if (pos < 0) return *DASM_POS2PTR(D, -pos); - if (pos > 0) return -1; /* Undefined. */ - } - return -2; /* Unused or out of range. */ -} - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -int dasm_checkstep(Dst_DECL, int secmatch) -{ - dasm_State *D = Dst_REF; - if (D->status == DASM_S_OK) { - int i; - for (i = 1; i <= 9; i++) { - if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_LG|i; break; } - D->lglabels[i] = 0; - } - } - if (D->status == DASM_S_OK && secmatch >= 0 && - D->section != &D->sections[secmatch]) - D->status = DASM_S_MATCH_SEC|(D->section-D->sections); - return D->status; -} -#endif - diff --git a/vmbuilder/dynasm/dasm_ppc.lua b/vmbuilder/dynasm/dasm_ppc.lua deleted file mode 100644 index f73974d..0000000 --- a/vmbuilder/dynasm/dasm_ppc.lua +++ /dev/null @@ -1,1919 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM PPC/PPC64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. --- --- Support for various extensions contributed by Caio Souza Oliveira. ------------------------------------------------------------------------------- - --- Module information: -local _info = { - arch = "ppc", - description = "DynASM PPC module", - version = "1.4.0", - vernum = 10400, - release = "2015-10-18", - author = "Mike Pall", - license = "MIT", -} - --- Exported glue functions for the arch-specific module. -local _M = { _info = _info } - --- Cache library functions. -local type, tonumber, pairs, ipairs = type, tonumber, pairs, ipairs -local assert, setmetatable = assert, setmetatable -local _s = string -local sub, format, byte, char = _s.sub, _s.format, _s.byte, _s.char -local match, gmatch = _s.match, _s.gmatch -local concat, sort = table.concat, table.sort -local bit = bit or require("bit") -local band, shl, shr, sar = bit.band, bit.lshift, bit.rshift, bit.arshift -local tohex = bit.tohex - --- Inherited tables and callbacks. -local g_opt, g_arch -local wline, werror, wfatal, wwarn - --- Action name list. --- CHECK: Keep this in sync with the C code! -local action_names = { - "STOP", "SECTION", "ESC", "REL_EXT", - "ALIGN", "REL_LG", "LABEL_LG", - "REL_PC", "LABEL_PC", "IMM", "IMMSH" -} - --- Maximum number of section buffer positions for dasm_put(). --- CHECK: Keep this in sync with the C code! -local maxsecpos = 25 -- Keep this low, to avoid excessively long C lines. - --- Action name -> action number. -local map_action = {} -for n,name in ipairs(action_names) do - map_action[name] = n-1 -end - --- Action list buffer. -local actlist = {} - --- Argument list for next dasm_put(). Start with offset 0 into action list. -local actargs = { 0 } - --- Current number of section buffer positions for dasm_put(). -local secpos = 1 - ------------------------------------------------------------------------------- - --- Dump action names and numbers. -local function dumpactions(out) - out:write("DynASM encoding engine action codes:\n") - for n,name in ipairs(action_names) do - local num = map_action[name] - out:write(format(" %-10s %02X %d\n", name, num, num)) - end - out:write("\n") -end - --- Write action list buffer as a huge static C array. -local function writeactions(out, name) - local nn = #actlist - if nn == 0 then nn = 1; actlist[0] = map_action.STOP end - out:write("static const unsigned int ", name, "[", nn, "] = {\n") - for i = 1,nn-1 do - assert(out:write("0x", tohex(actlist[i]), ",\n")) - end - assert(out:write("0x", tohex(actlist[nn]), "\n};\n\n")) -end - ------------------------------------------------------------------------------- - --- Add word to action list. -local function wputxw(n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[#actlist+1] = n -end - --- Add action to list with optional arg. Advance buffer pos, too. -local function waction(action, val, a, num) - local w = assert(map_action[action], "bad action name `"..action.."'") - wputxw(w * 0x10000 + (val or 0)) - if a then actargs[#actargs+1] = a end - if a or num then secpos = secpos + (num or 1) end -end - --- Flush action list (intervening C code or buffer pos overflow). -local function wflush(term) - if #actlist == actargs[1] then return end -- Nothing to flush. - if not term then waction("STOP") end -- Terminate action list. - wline(format("dasm_put(Dst, %s);", concat(actargs, ", ")), true) - actargs = { #actlist } -- Actionlist offset is 1st arg to next dasm_put(). - secpos = 1 -- The actionlist offset occupies a buffer position, too. -end - --- Put escaped word. -local function wputw(n) - if n <= 0xffffff then waction("ESC") end - wputxw(n) -end - --- Reserve position for word. -local function wpos() - local pos = #actlist+1 - actlist[pos] = "" - return pos -end - --- Store word to reserved position. -local function wputpos(pos, n) - assert(n >= 0 and n <= 0xffffffff and n % 1 == 0, "word out of range") - actlist[pos] = n -end - ------------------------------------------------------------------------------- - --- Global label name -> global label number. With auto assignment on 1st use. -local next_global = 20 -local map_global = setmetatable({}, { __index = function(t, name) - if not match(name, "^[%a_][%w_]*$") then werror("bad global label") end - local n = next_global - if n > 2047 then werror("too many global labels") end - next_global = n + 1 - t[name] = n - return n -end}) - --- Dump global labels. -local function dumpglobals(out, lvl) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("Global labels:\n") - for i=20,next_global-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write global label enum. -local function writeglobals(out, prefix) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("enum {\n") - for i=20,next_global-1 do - out:write(" ", prefix, t[i], ",\n") - end - out:write(" ", prefix, "_MAX\n};\n") -end - --- Write global label names. -local function writeglobalnames(out, name) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=20,next_global-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Extern label name -> extern label number. With auto assignment on 1st use. -local next_extern = 0 -local map_extern_ = {} -local map_extern = setmetatable({}, { __index = function(t, name) - -- No restrictions on the name for now. - local n = next_extern - if n > 2047 then werror("too many extern labels") end - next_extern = n + 1 - t[name] = n - map_extern_[n] = name - return n -end}) - --- Dump extern labels. -local function dumpexterns(out, lvl) - out:write("Extern labels:\n") - for i=0,next_extern-1 do - out:write(format(" %s\n", map_extern_[i])) - end - out:write("\n") -end - --- Write extern label names. -local function writeexternnames(out, name) - out:write("static const char *const ", name, "[] = {\n") - for i=0,next_extern-1 do - out:write(" \"", map_extern_[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Arch-specific maps. -local map_archdef = { sp = "r1" } -- Ext. register name -> int. name. - -local map_type = {} -- Type name -> { ctype, reg } -local ctypenum = 0 -- Type number (for Dt... macros). - --- Reverse defines for registers. -function _M.revdef(s) - if s == "r1" then return "sp" end - return s -end - -local map_cond = { - lt = 0, gt = 1, eq = 2, so = 3, - ge = 4, le = 5, ne = 6, ns = 7, -} - ------------------------------------------------------------------------------- - -local map_op, op_template - -local function op_alias(opname, f) - return function(params, nparams) - if not params then return "-> "..opname:sub(1, -3) end - f(params, nparams) - op_template(params, map_op[opname], nparams) - end -end - --- Template strings for PPC instructions. -map_op = { - tdi_3 = "08000000ARI", - twi_3 = "0c000000ARI", - mulli_3 = "1c000000RRI", - subfic_3 = "20000000RRI", - cmplwi_3 = "28000000XRU", - cmplwi_2 = "28000000-RU", - cmpldi_3 = "28200000XRU", - cmpldi_2 = "28200000-RU", - cmpwi_3 = "2c000000XRI", - cmpwi_2 = "2c000000-RI", - cmpdi_3 = "2c200000XRI", - cmpdi_2 = "2c200000-RI", - addic_3 = "30000000RRI", - ["addic._3"] = "34000000RRI", - addi_3 = "38000000RR0I", - li_2 = "38000000RI", - la_2 = "38000000RD", - addis_3 = "3c000000RR0I", - lis_2 = "3c000000RI", - lus_2 = "3c000000RU", - bc_3 = "40000000AAK", - bcl_3 = "40000001AAK", - bdnz_1 = "42000000K", - bdz_1 = "42400000K", - sc_0 = "44000000", - b_1 = "48000000J", - bl_1 = "48000001J", - rlwimi_5 = "50000000RR~AAA.", - rlwinm_5 = "54000000RR~AAA.", - rlwnm_5 = "5c000000RR~RAA.", - ori_3 = "60000000RR~U", - nop_0 = "60000000", - oris_3 = "64000000RR~U", - xori_3 = "68000000RR~U", - xoris_3 = "6c000000RR~U", - ["andi._3"] = "70000000RR~U", - ["andis._3"] = "74000000RR~U", - lwz_2 = "80000000RD", - lwzu_2 = "84000000RD", - lbz_2 = "88000000RD", - lbzu_2 = "8c000000RD", - stw_2 = "90000000RD", - stwu_2 = "94000000RD", - stb_2 = "98000000RD", - stbu_2 = "9c000000RD", - lhz_2 = "a0000000RD", - lhzu_2 = "a4000000RD", - lha_2 = "a8000000RD", - lhau_2 = "ac000000RD", - sth_2 = "b0000000RD", - sthu_2 = "b4000000RD", - lmw_2 = "b8000000RD", - stmw_2 = "bc000000RD", - lfs_2 = "c0000000FD", - lfsu_2 = "c4000000FD", - lfd_2 = "c8000000FD", - lfdu_2 = "cc000000FD", - stfs_2 = "d0000000FD", - stfsu_2 = "d4000000FD", - stfd_2 = "d8000000FD", - stfdu_2 = "dc000000FD", - ld_2 = "e8000000RD", -- NYI: displacement must be divisible by 4. - ldu_2 = "e8000001RD", - lwa_2 = "e8000002RD", - std_2 = "f8000000RD", - stdu_2 = "f8000001RD", - - subi_3 = op_alias("addi_3", function(p) p[3] = "-("..p[3]..")" end), - subis_3 = op_alias("addis_3", function(p) p[3] = "-("..p[3]..")" end), - subic_3 = op_alias("addic_3", function(p) p[3] = "-("..p[3]..")" end), - ["subic._3"] = op_alias("addic._3", function(p) p[3] = "-("..p[3]..")" end), - - rotlwi_3 = op_alias("rlwinm_5", function(p) - p[4] = "0"; p[5] = "31" - end), - rotrwi_3 = op_alias("rlwinm_5", function(p) - p[3] = "32-("..p[3]..")"; p[4] = "0"; p[5] = "31" - end), - rotlw_3 = op_alias("rlwnm_5", function(p) - p[4] = "0"; p[5] = "31" - end), - slwi_3 = op_alias("rlwinm_5", function(p) - p[5] = "31-("..p[3]..")"; p[4] = "0" - end), - srwi_3 = op_alias("rlwinm_5", function(p) - p[4] = p[3]; p[3] = "32-("..p[3]..")"; p[5] = "31" - end), - clrlwi_3 = op_alias("rlwinm_5", function(p) - p[4] = p[3]; p[3] = "0"; p[5] = "31" - end), - clrrwi_3 = op_alias("rlwinm_5", function(p) - p[5] = "31-("..p[3]..")"; p[3] = "0"; p[4] = "0" - end), - - -- Primary opcode 4: - mulhhwu_3 = "10000010RRR.", - machhwu_3 = "10000018RRR.", - mulhhw_3 = "10000050RRR.", - nmachhw_3 = "1000005cRRR.", - machhwsu_3 = "10000098RRR.", - machhws_3 = "100000d8RRR.", - nmachhws_3 = "100000dcRRR.", - mulchwu_3 = "10000110RRR.", - macchwu_3 = "10000118RRR.", - mulchw_3 = "10000150RRR.", - macchw_3 = "10000158RRR.", - nmacchw_3 = "1000015cRRR.", - macchwsu_3 = "10000198RRR.", - macchws_3 = "100001d8RRR.", - nmacchws_3 = "100001dcRRR.", - mullhw_3 = "10000350RRR.", - maclhw_3 = "10000358RRR.", - nmaclhw_3 = "1000035cRRR.", - maclhwsu_3 = "10000398RRR.", - maclhws_3 = "100003d8RRR.", - nmaclhws_3 = "100003dcRRR.", - machhwuo_3 = "10000418RRR.", - nmachhwo_3 = "1000045cRRR.", - machhwsuo_3 = "10000498RRR.", - machhwso_3 = "100004d8RRR.", - nmachhwso_3 = "100004dcRRR.", - macchwuo_3 = "10000518RRR.", - macchwo_3 = "10000558RRR.", - nmacchwo_3 = "1000055cRRR.", - macchwsuo_3 = "10000598RRR.", - macchwso_3 = "100005d8RRR.", - nmacchwso_3 = "100005dcRRR.", - maclhwo_3 = "10000758RRR.", - nmaclhwo_3 = "1000075cRRR.", - maclhwsuo_3 = "10000798RRR.", - maclhwso_3 = "100007d8RRR.", - nmaclhwso_3 = "100007dcRRR.", - - vaddubm_3 = "10000000VVV", - vmaxub_3 = "10000002VVV", - vrlb_3 = "10000004VVV", - vcmpequb_3 = "10000006VVV", - vmuloub_3 = "10000008VVV", - vaddfp_3 = "1000000aVVV", - vmrghb_3 = "1000000cVVV", - vpkuhum_3 = "1000000eVVV", - vmhaddshs_4 = "10000020VVVV", - vmhraddshs_4 = "10000021VVVV", - vmladduhm_4 = "10000022VVVV", - vmsumubm_4 = "10000024VVVV", - vmsummbm_4 = "10000025VVVV", - vmsumuhm_4 = "10000026VVVV", - vmsumuhs_4 = "10000027VVVV", - vmsumshm_4 = "10000028VVVV", - vmsumshs_4 = "10000029VVVV", - vsel_4 = "1000002aVVVV", - vperm_4 = "1000002bVVVV", - vsldoi_4 = "1000002cVVVP", - vpermxor_4 = "1000002dVVVV", - vmaddfp_4 = "1000002eVVVV~", - vnmsubfp_4 = "1000002fVVVV~", - vaddeuqm_4 = "1000003cVVVV", - vaddecuq_4 = "1000003dVVVV", - vsubeuqm_4 = "1000003eVVVV", - vsubecuq_4 = "1000003fVVVV", - vadduhm_3 = "10000040VVV", - vmaxuh_3 = "10000042VVV", - vrlh_3 = "10000044VVV", - vcmpequh_3 = "10000046VVV", - vmulouh_3 = "10000048VVV", - vsubfp_3 = "1000004aVVV", - vmrghh_3 = "1000004cVVV", - vpkuwum_3 = "1000004eVVV", - vadduwm_3 = "10000080VVV", - vmaxuw_3 = "10000082VVV", - vrlw_3 = "10000084VVV", - vcmpequw_3 = "10000086VVV", - vmulouw_3 = "10000088VVV", - vmuluwm_3 = "10000089VVV", - vmrghw_3 = "1000008cVVV", - vpkuhus_3 = "1000008eVVV", - vaddudm_3 = "100000c0VVV", - vmaxud_3 = "100000c2VVV", - vrld_3 = "100000c4VVV", - vcmpeqfp_3 = "100000c6VVV", - vcmpequd_3 = "100000c7VVV", - vpkuwus_3 = "100000ceVVV", - vadduqm_3 = "10000100VVV", - vmaxsb_3 = "10000102VVV", - vslb_3 = "10000104VVV", - vmulosb_3 = "10000108VVV", - vrefp_2 = "1000010aV-V", - vmrglb_3 = "1000010cVVV", - vpkshus_3 = "1000010eVVV", - vaddcuq_3 = "10000140VVV", - vmaxsh_3 = "10000142VVV", - vslh_3 = "10000144VVV", - vmulosh_3 = "10000148VVV", - vrsqrtefp_2 = "1000014aV-V", - vmrglh_3 = "1000014cVVV", - vpkswus_3 = "1000014eVVV", - vaddcuw_3 = "10000180VVV", - vmaxsw_3 = "10000182VVV", - vslw_3 = "10000184VVV", - vmulosw_3 = "10000188VVV", - vexptefp_2 = "1000018aV-V", - vmrglw_3 = "1000018cVVV", - vpkshss_3 = "1000018eVVV", - vmaxsd_3 = "100001c2VVV", - vsl_3 = "100001c4VVV", - vcmpgefp_3 = "100001c6VVV", - vlogefp_2 = "100001caV-V", - vpkswss_3 = "100001ceVVV", - vadduhs_3 = "10000240VVV", - vminuh_3 = "10000242VVV", - vsrh_3 = "10000244VVV", - vcmpgtuh_3 = "10000246VVV", - vmuleuh_3 = "10000248VVV", - vrfiz_2 = "1000024aV-V", - vsplth_3 = "1000024cVV3", - vupkhsh_2 = "1000024eV-V", - vminuw_3 = "10000282VVV", - vminud_3 = "100002c2VVV", - vcmpgtud_3 = "100002c7VVV", - vrfim_2 = "100002caV-V", - vcmpgtsb_3 = "10000306VVV", - vcfux_3 = "1000030aVVA~", - vaddshs_3 = "10000340VVV", - vminsh_3 = "10000342VVV", - vsrah_3 = "10000344VVV", - vcmpgtsh_3 = "10000346VVV", - vmulesh_3 = "10000348VVV", - vcfsx_3 = "1000034aVVA~", - vspltish_2 = "1000034cVS", - vupkhpx_2 = "1000034eV-V", - vaddsws_3 = "10000380VVV", - vminsw_3 = "10000382VVV", - vsraw_3 = "10000384VVV", - vcmpgtsw_3 = "10000386VVV", - vmulesw_3 = "10000388VVV", - vctuxs_3 = "1000038aVVA~", - vspltisw_2 = "1000038cVS", - vminsd_3 = "100003c2VVV", - vsrad_3 = "100003c4VVV", - vcmpbfp_3 = "100003c6VVV", - vcmpgtsd_3 = "100003c7VVV", - vctsxs_3 = "100003caVVA~", - vupklpx_2 = "100003ceV-V", - vsububm_3 = "10000400VVV", - ["bcdadd._4"] = "10000401VVVy.", - vavgub_3 = "10000402VVV", - vand_3 = "10000404VVV", - ["vcmpequb._3"] = "10000406VVV", - vmaxfp_3 = "1000040aVVV", - vsubuhm_3 = "10000440VVV", - ["bcdsub._4"] = "10000441VVVy.", - vavguh_3 = "10000442VVV", - vandc_3 = "10000444VVV", - ["vcmpequh._3"] = "10000446VVV", - vminfp_3 = "1000044aVVV", - vpkudum_3 = "1000044eVVV", - vsubuwm_3 = "10000480VVV", - vavguw_3 = "10000482VVV", - vor_3 = "10000484VVV", - ["vcmpequw._3"] = "10000486VVV", - vpmsumw_3 = "10000488VVV", - ["vcmpeqfp._3"] = "100004c6VVV", - ["vcmpequd._3"] = "100004c7VVV", - vpkudus_3 = "100004ceVVV", - vavgsb_3 = "10000502VVV", - vavgsh_3 = "10000542VVV", - vorc_3 = "10000544VVV", - vbpermq_3 = "1000054cVVV", - vpksdus_3 = "1000054eVVV", - vavgsw_3 = "10000582VVV", - vsld_3 = "100005c4VVV", - ["vcmpgefp._3"] = "100005c6VVV", - vpksdss_3 = "100005ceVVV", - vsububs_3 = "10000600VVV", - mfvscr_1 = "10000604V--", - vsum4ubs_3 = "10000608VVV", - vsubuhs_3 = "10000640VVV", - mtvscr_1 = "10000644--V", - ["vcmpgtuh._3"] = "10000646VVV", - vsum4shs_3 = "10000648VVV", - vupkhsw_2 = "1000064eV-V", - vsubuws_3 = "10000680VVV", - vshasigmaw_4 = "10000682VVYp", - veqv_3 = "10000684VVV", - vsum2sws_3 = "10000688VVV", - vmrgow_3 = "1000068cVVV", - vshasigmad_4 = "100006c2VVYp", - vsrd_3 = "100006c4VVV", - ["vcmpgtud._3"] = "100006c7VVV", - vupklsw_2 = "100006ceV-V", - vupkslw_2 = "100006ceV-V", - vsubsbs_3 = "10000700VVV", - vclzb_2 = "10000702V-V", - vpopcntb_2 = "10000703V-V", - ["vcmpgtsb._3"] = "10000706VVV", - vsum4sbs_3 = "10000708VVV", - vsubshs_3 = "10000740VVV", - vclzh_2 = "10000742V-V", - vpopcnth_2 = "10000743V-V", - ["vcmpgtsh._3"] = "10000746VVV", - vsubsws_3 = "10000780VVV", - vclzw_2 = "10000782V-V", - vpopcntw_2 = "10000783V-V", - ["vcmpgtsw._3"] = "10000786VVV", - vsumsws_3 = "10000788VVV", - vmrgew_3 = "1000078cVVV", - vclzd_2 = "100007c2V-V", - vpopcntd_2 = "100007c3V-V", - ["vcmpbfp._3"] = "100007c6VVV", - ["vcmpgtsd._3"] = "100007c7VVV", - - -- Primary opcode 19: - mcrf_2 = "4c000000XX", - isync_0 = "4c00012c", - crnor_3 = "4c000042CCC", - crnot_2 = "4c000042CC=", - crandc_3 = "4c000102CCC", - crxor_3 = "4c000182CCC", - crclr_1 = "4c000182C==", - crnand_3 = "4c0001c2CCC", - crand_3 = "4c000202CCC", - creqv_3 = "4c000242CCC", - crset_1 = "4c000242C==", - crorc_3 = "4c000342CCC", - cror_3 = "4c000382CCC", - crmove_2 = "4c000382CC=", - bclr_2 = "4c000020AA", - bclrl_2 = "4c000021AA", - bcctr_2 = "4c000420AA", - bcctrl_2 = "4c000421AA", - bctar_2 = "4c000460AA", - bctarl_2 = "4c000461AA", - blr_0 = "4e800020", - blrl_0 = "4e800021", - bctr_0 = "4e800420", - bctrl_0 = "4e800421", - - -- Primary opcode 31: - cmpw_3 = "7c000000XRR", - cmpw_2 = "7c000000-RR", - cmpd_3 = "7c200000XRR", - cmpd_2 = "7c200000-RR", - tw_3 = "7c000008ARR", - lvsl_3 = "7c00000cVRR", - subfc_3 = "7c000010RRR.", - subc_3 = "7c000010RRR~.", - mulhdu_3 = "7c000012RRR.", - addc_3 = "7c000014RRR.", - mulhwu_3 = "7c000016RRR.", - isel_4 = "7c00001eRRRC", - isellt_3 = "7c00001eRRR", - iselgt_3 = "7c00005eRRR", - iseleq_3 = "7c00009eRRR", - mfcr_1 = "7c000026R", - mfocrf_2 = "7c100026RG", - mtcrf_2 = "7c000120GR", - mtocrf_2 = "7c100120GR", - lwarx_3 = "7c000028RR0R", - ldx_3 = "7c00002aRR0R", - lwzx_3 = "7c00002eRR0R", - slw_3 = "7c000030RR~R.", - cntlzw_2 = "7c000034RR~", - sld_3 = "7c000036RR~R.", - and_3 = "7c000038RR~R.", - cmplw_3 = "7c000040XRR", - cmplw_2 = "7c000040-RR", - cmpld_3 = "7c200040XRR", - cmpld_2 = "7c200040-RR", - lvsr_3 = "7c00004cVRR", - subf_3 = "7c000050RRR.", - sub_3 = "7c000050RRR~.", - lbarx_3 = "7c000068RR0R", - ldux_3 = "7c00006aRR0R", - dcbst_2 = "7c00006c-RR", - lwzux_3 = "7c00006eRR0R", - cntlzd_2 = "7c000074RR~", - andc_3 = "7c000078RR~R.", - td_3 = "7c000088ARR", - lvewx_3 = "7c00008eVRR", - mulhd_3 = "7c000092RRR.", - addg6s_3 = "7c000094RRR", - mulhw_3 = "7c000096RRR.", - dlmzb_3 = "7c00009cRR~R.", - ldarx_3 = "7c0000a8RR0R", - dcbf_2 = "7c0000ac-RR", - lbzx_3 = "7c0000aeRR0R", - lvx_3 = "7c0000ceVRR", - neg_2 = "7c0000d0RR.", - lharx_3 = "7c0000e8RR0R", - lbzux_3 = "7c0000eeRR0R", - popcntb_2 = "7c0000f4RR~", - not_2 = "7c0000f8RR~%.", - nor_3 = "7c0000f8RR~R.", - stvebx_3 = "7c00010eVRR", - subfe_3 = "7c000110RRR.", - sube_3 = "7c000110RRR~.", - adde_3 = "7c000114RRR.", - stdx_3 = "7c00012aRR0R", - ["stwcx._3"] = "7c00012dRR0R.", - stwx_3 = "7c00012eRR0R", - prtyw_2 = "7c000134RR~", - stvehx_3 = "7c00014eVRR", - stdux_3 = "7c00016aRR0R", - ["stqcx._3"] = "7c00016dR:R0R.", - stwux_3 = "7c00016eRR0R", - prtyd_2 = "7c000174RR~", - stvewx_3 = "7c00018eVRR", - subfze_2 = "7c000190RR.", - addze_2 = "7c000194RR.", - ["stdcx._3"] = "7c0001adRR0R.", - stbx_3 = "7c0001aeRR0R", - stvx_3 = "7c0001ceVRR", - subfme_2 = "7c0001d0RR.", - mulld_3 = "7c0001d2RRR.", - addme_2 = "7c0001d4RR.", - mullw_3 = "7c0001d6RRR.", - dcbtst_2 = "7c0001ec-RR", - stbux_3 = "7c0001eeRR0R", - bpermd_3 = "7c0001f8RR~R", - lvepxl_3 = "7c00020eVRR", - add_3 = "7c000214RRR.", - lqarx_3 = "7c000228R:R0R", - dcbt_2 = "7c00022c-RR", - lhzx_3 = "7c00022eRR0R", - cdtbcd_2 = "7c000234RR~", - eqv_3 = "7c000238RR~R.", - lvepx_3 = "7c00024eVRR", - eciwx_3 = "7c00026cRR0R", - lhzux_3 = "7c00026eRR0R", - cbcdtd_2 = "7c000274RR~", - xor_3 = "7c000278RR~R.", - mfspefscr_1 = "7c0082a6R", - mfxer_1 = "7c0102a6R", - mflr_1 = "7c0802a6R", - mfctr_1 = "7c0902a6R", - lwax_3 = "7c0002aaRR0R", - lhax_3 = "7c0002aeRR0R", - mftb_1 = "7c0c42e6R", - mftbu_1 = "7c0d42e6R", - lvxl_3 = "7c0002ceVRR", - lwaux_3 = "7c0002eaRR0R", - lhaux_3 = "7c0002eeRR0R", - popcntw_2 = "7c0002f4RR~", - divdeu_3 = "7c000312RRR.", - divweu_3 = "7c000316RRR.", - sthx_3 = "7c00032eRR0R", - orc_3 = "7c000338RR~R.", - ecowx_3 = "7c00036cRR0R", - sthux_3 = "7c00036eRR0R", - or_3 = "7c000378RR~R.", - mr_2 = "7c000378RR~%.", - divdu_3 = "7c000392RRR.", - divwu_3 = "7c000396RRR.", - mtspefscr_1 = "7c0083a6R", - mtxer_1 = "7c0103a6R", - mtlr_1 = "7c0803a6R", - mtctr_1 = "7c0903a6R", - dcbi_2 = "7c0003ac-RR", - nand_3 = "7c0003b8RR~R.", - dsn_2 = "7c0003c6-RR", - stvxl_3 = "7c0003ceVRR", - divd_3 = "7c0003d2RRR.", - divw_3 = "7c0003d6RRR.", - popcntd_2 = "7c0003f4RR~", - cmpb_3 = "7c0003f8RR~R.", - mcrxr_1 = "7c000400X", - lbdx_3 = "7c000406RRR", - subfco_3 = "7c000410RRR.", - subco_3 = "7c000410RRR~.", - addco_3 = "7c000414RRR.", - ldbrx_3 = "7c000428RR0R", - lswx_3 = "7c00042aRR0R", - lwbrx_3 = "7c00042cRR0R", - lfsx_3 = "7c00042eFR0R", - srw_3 = "7c000430RR~R.", - srd_3 = "7c000436RR~R.", - lhdx_3 = "7c000446RRR", - subfo_3 = "7c000450RRR.", - subo_3 = "7c000450RRR~.", - lfsux_3 = "7c00046eFR0R", - lwdx_3 = "7c000486RRR", - lswi_3 = "7c0004aaRR0A", - sync_0 = "7c0004ac", - lwsync_0 = "7c2004ac", - ptesync_0 = "7c4004ac", - lfdx_3 = "7c0004aeFR0R", - lddx_3 = "7c0004c6RRR", - nego_2 = "7c0004d0RR.", - lfdux_3 = "7c0004eeFR0R", - stbdx_3 = "7c000506RRR", - subfeo_3 = "7c000510RRR.", - subeo_3 = "7c000510RRR~.", - addeo_3 = "7c000514RRR.", - stdbrx_3 = "7c000528RR0R", - stswx_3 = "7c00052aRR0R", - stwbrx_3 = "7c00052cRR0R", - stfsx_3 = "7c00052eFR0R", - sthdx_3 = "7c000546RRR", - ["stbcx._3"] = "7c00056dRRR", - stfsux_3 = "7c00056eFR0R", - stwdx_3 = "7c000586RRR", - subfzeo_2 = "7c000590RR.", - addzeo_2 = "7c000594RR.", - stswi_3 = "7c0005aaRR0A", - ["sthcx._3"] = "7c0005adRRR", - stfdx_3 = "7c0005aeFR0R", - stddx_3 = "7c0005c6RRR", - subfmeo_2 = "7c0005d0RR.", - mulldo_3 = "7c0005d2RRR.", - addmeo_2 = "7c0005d4RR.", - mullwo_3 = "7c0005d6RRR.", - dcba_2 = "7c0005ec-RR", - stfdux_3 = "7c0005eeFR0R", - stvepxl_3 = "7c00060eVRR", - addo_3 = "7c000614RRR.", - lhbrx_3 = "7c00062cRR0R", - lfdpx_3 = "7c00062eF:RR", - sraw_3 = "7c000630RR~R.", - srad_3 = "7c000634RR~R.", - lfddx_3 = "7c000646FRR", - stvepx_3 = "7c00064eVRR", - srawi_3 = "7c000670RR~A.", - sradi_3 = "7c000674RR~H.", - eieio_0 = "7c0006ac", - lfiwax_3 = "7c0006aeFR0R", - divdeuo_3 = "7c000712RRR.", - divweuo_3 = "7c000716RRR.", - sthbrx_3 = "7c00072cRR0R", - stfdpx_3 = "7c00072eF:RR", - extsh_2 = "7c000734RR~.", - stfddx_3 = "7c000746FRR", - divdeo_3 = "7c000752RRR.", - divweo_3 = "7c000756RRR.", - extsb_2 = "7c000774RR~.", - divduo_3 = "7c000792RRR.", - divwou_3 = "7c000796RRR.", - icbi_2 = "7c0007ac-RR", - stfiwx_3 = "7c0007aeFR0R", - extsw_2 = "7c0007b4RR~.", - divdo_3 = "7c0007d2RRR.", - divwo_3 = "7c0007d6RRR.", - dcbz_2 = "7c0007ec-RR", - - ["tbegin._1"] = "7c00051d1", - ["tbegin._0"] = "7c00051d", - ["tend._1"] = "7c00055dY", - ["tend._0"] = "7c00055d", - ["tendall._0"] = "7e00055d", - tcheck_1 = "7c00059cX", - ["tsr._1"] = "7c0005dd1", - ["tsuspend._0"] = "7c0005dd", - ["tresume._0"] = "7c2005dd", - ["tabortwc._3"] = "7c00061dARR", - ["tabortdc._3"] = "7c00065dARR", - ["tabortwci._3"] = "7c00069dARS", - ["tabortdci._3"] = "7c0006ddARS", - ["tabort._1"] = "7c00071d-R-", - ["treclaim._1"] = "7c00075d-R", - ["trechkpt._0"] = "7c0007dd", - - lxsiwzx_3 = "7c000018QRR", - lxsiwax_3 = "7c000098QRR", - mfvsrd_2 = "7c000066-Rq", - mfvsrwz_2 = "7c0000e6-Rq", - stxsiwx_3 = "7c000118QRR", - mtvsrd_2 = "7c000166QR", - mtvsrwa_2 = "7c0001a6QR", - lxvdsx_3 = "7c000298QRR", - lxsspx_3 = "7c000418QRR", - lxsdx_3 = "7c000498QRR", - stxsspx_3 = "7c000518QRR", - stxsdx_3 = "7c000598QRR", - lxvw4x_3 = "7c000618QRR", - lxvd2x_3 = "7c000698QRR", - stxvw4x_3 = "7c000718QRR", - stxvd2x_3 = "7c000798QRR", - - -- Primary opcode 30: - rldicl_4 = "78000000RR~HM.", - rldicr_4 = "78000004RR~HM.", - rldic_4 = "78000008RR~HM.", - rldimi_4 = "7800000cRR~HM.", - rldcl_4 = "78000010RR~RM.", - rldcr_4 = "78000012RR~RM.", - - rotldi_3 = op_alias("rldicl_4", function(p) - p[4] = "0" - end), - rotrdi_3 = op_alias("rldicl_4", function(p) - p[3] = "64-("..p[3]..")"; p[4] = "0" - end), - rotld_3 = op_alias("rldcl_4", function(p) - p[4] = "0" - end), - sldi_3 = op_alias("rldicr_4", function(p) - p[4] = "63-("..p[3]..")" - end), - srdi_3 = op_alias("rldicl_4", function(p) - p[4] = p[3]; p[3] = "64-("..p[3]..")" - end), - clrldi_3 = op_alias("rldicl_4", function(p) - p[4] = p[3]; p[3] = "0" - end), - clrrdi_3 = op_alias("rldicr_4", function(p) - p[4] = "63-("..p[3]..")"; p[3] = "0" - end), - - -- Primary opcode 56: - lq_2 = "e0000000R:D", -- NYI: displacement must be divisible by 8. - - -- Primary opcode 57: - lfdp_2 = "e4000000F:D", -- NYI: displacement must be divisible by 4. - - -- Primary opcode 59: - fdivs_3 = "ec000024FFF.", - fsubs_3 = "ec000028FFF.", - fadds_3 = "ec00002aFFF.", - fsqrts_2 = "ec00002cF-F.", - fres_2 = "ec000030F-F.", - fmuls_3 = "ec000032FF-F.", - frsqrtes_2 = "ec000034F-F.", - fmsubs_4 = "ec000038FFFF~.", - fmadds_4 = "ec00003aFFFF~.", - fnmsubs_4 = "ec00003cFFFF~.", - fnmadds_4 = "ec00003eFFFF~.", - fcfids_2 = "ec00069cF-F.", - fcfidus_2 = "ec00079cF-F.", - - dadd_3 = "ec000004FFF.", - dqua_4 = "ec000006FFFZ.", - dmul_3 = "ec000044FFF.", - drrnd_4 = "ec000046FFFZ.", - dscli_3 = "ec000084FF6.", - dquai_4 = "ec000086SF~FZ.", - dscri_3 = "ec0000c4FF6.", - drintx_4 = "ec0000c61F~FZ.", - dcmpo_3 = "ec000104XFF", - dtstex_3 = "ec000144XFF", - dtstdc_3 = "ec000184XF6", - dtstdg_3 = "ec0001c4XF6", - drintn_4 = "ec0001c61F~FZ.", - dctdp_2 = "ec000204F-F.", - dctfix_2 = "ec000244F-F.", - ddedpd_3 = "ec000284ZF~F.", - dxex_2 = "ec0002c4F-F.", - dsub_3 = "ec000404FFF.", - ddiv_3 = "ec000444FFF.", - dcmpu_3 = "ec000504XFF", - dtstsf_3 = "ec000544XFF", - drsp_2 = "ec000604F-F.", - dcffix_2 = "ec000644F-F.", - denbcd_3 = "ec000684YF~F.", - diex_3 = "ec0006c4FFF.", - - -- Primary opcode 60: - xsaddsp_3 = "f0000000QQQ", - xsmaddasp_3 = "f0000008QQQ", - xxsldwi_4 = "f0000010QQQz", - xsrsqrtesp_2 = "f0000028Q-Q", - xssqrtsp_2 = "f000002cQ-Q", - xxsel_4 = "f0000030QQQQ", - xssubsp_3 = "f0000040QQQ", - xsmaddmsp_3 = "f0000048QQQ", - xxpermdi_4 = "f0000050QQQz", - xsresp_2 = "f0000068Q-Q", - xsmulsp_3 = "f0000080QQQ", - xsmsubasp_3 = "f0000088QQQ", - xxmrghw_3 = "f0000090QQQ", - xsdivsp_3 = "f00000c0QQQ", - xsmsubmsp_3 = "f00000c8QQQ", - xsadddp_3 = "f0000100QQQ", - xsmaddadp_3 = "f0000108QQQ", - xscmpudp_3 = "f0000118XQQ", - xscvdpuxws_2 = "f0000120Q-Q", - xsrdpi_2 = "f0000124Q-Q", - xsrsqrtedp_2 = "f0000128Q-Q", - xssqrtdp_2 = "f000012cQ-Q", - xssubdp_3 = "f0000140QQQ", - xsmaddmdp_3 = "f0000148QQQ", - xscmpodp_3 = "f0000158XQQ", - xscvdpsxws_2 = "f0000160Q-Q", - xsrdpiz_2 = "f0000164Q-Q", - xsredp_2 = "f0000168Q-Q", - xsmuldp_3 = "f0000180QQQ", - xsmsubadp_3 = "f0000188QQQ", - xxmrglw_3 = "f0000190QQQ", - xsrdpip_2 = "f00001a4Q-Q", - xstsqrtdp_2 = "f00001a8X-Q", - xsrdpic_2 = "f00001acQ-Q", - xsdivdp_3 = "f00001c0QQQ", - xsmsubmdp_3 = "f00001c8QQQ", - xsrdpim_2 = "f00001e4Q-Q", - xstdivdp_3 = "f00001e8XQQ", - xvaddsp_3 = "f0000200QQQ", - xvmaddasp_3 = "f0000208QQQ", - xvcmpeqsp_3 = "f0000218QQQ", - xvcvspuxws_2 = "f0000220Q-Q", - xvrspi_2 = "f0000224Q-Q", - xvrsqrtesp_2 = "f0000228Q-Q", - xvsqrtsp_2 = "f000022cQ-Q", - xvsubsp_3 = "f0000240QQQ", - xvmaddmsp_3 = "f0000248QQQ", - xvcmpgtsp_3 = "f0000258QQQ", - xvcvspsxws_2 = "f0000260Q-Q", - xvrspiz_2 = "f0000264Q-Q", - xvresp_2 = "f0000268Q-Q", - xvmulsp_3 = "f0000280QQQ", - xvmsubasp_3 = "f0000288QQQ", - xxspltw_3 = "f0000290QQg~", - xvcmpgesp_3 = "f0000298QQQ", - xvcvuxwsp_2 = "f00002a0Q-Q", - xvrspip_2 = "f00002a4Q-Q", - xvtsqrtsp_2 = "f00002a8X-Q", - xvrspic_2 = "f00002acQ-Q", - xvdivsp_3 = "f00002c0QQQ", - xvmsubmsp_3 = "f00002c8QQQ", - xvcvsxwsp_2 = "f00002e0Q-Q", - xvrspim_2 = "f00002e4Q-Q", - xvtdivsp_3 = "f00002e8XQQ", - xvadddp_3 = "f0000300QQQ", - xvmaddadp_3 = "f0000308QQQ", - xvcmpeqdp_3 = "f0000318QQQ", - xvcvdpuxws_2 = "f0000320Q-Q", - xvrdpi_2 = "f0000324Q-Q", - xvrsqrtedp_2 = "f0000328Q-Q", - xvsqrtdp_2 = "f000032cQ-Q", - xvsubdp_3 = "f0000340QQQ", - xvmaddmdp_3 = "f0000348QQQ", - xvcmpgtdp_3 = "f0000358QQQ", - xvcvdpsxws_2 = "f0000360Q-Q", - xvrdpiz_2 = "f0000364Q-Q", - xvredp_2 = "f0000368Q-Q", - xvmuldp_3 = "f0000380QQQ", - xvmsubadp_3 = "f0000388QQQ", - xvcmpgedp_3 = "f0000398QQQ", - xvcvuxwdp_2 = "f00003a0Q-Q", - xvrdpip_2 = "f00003a4Q-Q", - xvtsqrtdp_2 = "f00003a8X-Q", - xvrdpic_2 = "f00003acQ-Q", - xvdivdp_3 = "f00003c0QQQ", - xvmsubmdp_3 = "f00003c8QQQ", - xvcvsxwdp_2 = "f00003e0Q-Q", - xvrdpim_2 = "f00003e4Q-Q", - xvtdivdp_3 = "f00003e8XQQ", - xsnmaddasp_3 = "f0000408QQQ", - xxland_3 = "f0000410QQQ", - xscvdpsp_2 = "f0000424Q-Q", - xscvdpspn_2 = "f000042cQ-Q", - xsnmaddmsp_3 = "f0000448QQQ", - xxlandc_3 = "f0000450QQQ", - xsrsp_2 = "f0000464Q-Q", - xsnmsubasp_3 = "f0000488QQQ", - xxlor_3 = "f0000490QQQ", - xscvuxdsp_2 = "f00004a0Q-Q", - xsnmsubmsp_3 = "f00004c8QQQ", - xxlxor_3 = "f00004d0QQQ", - xscvsxdsp_2 = "f00004e0Q-Q", - xsmaxdp_3 = "f0000500QQQ", - xsnmaddadp_3 = "f0000508QQQ", - xxlnor_3 = "f0000510QQQ", - xscvdpuxds_2 = "f0000520Q-Q", - xscvspdp_2 = "f0000524Q-Q", - xscvspdpn_2 = "f000052cQ-Q", - xsmindp_3 = "f0000540QQQ", - xsnmaddmdp_3 = "f0000548QQQ", - xxlorc_3 = "f0000550QQQ", - xscvdpsxds_2 = "f0000560Q-Q", - xsabsdp_2 = "f0000564Q-Q", - xscpsgndp_3 = "f0000580QQQ", - xsnmsubadp_3 = "f0000588QQQ", - xxlnand_3 = "f0000590QQQ", - xscvuxddp_2 = "f00005a0Q-Q", - xsnabsdp_2 = "f00005a4Q-Q", - xsnmsubmdp_3 = "f00005c8QQQ", - xxleqv_3 = "f00005d0QQQ", - xscvsxddp_2 = "f00005e0Q-Q", - xsnegdp_2 = "f00005e4Q-Q", - xvmaxsp_3 = "f0000600QQQ", - xvnmaddasp_3 = "f0000608QQQ", - ["xvcmpeqsp._3"] = "f0000618QQQ", - xvcvspuxds_2 = "f0000620Q-Q", - xvcvdpsp_2 = "f0000624Q-Q", - xvminsp_3 = "f0000640QQQ", - xvnmaddmsp_3 = "f0000648QQQ", - ["xvcmpgtsp._3"] = "f0000658QQQ", - xvcvspsxds_2 = "f0000660Q-Q", - xvabssp_2 = "f0000664Q-Q", - xvcpsgnsp_3 = "f0000680QQQ", - xvnmsubasp_3 = "f0000688QQQ", - ["xvcmpgesp._3"] = "f0000698QQQ", - xvcvuxdsp_2 = "f00006a0Q-Q", - xvnabssp_2 = "f00006a4Q-Q", - xvnmsubmsp_3 = "f00006c8QQQ", - xvcvsxdsp_2 = "f00006e0Q-Q", - xvnegsp_2 = "f00006e4Q-Q", - xvmaxdp_3 = "f0000700QQQ", - xvnmaddadp_3 = "f0000708QQQ", - ["xvcmpeqdp._3"] = "f0000718QQQ", - xvcvdpuxds_2 = "f0000720Q-Q", - xvcvspdp_2 = "f0000724Q-Q", - xvmindp_3 = "f0000740QQQ", - xvnmaddmdp_3 = "f0000748QQQ", - ["xvcmpgtdp._3"] = "f0000758QQQ", - xvcvdpsxds_2 = "f0000760Q-Q", - xvabsdp_2 = "f0000764Q-Q", - xvcpsgndp_3 = "f0000780QQQ", - xvnmsubadp_3 = "f0000788QQQ", - ["xvcmpgedp._3"] = "f0000798QQQ", - xvcvuxddp_2 = "f00007a0Q-Q", - xvnabsdp_2 = "f00007a4Q-Q", - xvnmsubmdp_3 = "f00007c8QQQ", - xvcvsxddp_2 = "f00007e0Q-Q", - xvnegdp_2 = "f00007e4Q-Q", - - -- Primary opcode 61: - stfdp_2 = "f4000000F:D", -- NYI: displacement must be divisible by 4. - - -- Primary opcode 62: - stq_2 = "f8000002R:D", -- NYI: displacement must be divisible by 8. - - -- Primary opcode 63: - fdiv_3 = "fc000024FFF.", - fsub_3 = "fc000028FFF.", - fadd_3 = "fc00002aFFF.", - fsqrt_2 = "fc00002cF-F.", - fsel_4 = "fc00002eFFFF~.", - fre_2 = "fc000030F-F.", - fmul_3 = "fc000032FF-F.", - frsqrte_2 = "fc000034F-F.", - fmsub_4 = "fc000038FFFF~.", - fmadd_4 = "fc00003aFFFF~.", - fnmsub_4 = "fc00003cFFFF~.", - fnmadd_4 = "fc00003eFFFF~.", - fcmpu_3 = "fc000000XFF", - fcpsgn_3 = "fc000010FFF.", - fcmpo_3 = "fc000040XFF", - mtfsb1_1 = "fc00004cA", - fneg_2 = "fc000050F-F.", - mcrfs_2 = "fc000080XX", - mtfsb0_1 = "fc00008cA", - fmr_2 = "fc000090F-F.", - frsp_2 = "fc000018F-F.", - fctiw_2 = "fc00001cF-F.", - fctiwz_2 = "fc00001eF-F.", - ftdiv_2 = "fc000100X-F.", - fctiwu_2 = "fc00011cF-F.", - fctiwuz_2 = "fc00011eF-F.", - mtfsfi_2 = "fc00010cAA", -- NYI: upshift. - fnabs_2 = "fc000110F-F.", - ftsqrt_2 = "fc000140X-F.", - fabs_2 = "fc000210F-F.", - frin_2 = "fc000310F-F.", - friz_2 = "fc000350F-F.", - frip_2 = "fc000390F-F.", - frim_2 = "fc0003d0F-F.", - mffs_1 = "fc00048eF.", - -- NYI: mtfsf, mtfsb0, mtfsb1. - fctid_2 = "fc00065cF-F.", - fctidz_2 = "fc00065eF-F.", - fmrgow_3 = "fc00068cFFF", - fcfid_2 = "fc00069cF-F.", - fctidu_2 = "fc00075cF-F.", - fctiduz_2 = "fc00075eF-F.", - fmrgew_3 = "fc00078cFFF", - fcfidu_2 = "fc00079cF-F.", - - daddq_3 = "fc000004F:F:F:.", - dquaq_4 = "fc000006F:F:F:Z.", - dmulq_3 = "fc000044F:F:F:.", - drrndq_4 = "fc000046F:F:F:Z.", - dscliq_3 = "fc000084F:F:6.", - dquaiq_4 = "fc000086SF:~F:Z.", - dscriq_3 = "fc0000c4F:F:6.", - drintxq_4 = "fc0000c61F:~F:Z.", - dcmpoq_3 = "fc000104XF:F:", - dtstexq_3 = "fc000144XF:F:", - dtstdcq_3 = "fc000184XF:6", - dtstdgq_3 = "fc0001c4XF:6", - drintnq_4 = "fc0001c61F:~F:Z.", - dctqpq_2 = "fc000204F:-F:.", - dctfixq_2 = "fc000244F:-F:.", - ddedpdq_3 = "fc000284ZF:~F:.", - dxexq_2 = "fc0002c4F:-F:.", - dsubq_3 = "fc000404F:F:F:.", - ddivq_3 = "fc000444F:F:F:.", - dcmpuq_3 = "fc000504XF:F:", - dtstsfq_3 = "fc000544XF:F:", - drdpq_2 = "fc000604F:-F:.", - dcffixq_2 = "fc000644F:-F:.", - denbcdq_3 = "fc000684YF:~F:.", - diexq_3 = "fc0006c4F:FF:.", - - -- Primary opcode 4, SPE APU extension: - evaddw_3 = "10000200RRR", - evaddiw_3 = "10000202RAR~", - evsubw_3 = "10000204RRR~", - evsubiw_3 = "10000206RAR~", - evabs_2 = "10000208RR", - evneg_2 = "10000209RR", - evextsb_2 = "1000020aRR", - evextsh_2 = "1000020bRR", - evrndw_2 = "1000020cRR", - evcntlzw_2 = "1000020dRR", - evcntlsw_2 = "1000020eRR", - brinc_3 = "1000020fRRR", - evand_3 = "10000211RRR", - evandc_3 = "10000212RRR", - evxor_3 = "10000216RRR", - evor_3 = "10000217RRR", - evmr_2 = "10000217RR=", - evnor_3 = "10000218RRR", - evnot_2 = "10000218RR=", - eveqv_3 = "10000219RRR", - evorc_3 = "1000021bRRR", - evnand_3 = "1000021eRRR", - evsrwu_3 = "10000220RRR", - evsrws_3 = "10000221RRR", - evsrwiu_3 = "10000222RRA", - evsrwis_3 = "10000223RRA", - evslw_3 = "10000224RRR", - evslwi_3 = "10000226RRA", - evrlw_3 = "10000228RRR", - evsplati_2 = "10000229RS", - evrlwi_3 = "1000022aRRA", - evsplatfi_2 = "1000022bRS", - evmergehi_3 = "1000022cRRR", - evmergelo_3 = "1000022dRRR", - evcmpgtu_3 = "10000230XRR", - evcmpgtu_2 = "10000230-RR", - evcmpgts_3 = "10000231XRR", - evcmpgts_2 = "10000231-RR", - evcmpltu_3 = "10000232XRR", - evcmpltu_2 = "10000232-RR", - evcmplts_3 = "10000233XRR", - evcmplts_2 = "10000233-RR", - evcmpeq_3 = "10000234XRR", - evcmpeq_2 = "10000234-RR", - evsel_4 = "10000278RRRW", - evsel_3 = "10000278RRR", - evfsadd_3 = "10000280RRR", - evfssub_3 = "10000281RRR", - evfsabs_2 = "10000284RR", - evfsnabs_2 = "10000285RR", - evfsneg_2 = "10000286RR", - evfsmul_3 = "10000288RRR", - evfsdiv_3 = "10000289RRR", - evfscmpgt_3 = "1000028cXRR", - evfscmpgt_2 = "1000028c-RR", - evfscmplt_3 = "1000028dXRR", - evfscmplt_2 = "1000028d-RR", - evfscmpeq_3 = "1000028eXRR", - evfscmpeq_2 = "1000028e-RR", - evfscfui_2 = "10000290R-R", - evfscfsi_2 = "10000291R-R", - evfscfuf_2 = "10000292R-R", - evfscfsf_2 = "10000293R-R", - evfsctui_2 = "10000294R-R", - evfsctsi_2 = "10000295R-R", - evfsctuf_2 = "10000296R-R", - evfsctsf_2 = "10000297R-R", - evfsctuiz_2 = "10000298R-R", - evfsctsiz_2 = "1000029aR-R", - evfststgt_3 = "1000029cXRR", - evfststgt_2 = "1000029c-RR", - evfststlt_3 = "1000029dXRR", - evfststlt_2 = "1000029d-RR", - evfststeq_3 = "1000029eXRR", - evfststeq_2 = "1000029e-RR", - efsadd_3 = "100002c0RRR", - efssub_3 = "100002c1RRR", - efsabs_2 = "100002c4RR", - efsnabs_2 = "100002c5RR", - efsneg_2 = "100002c6RR", - efsmul_3 = "100002c8RRR", - efsdiv_3 = "100002c9RRR", - efscmpgt_3 = "100002ccXRR", - efscmpgt_2 = "100002cc-RR", - efscmplt_3 = "100002cdXRR", - efscmplt_2 = "100002cd-RR", - efscmpeq_3 = "100002ceXRR", - efscmpeq_2 = "100002ce-RR", - efscfd_2 = "100002cfR-R", - efscfui_2 = "100002d0R-R", - efscfsi_2 = "100002d1R-R", - efscfuf_2 = "100002d2R-R", - efscfsf_2 = "100002d3R-R", - efsctui_2 = "100002d4R-R", - efsctsi_2 = "100002d5R-R", - efsctuf_2 = "100002d6R-R", - efsctsf_2 = "100002d7R-R", - efsctuiz_2 = "100002d8R-R", - efsctsiz_2 = "100002daR-R", - efststgt_3 = "100002dcXRR", - efststgt_2 = "100002dc-RR", - efststlt_3 = "100002ddXRR", - efststlt_2 = "100002dd-RR", - efststeq_3 = "100002deXRR", - efststeq_2 = "100002de-RR", - efdadd_3 = "100002e0RRR", - efdsub_3 = "100002e1RRR", - efdcfuid_2 = "100002e2R-R", - efdcfsid_2 = "100002e3R-R", - efdabs_2 = "100002e4RR", - efdnabs_2 = "100002e5RR", - efdneg_2 = "100002e6RR", - efdmul_3 = "100002e8RRR", - efddiv_3 = "100002e9RRR", - efdctuidz_2 = "100002eaR-R", - efdctsidz_2 = "100002ebR-R", - efdcmpgt_3 = "100002ecXRR", - efdcmpgt_2 = "100002ec-RR", - efdcmplt_3 = "100002edXRR", - efdcmplt_2 = "100002ed-RR", - efdcmpeq_3 = "100002eeXRR", - efdcmpeq_2 = "100002ee-RR", - efdcfs_2 = "100002efR-R", - efdcfui_2 = "100002f0R-R", - efdcfsi_2 = "100002f1R-R", - efdcfuf_2 = "100002f2R-R", - efdcfsf_2 = "100002f3R-R", - efdctui_2 = "100002f4R-R", - efdctsi_2 = "100002f5R-R", - efdctuf_2 = "100002f6R-R", - efdctsf_2 = "100002f7R-R", - efdctuiz_2 = "100002f8R-R", - efdctsiz_2 = "100002faR-R", - efdtstgt_3 = "100002fcXRR", - efdtstgt_2 = "100002fc-RR", - efdtstlt_3 = "100002fdXRR", - efdtstlt_2 = "100002fd-RR", - efdtsteq_3 = "100002feXRR", - efdtsteq_2 = "100002fe-RR", - evlddx_3 = "10000300RR0R", - evldd_2 = "10000301R8", - evldwx_3 = "10000302RR0R", - evldw_2 = "10000303R8", - evldhx_3 = "10000304RR0R", - evldh_2 = "10000305R8", - evlwhex_3 = "10000310RR0R", - evlwhe_2 = "10000311R4", - evlwhoux_3 = "10000314RR0R", - evlwhou_2 = "10000315R4", - evlwhosx_3 = "10000316RR0R", - evlwhos_2 = "10000317R4", - evstddx_3 = "10000320RR0R", - evstdd_2 = "10000321R8", - evstdwx_3 = "10000322RR0R", - evstdw_2 = "10000323R8", - evstdhx_3 = "10000324RR0R", - evstdh_2 = "10000325R8", - evstwhex_3 = "10000330RR0R", - evstwhe_2 = "10000331R4", - evstwhox_3 = "10000334RR0R", - evstwho_2 = "10000335R4", - evstwwex_3 = "10000338RR0R", - evstwwe_2 = "10000339R4", - evstwwox_3 = "1000033cRR0R", - evstwwo_2 = "1000033dR4", - evmhessf_3 = "10000403RRR", - evmhossf_3 = "10000407RRR", - evmheumi_3 = "10000408RRR", - evmhesmi_3 = "10000409RRR", - evmhesmf_3 = "1000040bRRR", - evmhoumi_3 = "1000040cRRR", - evmhosmi_3 = "1000040dRRR", - evmhosmf_3 = "1000040fRRR", - evmhessfa_3 = "10000423RRR", - evmhossfa_3 = "10000427RRR", - evmheumia_3 = "10000428RRR", - evmhesmia_3 = "10000429RRR", - evmhesmfa_3 = "1000042bRRR", - evmhoumia_3 = "1000042cRRR", - evmhosmia_3 = "1000042dRRR", - evmhosmfa_3 = "1000042fRRR", - evmwhssf_3 = "10000447RRR", - evmwlumi_3 = "10000448RRR", - evmwhumi_3 = "1000044cRRR", - evmwhsmi_3 = "1000044dRRR", - evmwhsmf_3 = "1000044fRRR", - evmwssf_3 = "10000453RRR", - evmwumi_3 = "10000458RRR", - evmwsmi_3 = "10000459RRR", - evmwsmf_3 = "1000045bRRR", - evmwhssfa_3 = "10000467RRR", - evmwlumia_3 = "10000468RRR", - evmwhumia_3 = "1000046cRRR", - evmwhsmia_3 = "1000046dRRR", - evmwhsmfa_3 = "1000046fRRR", - evmwssfa_3 = "10000473RRR", - evmwumia_3 = "10000478RRR", - evmwsmia_3 = "10000479RRR", - evmwsmfa_3 = "1000047bRRR", - evmra_2 = "100004c4RR", - evdivws_3 = "100004c6RRR", - evdivwu_3 = "100004c7RRR", - evmwssfaa_3 = "10000553RRR", - evmwumiaa_3 = "10000558RRR", - evmwsmiaa_3 = "10000559RRR", - evmwsmfaa_3 = "1000055bRRR", - evmwssfan_3 = "100005d3RRR", - evmwumian_3 = "100005d8RRR", - evmwsmian_3 = "100005d9RRR", - evmwsmfan_3 = "100005dbRRR", - evmergehilo_3 = "1000022eRRR", - evmergelohi_3 = "1000022fRRR", - evlhhesplatx_3 = "10000308RR0R", - evlhhesplat_2 = "10000309R2", - evlhhousplatx_3 = "1000030cRR0R", - evlhhousplat_2 = "1000030dR2", - evlhhossplatx_3 = "1000030eRR0R", - evlhhossplat_2 = "1000030fR2", - evlwwsplatx_3 = "10000318RR0R", - evlwwsplat_2 = "10000319R4", - evlwhsplatx_3 = "1000031cRR0R", - evlwhsplat_2 = "1000031dR4", - evaddusiaaw_2 = "100004c0RR", - evaddssiaaw_2 = "100004c1RR", - evsubfusiaaw_2 = "100004c2RR", - evsubfssiaaw_2 = "100004c3RR", - evaddumiaaw_2 = "100004c8RR", - evaddsmiaaw_2 = "100004c9RR", - evsubfumiaaw_2 = "100004caRR", - evsubfsmiaaw_2 = "100004cbRR", - evmheusiaaw_3 = "10000500RRR", - evmhessiaaw_3 = "10000501RRR", - evmhessfaaw_3 = "10000503RRR", - evmhousiaaw_3 = "10000504RRR", - evmhossiaaw_3 = "10000505RRR", - evmhossfaaw_3 = "10000507RRR", - evmheumiaaw_3 = "10000508RRR", - evmhesmiaaw_3 = "10000509RRR", - evmhesmfaaw_3 = "1000050bRRR", - evmhoumiaaw_3 = "1000050cRRR", - evmhosmiaaw_3 = "1000050dRRR", - evmhosmfaaw_3 = "1000050fRRR", - evmhegumiaa_3 = "10000528RRR", - evmhegsmiaa_3 = "10000529RRR", - evmhegsmfaa_3 = "1000052bRRR", - evmhogumiaa_3 = "1000052cRRR", - evmhogsmiaa_3 = "1000052dRRR", - evmhogsmfaa_3 = "1000052fRRR", - evmwlusiaaw_3 = "10000540RRR", - evmwlssiaaw_3 = "10000541RRR", - evmwlumiaaw_3 = "10000548RRR", - evmwlsmiaaw_3 = "10000549RRR", - evmheusianw_3 = "10000580RRR", - evmhessianw_3 = "10000581RRR", - evmhessfanw_3 = "10000583RRR", - evmhousianw_3 = "10000584RRR", - evmhossianw_3 = "10000585RRR", - evmhossfanw_3 = "10000587RRR", - evmheumianw_3 = "10000588RRR", - evmhesmianw_3 = "10000589RRR", - evmhesmfanw_3 = "1000058bRRR", - evmhoumianw_3 = "1000058cRRR", - evmhosmianw_3 = "1000058dRRR", - evmhosmfanw_3 = "1000058fRRR", - evmhegumian_3 = "100005a8RRR", - evmhegsmian_3 = "100005a9RRR", - evmhegsmfan_3 = "100005abRRR", - evmhogumian_3 = "100005acRRR", - evmhogsmian_3 = "100005adRRR", - evmhogsmfan_3 = "100005afRRR", - evmwlusianw_3 = "100005c0RRR", - evmwlssianw_3 = "100005c1RRR", - evmwlumianw_3 = "100005c8RRR", - evmwlsmianw_3 = "100005c9RRR", - - -- NYI: Book E instructions. -} - --- Add mnemonics for "." variants. -do - local t = {} - for k,v in pairs(map_op) do - if type(v) == "string" and sub(v, -1) == "." then - local v2 = sub(v, 1, 7)..char(byte(v, 8)+1)..sub(v, 9, -2) - t[sub(k, 1, -3).."."..sub(k, -2)] = v2 - end - end - for k,v in pairs(t) do - map_op[k] = v - end -end - --- Add more branch mnemonics. -for cond,c in pairs(map_cond) do - local b1 = "b"..cond - local c1 = shl(band(c, 3), 16) + (c < 4 and 0x01000000 or 0) - -- bX[l] - map_op[b1.."_1"] = tohex(0x40800000 + c1).."K" - map_op[b1.."y_1"] = tohex(0x40a00000 + c1).."K" - map_op[b1.."l_1"] = tohex(0x40800001 + c1).."K" - map_op[b1.."_2"] = tohex(0x40800000 + c1).."-XK" - map_op[b1.."y_2"] = tohex(0x40a00000 + c1).."-XK" - map_op[b1.."l_2"] = tohex(0x40800001 + c1).."-XK" - -- bXlr[l] - map_op[b1.."lr_0"] = tohex(0x4c800020 + c1) - map_op[b1.."lrl_0"] = tohex(0x4c800021 + c1) - map_op[b1.."ctr_0"] = tohex(0x4c800420 + c1) - map_op[b1.."ctrl_0"] = tohex(0x4c800421 + c1) - -- bXctr[l] - map_op[b1.."lr_1"] = tohex(0x4c800020 + c1).."-X" - map_op[b1.."lrl_1"] = tohex(0x4c800021 + c1).."-X" - map_op[b1.."ctr_1"] = tohex(0x4c800420 + c1).."-X" - map_op[b1.."ctrl_1"] = tohex(0x4c800421 + c1).."-X" -end - ------------------------------------------------------------------------------- - -local function parse_gpr(expr) - local tname, ovreg = match(expr, "^([%w_]+):(r[1-3]?[0-9])$") - local tp = map_type[tname or expr] - if tp then - local reg = ovreg or tp.reg - if not reg then - werror("type `"..(tname or expr).."' needs a register override") - end - expr = reg - end - local r = match(expr, "^r([1-3]?[0-9])$") - if r then - r = tonumber(r) - if r <= 31 then return r, tp end - end - werror("bad register name `"..expr.."'") -end - -local function parse_fpr(expr) - local r = match(expr, "^f([1-3]?[0-9])$") - if r then - r = tonumber(r) - if r <= 31 then return r end - end - werror("bad register name `"..expr.."'") -end - -local function parse_vr(expr) - local r = match(expr, "^v([1-3]?[0-9])$") - if r then - r = tonumber(r) - if r <= 31 then return r end - end - werror("bad register name `"..expr.."'") -end - -local function parse_vs(expr) - local r = match(expr, "^vs([1-6]?[0-9])$") - if r then - r = tonumber(r) - if r <= 63 then return r end - end - werror("bad register name `"..expr.."'") -end - -local function parse_cr(expr) - local r = match(expr, "^cr([0-7])$") - if r then return tonumber(r) end - werror("bad condition register name `"..expr.."'") -end - -local function parse_cond(expr) - local r, cond = match(expr, "^4%*cr([0-7])%+(%w%w)$") - if r then - r = tonumber(r) - local c = map_cond[cond] - if c and c < 4 then return r*4+c end - end - werror("bad condition bit name `"..expr.."'") -end - -local parse_ctx = {} - -local loadenv = setfenv and function(s) - local code = loadstring(s, "") - if code then setfenv(code, parse_ctx) end - return code -end or function(s) - return load(s, "", nil, parse_ctx) -end - --- Try to parse simple arithmetic, too, since some basic ops are aliases. -local function parse_number(n) - local x = tonumber(n) - if x then return x end - local code = loadenv("return "..n) - if code then - local ok, y = pcall(code) - if ok then return y end - end - return nil -end - -local function parse_imm(imm, bits, shift, scale, signed) - local n = parse_number(imm) - if n then - local m = sar(n, scale) - if shl(m, scale) == n then - if signed then - local s = sar(m, bits-1) - if s == 0 then return shl(m, shift) - elseif s == -1 then return shl(m + shl(1, bits), shift) end - else - if sar(m, bits) == 0 then return shl(m, shift) end - end - end - werror("out of range immediate `"..imm.."'") - elseif match(imm, "^[rfv]([1-3]?[0-9])$") or - match(imm, "^vs([1-6]?[0-9])$") or - match(imm, "^([%w_]+):(r[1-3]?[0-9])$") then - werror("expected immediate operand, got register") - else - waction("IMM", (signed and 32768 or 0)+scale*1024+bits*32+shift, imm) - return 0 - end -end - -local function parse_shiftmask(imm, isshift) - local n = parse_number(imm) - if n then - if shr(n, 6) == 0 then - local lsb = band(n, 31) - local msb = n - lsb - return isshift and (shl(lsb, 11)+shr(msb, 4)) or (shl(lsb, 6)+msb) - end - werror("out of range immediate `"..imm.."'") - elseif match(imm, "^r([1-3]?[0-9])$") or - match(imm, "^([%w_]+):(r[1-3]?[0-9])$") then - werror("expected immediate operand, got register") - else - waction("IMMSH", isshift and 1 or 0, imm) - return 0; - end -end - -local function parse_disp(disp) - local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$") - if imm then - local r = parse_gpr(reg) - if r == 0 then werror("cannot use r0 in displacement") end - return shl(r, 16) + parse_imm(imm, 16, 0, 0, true) - end - local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local r, tp = parse_gpr(reg) - if r == 0 then werror("cannot use r0 in displacement") end - if tp then - waction("IMM", 32768+16*32, format(tp.ctypefmt, tailr)) - return shl(r, 16) - end - end - werror("bad displacement `"..disp.."'") -end - -local function parse_u5disp(disp, scale) - local imm, reg = match(disp, "^(.*)%(([%w_:]+)%)$") - if imm then - local r = parse_gpr(reg) - if r == 0 then werror("cannot use r0 in displacement") end - return shl(r, 16) + parse_imm(imm, 5, 11, scale, false) - end - local reg, tailr = match(disp, "^([%w_:]+)%s*(.*)$") - if reg and tailr ~= "" then - local r, tp = parse_gpr(reg) - if r == 0 then werror("cannot use r0 in displacement") end - if tp then - waction("IMM", scale*1024+5*32+11, format(tp.ctypefmt, tailr)) - return shl(r, 16) - end - end - werror("bad displacement `"..disp.."'") -end - -local function parse_label(label, def) - local prefix = sub(label, 1, 2) - -- =>label (pc label reference) - if prefix == "=>" then - return "PC", 0, sub(label, 3) - end - -- ->name (global label reference) - if prefix == "->" then - return "LG", map_global[sub(label, 3)] - end - if def then - -- [1-9] (local label definition) - if match(label, "^[1-9]$") then - return "LG", 10+tonumber(label) - end - else - -- [<>][1-9] (local label reference) - local dir, lnum = match(label, "^([<>])([1-9])$") - if dir then -- Fwd: 1-9, Bkwd: 11-19. - return "LG", lnum + (dir == ">" and 0 or 10) - end - -- extern label (extern label reference) - local extname = match(label, "^extern%s+(%S+)$") - if extname then - return "EXT", map_extern[extname] - end - end - werror("bad label `"..label.."'") -end - ------------------------------------------------------------------------------- - --- Handle opcodes defined with template strings. -op_template = function(params, template, nparams) - if not params then return sub(template, 9) end - local op = tonumber(sub(template, 1, 8), 16) - local n, rs = 1, 26 - - -- Limit number of section buffer positions used by a single dasm_put(). - -- A single opcode needs a maximum of 3 positions (rlwinm). - if secpos+3 > maxsecpos then wflush() end - local pos = wpos() - - -- Process each character. - for p in gmatch(sub(template, 9), ".") do - if p == "R" then - rs = rs - 5; op = op + shl(parse_gpr(params[n]), rs); n = n + 1 - elseif p == "F" then - rs = rs - 5; op = op + shl(parse_fpr(params[n]), rs); n = n + 1 - elseif p == "V" then - rs = rs - 5; op = op + shl(parse_vr(params[n]), rs); n = n + 1 - elseif p == "Q" then - local vs = parse_vs(params[n]); n = n + 1; rs = rs - 5 - local sh = rs == 6 and 2 or 3 + band(shr(rs, 1), 3) - op = op + shl(band(vs, 31), rs) + shr(band(vs, 32), sh) - elseif p == "q" then - local vs = parse_vs(params[n]); n = n + 1 - op = op + shl(band(vs, 31), 21) + shr(band(vs, 32), 5) - elseif p == "A" then - rs = rs - 5; op = op + parse_imm(params[n], 5, rs, 0, false); n = n + 1 - elseif p == "S" then - rs = rs - 5; op = op + parse_imm(params[n], 5, rs, 0, true); n = n + 1 - elseif p == "I" then - op = op + parse_imm(params[n], 16, 0, 0, true); n = n + 1 - elseif p == "U" then - op = op + parse_imm(params[n], 16, 0, 0, false); n = n + 1 - elseif p == "D" then - op = op + parse_disp(params[n]); n = n + 1 - elseif p == "2" then - op = op + parse_u5disp(params[n], 1); n = n + 1 - elseif p == "4" then - op = op + parse_u5disp(params[n], 2); n = n + 1 - elseif p == "8" then - op = op + parse_u5disp(params[n], 3); n = n + 1 - elseif p == "C" then - rs = rs - 5; op = op + shl(parse_cond(params[n]), rs); n = n + 1 - elseif p == "X" then - rs = rs - 5; op = op + shl(parse_cr(params[n]), rs+2); n = n + 1 - elseif p == "1" then - rs = rs - 5; op = op + parse_imm(params[n], 1, rs, 0, false); n = n + 1 - elseif p == "g" then - rs = rs - 5; op = op + parse_imm(params[n], 2, rs, 0, false); n = n + 1 - elseif p == "3" then - rs = rs - 5; op = op + parse_imm(params[n], 3, rs, 0, false); n = n + 1 - elseif p == "P" then - rs = rs - 5; op = op + parse_imm(params[n], 4, rs, 0, false); n = n + 1 - elseif p == "p" then - op = op + parse_imm(params[n], 4, rs, 0, false); n = n + 1 - elseif p == "6" then - rs = rs - 6; op = op + parse_imm(params[n], 6, rs, 0, false); n = n + 1 - elseif p == "Y" then - rs = rs - 5; op = op + parse_imm(params[n], 1, rs+4, 0, false); n = n + 1 - elseif p == "y" then - rs = rs - 5; op = op + parse_imm(params[n], 1, rs+3, 0, false); n = n + 1 - elseif p == "Z" then - rs = rs - 5; op = op + parse_imm(params[n], 2, rs+3, 0, false); n = n + 1 - elseif p == "z" then - rs = rs - 5; op = op + parse_imm(params[n], 2, rs+2, 0, false); n = n + 1 - elseif p == "W" then - op = op + parse_cr(params[n]); n = n + 1 - elseif p == "G" then - op = op + parse_imm(params[n], 8, 12, 0, false); n = n + 1 - elseif p == "H" then - op = op + parse_shiftmask(params[n], true); n = n + 1 - elseif p == "M" then - op = op + parse_shiftmask(params[n], false); n = n + 1 - elseif p == "J" or p == "K" then - local mode, n, s = parse_label(params[n], false) - if p == "K" then n = n + 2048 end - waction("REL_"..mode, n, s, 1) - n = n + 1 - elseif p == "0" then - if band(shr(op, rs), 31) == 0 then werror("cannot use r0") end - elseif p == "=" or p == "%" then - local t = band(shr(op, p == "%" and rs+5 or rs), 31) - rs = rs - 5 - op = op + shl(t, rs) - elseif p == "~" then - local mm = shl(31, rs) - local lo = band(op, mm) - local hi = band(op, shl(mm, 5)) - op = op - lo - hi + shl(lo, 5) + shr(hi, 5) - elseif p == ":" then - if band(shr(op, rs), 1) ~= 0 then werror("register pair expected") end - elseif p == "-" then - rs = rs - 5 - elseif p == "." then - -- Ignored. - else - assert(false) - end - end - wputpos(pos, op) -end - -map_op[".template__"] = op_template - ------------------------------------------------------------------------------- - --- Pseudo-opcode to mark the position where the action list is to be emitted. -map_op[".actionlist_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeactions(out, name) end) -end - --- Pseudo-opcode to mark the position where the global enum is to be emitted. -map_op[".globals_1"] = function(params) - if not params then return "prefix" end - local prefix = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobals(out, prefix) end) -end - --- Pseudo-opcode to mark the position where the global names are to be emitted. -map_op[".globalnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobalnames(out, name) end) -end - --- Pseudo-opcode to mark the position where the extern names are to be emitted. -map_op[".externnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeexternnames(out, name) end) -end - ------------------------------------------------------------------------------- - --- Label pseudo-opcode (converted from trailing colon form). -map_op[".label_1"] = function(params) - if not params then return "[1-9] | ->global | =>pcexpr" end - if secpos+1 > maxsecpos then wflush() end - local mode, n, s = parse_label(params[1], true) - if mode == "EXT" then werror("bad label definition") end - waction("LABEL_"..mode, n, s, 1) -end - ------------------------------------------------------------------------------- - --- Pseudo-opcodes for data storage. -map_op[".long_*"] = function(params) - if not params then return "imm..." end - for _,p in ipairs(params) do - local n = tonumber(p) - if not n then werror("bad immediate `"..p.."'") end - if n < 0 then n = n + 2^32 end - wputw(n) - if secpos+2 > maxsecpos then wflush() end - end -end - --- Alignment pseudo-opcode. -map_op[".align_1"] = function(params) - if not params then return "numpow2" end - if secpos+1 > maxsecpos then wflush() end - local align = tonumber(params[1]) - if align then - local x = align - -- Must be a power of 2 in the range (2 ... 256). - for i=1,8 do - x = x / 2 - if x == 1 then - waction("ALIGN", align-1, nil, 1) -- Action byte is 2**n-1. - return - end - end - end - werror("bad alignment") -end - ------------------------------------------------------------------------------- - --- Pseudo-opcode for (primitive) type definitions (map to C types). -map_op[".type_3"] = function(params, nparams) - if not params then - return nparams == 2 and "name, ctype" or "name, ctype, reg" - end - local name, ctype, reg = params[1], params[2], params[3] - if not match(name, "^[%a_][%w_]*$") then - werror("bad type name `"..name.."'") - end - local tp = map_type[name] - if tp then - werror("duplicate type `"..name.."'") - end - -- Add #type to defines. A bit unclean to put it in map_archdef. - map_archdef["#"..name] = "sizeof("..ctype..")" - -- Add new type and emit shortcut define. - local num = ctypenum + 1 - map_type[name] = { - ctype = ctype, - ctypefmt = format("Dt%X(%%s)", num), - reg = reg, - } - wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype)) - ctypenum = num -end -map_op[".type_2"] = map_op[".type_3"] - --- Dump type definitions. -local function dumptypes(out, lvl) - local t = {} - for name in pairs(map_type) do t[#t+1] = name end - sort(t) - out:write("Type definitions:\n") - for _,name in ipairs(t) do - local tp = map_type[name] - local reg = tp.reg or "" - out:write(format(" %-20s %-20s %s\n", name, tp.ctype, reg)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Set the current section. -function _M.section(num) - waction("SECTION", num) - wflush(true) -- SECTION is a terminal action. -end - ------------------------------------------------------------------------------- - --- Dump architecture description. -function _M.dumparch(out) - out:write(format("DynASM %s version %s, released %s\n\n", - _info.arch, _info.version, _info.release)) - dumpactions(out) -end - --- Dump all user defined elements. -function _M.dumpdef(out, lvl) - dumptypes(out, lvl) - dumpglobals(out, lvl) - dumpexterns(out, lvl) -end - ------------------------------------------------------------------------------- - --- Pass callbacks from/to the DynASM core. -function _M.passcb(wl, we, wf, ww) - wline, werror, wfatal, wwarn = wl, we, wf, ww - return wflush -end - --- Setup the arch-specific module. -function _M.setup(arch, opt) - g_arch, g_opt = arch, opt -end - --- Merge the core maps and the arch-specific maps. -function _M.mergemaps(map_coreop, map_def) - setmetatable(map_op, { __index = map_coreop }) - setmetatable(map_def, { __index = map_archdef }) - return map_op, map_def -end - -return _M - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/dynasm/dasm_proto.h b/vmbuilder/dynasm/dasm_proto.h deleted file mode 100644 index 59d9e2b..0000000 --- a/vmbuilder/dynasm/dasm_proto.h +++ /dev/null @@ -1,83 +0,0 @@ -/* -** DynASM encoding engine prototypes. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#ifndef _DASM_PROTO_H -#define _DASM_PROTO_H - -#include -#include - -#define DASM_IDENT "DynASM 1.4.0" -#define DASM_VERSION 10400 /* 1.4.0 */ - -#ifndef Dst_DECL -#define Dst_DECL dasm_State **Dst -#endif - -#ifndef Dst_REF -#define Dst_REF (*Dst) -#endif - -#ifndef DASM_FDEF -#define DASM_FDEF extern -#endif - -#ifndef DASM_M_GROW -#define DASM_M_GROW(ctx, t, p, sz, need) \ - do { \ - size_t _sz = (sz), _need = (need); \ - if (_sz < _need) { \ - if (_sz < 16) _sz = 16; \ - while (_sz < _need) _sz += _sz; \ - (p) = (t *)realloc((p), _sz); \ - if ((p) == NULL) exit(1); \ - (sz) = _sz; \ - } \ - } while(0) -#endif - -#ifndef DASM_M_FREE -#define DASM_M_FREE(ctx, p, sz) free(p) -#endif - -/* Internal DynASM encoder state. */ -typedef struct dasm_State dasm_State; - - -/* Initialize and free DynASM state. */ -DASM_FDEF void dasm_init(Dst_DECL, int maxsection); -DASM_FDEF void dasm_free(Dst_DECL); - -/* Setup global array. Must be called before dasm_setup(). */ -DASM_FDEF void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl); - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -DASM_FDEF void dasm_growpc(Dst_DECL, unsigned int maxpc); - -/* Setup encoder. */ -DASM_FDEF void dasm_setup(Dst_DECL, const void *actionlist); - -/* Feed encoder with actions. Calls are generated by pre-processor. */ -DASM_FDEF void dasm_put(Dst_DECL, int start, ...); - -/* Link sections and return the resulting size. */ -DASM_FDEF int dasm_link(Dst_DECL, size_t *szp); - -/* Encode sections into buffer. */ -DASM_FDEF int dasm_encode(Dst_DECL, void *buffer); - -/* Get PC label offset. */ -DASM_FDEF int dasm_getpclabel(Dst_DECL, unsigned int pc); - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -DASM_FDEF int dasm_checkstep(Dst_DECL, int secmatch); -#else -#define dasm_checkstep(a, b) 0 -#endif - - -#endif /* _DASM_PROTO_H */ diff --git a/vmbuilder/dynasm/dasm_x64.lua b/vmbuilder/dynasm/dasm_x64.lua deleted file mode 100644 index e8bdeb3..0000000 --- a/vmbuilder/dynasm/dasm_x64.lua +++ /dev/null @@ -1,12 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM x64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- --- This module just sets 64 bit mode for the combined x86/x64 module. --- All the interesting stuff is there. ------------------------------------------------------------------------------- - -x64 = true -- Using a global is an ugly, but effective solution. -return require("dasm_x86") diff --git a/vmbuilder/dynasm/dasm_x86.h b/vmbuilder/dynasm/dasm_x86.h deleted file mode 100644 index f598da9..0000000 --- a/vmbuilder/dynasm/dasm_x86.h +++ /dev/null @@ -1,499 +0,0 @@ -/* -** DynASM x86 encoding engine. -** Copyright (C) 2005-2017 Mike Pall. All rights reserved. -** Released under the MIT license. See dynasm.lua for full copyright notice. -*/ - -#include -#include -#include -#include - -#define DASM_ARCH "x86" - -#ifndef DASM_EXTERN -#define DASM_EXTERN(a,b,c,d) 0 -#endif - -/* Action definitions. DASM_STOP must be 255. */ -enum { - DASM_DISP = 233, - DASM_IMM_S, DASM_IMM_B, DASM_IMM_W, DASM_IMM_D, DASM_IMM_WB, DASM_IMM_DB, - DASM_VREG, DASM_SPACE, DASM_SETLABEL, DASM_REL_A, DASM_REL_LG, DASM_REL_PC, - DASM_IMM_LG, DASM_IMM_PC, DASM_LABEL_LG, DASM_LABEL_PC, DASM_ALIGN, - DASM_EXTERN, DASM_ESC, DASM_MARK, DASM_SECTION, DASM_STOP -}; - -/* Maximum number of section buffer positions for a single dasm_put() call. */ -#define DASM_MAXSECPOS 25 - -/* DynASM encoder status codes. Action list offset or number are or'ed in. */ -#define DASM_S_OK 0x00000000 -#define DASM_S_NOMEM 0x01000000 -#define DASM_S_PHASE 0x02000000 -#define DASM_S_MATCH_SEC 0x03000000 -#define DASM_S_RANGE_I 0x11000000 -#define DASM_S_RANGE_SEC 0x12000000 -#define DASM_S_RANGE_LG 0x13000000 -#define DASM_S_RANGE_PC 0x14000000 -#define DASM_S_RANGE_VREG 0x15000000 -#define DASM_S_UNDEF_L 0x21000000 -#define DASM_S_UNDEF_PC 0x22000000 - -/* Macros to convert positions (8 bit section + 24 bit index). */ -#define DASM_POS2IDX(pos) ((pos)&0x00ffffff) -#define DASM_POS2BIAS(pos) ((pos)&0xff000000) -#define DASM_SEC2POS(sec) ((sec)<<24) -#define DASM_POS2SEC(pos) ((pos)>>24) -#define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) - -/* Action list type. */ -typedef const unsigned char *dasm_ActList; - -/* Per-section structure. */ -typedef struct dasm_Section { - int *rbuf; /* Biased buffer pointer (negative section bias). */ - int *buf; /* True buffer pointer. */ - size_t bsize; /* Buffer size in bytes. */ - int pos; /* Biased buffer position. */ - int epos; /* End of biased buffer position - max single put. */ - int ofs; /* Byte offset into section. */ -} dasm_Section; - -/* Core structure holding the DynASM encoding state. */ -struct dasm_State { - size_t psize; /* Allocated size of this structure. */ - dasm_ActList actionlist; /* Current actionlist pointer. */ - int *lglabels; /* Local/global chain/pos ptrs. */ - size_t lgsize; - int *pclabels; /* PC label chains/pos ptrs. */ - size_t pcsize; - void **globals; /* Array of globals (bias -10). */ - dasm_Section *section; /* Pointer to active section. */ - size_t codesize; /* Total size of all code sections. */ - int maxsection; /* 0 <= sectionidx < maxsection. */ - int status; /* Status code. */ - dasm_Section sections[1]; /* All sections. Alloc-extended. */ -}; - -/* The size of the core structure depends on the max. number of sections. */ -#define DASM_PSZ(ms) (sizeof(dasm_State)+(ms-1)*sizeof(dasm_Section)) - - -/* Initialize DynASM state. */ -void dasm_init(Dst_DECL, int maxsection) -{ - dasm_State *D; - size_t psz = 0; - int i; - Dst_REF = NULL; - DASM_M_GROW(Dst, struct dasm_State, Dst_REF, psz, DASM_PSZ(maxsection)); - D = Dst_REF; - D->psize = psz; - D->lglabels = NULL; - D->lgsize = 0; - D->pclabels = NULL; - D->pcsize = 0; - D->globals = NULL; - D->maxsection = maxsection; - for (i = 0; i < maxsection; i++) { - D->sections[i].buf = NULL; /* Need this for pass3. */ - D->sections[i].rbuf = D->sections[i].buf - DASM_SEC2POS(i); - D->sections[i].bsize = 0; - D->sections[i].epos = 0; /* Wrong, but is recalculated after resize. */ - } -} - -/* Free DynASM state. */ -void dasm_free(Dst_DECL) -{ - dasm_State *D = Dst_REF; - int i; - for (i = 0; i < D->maxsection; i++) - if (D->sections[i].buf) - DASM_M_FREE(Dst, D->sections[i].buf, D->sections[i].bsize); - if (D->pclabels) DASM_M_FREE(Dst, D->pclabels, D->pcsize); - if (D->lglabels) DASM_M_FREE(Dst, D->lglabels, D->lgsize); - DASM_M_FREE(Dst, D, D->psize); -} - -/* Setup global label array. Must be called before dasm_setup(). */ -void dasm_setupglobal(Dst_DECL, void **gl, unsigned int maxgl) -{ - dasm_State *D = Dst_REF; - D->globals = gl - 10; /* Negative bias to compensate for locals. */ - DASM_M_GROW(Dst, int, D->lglabels, D->lgsize, (10+maxgl)*sizeof(int)); -} - -/* Grow PC label array. Can be called after dasm_setup(), too. */ -void dasm_growpc(Dst_DECL, unsigned int maxpc) -{ - dasm_State *D = Dst_REF; - size_t osz = D->pcsize; - DASM_M_GROW(Dst, int, D->pclabels, D->pcsize, maxpc*sizeof(int)); - memset((void *)(((unsigned char *)D->pclabels)+osz), 0, D->pcsize-osz); -} - -/* Setup encoder. */ -void dasm_setup(Dst_DECL, const void *actionlist) -{ - dasm_State *D = Dst_REF; - int i; - D->actionlist = (dasm_ActList)actionlist; - D->status = DASM_S_OK; - D->section = &D->sections[0]; - memset((void *)D->lglabels, 0, D->lgsize); - if (D->pclabels) memset((void *)D->pclabels, 0, D->pcsize); - for (i = 0; i < D->maxsection; i++) { - D->sections[i].pos = DASM_SEC2POS(i); - D->sections[i].ofs = 0; - } -} - - -#ifdef DASM_CHECKS -#define CK(x, st) \ - do { if (!(x)) { \ - D->status = DASM_S_##st|(int)(p-D->actionlist-1); return; } } while (0) -#define CKPL(kind, st) \ - do { if ((size_t)((char *)pl-(char *)D->kind##labels) >= D->kind##size) { \ - D->status=DASM_S_RANGE_##st|(int)(p-D->actionlist-1); return; } } while (0) -#else -#define CK(x, st) ((void)0) -#define CKPL(kind, st) ((void)0) -#endif - -/* Pass 1: Store actions and args, link branches/labels, estimate offsets. */ -void dasm_put(Dst_DECL, int start, ...) -{ - va_list ap; - dasm_State *D = Dst_REF; - dasm_ActList p = D->actionlist + start; - dasm_Section *sec = D->section; - int pos = sec->pos, ofs = sec->ofs, mrm = -1; - int *b; - - if (pos >= sec->epos) { - DASM_M_GROW(Dst, int, sec->buf, sec->bsize, - sec->bsize + 2*DASM_MAXSECPOS*sizeof(int)); - sec->rbuf = sec->buf - DASM_POS2BIAS(pos); - sec->epos = (int)sec->bsize/sizeof(int) - DASM_MAXSECPOS+DASM_POS2BIAS(pos); - } - - b = sec->rbuf; - b[pos++] = start; - - va_start(ap, start); - while (1) { - int action = *p++; - if (action < DASM_DISP) { - ofs++; - } else if (action <= DASM_REL_A) { - int n = va_arg(ap, int); - b[pos++] = n; - switch (action) { - case DASM_DISP: - if (n == 0) { if (mrm < 0) mrm = p[-2]; if ((mrm&7) != 5) break; } - case DASM_IMM_DB: if (((n+128)&-256) == 0) goto ob; - case DASM_REL_A: /* Assumes ptrdiff_t is int. !x64 */ - case DASM_IMM_D: ofs += 4; break; - case DASM_IMM_S: CK(((n+128)&-256) == 0, RANGE_I); goto ob; - case DASM_IMM_B: CK((n&-256) == 0, RANGE_I); ob: ofs++; break; - case DASM_IMM_WB: if (((n+128)&-256) == 0) goto ob; - case DASM_IMM_W: CK((n&-65536) == 0, RANGE_I); ofs += 2; break; - case DASM_SPACE: p++; ofs += n; break; - case DASM_SETLABEL: b[pos-2] = -0x40000000; break; /* Neg. label ofs. */ - case DASM_VREG: CK((n&-16) == 0 && (n != 4 || (*p>>5) != 2), RANGE_VREG); - if (*p < 0x40 && p[1] == DASM_DISP) mrm = n; - if (*p < 0x20 && (n&7) == 4) ofs++; - switch ((*p++ >> 3) & 3) { - case 3: n |= b[pos-3]; - case 2: n |= b[pos-2]; - case 1: if (n <= 7) { b[pos-1] |= 0x10; ofs--; } - } - continue; - } - mrm = -1; - } else { - int *pl, n; - switch (action) { - case DASM_REL_LG: - case DASM_IMM_LG: - n = *p++; pl = D->lglabels + n; - /* Bkwd rel or global. */ - if (n <= 246) { CK(n>=10||*pl<0, RANGE_LG); CKPL(lg, LG); goto putrel; } - pl -= 246; n = *pl; - if (n < 0) n = 0; /* Start new chain for fwd rel if label exists. */ - goto linkrel; - case DASM_REL_PC: - case DASM_IMM_PC: pl = D->pclabels + va_arg(ap, int); CKPL(pc, PC); - putrel: - n = *pl; - if (n < 0) { /* Label exists. Get label pos and store it. */ - b[pos] = -n; - } else { - linkrel: - b[pos] = n; /* Else link to rel chain, anchored at label. */ - *pl = pos; - } - pos++; - ofs += 4; /* Maximum offset needed. */ - if (action == DASM_REL_LG || action == DASM_REL_PC) - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_LABEL_LG: pl = D->lglabels + *p++; CKPL(lg, LG); goto putlabel; - case DASM_LABEL_PC: pl = D->pclabels + va_arg(ap, int); CKPL(pc, PC); - putlabel: - n = *pl; /* n > 0: Collapse rel chain and replace with label pos. */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = pos; } - *pl = -pos; /* Label exists now. */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_ALIGN: - ofs += *p++; /* Maximum alignment needed (arg is 2**n-1). */ - b[pos++] = ofs; /* Store pass1 offset estimate. */ - break; - case DASM_EXTERN: p += 2; ofs += 4; break; - case DASM_ESC: p++; ofs++; break; - case DASM_MARK: mrm = p[-2]; break; - case DASM_SECTION: - n = *p; CK(n < D->maxsection, RANGE_SEC); D->section = &D->sections[n]; - case DASM_STOP: goto stop; - } - } - } -stop: - va_end(ap); - sec->pos = pos; - sec->ofs = ofs; -} -#undef CK - -/* Pass 2: Link sections, shrink branches/aligns, fix label offsets. */ -int dasm_link(Dst_DECL, size_t *szp) -{ - dasm_State *D = Dst_REF; - int secnum; - int ofs = 0; - -#ifdef DASM_CHECKS - *szp = 0; - if (D->status != DASM_S_OK) return D->status; - { - int pc; - for (pc = 0; pc*sizeof(int) < D->pcsize; pc++) - if (D->pclabels[pc] > 0) return DASM_S_UNDEF_PC|pc; - } -#endif - - { /* Handle globals not defined in this translation unit. */ - int idx; - for (idx = 10; idx*sizeof(int) < D->lgsize; idx++) { - int n = D->lglabels[idx]; - /* Undefined label: Collapse rel chain and replace with marker (< 0). */ - while (n > 0) { int *pb = DASM_POS2PTR(D, n); n = *pb; *pb = -idx; } - } - } - - /* Combine all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->rbuf; - int pos = DASM_SEC2POS(secnum); - int lastpos = sec->pos; - - while (pos != lastpos) { - dasm_ActList p = D->actionlist + b[pos++]; - while (1) { - int op, action = *p++; - switch (action) { - case DASM_REL_LG: p++; op = p[-3]; goto rel_pc; - case DASM_REL_PC: op = p[-2]; rel_pc: { - int shrink = op == 0xe9 ? 3 : ((op&0xf0) == 0x80 ? 4 : 0); - if (shrink) { /* Shrinkable branch opcode? */ - int lofs, lpos = b[pos]; - if (lpos < 0) goto noshrink; /* Ext global? */ - lofs = *DASM_POS2PTR(D, lpos); - if (lpos > pos) { /* Fwd label: add cumulative section offsets. */ - int i; - for (i = secnum; i < DASM_POS2SEC(lpos); i++) - lofs += D->sections[i].ofs; - } else { - lofs -= ofs; /* Bkwd label: unfix offset. */ - } - lofs -= b[pos+1]; /* Short branch ok? */ - if (lofs >= -128-shrink && lofs <= 127) ofs -= shrink; /* Yes. */ - else { noshrink: shrink = 0; } /* No, cannot shrink op. */ - } - b[pos+1] = shrink; - pos += 2; - break; - } - case DASM_SPACE: case DASM_IMM_LG: case DASM_VREG: p++; - case DASM_DISP: case DASM_IMM_S: case DASM_IMM_B: case DASM_IMM_W: - case DASM_IMM_D: case DASM_IMM_WB: case DASM_IMM_DB: - case DASM_SETLABEL: case DASM_REL_A: case DASM_IMM_PC: pos++; break; - case DASM_LABEL_LG: p++; - case DASM_LABEL_PC: b[pos++] += ofs; break; /* Fix label offset. */ - case DASM_ALIGN: ofs -= (b[pos++]+ofs)&*p++; break; /* Adjust ofs. */ - case DASM_EXTERN: p += 2; break; - case DASM_ESC: p++; break; - case DASM_MARK: break; - case DASM_SECTION: case DASM_STOP: goto stop; - } - } - stop: (void)0; - } - ofs += sec->ofs; /* Next section starts right after current section. */ - } - - D->codesize = ofs; /* Total size of all code sections */ - *szp = ofs; - return DASM_S_OK; -} - -#define dasmb(x) *cp++ = (unsigned char)(x) -#ifndef DASM_ALIGNED_WRITES -#define dasmw(x) \ - do { *((unsigned short *)cp) = (unsigned short)(x); cp+=2; } while (0) -#define dasmd(x) \ - do { *((unsigned int *)cp) = (unsigned int)(x); cp+=4; } while (0) -#else -#define dasmw(x) do { dasmb(x); dasmb((x)>>8); } while (0) -#define dasmd(x) do { dasmw(x); dasmw((x)>>16); } while (0) -#endif - -/* Pass 3: Encode sections. */ -int dasm_encode(Dst_DECL, void *buffer) -{ - dasm_State *D = Dst_REF; - unsigned char *base = (unsigned char *)buffer; - unsigned char *cp = base; - int secnum; - - /* Encode all code sections. No support for data sections (yet). */ - for (secnum = 0; secnum < D->maxsection; secnum++) { - dasm_Section *sec = D->sections + secnum; - int *b = sec->buf; - int *endb = sec->rbuf + sec->pos; - - while (b != endb) { - dasm_ActList p = D->actionlist + *b++; - unsigned char *mark = NULL; - while (1) { - int action = *p++; - int n = (action >= DASM_DISP && action <= DASM_ALIGN) ? *b++ : 0; - switch (action) { - case DASM_DISP: if (!mark) mark = cp; { - unsigned char *mm = mark; - if (*p != DASM_IMM_DB && *p != DASM_IMM_WB) mark = NULL; - if (n == 0) { int mrm = mm[-1]&7; if (mrm == 4) mrm = mm[0]&7; - if (mrm != 5) { mm[-1] -= 0x80; break; } } - if (((n+128) & -256) != 0) goto wd; else mm[-1] -= 0x40; - } - case DASM_IMM_S: case DASM_IMM_B: wb: dasmb(n); break; - case DASM_IMM_DB: if (((n+128)&-256) == 0) { - db: if (!mark) mark = cp; mark[-2] += 2; mark = NULL; goto wb; - } else mark = NULL; - case DASM_IMM_D: wd: dasmd(n); break; - case DASM_IMM_WB: if (((n+128)&-256) == 0) goto db; else mark = NULL; - case DASM_IMM_W: dasmw(n); break; - case DASM_VREG: { - int t = *p++; - unsigned char *ex = cp - (t&7); - if ((n & 8) && t < 0xa0) { - if (*ex & 0x80) ex[1] ^= 0x20 << (t>>6); else *ex ^= 1 << (t>>6); - n &= 7; - } else if (n & 0x10) { - if (*ex & 0x80) { - *ex = 0xc5; ex[1] = (ex[1] & 0x80) | ex[2]; ex += 2; - } - while (++ex < cp) ex[-1] = *ex; - if (mark) mark--; - cp--; - n &= 7; - } - if (t >= 0xc0) n <<= 4; - else if (t >= 0x40) n <<= 3; - else if (n == 4 && t < 0x20) { cp[-1] ^= n; *cp++ = 0x20; } - cp[-1] ^= n; - break; - } - case DASM_REL_LG: p++; if (n >= 0) goto rel_pc; - b++; n = (int)(ptrdiff_t)D->globals[-n]; - case DASM_REL_A: rel_a: - n -= (unsigned int)(ptrdiff_t)(cp+4); goto wd; /* !x64 */ - case DASM_REL_PC: rel_pc: { - int shrink = *b++; - int *pb = DASM_POS2PTR(D, n); if (*pb < 0) { n = pb[1]; goto rel_a; } - n = *pb - ((int)(cp-base) + 4-shrink); - if (shrink == 0) goto wd; - if (shrink == 4) { cp--; cp[-1] = *cp-0x10; } else cp[-1] = 0xeb; - goto wb; - } - case DASM_IMM_LG: - p++; if (n < 0) { n = (int)(ptrdiff_t)D->globals[-n]; goto wd; } - case DASM_IMM_PC: { - int *pb = DASM_POS2PTR(D, n); - n = *pb < 0 ? pb[1] : (*pb + (int)(ptrdiff_t)base); - goto wd; - } - case DASM_LABEL_LG: { - int idx = *p++; - if (idx >= 10) - D->globals[idx] = (void *)(base + (*p == DASM_SETLABEL ? *b : n)); - break; - } - case DASM_LABEL_PC: case DASM_SETLABEL: break; - case DASM_SPACE: { int fill = *p++; while (n--) *cp++ = fill; break; } - case DASM_ALIGN: - n = *p++; - while (((cp-base) & n)) *cp++ = 0x90; /* nop */ - break; - case DASM_EXTERN: n = DASM_EXTERN(Dst, cp, p[1], *p); p += 2; goto wd; - case DASM_MARK: mark = cp; break; - case DASM_ESC: action = *p++; - default: *cp++ = action; break; - case DASM_SECTION: case DASM_STOP: goto stop; - } - } - stop: (void)0; - } - } - - if (base + D->codesize != cp) /* Check for phase errors. */ - return DASM_S_PHASE; - return DASM_S_OK; -} - -/* Get PC label offset. */ -int dasm_getpclabel(Dst_DECL, unsigned int pc) -{ - dasm_State *D = Dst_REF; - if (pc*sizeof(int) < D->pcsize) { - int pos = D->pclabels[pc]; - if (pos < 0) return *DASM_POS2PTR(D, -pos); - if (pos > 0) return -1; /* Undefined. */ - } - return -2; /* Unused or out of range. */ -} - -#ifdef DASM_CHECKS -/* Optional sanity checker to call between isolated encoding steps. */ -int dasm_checkstep(Dst_DECL, int secmatch) -{ - dasm_State *D = Dst_REF; - if (D->status == DASM_S_OK) { - int i; - for (i = 1; i <= 9; i++) { - if (D->lglabels[i] > 0) { D->status = DASM_S_UNDEF_L|i; break; } - D->lglabels[i] = 0; - } - } - if (D->status == DASM_S_OK && secmatch >= 0 && - D->section != &D->sections[secmatch]) - D->status = DASM_S_MATCH_SEC|(int)(D->section-D->sections); - return D->status; -} -#endif - diff --git a/vmbuilder/dynasm/dasm_x86.lua b/vmbuilder/dynasm/dasm_x86.lua deleted file mode 100644 index 4c031e2..0000000 --- a/vmbuilder/dynasm/dasm_x86.lua +++ /dev/null @@ -1,2274 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM x86/x64 module. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See dynasm.lua for full copyright notice. ------------------------------------------------------------------------------- - -local x64 = x64 - --- Module information: -local _info = { - arch = x64 and "x64" or "x86", - description = "DynASM x86/x64 module", - version = "1.4.0", - vernum = 10400, - release = "2015-10-18", - author = "Mike Pall", - license = "MIT", -} - --- Exported glue functions for the arch-specific module. -local _M = { _info = _info } - --- Cache library functions. -local type, tonumber, pairs, ipairs = type, tonumber, pairs, ipairs -local assert, unpack, setmetatable = assert, unpack or table.unpack, setmetatable -local _s = string -local sub, format, byte, char = _s.sub, _s.format, _s.byte, _s.char -local find, match, gmatch, gsub = _s.find, _s.match, _s.gmatch, _s.gsub -local concat, sort, remove = table.concat, table.sort, table.remove -local bit = bit or require("bit") -local band, bxor, shl, shr = bit.band, bit.bxor, bit.lshift, bit.rshift - --- Inherited tables and callbacks. -local g_opt, g_arch -local wline, werror, wfatal, wwarn - --- Action name list. --- CHECK: Keep this in sync with the C code! -local action_names = { - -- int arg, 1 buffer pos: - "DISP", "IMM_S", "IMM_B", "IMM_W", "IMM_D", "IMM_WB", "IMM_DB", - -- action arg (1 byte), int arg, 1 buffer pos (reg/num): - "VREG", "SPACE", - -- ptrdiff_t arg, 1 buffer pos (address): !x64 - "SETLABEL", "REL_A", - -- action arg (1 byte) or int arg, 2 buffer pos (link, offset): - "REL_LG", "REL_PC", - -- action arg (1 byte) or int arg, 1 buffer pos (link): - "IMM_LG", "IMM_PC", - -- action arg (1 byte) or int arg, 1 buffer pos (offset): - "LABEL_LG", "LABEL_PC", - -- action arg (1 byte), 1 buffer pos (offset): - "ALIGN", - -- action args (2 bytes), no buffer pos. - "EXTERN", - -- action arg (1 byte), no buffer pos. - "ESC", - -- no action arg, no buffer pos. - "MARK", - -- action arg (1 byte), no buffer pos, terminal action: - "SECTION", - -- no args, no buffer pos, terminal action: - "STOP" -} - --- Maximum number of section buffer positions for dasm_put(). --- CHECK: Keep this in sync with the C code! -local maxsecpos = 25 -- Keep this low, to avoid excessively long C lines. - --- Action name -> action number (dynamically generated below). -local map_action = {} --- First action number. Everything below does not need to be escaped. -local actfirst = 256-#action_names - --- Action list buffer and string (only used to remove dupes). -local actlist = {} -local actstr = "" - --- Argument list for next dasm_put(). Start with offset 0 into action list. -local actargs = { 0 } - --- Current number of section buffer positions for dasm_put(). -local secpos = 1 - --- VREG kind encodings, pre-shifted by 5 bits. -local map_vreg = { - ["modrm.rm.m"] = 0x00, - ["modrm.rm.r"] = 0x20, - ["opcode"] = 0x20, - ["sib.base"] = 0x20, - ["sib.index"] = 0x40, - ["modrm.reg"] = 0x80, - ["vex.v"] = 0xa0, - ["imm.hi"] = 0xc0, -} - --- Current number of VREG actions contributing to REX/VEX shrinkage. -local vreg_shrink_count = 0 - ------------------------------------------------------------------------------- - --- Compute action numbers for action names. -for n,name in ipairs(action_names) do - local num = actfirst + n - 1 - map_action[name] = num -end - --- Dump action names and numbers. -local function dumpactions(out) - out:write("DynASM encoding engine action codes:\n") - for n,name in ipairs(action_names) do - local num = map_action[name] - out:write(format(" %-10s %02X %d\n", name, num, num)) - end - out:write("\n") -end - --- Write action list buffer as a huge static C array. -local function writeactions(out, name) - local nn = #actlist - local last = actlist[nn] or 255 - actlist[nn] = nil -- Remove last byte. - if nn == 0 then nn = 1 end - out:write("static const unsigned char ", name, "[", nn, "] = {\n") - local s = " " - for n,b in ipairs(actlist) do - s = s..b.."," - if #s >= 75 then - assert(out:write(s, "\n")) - s = " " - end - end - out:write(s, last, "\n};\n\n") -- Add last byte back. -end - ------------------------------------------------------------------------------- - --- Add byte to action list. -local function wputxb(n) - assert(n >= 0 and n <= 255 and n % 1 == 0, "byte out of range") - actlist[#actlist+1] = n -end - --- Add action to list with optional arg. Advance buffer pos, too. -local function waction(action, a, num) - wputxb(assert(map_action[action], "bad action name `"..action.."'")) - if a then actargs[#actargs+1] = a end - if a or num then secpos = secpos + (num or 1) end -end - --- Optionally add a VREG action. -local function wvreg(kind, vreg, psz, sk, defer) - if not vreg then return end - waction("VREG", vreg) - local b = assert(map_vreg[kind], "bad vreg kind `"..vreg.."'") - if b < (sk or 0) then - vreg_shrink_count = vreg_shrink_count + 1 - end - if not defer then - b = b + vreg_shrink_count * 8 - vreg_shrink_count = 0 - end - wputxb(b + (psz or 0)) -end - --- Add call to embedded DynASM C code. -local function wcall(func, args) - wline(format("dasm_%s(Dst, %s);", func, concat(args, ", ")), true) -end - --- Delete duplicate action list chunks. A tad slow, but so what. -local function dedupechunk(offset) - local al, as = actlist, actstr - local chunk = char(unpack(al, offset+1, #al)) - local orig = find(as, chunk, 1, true) - if orig then - actargs[1] = orig-1 -- Replace with original offset. - for i=offset+1,#al do al[i] = nil end -- Kill dupe. - else - actstr = as..chunk - end -end - --- Flush action list (intervening C code or buffer pos overflow). -local function wflush(term) - local offset = actargs[1] - if #actlist == offset then return end -- Nothing to flush. - if not term then waction("STOP") end -- Terminate action list. - dedupechunk(offset) - wcall("put", actargs) -- Add call to dasm_put(). - actargs = { #actlist } -- Actionlist offset is 1st arg to next dasm_put(). - secpos = 1 -- The actionlist offset occupies a buffer position, too. -end - --- Put escaped byte. -local function wputb(n) - if n >= actfirst then waction("ESC") end -- Need to escape byte. - wputxb(n) -end - ------------------------------------------------------------------------------- - --- Global label name -> global label number. With auto assignment on 1st use. -local next_global = 10 -local map_global = setmetatable({}, { __index = function(t, name) - if not match(name, "^[%a_][%w_@]*$") then werror("bad global label") end - local n = next_global - if n > 246 then werror("too many global labels") end - next_global = n + 1 - t[name] = n - return n -end}) - --- Dump global labels. -local function dumpglobals(out, lvl) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("Global labels:\n") - for i=10,next_global-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write global label enum. -local function writeglobals(out, prefix) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("enum {\n") - for i=10,next_global-1 do - out:write(" ", prefix, gsub(t[i], "@.*", ""), ",\n") - end - out:write(" ", prefix, "_MAX\n};\n") -end - --- Write global label names. -local function writeglobalnames(out, name) - local t = {} - for name, n in pairs(map_global) do t[n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=10,next_global-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Extern label name -> extern label number. With auto assignment on 1st use. -local next_extern = -1 -local map_extern = setmetatable({}, { __index = function(t, name) - -- No restrictions on the name for now. - local n = next_extern - if n < -256 then werror("too many extern labels") end - next_extern = n - 1 - t[name] = n - return n -end}) - --- Dump extern labels. -local function dumpexterns(out, lvl) - local t = {} - for name, n in pairs(map_extern) do t[-n] = name end - out:write("Extern labels:\n") - for i=1,-next_extern-1 do - out:write(format(" %s\n", t[i])) - end - out:write("\n") -end - --- Write extern label names. -local function writeexternnames(out, name) - local t = {} - for name, n in pairs(map_extern) do t[-n] = name end - out:write("static const char *const ", name, "[] = {\n") - for i=1,-next_extern-1 do - out:write(" \"", t[i], "\",\n") - end - out:write(" (const char *)0\n};\n") -end - ------------------------------------------------------------------------------- - --- Arch-specific maps. -local map_archdef = {} -- Ext. register name -> int. name. -local map_reg_rev = {} -- Int. register name -> ext. name. -local map_reg_num = {} -- Int. register name -> register number. -local map_reg_opsize = {} -- Int. register name -> operand size. -local map_reg_valid_base = {} -- Int. register name -> valid base register? -local map_reg_valid_index = {} -- Int. register name -> valid index register? -local map_reg_needrex = {} -- Int. register name -> need rex vs. no rex. -local reg_list = {} -- Canonical list of int. register names. - -local map_type = {} -- Type name -> { ctype, reg } -local ctypenum = 0 -- Type number (for _PTx macros). - -local addrsize = x64 and "q" or "d" -- Size for address operands. - --- Helper functions to fill register maps. -local function mkrmap(sz, cl, names) - local cname = format("@%s", sz) - reg_list[#reg_list+1] = cname - map_archdef[cl] = cname - map_reg_rev[cname] = cl - map_reg_num[cname] = -1 - map_reg_opsize[cname] = sz - if sz == addrsize or sz == "d" then - map_reg_valid_base[cname] = true - map_reg_valid_index[cname] = true - end - if names then - for n,name in ipairs(names) do - local iname = format("@%s%x", sz, n-1) - reg_list[#reg_list+1] = iname - map_archdef[name] = iname - map_reg_rev[iname] = name - map_reg_num[iname] = n-1 - map_reg_opsize[iname] = sz - if sz == "b" and n > 4 then map_reg_needrex[iname] = false end - if sz == addrsize or sz == "d" then - map_reg_valid_base[iname] = true - map_reg_valid_index[iname] = true - end - end - end - for i=0,(x64 and sz ~= "f") and 15 or 7 do - local needrex = sz == "b" and i > 3 - local iname = format("@%s%x%s", sz, i, needrex and "R" or "") - if needrex then map_reg_needrex[iname] = true end - local name - if sz == "o" or sz == "y" then name = format("%s%d", cl, i) - elseif sz == "f" then name = format("st%d", i) - else name = format("r%d%s", i, sz == addrsize and "" or sz) end - map_archdef[name] = iname - if not map_reg_rev[iname] then - reg_list[#reg_list+1] = iname - map_reg_rev[iname] = name - map_reg_num[iname] = i - map_reg_opsize[iname] = sz - if sz == addrsize or sz == "d" then - map_reg_valid_base[iname] = true - map_reg_valid_index[iname] = true - end - end - end - reg_list[#reg_list+1] = "" -end - --- Integer registers (qword, dword, word and byte sized). -if x64 then - mkrmap("q", "Rq", {"rax", "rcx", "rdx", "rbx", "rsp", "rbp", "rsi", "rdi"}) -end -mkrmap("d", "Rd", {"eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi"}) -mkrmap("w", "Rw", {"ax", "cx", "dx", "bx", "sp", "bp", "si", "di"}) -mkrmap("b", "Rb", {"al", "cl", "dl", "bl", "ah", "ch", "dh", "bh"}) -map_reg_valid_index[map_archdef.esp] = false -if x64 then map_reg_valid_index[map_archdef.rsp] = false end -if x64 then map_reg_needrex[map_archdef.Rb] = true end -map_archdef["Ra"] = "@"..addrsize - --- FP registers (internally tword sized, but use "f" as operand size). -mkrmap("f", "Rf") - --- SSE registers (oword sized, but qword and dword accessible). -mkrmap("o", "xmm") - --- AVX registers (yword sized, but oword, qword and dword accessible). -mkrmap("y", "ymm") - --- Operand size prefixes to codes. -local map_opsize = { - byte = "b", word = "w", dword = "d", qword = "q", oword = "o", yword = "y", - tword = "t", aword = addrsize, -} - --- Operand size code to number. -local map_opsizenum = { - b = 1, w = 2, d = 4, q = 8, o = 16, y = 32, t = 10, -} - --- Operand size code to name. -local map_opsizename = { - b = "byte", w = "word", d = "dword", q = "qword", o = "oword", y = "yword", - t = "tword", f = "fpword", -} - --- Valid index register scale factors. -local map_xsc = { - ["1"] = 0, ["2"] = 1, ["4"] = 2, ["8"] = 3, -} - --- Condition codes. -local map_cc = { - o = 0, no = 1, b = 2, nb = 3, e = 4, ne = 5, be = 6, nbe = 7, - s = 8, ns = 9, p = 10, np = 11, l = 12, nl = 13, le = 14, nle = 15, - c = 2, nae = 2, nc = 3, ae = 3, z = 4, nz = 5, na = 6, a = 7, - pe = 10, po = 11, nge = 12, ge = 13, ng = 14, g = 15, -} - - --- Reverse defines for registers. -function _M.revdef(s) - return gsub(s, "@%w+", map_reg_rev) -end - --- Dump register names and numbers -local function dumpregs(out) - out:write("Register names, sizes and internal numbers:\n") - for _,reg in ipairs(reg_list) do - if reg == "" then - out:write("\n") - else - local name = map_reg_rev[reg] - local num = map_reg_num[reg] - local opsize = map_opsizename[map_reg_opsize[reg]] - out:write(format(" %-5s %-8s %s\n", name, opsize, - num < 0 and "(variable)" or num)) - end - end -end - ------------------------------------------------------------------------------- - --- Put action for label arg (IMM_LG, IMM_PC, REL_LG, REL_PC). -local function wputlabel(aprefix, imm, num) - if type(imm) == "number" then - if imm < 0 then - waction("EXTERN") - wputxb(aprefix == "IMM_" and 0 or 1) - imm = -imm-1 - else - waction(aprefix.."LG", nil, num); - end - wputxb(imm) - else - waction(aprefix.."PC", imm, num) - end -end - --- Put signed byte or arg. -local function wputsbarg(n) - if type(n) == "number" then - if n < -128 or n > 127 then - werror("signed immediate byte out of range") - end - if n < 0 then n = n + 256 end - wputb(n) - else waction("IMM_S", n) end -end - --- Put unsigned byte or arg. -local function wputbarg(n) - if type(n) == "number" then - if n < 0 or n > 255 then - werror("unsigned immediate byte out of range") - end - wputb(n) - else waction("IMM_B", n) end -end - --- Put unsigned word or arg. -local function wputwarg(n) - if type(n) == "number" then - if shr(n, 16) ~= 0 then - werror("unsigned immediate word out of range") - end - wputb(band(n, 255)); wputb(shr(n, 8)); - else waction("IMM_W", n) end -end - --- Put signed or unsigned dword or arg. -local function wputdarg(n) - local tn = type(n) - if tn == "number" then - wputb(band(n, 255)) - wputb(band(shr(n, 8), 255)) - wputb(band(shr(n, 16), 255)) - wputb(shr(n, 24)) - elseif tn == "table" then - wputlabel("IMM_", n[1], 1) - else - waction("IMM_D", n) - end -end - --- Put operand-size dependent number or arg (defaults to dword). -local function wputszarg(sz, n) - if not sz or sz == "d" or sz == "q" then wputdarg(n) - elseif sz == "w" then wputwarg(n) - elseif sz == "b" then wputbarg(n) - elseif sz == "s" then wputsbarg(n) - else werror("bad operand size") end -end - --- Put multi-byte opcode with operand-size dependent modifications. -local function wputop(sz, op, rex, vex, vregr, vregxb) - local psz, sk = 0, nil - if vex then - local tail - if vex.m == 1 and band(rex, 11) == 0 then - if x64 and vregxb then - sk = map_vreg["modrm.reg"] - else - wputb(0xc5) - tail = shl(bxor(band(rex, 4), 4), 5) - psz = 3 - end - end - if not tail then - wputb(0xc4) - wputb(shl(bxor(band(rex, 7), 7), 5) + vex.m) - tail = shl(band(rex, 8), 4) - psz = 4 - end - local reg, vreg = 0, nil - if vex.v then - reg = vex.v.reg - if not reg then werror("bad vex operand") end - if reg < 0 then reg = 0; vreg = vex.v.vreg end - end - if sz == "y" or vex.l then tail = tail + 4 end - wputb(tail + shl(bxor(reg, 15), 3) + vex.p) - wvreg("vex.v", vreg) - rex = 0 - if op >= 256 then werror("bad vex opcode") end - else - if rex ~= 0 then - if not x64 then werror("bad operand size") end - elseif (vregr or vregxb) and x64 then - rex = 0x10 - sk = map_vreg["vex.v"] - end - end - local r - if sz == "w" then wputb(102) end - -- Needs >32 bit numbers, but only for crc32 eax, word [ebx] - if op >= 4294967296 then r = op%4294967296 wputb((op-r)/4294967296) op = r end - if op >= 16777216 then wputb(shr(op, 24)); op = band(op, 0xffffff) end - if op >= 65536 then - if rex ~= 0 then - local opc3 = band(op, 0xffff00) - if opc3 == 0x0f3a00 or opc3 == 0x0f3800 then - wputb(64 + band(rex, 15)); rex = 0; psz = 2 - end - end - wputb(shr(op, 16)); op = band(op, 0xffff); psz = psz + 1 - end - if op >= 256 then - local b = shr(op, 8) - if b == 15 and rex ~= 0 then wputb(64 + band(rex, 15)); rex = 0; psz = 2 end - wputb(b); op = band(op, 255); psz = psz + 1 - end - if rex ~= 0 then wputb(64 + band(rex, 15)); psz = 2 end - if sz == "b" then op = op - 1 end - wputb(op) - return psz, sk -end - --- Put ModRM or SIB formatted byte. -local function wputmodrm(m, s, rm, vs, vrm) - assert(m < 4 and s < 16 and rm < 16, "bad modrm operands") - wputb(shl(m, 6) + shl(band(s, 7), 3) + band(rm, 7)) -end - --- Put ModRM/SIB plus optional displacement. -local function wputmrmsib(t, imark, s, vsreg, psz, sk) - local vreg, vxreg - local reg, xreg = t.reg, t.xreg - if reg and reg < 0 then reg = 0; vreg = t.vreg end - if xreg and xreg < 0 then xreg = 0; vxreg = t.vxreg end - if s < 0 then s = 0 end - - -- Register mode. - if sub(t.mode, 1, 1) == "r" then - wputmodrm(3, s, reg) - wvreg("modrm.reg", vsreg, psz+1, sk, vreg) - wvreg("modrm.rm.r", vreg, psz+1, sk) - return - end - - local disp = t.disp - local tdisp = type(disp) - -- No base register? - if not reg then - local riprel = false - if xreg then - -- Indexed mode with index register only. - -- [xreg*xsc+disp] -> (0, s, esp) (xsc, xreg, ebp) - wputmodrm(0, s, 4) - if imark == "I" then waction("MARK") end - wvreg("modrm.reg", vsreg, psz+1, sk, vxreg) - wputmodrm(t.xsc, xreg, 5) - wvreg("sib.index", vxreg, psz+2, sk) - else - -- Pure 32 bit displacement. - if x64 and tdisp ~= "table" then - wputmodrm(0, s, 4) -- [disp] -> (0, s, esp) (0, esp, ebp) - wvreg("modrm.reg", vsreg, psz+1, sk) - if imark == "I" then waction("MARK") end - wputmodrm(0, 4, 5) - else - riprel = x64 - wputmodrm(0, s, 5) -- [disp|rip-label] -> (0, s, ebp) - wvreg("modrm.reg", vsreg, psz+1, sk) - if imark == "I" then waction("MARK") end - end - end - if riprel then -- Emit rip-relative displacement. - if match("UWSiI", imark) then - werror("NYI: rip-relative displacement followed by immediate") - end - -- The previous byte in the action buffer cannot be 0xe9 or 0x80-0x8f. - wputlabel("REL_", disp[1], 2) - else - wputdarg(disp) - end - return - end - - local m - if tdisp == "number" then -- Check displacement size at assembly time. - if disp == 0 and band(reg, 7) ~= 5 then -- [ebp] -> [ebp+0] (in SIB, too) - if not vreg then m = 0 end -- Force DISP to allow [Rd(5)] -> [ebp+0] - elseif disp >= -128 and disp <= 127 then m = 1 - else m = 2 end - elseif tdisp == "table" then - m = 2 - end - - -- Index register present or esp as base register: need SIB encoding. - if xreg or band(reg, 7) == 4 then - wputmodrm(m or 2, s, 4) -- ModRM. - if m == nil or imark == "I" then waction("MARK") end - wvreg("modrm.reg", vsreg, psz+1, sk, vxreg or vreg) - wputmodrm(t.xsc or 0, xreg or 4, reg) -- SIB. - wvreg("sib.index", vxreg, psz+2, sk, vreg) - wvreg("sib.base", vreg, psz+2, sk) - else - wputmodrm(m or 2, s, reg) -- ModRM. - if (imark == "I" and (m == 1 or m == 2)) or - (m == nil and (vsreg or vreg)) then waction("MARK") end - wvreg("modrm.reg", vsreg, psz+1, sk, vreg) - wvreg("modrm.rm.m", vreg, psz+1, sk) - end - - -- Put displacement. - if m == 1 then wputsbarg(disp) - elseif m == 2 then wputdarg(disp) - elseif m == nil then waction("DISP", disp) end -end - ------------------------------------------------------------------------------- - --- Return human-readable operand mode string. -local function opmodestr(op, args) - local m = {} - for i=1,#args do - local a = args[i] - m[#m+1] = sub(a.mode, 1, 1)..(a.opsize or "?") - end - return op.." "..concat(m, ",") -end - --- Convert number to valid integer or nil. -local function toint(expr) - local n = tonumber(expr) - if n then - if n % 1 ~= 0 or n < -2147483648 or n > 4294967295 then - werror("bad integer number `"..expr.."'") - end - return n - end -end - --- Parse immediate expression. -local function immexpr(expr) - -- &expr (pointer) - if sub(expr, 1, 1) == "&" then - return "iPJ", format("(ptrdiff_t)(%s)", sub(expr,2)) - end - - local prefix = sub(expr, 1, 2) - -- =>expr (pc label reference) - if prefix == "=>" then - return "iJ", sub(expr, 3) - end - -- ->name (global label reference) - if prefix == "->" then - return "iJ", map_global[sub(expr, 3)] - end - - -- [<>][1-9] (local label reference) - local dir, lnum = match(expr, "^([<>])([1-9])$") - if dir then -- Fwd: 247-255, Bkwd: 1-9. - return "iJ", lnum + (dir == ">" and 246 or 0) - end - - local extname = match(expr, "^extern%s+(%S+)$") - if extname then - return "iJ", map_extern[extname] - end - - -- expr (interpreted as immediate) - return "iI", expr -end - --- Parse displacement expression: +-num, +-expr, +-opsize*num -local function dispexpr(expr) - local disp = expr == "" and 0 or toint(expr) - if disp then return disp end - local c, dispt = match(expr, "^([+-])%s*(.+)$") - if c == "+" then - expr = dispt - elseif not c then - werror("bad displacement expression `"..expr.."'") - end - local opsize, tailops = match(dispt, "^(%w+)%s*%*%s*(.+)$") - local ops, imm = map_opsize[opsize], toint(tailops) - if ops and imm then - if c == "-" then imm = -imm end - return imm*map_opsizenum[ops] - end - local mode, iexpr = immexpr(dispt) - if mode == "iJ" then - if c == "-" then werror("cannot invert label reference") end - return { iexpr } - end - return expr -- Need to return original signed expression. -end - --- Parse register or type expression. -local function rtexpr(expr) - if not expr then return end - local tname, ovreg = match(expr, "^([%w_]+):(@[%w_]+)$") - local tp = map_type[tname or expr] - if tp then - local reg = ovreg or tp.reg - local rnum = map_reg_num[reg] - if not rnum then - werror("type `"..(tname or expr).."' needs a register override") - end - if not map_reg_valid_base[reg] then - werror("bad base register override `"..(map_reg_rev[reg] or reg).."'") - end - return reg, rnum, tp - end - return expr, map_reg_num[expr] -end - --- Parse operand and return { mode, opsize, reg, xreg, xsc, disp, imm }. -local function parseoperand(param) - local t = {} - - local expr = param - local opsize, tailops = match(param, "^(%w+)%s*(.+)$") - if opsize then - t.opsize = map_opsize[opsize] - if t.opsize then expr = tailops end - end - - local br = match(expr, "^%[%s*(.-)%s*%]$") - repeat - if br then - t.mode = "xm" - - -- [disp] - t.disp = toint(br) - if t.disp then - t.mode = x64 and "xm" or "xmO" - break - end - - -- [reg...] - local tp - local reg, tailr = match(br, "^([@%w_:]+)%s*(.*)$") - reg, t.reg, tp = rtexpr(reg) - if not t.reg then - -- [expr] - t.mode = x64 and "xm" or "xmO" - t.disp = dispexpr("+"..br) - break - end - - if t.reg == -1 then - t.vreg, tailr = match(tailr, "^(%b())(.*)$") - if not t.vreg then werror("bad variable register expression") end - end - - -- [xreg*xsc] or [xreg*xsc+-disp] or [xreg*xsc+-expr] - local xsc, tailsc = match(tailr, "^%*%s*([1248])%s*(.*)$") - if xsc then - if not map_reg_valid_index[reg] then - werror("bad index register `"..map_reg_rev[reg].."'") - end - t.xsc = map_xsc[xsc] - t.xreg = t.reg - t.vxreg = t.vreg - t.reg = nil - t.vreg = nil - t.disp = dispexpr(tailsc) - break - end - if not map_reg_valid_base[reg] then - werror("bad base register `"..map_reg_rev[reg].."'") - end - - -- [reg] or [reg+-disp] - t.disp = toint(tailr) or (tailr == "" and 0) - if t.disp then break end - - -- [reg+xreg...] - local xreg, tailx = match(tailr, "^+%s*([@%w_:]+)%s*(.*)$") - xreg, t.xreg, tp = rtexpr(xreg) - if not t.xreg then - -- [reg+-expr] - t.disp = dispexpr(tailr) - break - end - if not map_reg_valid_index[xreg] then - werror("bad index register `"..map_reg_rev[xreg].."'") - end - - if t.xreg == -1 then - t.vxreg, tailx = match(tailx, "^(%b())(.*)$") - if not t.vxreg then werror("bad variable register expression") end - end - - -- [reg+xreg*xsc...] - local xsc, tailsc = match(tailx, "^%*%s*([1248])%s*(.*)$") - if xsc then - t.xsc = map_xsc[xsc] - tailx = tailsc - end - - -- [...] or [...+-disp] or [...+-expr] - t.disp = dispexpr(tailx) - else - -- imm or opsize*imm - local imm = toint(expr) - if not imm and sub(expr, 1, 1) == "*" and t.opsize then - imm = toint(sub(expr, 2)) - if imm then - imm = imm * map_opsizenum[t.opsize] - t.opsize = nil - end - end - if imm then - if t.opsize then werror("bad operand size override") end - local m = "i" - if imm == 1 then m = m.."1" end - if imm >= 4294967168 and imm <= 4294967295 then imm = imm-4294967296 end - if imm >= -128 and imm <= 127 then m = m.."S" end - t.imm = imm - t.mode = m - break - end - - local tp - local reg, tailr = match(expr, "^([@%w_:]+)%s*(.*)$") - reg, t.reg, tp = rtexpr(reg) - if t.reg then - if t.reg == -1 then - t.vreg, tailr = match(tailr, "^(%b())(.*)$") - if not t.vreg then werror("bad variable register expression") end - end - -- reg - if tailr == "" then - if t.opsize then werror("bad operand size override") end - t.opsize = map_reg_opsize[reg] - if t.opsize == "f" then - t.mode = t.reg == 0 and "fF" or "f" - else - if reg == "@w4" or (x64 and reg == "@d4") then - wwarn("bad idea, try again with `"..(x64 and "rsp'" or "esp'")) - end - t.mode = t.reg == 0 and "rmR" or (reg == "@b1" and "rmC" or "rm") - end - t.needrex = map_reg_needrex[reg] - break - end - - -- type[idx], type[idx].field, type->field -> [reg+offset_expr] - if not tp then werror("bad operand `"..param.."'") end - t.mode = "xm" - t.disp = format(tp.ctypefmt, tailr) - else - t.mode, t.imm = immexpr(expr) - if sub(t.mode, -1) == "J" then - if t.opsize and t.opsize ~= addrsize then - werror("bad operand size override") - end - t.opsize = addrsize - end - end - end - until true - return t -end - ------------------------------------------------------------------------------- --- x86 Template String Description --- =============================== --- --- Each template string is a list of [match:]pattern pairs, --- separated by "|". The first match wins. No match means a --- bad or unsupported combination of operand modes or sizes. --- --- The match part and the ":" is omitted if the operation has --- no operands. Otherwise the first N characters are matched --- against the mode strings of each of the N operands. --- --- The mode string for each operand type is (see parseoperand()): --- Integer register: "rm", +"R" for eax, ax, al, +"C" for cl --- FP register: "f", +"F" for st0 --- Index operand: "xm", +"O" for [disp] (pure offset) --- Immediate: "i", +"S" for signed 8 bit, +"1" for 1, --- +"I" for arg, +"P" for pointer --- Any: +"J" for valid jump targets --- --- So a match character "m" (mixed) matches both an integer register --- and an index operand (to be encoded with the ModRM/SIB scheme). --- But "r" matches only a register and "x" only an index operand --- (e.g. for FP memory access operations). --- --- The operand size match string starts right after the mode match --- characters and ends before the ":". "dwb" or "qdwb" is assumed, if empty. --- The effective data size of the operation is matched against this list. --- --- If only the regular "b", "w", "d", "q", "t" operand sizes are --- present, then all operands must be the same size. Unspecified sizes --- are ignored, but at least one operand must have a size or the pattern --- won't match (use the "byte", "word", "dword", "qword", "tword" --- operand size overrides. E.g.: mov dword [eax], 1). --- --- If the list has a "1" or "2" prefix, the operand size is taken --- from the respective operand and any other operand sizes are ignored. --- If the list contains only ".", all operand sizes are ignored. --- If the list has a "/" prefix, the concatenated (mixed) operand sizes --- are compared to the match. --- --- E.g. "rrdw" matches for either two dword registers or two word --- registers. "Fx2dq" matches an st0 operand plus an index operand --- pointing to a dword (float) or qword (double). --- --- Every character after the ":" is part of the pattern string: --- Hex chars are accumulated to form the opcode (left to right). --- "n" disables the standard opcode mods --- (otherwise: -1 for "b", o16 prefix for "w", rex.w for "q") --- "X" Force REX.W. --- "r"/"R" adds the reg. number from the 1st/2nd operand to the opcode. --- "m"/"M" generates ModRM/SIB from the 1st/2nd operand. --- The spare 3 bits are either filled with the last hex digit or --- the result from a previous "r"/"R". The opcode is restored. --- "u" Use VEX encoding, vvvv unused. --- "v"/"V" Use VEX encoding, vvvv from 1st/2nd operand (the operand is --- removed from the list used by future characters). --- "L" Force VEX.L --- --- All of the following characters force a flush of the opcode: --- "o"/"O" stores a pure 32 bit disp (offset) from the 1st/2nd operand. --- "s" stores a 4 bit immediate from the last register operand, --- followed by 4 zero bits. --- "S" stores a signed 8 bit immediate from the last operand. --- "U" stores an unsigned 8 bit immediate from the last operand. --- "W" stores an unsigned 16 bit immediate from the last operand. --- "i" stores an operand sized immediate from the last operand. --- "I" dito, but generates an action code to optionally modify --- the opcode (+2) for a signed 8 bit immediate. --- "J" generates one of the REL action codes from the last operand. --- ------------------------------------------------------------------------------- - --- Template strings for x86 instructions. Ordered by first opcode byte. --- Unimplemented opcodes (deliberate omissions) are marked with *. -local map_op = { - -- 00-05: add... - -- 06: *push es - -- 07: *pop es - -- 08-0D: or... - -- 0E: *push cs - -- 0F: two byte opcode prefix - -- 10-15: adc... - -- 16: *push ss - -- 17: *pop ss - -- 18-1D: sbb... - -- 1E: *push ds - -- 1F: *pop ds - -- 20-25: and... - es_0 = "26", - -- 27: *daa - -- 28-2D: sub... - cs_0 = "2E", - -- 2F: *das - -- 30-35: xor... - ss_0 = "36", - -- 37: *aaa - -- 38-3D: cmp... - ds_0 = "3E", - -- 3F: *aas - inc_1 = x64 and "m:FF0m" or "rdw:40r|m:FF0m", - dec_1 = x64 and "m:FF1m" or "rdw:48r|m:FF1m", - push_1 = (x64 and "rq:n50r|rw:50r|mq:nFF6m|mw:FF6m" or - "rdw:50r|mdw:FF6m").."|S.:6AS|ib:n6Ai|i.:68i", - pop_1 = x64 and "rq:n58r|rw:58r|mq:n8F0m|mw:8F0m" or "rdw:58r|mdw:8F0m", - -- 60: *pusha, *pushad, *pushaw - -- 61: *popa, *popad, *popaw - -- 62: *bound rdw,x - -- 63: x86: *arpl mw,rw - movsxd_2 = x64 and "rm/qd:63rM", - fs_0 = "64", - gs_0 = "65", - o16_0 = "66", - a16_0 = not x64 and "67" or nil, - a32_0 = x64 and "67", - -- 68: push idw - -- 69: imul rdw,mdw,idw - -- 6A: push ib - -- 6B: imul rdw,mdw,S - -- 6C: *insb - -- 6D: *insd, *insw - -- 6E: *outsb - -- 6F: *outsd, *outsw - -- 70-7F: jcc lb - -- 80: add... mb,i - -- 81: add... mdw,i - -- 82: *undefined - -- 83: add... mdw,S - test_2 = "mr:85Rm|rm:85rM|Ri:A9ri|mi:F70mi", - -- 86: xchg rb,mb - -- 87: xchg rdw,mdw - -- 88: mov mb,r - -- 89: mov mdw,r - -- 8A: mov r,mb - -- 8B: mov r,mdw - -- 8C: *mov mdw,seg - lea_2 = "rx1dq:8DrM", - -- 8E: *mov seg,mdw - -- 8F: pop mdw - nop_0 = "90", - xchg_2 = "Rrqdw:90R|rRqdw:90r|rm:87rM|mr:87Rm", - cbw_0 = "6698", - cwde_0 = "98", - cdqe_0 = "4898", - cwd_0 = "6699", - cdq_0 = "99", - cqo_0 = "4899", - -- 9A: *call iw:idw - wait_0 = "9B", - fwait_0 = "9B", - pushf_0 = "9C", - pushfd_0 = not x64 and "9C", - pushfq_0 = x64 and "9C", - popf_0 = "9D", - popfd_0 = not x64 and "9D", - popfq_0 = x64 and "9D", - sahf_0 = "9E", - lahf_0 = "9F", - mov_2 = "OR:A3o|RO:A1O|mr:89Rm|rm:8BrM|rib:nB0ri|ridw:B8ri|mi:C70mi", - movsb_0 = "A4", - movsw_0 = "66A5", - movsd_0 = "A5", - cmpsb_0 = "A6", - cmpsw_0 = "66A7", - cmpsd_0 = "A7", - -- A8: test Rb,i - -- A9: test Rdw,i - stosb_0 = "AA", - stosw_0 = "66AB", - stosd_0 = "AB", - lodsb_0 = "AC", - lodsw_0 = "66AD", - lodsd_0 = "AD", - scasb_0 = "AE", - scasw_0 = "66AF", - scasd_0 = "AF", - -- B0-B7: mov rb,i - -- B8-BF: mov rdw,i - -- C0: rol... mb,i - -- C1: rol... mdw,i - ret_1 = "i.:nC2W", - ret_0 = "C3", - -- C4: *les rdw,mq - -- C5: *lds rdw,mq - -- C6: mov mb,i - -- C7: mov mdw,i - -- C8: *enter iw,ib - leave_0 = "C9", - -- CA: *retf iw - -- CB: *retf - int3_0 = "CC", - int_1 = "i.:nCDU", - into_0 = "CE", - -- CF: *iret - -- D0: rol... mb,1 - -- D1: rol... mdw,1 - -- D2: rol... mb,cl - -- D3: rol... mb,cl - -- D4: *aam ib - -- D5: *aad ib - -- D6: *salc - -- D7: *xlat - -- D8-DF: floating point ops - -- E0: *loopne - -- E1: *loope - -- E2: *loop - -- E3: *jcxz, *jecxz - -- E4: *in Rb,ib - -- E5: *in Rdw,ib - -- E6: *out ib,Rb - -- E7: *out ib,Rdw - call_1 = x64 and "mq:nFF2m|J.:E8nJ" or "md:FF2m|J.:E8J", - jmp_1 = x64 and "mq:nFF4m|J.:E9nJ" or "md:FF4m|J.:E9J", -- short: EB - -- EA: *jmp iw:idw - -- EB: jmp ib - -- EC: *in Rb,dx - -- ED: *in Rdw,dx - -- EE: *out dx,Rb - -- EF: *out dx,Rdw - lock_0 = "F0", - int1_0 = "F1", - repne_0 = "F2", - repnz_0 = "F2", - rep_0 = "F3", - repe_0 = "F3", - repz_0 = "F3", - -- F4: *hlt - cmc_0 = "F5", - -- F6: test... mb,i; div... mb - -- F7: test... mdw,i; div... mdw - clc_0 = "F8", - stc_0 = "F9", - -- FA: *cli - cld_0 = "FC", - std_0 = "FD", - -- FE: inc... mb - -- FF: inc... mdw - - -- misc ops - not_1 = "m:F72m", - neg_1 = "m:F73m", - mul_1 = "m:F74m", - imul_1 = "m:F75m", - div_1 = "m:F76m", - idiv_1 = "m:F77m", - - imul_2 = "rmqdw:0FAFrM|rIqdw:69rmI|rSqdw:6BrmS|riqdw:69rmi", - imul_3 = "rmIqdw:69rMI|rmSqdw:6BrMS|rmiqdw:69rMi", - - movzx_2 = "rm/db:0FB6rM|rm/qb:|rm/wb:0FB6rM|rm/dw:0FB7rM|rm/qw:", - movsx_2 = "rm/db:0FBErM|rm/qb:|rm/wb:0FBErM|rm/dw:0FBFrM|rm/qw:", - - bswap_1 = "rqd:0FC8r", - bsf_2 = "rmqdw:0FBCrM", - bsr_2 = "rmqdw:0FBDrM", - bt_2 = "mrqdw:0FA3Rm|miqdw:0FBA4mU", - btc_2 = "mrqdw:0FBBRm|miqdw:0FBA7mU", - btr_2 = "mrqdw:0FB3Rm|miqdw:0FBA6mU", - bts_2 = "mrqdw:0FABRm|miqdw:0FBA5mU", - - shld_3 = "mriqdw:0FA4RmU|mrC/qq:0FA5Rm|mrC/dd:|mrC/ww:", - shrd_3 = "mriqdw:0FACRmU|mrC/qq:0FADRm|mrC/dd:|mrC/ww:", - - rdtsc_0 = "0F31", -- P1+ - rdpmc_0 = "0F33", -- P6+ - cpuid_0 = "0FA2", -- P1+ - - -- floating point ops - fst_1 = "ff:DDD0r|xd:D92m|xq:nDD2m", - fstp_1 = "ff:DDD8r|xd:D93m|xq:nDD3m|xt:DB7m", - fld_1 = "ff:D9C0r|xd:D90m|xq:nDD0m|xt:DB5m", - - fpop_0 = "DDD8", -- Alias for fstp st0. - - fist_1 = "xw:nDF2m|xd:DB2m", - fistp_1 = "xw:nDF3m|xd:DB3m|xq:nDF7m", - fild_1 = "xw:nDF0m|xd:DB0m|xq:nDF5m", - - fxch_0 = "D9C9", - fxch_1 = "ff:D9C8r", - fxch_2 = "fFf:D9C8r|Fff:D9C8R", - - fucom_1 = "ff:DDE0r", - fucom_2 = "Fff:DDE0R", - fucomp_1 = "ff:DDE8r", - fucomp_2 = "Fff:DDE8R", - fucomi_1 = "ff:DBE8r", -- P6+ - fucomi_2 = "Fff:DBE8R", -- P6+ - fucomip_1 = "ff:DFE8r", -- P6+ - fucomip_2 = "Fff:DFE8R", -- P6+ - fcomi_1 = "ff:DBF0r", -- P6+ - fcomi_2 = "Fff:DBF0R", -- P6+ - fcomip_1 = "ff:DFF0r", -- P6+ - fcomip_2 = "Fff:DFF0R", -- P6+ - fucompp_0 = "DAE9", - fcompp_0 = "DED9", - - fldenv_1 = "x.:D94m", - fnstenv_1 = "x.:D96m", - fstenv_1 = "x.:9BD96m", - fldcw_1 = "xw:nD95m", - fstcw_1 = "xw:n9BD97m", - fnstcw_1 = "xw:nD97m", - fstsw_1 = "Rw:n9BDFE0|xw:n9BDD7m", - fnstsw_1 = "Rw:nDFE0|xw:nDD7m", - fclex_0 = "9BDBE2", - fnclex_0 = "DBE2", - - fnop_0 = "D9D0", - -- D9D1-D9DF: unassigned - - fchs_0 = "D9E0", - fabs_0 = "D9E1", - -- D9E2: unassigned - -- D9E3: unassigned - ftst_0 = "D9E4", - fxam_0 = "D9E5", - -- D9E6: unassigned - -- D9E7: unassigned - fld1_0 = "D9E8", - fldl2t_0 = "D9E9", - fldl2e_0 = "D9EA", - fldpi_0 = "D9EB", - fldlg2_0 = "D9EC", - fldln2_0 = "D9ED", - fldz_0 = "D9EE", - -- D9EF: unassigned - - f2xm1_0 = "D9F0", - fyl2x_0 = "D9F1", - fptan_0 = "D9F2", - fpatan_0 = "D9F3", - fxtract_0 = "D9F4", - fprem1_0 = "D9F5", - fdecstp_0 = "D9F6", - fincstp_0 = "D9F7", - fprem_0 = "D9F8", - fyl2xp1_0 = "D9F9", - fsqrt_0 = "D9FA", - fsincos_0 = "D9FB", - frndint_0 = "D9FC", - fscale_0 = "D9FD", - fsin_0 = "D9FE", - fcos_0 = "D9FF", - - -- SSE, SSE2 - andnpd_2 = "rmo:660F55rM", - andnps_2 = "rmo:0F55rM", - andpd_2 = "rmo:660F54rM", - andps_2 = "rmo:0F54rM", - clflush_1 = "x.:0FAE7m", - cmppd_3 = "rmio:660FC2rMU", - cmpps_3 = "rmio:0FC2rMU", - cmpsd_3 = "rrio:F20FC2rMU|rxi/oq:", - cmpss_3 = "rrio:F30FC2rMU|rxi/od:", - comisd_2 = "rro:660F2FrM|rx/oq:", - comiss_2 = "rro:0F2FrM|rx/od:", - cvtdq2pd_2 = "rro:F30FE6rM|rx/oq:", - cvtdq2ps_2 = "rmo:0F5BrM", - cvtpd2dq_2 = "rmo:F20FE6rM", - cvtpd2ps_2 = "rmo:660F5ArM", - cvtpi2pd_2 = "rx/oq:660F2ArM", - cvtpi2ps_2 = "rx/oq:0F2ArM", - cvtps2dq_2 = "rmo:660F5BrM", - cvtps2pd_2 = "rro:0F5ArM|rx/oq:", - cvtsd2si_2 = "rr/do:F20F2DrM|rr/qo:|rx/dq:|rxq:", - cvtsd2ss_2 = "rro:F20F5ArM|rx/oq:", - cvtsi2sd_2 = "rm/od:F20F2ArM|rm/oq:F20F2ArXM", - cvtsi2ss_2 = "rm/od:F30F2ArM|rm/oq:F30F2ArXM", - cvtss2sd_2 = "rro:F30F5ArM|rx/od:", - cvtss2si_2 = "rr/do:F30F2DrM|rr/qo:|rxd:|rx/qd:", - cvttpd2dq_2 = "rmo:660FE6rM", - cvttps2dq_2 = "rmo:F30F5BrM", - cvttsd2si_2 = "rr/do:F20F2CrM|rr/qo:|rx/dq:|rxq:", - cvttss2si_2 = "rr/do:F30F2CrM|rr/qo:|rxd:|rx/qd:", - fxsave_1 = "x.:0FAE0m", - fxrstor_1 = "x.:0FAE1m", - ldmxcsr_1 = "xd:0FAE2m", - lfence_0 = "0FAEE8", - maskmovdqu_2 = "rro:660FF7rM", - mfence_0 = "0FAEF0", - movapd_2 = "rmo:660F28rM|mro:660F29Rm", - movaps_2 = "rmo:0F28rM|mro:0F29Rm", - movd_2 = "rm/od:660F6ErM|rm/oq:660F6ErXM|mr/do:660F7ERm|mr/qo:", - movdqa_2 = "rmo:660F6FrM|mro:660F7FRm", - movdqu_2 = "rmo:F30F6FrM|mro:F30F7FRm", - movhlps_2 = "rro:0F12rM", - movhpd_2 = "rx/oq:660F16rM|xr/qo:n660F17Rm", - movhps_2 = "rx/oq:0F16rM|xr/qo:n0F17Rm", - movlhps_2 = "rro:0F16rM", - movlpd_2 = "rx/oq:660F12rM|xr/qo:n660F13Rm", - movlps_2 = "rx/oq:0F12rM|xr/qo:n0F13Rm", - movmskpd_2 = "rr/do:660F50rM", - movmskps_2 = "rr/do:0F50rM", - movntdq_2 = "xro:660FE7Rm", - movnti_2 = "xrqd:0FC3Rm", - movntpd_2 = "xro:660F2BRm", - movntps_2 = "xro:0F2BRm", - movq_2 = "rro:F30F7ErM|rx/oq:|xr/qo:n660FD6Rm", - movsd_2 = "rro:F20F10rM|rx/oq:|xr/qo:nF20F11Rm", - movss_2 = "rro:F30F10rM|rx/od:|xr/do:F30F11Rm", - movupd_2 = "rmo:660F10rM|mro:660F11Rm", - movups_2 = "rmo:0F10rM|mro:0F11Rm", - orpd_2 = "rmo:660F56rM", - orps_2 = "rmo:0F56rM", - pause_0 = "F390", - pextrw_3 = "rri/do:660FC5rMU|xri/wo:660F3A15nRmU", -- Mem op: SSE4.1 only. - pinsrw_3 = "rri/od:660FC4rMU|rxi/ow:", - pmovmskb_2 = "rr/do:660FD7rM", - prefetchnta_1 = "xb:n0F180m", - prefetcht0_1 = "xb:n0F181m", - prefetcht1_1 = "xb:n0F182m", - prefetcht2_1 = "xb:n0F183m", - pshufd_3 = "rmio:660F70rMU", - pshufhw_3 = "rmio:F30F70rMU", - pshuflw_3 = "rmio:F20F70rMU", - pslld_2 = "rmo:660FF2rM|rio:660F726mU", - pslldq_2 = "rio:660F737mU", - psllq_2 = "rmo:660FF3rM|rio:660F736mU", - psllw_2 = "rmo:660FF1rM|rio:660F716mU", - psrad_2 = "rmo:660FE2rM|rio:660F724mU", - psraw_2 = "rmo:660FE1rM|rio:660F714mU", - psrld_2 = "rmo:660FD2rM|rio:660F722mU", - psrldq_2 = "rio:660F733mU", - psrlq_2 = "rmo:660FD3rM|rio:660F732mU", - psrlw_2 = "rmo:660FD1rM|rio:660F712mU", - rcpps_2 = "rmo:0F53rM", - rcpss_2 = "rro:F30F53rM|rx/od:", - rsqrtps_2 = "rmo:0F52rM", - rsqrtss_2 = "rmo:F30F52rM", - sfence_0 = "0FAEF8", - shufpd_3 = "rmio:660FC6rMU", - shufps_3 = "rmio:0FC6rMU", - stmxcsr_1 = "xd:0FAE3m", - ucomisd_2 = "rro:660F2ErM|rx/oq:", - ucomiss_2 = "rro:0F2ErM|rx/od:", - unpckhpd_2 = "rmo:660F15rM", - unpckhps_2 = "rmo:0F15rM", - unpcklpd_2 = "rmo:660F14rM", - unpcklps_2 = "rmo:0F14rM", - xorpd_2 = "rmo:660F57rM", - xorps_2 = "rmo:0F57rM", - - -- SSE3 ops - fisttp_1 = "xw:nDF1m|xd:DB1m|xq:nDD1m", - addsubpd_2 = "rmo:660FD0rM", - addsubps_2 = "rmo:F20FD0rM", - haddpd_2 = "rmo:660F7CrM", - haddps_2 = "rmo:F20F7CrM", - hsubpd_2 = "rmo:660F7DrM", - hsubps_2 = "rmo:F20F7DrM", - lddqu_2 = "rxo:F20FF0rM", - movddup_2 = "rmo:F20F12rM", - movshdup_2 = "rmo:F30F16rM", - movsldup_2 = "rmo:F30F12rM", - - -- SSSE3 ops - pabsb_2 = "rmo:660F381CrM", - pabsd_2 = "rmo:660F381ErM", - pabsw_2 = "rmo:660F381DrM", - palignr_3 = "rmio:660F3A0FrMU", - phaddd_2 = "rmo:660F3802rM", - phaddsw_2 = "rmo:660F3803rM", - phaddw_2 = "rmo:660F3801rM", - phsubd_2 = "rmo:660F3806rM", - phsubsw_2 = "rmo:660F3807rM", - phsubw_2 = "rmo:660F3805rM", - pmaddubsw_2 = "rmo:660F3804rM", - pmulhrsw_2 = "rmo:660F380BrM", - pshufb_2 = "rmo:660F3800rM", - psignb_2 = "rmo:660F3808rM", - psignd_2 = "rmo:660F380ArM", - psignw_2 = "rmo:660F3809rM", - - -- SSE4.1 ops - blendpd_3 = "rmio:660F3A0DrMU", - blendps_3 = "rmio:660F3A0CrMU", - blendvpd_3 = "rmRo:660F3815rM", - blendvps_3 = "rmRo:660F3814rM", - dppd_3 = "rmio:660F3A41rMU", - dpps_3 = "rmio:660F3A40rMU", - extractps_3 = "mri/do:660F3A17RmU|rri/qo:660F3A17RXmU", - insertps_3 = "rrio:660F3A41rMU|rxi/od:", - movntdqa_2 = "rxo:660F382ArM", - mpsadbw_3 = "rmio:660F3A42rMU", - packusdw_2 = "rmo:660F382BrM", - pblendvb_3 = "rmRo:660F3810rM", - pblendw_3 = "rmio:660F3A0ErMU", - pcmpeqq_2 = "rmo:660F3829rM", - pextrb_3 = "rri/do:660F3A14nRmU|rri/qo:|xri/bo:", - pextrd_3 = "mri/do:660F3A16RmU", - pextrq_3 = "mri/qo:660F3A16RmU", - -- pextrw is SSE2, mem operand is SSE4.1 only - phminposuw_2 = "rmo:660F3841rM", - pinsrb_3 = "rri/od:660F3A20nrMU|rxi/ob:", - pinsrd_3 = "rmi/od:660F3A22rMU", - pinsrq_3 = "rmi/oq:660F3A22rXMU", - pmaxsb_2 = "rmo:660F383CrM", - pmaxsd_2 = "rmo:660F383DrM", - pmaxud_2 = "rmo:660F383FrM", - pmaxuw_2 = "rmo:660F383ErM", - pminsb_2 = "rmo:660F3838rM", - pminsd_2 = "rmo:660F3839rM", - pminud_2 = "rmo:660F383BrM", - pminuw_2 = "rmo:660F383ArM", - pmovsxbd_2 = "rro:660F3821rM|rx/od:", - pmovsxbq_2 = "rro:660F3822rM|rx/ow:", - pmovsxbw_2 = "rro:660F3820rM|rx/oq:", - pmovsxdq_2 = "rro:660F3825rM|rx/oq:", - pmovsxwd_2 = "rro:660F3823rM|rx/oq:", - pmovsxwq_2 = "rro:660F3824rM|rx/od:", - pmovzxbd_2 = "rro:660F3831rM|rx/od:", - pmovzxbq_2 = "rro:660F3832rM|rx/ow:", - pmovzxbw_2 = "rro:660F3830rM|rx/oq:", - pmovzxdq_2 = "rro:660F3835rM|rx/oq:", - pmovzxwd_2 = "rro:660F3833rM|rx/oq:", - pmovzxwq_2 = "rro:660F3834rM|rx/od:", - pmuldq_2 = "rmo:660F3828rM", - pmulld_2 = "rmo:660F3840rM", - ptest_2 = "rmo:660F3817rM", - roundpd_3 = "rmio:660F3A09rMU", - roundps_3 = "rmio:660F3A08rMU", - roundsd_3 = "rrio:660F3A0BrMU|rxi/oq:", - roundss_3 = "rrio:660F3A0ArMU|rxi/od:", - - -- SSE4.2 ops - crc32_2 = "rmqd:F20F38F1rM|rm/dw:66F20F38F1rM|rm/db:F20F38F0rM|rm/qb:", - pcmpestri_3 = "rmio:660F3A61rMU", - pcmpestrm_3 = "rmio:660F3A60rMU", - pcmpgtq_2 = "rmo:660F3837rM", - pcmpistri_3 = "rmio:660F3A63rMU", - pcmpistrm_3 = "rmio:660F3A62rMU", - popcnt_2 = "rmqdw:F30FB8rM", - - -- SSE4a - extrq_2 = "rro:660F79rM", - extrq_3 = "riio:660F780mUU", - insertq_2 = "rro:F20F79rM", - insertq_4 = "rriio:F20F78rMUU", - lzcnt_2 = "rmqdw:F30FBDrM", - movntsd_2 = "xr/qo:nF20F2BRm", - movntss_2 = "xr/do:F30F2BRm", - -- popcnt is also in SSE4.2 - - -- AES-NI - aesdec_2 = "rmo:660F38DErM", - aesdeclast_2 = "rmo:660F38DFrM", - aesenc_2 = "rmo:660F38DCrM", - aesenclast_2 = "rmo:660F38DDrM", - aesimc_2 = "rmo:660F38DBrM", - aeskeygenassist_3 = "rmio:660F3ADFrMU", - pclmulqdq_3 = "rmio:660F3A44rMU", - - -- AVX FP ops - vaddsubpd_3 = "rrmoy:660FVD0rM", - vaddsubps_3 = "rrmoy:F20FVD0rM", - vandpd_3 = "rrmoy:660FV54rM", - vandps_3 = "rrmoy:0FV54rM", - vandnpd_3 = "rrmoy:660FV55rM", - vandnps_3 = "rrmoy:0FV55rM", - vblendpd_4 = "rrmioy:660F3AV0DrMU", - vblendps_4 = "rrmioy:660F3AV0CrMU", - vblendvpd_4 = "rrmroy:660F3AV4BrMs", - vblendvps_4 = "rrmroy:660F3AV4ArMs", - vbroadcastf128_2 = "rx/yo:660F38u1ArM", - vcmppd_4 = "rrmioy:660FVC2rMU", - vcmpps_4 = "rrmioy:0FVC2rMU", - vcmpsd_4 = "rrrio:F20FVC2rMU|rrxi/ooq:", - vcmpss_4 = "rrrio:F30FVC2rMU|rrxi/ood:", - vcomisd_2 = "rro:660Fu2FrM|rx/oq:", - vcomiss_2 = "rro:0Fu2FrM|rx/od:", - vcvtdq2pd_2 = "rro:F30FuE6rM|rx/oq:|rm/yo:", - vcvtdq2ps_2 = "rmoy:0Fu5BrM", - vcvtpd2dq_2 = "rmoy:F20FuE6rM", - vcvtpd2ps_2 = "rmoy:660Fu5ArM", - vcvtps2dq_2 = "rmoy:660Fu5BrM", - vcvtps2pd_2 = "rro:0Fu5ArM|rx/oq:|rm/yo:", - vcvtsd2si_2 = "rr/do:F20Fu2DrM|rx/dq:|rr/qo:|rxq:", - vcvtsd2ss_3 = "rrro:F20FV5ArM|rrx/ooq:", - vcvtsi2sd_3 = "rrm/ood:F20FV2ArM|rrm/ooq:F20FVX2ArM", - vcvtsi2ss_3 = "rrm/ood:F30FV2ArM|rrm/ooq:F30FVX2ArM", - vcvtss2sd_3 = "rrro:F30FV5ArM|rrx/ood:", - vcvtss2si_2 = "rr/do:F30Fu2DrM|rxd:|rr/qo:|rx/qd:", - vcvttpd2dq_2 = "rmo:660FuE6rM|rm/oy:660FuLE6rM", - vcvttps2dq_2 = "rmoy:F30Fu5BrM", - vcvttsd2si_2 = "rr/do:F20Fu2CrM|rx/dq:|rr/qo:|rxq:", - vcvttss2si_2 = "rr/do:F30Fu2CrM|rxd:|rr/qo:|rx/qd:", - vdppd_4 = "rrmio:660F3AV41rMU", - vdpps_4 = "rrmioy:660F3AV40rMU", - vextractf128_3 = "mri/oy:660F3AuL19RmU", - vextractps_3 = "mri/do:660F3Au17RmU", - vhaddpd_3 = "rrmoy:660FV7CrM", - vhaddps_3 = "rrmoy:F20FV7CrM", - vhsubpd_3 = "rrmoy:660FV7DrM", - vhsubps_3 = "rrmoy:F20FV7DrM", - vinsertf128_4 = "rrmi/yyo:660F3AV18rMU", - vinsertps_4 = "rrrio:660F3AV21rMU|rrxi/ood:", - vldmxcsr_1 = "xd:0FuAE2m", - vmaskmovps_3 = "rrxoy:660F38V2CrM|xrroy:660F38V2ERm", - vmaskmovpd_3 = "rrxoy:660F38V2DrM|xrroy:660F38V2FRm", - vmovapd_2 = "rmoy:660Fu28rM|mroy:660Fu29Rm", - vmovaps_2 = "rmoy:0Fu28rM|mroy:0Fu29Rm", - vmovd_2 = "rm/od:660Fu6ErM|rm/oq:660FuX6ErM|mr/do:660Fu7ERm|mr/qo:", - vmovq_2 = "rro:F30Fu7ErM|rx/oq:|xr/qo:660FuD6Rm", - vmovddup_2 = "rmy:F20Fu12rM|rro:|rx/oq:", - vmovhlps_3 = "rrro:0FV12rM", - vmovhpd_2 = "xr/qo:660Fu17Rm", - vmovhpd_3 = "rrx/ooq:660FV16rM", - vmovhps_2 = "xr/qo:0Fu17Rm", - vmovhps_3 = "rrx/ooq:0FV16rM", - vmovlhps_3 = "rrro:0FV16rM", - vmovlpd_2 = "xr/qo:660Fu13Rm", - vmovlpd_3 = "rrx/ooq:660FV12rM", - vmovlps_2 = "xr/qo:0Fu13Rm", - vmovlps_3 = "rrx/ooq:0FV12rM", - vmovmskpd_2 = "rr/do:660Fu50rM|rr/dy:660FuL50rM", - vmovmskps_2 = "rr/do:0Fu50rM|rr/dy:0FuL50rM", - vmovntpd_2 = "xroy:660Fu2BRm", - vmovntps_2 = "xroy:0Fu2BRm", - vmovsd_2 = "rx/oq:F20Fu10rM|xr/qo:F20Fu11Rm", - vmovsd_3 = "rrro:F20FV10rM", - vmovshdup_2 = "rmoy:F30Fu16rM", - vmovsldup_2 = "rmoy:F30Fu12rM", - vmovss_2 = "rx/od:F30Fu10rM|xr/do:F30Fu11Rm", - vmovss_3 = "rrro:F30FV10rM", - vmovupd_2 = "rmoy:660Fu10rM|mroy:660Fu11Rm", - vmovups_2 = "rmoy:0Fu10rM|mroy:0Fu11Rm", - vorpd_3 = "rrmoy:660FV56rM", - vorps_3 = "rrmoy:0FV56rM", - vpermilpd_3 = "rrmoy:660F38V0DrM|rmioy:660F3Au05rMU", - vpermilps_3 = "rrmoy:660F38V0CrM|rmioy:660F3Au04rMU", - vperm2f128_4 = "rrmiy:660F3AV06rMU", - vptestpd_2 = "rmoy:660F38u0FrM", - vptestps_2 = "rmoy:660F38u0ErM", - vrcpps_2 = "rmoy:0Fu53rM", - vrcpss_3 = "rrro:F30FV53rM|rrx/ood:", - vrsqrtps_2 = "rmoy:0Fu52rM", - vrsqrtss_3 = "rrro:F30FV52rM|rrx/ood:", - vroundpd_3 = "rmioy:660F3AV09rMU", - vroundps_3 = "rmioy:660F3AV08rMU", - vroundsd_4 = "rrrio:660F3AV0BrMU|rrxi/ooq:", - vroundss_4 = "rrrio:660F3AV0ArMU|rrxi/ood:", - vshufpd_4 = "rrmioy:660FVC6rMU", - vshufps_4 = "rrmioy:0FVC6rMU", - vsqrtps_2 = "rmoy:0Fu51rM", - vsqrtss_2 = "rro:F30Fu51rM|rx/od:", - vsqrtpd_2 = "rmoy:660Fu51rM", - vsqrtsd_2 = "rro:F20Fu51rM|rx/oq:", - vstmxcsr_1 = "xd:0FuAE3m", - vucomisd_2 = "rro:660Fu2ErM|rx/oq:", - vucomiss_2 = "rro:0Fu2ErM|rx/od:", - vunpckhpd_3 = "rrmoy:660FV15rM", - vunpckhps_3 = "rrmoy:0FV15rM", - vunpcklpd_3 = "rrmoy:660FV14rM", - vunpcklps_3 = "rrmoy:0FV14rM", - vxorpd_3 = "rrmoy:660FV57rM", - vxorps_3 = "rrmoy:0FV57rM", - vzeroall_0 = "0FuL77", - vzeroupper_0 = "0Fu77", - - -- AVX2 FP ops - vbroadcastss_2 = "rx/od:660F38u18rM|rx/yd:|rro:|rr/yo:", - vbroadcastsd_2 = "rx/yq:660F38u19rM|rr/yo:", - -- *vgather* (!vsib) - vpermpd_3 = "rmiy:660F3AuX01rMU", - vpermps_3 = "rrmy:660F38V16rM", - - -- AVX, AVX2 integer ops - -- In general, xmm requires AVX, ymm requires AVX2. - vaesdec_3 = "rrmo:660F38VDErM", - vaesdeclast_3 = "rrmo:660F38VDFrM", - vaesenc_3 = "rrmo:660F38VDCrM", - vaesenclast_3 = "rrmo:660F38VDDrM", - vaesimc_2 = "rmo:660F38uDBrM", - vaeskeygenassist_3 = "rmio:660F3AuDFrMU", - vlddqu_2 = "rxoy:F20FuF0rM", - vmaskmovdqu_2 = "rro:660FuF7rM", - vmovdqa_2 = "rmoy:660Fu6FrM|mroy:660Fu7FRm", - vmovdqu_2 = "rmoy:F30Fu6FrM|mroy:F30Fu7FRm", - vmovntdq_2 = "xroy:660FuE7Rm", - vmovntdqa_2 = "rxoy:660F38u2ArM", - vmpsadbw_4 = "rrmioy:660F3AV42rMU", - vpabsb_2 = "rmoy:660F38u1CrM", - vpabsd_2 = "rmoy:660F38u1ErM", - vpabsw_2 = "rmoy:660F38u1DrM", - vpackusdw_3 = "rrmoy:660F38V2BrM", - vpalignr_4 = "rrmioy:660F3AV0FrMU", - vpblendvb_4 = "rrmroy:660F3AV4CrMs", - vpblendw_4 = "rrmioy:660F3AV0ErMU", - vpclmulqdq_4 = "rrmio:660F3AV44rMU", - vpcmpeqq_3 = "rrmoy:660F38V29rM", - vpcmpestri_3 = "rmio:660F3Au61rMU", - vpcmpestrm_3 = "rmio:660F3Au60rMU", - vpcmpgtq_3 = "rrmoy:660F38V37rM", - vpcmpistri_3 = "rmio:660F3Au63rMU", - vpcmpistrm_3 = "rmio:660F3Au62rMU", - vpextrb_3 = "rri/do:660F3Au14nRmU|rri/qo:|xri/bo:", - vpextrw_3 = "rri/do:660FuC5rMU|xri/wo:660F3Au15nRmU", - vpextrd_3 = "mri/do:660F3Au16RmU", - vpextrq_3 = "mri/qo:660F3Au16RmU", - vphaddw_3 = "rrmoy:660F38V01rM", - vphaddd_3 = "rrmoy:660F38V02rM", - vphaddsw_3 = "rrmoy:660F38V03rM", - vphminposuw_2 = "rmo:660F38u41rM", - vphsubw_3 = "rrmoy:660F38V05rM", - vphsubd_3 = "rrmoy:660F38V06rM", - vphsubsw_3 = "rrmoy:660F38V07rM", - vpinsrb_4 = "rrri/ood:660F3AV20rMU|rrxi/oob:", - vpinsrw_4 = "rrri/ood:660FVC4rMU|rrxi/oow:", - vpinsrd_4 = "rrmi/ood:660F3AV22rMU", - vpinsrq_4 = "rrmi/ooq:660F3AVX22rMU", - vpmaddubsw_3 = "rrmoy:660F38V04rM", - vpmaxsb_3 = "rrmoy:660F38V3CrM", - vpmaxsd_3 = "rrmoy:660F38V3DrM", - vpmaxuw_3 = "rrmoy:660F38V3ErM", - vpmaxud_3 = "rrmoy:660F38V3FrM", - vpminsb_3 = "rrmoy:660F38V38rM", - vpminsd_3 = "rrmoy:660F38V39rM", - vpminuw_3 = "rrmoy:660F38V3ArM", - vpminud_3 = "rrmoy:660F38V3BrM", - vpmovmskb_2 = "rr/do:660FuD7rM|rr/dy:660FuLD7rM", - vpmovsxbw_2 = "rroy:660F38u20rM|rx/oq:|rx/yo:", - vpmovsxbd_2 = "rroy:660F38u21rM|rx/od:|rx/yq:", - vpmovsxbq_2 = "rroy:660F38u22rM|rx/ow:|rx/yd:", - vpmovsxwd_2 = "rroy:660F38u23rM|rx/oq:|rx/yo:", - vpmovsxwq_2 = "rroy:660F38u24rM|rx/od:|rx/yq:", - vpmovsxdq_2 = "rroy:660F38u25rM|rx/oq:|rx/yo:", - vpmovzxbw_2 = "rroy:660F38u30rM|rx/oq:|rx/yo:", - vpmovzxbd_2 = "rroy:660F38u31rM|rx/od:|rx/yq:", - vpmovzxbq_2 = "rroy:660F38u32rM|rx/ow:|rx/yd:", - vpmovzxwd_2 = "rroy:660F38u33rM|rx/oq:|rx/yo:", - vpmovzxwq_2 = "rroy:660F38u34rM|rx/od:|rx/yq:", - vpmovzxdq_2 = "rroy:660F38u35rM|rx/oq:|rx/yo:", - vpmuldq_3 = "rrmoy:660F38V28rM", - vpmulhrsw_3 = "rrmoy:660F38V0BrM", - vpmulld_3 = "rrmoy:660F38V40rM", - vpshufb_3 = "rrmoy:660F38V00rM", - vpshufd_3 = "rmioy:660Fu70rMU", - vpshufhw_3 = "rmioy:F30Fu70rMU", - vpshuflw_3 = "rmioy:F20Fu70rMU", - vpsignb_3 = "rrmoy:660F38V08rM", - vpsignw_3 = "rrmoy:660F38V09rM", - vpsignd_3 = "rrmoy:660F38V0ArM", - vpslldq_3 = "rrioy:660Fv737mU", - vpsllw_3 = "rrmoy:660FVF1rM|rrioy:660Fv716mU", - vpslld_3 = "rrmoy:660FVF2rM|rrioy:660Fv726mU", - vpsllq_3 = "rrmoy:660FVF3rM|rrioy:660Fv736mU", - vpsraw_3 = "rrmoy:660FVE1rM|rrioy:660Fv714mU", - vpsrad_3 = "rrmoy:660FVE2rM|rrioy:660Fv724mU", - vpsrldq_3 = "rrioy:660Fv733mU", - vpsrlw_3 = "rrmoy:660FVD1rM|rrioy:660Fv712mU", - vpsrld_3 = "rrmoy:660FVD2rM|rrioy:660Fv722mU", - vpsrlq_3 = "rrmoy:660FVD3rM|rrioy:660Fv732mU", - vptest_2 = "rmoy:660F38u17rM", - - -- AVX2 integer ops - vbroadcasti128_2 = "rx/yo:660F38u5ArM", - vinserti128_4 = "rrmi/yyo:660F3AV38rMU", - vextracti128_3 = "mri/oy:660F3AuL39RmU", - vpblendd_4 = "rrmioy:660F3AV02rMU", - vpbroadcastb_2 = "rro:660F38u78rM|rx/ob:|rr/yo:|rx/yb:", - vpbroadcastw_2 = "rro:660F38u79rM|rx/ow:|rr/yo:|rx/yw:", - vpbroadcastd_2 = "rro:660F38u58rM|rx/od:|rr/yo:|rx/yd:", - vpbroadcastq_2 = "rro:660F38u59rM|rx/oq:|rr/yo:|rx/yq:", - vpermd_3 = "rrmy:660F38V36rM", - vpermq_3 = "rmiy:660F3AuX00rMU", - -- *vpgather* (!vsib) - vperm2i128_4 = "rrmiy:660F3AV46rMU", - vpmaskmovd_3 = "rrxoy:660F38V8CrM|xrroy:660F38V8ERm", - vpmaskmovq_3 = "rrxoy:660F38VX8CrM|xrroy:660F38VX8ERm", - vpsllvd_3 = "rrmoy:660F38V47rM", - vpsllvq_3 = "rrmoy:660F38VX47rM", - vpsravd_3 = "rrmoy:660F38V46rM", - vpsrlvd_3 = "rrmoy:660F38V45rM", - vpsrlvq_3 = "rrmoy:660F38VX45rM", - - -- Intel ADX - adcx_2 = "rmqd:660F38F6rM", - adox_2 = "rmqd:F30F38F6rM", -} - ------------------------------------------------------------------------------- - --- Arithmetic ops. -for name,n in pairs{ add = 0, ["or"] = 1, adc = 2, sbb = 3, - ["and"] = 4, sub = 5, xor = 6, cmp = 7 } do - local n8 = shl(n, 3) - map_op[name.."_2"] = format( - "mr:%02XRm|rm:%02XrM|mI1qdw:81%XmI|mS1qdw:83%XmS|Ri1qdwb:%02Xri|mi1qdwb:81%Xmi", - 1+n8, 3+n8, n, n, 5+n8, n) -end - --- Shift ops. -for name,n in pairs{ rol = 0, ror = 1, rcl = 2, rcr = 3, - shl = 4, shr = 5, sar = 7, sal = 4 } do - map_op[name.."_2"] = format("m1:D1%Xm|mC1qdwb:D3%Xm|mi:C1%XmU", n, n, n) -end - --- Conditional ops. -for cc,n in pairs(map_cc) do - map_op["j"..cc.."_1"] = format("J.:n0F8%XJ", n) -- short: 7%X - map_op["set"..cc.."_1"] = format("mb:n0F9%X2m", n) - map_op["cmov"..cc.."_2"] = format("rmqdw:0F4%XrM", n) -- P6+ -end - --- FP arithmetic ops. -for name,n in pairs{ add = 0, mul = 1, com = 2, comp = 3, - sub = 4, subr = 5, div = 6, divr = 7 } do - local nc = 0xc0 + shl(n, 3) - local nr = nc + (n < 4 and 0 or (n % 2 == 0 and 8 or -8)) - local fn = "f"..name - map_op[fn.."_1"] = format("ff:D8%02Xr|xd:D8%Xm|xq:nDC%Xm", nc, n, n) - if n == 2 or n == 3 then - map_op[fn.."_2"] = format("Fff:D8%02XR|Fx2d:D8%XM|Fx2q:nDC%XM", nc, n, n) - else - map_op[fn.."_2"] = format("Fff:D8%02XR|fFf:DC%02Xr|Fx2d:D8%XM|Fx2q:nDC%XM", nc, nr, n, n) - map_op[fn.."p_1"] = format("ff:DE%02Xr", nr) - map_op[fn.."p_2"] = format("fFf:DE%02Xr", nr) - end - map_op["fi"..name.."_1"] = format("xd:DA%Xm|xw:nDE%Xm", n, n) -end - --- FP conditional moves. -for cc,n in pairs{ b=0, e=1, be=2, u=3, nb=4, ne=5, nbe=6, nu=7 } do - local nc = 0xdac0 + shl(band(n, 3), 3) + shl(band(n, 4), 6) - map_op["fcmov"..cc.."_1"] = format("ff:%04Xr", nc) -- P6+ - map_op["fcmov"..cc.."_2"] = format("Fff:%04XR", nc) -- P6+ -end - --- SSE / AVX FP arithmetic ops. -for name,n in pairs{ sqrt = 1, add = 8, mul = 9, - sub = 12, min = 13, div = 14, max = 15 } do - map_op[name.."ps_2"] = format("rmo:0F5%XrM", n) - map_op[name.."ss_2"] = format("rro:F30F5%XrM|rx/od:", n) - map_op[name.."pd_2"] = format("rmo:660F5%XrM", n) - map_op[name.."sd_2"] = format("rro:F20F5%XrM|rx/oq:", n) - if n ~= 1 then - map_op["v"..name.."ps_3"] = format("rrmoy:0FV5%XrM", n) - map_op["v"..name.."ss_3"] = format("rrro:F30FV5%XrM|rrx/ood:", n) - map_op["v"..name.."pd_3"] = format("rrmoy:660FV5%XrM", n) - map_op["v"..name.."sd_3"] = format("rrro:F20FV5%XrM|rrx/ooq:", n) - end -end - --- SSE2 / AVX / AVX2 integer arithmetic ops (66 0F leaf). -for name,n in pairs{ - paddb = 0xFC, paddw = 0xFD, paddd = 0xFE, paddq = 0xD4, - paddsb = 0xEC, paddsw = 0xED, packssdw = 0x6B, - packsswb = 0x63, packuswb = 0x67, paddusb = 0xDC, - paddusw = 0xDD, pand = 0xDB, pandn = 0xDF, pavgb = 0xE0, - pavgw = 0xE3, pcmpeqb = 0x74, pcmpeqd = 0x76, - pcmpeqw = 0x75, pcmpgtb = 0x64, pcmpgtd = 0x66, - pcmpgtw = 0x65, pmaddwd = 0xF5, pmaxsw = 0xEE, - pmaxub = 0xDE, pminsw = 0xEA, pminub = 0xDA, - pmulhuw = 0xE4, pmulhw = 0xE5, pmullw = 0xD5, - pmuludq = 0xF4, por = 0xEB, psadbw = 0xF6, psubb = 0xF8, - psubw = 0xF9, psubd = 0xFA, psubq = 0xFB, psubsb = 0xE8, - psubsw = 0xE9, psubusb = 0xD8, psubusw = 0xD9, - punpckhbw = 0x68, punpckhwd = 0x69, punpckhdq = 0x6A, - punpckhqdq = 0x6D, punpcklbw = 0x60, punpcklwd = 0x61, - punpckldq = 0x62, punpcklqdq = 0x6C, pxor = 0xEF -} do - map_op[name.."_2"] = format("rmo:660F%02XrM", n) - map_op["v"..name.."_3"] = format("rrmoy:660FV%02XrM", n) -end - ------------------------------------------------------------------------------- - -local map_vexarg = { u = false, v = 1, V = 2 } - --- Process pattern string. -local function dopattern(pat, args, sz, op, needrex) - local digit, addin, vex - local opcode = 0 - local szov = sz - local narg = 1 - local rex = 0 - - -- Limit number of section buffer positions used by a single dasm_put(). - -- A single opcode needs a maximum of 6 positions. - if secpos+6 > maxsecpos then wflush() end - - -- Process each character. - for c in gmatch(pat.."|", ".") do - if match(c, "%x") then -- Hex digit. - digit = byte(c) - 48 - if digit > 48 then digit = digit - 39 - elseif digit > 16 then digit = digit - 7 end - opcode = opcode*16 + digit - addin = nil - elseif c == "n" then -- Disable operand size mods for opcode. - szov = nil - elseif c == "X" then -- Force REX.W. - rex = 8 - elseif c == "L" then -- Force VEX.L. - vex.l = true - elseif c == "r" then -- Merge 1st operand regno. into opcode. - addin = args[1]; opcode = opcode + (addin.reg % 8) - if narg < 2 then narg = 2 end - elseif c == "R" then -- Merge 2nd operand regno. into opcode. - addin = args[2]; opcode = opcode + (addin.reg % 8) - narg = 3 - elseif c == "m" or c == "M" then -- Encode ModRM/SIB. - local s - if addin then - s = addin.reg - opcode = opcode - band(s, 7) -- Undo regno opcode merge. - else - s = band(opcode, 15) -- Undo last digit. - opcode = shr(opcode, 4) - end - local nn = c == "m" and 1 or 2 - local t = args[nn] - if narg <= nn then narg = nn + 1 end - if szov == "q" and rex == 0 then rex = rex + 8 end - if t.reg and t.reg > 7 then rex = rex + 1 end - if t.xreg and t.xreg > 7 then rex = rex + 2 end - if s > 7 then rex = rex + 4 end - if needrex then rex = rex + 16 end - local psz, sk = wputop(szov, opcode, rex, vex, s < 0, t.vreg or t.vxreg) - opcode = nil - local imark = sub(pat, -1) -- Force a mark (ugly). - -- Put ModRM/SIB with regno/last digit as spare. - wputmrmsib(t, imark, s, addin and addin.vreg, psz, sk) - addin = nil - elseif map_vexarg[c] ~= nil then -- Encode using VEX prefix - local b = band(opcode, 255); opcode = shr(opcode, 8) - local m = 1 - if b == 0x38 then m = 2 - elseif b == 0x3a then m = 3 end - if m ~= 1 then b = band(opcode, 255); opcode = shr(opcode, 8) end - if b ~= 0x0f then - werror("expected `0F', `0F38', or `0F3A' to precede `"..c.. - "' in pattern `"..pat.."' for `"..op.."'") - end - local v = map_vexarg[c] - if v then v = remove(args, v) end - b = band(opcode, 255) - local p = 0 - if b == 0x66 then p = 1 - elseif b == 0xf3 then p = 2 - elseif b == 0xf2 then p = 3 end - if p ~= 0 then opcode = shr(opcode, 8) end - if opcode ~= 0 then wputop(nil, opcode, 0); opcode = 0 end - vex = { m = m, p = p, v = v } - else - if opcode then -- Flush opcode. - if szov == "q" and rex == 0 then rex = rex + 8 end - if needrex then rex = rex + 16 end - if addin and addin.reg == -1 then - local psz, sk = wputop(szov, opcode - 7, rex, vex, true) - wvreg("opcode", addin.vreg, psz, sk) - else - if addin and addin.reg > 7 then rex = rex + 1 end - wputop(szov, opcode, rex, vex) - end - opcode = nil - end - if c == "|" then break end - if c == "o" then -- Offset (pure 32 bit displacement). - wputdarg(args[1].disp); if narg < 2 then narg = 2 end - elseif c == "O" then - wputdarg(args[2].disp); narg = 3 - else - -- Anything else is an immediate operand. - local a = args[narg] - narg = narg + 1 - local mode, imm = a.mode, a.imm - if mode == "iJ" and not match("iIJ", c) then - werror("bad operand size for label") - end - if c == "S" then - wputsbarg(imm) - elseif c == "U" then - wputbarg(imm) - elseif c == "W" then - wputwarg(imm) - elseif c == "i" or c == "I" then - if mode == "iJ" then - wputlabel("IMM_", imm, 1) - elseif mode == "iI" and c == "I" then - waction(sz == "w" and "IMM_WB" or "IMM_DB", imm) - else - wputszarg(sz, imm) - end - elseif c == "J" then - if mode == "iPJ" then - waction("REL_A", imm) -- !x64 (secpos) - else - wputlabel("REL_", imm, 2) - end - elseif c == "s" then - local reg = a.reg - if reg < 0 then - wputb(0) - wvreg("imm.hi", a.vreg) - else - wputb(shl(reg, 4)) - end - else - werror("bad char `"..c.."' in pattern `"..pat.."' for `"..op.."'") - end - end - end - end -end - ------------------------------------------------------------------------------- - --- Mapping of operand modes to short names. Suppress output with '#'. -local map_modename = { - r = "reg", R = "eax", C = "cl", x = "mem", m = "mrm", i = "imm", - f = "stx", F = "st0", J = "lbl", ["1"] = "1", - I = "#", S = "#", O = "#", -} - --- Return a table/string showing all possible operand modes. -local function templatehelp(template, nparams) - if nparams == 0 then return "" end - local t = {} - for tm in gmatch(template, "[^%|]+") do - local s = map_modename[sub(tm, 1, 1)] - s = s..gsub(sub(tm, 2, nparams), ".", function(c) - return ", "..map_modename[c] - end) - if not match(s, "#") then t[#t+1] = s end - end - return t -end - --- Match operand modes against mode match part of template. -local function matchtm(tm, args) - for i=1,#args do - if not match(args[i].mode, sub(tm, i, i)) then return end - end - return true -end - --- Handle opcodes defined with template strings. -map_op[".template__"] = function(params, template, nparams) - if not params then return templatehelp(template, nparams) end - local args = {} - - -- Zero-operand opcodes have no match part. - if #params == 0 then - dopattern(template, args, "d", params.op, nil) - return - end - - -- Determine common operand size (coerce undefined size) or flag as mixed. - local sz, szmix, needrex - for i,p in ipairs(params) do - args[i] = parseoperand(p) - local nsz = args[i].opsize - if nsz then - if sz and sz ~= nsz then szmix = true else sz = nsz end - end - local nrex = args[i].needrex - if nrex ~= nil then - if needrex == nil then - needrex = nrex - elseif needrex ~= nrex then - werror("bad mix of byte-addressable registers") - end - end - end - - -- Try all match:pattern pairs (separated by '|'). - local gotmatch, lastpat - for tm in gmatch(template, "[^%|]+") do - -- Split off size match (starts after mode match) and pattern string. - local szm, pat = match(tm, "^(.-):(.*)$", #args+1) - if pat == "" then pat = lastpat else lastpat = pat end - if matchtm(tm, args) then - local prefix = sub(szm, 1, 1) - if prefix == "/" then -- Exactly match leading operand sizes. - for i = #szm,1,-1 do - if i == 1 then - dopattern(pat, args, sz, params.op, needrex) -- Process pattern. - return - elseif args[i-1].opsize ~= sub(szm, i, i) then - break - end - end - else -- Match common operand size. - local szp = sz - if szm == "" then szm = x64 and "qdwb" or "dwb" end -- Default sizes. - if prefix == "1" then szp = args[1].opsize; szmix = nil - elseif prefix == "2" then szp = args[2].opsize; szmix = nil end - if not szmix and (prefix == "." or match(szm, szp or "#")) then - dopattern(pat, args, szp, params.op, needrex) -- Process pattern. - return - end - end - gotmatch = true - end - end - - local msg = "bad operand mode" - if gotmatch then - if szmix then - msg = "mixed operand size" - else - msg = sz and "bad operand size" or "missing operand size" - end - end - - werror(msg.." in `"..opmodestr(params.op, args).."'") -end - ------------------------------------------------------------------------------- - --- x64-specific opcode for 64 bit immediates and displacements. -if x64 then - function map_op.mov64_2(params) - if not params then return { "reg, imm", "reg, [disp]", "[disp], reg" } end - if secpos+2 > maxsecpos then wflush() end - local opcode, op64, sz, rex, vreg - local op64 = match(params[1], "^%[%s*(.-)%s*%]$") - if op64 then - local a = parseoperand(params[2]) - if a.mode ~= "rmR" then werror("bad operand mode") end - sz = a.opsize - rex = sz == "q" and 8 or 0 - opcode = 0xa3 - else - op64 = match(params[2], "^%[%s*(.-)%s*%]$") - local a = parseoperand(params[1]) - if op64 then - if a.mode ~= "rmR" then werror("bad operand mode") end - sz = a.opsize - rex = sz == "q" and 8 or 0 - opcode = 0xa1 - else - if sub(a.mode, 1, 1) ~= "r" or a.opsize ~= "q" then - werror("bad operand mode") - end - op64 = params[2] - if a.reg == -1 then - vreg = a.vreg - opcode = 0xb8 - else - opcode = 0xb8 + band(a.reg, 7) - end - rex = a.reg > 7 and 9 or 8 - end - end - local psz, sk = wputop(sz, opcode, rex, nil, vreg) - wvreg("opcode", vreg, psz, sk) - waction("IMM_D", format("(unsigned int)(%s)", op64)) - waction("IMM_D", format("(unsigned int)((%s)>>32)", op64)) - end -end - ------------------------------------------------------------------------------- - --- Pseudo-opcodes for data storage. -local function op_data(params) - if not params then return "imm..." end - local sz = sub(params.op, 2, 2) - if sz == "a" then sz = addrsize end - for _,p in ipairs(params) do - local a = parseoperand(p) - if sub(a.mode, 1, 1) ~= "i" or (a.opsize and a.opsize ~= sz) then - werror("bad mode or size in `"..p.."'") - end - if a.mode == "iJ" then - wputlabel("IMM_", a.imm, 1) - else - wputszarg(sz, a.imm) - end - if secpos+2 > maxsecpos then wflush() end - end -end - -map_op[".byte_*"] = op_data -map_op[".sbyte_*"] = op_data -map_op[".word_*"] = op_data -map_op[".dword_*"] = op_data -map_op[".aword_*"] = op_data - ------------------------------------------------------------------------------- - --- Pseudo-opcode to mark the position where the action list is to be emitted. -map_op[".actionlist_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeactions(out, name) end) -end - --- Pseudo-opcode to mark the position where the global enum is to be emitted. -map_op[".globals_1"] = function(params) - if not params then return "prefix" end - local prefix = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobals(out, prefix) end) -end - --- Pseudo-opcode to mark the position where the global names are to be emitted. -map_op[".globalnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeglobalnames(out, name) end) -end - --- Pseudo-opcode to mark the position where the extern names are to be emitted. -map_op[".externnames_1"] = function(params) - if not params then return "cvar" end - local name = params[1] -- No syntax check. You get to keep the pieces. - wline(function(out) writeexternnames(out, name) end) -end - ------------------------------------------------------------------------------- - --- Label pseudo-opcode (converted from trailing colon form). -map_op[".label_2"] = function(params) - if not params then return "[1-9] | ->global | =>pcexpr [, addr]" end - if secpos+2 > maxsecpos then wflush() end - local a = parseoperand(params[1]) - local mode, imm = a.mode, a.imm - if type(imm) == "number" and (mode == "iJ" or (imm >= 1 and imm <= 9)) then - -- Local label (1: ... 9:) or global label (->global:). - waction("LABEL_LG", nil, 1) - wputxb(imm) - elseif mode == "iJ" then - -- PC label (=>pcexpr:). - waction("LABEL_PC", imm) - else - werror("bad label definition") - end - -- SETLABEL must immediately follow LABEL_LG/LABEL_PC. - local addr = params[2] - if addr then - local a = parseoperand(addr) - if a.mode == "iPJ" then - waction("SETLABEL", a.imm) - else - werror("bad label assignment") - end - end -end -map_op[".label_1"] = map_op[".label_2"] - ------------------------------------------------------------------------------- - --- Alignment pseudo-opcode. -map_op[".align_1"] = function(params) - if not params then return "numpow2" end - if secpos+1 > maxsecpos then wflush() end - local align = tonumber(params[1]) or map_opsizenum[map_opsize[params[1]]] - if align then - local x = align - -- Must be a power of 2 in the range (2 ... 256). - for i=1,8 do - x = x / 2 - if x == 1 then - waction("ALIGN", nil, 1) - wputxb(align-1) -- Action byte is 2**n-1. - return - end - end - end - werror("bad alignment") -end - --- Spacing pseudo-opcode. -map_op[".space_2"] = function(params) - if not params then return "num [, filler]" end - if secpos+1 > maxsecpos then wflush() end - waction("SPACE", params[1]) - local fill = params[2] - if fill then - fill = tonumber(fill) - if not fill or fill < 0 or fill > 255 then werror("bad filler") end - end - wputxb(fill or 0) -end -map_op[".space_1"] = map_op[".space_2"] - ------------------------------------------------------------------------------- - --- Pseudo-opcode for (primitive) type definitions (map to C types). -map_op[".type_3"] = function(params, nparams) - if not params then - return nparams == 2 and "name, ctype" or "name, ctype, reg" - end - local name, ctype, reg = params[1], params[2], params[3] - if not match(name, "^[%a_][%w_]*$") then - werror("bad type name `"..name.."'") - end - local tp = map_type[name] - if tp then - werror("duplicate type `"..name.."'") - end - if reg and not map_reg_valid_base[reg] then - werror("bad base register `"..(map_reg_rev[reg] or reg).."'") - end - -- Add #type to defines. A bit unclean to put it in map_archdef. - map_archdef["#"..name] = "sizeof("..ctype..")" - -- Add new type and emit shortcut define. - local num = ctypenum + 1 - map_type[name] = { - ctype = ctype, - ctypefmt = format("Dt%X(%%s)", num), - reg = reg, - } - wline(format("#define Dt%X(_V) (int)(ptrdiff_t)&(((%s *)0)_V)", num, ctype)) - ctypenum = num -end -map_op[".type_2"] = map_op[".type_3"] - --- Dump type definitions. -local function dumptypes(out, lvl) - local t = {} - for name in pairs(map_type) do t[#t+1] = name end - sort(t) - out:write("Type definitions:\n") - for _,name in ipairs(t) do - local tp = map_type[name] - local reg = tp.reg and map_reg_rev[tp.reg] or "" - out:write(format(" %-20s %-20s %s\n", name, tp.ctype, reg)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Set the current section. -function _M.section(num) - waction("SECTION") - wputxb(num) - wflush(true) -- SECTION is a terminal action. -end - ------------------------------------------------------------------------------- - --- Dump architecture description. -function _M.dumparch(out) - out:write(format("DynASM %s version %s, released %s\n\n", - _info.arch, _info.version, _info.release)) - dumpregs(out) - dumpactions(out) -end - --- Dump all user defined elements. -function _M.dumpdef(out, lvl) - dumptypes(out, lvl) - dumpglobals(out, lvl) - dumpexterns(out, lvl) -end - ------------------------------------------------------------------------------- - --- Pass callbacks from/to the DynASM core. -function _M.passcb(wl, we, wf, ww) - wline, werror, wfatal, wwarn = wl, we, wf, ww - return wflush -end - --- Setup the arch-specific module. -function _M.setup(arch, opt) - g_arch, g_opt = arch, opt -end - --- Merge the core maps and the arch-specific maps. -function _M.mergemaps(map_coreop, map_def) - setmetatable(map_op, { __index = map_coreop }) - setmetatable(map_def, { __index = map_archdef }) - return map_op, map_def -end - -return _M - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/dynasm/dynasm.lua b/vmbuilder/dynasm/dynasm.lua deleted file mode 100644 index 5ec21a7..0000000 --- a/vmbuilder/dynasm/dynasm.lua +++ /dev/null @@ -1,1094 +0,0 @@ ------------------------------------------------------------------------------- --- DynASM. A dynamic assembler for code generation engines. --- Originally designed and implemented for LuaJIT. --- --- Copyright (C) 2005-2017 Mike Pall. All rights reserved. --- See below for full copyright notice. ------------------------------------------------------------------------------- - --- Application information. -local _info = { - name = "DynASM", - description = "A dynamic assembler for code generation engines", - version = "1.4.0", - vernum = 10400, - release = "2015-10-18", - author = "Mike Pall", - url = "http://luajit.org/dynasm.html", - license = "MIT", - copyright = [[ -Copyright (C) 2005-2017 Mike Pall. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -[ MIT license: http://www.opensource.org/licenses/mit-license.php ] -]], -} - --- Cache library functions. -local type, pairs, ipairs = type, pairs, ipairs -local pcall, error, assert = pcall, error, assert -local _s = string -local sub, match, gmatch, gsub = _s.sub, _s.match, _s.gmatch, _s.gsub -local format, rep, upper = _s.format, _s.rep, _s.upper -local _t = table -local insert, remove, concat, sort = _t.insert, _t.remove, _t.concat, _t.sort -local exit = os.exit -local io = io -local stdin, stdout, stderr = io.stdin, io.stdout, io.stderr - ------------------------------------------------------------------------------- - --- Program options. -local g_opt = {} - --- Global state for current file. -local g_fname, g_curline, g_indent, g_lineno, g_synclineno, g_arch -local g_errcount = 0 - --- Write buffer for output file. -local g_wbuffer, g_capbuffer - ------------------------------------------------------------------------------- - --- Write an output line (or callback function) to the buffer. -local function wline(line, needindent) - local buf = g_capbuffer or g_wbuffer - buf[#buf+1] = needindent and g_indent..line or line - g_synclineno = g_synclineno + 1 -end - --- Write assembler line as a comment, if requestd. -local function wcomment(aline) - if g_opt.comment then - wline(g_opt.comment..aline..g_opt.endcomment, true) - end -end - --- Resync CPP line numbers. -local function wsync() - if g_synclineno ~= g_lineno and g_opt.cpp then - wline("#line "..g_lineno..' "'..g_fname..'"') - g_synclineno = g_lineno - end -end - --- Dummy action flush function. Replaced with arch-specific function later. -local function wflush(term) -end - --- Dump all buffered output lines. -local function wdumplines(out, buf) - for _,line in ipairs(buf) do - if type(line) == "string" then - assert(out:write(line, "\n")) - else - -- Special callback to dynamically insert lines after end of processing. - line(out) - end - end -end - ------------------------------------------------------------------------------- - --- Emit an error. Processing continues with next statement. -local function werror(msg) - error(format("%s:%s: error: %s:\n%s", g_fname, g_lineno, msg, g_curline), 0) -end - --- Emit a fatal error. Processing stops. -local function wfatal(msg) - g_errcount = "fatal" - werror(msg) -end - --- Print a warning. Processing continues. -local function wwarn(msg) - stderr:write(format("%s:%s: warning: %s:\n%s\n", - g_fname, g_lineno, msg, g_curline)) -end - --- Print caught error message. But suppress excessive errors. -local function wprinterr(...) - if type(g_errcount) == "number" then - -- Regular error. - g_errcount = g_errcount + 1 - if g_errcount < 21 then -- Seems to be a reasonable limit. - stderr:write(...) - elseif g_errcount == 21 then - stderr:write(g_fname, - ":*: warning: too many errors (suppressed further messages).\n") - end - else - -- Fatal error. - stderr:write(...) - return true -- Stop processing. - end -end - ------------------------------------------------------------------------------- - --- Map holding all option handlers. -local opt_map = {} -local opt_current - --- Print error and exit with error status. -local function opterror(...) - stderr:write("dynasm.lua: ERROR: ", ...) - stderr:write("\n") - exit(1) -end - --- Get option parameter. -local function optparam(args) - local argn = args.argn - local p = args[argn] - if not p then - opterror("missing parameter for option `", opt_current, "'.") - end - args.argn = argn + 1 - return p -end - ------------------------------------------------------------------------------- - --- Core pseudo-opcodes. -local map_coreop = {} --- Dummy opcode map. Replaced by arch-specific map. -local map_op = {} - --- Forward declarations. -local dostmt -local readfile - ------------------------------------------------------------------------------- - --- Map for defines (initially empty, chains to arch-specific map). -local map_def = {} - --- Pseudo-opcode to define a substitution. -map_coreop[".define_2"] = function(params, nparams) - if not params then return nparams == 1 and "name" or "name, subst" end - local name, def = params[1], params[2] or "1" - if not match(name, "^[%a_][%w_]*$") then werror("bad or duplicate define") end - map_def[name] = def -end -map_coreop[".define_1"] = map_coreop[".define_2"] - --- Define a substitution on the command line. -function opt_map.D(args) - local namesubst = optparam(args) - local name, subst = match(namesubst, "^([%a_][%w_]*)=(.*)$") - if name then - map_def[name] = subst - elseif match(namesubst, "^[%a_][%w_]*$") then - map_def[namesubst] = "1" - else - opterror("bad define") - end -end - --- Undefine a substitution on the command line. -function opt_map.U(args) - local name = optparam(args) - if match(name, "^[%a_][%w_]*$") then - map_def[name] = nil - else - opterror("bad define") - end -end - --- Helper for definesubst. -local gotsubst - -local function definesubst_one(word) - local subst = map_def[word] - if subst then gotsubst = word; return subst else return word end -end - --- Iteratively substitute defines. -local function definesubst(stmt) - -- Limit number of iterations. - for i=1,100 do - gotsubst = false - stmt = gsub(stmt, "#?[%w_]+", definesubst_one) - if not gotsubst then break end - end - if gotsubst then wfatal("recursive define involving `"..gotsubst.."'") end - return stmt -end - --- Dump all defines. -local function dumpdefines(out, lvl) - local t = {} - for name in pairs(map_def) do - t[#t+1] = name - end - sort(t) - out:write("Defines:\n") - for _,name in ipairs(t) do - local subst = map_def[name] - if g_arch then subst = g_arch.revdef(subst) end - out:write(format(" %-20s %s\n", name, subst)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Support variables for conditional assembly. -local condlevel = 0 -local condstack = {} - --- Evaluate condition with a Lua expression. Substitutions already performed. -local function cond_eval(cond) - local func, err - if setfenv then - func, err = loadstring("return "..cond, "=expr") - else - -- No globals. All unknown identifiers evaluate to nil. - func, err = load("return "..cond, "=expr", "t", {}) - end - if func then - if setfenv then - setfenv(func, {}) -- No globals. All unknown identifiers evaluate to nil. - end - local ok, res = pcall(func) - if ok then - if res == 0 then return false end -- Oh well. - return not not res - end - err = res - end - wfatal("bad condition: "..err) -end - --- Skip statements until next conditional pseudo-opcode at the same level. -local function stmtskip() - local dostmt_save = dostmt - local lvl = 0 - dostmt = function(stmt) - local op = match(stmt, "^%s*(%S+)") - if op == ".if" then - lvl = lvl + 1 - elseif lvl ~= 0 then - if op == ".endif" then lvl = lvl - 1 end - elseif op == ".elif" or op == ".else" or op == ".endif" then - dostmt = dostmt_save - dostmt(stmt) - end - end -end - --- Pseudo-opcodes for conditional assembly. -map_coreop[".if_1"] = function(params) - if not params then return "condition" end - local lvl = condlevel + 1 - local res = cond_eval(params[1]) - condlevel = lvl - condstack[lvl] = res - if not res then stmtskip() end -end - -map_coreop[".elif_1"] = function(params) - if not params then return "condition" end - if condlevel == 0 then wfatal(".elif without .if") end - local lvl = condlevel - local res = condstack[lvl] - if res then - if res == "else" then wfatal(".elif after .else") end - else - res = cond_eval(params[1]) - if res then - condstack[lvl] = res - return - end - end - stmtskip() -end - -map_coreop[".else_0"] = function(params) - if condlevel == 0 then wfatal(".else without .if") end - local lvl = condlevel - local res = condstack[lvl] - condstack[lvl] = "else" - if res then - if res == "else" then wfatal(".else after .else") end - stmtskip() - end -end - -map_coreop[".endif_0"] = function(params) - local lvl = condlevel - if lvl == 0 then wfatal(".endif without .if") end - condlevel = lvl - 1 -end - --- Check for unfinished conditionals. -local function checkconds() - if g_errcount ~= "fatal" and condlevel ~= 0 then - wprinterr(g_fname, ":*: error: unbalanced conditional\n") - end -end - ------------------------------------------------------------------------------- - --- Search for a file in the given path and open it for reading. -local function pathopen(path, name) - local dirsep = package and match(package.path, "\\") and "\\" or "/" - for _,p in ipairs(path) do - local fullname = p == "" and name or p..dirsep..name - local fin = io.open(fullname, "r") - if fin then - g_fname = fullname - return fin - end - end -end - --- Include a file. -map_coreop[".include_1"] = function(params) - if not params then return "filename" end - local name = params[1] - -- Save state. Ugly, I know. but upvalues are fast. - local gf, gl, gcl, gi = g_fname, g_lineno, g_curline, g_indent - -- Read the included file. - local fatal = readfile(pathopen(g_opt.include, name) or - wfatal("include file `"..name.."' not found")) - -- Restore state. - g_synclineno = -1 - g_fname, g_lineno, g_curline, g_indent = gf, gl, gcl, gi - if fatal then wfatal("in include file") end -end - --- Make .include and conditionals initially available, too. -map_op[".include_1"] = map_coreop[".include_1"] -map_op[".if_1"] = map_coreop[".if_1"] -map_op[".elif_1"] = map_coreop[".elif_1"] -map_op[".else_0"] = map_coreop[".else_0"] -map_op[".endif_0"] = map_coreop[".endif_0"] - ------------------------------------------------------------------------------- - --- Support variables for macros. -local mac_capture, mac_lineno, mac_name -local mac_active = {} -local mac_list = {} - --- Pseudo-opcode to define a macro. -map_coreop[".macro_*"] = function(mparams) - if not mparams then return "name [, params...]" end - -- Split off and validate macro name. - local name = remove(mparams, 1) - if not name then werror("missing macro name") end - if not (match(name, "^[%a_][%w_%.]*$") or match(name, "^%.[%w_%.]*$")) then - wfatal("bad macro name `"..name.."'") - end - -- Validate macro parameter names. - local mdup = {} - for _,mp in ipairs(mparams) do - if not match(mp, "^[%a_][%w_]*$") then - wfatal("bad macro parameter name `"..mp.."'") - end - if mdup[mp] then wfatal("duplicate macro parameter name `"..mp.."'") end - mdup[mp] = true - end - -- Check for duplicate or recursive macro definitions. - local opname = name.."_"..#mparams - if map_op[opname] or map_op[name.."_*"] then - wfatal("duplicate macro `"..name.."' ("..#mparams.." parameters)") - end - if mac_capture then wfatal("recursive macro definition") end - - -- Enable statement capture. - local lines = {} - mac_lineno = g_lineno - mac_name = name - mac_capture = function(stmt) -- Statement capture function. - -- Stop macro definition with .endmacro pseudo-opcode. - if not match(stmt, "^%s*.endmacro%s*$") then - lines[#lines+1] = stmt - return - end - mac_capture = nil - mac_lineno = nil - mac_name = nil - mac_list[#mac_list+1] = opname - -- Add macro-op definition. - map_op[opname] = function(params) - if not params then return mparams, lines end - -- Protect against recursive macro invocation. - if mac_active[opname] then wfatal("recursive macro invocation") end - mac_active[opname] = true - -- Setup substitution map. - local subst = {} - for i,mp in ipairs(mparams) do subst[mp] = params[i] end - local mcom - if g_opt.maccomment and g_opt.comment then - mcom = " MACRO "..name.." ("..#mparams..")" - wcomment("{"..mcom) - end - -- Loop through all captured statements - for _,stmt in ipairs(lines) do - -- Substitute macro parameters. - local st = gsub(stmt, "[%w_]+", subst) - st = definesubst(st) - st = gsub(st, "%s*%.%.%s*", "") -- Token paste a..b. - if mcom and sub(st, 1, 1) ~= "|" then wcomment(st) end - -- Emit statement. Use a protected call for better diagnostics. - local ok, err = pcall(dostmt, st) - if not ok then - -- Add the captured statement to the error. - wprinterr(err, "\n", g_indent, "| ", stmt, - "\t[MACRO ", name, " (", #mparams, ")]\n") - end - end - if mcom then wcomment("}"..mcom) end - mac_active[opname] = nil - end - end -end - --- An .endmacro pseudo-opcode outside of a macro definition is an error. -map_coreop[".endmacro_0"] = function(params) - wfatal(".endmacro without .macro") -end - --- Dump all macros and their contents (with -PP only). -local function dumpmacros(out, lvl) - sort(mac_list) - out:write("Macros:\n") - for _,opname in ipairs(mac_list) do - local name = sub(opname, 1, -3) - local params, lines = map_op[opname]() - out:write(format(" %-20s %s\n", name, concat(params, ", "))) - if lvl > 1 then - for _,line in ipairs(lines) do - out:write(" |", line, "\n") - end - out:write("\n") - end - end - out:write("\n") -end - --- Check for unfinished macro definitions. -local function checkmacros() - if mac_capture then - wprinterr(g_fname, ":", mac_lineno, - ": error: unfinished .macro `", mac_name ,"'\n") - end -end - ------------------------------------------------------------------------------- - --- Support variables for captures. -local cap_lineno, cap_name -local cap_buffers = {} -local cap_used = {} - --- Start a capture. -map_coreop[".capture_1"] = function(params) - if not params then return "name" end - wflush() - local name = params[1] - if not match(name, "^[%a_][%w_]*$") then - wfatal("bad capture name `"..name.."'") - end - if cap_name then - wfatal("already capturing to `"..cap_name.."' since line "..cap_lineno) - end - cap_name = name - cap_lineno = g_lineno - -- Create or continue a capture buffer and start the output line capture. - local buf = cap_buffers[name] - if not buf then buf = {}; cap_buffers[name] = buf end - g_capbuffer = buf - g_synclineno = 0 -end - --- Stop a capture. -map_coreop[".endcapture_0"] = function(params) - wflush() - if not cap_name then wfatal(".endcapture without a valid .capture") end - cap_name = nil - cap_lineno = nil - g_capbuffer = nil - g_synclineno = 0 -end - --- Dump a capture buffer. -map_coreop[".dumpcapture_1"] = function(params) - if not params then return "name" end - wflush() - local name = params[1] - if not match(name, "^[%a_][%w_]*$") then - wfatal("bad capture name `"..name.."'") - end - cap_used[name] = true - wline(function(out) - local buf = cap_buffers[name] - if buf then wdumplines(out, buf) end - end) - g_synclineno = 0 -end - --- Dump all captures and their buffers (with -PP only). -local function dumpcaptures(out, lvl) - out:write("Captures:\n") - for name,buf in pairs(cap_buffers) do - out:write(format(" %-20s %4s)\n", name, "("..#buf)) - if lvl > 1 then - local bar = rep("=", 76) - out:write(" ", bar, "\n") - for _,line in ipairs(buf) do - out:write(" ", line, "\n") - end - out:write(" ", bar, "\n\n") - end - end - out:write("\n") -end - --- Check for unfinished or unused captures. -local function checkcaptures() - if cap_name then - wprinterr(g_fname, ":", cap_lineno, - ": error: unfinished .capture `", cap_name,"'\n") - return - end - for name in pairs(cap_buffers) do - if not cap_used[name] then - wprinterr(g_fname, ":*: error: missing .dumpcapture ", name ,"\n") - end - end -end - ------------------------------------------------------------------------------- - --- Sections names. -local map_sections = {} - --- Pseudo-opcode to define code sections. --- TODO: Data sections, BSS sections. Needs extra C code and API. -map_coreop[".section_*"] = function(params) - if not params then return "name..." end - if #map_sections > 0 then werror("duplicate section definition") end - wflush() - for sn,name in ipairs(params) do - local opname = "."..name.."_0" - if not match(name, "^[%a][%w_]*$") or - map_op[opname] or map_op["."..name.."_*"] then - werror("bad section name `"..name.."'") - end - map_sections[#map_sections+1] = name - wline(format("#define DASM_SECTION_%s\t%d", upper(name), sn-1)) - map_op[opname] = function(params) g_arch.section(sn-1) end - end - wline(format("#define DASM_MAXSECTION\t\t%d", #map_sections)) -end - --- Dump all sections. -local function dumpsections(out, lvl) - out:write("Sections:\n") - for _,name in ipairs(map_sections) do - out:write(format(" %s\n", name)) - end - out:write("\n") -end - ------------------------------------------------------------------------------- - --- Replacement for customized Lua, which lacks the package library. -local prefix = "" -if not require then - function require(name) - local fp = assert(io.open(prefix..name..".lua")) - local s = fp:read("*a") - assert(fp:close()) - return assert(loadstring(s, "@"..name..".lua"))() - end -end - --- Load architecture-specific module. -local function loadarch(arch) - if not match(arch, "^[%w_]+$") then return "bad arch name" end - local ok, m_arch = pcall(require, "dasm_"..arch) - if not ok then return "cannot load module: "..m_arch end - g_arch = m_arch - wflush = m_arch.passcb(wline, werror, wfatal, wwarn) - m_arch.setup(arch, g_opt) - map_op, map_def = m_arch.mergemaps(map_coreop, map_def) -end - --- Dump architecture description. -function opt_map.dumparch(args) - local name = optparam(args) - if not g_arch then - local err = loadarch(name) - if err then opterror(err) end - end - - local t = {} - for name in pairs(map_coreop) do t[#t+1] = name end - for name in pairs(map_op) do t[#t+1] = name end - sort(t) - - local out = stdout - local _arch = g_arch._info - out:write(format("%s version %s, released %s, %s\n", - _info.name, _info.version, _info.release, _info.url)) - g_arch.dumparch(out) - - local pseudo = true - out:write("Pseudo-Opcodes:\n") - for _,sname in ipairs(t) do - local name, nparam = match(sname, "^(.+)_([0-9%*])$") - if name then - if pseudo and sub(name, 1, 1) ~= "." then - out:write("\nOpcodes:\n") - pseudo = false - end - local f = map_op[sname] - local s - if nparam ~= "*" then nparam = nparam + 0 end - if nparam == 0 then - s = "" - elseif type(f) == "string" then - s = map_op[".template__"](nil, f, nparam) - else - s = f(nil, nparam) - end - if type(s) == "table" then - for _,s2 in ipairs(s) do - out:write(format(" %-12s %s\n", name, s2)) - end - else - out:write(format(" %-12s %s\n", name, s)) - end - end - end - out:write("\n") - exit(0) -end - --- Pseudo-opcode to set the architecture. --- Only initially available (map_op is replaced when called). -map_op[".arch_1"] = function(params) - if not params then return "name" end - local err = loadarch(params[1]) - if err then wfatal(err) end - wline(format("#if DASM_VERSION != %d", _info.vernum)) - wline('#error "Version mismatch between DynASM and included encoding engine"') - wline("#endif") -end - --- Dummy .arch pseudo-opcode to improve the error report. -map_coreop[".arch_1"] = function(params) - if not params then return "name" end - wfatal("duplicate .arch statement") -end - ------------------------------------------------------------------------------- - --- Dummy pseudo-opcode. Don't confuse '.nop' with 'nop'. -map_coreop[".nop_*"] = function(params) - if not params then return "[ignored...]" end -end - --- Pseudo-opcodes to raise errors. -map_coreop[".error_1"] = function(params) - if not params then return "message" end - werror(params[1]) -end - -map_coreop[".fatal_1"] = function(params) - if not params then return "message" end - wfatal(params[1]) -end - --- Dump all user defined elements. -local function dumpdef(out) - local lvl = g_opt.dumpdef - if lvl == 0 then return end - dumpsections(out, lvl) - dumpdefines(out, lvl) - if g_arch then g_arch.dumpdef(out, lvl) end - dumpmacros(out, lvl) - dumpcaptures(out, lvl) -end - ------------------------------------------------------------------------------- - --- Helper for splitstmt. -local splitlvl - -local function splitstmt_one(c) - if c == "(" then - splitlvl = ")"..splitlvl - elseif c == "[" then - splitlvl = "]"..splitlvl - elseif c == "{" then - splitlvl = "}"..splitlvl - elseif c == ")" or c == "]" or c == "}" then - if sub(splitlvl, 1, 1) ~= c then werror("unbalanced (), [] or {}") end - splitlvl = sub(splitlvl, 2) - elseif splitlvl == "" then - return " \0 " - end - return c -end - --- Split statement into (pseudo-)opcode and params. -local function splitstmt(stmt) - -- Convert label with trailing-colon into .label statement. - local label = match(stmt, "^%s*(.+):%s*$") - if label then return ".label", {label} end - - -- Split at commas and equal signs, but obey parentheses and brackets. - splitlvl = "" - stmt = gsub(stmt, "[,%(%)%[%]{}]", splitstmt_one) - if splitlvl ~= "" then werror("unbalanced () or []") end - - -- Split off opcode. - local op, other = match(stmt, "^%s*([^%s%z]+)%s*(.*)$") - if not op then werror("bad statement syntax") end - - -- Split parameters. - local params = {} - for p in gmatch(other, "%s*(%Z+)%z?") do - params[#params+1] = gsub(p, "%s+$", "") - end - if #params > 16 then werror("too many parameters") end - - params.op = op - return op, params -end - --- Process a single statement. -dostmt = function(stmt) - -- Ignore empty statements. - if match(stmt, "^%s*$") then return end - - -- Capture macro defs before substitution. - if mac_capture then return mac_capture(stmt) end - stmt = definesubst(stmt) - - -- Emit C code without parsing the line. - if sub(stmt, 1, 1) == "|" then - local tail = sub(stmt, 2) - wflush() - if sub(tail, 1, 2) == "//" then wcomment(tail) else wline(tail, true) end - return - end - - -- Split into (pseudo-)opcode and params. - local op, params = splitstmt(stmt) - - -- Get opcode handler (matching # of parameters or generic handler). - local f = map_op[op.."_"..#params] or map_op[op.."_*"] - if not f then - if not g_arch then wfatal("first statement must be .arch") end - -- Improve error report. - for i=0,9 do - if map_op[op.."_"..i] then - werror("wrong number of parameters for `"..op.."'") - end - end - werror("unknown statement `"..op.."'") - end - - -- Call opcode handler or special handler for template strings. - if type(f) == "string" then - map_op[".template__"](params, f) - else - f(params) - end -end - --- Process a single line. -local function doline(line) - if g_opt.flushline then wflush() end - - -- Assembler line? - local indent, aline = match(line, "^(%s*)%|(.*)$") - if not aline then - -- No, plain C code line, need to flush first. - wflush() - wsync() - wline(line, false) - return - end - - g_indent = indent -- Remember current line indentation. - - -- Emit C code (even from macros). Avoids echo and line parsing. - if sub(aline, 1, 1) == "|" then - if not mac_capture then - wsync() - elseif g_opt.comment then - wsync() - wcomment(aline) - end - dostmt(aline) - return - end - - -- Echo assembler line as a comment. - if g_opt.comment then - wsync() - wcomment(aline) - end - - -- Strip assembler comments. - aline = gsub(aline, "//.*$", "") - - -- Split line into statements at semicolons. - if match(aline, ";") then - for stmt in gmatch(aline, "[^;]+") do dostmt(stmt) end - else - dostmt(aline) - end -end - ------------------------------------------------------------------------------- - --- Write DynASM header. -local function dasmhead(out) - out:write(format([[ -/* -** This file has been pre-processed with DynASM. -** %s -** DynASM version %s, DynASM %s version %s -** DO NOT EDIT! The original file is in "%s". -*/ - -]], _info.url, - _info.version, g_arch._info.arch, g_arch._info.version, - g_fname)) -end - --- Read input file. -readfile = function(fin) - g_indent = "" - g_lineno = 0 - g_synclineno = -1 - - -- Process all lines. - for line in fin:lines() do - g_lineno = g_lineno + 1 - g_curline = line - local ok, err = pcall(doline, line) - if not ok and wprinterr(err, "\n") then return true end - end - wflush() - - -- Close input file. - assert(fin == stdin or fin:close()) -end - --- Write output file. -local function writefile(outfile) - local fout - - -- Open output file. - if outfile == nil or outfile == "-" then - fout = stdout - else - fout = assert(io.open(outfile, "w")) - end - - -- Write all buffered lines - wdumplines(fout, g_wbuffer) - - -- Close output file. - assert(fout == stdout or fout:close()) - - -- Optionally dump definitions. - dumpdef(fout == stdout and stderr or stdout) -end - --- Translate an input file to an output file. -local function translate(infile, outfile) - g_wbuffer = {} - g_indent = "" - g_lineno = 0 - g_synclineno = -1 - - -- Put header. - wline(dasmhead) - - -- Read input file. - local fin - if infile == "-" then - g_fname = "(stdin)" - fin = stdin - else - g_fname = infile - fin = assert(io.open(infile, "r")) - end - readfile(fin) - - -- Check for errors. - if not g_arch then - wprinterr(g_fname, ":*: error: missing .arch directive\n") - end - checkconds() - checkmacros() - checkcaptures() - - if g_errcount ~= 0 then - stderr:write(g_fname, ":*: info: ", g_errcount, " error", - (type(g_errcount) == "number" and g_errcount > 1) and "s" or "", - " in input file -- no output file generated.\n") - dumpdef(stderr) - exit(1) - end - - -- Write output file. - writefile(outfile) -end - ------------------------------------------------------------------------------- - --- Print help text. -function opt_map.help() - stdout:write("DynASM -- ", _info.description, ".\n") - stdout:write("DynASM ", _info.version, " ", _info.release, " ", _info.url, "\n") - stdout:write[[ - -Usage: dynasm [OPTION]... INFILE.dasc|- - - -h, --help Display this help text. - -V, --version Display version and copyright information. - - -o, --outfile FILE Output file name (default is stdout). - -I, --include DIR Add directory to the include search path. - - -c, --ccomment Use /* */ comments for assembler lines. - -C, --cppcomment Use // comments for assembler lines (default). - -N, --nocomment Suppress assembler lines in output. - -M, --maccomment Show macro expansions as comments (default off). - - -L, --nolineno Suppress CPP line number information in output. - -F, --flushline Flush action list for every line. - - -D NAME[=SUBST] Define a substitution. - -U NAME Undefine a substitution. - - -P, --dumpdef Dump defines, macros, etc. Repeat for more output. - -A, --dumparch ARCH Load architecture ARCH and dump description. -]] - exit(0) -end - --- Print version information. -function opt_map.version() - stdout:write(format("%s version %s, released %s\n%s\n\n%s", - _info.name, _info.version, _info.release, _info.url, _info.copyright)) - exit(0) -end - --- Misc. options. -function opt_map.outfile(args) g_opt.outfile = optparam(args) end -function opt_map.include(args) insert(g_opt.include, 1, optparam(args)) end -function opt_map.ccomment() g_opt.comment = "/*|"; g_opt.endcomment = " */" end -function opt_map.cppcomment() g_opt.comment = "//|"; g_opt.endcomment = "" end -function opt_map.nocomment() g_opt.comment = false end -function opt_map.maccomment() g_opt.maccomment = true end -function opt_map.nolineno() g_opt.cpp = false end -function opt_map.flushline() g_opt.flushline = true end -function opt_map.dumpdef() g_opt.dumpdef = g_opt.dumpdef + 1 end - ------------------------------------------------------------------------------- - --- Short aliases for long options. -local opt_alias = { - h = "help", ["?"] = "help", V = "version", - o = "outfile", I = "include", - c = "ccomment", C = "cppcomment", N = "nocomment", M = "maccomment", - L = "nolineno", F = "flushline", - P = "dumpdef", A = "dumparch", -} - --- Parse single option. -local function parseopt(opt, args) - opt_current = #opt == 1 and "-"..opt or "--"..opt - local f = opt_map[opt] or opt_map[opt_alias[opt]] - if not f then - opterror("unrecognized option `", opt_current, "'. Try `--help'.\n") - end - f(args) -end - --- Parse arguments. -local function parseargs(args) - -- Default options. - g_opt.comment = "//|" - g_opt.endcomment = "" - g_opt.cpp = true - g_opt.dumpdef = 0 - g_opt.include = { "" } - - -- Process all option arguments. - args.argn = 1 - repeat - local a = args[args.argn] - if not a then break end - local lopt, opt = match(a, "^%-(%-?)(.+)") - if not opt then break end - args.argn = args.argn + 1 - if lopt == "" then - -- Loop through short options. - for o in gmatch(opt, ".") do parseopt(o, args) end - else - -- Long option. - parseopt(opt, args) - end - until false - - -- Check for proper number of arguments. - local nargs = #args - args.argn + 1 - if nargs ~= 1 then - if nargs == 0 then - if g_opt.dumpdef > 0 then return dumpdef(stdout) end - end - opt_map.help() - end - - -- Translate a single input file to a single output file - -- TODO: Handle multiple files? - translate(args[args.argn], g_opt.outfile) -end - ------------------------------------------------------------------------------- - --- Add the directory dynasm.lua resides in to the Lua module search path. -local arg = arg -if arg and arg[0] then - prefix = match(arg[0], "^(.*[/\\])") - if package and prefix then package.path = prefix.."?.lua;"..package.path end -end - --- Start DynASM. -parseargs{...} - ------------------------------------------------------------------------------- - diff --git a/vmbuilder/src/CMakeLists.txt b/vmbuilder/src/CMakeLists.txt deleted file mode 100644 index 251fa66..0000000 --- a/vmbuilder/src/CMakeLists.txt +++ /dev/null @@ -1,67 +0,0 @@ -# This CMake script is based on the LuaJIT one created by: -# Copyright (C) 2007-2013 LuaDist. -# Created by Peter DrahoÅ¡ -# Redistribution and use of this file is allowed according to the terms of the MIT license. -# For details see the COPYRIGHT file distributed with LuaDist. -# Please note that the package source code is licensed under its own license. - -project ( vmbuilder C ) -cmake_minimum_required ( VERSION 2.8 ) - -set( RAVI_INCDIR ${CMAKE_CURRENT_SOURCE_DIR}/../../include ) -set( DASM_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../dynasm ) -set( BINDIR ${CMAKE_CURRENT_SOURCE_DIR}/../bin ) -set( SRCDIR ${CMAKE_CURRENT_SOURCE_DIR} ) - -# Dynasm -set ( DASM ${DASM_DIR}/dynasm.lua ) -set ( DASM_T ${CMAKE_CURRENT_SOURCE_DIR}/buildvm_arch.h ) -set ( DASM_DASC ${CMAKE_CURRENT_SOURCE_DIR}/vm_x64.dasc ) - -if ( APPLE ) - list ( APPEND LIBS m ) -elseif ( NOT WIN32 ) - list ( APPEND LIBS m ) -endif () - -if (MSVC) - add_definitions(-D_CRT_SECURE_NO_WARNINGS) -endif() - -# Build minilua -add_executable ( minilua minilua.c ) -target_link_libraries ( minilua ${LIBS} ) - -include_directories(${RAVI_INCDIR}) -include_directories(${DASM_DIR}) - -# Windows is ... special -if ( WIN32 ) - list ( APPEND DASM_FLAGS -D WIN ) -endif () - -list ( APPEND DASM_FLAGS -D P64 ) - -# Generate buildvm arch header -add_custom_command(OUTPUT ${DASM_T} - COMMAND minilua ${DASM} -MF ${DASM_FLAGS} -o ${DASM_T} ${DASM_DASC} - DEPENDS minilua ${DASM_DASC} -) - -set(HEADERS - ${RAVI_INCDIR}/ravi_arch.h - ${RAVI_INCDIR}/ravi_def.h - ${DASM_DIR}/dasm_proto.h - ${DASM_DIR}/dasm_x86.h) - -set(SRCS - ${SRCDIR}/buildvm.c - ${SRCDIR}/buildvm_asm.c - ${SRCDIR}/buildvm_peobj.c - ) - -# Buildvm -add_executable ( buildvm ${SRCS} ${HEADERS} ${DASM_T} ) - -install( TARGETS buildvm - DESTINATION ${BINDIR} ) \ No newline at end of file diff --git a/vmbuilder/src/buildvm.c b/vmbuilder/src/buildvm.c deleted file mode 100644 index 1267476..0000000 --- a/vmbuilder/src/buildvm.c +++ /dev/null @@ -1,550 +0,0 @@ -/* -** LuaJIT VM builder. -** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h -** -** This is a tool to build the hand-tuned assembler code required for -** LuaJIT's bytecode interpreter. It supports a variety of output formats -** to feed different toolchains (see usage() below). -** -** This tool is not particularly optimized because it's only used while -** _building_ LuaJIT. There's no point in distributing or installing it. -** Only the object code generated by this tool is linked into LuaJIT. -** -** Caveat: some memory is not free'd, error handling is lazy. -** It's a one-shot tool -- any effort fixing this would be wasted. -*/ - -#define LUA_CORE - -#include "lprefix.h" - -#include -#include -#include -#include -#include -#include - -#include "lua.h" - -#include "ldebug.h" -#include "ldo.h" -#include "lfunc.h" -#include "lgc.h" -#include "lobject.h" -#include "lopcodes.h" -#include "lstate.h" -#include "lstring.h" -#include "ltable.h" -#include "ltm.h" -#include "lvm.h" -#include "ravi_profile.h" - -#include "buildvm.h" - -#if defined(_WIN32) -#include -#include -#endif - -/* ------------------------------------------------------------------------ */ - -/* DynASM glue definitions. */ -#define Dst ctx -#define Dst_DECL BuildCtx *ctx -#define Dst_REF (ctx->D) -#define DASM_CHECKS 1 - -#include "../dynasm/dasm_proto.h" - -/* Glue macros for DynASM. */ -static int collect_reloc(BuildCtx *ctx, uint8_t *addr, int idx, int type); - -#define DASM_EXTERN(ctx, addr, idx, type) collect_reloc(ctx, addr, idx, type) - -/* ------------------------------------------------------------------------ */ - -/* Avoid trouble if cross-compiling for an x86 target. Speed doesn't matter. */ -#define DASM_ALIGNED_WRITES 1 - -/* Embed architecture-specific DynASM encoder. */ -#if RAVI_TARGET_X86ORX64 -#include "../dynasm/dasm_x86.h" -#elif RAVI_TARGET_ARM -#include "../dynasm/dasm_arm.h" -#elif RAVI_TARGET_ARM64 -#include "../dynasm/dasm_arm64.h" -#elif RAVI_TARGET_PPC -#include "../dynasm/dasm_ppc.h" -#elif RAVI_TARGET_MIPS -#include "../dynasm/dasm_mips.h" -#else -#error "No support for this architecture (yet)" -#endif - -/* Embed generated architecture-specific backend. */ -#include "buildvm_arch.h" - -/* ------------------------------------------------------------------------ */ - -void owrite(BuildCtx *ctx, const void *ptr, size_t sz) { - if (fwrite(ptr, 1, sz, ctx->fp) != sz) { - fprintf(stderr, "Error: cannot write to output file: %s\n", - strerror(errno)); - exit(1); - } -} - -/* ------------------------------------------------------------------------ */ - -/* Emit code as raw bytes. Only used for DynASM debugging. */ -static void emit_raw(BuildCtx *ctx) { owrite(ctx, ctx->code, ctx->CodeSize); } - -/* -- Build machine code -------------------------------------------------- */ - -static const char *sym_decorate(BuildCtx *ctx, const char *prefix, - const char *suffix) { - char name[256]; - char *p; -#if RAVI_64 - const char *symprefix = ctx->mode == BUILD_machasm ? "_" : ""; -#else - const char *symprefix = ctx->mode != BUILD_elfasm ? "_" : ""; -#endif - sprintf(name, "%s%s%s", symprefix, prefix, suffix); - p = strchr(name, '@'); - if (p) { -#if RAVI_TARGET_X86ORX64 - if (!RAVI_64 && (ctx->mode == BUILD_coffasm || ctx->mode == BUILD_peobj)) - name[0] = name[1] == 'R' ? '_' : '@'; /* Just for _RtlUnwind@16. */ - else - *p = '\0'; -#else - *p = '\0'; -#endif - } - p = (char *)malloc(strlen(name) + 1); /* MSVC doesn't like strdup. */ - strcpy(p, name); - return p; -} - -#define NRELOCSYM (sizeof(extnames) / sizeof(extnames[0]) - 1) - -static int relocmap[NRELOCSYM + 1]; // Dibyendu: add +1 to allow no extnames - -/* -Collect external relocations -addr is the address of the external symbol -idx is offset into ExportedSymbolNames as per dynasm unofficial docs -type = 0 means absolute address, type = 1 means relative address -*/ -static int collect_reloc(BuildCtx *ctx, uint8_t *addr, int idx, int type) { - if (ctx->RelocSize >= BUILD_MAX_RELOC) { - fprintf(stderr, "Error: too many relocations, increase BUILD_MAX_RELOC.\n"); - exit(1); - } - if (relocmap[idx] < 0) { - relocmap[idx] = ctx->nrelocsym; - ctx->RelocatableSymbolNames[ctx->nrelocsym] = sym_decorate(ctx, "", extnames[idx]); - ctx->nrelocsym++; - } - ctx->Reloc[ctx->RelocSize].RelativeOffset = (int32_t)(addr - ctx->code); - ctx->Reloc[ctx->RelocSize].sym = relocmap[idx]; - ctx->Reloc[ctx->RelocSize].type = type; - ctx->RelocSize++; - return 0; /* Encode symbol offset of 0. */ -} - -/* Naive insertion sort. Performance doesn't matter here. */ -static void sym_insert(BuildCtx *ctx, int32_t ofs, const char *prefix, - const char *suffix) { - ptrdiff_t i = ctx->NumberOfSymbols++; - while (i > 0) { - if (ctx->AllSymbols[i - 1].ofs <= ofs) break; - ctx->AllSymbols[i] = ctx->AllSymbols[i - 1]; - i--; - } - ctx->AllSymbols[i].ofs = ofs; - ctx->AllSymbols[i].name = sym_decorate(ctx, prefix, suffix); -} - -/* Build the machine code. */ -static int build_code(BuildCtx *ctx) { - int status; - int i; - - /* Initialize DynASM structures. */ - ctx->NumberOfExportedSymbols = GLOB__MAX; - ctx->ExportedSymbols = - (void **)malloc(ctx->NumberOfExportedSymbols * sizeof(void *)); - memset(ctx->ExportedSymbols, 0, - ctx->NumberOfExportedSymbols * sizeof(void *)); - ctx->RelocSize = 0; - - ctx->ExportedSymbolNames = globnames; - ctx->ImportedSymbolNames = extnames; - ctx->RelocatableSymbolNames = (const char **)malloc(NRELOCSYM * sizeof(const char *)); - ctx->nrelocsym = 0; - for (i = 0; i < (int)NRELOCSYM; i++) relocmap[i] = -1; - - ctx->dasm_ident = DASM_IDENT; - ctx->dasm_arch = DASM_ARCH; - - dasm_init(Dst, DASM_MAXSECTION); - dasm_setupglobal(Dst, ctx->ExportedSymbols, ctx->NumberOfExportedSymbols); - dasm_setup(Dst, build_actionlist); - - /* Call arch-specific backend to emit the code. */ - ctx->SizeofDispatchTable = build_backend(ctx); - - /* Finalize the code. */ - (void)dasm_checkstep(Dst, -1); - if ((status = dasm_link(Dst, &ctx->CodeSize))) return status; - ctx->code = (uint8_t *)malloc(ctx->CodeSize); - if ((status = dasm_encode(Dst, (void *)ctx->code))) return status; - - /* Allocate symbol table and bytecode offsets. */ - ctx->StartSymbol = sym_decorate(ctx, "", LABEL_PREFIX "vm_asm_begin"); - ctx->AllSymbols = (BuildSym *)malloc( - (ctx->SizeofDispatchTable + ctx->NumberOfExportedSymbols + 1) * - sizeof(BuildSym)); // Presumably +1 is for a terminating NULL - ctx->NumberOfSymbols = 0; - ctx->DispatchTableOffsets = - (int32_t *)malloc(ctx->SizeofDispatchTable * sizeof(int32_t)); - - /* Collect the opcodes (PC labels). */ - for (i = 0; i < ctx->SizeofDispatchTable; i++) { - int32_t ofs = dasm_getpclabel(Dst, i); - if (ofs < 0) return 0x22000000 | i; - ctx->DispatchTableOffsets[i] = ofs; - sym_insert(ctx, ofs, LABEL_PREFIX_BC, luaP_opnames[i]); - } - - /* Collect the globals (named labels). */ - for (i = 0; i < ctx->NumberOfExportedSymbols; i++) { - const char *gl = globnames[i]; - int len = (int)strlen(gl); - if (!ctx->ExportedSymbols[i]) { - fprintf(stderr, "Error: undefined global %s\n", gl); - exit(2); - } - /* Skip the _Z symbols. */ - if (!(len >= 2 && gl[len - 2] == '_' && gl[len - 1] == 'Z')) - // Enter the relative offset of the exported symbol, relative to the start - // of the code - sym_insert(ctx, - (int32_t)((uint8_t *)(ctx->ExportedSymbols[i]) - ctx->code), - LABEL_PREFIX, globnames[i]); - } - - /* Close the address range. */ - sym_insert(ctx, (int32_t)ctx->CodeSize, "", ""); - ctx->NumberOfSymbols--; - - dasm_free(Dst); - - return 0; -} - -static const char *lower(char *buf, const char *s) { - char *p = buf; - while (*s) { - *p++ = (*s >= 'A' && *s <= 'Z') ? *s + 0x20 : *s; - s++; - } - *p = '\0'; - return buf; -} - -/* Emit C source code for bytecode-related definitions. */ -static void emit_bcdef(BuildCtx *ctx) { - int i; - fprintf(ctx->fp, "/* This is a generated file. DO NOT EDIT! */\n\n"); - fprintf(ctx->fp, "/* ravi_bytecode_offsets contains offsets of OpCode implementations */\n"); - /* Start of the ASM code. */ - fprintf(ctx->fp, "#include \n\n"); - fprintf(ctx->fp, "extern char ravi_vm_asm_begin[];\n\n"); - fprintf(ctx->fp, "/* Bytecode offsets are relative to ravi_vm_asm_begin. */\n"); - fprintf(ctx->fp, "/* Internal assembler functions. Never call these directly from C. */\n"); - fprintf(ctx->fp, "typedef void (*ASMFunction)(void);\n\n"); - fprintf(ctx->fp, "#define makeasmfunc(ofs) ((ASMFunction)(ravi_vm_asm_begin + (ofs)))\n\n"); - fprintf(ctx->fp, "static const uint16_t ravi_bytecode_offsets[] = {\n"); - for (i = 0; i < ctx->SizeofDispatchTable; i++) { - if (i != 0) fprintf(ctx->fp, ",\n"); - fprintf(ctx->fp, "%d", ctx->DispatchTableOffsets[i]); - } - fprintf(ctx->fp, "\n};\n"); -} - -/* -- Argument parsing ---------------------------------------------------- */ - -/* Build mode names. */ -static const char *const modenames[] = { -#define BUILDNAME(name) #name, - BUILDDEF(BUILDNAME) -#undef BUILDNAME - NULL}; - -#define LUAJIT_VERSION "Ravi" -#define LUAJIT_COPYRIGHT "Based on LuaJIT 2.1.0-beta3, Copyright (C) 2005-2017 Mike Pall" -#define LUAJIT_URL "http://luajit.org/" - -/* Print usage information and exit. */ -static void usage(void) { - int i; - fprintf(stderr, LUAJIT_VERSION " VM builder.\n"); - fprintf(stderr, LUAJIT_COPYRIGHT ", " LUAJIT_URL "\n"); - fprintf(stderr, "Target architecture: " RAVI_ARCH_NAME "\n\n"); - fprintf(stderr, "Usage: buildvm -m mode [-o outfile] [infiles...]\n\n"); - fprintf(stderr, "Available modes:\n"); - for (i = 0; i < BUILD__MAX; i++) fprintf(stderr, " %s\n", modenames[i]); - exit(1); -} - -/* Parse the output mode name. */ -static BuildMode parsemode(const char *mode) { - int i; - for (i = 0; modenames[i]; i++) - if (!strcmp(mode, modenames[i])) return (BuildMode)i; - usage(); - return (BuildMode)-1; -} - -/* Parse arguments. */ -static void parseargs(BuildCtx *ctx, char **argv) { - const char *a; - int i; - ctx->mode = (BuildMode)-1; - ctx->outname = "-"; - for (i = 1; (a = argv[i]) != NULL; i++) { - if (a[0] != '-') break; - switch (a[1]) { - case '-': - if (a[2]) goto err; - i++; - goto ok; - case '\0': goto ok; - case 'm': - i++; - if (a[2] || argv[i] == NULL) goto err; - ctx->mode = parsemode(argv[i]); - break; - case 'o': - i++; - if (a[2] || argv[i] == NULL) goto err; - ctx->outname = argv[i]; - break; - default: - err: - usage(); - break; - } - } -ok: - ctx->args = argv + i; - if (ctx->mode == (BuildMode)-1) goto err; -} - -int main(int argc, char **argv) { - BuildCtx ctx_; - BuildCtx *ctx = &ctx_; - int status, binmode; - - if (sizeof(void *) != 4 * RAVI_32 + 8 * RAVI_64) { - fprintf(stderr, "Error: pointer size mismatch in cross-build.\n"); - fprintf(stderr, "Try: make HOST_CC=\"gcc -m32\" CROSS=...\n\n"); - return 1; - } - - UNUSED(argc); - parseargs(ctx, argv); - - if ((status = build_code(ctx))) { - fprintf(stderr, "Error: DASM error %08x\n", status); - return 1; - } - - switch (ctx->mode) { - case BUILD_peobj: - case BUILD_raw: binmode = 1; break; - default: binmode = 0; break; - } - - if (ctx->outname[0] == '-' && ctx->outname[1] == '\0') { - ctx->fp = stdout; -#if defined(_WIN32) - if (binmode) _setmode(_fileno(stdout), _O_BINARY); /* Yuck. */ -#endif - } - else if (!(ctx->fp = fopen(ctx->outname, binmode ? "wb" : "w"))) { - fprintf(stderr, "Error: cannot open output file '%s': %s\n", ctx->outname, - strerror(errno)); - exit(1); - } - - switch (ctx->mode) { - case BUILD_elfasm: - case BUILD_coffasm: - case BUILD_machasm: - emit_asm(ctx); - // emit_asm_debug(ctx); - break; - case BUILD_peobj: emit_peobj(ctx); break; - case BUILD_raw: emit_raw(ctx); break; - case BUILD_bcdef: emit_bcdef(ctx); break; - default: break; - } - - fflush(ctx->fp); - if (ferror(ctx->fp)) { - fprintf(stderr, "Error: cannot write to output file: %s\n", - strerror(errno)); - exit(1); - } - fclose(ctx->fp); - return 0; -} - -// FIXME this is a copy of the array from lopcodes.c -LUAI_DDEF const char *const luaP_opnames[NUM_OPCODES + 1] = - { - "MOVE", - "LOADK", - "LOADKX", - "LOADBOOL", - "LOADNIL", - "GETUPVAL", - "GETTABUP", - "GETTABLE", - "SETTABUP", - "SETUPVAL", - "SETTABLE", - "NEWTABLE", - "SELF", - "ADD", - "SUB", - "MUL", - "MOD", - "POW", - "DIV", - "IDIV", - "BAND", - "BOR", - "BXOR", - "SHL", - "SHR", - "UNM", - "BNOT", - "NOT", - "LEN", - "CONCAT", - "JMP", - "EQ", - "LT", - "LE", - "TEST", - "TESTSET", - "CALL", - "TAILCALL", - "RETURN", - "FORLOOP", - "FORPREP", - "TFORCALL", - "TFORLOOP", - "SETLIST", - "CLOSURE", - "VARARG", - "EXTRAARG", - - "NEW_IARRAY", /* A R(A) := array of int */ - "NEW_FARRAY", /* A R(A) := array of float */ - - "LOADIZ", /* A R(A) := tointeger(0) */ - "LOADFZ", /* A R(A) := tonumber(0) */ - - "UNMF", /* A B R(A) := -R(B) floating point */ - "UNMI", /* A B R(A) := -R(B) integer */ - - "ADDFF", /* A B C R(A) := RK(B) + RK(C) */ - "ADDFI", /* A B C R(A) := RK(B) + RK(C) */ - "ADDII", /* A B C R(A) := RK(B) + RK(C) */ - - "SUBFF", /* A B C R(A) := RK(B) - RK(C) */ - "SUBFI", /* A B C R(A) := RK(B) - RK(C) */ - "SUBIF", /* A B C R(A) := RK(B) - RK(C) */ - "SUBII", /* A B C R(A) := RK(B) - RK(C) */ - - "MULFF", /* A B C R(A) := RK(B) * RK(C) */ - "MULFI", /* A B C R(A) := RK(B) * RK(C) */ - "MULII", /* A B C R(A) := RK(B) * RK(C) */ - - "DIVFF", /* A B C R(A) := RK(B) / RK(C) */ - "DIVFI", /* A B C R(A) := RK(B) / RK(C) */ - "DIVIF", /* A B C R(A) := RK(B) / RK(C) */ - "DIVII", /* A B C R(A) := RK(B) / RK(C) */ - - "TOINT", /* A R(A) := toint(R(A)) */ - "TOFLT", /* A R(A) := tofloat(R(A)) */ - "TOIARRAY", /* A R(A) := to_arrayi(R(A)) */ - "TOFARRAY", /* A R(A) := to_arrayf(R(A)) */ - "TOTAB", /* A R(A) := to_table(R(A)) */ - "TOSTRING", - "TOCLOSURE", - "TOTYPE", - - "MOVEI", /* A B R(A) := R(B) */ - "MOVEF", /* A B R(A) := R(B) */ - "MOVEIARRAY", /* A B R(A) := R(B), check R(B) is array of int */ - "MOVEFARRAY", /* A B R(A) := R(B), check R(B) is array of floats */ - "MOVETAB", /* A B R(A) := R(B), check R(B) is a table */ - - "IARRAY_GET", /* A B C R(A) := R(B)[RK(C)] where R(B) is array of - integers and RK(C) is int */ - "FARRAY_GET", /* A B C R(A) := R(B)[RK(C)] where R(B) is array of - floats and RK(C) is int */ - - "IARRAY_SET", /* A B C R(A)[RK(B)] := RK(C) where RK(B) is an int, - R(A) is array of ints, and RK(C) is an int */ - "FARRAY_SET", /* A B C R(A)[RK(B)] := RK(C) where RK(B) is an int, - R(A) is array of floats, and RK(C) is an float */ - "IARRAY_SETI", /* A B C R(A)[RK(B)] := RK(C) where RK(B) is an int, - R(A) is array of ints, and RK(C) is an int */ - "FARRAY_SETF", /* A B C R(A)[RK(B)] := RK(C) where RK(B) is an int, - R(A) is array of floats, and RK(C) is an float */ - - "FORLOOP_IP", - "FORLOOP_I1", - "FORPREP_IP", - "FORPREP_I1", - - "SETUPVALI", /* A B UpValue[B] := tointeger(R(A)) */ - "SETUPVALF", /* A B UpValue[B] := tonumber(R(A)) */ - "SETUPVAL_IARRAY", /* A B UpValue[B] := toarrayint(R(A)) */ - "SETUPVAL_FARRAY", /* A B UpValue[B] := toarrayflt(R(A)) */ - "SETUPVALT", /* A B UpValue[B] := to_table(R(A)) */ - - "BAND_II", /* A B C R(A) := RK(B) & RK(C) */ - "BOR_II", /* A B C R(A) := RK(B) | RK(C) */ - "BXOR_II", /* A B C R(A) := RK(B) ~ RK(C) */ - "SHL_II", /* A B C R(A) := RK(B) << RK(C) */ - "SHR_II", /* A B C R(A) := RK(B) >> RK(C) */ - "BNOT_I", /* A B R(A) := ~R(B) */ - - "EQ_II", /* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ - "EQ_FF", /* A B C if ((RK(B) == RK(C)) ~= A) then pc++ */ - "LT_II", /* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ - "LT_FF", /* A B C if ((RK(B) < RK(C)) ~= A) then pc++ */ - "LE_II", /* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ - "LE_FF", /* A B C if ((RK(B) <= RK(C)) ~= A) then pc++ */ - - "TABLE_GETFIELD", /* A B C R(A) := R(B)[RK(C)], string key */ - "TABLE_SETFIELD", /* A B C R(A)[RK(B)] := RK(C), string key */ - "TABLE_SELF_SK", /* A B C R(A+1) := R(B); R(A) := R(B)[RK(C)] */ - - "GETI", /* A B C R(A) := R(B)[RK(C)], integer key */ - "SETI", /* A B C R(A)[RK(B)] := RK(C), integer key */ - "GETFIELD", /* A B C R(A) := R(B)[RK(C)], string key */ - "SELF_SK", /* A B C R(A+1) := R(B); R(A) := R(B)[RK(C)] */ - "SETFIELD", /* A B C R(A)[RK(B)] := RK(C), string key */ - "GETTABUP_SK", - NULL}; diff --git a/vmbuilder/src/buildvm.h b/vmbuilder/src/buildvm.h deleted file mode 100644 index 4da507b..0000000 --- a/vmbuilder/src/buildvm.h +++ /dev/null @@ -1,108 +0,0 @@ -/* -** LuaJIT VM builder. -** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h -*/ - -#ifndef _BUILDVM_H -#define _BUILDVM_H - -#include -#include -#include -#include -#include - -#include "ravi_def.h" -#include "ravi_arch.h" - -/* Hardcoded limits. Increase as needed. */ -#define BUILD_MAX_RELOC 200 /* Max. number of relocations. */ - -/* Prefixes for generated labels. */ -#define LABEL_PREFIX "ravi_" -#define LABEL_PREFIX_BC LABEL_PREFIX "BC_" -#define LABEL_PREFIX_FF LABEL_PREFIX "ff_" -#define LABEL_PREFIX_CF LABEL_PREFIX "cf_" -#define LABEL_PREFIX_FFH LABEL_PREFIX "ffh_" -#define LABEL_PREFIX_LIBCF LABEL_PREFIX "lib_cf_" -#define LABEL_PREFIX_LIBINIT LABEL_PREFIX "lib_init_" - -/* Forward declaration. */ -struct dasm_State; - -/* Build modes. */ -#define BUILDDEF(_) \ - _(elfasm) _(coffasm) _(machasm) _(peobj) _(raw) \ - _(bcdef) - -typedef enum { -#define BUILDENUM(name) BUILD_##name, -BUILDDEF(BUILDENUM) -#undef BUILDENUM - BUILD__MAX -} BuildMode; - -/* Code relocation. */ -typedef struct BuildReloc { - /* Offset of the relocatable symbol computed as (symbol - code) */ - int32_t RelativeOffset; - /* index into ExportedSymbolNames array? */ - int sym; - /* type = 0 means absolute address, type = 1 means relative address */ - int type; -} BuildReloc; - -typedef struct BuildSym { - const char *name; - int32_t ofs; -} BuildSym; - -/* Build context structure. */ -typedef struct BuildCtx { - /* DynASM state pointer. Should be first member. */ - struct dasm_State *D; - /* Parsed command line. */ - BuildMode mode; - FILE *fp; - const char *outname; - char **args; - /* Code and symbols generated by DynASM. */ - uint8_t *code; - size_t CodeSize; - /* Number of entries in dispatch table */ - int SizeofDispatchTable; - /* Number of exported functions such as luaV_interp()*/ - int NumberOfExportedSymbols; - /* Count of all symbols including exported symbols and dispatch table functions - should be NUM_OPCODES+1 VM function */ - int NumberOfSymbols; - int nrelocsym; - /* Array of exported symbols excluding the start symbol */ - void **ExportedSymbols; - /* Array of all symbols including exported symbols, start symbol and dispatch table entries */ - BuildSym *AllSymbols; - /* Names of relocatable symbols - e.g. ImportedSymbols. Not sure why we need this and ImportedSymbolNames */ - const char **RelocatableSymbolNames; - /* Offsets of lables in the dispatch table, one of each byte code */ - int32_t *DispatchTableOffsets; - /* This is the first symbol (ravi_vm_asm_begin) - other symbols are relative to this one in the dispatch table */ - const char *StartSymbol; - /* Strings generated by DynASM. */ - /* ExportedSymbolNames will point to an array of symbol names corresponding to ExportedSymbols */ - const char *const *ExportedSymbolNames; - /* ImportedSymbolNames is an array of names of external functions called from the VM - e.g. luaF_close */ - const char *const *ImportedSymbolNames; - const char *dasm_ident; - const char *dasm_arch; - /* Relocatable symbols (addresses) */ - BuildReloc Reloc[BUILD_MAX_RELOC]; - /* Size of above (i.e. used elements) */ - int RelocSize; -} BuildCtx; - -extern void owrite(BuildCtx *ctx, const void *ptr, size_t sz); -extern void emit_asm(BuildCtx *ctx); -extern void emit_peobj(BuildCtx *ctx); - -extern const char *const bc_names[]; - -#endif diff --git a/vmbuilder/src/buildvm_asm.c b/vmbuilder/src/buildvm_asm.c deleted file mode 100644 index cef7d7f..0000000 --- a/vmbuilder/src/buildvm_asm.c +++ /dev/null @@ -1,194 +0,0 @@ -/* -** LuaJIT VM builder: Assembler source code emitter. -** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h -*/ - -#include "buildvm.h" -#include "lopcodes.h" - -/* ------------------------------------------------------------------------ */ - -#if RAVI_TARGET_X86ORX64 -/* Emit bytes piecewise as assembler text. */ -static void emit_asm_bytes(BuildCtx *ctx, uint8_t *p, int n) -{ - int i; - for (i = 0; i < n; i++) { - if ((i & 15) == 0) - fprintf(ctx->fp, "\t.byte %d", p[i]); - else - fprintf(ctx->fp, ",%d", p[i]); - if ((i & 15) == 15) putc('\n', ctx->fp); - } - if ((n & 15) != 0) putc('\n', ctx->fp); -} - -/* Emit relocation */ -static void emit_asm_reloc(BuildCtx *ctx, int type, const char *sym) -{ - switch (ctx->mode) { - case BUILD_elfasm: - if (type) - fprintf(ctx->fp, "\t.long %s-.-4\n", sym); - else - fprintf(ctx->fp, "\t.long %s\n", sym); - break; - case BUILD_coffasm: - fprintf(ctx->fp, "\t.def %s; .scl 3; .type 32; .endef\n", sym); - if (type) - fprintf(ctx->fp, "\t.long %s-.-4\n", sym); - else - fprintf(ctx->fp, "\t.long %s\n", sym); - break; - default: /* BUILD_machasm for relative relocations handled below. */ - fprintf(ctx->fp, "\t.long %s\n", sym); - break; - } -} - -static const char *const jccnames[] = { - "jo", "jno", "jb", "jnb", "jz", "jnz", "jbe", "ja", - "js", "jns", "jpe", "jpo", "jl", "jge", "jle", "jg" -}; - -/* Emit x86/x64 text relocations. */ -static void emit_asm_reloc_text(BuildCtx *ctx, uint8_t *cp, int n, - const char *sym) -{ - const char *opname = NULL; - if (--n < 0) goto err; - if (cp[n] == 0xe8) { - opname = "call"; - } else if (cp[n] == 0xe9) { - opname = "jmp"; - } else if (cp[n] >= 0x80 && cp[n] <= 0x8f && n > 0 && cp[n-1] == 0x0f) { - opname = jccnames[cp[n]-0x80]; - n--; - } else { -err: - fprintf(stderr, "Error: unsupported opcode for %s symbol relocation.\n", - sym); - exit(1); - } - emit_asm_bytes(ctx, cp, n); - if (strncmp(sym+(*sym == '_'), LABEL_PREFIX, sizeof(LABEL_PREFIX)-1)) { - /* Various fixups for external symbols outside of our binary. */ - if (ctx->mode == BUILD_elfasm) { - if (RAVI_32) - fprintf(ctx->fp, "#if __PIC__\n\t%s lj_wrap_%s\n#else\n", opname, sym); - fprintf(ctx->fp, "\t%s %s@PLT\n", opname, sym); - if (RAVI_32) - fprintf(ctx->fp, "#endif\n"); - return; - } else if (RAVI_32 && ctx->mode == BUILD_machasm) { - fprintf(ctx->fp, "\t%s L%s$stub\n", opname, sym); - return; - } - } - fprintf(ctx->fp, "\t%s %s\n", opname, sym); -} -#else -#error "missing relocation support for this architecture" -#endif - -#define ELFASM_PX "@" - -/* Emit an assembler label. */ -static void emit_asm_label(BuildCtx *ctx, const char *name, int size, int isfunc) -{ - switch (ctx->mode) { - case BUILD_elfasm: - fprintf(ctx->fp, - "\n\t.globl %s\n" - "\t.hidden %s\n" - "\t.type %s, " ELFASM_PX "%s\n" - "\t.size %s, %d\n" - "%s:\n", - name, name, name, isfunc ? "function" : "object", name, size, name); - break; - case BUILD_coffasm: - fprintf(ctx->fp, "\n\t.globl %s\n", name); - if (isfunc) - fprintf(ctx->fp, "\t.def %s; .scl 3; .type 32; .endef\n", name); - fprintf(ctx->fp, "%s:\n", name); - break; - case BUILD_machasm: - fprintf(ctx->fp, - "\n\t.private_extern %s\n" - "\t.no_dead_strip %s\n" - "%s:\n", name, name, name); - break; - default: - break; - } -} - -/* Emit alignment. */ -static void emit_asm_align(BuildCtx *ctx, int bits) -{ - switch (ctx->mode) { - case BUILD_elfasm: - case BUILD_coffasm: - fprintf(ctx->fp, "\t.p2align %d\n", bits); - break; - case BUILD_machasm: - fprintf(ctx->fp, "\t.align %d\n", bits); - break; - default: - break; - } -} - -/* ------------------------------------------------------------------------ */ - -/* Emit assembler source code. */ -void emit_asm(BuildCtx *ctx) -{ - int i, rel; - - fprintf(ctx->fp, "\t.file \"buildvm_%s.dasc\"\n", ctx->dasm_arch); - fprintf(ctx->fp, "\t.text\n"); - emit_asm_align(ctx, 4); - - emit_asm_label(ctx, ctx->StartSymbol, 0, 0); - if (ctx->mode != BUILD_machasm) - fprintf(ctx->fp, ".Lbegin:\n"); - - for (i = rel = 0; i < ctx->NumberOfSymbols; i++) { - int32_t ofs = ctx->AllSymbols[i].ofs; - int32_t next = ctx->AllSymbols[i+1].ofs; - emit_asm_label(ctx, ctx->AllSymbols[i].name, next - ofs, 1); - while (rel < ctx->RelocSize && ctx->Reloc[rel].RelativeOffset <= next) { - BuildReloc *r = &ctx->Reloc[rel]; - int n = r->RelativeOffset - ofs; - if (r->type != 0 && - (ctx->mode == BUILD_elfasm || ctx->mode == BUILD_machasm)) { - emit_asm_reloc_text(ctx, ctx->code+ofs, n, ctx->RelocatableSymbolNames[r->sym]); - } else { - emit_asm_bytes(ctx, ctx->code+ofs, n); - emit_asm_reloc(ctx, r->type, ctx->RelocatableSymbolNames[r->sym]); - } - ofs += n+4; - rel++; - } - emit_asm_bytes(ctx, ctx->code+ofs, next-ofs); - } - - fprintf(ctx->fp, "\n"); - switch (ctx->mode) { - case BUILD_elfasm: - /* fallthrough */ - case BUILD_coffasm: - fprintf(ctx->fp, "\t.ident \"%s\"\n", ctx->dasm_ident); - break; - case BUILD_machasm: - fprintf(ctx->fp, - "\t.cstring\n" - "\t.ascii \"%s\\0\"\n", ctx->dasm_ident); - break; - default: - break; - } - fprintf(ctx->fp, "\n"); -} - diff --git a/vmbuilder/src/buildvm_peobj.c b/vmbuilder/src/buildvm_peobj.c deleted file mode 100644 index c48a568..0000000 --- a/vmbuilder/src/buildvm_peobj.c +++ /dev/null @@ -1,533 +0,0 @@ -/* -** LuaJIT VM builder: PE object emitter. -** Modified for Ravi - no longer compatible with LuaJIT. -** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h -** -** Only used for building on Windows, since we cannot assume the presence -** of a suitable assembler. The host and target byte order must match. -*/ - -#include "buildvm.h" -#include "lopcodes.h" - -#if RAVI_TARGET_X86ORX64 - -/* IMPORTANT: Note that the code here depends upon Little Endian layout - i.e. - it assumes the compiler is generating Little Endian code. */ - -/* Context for PE object emitter. */ -static char *strtab; -static size_t strtabofs; - -/* -- PE object definitions ----------------------------------------------- */ - -/* PE header. */ -typedef struct PEheader { - uint16_t Machine; /* The number that identifies the type of target machine */ - uint16_t NumberOfSections; /* The number of sections. This indicates the size - of the section table, which immediately follows - the headers. */ - uint32_t TimeDateStamp; /* The low 32 bits of the number of seconds since - 00:00 January 1, 1970 (a C run-time time_t value), - that indicates when the file was created. */ - uint32_t PointerToSymbolTable; /* The file offset of the COFF symbol table, or - zero if no COFF symbol table is present. - This value should be zero for an image - because COFF debugging information is - deprecated. */ - uint32_t NumberOfSymbols; /* The number of entries in the symbol table. This - data can be used to locate the string table, - which immediately follows the symbol table. This - value should be zero for an image because COFF - debugging information is deprecated. */ - uint16_t - SizeOfOptionalHeader; /* The size of the optional header, which is - required for executable files but not for object - files. This value should be zero for an object - file. */ - uint16_t - Characteristics; /* The flags that indicate the attributes of the file */ -} PEheader; - -/* PE section. */ -typedef struct PESectionHeader { - char name[8]; /* An 8-byte, null-padded UTF-8 encoded string. If the string is - exactly 8 characters long, there is no terminating null. For - longer names, this field contains a slash (/) that is - followed by an ASCII representation of a decimal number that - is an offset into the string table. Executable images do not - use a string table and do not support section names longer - than 8 characters. Long names in object files are truncated - if they are emitted to an executable file. */ - uint32_t VirtualSize; /* The total size of the section when loaded into - memory. If this value is greater than SizeOfRawData, - the section is zero-padded. This field is valid only - for executable images and should be set to zero for - object files. */ - uint32_t VirtualAddress; /* For executable images, the address of the first - byte of the section relative to the image base - when the section is loaded into memory. For object - files, this field is the address of the first byte - before relocation is applied; for simplicity, - compilers should set this to zero. Otherwise, it - is an arbitrary value that is subtracted from - offsets during relocation. */ - uint32_t SizeOfRawData; /* The size of the section (for object files) or the - size of the initialized data on disk (for image - files). For executable images, this must be a - multiple of FileAlignment from the optional header. - If this is less than VirtualSize, the remainder of - the section is zero-filled. Because the - SizeOfRawData field is rounded but the VirtualSize - field is not, it is possible for SizeOfRawData to - be greater than VirtualSize as well. When a section - contains only uninitialized data, this field should - be zero. */ - uint32_t PointerToRawData; /* The file pointer to the first page of the - section within the COFF file. For executable - images, this must be a multiple of FileAlignment - from the optional header. For object files, the - value should be aligned on a 4-byte boundary for - best performance. When a section contains only - uninitialized data, this field should be zero. - */ - uint32_t PointerToRelocations; /* The file pointer to the beginning of - relocation entries for the section. This is - set to zero for executable images or if - there are no relocations. */ - uint32_t - PointerToLinenumbers; /* The file pointer to the beginning of line-number - entries for the section. This is set to zero if - there are no COFF line numbers. This value should - be zero for an image because COFF debugging - information is deprecated. */ - uint16_t NumberOfRelocations; /* The number of relocation entries for the - section. This is set to zero for executable - images. */ - uint16_t NumberOfLinenumbers; /* The number of line-number entries for the - section. This value should be zero for an - image because COFF debugging information is - deprecated. */ - uint32_t Characteristics; -} PESectionHeader; - -/* PE relocation. */ -typedef struct PEreloc { - uint32_t VirtualAddress; /* The address of the item to which relocation is - applied. This is the offset from the beginning of the section, plus the value - of the section's RVA/Offset field. See Section Table (Section Headers). For - example, if the first byte of the section has an address of 0x10, the third - byte has an address of 0x12.*/ - - uint32_t SymbolTableIndex; /* A zero-based index into the symbol table. This - symbol gives the address that is to be used for the relocation. If the - specified symbol has section storage class, then the symbol's address is the - address with the first section of the same name.*/ - - uint16_t type; -} PEreloc; -/* Cannot use sizeof, because it pads up to the max. alignment. */ -#define PEOBJ_RELOC_SIZE (sizeof(uint32_t) * 2 + sizeof(uint16_t)) - -/* PE symbol table entry. */ -typedef struct PEsym { - union { - char ShortName[8]; /* An array of 8 bytes. This array is padded with nulls - on the right if the name is less than 8 bytes long. */ - uint32_t nameref[2]; - } n; - uint32_t Value; /* The value that is associated with the symbol. The - interpretation of this field depends on SectionNumber and - StorageClass. A typical meaning is the relocatable address. - */ - int16_t SectionNumber; /* The signed integer that identifies the section, - using a one-based index into the section table. Some - values have special meaning */ - uint16_t Type; /* A number that represents type. Microsoft tools set this - field to 0x20 (function) or 0x0 (not a function). For more - information */ - uint8_t StorageClass; /* An enumerated value that represents storage class. */ - uint8_t NumberOfAuxSymbols; /* The number of auxiliary symbol table entries - that follow this record. */ -} PEsym; -/* sizeof(PEsym) must be 18 */ -#define PEOBJ_SYM_SIZE 18 // must be 18 bytes -/* -Zero or more auxiliary symbol-table records immediately follow each standard -symbol-table record. However, typically not more than one auxiliary symbol-table -record follows a standard symbol-table record (except for .file records with -long file names). Each auxiliary record is the same size as a standard -symbol-table record (18 bytes), but rather than define a new symbol, the -auxiliary record gives additional information on the last symbol defined. The -choice of which of several formats to use depends on the StorageClass field. -*/ -/* PE symbol table auxiliary entry for a section. */ -typedef struct PEsymaux { - uint32_t size; - uint16_t nreloc; - uint16_t nline; - uint32_t cksum; - uint16_t assoc; - uint8_t comdatsel; - uint8_t unused[3]; -} PEsymaux; - -/* PE object CPU specific defines. */ -#define PEOBJ_ARCH_TARGET 0x8664 /* Image file AMD64 */ -#define PEOBJ_RELOC_REL32 0x04 /* MS: REL32, GNU: DISP32. */ -#define PEOBJ_RELOC_DIR32 0x02 -#define PEOBJ_RELOC_ADDR32NB 0x03 -#define PEOBJ_RELOC_OFS 0 - -/* Section numbers (0-based). */ -enum { - PEOBJ_SECT_ABS = -2, - PEOBJ_SECT_UNDEF = -1, - PEOBJ_SECT_TEXT, - PEOBJ_SECT_PDATA, - PEOBJ_SECT_XDATA, - PEOBJ_SECT_RDATA_Z, - PEOBJ_NSECTIONS -}; - -/* Symbol types. */ -#define IMAGE_SYM_TYPE_NULL 0 -#define IMAGE_SYM_TYPE_FUNC 0x20 - -/* Symbol storage class. */ -#define IMAGE_SYM_CLASS_EXTERNAL 2 -#define PEOBJ_SCL_STATIC 3 - -/* -- PE object emitter --------------------------------------------------- */ - -/* Emit PE object symbol. */ -static void emit_peobj_sym(BuildCtx *ctx, const char *name, uint32_t value, - int sect, int type, int scl) -{ - PEsym sym; - size_t len = strlen(name); - if (!strtab) { /* Pass 1: only calculate string table length. */ - if (len > 8) strtabofs += len+1; - return; - } - if (len <= 8) { - memcpy(sym.n.ShortName, name, len); - memset(sym.n.ShortName+len, 0, 8-len); - } else { - sym.n.nameref[0] = 0; - sym.n.nameref[1] = (uint32_t)strtabofs; - memcpy(strtab + strtabofs, name, len); - strtab[strtabofs+len] = 0; - strtabofs += len+1; - } - sym.Value = value; - sym.SectionNumber = (int16_t)(sect+1); /* 1-based section number. */ - sym.Type = (uint16_t)type; - sym.StorageClass = (uint8_t)scl; - sym.NumberOfAuxSymbols = 0; - owrite(ctx, &sym, PEOBJ_SYM_SIZE); -} - -/* Emit PE object section symbol. */ -static void emit_peobj_sym_sect(BuildCtx *ctx, PESectionHeader *sectionHeader, int sect) -{ - PEsym sym; - PEsymaux aux; - if (!strtab) return; /* Pass 1: no output. */ - memcpy(sym.n.ShortName, sectionHeader[sect].name, 8); - sym.Value = 0; - sym.SectionNumber = (int16_t)(sect+1); /* 1-based section number. */ - sym.Type = IMAGE_SYM_TYPE_NULL; - sym.StorageClass = PEOBJ_SCL_STATIC; - sym.NumberOfAuxSymbols = 1; - owrite(ctx, &sym, PEOBJ_SYM_SIZE); - memset(&aux, 0, sizeof(PEsymaux)); - aux.size = sectionHeader[sect].SizeOfRawData; - aux.nreloc = sectionHeader[sect].NumberOfRelocations; - owrite(ctx, &aux, PEOBJ_SYM_SIZE); -} - -static inline int start_symbol_index(int NumberOfRelocatableSymbols) { - // Following is zero based offset of the symbol - // The symbol table is arranged thus (see emit_peobj()): - // @feat.00 - 1 symbol - // .text section header - 2 symbols - // NumberOfRelocatableSymbols Relocatable symbols - // .pdata section header - 2 symbols - // .xdata section header - 2 symbols - // Which gives following formula to get to ravi_vm_asm_begin (StartSymbol) - return 1 + 2 + NumberOfRelocatableSymbols + 2 + 2; // Points to StartSymbol -} - -static inline int xdata_symbol_index(int NumberOfRelocatableSymbols) { - // Following is zero based offset of the symbol - // The symbol table is arranged thus (see emit_peobj()): - // @feat.00 - 1 symbol - // .text section header - 2 symbols - // NumberOfRelocatableSymbols Relocatable symbols - // .pdata section header - 2 symbols - // .xdata section header - return 1 + 2 + NumberOfRelocatableSymbols + 2; // Points to .xdata -} - -/* Emit Windows PE object file. */ -void emit_peobj(BuildCtx *ctx) -{ - PEheader pehdr; - PESectionHeader sectionHeaders[PEOBJ_NSECTIONS]; - uint32_t offset; - int i, NumberOfRelocatableSymbols; - union { uint8_t b; uint32_t u; } host_endian; - - enum { - IMAGE_SCN_CNT_CODE = 0x00000020, /* The section contains executable code. */ - IMAGE_SCN_CNT_INITIALIZED_DATA = 0x00000040, /* The section contains initialized data. */ - IMAGE_SCN_LNK_INFO = 0x00000200, /* The section contains comments or other information. The .drectve section has this Type. This is valid for object files only. */ - IMAGE_SCN_ALIGN_4BYTES = 0x00300000, /* Align data on a 4-byte boundary. Valid only for object files. */ - IMAGE_SCN_ALIGN_16BYTES = 0x00500000, /* Align data on a 16-byte boundary. Valid only for object files. */ - IMAGE_SCN_MEM_READ = 0x40000000, /* The section can be read. */ - IMAGE_SCN_MEM_EXECUTE = 0x20000000, /* The section can be executed as code. */ - }; - - memset(§ionHeaders, 0, sizeof sectionHeaders); - - /* Set offset to end of the header and section headers */ - offset = sizeof(PEheader) + PEOBJ_NSECTIONS*sizeof(PESectionHeader); - - /* Fill in PE sections. */ - /* The .text section will contain all the generated machine code. Note that this contains - exported symbols as well as the bytecode assembly routines; any external functions - referenced will count as requiring relocations */ - memcpy(sectionHeaders[PEOBJ_SECT_TEXT].name, ".text", sizeof(".text")-1); - sectionHeaders[PEOBJ_SECT_TEXT].PointerToRawData = offset; - offset += (sectionHeaders[PEOBJ_SECT_TEXT].SizeOfRawData = (uint32_t)ctx->CodeSize); - sectionHeaders[PEOBJ_SECT_TEXT].PointerToRelocations = offset; - offset += (sectionHeaders[PEOBJ_SECT_TEXT].NumberOfRelocations = (uint16_t)ctx->RelocSize) * PEOBJ_RELOC_SIZE; - /* Flags: 60 = read+execute, 50 = align16, 20 = code. */ - sectionHeaders[PEOBJ_SECT_TEXT].Characteristics = IMAGE_SCN_CNT_CODE | IMAGE_SCN_ALIGN_16BYTES | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_EXECUTE; - - /* The .pdata section contains a function table. Right now we only generate a single entry in the - function table, pointing to our exported luaV_interp() function which is the VM entrypoint and - meant to be a direct replacement of luaV_execute() */ - memcpy(sectionHeaders[PEOBJ_SECT_PDATA].name, ".pdata", sizeof(".pdata")-1); - sectionHeaders[PEOBJ_SECT_PDATA].PointerToRawData = offset; - offset += (sectionHeaders[PEOBJ_SECT_PDATA].SizeOfRawData = 1*12); // We need one function table entry of 12 bytes (.pdata function table entry is made up of 3 * 4 byte fields) - sectionHeaders[PEOBJ_SECT_PDATA].PointerToRelocations = offset; - offset += (sectionHeaders[PEOBJ_SECT_PDATA].NumberOfRelocations = 3) * PEOBJ_RELOC_SIZE; // The 3 relocations are for the 3 fields in the .pdata function table entry above - /* Flags: 40 = read, 30 = align4, 40 = initialized data. */ - sectionHeaders[PEOBJ_SECT_PDATA].Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES | IMAGE_SCN_MEM_READ; - - /* The .xdata section contains the UNWIND_INFO structure for the exported function luaV_interp(). - As the bytecode assembly routines are never invoked via 'call' I believe they are not treated as - C functions, hence inside the VM, the only function that needs to have unwind information defined - is the luaV_interp() function. (This is my current understanding) */ - memcpy(sectionHeaders[PEOBJ_SECT_XDATA].name, ".xdata", sizeof(".xdata")-1); - sectionHeaders[PEOBJ_SECT_XDATA].PointerToRawData = offset; - offset += (sectionHeaders[PEOBJ_SECT_XDATA].SizeOfRawData = 24); /* This is the size of the UNWIND_INFO we write below for our generated code */ - sectionHeaders[PEOBJ_SECT_XDATA].PointerToRelocations = offset; - offset += (sectionHeaders[PEOBJ_SECT_XDATA].NumberOfRelocations = 0) * PEOBJ_RELOC_SIZE; // No relocations - /* Flags: 40 = read, 30 = align4, 40 = initialized data. */ - sectionHeaders[PEOBJ_SECT_XDATA].Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES | IMAGE_SCN_MEM_READ; - - /* Don't think we really need this ... it just records dynasm version */ - memcpy(sectionHeaders[PEOBJ_SECT_RDATA_Z].name, ".rdata$Z", sizeof(".rdata$Z")-1); - sectionHeaders[PEOBJ_SECT_RDATA_Z].PointerToRawData = offset; - offset += (sectionHeaders[PEOBJ_SECT_RDATA_Z].SizeOfRawData = (uint32_t)strlen(ctx->dasm_ident)+1); - /* Flags: 40 = read, 30 = align4, 40 = initialized data. */ - sectionHeaders[PEOBJ_SECT_RDATA_Z].Characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES | IMAGE_SCN_MEM_READ; - - /* Fill in PE header. */ - pehdr.Machine = PEOBJ_ARCH_TARGET; - pehdr.NumberOfSections = PEOBJ_NSECTIONS; - pehdr.TimeDateStamp = 0; /* Timestamp is optional. */ - pehdr.PointerToSymbolTable = offset; - pehdr.SizeOfOptionalHeader = 0; - pehdr.Characteristics = 0; - - /* Compute the size of the symbol table: - ** @feat.00 + nsections*2 - ** + asm_start + nsym - ** + nrsym - */ - NumberOfRelocatableSymbols = ctx->nrelocsym; - pehdr.NumberOfSymbols = 1 + PEOBJ_NSECTIONS*2 + 1 + ctx->NumberOfSymbols + NumberOfRelocatableSymbols; // We count two symbols for each section header, 1 for @feat.00 and 1 for asm_start - - /* Write PE object header and all sections. */ - owrite(ctx, &pehdr, sizeof(PEheader)); - owrite(ctx, §ionHeaders, sizeof(PESectionHeader)*PEOBJ_NSECTIONS); - - /* Write .text section. */ - host_endian.u = 1; - if (host_endian.b != RAVI_ENDIAN_SELECT(1, 0)) { - fprintf(stderr, "Error: different byte order for host and target\n"); - exit(1); - } - /* emit the machine code */ - owrite(ctx, ctx->code, ctx->CodeSize); - /* emit all the symbols */ - for (i = 0; i < ctx->RelocSize; i++) { - PEreloc reloc; - reloc.VirtualAddress = (uint32_t)ctx->Reloc[i].RelativeOffset + PEOBJ_RELOC_OFS; - reloc.SymbolTableIndex = 1+2+ctx->Reloc[i].sym; /* The symbolss are after @feat.00 (1) and .text sectionheader symbols (2) in the symbol table, hence we add 3 to the symbol's offset */ - reloc.type = ctx->Reloc[i].type ? PEOBJ_RELOC_REL32 : PEOBJ_RELOC_DIR32; - owrite(ctx, &reloc, PEOBJ_RELOC_SIZE); - } - - { /* Write .pdata section. */ - /* - The .pdata section contains an array of function table entries that are used for exception handling. - It is pointed to by the exception table entry in the image data directory. The entries must be sorted - according to the function addresses (the first field in each structure) before being emitted into the - final image. The target platform determines which of the three function table entry format variations - described below is used. - For x64 and Itanium platforms, function table entries have the following format: - Offset Size Field Description - 0 4 Begin Address The RVA of the corresponding function - 4 4 End Address The RVA of the end of the function. - 8 4 Unwind Information The RVA of the unwind information. - */ - uint32_t pdata[3]; /* Start of .text, end of .text and .xdata. */ - pdata[0] = 0; - pdata[1] = (uint32_t)ctx->CodeSize; - pdata[2] = 0; // Offset into .xdata I think (TBC) - owrite(ctx, &pdata, sizeof(pdata)); - - /* - Object files contain COFF relocations, which specify how the section data should be modified when placed in the image file and subsequently loaded into memory. - */ - PEreloc reloc; - /* Entry for pdata[0] */ - reloc.VirtualAddress = 0; - reloc.SymbolTableIndex = start_symbol_index(NumberOfRelocatableSymbols); // Points to StartSymbol - reloc.type = PEOBJ_RELOC_ADDR32NB; - owrite(ctx, &reloc, PEOBJ_RELOC_SIZE); - /* Entry for pdata[1] */ - reloc.VirtualAddress = 4; - reloc.SymbolTableIndex = start_symbol_index(NumberOfRelocatableSymbols); // Points to StartSymbol - reloc.type = PEOBJ_RELOC_ADDR32NB; - owrite(ctx, &reloc, PEOBJ_RELOC_SIZE); - /* Entry for pdata[2] */ - reloc.VirtualAddress = 8; - reloc.SymbolTableIndex = xdata_symbol_index(NumberOfRelocatableSymbols); // Points to .xdata symbol - reloc.type = PEOBJ_RELOC_ADDR32NB; - owrite(ctx, &reloc, PEOBJ_RELOC_SIZE); - } - { /* Write .xdata section - this is the UNWIND_INFO data for luaV_interp() function */ - // We want to record following UNWIND_CODEes (see structure in #if block below) in reverse order - // push rbp - // push rdi; push rsi; push rbx - // push r12; push r13; push r14; push r15; (see vm_x64.dasc) -#if 0 - typedef enum _UNWIND_OP_CODES { - UWOP_PUSH_NONVOL = 0, /* info == register number */ - UWOP_ALLOC_LARGE, /* no info, alloc size in next 2 slots */ - UWOP_ALLOC_SMALL, /* info == size of allocation / 8 - 1 */ - UWOP_SET_FPREG, /* no info, FP = RSP + UNWIND_INFO.FPRegOffset*16 */ - UWOP_SAVE_NONVOL, /* info == register number, offset in next slot */ - UWOP_SAVE_NONVOL_FAR, /* info == register number, offset in next 2 slots */ - UWOP_SAVE_XMM128, /* info == XMM reg number, offset in next slot */ - UWOP_SAVE_XMM128_FAR, /* info == XMM reg number, offset in next 2 slots */ - UWOP_PUSH_MACHFRAME /* info == 0: no error-code, 1: error-code */ - } UNWIND_CODE_OPS; - - typedef union _UNWIND_CODE { - struct { - uint8_t CodeOffset; - uint8_t UnwindOp : 4; - uint8_t OpInfo : 4; - }; - uint16_t FrameOffset; - } UNWIND_CODE, *PUNWIND_CODE; - -#define UNW_FLAG_EHANDLER 0x01 -#define UNW_FLAG_UHANDLER 0x02 -#define UNW_FLAG_CHAININFO 0x04 - - typedef struct _UNWIND_INFO { - uint8_t Version : 3; - uint8_t Flags : 5; - uint8_t SizeOfProlog; - uint8_t CountOfCodes; - uint8_t FrameRegister : 4; - uint8_t FrameOffset : 4; - UNWIND_CODE UnwindCode[1]; - /* UNWIND_CODE MoreUnwindCode[((CountOfCodes + 1) & ~1) - 1]; - * union { - * OPTIONAL ULONG ExceptionHandler; - * OPTIONAL ULONG FunctionEntry; - * }; - * OPTIONAL ULONG ExceptionData[]; */ - } UNWIND_INFO, *PUNWIND_INFO; -#endif - /* Note that the registers and order below are dependent upon the order in which the - the registers were pushed in the prologue of luaV_interp() and are in the reverse order - here. This tells the OS that in case of exceptions, how to restore the registers when - unwinding the luaV_interp() function */ - uint16_t xdata[12]; - xdata[0] = 0x0001; /* Ver. 1, no handler, prolog size 0. */ - xdata[1] = 0x0009; /* Number of unwind codes, no frame pointer. */ - xdata[2] = 0x4200; /* Stack offset 4*8+8 = aword*5. */ - xdata[3] = 0xF000; /* push r15 */ - xdata[4] = 0xE000; /* push r14 */ - xdata[5] = 0xD000; /* push r13 */ - xdata[6] = 0xC000; /* push r12 */ - xdata[7] = 0x3000; /* Push rbx. */ - xdata[8] = 0x6000; /* Push rsi. */ - xdata[9] = 0x7000; /* Push rdi. */ - xdata[10] = 0x5000; /* Push rbp. */ - xdata[11] = 0; /* Alignment - is this needed? TBC */ - owrite(ctx, &xdata, sizeof(xdata)); - } - - /* Write .rdata$Z section. */ - owrite(ctx, ctx->dasm_ident, strlen(ctx->dasm_ident)+1); - - /* Write symbol table. */ - /* This is done in two passes - the first pass collects string sizes, and second pass outputs the values */ - /* Note that strtab being NULL triggers first pass behaviour (this is bad code but okay because we don't care here) */ - strtab = NULL; /* 1st pass: collect string sizes. */ - for (;;) { - strtabofs = 4; - /* Note the order in which the symbols are emitted - this order is important for the - various indices that are computed */ - /* Mark as SafeSEH compliant. */ - emit_peobj_sym(ctx, "@feat.00", 1, - PEOBJ_SECT_ABS, IMAGE_SYM_TYPE_NULL, PEOBJ_SCL_STATIC); - - emit_peobj_sym_sect(ctx, sectionHeaders, PEOBJ_SECT_TEXT); - for (i = 0; i < NumberOfRelocatableSymbols; i++) - emit_peobj_sym(ctx, ctx->RelocatableSymbolNames[i], 0, - PEOBJ_SECT_UNDEF, IMAGE_SYM_TYPE_FUNC, IMAGE_SYM_CLASS_EXTERNAL); - - emit_peobj_sym_sect(ctx, sectionHeaders, PEOBJ_SECT_PDATA); - emit_peobj_sym_sect(ctx, sectionHeaders, PEOBJ_SECT_XDATA); - - emit_peobj_sym(ctx, ctx->StartSymbol, 0, - PEOBJ_SECT_TEXT, IMAGE_SYM_TYPE_NULL, IMAGE_SYM_CLASS_EXTERNAL); - for (i = 0; i < ctx->NumberOfSymbols; i++) - emit_peobj_sym(ctx, ctx->AllSymbols[i].name, (uint32_t)ctx->AllSymbols[i].ofs, - PEOBJ_SECT_TEXT, IMAGE_SYM_TYPE_FUNC, IMAGE_SYM_CLASS_EXTERNAL); - - emit_peobj_sym_sect(ctx, sectionHeaders, PEOBJ_SECT_RDATA_Z); - - if (strtab) - break; - /* 2nd pass: alloc strtab, write syms and copy strings. */ - strtab = (char *)malloc(strtabofs); - *(uint32_t *)strtab = (uint32_t)strtabofs; - } - - /* Write string table. */ - owrite(ctx, strtab, strtabofs); -} - -#else - -void emit_peobj(BuildCtx *ctx) -{ - UNUSED(ctx); - fprintf(stderr, "Error: no PE object support for this target\n"); - exit(1); -} - -#endif diff --git a/vmbuilder/src/minilua.c b/vmbuilder/src/minilua.c deleted file mode 100644 index 7915028..0000000 --- a/vmbuilder/src/minilua.c +++ /dev/null @@ -1,7770 +0,0 @@ -/* This is a heavily customized and minimized copy of Lua 5.1.5. */ -/* It's only used to build LuaJIT. It does NOT have all standard functions! */ -/****************************************************************************** -* Copyright (C) 1994-2012 Lua.org, PUC-Rio. All rights reserved. -* -* Permission is hereby granted, free of charge, to any person obtaining -* a copy of this software and associated documentation files (the -* "Software"), to deal in the Software without restriction, including -* without limitation the rights to use, copy, modify, merge, publish, -* distribute, sublicense, and/or sell copies of the Software, and to -* permit persons to whom the Software is furnished to do so, subject to -* the following conditions: -* -* The above copyright notice and this permission notice shall be -* included in all copies or substantial portions of the Software. -* -* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -******************************************************************************/ -#ifdef _MSC_VER -typedef unsigned __int64 U64; -#else -typedef unsigned long long U64; -#endif -int _CRT_glob = 0; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -typedef enum{ -TM_INDEX, -TM_NEWINDEX, -TM_GC, -TM_MODE, -TM_EQ, -TM_ADD, -TM_SUB, -TM_MUL, -TM_DIV, -TM_MOD, -TM_POW, -TM_UNM, -TM_LEN, -TM_LT, -TM_LE, -TM_CONCAT, -TM_CALL, -TM_N -}TMS; -enum OpMode{iABC,iABx,iAsBx}; -typedef enum{ -OP_MOVE, -OP_LOADK, -OP_LOADBOOL, -OP_LOADNIL, -OP_GETUPVAL, -OP_GETGLOBAL, -OP_GETTABLE, -OP_SETGLOBAL, -OP_SETUPVAL, -OP_SETTABLE, -OP_NEWTABLE, -OP_SELF, -OP_ADD, -OP_SUB, -OP_MUL, -OP_DIV, -OP_MOD, -OP_POW, -OP_UNM, -OP_NOT, -OP_LEN, -OP_CONCAT, -OP_JMP, -OP_EQ, -OP_LT, -OP_LE, -OP_TEST, -OP_TESTSET, -OP_CALL, -OP_TAILCALL, -OP_RETURN, -OP_FORLOOP, -OP_FORPREP, -OP_TFORLOOP, -OP_SETLIST, -OP_CLOSE, -OP_CLOSURE, -OP_VARARG -}OpCode; -enum OpArgMask{ -OpArgN, -OpArgU, -OpArgR, -OpArgK -}; -typedef enum{ -VVOID, -VNIL, -VTRUE, -VFALSE, -VK, -VKNUM, -VLOCAL, -VUPVAL, -VGLOBAL, -VINDEXED, -VJMP, -VRELOCABLE, -VNONRELOC, -VCALL, -VVARARG -}expkind; -enum RESERVED{ -TK_AND=257,TK_BREAK, -TK_DO,TK_ELSE,TK_ELSEIF,TK_END,TK_FALSE,TK_FOR,TK_FUNCTION, -TK_IF,TK_IN,TK_LOCAL,TK_NIL,TK_NOT,TK_OR,TK_REPEAT, -TK_RETURN,TK_THEN,TK_TRUE,TK_UNTIL,TK_WHILE, -TK_CONCAT,TK_DOTS,TK_EQ,TK_GE,TK_LE,TK_NE,TK_NUMBER, -TK_NAME,TK_STRING,TK_EOS -}; -typedef enum BinOpr{ -OPR_ADD,OPR_SUB,OPR_MUL,OPR_DIV,OPR_MOD,OPR_POW, -OPR_CONCAT, -OPR_NE,OPR_EQ, -OPR_LT,OPR_LE,OPR_GT,OPR_GE, -OPR_AND,OPR_OR, -OPR_NOBINOPR -}BinOpr; -typedef enum UnOpr{OPR_MINUS,OPR_NOT,OPR_LEN,OPR_NOUNOPR}UnOpr; -#define LUA_QL(x)"'"x"'" -#define luai_apicheck(L,o){(void)L;} -#define lua_number2str(s,n)sprintf((s),"%.14g",(n)) -#define lua_str2number(s,p)strtod((s),(p)) -#define luai_numadd(a,b)((a)+(b)) -#define luai_numsub(a,b)((a)-(b)) -#define luai_nummul(a,b)((a)*(b)) -#define luai_numdiv(a,b)((a)/(b)) -#define luai_nummod(a,b)((a)-floor((a)/(b))*(b)) -#define luai_numpow(a,b)(pow(a,b)) -#define luai_numunm(a)(-(a)) -#define luai_numeq(a,b)((a)==(b)) -#define luai_numlt(a,b)((a)<(b)) -#define luai_numle(a,b)((a)<=(b)) -#define luai_numisnan(a)(!luai_numeq((a),(a))) -#define lua_number2int(i,d)((i)=(int)(d)) -#define lua_number2integer(i,d)((i)=(lua_Integer)(d)) -#define LUAI_THROW(L,c)longjmp((c)->b,1) -#define LUAI_TRY(L,c,a)if(setjmp((c)->b)==0){a} -#define lua_pclose(L,file)((void)((void)L,file),0) -#define lua_upvalueindex(i)((-10002)-(i)) -typedef struct lua_State lua_State; -typedef int(*lua_CFunction)(lua_State*L); -typedef const char*(*lua_Reader)(lua_State*L,void*ud,size_t*sz); -typedef void*(*lua_Alloc)(void*ud,void*ptr,size_t osize,size_t nsize); -typedef double lua_Number; -typedef ptrdiff_t lua_Integer; -static void lua_settop(lua_State*L,int idx); -static int lua_type(lua_State*L,int idx); -static const char* lua_tolstring(lua_State*L,int idx,size_t*len); -static size_t lua_objlen(lua_State*L,int idx); -static void lua_pushlstring(lua_State*L,const char*s,size_t l); -static void lua_pushcclosure(lua_State*L,lua_CFunction fn,int n); -static void lua_createtable(lua_State*L,int narr,int nrec); -static void lua_setfield(lua_State*L,int idx,const char*k); -#define lua_pop(L,n)lua_settop(L,-(n)-1) -#define lua_newtable(L)lua_createtable(L,0,0) -#define lua_pushcfunction(L,f)lua_pushcclosure(L,(f),0) -#define lua_strlen(L,i)lua_objlen(L,(i)) -#define lua_isfunction(L,n)(lua_type(L,(n))==6) -#define lua_istable(L,n)(lua_type(L,(n))==5) -#define lua_isnil(L,n)(lua_type(L,(n))==0) -#define lua_isboolean(L,n)(lua_type(L,(n))==1) -#define lua_isnone(L,n)(lua_type(L,(n))==(-1)) -#define lua_isnoneornil(L,n)(lua_type(L,(n))<=0) -#define lua_pushliteral(L,s)lua_pushlstring(L,""s,(sizeof(s)/sizeof(char))-1) -#define lua_setglobal(L,s)lua_setfield(L,(-10002),(s)) -#define lua_tostring(L,i)lua_tolstring(L,(i),NULL) -typedef struct lua_Debug lua_Debug; -typedef void(*lua_Hook)(lua_State*L,lua_Debug*ar); -struct lua_Debug{ -int event; -const char*name; -const char*namewhat; -const char*what; -const char*source; -int currentline; -int nups; -int linedefined; -int lastlinedefined; -char short_src[60]; -int i_ci; -}; -typedef unsigned int lu_int32; -typedef size_t lu_mem; -typedef ptrdiff_t l_mem; -typedef unsigned char lu_byte; -#define IntPoint(p)((unsigned int)(lu_mem)(p)) -typedef union{double u;void*s;long l;}L_Umaxalign; -typedef double l_uacNumber; -#define check_exp(c,e)(e) -#define UNUSED(x)((void)(x)) -#define cast(t,exp)((t)(exp)) -#define cast_byte(i)cast(lu_byte,(i)) -#define cast_num(i)cast(lua_Number,(i)) -#define cast_int(i)cast(int,(i)) -typedef lu_int32 Instruction; -#define condhardstacktests(x)((void)0) -typedef union GCObject GCObject; -typedef struct GCheader{ -GCObject*next;lu_byte tt;lu_byte marked; -}GCheader; -typedef union{ -GCObject*gc; -void*p; -lua_Number n; -int b; -}Value; -typedef struct lua_TValue{ -Value value;int tt; -}TValue; -#define ttisnil(o)(ttype(o)==0) -#define ttisnumber(o)(ttype(o)==3) -#define ttisstring(o)(ttype(o)==4) -#define ttistable(o)(ttype(o)==5) -#define ttisfunction(o)(ttype(o)==6) -#define ttisboolean(o)(ttype(o)==1) -#define ttisuserdata(o)(ttype(o)==7) -#define ttisthread(o)(ttype(o)==8) -#define ttislightuserdata(o)(ttype(o)==2) -#define ttype(o)((o)->tt) -#define gcvalue(o)check_exp(iscollectable(o),(o)->value.gc) -#define pvalue(o)check_exp(ttislightuserdata(o),(o)->value.p) -#define nvalue(o)check_exp(ttisnumber(o),(o)->value.n) -#define rawtsvalue(o)check_exp(ttisstring(o),&(o)->value.gc->ts) -#define tsvalue(o)(&rawtsvalue(o)->tsv) -#define rawuvalue(o)check_exp(ttisuserdata(o),&(o)->value.gc->u) -#define uvalue(o)(&rawuvalue(o)->uv) -#define clvalue(o)check_exp(ttisfunction(o),&(o)->value.gc->cl) -#define hvalue(o)check_exp(ttistable(o),&(o)->value.gc->h) -#define bvalue(o)check_exp(ttisboolean(o),(o)->value.b) -#define thvalue(o)check_exp(ttisthread(o),&(o)->value.gc->th) -#define l_isfalse(o)(ttisnil(o)||(ttisboolean(o)&&bvalue(o)==0)) -#define checkconsistency(obj) -#define checkliveness(g,obj) -#define setnilvalue(obj)((obj)->tt=0) -#define setnvalue(obj,x){TValue*i_o=(obj);i_o->value.n=(x);i_o->tt=3;} -#define setbvalue(obj,x){TValue*i_o=(obj);i_o->value.b=(x);i_o->tt=1;} -#define setsvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=4;checkliveness(G(L),i_o);} -#define setuvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=7;checkliveness(G(L),i_o);} -#define setthvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=8;checkliveness(G(L),i_o);} -#define setclvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=6;checkliveness(G(L),i_o);} -#define sethvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=5;checkliveness(G(L),i_o);} -#define setptvalue(L,obj,x){TValue*i_o=(obj);i_o->value.gc=cast(GCObject*,(x));i_o->tt=(8+1);checkliveness(G(L),i_o);} -#define setobj(L,obj1,obj2){const TValue*o2=(obj2);TValue*o1=(obj1);o1->value=o2->value;o1->tt=o2->tt;checkliveness(G(L),o1);} -#define setttype(obj,tt)(ttype(obj)=(tt)) -#define iscollectable(o)(ttype(o)>=4) -typedef TValue*StkId; -typedef union TString{ -L_Umaxalign dummy; -struct{ -GCObject*next;lu_byte tt;lu_byte marked; -lu_byte reserved; -unsigned int hash; -size_t len; -}tsv; -}TString; -#define getstr(ts)cast(const char*,(ts)+1) -#define svalue(o)getstr(rawtsvalue(o)) -typedef union Udata{ -L_Umaxalign dummy; -struct{ -GCObject*next;lu_byte tt;lu_byte marked; -struct Table*metatable; -struct Table*env; -size_t len; -}uv; -}Udata; -typedef struct Proto{ -GCObject*next;lu_byte tt;lu_byte marked; -TValue*k; -Instruction*code; -struct Proto**p; -int*lineinfo; -struct LocVar*locvars; -TString**upvalues; -TString*source; -int sizeupvalues; -int sizek; -int sizecode; -int sizelineinfo; -int sizep; -int sizelocvars; -int linedefined; -int lastlinedefined; -GCObject*gclist; -lu_byte nups; -lu_byte numparams; -lu_byte is_vararg; -lu_byte maxstacksize; -}Proto; -typedef struct LocVar{ -TString*varname; -int startpc; -int endpc; -}LocVar; -typedef struct UpVal{ -GCObject*next;lu_byte tt;lu_byte marked; -TValue*v; -union{ -TValue value; -struct{ -struct UpVal*prev; -struct UpVal*next; -}l; -}u; -}UpVal; -typedef struct CClosure{ -GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*env; -lua_CFunction f; -TValue upvalue[1]; -}CClosure; -typedef struct LClosure{ -GCObject*next;lu_byte tt;lu_byte marked;lu_byte isC;lu_byte nupvalues;GCObject*gclist;struct Table*env; -struct Proto*p; -UpVal*upvals[1]; -}LClosure; -typedef union Closure{ -CClosure c; -LClosure l; -}Closure; -#define iscfunction(o)(ttype(o)==6&&clvalue(o)->c.isC) -typedef union TKey{ -struct{ -Value value;int tt; -struct Node*next; -}nk; -TValue tvk; -}TKey; -typedef struct Node{ -TValue i_val; -TKey i_key; -}Node; -typedef struct Table{ -GCObject*next;lu_byte tt;lu_byte marked; -lu_byte flags; -lu_byte lsizenode; -struct Table*metatable; -TValue*array; -Node*node; -Node*lastfree; -GCObject*gclist; -int sizearray; -}Table; -#define lmod(s,size)(check_exp((size&(size-1))==0,(cast(int,(s)&((size)-1))))) -#define twoto(x)((size_t)1<<(x)) -#define sizenode(t)(twoto((t)->lsizenode)) -static const TValue luaO_nilobject_; -#define ceillog2(x)(luaO_log2((x)-1)+1) -static int luaO_log2(unsigned int x); -#define gfasttm(g,et,e)((et)==NULL?NULL:((et)->flags&(1u<<(e)))?NULL:luaT_gettm(et,e,(g)->tmname[e])) -#define fasttm(l,et,e)gfasttm(G(l),et,e) -static const TValue*luaT_gettm(Table*events,TMS event,TString*ename); -#define luaM_reallocv(L,b,on,n,e)((cast(size_t,(n)+1)<=((size_t)(~(size_t)0)-2)/(e))?luaM_realloc_(L,(b),(on)*(e),(n)*(e)):luaM_toobig(L)) -#define luaM_freemem(L,b,s)luaM_realloc_(L,(b),(s),0) -#define luaM_free(L,b)luaM_realloc_(L,(b),sizeof(*(b)),0) -#define luaM_freearray(L,b,n,t)luaM_reallocv(L,(b),n,0,sizeof(t)) -#define luaM_malloc(L,t)luaM_realloc_(L,NULL,0,(t)) -#define luaM_new(L,t)cast(t*,luaM_malloc(L,sizeof(t))) -#define luaM_newvector(L,n,t)cast(t*,luaM_reallocv(L,NULL,0,n,sizeof(t))) -#define luaM_growvector(L,v,nelems,size,t,limit,e)if((nelems)+1>(size))((v)=cast(t*,luaM_growaux_(L,v,&(size),sizeof(t),limit,e))) -#define luaM_reallocvector(L,v,oldn,n,t)((v)=cast(t*,luaM_reallocv(L,v,oldn,n,sizeof(t)))) -static void*luaM_realloc_(lua_State*L,void*block,size_t oldsize, -size_t size); -static void*luaM_toobig(lua_State*L); -static void*luaM_growaux_(lua_State*L,void*block,int*size, -size_t size_elem,int limit, -const char*errormsg); -typedef struct Zio ZIO; -#define char2int(c)cast(int,cast(unsigned char,(c))) -#define zgetc(z)(((z)->n--)>0?char2int(*(z)->p++):luaZ_fill(z)) -typedef struct Mbuffer{ -char*buffer; -size_t n; -size_t buffsize; -}Mbuffer; -#define luaZ_initbuffer(L,buff)((buff)->buffer=NULL,(buff)->buffsize=0) -#define luaZ_buffer(buff)((buff)->buffer) -#define luaZ_sizebuffer(buff)((buff)->buffsize) -#define luaZ_bufflen(buff)((buff)->n) -#define luaZ_resetbuffer(buff)((buff)->n=0) -#define luaZ_resizebuffer(L,buff,size)(luaM_reallocvector(L,(buff)->buffer,(buff)->buffsize,size,char),(buff)->buffsize=size) -#define luaZ_freebuffer(L,buff)luaZ_resizebuffer(L,buff,0) -struct Zio{ -size_t n; -const char*p; -lua_Reader reader; -void*data; -lua_State*L; -}; -static int luaZ_fill(ZIO*z); -struct lua_longjmp; -#define gt(L)(&L->l_gt) -#define registry(L)(&G(L)->l_registry) -typedef struct stringtable{ -GCObject**hash; -lu_int32 nuse; -int size; -}stringtable; -typedef struct CallInfo{ -StkId base; -StkId func; -StkId top; -const Instruction*savedpc; -int nresults; -int tailcalls; -}CallInfo; -#define curr_func(L)(clvalue(L->ci->func)) -#define ci_func(ci)(clvalue((ci)->func)) -#define f_isLua(ci)(!ci_func(ci)->c.isC) -#define isLua(ci)(ttisfunction((ci)->func)&&f_isLua(ci)) -typedef struct global_State{ -stringtable strt; -lua_Alloc frealloc; -void*ud; -lu_byte currentwhite; -lu_byte gcstate; -int sweepstrgc; -GCObject*rootgc; -GCObject**sweepgc; -GCObject*gray; -GCObject*grayagain; -GCObject*weak; -GCObject*tmudata; -Mbuffer buff; -lu_mem GCthreshold; -lu_mem totalbytes; -lu_mem estimate; -lu_mem gcdept; -int gcpause; -int gcstepmul; -lua_CFunction panic; -TValue l_registry; -struct lua_State*mainthread; -UpVal uvhead; -struct Table*mt[(8+1)]; -TString*tmname[TM_N]; -}global_State; -struct lua_State{ -GCObject*next;lu_byte tt;lu_byte marked; -lu_byte status; -StkId top; -StkId base; -global_State*l_G; -CallInfo*ci; -const Instruction*savedpc; -StkId stack_last; -StkId stack; -CallInfo*end_ci; -CallInfo*base_ci; -int stacksize; -int size_ci; -unsigned short nCcalls; -unsigned short baseCcalls; -lu_byte hookmask; -lu_byte allowhook; -int basehookcount; -int hookcount; -lua_Hook hook; -TValue l_gt; -TValue env; -GCObject*openupval; -GCObject*gclist; -struct lua_longjmp*errorJmp; -ptrdiff_t errfunc; -}; -#define G(L)(L->l_G) -union GCObject{ -GCheader gch; -union TString ts; -union Udata u; -union Closure cl; -struct Table h; -struct Proto p; -struct UpVal uv; -struct lua_State th; -}; -#define rawgco2ts(o)check_exp((o)->gch.tt==4,&((o)->ts)) -#define gco2ts(o)(&rawgco2ts(o)->tsv) -#define rawgco2u(o)check_exp((o)->gch.tt==7,&((o)->u)) -#define gco2u(o)(&rawgco2u(o)->uv) -#define gco2cl(o)check_exp((o)->gch.tt==6,&((o)->cl)) -#define gco2h(o)check_exp((o)->gch.tt==5,&((o)->h)) -#define gco2p(o)check_exp((o)->gch.tt==(8+1),&((o)->p)) -#define gco2uv(o)check_exp((o)->gch.tt==(8+2),&((o)->uv)) -#define ngcotouv(o)check_exp((o)==NULL||(o)->gch.tt==(8+2),&((o)->uv)) -#define gco2th(o)check_exp((o)->gch.tt==8,&((o)->th)) -#define obj2gco(v)(cast(GCObject*,(v))) -static void luaE_freethread(lua_State*L,lua_State*L1); -#define pcRel(pc,p)(cast(int,(pc)-(p)->code)-1) -#define getline_(f,pc)(((f)->lineinfo)?(f)->lineinfo[pc]:0) -#define resethookcount(L)(L->hookcount=L->basehookcount) -static void luaG_typeerror(lua_State*L,const TValue*o, -const char*opname); -static void luaG_runerror(lua_State*L,const char*fmt,...); -#define luaD_checkstack(L,n)if((char*)L->stack_last-(char*)L->top<=(n)*(int)sizeof(TValue))luaD_growstack(L,n);else condhardstacktests(luaD_reallocstack(L,L->stacksize-5-1)); -#define incr_top(L){luaD_checkstack(L,1);L->top++;} -#define savestack(L,p)((char*)(p)-(char*)L->stack) -#define restorestack(L,n)((TValue*)((char*)L->stack+(n))) -#define saveci(L,p)((char*)(p)-(char*)L->base_ci) -#define restoreci(L,n)((CallInfo*)((char*)L->base_ci+(n))) -typedef void(*Pfunc)(lua_State*L,void*ud); -static int luaD_poscall(lua_State*L,StkId firstResult); -static void luaD_reallocCI(lua_State*L,int newsize); -static void luaD_reallocstack(lua_State*L,int newsize); -static void luaD_growstack(lua_State*L,int n); -static void luaD_throw(lua_State*L,int errcode); -static void*luaM_growaux_(lua_State*L,void*block,int*size,size_t size_elems, -int limit,const char*errormsg){ -void*newblock; -int newsize; -if(*size>=limit/2){ -if(*size>=limit) -luaG_runerror(L,errormsg); -newsize=limit; -} -else{ -newsize=(*size)*2; -if(newsize<4) -newsize=4; -} -newblock=luaM_reallocv(L,block,*size,newsize,size_elems); -*size=newsize; -return newblock; -} -static void*luaM_toobig(lua_State*L){ -luaG_runerror(L,"memory allocation error: block too big"); -return NULL; -} -static void*luaM_realloc_(lua_State*L,void*block,size_t osize,size_t nsize){ -global_State*g=G(L); -block=(*g->frealloc)(g->ud,block,osize,nsize); -if(block==NULL&&nsize>0) -luaD_throw(L,4); -g->totalbytes=(g->totalbytes-osize)+nsize; -return block; -} -#define resetbits(x,m)((x)&=cast(lu_byte,~(m))) -#define setbits(x,m)((x)|=(m)) -#define testbits(x,m)((x)&(m)) -#define bitmask(b)(1<<(b)) -#define bit2mask(b1,b2)(bitmask(b1)|bitmask(b2)) -#define l_setbit(x,b)setbits(x,bitmask(b)) -#define resetbit(x,b)resetbits(x,bitmask(b)) -#define testbit(x,b)testbits(x,bitmask(b)) -#define set2bits(x,b1,b2)setbits(x,(bit2mask(b1,b2))) -#define reset2bits(x,b1,b2)resetbits(x,(bit2mask(b1,b2))) -#define test2bits(x,b1,b2)testbits(x,(bit2mask(b1,b2))) -#define iswhite(x)test2bits((x)->gch.marked,0,1) -#define isblack(x)testbit((x)->gch.marked,2) -#define isgray(x)(!isblack(x)&&!iswhite(x)) -#define otherwhite(g)(g->currentwhite^bit2mask(0,1)) -#define isdead(g,v)((v)->gch.marked&otherwhite(g)&bit2mask(0,1)) -#define changewhite(x)((x)->gch.marked^=bit2mask(0,1)) -#define gray2black(x)l_setbit((x)->gch.marked,2) -#define valiswhite(x)(iscollectable(x)&&iswhite(gcvalue(x))) -#define luaC_white(g)cast(lu_byte,(g)->currentwhite&bit2mask(0,1)) -#define luaC_checkGC(L){condhardstacktests(luaD_reallocstack(L,L->stacksize-5-1));if(G(L)->totalbytes>=G(L)->GCthreshold)luaC_step(L);} -#define luaC_barrier(L,p,v){if(valiswhite(v)&&isblack(obj2gco(p)))luaC_barrierf(L,obj2gco(p),gcvalue(v));} -#define luaC_barriert(L,t,v){if(valiswhite(v)&&isblack(obj2gco(t)))luaC_barrierback(L,t);} -#define luaC_objbarrier(L,p,o){if(iswhite(obj2gco(o))&&isblack(obj2gco(p)))luaC_barrierf(L,obj2gco(p),obj2gco(o));} -#define luaC_objbarriert(L,t,o){if(iswhite(obj2gco(o))&&isblack(obj2gco(t)))luaC_barrierback(L,t);} -static void luaC_step(lua_State*L); -static void luaC_link(lua_State*L,GCObject*o,lu_byte tt); -static void luaC_linkupval(lua_State*L,UpVal*uv); -static void luaC_barrierf(lua_State*L,GCObject*o,GCObject*v); -static void luaC_barrierback(lua_State*L,Table*t); -#define sizestring(s)(sizeof(union TString)+((s)->len+1)*sizeof(char)) -#define sizeudata(u)(sizeof(union Udata)+(u)->len) -#define luaS_new(L,s)(luaS_newlstr(L,s,strlen(s))) -#define luaS_newliteral(L,s)(luaS_newlstr(L,""s,(sizeof(s)/sizeof(char))-1)) -#define luaS_fix(s)l_setbit((s)->tsv.marked,5) -static TString*luaS_newlstr(lua_State*L,const char*str,size_t l); -#define tostring(L,o)((ttype(o)==4)||(luaV_tostring(L,o))) -#define tonumber(o,n)(ttype(o)==3||(((o)=luaV_tonumber(o,n))!=NULL)) -#define equalobj(L,o1,o2)(ttype(o1)==ttype(o2)&&luaV_equalval(L,o1,o2)) -static int luaV_equalval(lua_State*L,const TValue*t1,const TValue*t2); -static const TValue*luaV_tonumber(const TValue*obj,TValue*n); -static int luaV_tostring(lua_State*L,StkId obj); -static void luaV_execute(lua_State*L,int nexeccalls); -static void luaV_concat(lua_State*L,int total,int last); -static const TValue luaO_nilobject_={{NULL},0}; -static int luaO_int2fb(unsigned int x){ -int e=0; -while(x>=16){ -x=(x+1)>>1; -e++; -} -if(x<8)return x; -else return((e+1)<<3)|(cast_int(x)-8); -} -static int luaO_fb2int(int x){ -int e=(x>>3)&31; -if(e==0)return x; -else return((x&7)+8)<<(e-1); -} -static int luaO_log2(unsigned int x){ -static const lu_byte log_2[256]={ -0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, -6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, -7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, -7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, -8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, -8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, -8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, -8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 -}; -int l=-1; -while(x>=256){l+=8;x>>=8;} -return l+log_2[x]; -} -static int luaO_rawequalObj(const TValue*t1,const TValue*t2){ -if(ttype(t1)!=ttype(t2))return 0; -else switch(ttype(t1)){ -case 0: -return 1; -case 3: -return luai_numeq(nvalue(t1),nvalue(t2)); -case 1: -return bvalue(t1)==bvalue(t2); -case 2: -return pvalue(t1)==pvalue(t2); -default: -return gcvalue(t1)==gcvalue(t2); -} -} -static int luaO_str2d(const char*s,lua_Number*result){ -char*endptr; -*result=lua_str2number(s,&endptr); -if(endptr==s)return 0; -if(*endptr=='x'||*endptr=='X') -*result=cast_num(strtoul(s,&endptr,16)); -if(*endptr=='\0')return 1; -while(isspace(cast(unsigned char,*endptr)))endptr++; -if(*endptr!='\0')return 0; -return 1; -} -static void pushstr(lua_State*L,const char*str){ -setsvalue(L,L->top,luaS_new(L,str)); -incr_top(L); -} -static const char*luaO_pushvfstring(lua_State*L,const char*fmt,va_list argp){ -int n=1; -pushstr(L,""); -for(;;){ -const char*e=strchr(fmt,'%'); -if(e==NULL)break; -setsvalue(L,L->top,luaS_newlstr(L,fmt,e-fmt)); -incr_top(L); -switch(*(e+1)){ -case's':{ -const char*s=va_arg(argp,char*); -if(s==NULL)s="(null)"; -pushstr(L,s); -break; -} -case'c':{ -char buff[2]; -buff[0]=cast(char,va_arg(argp,int)); -buff[1]='\0'; -pushstr(L,buff); -break; -} -case'd':{ -setnvalue(L->top,cast_num(va_arg(argp,int))); -incr_top(L); -break; -} -case'f':{ -setnvalue(L->top,cast_num(va_arg(argp,l_uacNumber))); -incr_top(L); -break; -} -case'p':{ -char buff[4*sizeof(void*)+8]; -sprintf(buff,"%p",va_arg(argp,void*)); -pushstr(L,buff); -break; -} -case'%':{ -pushstr(L,"%"); -break; -} -default:{ -char buff[3]; -buff[0]='%'; -buff[1]=*(e+1); -buff[2]='\0'; -pushstr(L,buff); -break; -} -} -n+=2; -fmt=e+2; -} -pushstr(L,fmt); -luaV_concat(L,n+1,cast_int(L->top-L->base)-1); -L->top-=n; -return svalue(L->top-1); -} -static const char*luaO_pushfstring(lua_State*L,const char*fmt,...){ -const char*msg; -va_list argp; -va_start(argp,fmt); -msg=luaO_pushvfstring(L,fmt,argp); -va_end(argp); -return msg; -} -static void luaO_chunkid(char*out,const char*source,size_t bufflen){ -if(*source=='='){ -strncpy(out,source+1,bufflen); -out[bufflen-1]='\0'; -} -else{ -if(*source=='@'){ -size_t l; -source++; -bufflen-=sizeof(" '...' "); -l=strlen(source); -strcpy(out,""); -if(l>bufflen){ -source+=(l-bufflen); -strcat(out,"..."); -} -strcat(out,source); -} -else{ -size_t len=strcspn(source,"\n\r"); -bufflen-=sizeof(" [string \"...\"] "); -if(len>bufflen)len=bufflen; -strcpy(out,"[string \""); -if(source[len]!='\0'){ -strncat(out,source,len); -strcat(out,"..."); -} -else -strcat(out,source); -strcat(out,"\"]"); -} -} -} -#define gnode(t,i)(&(t)->node[i]) -#define gkey(n)(&(n)->i_key.nk) -#define gval(n)(&(n)->i_val) -#define gnext(n)((n)->i_key.nk.next) -#define key2tval(n)(&(n)->i_key.tvk) -static TValue*luaH_setnum(lua_State*L,Table*t,int key); -static const TValue*luaH_getstr(Table*t,TString*key); -static TValue*luaH_set(lua_State*L,Table*t,const TValue*key); -static const char*const luaT_typenames[]={ -"nil","boolean","userdata","number", -"string","table","function","userdata","thread", -"proto","upval" -}; -static void luaT_init(lua_State*L){ -static const char*const luaT_eventname[]={ -"__index","__newindex", -"__gc","__mode","__eq", -"__add","__sub","__mul","__div","__mod", -"__pow","__unm","__len","__lt","__le", -"__concat","__call" -}; -int i; -for(i=0;itmname[i]=luaS_new(L,luaT_eventname[i]); -luaS_fix(G(L)->tmname[i]); -} -} -static const TValue*luaT_gettm(Table*events,TMS event,TString*ename){ -const TValue*tm=luaH_getstr(events,ename); -if(ttisnil(tm)){ -events->flags|=cast_byte(1u<metatable; -break; -case 7: -mt=uvalue(o)->metatable; -break; -default: -mt=G(L)->mt[ttype(o)]; -} -return(mt?luaH_getstr(mt,G(L)->tmname[event]):(&luaO_nilobject_)); -} -#define sizeCclosure(n)(cast(int,sizeof(CClosure))+cast(int,sizeof(TValue)*((n)-1))) -#define sizeLclosure(n)(cast(int,sizeof(LClosure))+cast(int,sizeof(TValue*)*((n)-1))) -static Closure*luaF_newCclosure(lua_State*L,int nelems,Table*e){ -Closure*c=cast(Closure*,luaM_malloc(L,sizeCclosure(nelems))); -luaC_link(L,obj2gco(c),6); -c->c.isC=1; -c->c.env=e; -c->c.nupvalues=cast_byte(nelems); -return c; -} -static Closure*luaF_newLclosure(lua_State*L,int nelems,Table*e){ -Closure*c=cast(Closure*,luaM_malloc(L,sizeLclosure(nelems))); -luaC_link(L,obj2gco(c),6); -c->l.isC=0; -c->l.env=e; -c->l.nupvalues=cast_byte(nelems); -while(nelems--)c->l.upvals[nelems]=NULL; -return c; -} -static UpVal*luaF_newupval(lua_State*L){ -UpVal*uv=luaM_new(L,UpVal); -luaC_link(L,obj2gco(uv),(8+2)); -uv->v=&uv->u.value; -setnilvalue(uv->v); -return uv; -} -static UpVal*luaF_findupval(lua_State*L,StkId level){ -global_State*g=G(L); -GCObject**pp=&L->openupval; -UpVal*p; -UpVal*uv; -while(*pp!=NULL&&(p=ngcotouv(*pp))->v>=level){ -if(p->v==level){ -if(isdead(g,obj2gco(p))) -changewhite(obj2gco(p)); -return p; -} -pp=&p->next; -} -uv=luaM_new(L,UpVal); -uv->tt=(8+2); -uv->marked=luaC_white(g); -uv->v=level; -uv->next=*pp; -*pp=obj2gco(uv); -uv->u.l.prev=&g->uvhead; -uv->u.l.next=g->uvhead.u.l.next; -uv->u.l.next->u.l.prev=uv; -g->uvhead.u.l.next=uv; -return uv; -} -static void unlinkupval(UpVal*uv){ -uv->u.l.next->u.l.prev=uv->u.l.prev; -uv->u.l.prev->u.l.next=uv->u.l.next; -} -static void luaF_freeupval(lua_State*L,UpVal*uv){ -if(uv->v!=&uv->u.value) -unlinkupval(uv); -luaM_free(L,uv); -} -static void luaF_close(lua_State*L,StkId level){ -UpVal*uv; -global_State*g=G(L); -while(L->openupval!=NULL&&(uv=ngcotouv(L->openupval))->v>=level){ -GCObject*o=obj2gco(uv); -L->openupval=uv->next; -if(isdead(g,o)) -luaF_freeupval(L,uv); -else{ -unlinkupval(uv); -setobj(L,&uv->u.value,uv->v); -uv->v=&uv->u.value; -luaC_linkupval(L,uv); -} -} -} -static Proto*luaF_newproto(lua_State*L){ -Proto*f=luaM_new(L,Proto); -luaC_link(L,obj2gco(f),(8+1)); -f->k=NULL; -f->sizek=0; -f->p=NULL; -f->sizep=0; -f->code=NULL; -f->sizecode=0; -f->sizelineinfo=0; -f->sizeupvalues=0; -f->nups=0; -f->upvalues=NULL; -f->numparams=0; -f->is_vararg=0; -f->maxstacksize=0; -f->lineinfo=NULL; -f->sizelocvars=0; -f->locvars=NULL; -f->linedefined=0; -f->lastlinedefined=0; -f->source=NULL; -return f; -} -static void luaF_freeproto(lua_State*L,Proto*f){ -luaM_freearray(L,f->code,f->sizecode,Instruction); -luaM_freearray(L,f->p,f->sizep,Proto*); -luaM_freearray(L,f->k,f->sizek,TValue); -luaM_freearray(L,f->lineinfo,f->sizelineinfo,int); -luaM_freearray(L,f->locvars,f->sizelocvars,struct LocVar); -luaM_freearray(L,f->upvalues,f->sizeupvalues,TString*); -luaM_free(L,f); -} -static void luaF_freeclosure(lua_State*L,Closure*c){ -int size=(c->c.isC)?sizeCclosure(c->c.nupvalues): -sizeLclosure(c->l.nupvalues); -luaM_freemem(L,c,size); -} -#define MASK1(n,p)((~((~(Instruction)0)<>0)&MASK1(6,0))) -#define SET_OPCODE(i,o)((i)=(((i)&MASK0(6,0))|((cast(Instruction,o)<<0)&MASK1(6,0)))) -#define GETARG_A(i)(cast(int,((i)>>(0+6))&MASK1(8,0))) -#define SETARG_A(i,u)((i)=(((i)&MASK0(8,(0+6)))|((cast(Instruction,u)<<(0+6))&MASK1(8,(0+6))))) -#define GETARG_B(i)(cast(int,((i)>>(((0+6)+8)+9))&MASK1(9,0))) -#define SETARG_B(i,b)((i)=(((i)&MASK0(9,(((0+6)+8)+9)))|((cast(Instruction,b)<<(((0+6)+8)+9))&MASK1(9,(((0+6)+8)+9))))) -#define GETARG_C(i)(cast(int,((i)>>((0+6)+8))&MASK1(9,0))) -#define SETARG_C(i,b)((i)=(((i)&MASK0(9,((0+6)+8)))|((cast(Instruction,b)<<((0+6)+8))&MASK1(9,((0+6)+8))))) -#define GETARG_Bx(i)(cast(int,((i)>>((0+6)+8))&MASK1((9+9),0))) -#define SETARG_Bx(i,b)((i)=(((i)&MASK0((9+9),((0+6)+8)))|((cast(Instruction,b)<<((0+6)+8))&MASK1((9+9),((0+6)+8))))) -#define GETARG_sBx(i)(GETARG_Bx(i)-(((1<<(9+9))-1)>>1)) -#define SETARG_sBx(i,b)SETARG_Bx((i),cast(unsigned int,(b)+(((1<<(9+9))-1)>>1))) -#define CREATE_ABC(o,a,b,c)((cast(Instruction,o)<<0)|(cast(Instruction,a)<<(0+6))|(cast(Instruction,b)<<(((0+6)+8)+9))|(cast(Instruction,c)<<((0+6)+8))) -#define CREATE_ABx(o,a,bc)((cast(Instruction,o)<<0)|(cast(Instruction,a)<<(0+6))|(cast(Instruction,bc)<<((0+6)+8))) -#define ISK(x)((x)&(1<<(9-1))) -#define INDEXK(r)((int)(r)&~(1<<(9-1))) -#define RKASK(x)((x)|(1<<(9-1))) -static const lu_byte luaP_opmodes[(cast(int,OP_VARARG)+1)]; -#define getBMode(m)(cast(enum OpArgMask,(luaP_opmodes[m]>>4)&3)) -#define getCMode(m)(cast(enum OpArgMask,(luaP_opmodes[m]>>2)&3)) -#define testTMode(m)(luaP_opmodes[m]&(1<<7)) -typedef struct expdesc{ -expkind k; -union{ -struct{int info,aux;}s; -lua_Number nval; -}u; -int t; -int f; -}expdesc; -typedef struct upvaldesc{ -lu_byte k; -lu_byte info; -}upvaldesc; -struct BlockCnt; -typedef struct FuncState{ -Proto*f; -Table*h; -struct FuncState*prev; -struct LexState*ls; -struct lua_State*L; -struct BlockCnt*bl; -int pc; -int lasttarget; -int jpc; -int freereg; -int nk; -int np; -short nlocvars; -lu_byte nactvar; -upvaldesc upvalues[60]; -unsigned short actvar[200]; -}FuncState; -static Proto*luaY_parser(lua_State*L,ZIO*z,Mbuffer*buff, -const char*name); -struct lua_longjmp{ -struct lua_longjmp*previous; -jmp_buf b; -volatile int status; -}; -static void luaD_seterrorobj(lua_State*L,int errcode,StkId oldtop){ -switch(errcode){ -case 4:{ -setsvalue(L,oldtop,luaS_newliteral(L,"not enough memory")); -break; -} -case 5:{ -setsvalue(L,oldtop,luaS_newliteral(L,"error in error handling")); -break; -} -case 3: -case 2:{ -setobj(L,oldtop,L->top-1); -break; -} -} -L->top=oldtop+1; -} -static void restore_stack_limit(lua_State*L){ -if(L->size_ci>20000){ -int inuse=cast_int(L->ci-L->base_ci); -if(inuse+1<20000) -luaD_reallocCI(L,20000); -} -} -static void resetstack(lua_State*L,int status){ -L->ci=L->base_ci; -L->base=L->ci->base; -luaF_close(L,L->base); -luaD_seterrorobj(L,status,L->base); -L->nCcalls=L->baseCcalls; -L->allowhook=1; -restore_stack_limit(L); -L->errfunc=0; -L->errorJmp=NULL; -} -static void luaD_throw(lua_State*L,int errcode){ -if(L->errorJmp){ -L->errorJmp->status=errcode; -LUAI_THROW(L,L->errorJmp); -} -else{ -L->status=cast_byte(errcode); -if(G(L)->panic){ -resetstack(L,errcode); -G(L)->panic(L); -} -exit(EXIT_FAILURE); -} -} -static int luaD_rawrunprotected(lua_State*L,Pfunc f,void*ud){ -struct lua_longjmp lj; -lj.status=0; -lj.previous=L->errorJmp; -L->errorJmp=&lj; -LUAI_TRY(L,&lj, -(*f)(L,ud); -); -L->errorJmp=lj.previous; -return lj.status; -} -static void correctstack(lua_State*L,TValue*oldstack){ -CallInfo*ci; -GCObject*up; -L->top=(L->top-oldstack)+L->stack; -for(up=L->openupval;up!=NULL;up=up->gch.next) -gco2uv(up)->v=(gco2uv(up)->v-oldstack)+L->stack; -for(ci=L->base_ci;ci<=L->ci;ci++){ -ci->top=(ci->top-oldstack)+L->stack; -ci->base=(ci->base-oldstack)+L->stack; -ci->func=(ci->func-oldstack)+L->stack; -} -L->base=(L->base-oldstack)+L->stack; -} -static void luaD_reallocstack(lua_State*L,int newsize){ -TValue*oldstack=L->stack; -int realsize=newsize+1+5; -luaM_reallocvector(L,L->stack,L->stacksize,realsize,TValue); -L->stacksize=realsize; -L->stack_last=L->stack+newsize; -correctstack(L,oldstack); -} -static void luaD_reallocCI(lua_State*L,int newsize){ -CallInfo*oldci=L->base_ci; -luaM_reallocvector(L,L->base_ci,L->size_ci,newsize,CallInfo); -L->size_ci=newsize; -L->ci=(L->ci-oldci)+L->base_ci; -L->end_ci=L->base_ci+L->size_ci-1; -} -static void luaD_growstack(lua_State*L,int n){ -if(n<=L->stacksize) -luaD_reallocstack(L,2*L->stacksize); -else -luaD_reallocstack(L,L->stacksize+n); -} -static CallInfo*growCI(lua_State*L){ -if(L->size_ci>20000) -luaD_throw(L,5); -else{ -luaD_reallocCI(L,2*L->size_ci); -if(L->size_ci>20000) -luaG_runerror(L,"stack overflow"); -} -return++L->ci; -} -static StkId adjust_varargs(lua_State*L,Proto*p,int actual){ -int i; -int nfixargs=p->numparams; -Table*htab=NULL; -StkId base,fixed; -for(;actualtop++); -fixed=L->top-actual; -base=L->top; -for(i=0;itop++,fixed+i); -setnilvalue(fixed+i); -} -if(htab){ -sethvalue(L,L->top++,htab); -} -return base; -} -static StkId tryfuncTM(lua_State*L,StkId func){ -const TValue*tm=luaT_gettmbyobj(L,func,TM_CALL); -StkId p; -ptrdiff_t funcr=savestack(L,func); -if(!ttisfunction(tm)) -luaG_typeerror(L,func,"call"); -for(p=L->top;p>func;p--)setobj(L,p,p-1); -incr_top(L); -func=restorestack(L,funcr); -setobj(L,func,tm); -return func; -} -#define inc_ci(L)((L->ci==L->end_ci)?growCI(L):(condhardstacktests(luaD_reallocCI(L,L->size_ci)),++L->ci)) -static int luaD_precall(lua_State*L,StkId func,int nresults){ -LClosure*cl; -ptrdiff_t funcr; -if(!ttisfunction(func)) -func=tryfuncTM(L,func); -funcr=savestack(L,func); -cl=&clvalue(func)->l; -L->ci->savedpc=L->savedpc; -if(!cl->isC){ -CallInfo*ci; -StkId st,base; -Proto*p=cl->p; -luaD_checkstack(L,p->maxstacksize); -func=restorestack(L,funcr); -if(!p->is_vararg){ -base=func+1; -if(L->top>base+p->numparams) -L->top=base+p->numparams; -} -else{ -int nargs=cast_int(L->top-func)-1; -base=adjust_varargs(L,p,nargs); -func=restorestack(L,funcr); -} -ci=inc_ci(L); -ci->func=func; -L->base=ci->base=base; -ci->top=L->base+p->maxstacksize; -L->savedpc=p->code; -ci->tailcalls=0; -ci->nresults=nresults; -for(st=L->top;sttop;st++) -setnilvalue(st); -L->top=ci->top; -return 0; -} -else{ -CallInfo*ci; -int n; -luaD_checkstack(L,20); -ci=inc_ci(L); -ci->func=restorestack(L,funcr); -L->base=ci->base=ci->func+1; -ci->top=L->top+20; -ci->nresults=nresults; -n=(*curr_func(L)->c.f)(L); -if(n<0) -return 2; -else{ -luaD_poscall(L,L->top-n); -return 1; -} -} -} -static int luaD_poscall(lua_State*L,StkId firstResult){ -StkId res; -int wanted,i; -CallInfo*ci; -ci=L->ci--; -res=ci->func; -wanted=ci->nresults; -L->base=(ci-1)->base; -L->savedpc=(ci-1)->savedpc; -for(i=wanted;i!=0&&firstResulttop;i--) -setobj(L,res++,firstResult++); -while(i-->0) -setnilvalue(res++); -L->top=res; -return(wanted-(-1)); -} -static void luaD_call(lua_State*L,StkId func,int nResults){ -if(++L->nCcalls>=200){ -if(L->nCcalls==200) -luaG_runerror(L,"C stack overflow"); -else if(L->nCcalls>=(200+(200>>3))) -luaD_throw(L,5); -} -if(luaD_precall(L,func,nResults)==0) -luaV_execute(L,1); -L->nCcalls--; -luaC_checkGC(L); -} -static int luaD_pcall(lua_State*L,Pfunc func,void*u, -ptrdiff_t old_top,ptrdiff_t ef){ -int status; -unsigned short oldnCcalls=L->nCcalls; -ptrdiff_t old_ci=saveci(L,L->ci); -lu_byte old_allowhooks=L->allowhook; -ptrdiff_t old_errfunc=L->errfunc; -L->errfunc=ef; -status=luaD_rawrunprotected(L,func,u); -if(status!=0){ -StkId oldtop=restorestack(L,old_top); -luaF_close(L,oldtop); -luaD_seterrorobj(L,status,oldtop); -L->nCcalls=oldnCcalls; -L->ci=restoreci(L,old_ci); -L->base=L->ci->base; -L->savedpc=L->ci->savedpc; -L->allowhook=old_allowhooks; -restore_stack_limit(L); -} -L->errfunc=old_errfunc; -return status; -} -struct SParser{ -ZIO*z; -Mbuffer buff; -const char*name; -}; -static void f_parser(lua_State*L,void*ud){ -int i; -Proto*tf; -Closure*cl; -struct SParser*p=cast(struct SParser*,ud); -luaC_checkGC(L); -tf=luaY_parser(L,p->z, -&p->buff,p->name); -cl=luaF_newLclosure(L,tf->nups,hvalue(gt(L))); -cl->l.p=tf; -for(i=0;inups;i++) -cl->l.upvals[i]=luaF_newupval(L); -setclvalue(L,L->top,cl); -incr_top(L); -} -static int luaD_protectedparser(lua_State*L,ZIO*z,const char*name){ -struct SParser p; -int status; -p.z=z;p.name=name; -luaZ_initbuffer(L,&p.buff); -status=luaD_pcall(L,f_parser,&p,savestack(L,L->top),L->errfunc); -luaZ_freebuffer(L,&p.buff); -return status; -} -static void luaS_resize(lua_State*L,int newsize){ -GCObject**newhash; -stringtable*tb; -int i; -if(G(L)->gcstate==2) -return; -newhash=luaM_newvector(L,newsize,GCObject*); -tb=&G(L)->strt; -for(i=0;isize;i++){ -GCObject*p=tb->hash[i]; -while(p){ -GCObject*next=p->gch.next; -unsigned int h=gco2ts(p)->hash; -int h1=lmod(h,newsize); -p->gch.next=newhash[h1]; -newhash[h1]=p; -p=next; -} -} -luaM_freearray(L,tb->hash,tb->size,TString*); -tb->size=newsize; -tb->hash=newhash; -} -static TString*newlstr(lua_State*L,const char*str,size_t l, -unsigned int h){ -TString*ts; -stringtable*tb; -if(l+1>(((size_t)(~(size_t)0)-2)-sizeof(TString))/sizeof(char)) -luaM_toobig(L); -ts=cast(TString*,luaM_malloc(L,(l+1)*sizeof(char)+sizeof(TString))); -ts->tsv.len=l; -ts->tsv.hash=h; -ts->tsv.marked=luaC_white(G(L)); -ts->tsv.tt=4; -ts->tsv.reserved=0; -memcpy(ts+1,str,l*sizeof(char)); -((char*)(ts+1))[l]='\0'; -tb=&G(L)->strt; -h=lmod(h,tb->size); -ts->tsv.next=tb->hash[h]; -tb->hash[h]=obj2gco(ts); -tb->nuse++; -if(tb->nuse>cast(lu_int32,tb->size)&&tb->size<=(INT_MAX-2)/2) -luaS_resize(L,tb->size*2); -return ts; -} -static TString*luaS_newlstr(lua_State*L,const char*str,size_t l){ -GCObject*o; -unsigned int h=cast(unsigned int,l); -size_t step=(l>>5)+1; -size_t l1; -for(l1=l;l1>=step;l1-=step) -h=h^((h<<5)+(h>>2)+cast(unsigned char,str[l1-1])); -for(o=G(L)->strt.hash[lmod(h,G(L)->strt.size)]; -o!=NULL; -o=o->gch.next){ -TString*ts=rawgco2ts(o); -if(ts->tsv.len==l&&(memcmp(str,getstr(ts),l)==0)){ -if(isdead(G(L),o))changewhite(o); -return ts; -} -} -return newlstr(L,str,l,h); -} -static Udata*luaS_newudata(lua_State*L,size_t s,Table*e){ -Udata*u; -if(s>((size_t)(~(size_t)0)-2)-sizeof(Udata)) -luaM_toobig(L); -u=cast(Udata*,luaM_malloc(L,s+sizeof(Udata))); -u->uv.marked=luaC_white(G(L)); -u->uv.tt=7; -u->uv.len=s; -u->uv.metatable=NULL; -u->uv.env=e; -u->uv.next=G(L)->mainthread->next; -G(L)->mainthread->next=obj2gco(u); -return u; -} -#define hashpow2(t,n)(gnode(t,lmod((n),sizenode(t)))) -#define hashstr(t,str)hashpow2(t,(str)->tsv.hash) -#define hashboolean(t,p)hashpow2(t,p) -#define hashmod(t,n)(gnode(t,((n)%((sizenode(t)-1)|1)))) -#define hashpointer(t,p)hashmod(t,IntPoint(p)) -static const Node dummynode_={ -{{NULL},0}, -{{{NULL},0,NULL}} -}; -static Node*hashnum(const Table*t,lua_Number n){ -unsigned int a[cast_int(sizeof(lua_Number)/sizeof(int))]; -int i; -if(luai_numeq(n,0)) -return gnode(t,0); -memcpy(a,&n,sizeof(a)); -for(i=1;isizearray) -return i-1; -else{ -Node*n=mainposition(t,key); -do{ -if(luaO_rawequalObj(key2tval(n),key)|| -(ttype(gkey(n))==(8+3)&&iscollectable(key)&& -gcvalue(gkey(n))==gcvalue(key))){ -i=cast_int(n-gnode(t,0)); -return i+t->sizearray; -} -else n=gnext(n); -}while(n); -luaG_runerror(L,"invalid key to "LUA_QL("next")); -return 0; -} -} -static int luaH_next(lua_State*L,Table*t,StkId key){ -int i=findindex(L,t,key); -for(i++;isizearray;i++){ -if(!ttisnil(&t->array[i])){ -setnvalue(key,cast_num(i+1)); -setobj(L,key+1,&t->array[i]); -return 1; -} -} -for(i-=t->sizearray;i<(int)sizenode(t);i++){ -if(!ttisnil(gval(gnode(t,i)))){ -setobj(L,key,key2tval(gnode(t,i))); -setobj(L,key+1,gval(gnode(t,i))); -return 1; -} -} -return 0; -} -static int computesizes(int nums[],int*narray){ -int i; -int twotoi; -int a=0; -int na=0; -int n=0; -for(i=0,twotoi=1;twotoi/2<*narray;i++,twotoi*=2){ -if(nums[i]>0){ -a+=nums[i]; -if(a>twotoi/2){ -n=twotoi; -na=a; -} -} -if(a==*narray)break; -} -*narray=n; -return na; -} -static int countint(const TValue*key,int*nums){ -int k=arrayindex(key); -if(0t->sizearray){ -lim=t->sizearray; -if(i>lim) -break; -} -for(;i<=lim;i++){ -if(!ttisnil(&t->array[i-1])) -lc++; -} -nums[lg]+=lc; -ause+=lc; -} -return ause; -} -static int numusehash(const Table*t,int*nums,int*pnasize){ -int totaluse=0; -int ause=0; -int i=sizenode(t); -while(i--){ -Node*n=&t->node[i]; -if(!ttisnil(gval(n))){ -ause+=countint(key2tval(n),nums); -totaluse++; -} -} -*pnasize+=ause; -return totaluse; -} -static void setarrayvector(lua_State*L,Table*t,int size){ -int i; -luaM_reallocvector(L,t->array,t->sizearray,size,TValue); -for(i=t->sizearray;iarray[i]); -t->sizearray=size; -} -static void setnodevector(lua_State*L,Table*t,int size){ -int lsize; -if(size==0){ -t->node=cast(Node*,(&dummynode_)); -lsize=0; -} -else{ -int i; -lsize=ceillog2(size); -if(lsize>(32-2)) -luaG_runerror(L,"table overflow"); -size=twoto(lsize); -t->node=luaM_newvector(L,size,Node); -for(i=0;ilsizenode=cast_byte(lsize); -t->lastfree=gnode(t,size); -} -static void resize(lua_State*L,Table*t,int nasize,int nhsize){ -int i; -int oldasize=t->sizearray; -int oldhsize=t->lsizenode; -Node*nold=t->node; -if(nasize>oldasize) -setarrayvector(L,t,nasize); -setnodevector(L,t,nhsize); -if(nasizesizearray=nasize; -for(i=nasize;iarray[i])) -setobj(L,luaH_setnum(L,t,i+1),&t->array[i]); -} -luaM_reallocvector(L,t->array,oldasize,nasize,TValue); -} -for(i=twoto(oldhsize)-1;i>=0;i--){ -Node*old=nold+i; -if(!ttisnil(gval(old))) -setobj(L,luaH_set(L,t,key2tval(old)),gval(old)); -} -if(nold!=(&dummynode_)) -luaM_freearray(L,nold,twoto(oldhsize),Node); -} -static void luaH_resizearray(lua_State*L,Table*t,int nasize){ -int nsize=(t->node==(&dummynode_))?0:sizenode(t); -resize(L,t,nasize,nsize); -} -static void rehash(lua_State*L,Table*t,const TValue*ek){ -int nasize,na; -int nums[(32-2)+1]; -int i; -int totaluse; -for(i=0;i<=(32-2);i++)nums[i]=0; -nasize=numusearray(t,nums); -totaluse=nasize; -totaluse+=numusehash(t,nums,&nasize); -nasize+=countint(ek,nums); -totaluse++; -na=computesizes(nums,&nasize); -resize(L,t,nasize,totaluse-na); -} -static Table*luaH_new(lua_State*L,int narray,int nhash){ -Table*t=luaM_new(L,Table); -luaC_link(L,obj2gco(t),5); -t->metatable=NULL; -t->flags=cast_byte(~0); -t->array=NULL; -t->sizearray=0; -t->lsizenode=0; -t->node=cast(Node*,(&dummynode_)); -setarrayvector(L,t,narray); -setnodevector(L,t,nhash); -return t; -} -static void luaH_free(lua_State*L,Table*t){ -if(t->node!=(&dummynode_)) -luaM_freearray(L,t->node,sizenode(t),Node); -luaM_freearray(L,t->array,t->sizearray,TValue); -luaM_free(L,t); -} -static Node*getfreepos(Table*t){ -while(t->lastfree-->t->node){ -if(ttisnil(gkey(t->lastfree))) -return t->lastfree; -} -return NULL; -} -static TValue*newkey(lua_State*L,Table*t,const TValue*key){ -Node*mp=mainposition(t,key); -if(!ttisnil(gval(mp))||mp==(&dummynode_)){ -Node*othern; -Node*n=getfreepos(t); -if(n==NULL){ -rehash(L,t,key); -return luaH_set(L,t,key); -} -othern=mainposition(t,key2tval(mp)); -if(othern!=mp){ -while(gnext(othern)!=mp)othern=gnext(othern); -gnext(othern)=n; -*n=*mp; -gnext(mp)=NULL; -setnilvalue(gval(mp)); -} -else{ -gnext(n)=gnext(mp); -gnext(mp)=n; -mp=n; -} -} -gkey(mp)->value=key->value;gkey(mp)->tt=key->tt; -luaC_barriert(L,t,key); -return gval(mp); -} -static const TValue*luaH_getnum(Table*t,int key){ -if(cast(unsigned int,key)-1sizearray)) -return&t->array[key-1]; -else{ -lua_Number nk=cast_num(key); -Node*n=hashnum(t,nk); -do{ -if(ttisnumber(gkey(n))&&luai_numeq(nvalue(gkey(n)),nk)) -return gval(n); -else n=gnext(n); -}while(n); -return(&luaO_nilobject_); -} -} -static const TValue*luaH_getstr(Table*t,TString*key){ -Node*n=hashstr(t,key); -do{ -if(ttisstring(gkey(n))&&rawtsvalue(gkey(n))==key) -return gval(n); -else n=gnext(n); -}while(n); -return(&luaO_nilobject_); -} -static const TValue*luaH_get(Table*t,const TValue*key){ -switch(ttype(key)){ -case 0:return(&luaO_nilobject_); -case 4:return luaH_getstr(t,rawtsvalue(key)); -case 3:{ -int k; -lua_Number n=nvalue(key); -lua_number2int(k,n); -if(luai_numeq(cast_num(k),nvalue(key))) -return luaH_getnum(t,k); -} -default:{ -Node*n=mainposition(t,key); -do{ -if(luaO_rawequalObj(key2tval(n),key)) -return gval(n); -else n=gnext(n); -}while(n); -return(&luaO_nilobject_); -} -} -} -static TValue*luaH_set(lua_State*L,Table*t,const TValue*key){ -const TValue*p=luaH_get(t,key); -t->flags=0; -if(p!=(&luaO_nilobject_)) -return cast(TValue*,p); -else{ -if(ttisnil(key))luaG_runerror(L,"table index is nil"); -else if(ttisnumber(key)&&luai_numisnan(nvalue(key))) -luaG_runerror(L,"table index is NaN"); -return newkey(L,t,key); -} -} -static TValue*luaH_setnum(lua_State*L,Table*t,int key){ -const TValue*p=luaH_getnum(t,key); -if(p!=(&luaO_nilobject_)) -return cast(TValue*,p); -else{ -TValue k; -setnvalue(&k,cast_num(key)); -return newkey(L,t,&k); -} -} -static TValue*luaH_setstr(lua_State*L,Table*t,TString*key){ -const TValue*p=luaH_getstr(t,key); -if(p!=(&luaO_nilobject_)) -return cast(TValue*,p); -else{ -TValue k; -setsvalue(L,&k,key); -return newkey(L,t,&k); -} -} -static int unbound_search(Table*t,unsigned int j){ -unsigned int i=j; -j++; -while(!ttisnil(luaH_getnum(t,j))){ -i=j; -j*=2; -if(j>cast(unsigned int,(INT_MAX-2))){ -i=1; -while(!ttisnil(luaH_getnum(t,i)))i++; -return i-1; -} -} -while(j-i>1){ -unsigned int m=(i+j)/2; -if(ttisnil(luaH_getnum(t,m)))j=m; -else i=m; -} -return i; -} -static int luaH_getn(Table*t){ -unsigned int j=t->sizearray; -if(j>0&&ttisnil(&t->array[j-1])){ -unsigned int i=0; -while(j-i>1){ -unsigned int m=(i+j)/2; -if(ttisnil(&t->array[m-1]))j=m; -else i=m; -} -return i; -} -else if(t->node==(&dummynode_)) -return j; -else return unbound_search(t,j); -} -#define makewhite(g,x)((x)->gch.marked=cast_byte(((x)->gch.marked&cast_byte(~(bitmask(2)|bit2mask(0,1))))|luaC_white(g))) -#define white2gray(x)reset2bits((x)->gch.marked,0,1) -#define black2gray(x)resetbit((x)->gch.marked,2) -#define stringmark(s)reset2bits((s)->tsv.marked,0,1) -#define isfinalized(u)testbit((u)->marked,3) -#define markfinalized(u)l_setbit((u)->marked,3) -#define markvalue(g,o){checkconsistency(o);if(iscollectable(o)&&iswhite(gcvalue(o)))reallymarkobject(g,gcvalue(o));} -#define markobject(g,t){if(iswhite(obj2gco(t)))reallymarkobject(g,obj2gco(t));} -#define setthreshold(g)(g->GCthreshold=(g->estimate/100)*g->gcpause) -static void removeentry(Node*n){ -if(iscollectable(gkey(n))) -setttype(gkey(n),(8+3)); -} -static void reallymarkobject(global_State*g,GCObject*o){ -white2gray(o); -switch(o->gch.tt){ -case 4:{ -return; -} -case 7:{ -Table*mt=gco2u(o)->metatable; -gray2black(o); -if(mt)markobject(g,mt); -markobject(g,gco2u(o)->env); -return; -} -case(8+2):{ -UpVal*uv=gco2uv(o); -markvalue(g,uv->v); -if(uv->v==&uv->u.value) -gray2black(o); -return; -} -case 6:{ -gco2cl(o)->c.gclist=g->gray; -g->gray=o; -break; -} -case 5:{ -gco2h(o)->gclist=g->gray; -g->gray=o; -break; -} -case 8:{ -gco2th(o)->gclist=g->gray; -g->gray=o; -break; -} -case(8+1):{ -gco2p(o)->gclist=g->gray; -g->gray=o; -break; -} -default:; -} -} -static void marktmu(global_State*g){ -GCObject*u=g->tmudata; -if(u){ -do{ -u=u->gch.next; -makewhite(g,u); -reallymarkobject(g,u); -}while(u!=g->tmudata); -} -} -static size_t luaC_separateudata(lua_State*L,int all){ -global_State*g=G(L); -size_t deadmem=0; -GCObject**p=&g->mainthread->next; -GCObject*curr; -while((curr=*p)!=NULL){ -if(!(iswhite(curr)||all)||isfinalized(gco2u(curr))) -p=&curr->gch.next; -else if(fasttm(L,gco2u(curr)->metatable,TM_GC)==NULL){ -markfinalized(gco2u(curr)); -p=&curr->gch.next; -} -else{ -deadmem+=sizeudata(gco2u(curr)); -markfinalized(gco2u(curr)); -*p=curr->gch.next; -if(g->tmudata==NULL) -g->tmudata=curr->gch.next=curr; -else{ -curr->gch.next=g->tmudata->gch.next; -g->tmudata->gch.next=curr; -g->tmudata=curr; -} -} -} -return deadmem; -} -static int traversetable(global_State*g,Table*h){ -int i; -int weakkey=0; -int weakvalue=0; -const TValue*mode; -if(h->metatable) -markobject(g,h->metatable); -mode=gfasttm(g,h->metatable,TM_MODE); -if(mode&&ttisstring(mode)){ -weakkey=(strchr(svalue(mode),'k')!=NULL); -weakvalue=(strchr(svalue(mode),'v')!=NULL); -if(weakkey||weakvalue){ -h->marked&=~(bitmask(3)|bitmask(4)); -h->marked|=cast_byte((weakkey<<3)| -(weakvalue<<4)); -h->gclist=g->weak; -g->weak=obj2gco(h); -} -} -if(weakkey&&weakvalue)return 1; -if(!weakvalue){ -i=h->sizearray; -while(i--) -markvalue(g,&h->array[i]); -} -i=sizenode(h); -while(i--){ -Node*n=gnode(h,i); -if(ttisnil(gval(n))) -removeentry(n); -else{ -if(!weakkey)markvalue(g,gkey(n)); -if(!weakvalue)markvalue(g,gval(n)); -} -} -return weakkey||weakvalue; -} -static void traverseproto(global_State*g,Proto*f){ -int i; -if(f->source)stringmark(f->source); -for(i=0;isizek;i++) -markvalue(g,&f->k[i]); -for(i=0;isizeupvalues;i++){ -if(f->upvalues[i]) -stringmark(f->upvalues[i]); -} -for(i=0;isizep;i++){ -if(f->p[i]) -markobject(g,f->p[i]); -} -for(i=0;isizelocvars;i++){ -if(f->locvars[i].varname) -stringmark(f->locvars[i].varname); -} -} -static void traverseclosure(global_State*g,Closure*cl){ -markobject(g,cl->c.env); -if(cl->c.isC){ -int i; -for(i=0;ic.nupvalues;i++) -markvalue(g,&cl->c.upvalue[i]); -} -else{ -int i; -markobject(g,cl->l.p); -for(i=0;il.nupvalues;i++) -markobject(g,cl->l.upvals[i]); -} -} -static void checkstacksizes(lua_State*L,StkId max){ -int ci_used=cast_int(L->ci-L->base_ci); -int s_used=cast_int(max-L->stack); -if(L->size_ci>20000) -return; -if(4*ci_usedsize_ci&&2*8size_ci) -luaD_reallocCI(L,L->size_ci/2); -condhardstacktests(luaD_reallocCI(L,ci_used+1)); -if(4*s_usedstacksize&& -2*((2*20)+5)stacksize) -luaD_reallocstack(L,L->stacksize/2); -condhardstacktests(luaD_reallocstack(L,s_used)); -} -static void traversestack(global_State*g,lua_State*l){ -StkId o,lim; -CallInfo*ci; -markvalue(g,gt(l)); -lim=l->top; -for(ci=l->base_ci;ci<=l->ci;ci++){ -if(limtop)lim=ci->top; -} -for(o=l->stack;otop;o++) -markvalue(g,o); -for(;o<=lim;o++) -setnilvalue(o); -checkstacksizes(l,lim); -} -static l_mem propagatemark(global_State*g){ -GCObject*o=g->gray; -gray2black(o); -switch(o->gch.tt){ -case 5:{ -Table*h=gco2h(o); -g->gray=h->gclist; -if(traversetable(g,h)) -black2gray(o); -return sizeof(Table)+sizeof(TValue)*h->sizearray+ -sizeof(Node)*sizenode(h); -} -case 6:{ -Closure*cl=gco2cl(o); -g->gray=cl->c.gclist; -traverseclosure(g,cl); -return(cl->c.isC)?sizeCclosure(cl->c.nupvalues): -sizeLclosure(cl->l.nupvalues); -} -case 8:{ -lua_State*th=gco2th(o); -g->gray=th->gclist; -th->gclist=g->grayagain; -g->grayagain=o; -black2gray(o); -traversestack(g,th); -return sizeof(lua_State)+sizeof(TValue)*th->stacksize+ -sizeof(CallInfo)*th->size_ci; -} -case(8+1):{ -Proto*p=gco2p(o); -g->gray=p->gclist; -traverseproto(g,p); -return sizeof(Proto)+sizeof(Instruction)*p->sizecode+ -sizeof(Proto*)*p->sizep+ -sizeof(TValue)*p->sizek+ -sizeof(int)*p->sizelineinfo+ -sizeof(LocVar)*p->sizelocvars+ -sizeof(TString*)*p->sizeupvalues; -} -default:return 0; -} -} -static size_t propagateall(global_State*g){ -size_t m=0; -while(g->gray)m+=propagatemark(g); -return m; -} -static int iscleared(const TValue*o,int iskey){ -if(!iscollectable(o))return 0; -if(ttisstring(o)){ -stringmark(rawtsvalue(o)); -return 0; -} -return iswhite(gcvalue(o))|| -(ttisuserdata(o)&&(!iskey&&isfinalized(uvalue(o)))); -} -static void cleartable(GCObject*l){ -while(l){ -Table*h=gco2h(l); -int i=h->sizearray; -if(testbit(h->marked,4)){ -while(i--){ -TValue*o=&h->array[i]; -if(iscleared(o,0)) -setnilvalue(o); -} -} -i=sizenode(h); -while(i--){ -Node*n=gnode(h,i); -if(!ttisnil(gval(n))&& -(iscleared(key2tval(n),1)||iscleared(gval(n),0))){ -setnilvalue(gval(n)); -removeentry(n); -} -} -l=h->gclist; -} -} -static void freeobj(lua_State*L,GCObject*o){ -switch(o->gch.tt){ -case(8+1):luaF_freeproto(L,gco2p(o));break; -case 6:luaF_freeclosure(L,gco2cl(o));break; -case(8+2):luaF_freeupval(L,gco2uv(o));break; -case 5:luaH_free(L,gco2h(o));break; -case 8:{ -luaE_freethread(L,gco2th(o)); -break; -} -case 4:{ -G(L)->strt.nuse--; -luaM_freemem(L,o,sizestring(gco2ts(o))); -break; -} -case 7:{ -luaM_freemem(L,o,sizeudata(gco2u(o))); -break; -} -default:; -} -} -#define sweepwholelist(L,p)sweeplist(L,p,((lu_mem)(~(lu_mem)0)-2)) -static GCObject**sweeplist(lua_State*L,GCObject**p,lu_mem count){ -GCObject*curr; -global_State*g=G(L); -int deadmask=otherwhite(g); -while((curr=*p)!=NULL&&count-->0){ -if(curr->gch.tt==8) -sweepwholelist(L,&gco2th(curr)->openupval); -if((curr->gch.marked^bit2mask(0,1))&deadmask){ -makewhite(g,curr); -p=&curr->gch.next; -} -else{ -*p=curr->gch.next; -if(curr==g->rootgc) -g->rootgc=curr->gch.next; -freeobj(L,curr); -} -} -return p; -} -static void checkSizes(lua_State*L){ -global_State*g=G(L); -if(g->strt.nusestrt.size/4)&& -g->strt.size>32*2) -luaS_resize(L,g->strt.size/2); -if(luaZ_sizebuffer(&g->buff)>32*2){ -size_t newsize=luaZ_sizebuffer(&g->buff)/2; -luaZ_resizebuffer(L,&g->buff,newsize); -} -} -static void GCTM(lua_State*L){ -global_State*g=G(L); -GCObject*o=g->tmudata->gch.next; -Udata*udata=rawgco2u(o); -const TValue*tm; -if(o==g->tmudata) -g->tmudata=NULL; -else -g->tmudata->gch.next=udata->uv.next; -udata->uv.next=g->mainthread->next; -g->mainthread->next=o; -makewhite(g,o); -tm=fasttm(L,udata->uv.metatable,TM_GC); -if(tm!=NULL){ -lu_byte oldah=L->allowhook; -lu_mem oldt=g->GCthreshold; -L->allowhook=0; -g->GCthreshold=2*g->totalbytes; -setobj(L,L->top,tm); -setuvalue(L,L->top+1,udata); -L->top+=2; -luaD_call(L,L->top-2,0); -L->allowhook=oldah; -g->GCthreshold=oldt; -} -} -static void luaC_callGCTM(lua_State*L){ -while(G(L)->tmudata) -GCTM(L); -} -static void luaC_freeall(lua_State*L){ -global_State*g=G(L); -int i; -g->currentwhite=bit2mask(0,1)|bitmask(6); -sweepwholelist(L,&g->rootgc); -for(i=0;istrt.size;i++) -sweepwholelist(L,&g->strt.hash[i]); -} -static void markmt(global_State*g){ -int i; -for(i=0;i<(8+1);i++) -if(g->mt[i])markobject(g,g->mt[i]); -} -static void markroot(lua_State*L){ -global_State*g=G(L); -g->gray=NULL; -g->grayagain=NULL; -g->weak=NULL; -markobject(g,g->mainthread); -markvalue(g,gt(g->mainthread)); -markvalue(g,registry(L)); -markmt(g); -g->gcstate=1; -} -static void remarkupvals(global_State*g){ -UpVal*uv; -for(uv=g->uvhead.u.l.next;uv!=&g->uvhead;uv=uv->u.l.next){ -if(isgray(obj2gco(uv))) -markvalue(g,uv->v); -} -} -static void atomic(lua_State*L){ -global_State*g=G(L); -size_t udsize; -remarkupvals(g); -propagateall(g); -g->gray=g->weak; -g->weak=NULL; -markobject(g,L); -markmt(g); -propagateall(g); -g->gray=g->grayagain; -g->grayagain=NULL; -propagateall(g); -udsize=luaC_separateudata(L,0); -marktmu(g); -udsize+=propagateall(g); -cleartable(g->weak); -g->currentwhite=cast_byte(otherwhite(g)); -g->sweepstrgc=0; -g->sweepgc=&g->rootgc; -g->gcstate=2; -g->estimate=g->totalbytes-udsize; -} -static l_mem singlestep(lua_State*L){ -global_State*g=G(L); -switch(g->gcstate){ -case 0:{ -markroot(L); -return 0; -} -case 1:{ -if(g->gray) -return propagatemark(g); -else{ -atomic(L); -return 0; -} -} -case 2:{ -lu_mem old=g->totalbytes; -sweepwholelist(L,&g->strt.hash[g->sweepstrgc++]); -if(g->sweepstrgc>=g->strt.size) -g->gcstate=3; -g->estimate-=old-g->totalbytes; -return 10; -} -case 3:{ -lu_mem old=g->totalbytes; -g->sweepgc=sweeplist(L,g->sweepgc,40); -if(*g->sweepgc==NULL){ -checkSizes(L); -g->gcstate=4; -} -g->estimate-=old-g->totalbytes; -return 40*10; -} -case 4:{ -if(g->tmudata){ -GCTM(L); -if(g->estimate>100) -g->estimate-=100; -return 100; -} -else{ -g->gcstate=0; -g->gcdept=0; -return 0; -} -} -default:return 0; -} -} -static void luaC_step(lua_State*L){ -global_State*g=G(L); -l_mem lim=(1024u/100)*g->gcstepmul; -if(lim==0) -lim=(((lu_mem)(~(lu_mem)0)-2)-1)/2; -g->gcdept+=g->totalbytes-g->GCthreshold; -do{ -lim-=singlestep(L); -if(g->gcstate==0) -break; -}while(lim>0); -if(g->gcstate!=0){ -if(g->gcdept<1024u) -g->GCthreshold=g->totalbytes+1024u; -else{ -g->gcdept-=1024u; -g->GCthreshold=g->totalbytes; -} -} -else{ -setthreshold(g); -} -} -static void luaC_barrierf(lua_State*L,GCObject*o,GCObject*v){ -global_State*g=G(L); -if(g->gcstate==1) -reallymarkobject(g,v); -else -makewhite(g,o); -} -static void luaC_barrierback(lua_State*L,Table*t){ -global_State*g=G(L); -GCObject*o=obj2gco(t); -black2gray(o); -t->gclist=g->grayagain; -g->grayagain=o; -} -static void luaC_link(lua_State*L,GCObject*o,lu_byte tt){ -global_State*g=G(L); -o->gch.next=g->rootgc; -g->rootgc=o; -o->gch.marked=luaC_white(g); -o->gch.tt=tt; -} -static void luaC_linkupval(lua_State*L,UpVal*uv){ -global_State*g=G(L); -GCObject*o=obj2gco(uv); -o->gch.next=g->rootgc; -g->rootgc=o; -if(isgray(o)){ -if(g->gcstate==1){ -gray2black(o); -luaC_barrier(L,uv,uv->v); -} -else{ -makewhite(g,o); -} -} -} -typedef union{ -lua_Number r; -TString*ts; -}SemInfo; -typedef struct Token{ -int token; -SemInfo seminfo; -}Token; -typedef struct LexState{ -int current; -int linenumber; -int lastline; -Token t; -Token lookahead; -struct FuncState*fs; -struct lua_State*L; -ZIO*z; -Mbuffer*buff; -TString*source; -char decpoint; -}LexState; -static void luaX_init(lua_State*L); -static void luaX_lexerror(LexState*ls,const char*msg,int token); -#define state_size(x)(sizeof(x)+0) -#define fromstate(l)(cast(lu_byte*,(l))-0) -#define tostate(l)(cast(lua_State*,cast(lu_byte*,l)+0)) -typedef struct LG{ -lua_State l; -global_State g; -}LG; -static void stack_init(lua_State*L1,lua_State*L){ -L1->base_ci=luaM_newvector(L,8,CallInfo); -L1->ci=L1->base_ci; -L1->size_ci=8; -L1->end_ci=L1->base_ci+L1->size_ci-1; -L1->stack=luaM_newvector(L,(2*20)+5,TValue); -L1->stacksize=(2*20)+5; -L1->top=L1->stack; -L1->stack_last=L1->stack+(L1->stacksize-5)-1; -L1->ci->func=L1->top; -setnilvalue(L1->top++); -L1->base=L1->ci->base=L1->top; -L1->ci->top=L1->top+20; -} -static void freestack(lua_State*L,lua_State*L1){ -luaM_freearray(L,L1->base_ci,L1->size_ci,CallInfo); -luaM_freearray(L,L1->stack,L1->stacksize,TValue); -} -static void f_luaopen(lua_State*L,void*ud){ -global_State*g=G(L); -UNUSED(ud); -stack_init(L,L); -sethvalue(L,gt(L),luaH_new(L,0,2)); -sethvalue(L,registry(L),luaH_new(L,0,2)); -luaS_resize(L,32); -luaT_init(L); -luaX_init(L); -luaS_fix(luaS_newliteral(L,"not enough memory")); -g->GCthreshold=4*g->totalbytes; -} -static void preinit_state(lua_State*L,global_State*g){ -G(L)=g; -L->stack=NULL; -L->stacksize=0; -L->errorJmp=NULL; -L->hook=NULL; -L->hookmask=0; -L->basehookcount=0; -L->allowhook=1; -resethookcount(L); -L->openupval=NULL; -L->size_ci=0; -L->nCcalls=L->baseCcalls=0; -L->status=0; -L->base_ci=L->ci=NULL; -L->savedpc=NULL; -L->errfunc=0; -setnilvalue(gt(L)); -} -static void close_state(lua_State*L){ -global_State*g=G(L); -luaF_close(L,L->stack); -luaC_freeall(L); -luaM_freearray(L,G(L)->strt.hash,G(L)->strt.size,TString*); -luaZ_freebuffer(L,&g->buff); -freestack(L,L); -(*g->frealloc)(g->ud,fromstate(L),state_size(LG),0); -} -static void luaE_freethread(lua_State*L,lua_State*L1){ -luaF_close(L1,L1->stack); -freestack(L,L1); -luaM_freemem(L,fromstate(L1),state_size(lua_State)); -} -static lua_State*lua_newstate(lua_Alloc f,void*ud){ -int i; -lua_State*L; -global_State*g; -void*l=(*f)(ud,NULL,0,state_size(LG)); -if(l==NULL)return NULL; -L=tostate(l); -g=&((LG*)L)->g; -L->next=NULL; -L->tt=8; -g->currentwhite=bit2mask(0,5); -L->marked=luaC_white(g); -set2bits(L->marked,5,6); -preinit_state(L,g); -g->frealloc=f; -g->ud=ud; -g->mainthread=L; -g->uvhead.u.l.prev=&g->uvhead; -g->uvhead.u.l.next=&g->uvhead; -g->GCthreshold=0; -g->strt.size=0; -g->strt.nuse=0; -g->strt.hash=NULL; -setnilvalue(registry(L)); -luaZ_initbuffer(L,&g->buff); -g->panic=NULL; -g->gcstate=0; -g->rootgc=obj2gco(L); -g->sweepstrgc=0; -g->sweepgc=&g->rootgc; -g->gray=NULL; -g->grayagain=NULL; -g->weak=NULL; -g->tmudata=NULL; -g->totalbytes=sizeof(LG); -g->gcpause=200; -g->gcstepmul=200; -g->gcdept=0; -for(i=0;i<(8+1);i++)g->mt[i]=NULL; -if(luaD_rawrunprotected(L,f_luaopen,NULL)!=0){ -close_state(L); -L=NULL; -} -else -{} -return L; -} -static void callallgcTM(lua_State*L,void*ud){ -UNUSED(ud); -luaC_callGCTM(L); -} -static void lua_close(lua_State*L){ -L=G(L)->mainthread; -luaF_close(L,L->stack); -luaC_separateudata(L,1); -L->errfunc=0; -do{ -L->ci=L->base_ci; -L->base=L->top=L->ci->base; -L->nCcalls=L->baseCcalls=0; -}while(luaD_rawrunprotected(L,callallgcTM,NULL)!=0); -close_state(L); -} -#define getcode(fs,e)((fs)->f->code[(e)->u.s.info]) -#define luaK_codeAsBx(fs,o,A,sBx)luaK_codeABx(fs,o,A,(sBx)+(((1<<(9+9))-1)>>1)) -#define luaK_setmultret(fs,e)luaK_setreturns(fs,e,(-1)) -static int luaK_codeABx(FuncState*fs,OpCode o,int A,unsigned int Bx); -static int luaK_codeABC(FuncState*fs,OpCode o,int A,int B,int C); -static void luaK_setreturns(FuncState*fs,expdesc*e,int nresults); -static void luaK_patchtohere(FuncState*fs,int list); -static void luaK_concat(FuncState*fs,int*l1,int l2); -static int currentpc(lua_State*L,CallInfo*ci){ -if(!isLua(ci))return-1; -if(ci==L->ci) -ci->savedpc=L->savedpc; -return pcRel(ci->savedpc,ci_func(ci)->l.p); -} -static int currentline(lua_State*L,CallInfo*ci){ -int pc=currentpc(L,ci); -if(pc<0) -return-1; -else -return getline_(ci_func(ci)->l.p,pc); -} -static int lua_getstack(lua_State*L,int level,lua_Debug*ar){ -int status; -CallInfo*ci; -for(ci=L->ci;level>0&&ci>L->base_ci;ci--){ -level--; -if(f_isLua(ci)) -level-=ci->tailcalls; -} -if(level==0&&ci>L->base_ci){ -status=1; -ar->i_ci=cast_int(ci-L->base_ci); -} -else if(level<0){ -status=1; -ar->i_ci=0; -} -else status=0; -return status; -} -static Proto*getluaproto(CallInfo*ci){ -return(isLua(ci)?ci_func(ci)->l.p:NULL); -} -static void funcinfo(lua_Debug*ar,Closure*cl){ -if(cl->c.isC){ -ar->source="=[C]"; -ar->linedefined=-1; -ar->lastlinedefined=-1; -ar->what="C"; -} -else{ -ar->source=getstr(cl->l.p->source); -ar->linedefined=cl->l.p->linedefined; -ar->lastlinedefined=cl->l.p->lastlinedefined; -ar->what=(ar->linedefined==0)?"main":"Lua"; -} -luaO_chunkid(ar->short_src,ar->source,60); -} -static void info_tailcall(lua_Debug*ar){ -ar->name=ar->namewhat=""; -ar->what="tail"; -ar->lastlinedefined=ar->linedefined=ar->currentline=-1; -ar->source="=(tail call)"; -luaO_chunkid(ar->short_src,ar->source,60); -ar->nups=0; -} -static void collectvalidlines(lua_State*L,Closure*f){ -if(f==NULL||f->c.isC){ -setnilvalue(L->top); -} -else{ -Table*t=luaH_new(L,0,0); -int*lineinfo=f->l.p->lineinfo; -int i; -for(i=0;il.p->sizelineinfo;i++) -setbvalue(luaH_setnum(L,t,lineinfo[i]),1); -sethvalue(L,L->top,t); -} -incr_top(L); -} -static int auxgetinfo(lua_State*L,const char*what,lua_Debug*ar, -Closure*f,CallInfo*ci){ -int status=1; -if(f==NULL){ -info_tailcall(ar); -return status; -} -for(;*what;what++){ -switch(*what){ -case'S':{ -funcinfo(ar,f); -break; -} -case'l':{ -ar->currentline=(ci)?currentline(L,ci):-1; -break; -} -case'u':{ -ar->nups=f->c.nupvalues; -break; -} -case'n':{ -ar->namewhat=(ci)?NULL:NULL; -if(ar->namewhat==NULL){ -ar->namewhat=""; -ar->name=NULL; -} -break; -} -case'L': -case'f': -break; -default:status=0; -} -} -return status; -} -static int lua_getinfo(lua_State*L,const char*what,lua_Debug*ar){ -int status; -Closure*f=NULL; -CallInfo*ci=NULL; -if(*what=='>'){ -StkId func=L->top-1; -luai_apicheck(L,ttisfunction(func)); -what++; -f=clvalue(func); -L->top--; -} -else if(ar->i_ci!=0){ -ci=L->base_ci+ar->i_ci; -f=clvalue(ci->func); -} -status=auxgetinfo(L,what,ar,f,ci); -if(strchr(what,'f')){ -if(f==NULL)setnilvalue(L->top); -else setclvalue(L,L->top,f); -incr_top(L); -} -if(strchr(what,'L')) -collectvalidlines(L,f); -return status; -} -static int isinstack(CallInfo*ci,const TValue*o){ -StkId p; -for(p=ci->base;ptop;p++) -if(o==p)return 1; -return 0; -} -static void luaG_typeerror(lua_State*L,const TValue*o,const char*op){ -const char*name=NULL; -const char*t=luaT_typenames[ttype(o)]; -const char*kind=(isinstack(L->ci,o))? -NULL: -NULL; -if(kind) -luaG_runerror(L,"attempt to %s %s "LUA_QL("%s")" (a %s value)", -op,kind,name,t); -else -luaG_runerror(L,"attempt to %s a %s value",op,t); -} -static void luaG_concaterror(lua_State*L,StkId p1,StkId p2){ -if(ttisstring(p1)||ttisnumber(p1))p1=p2; -luaG_typeerror(L,p1,"concatenate"); -} -static void luaG_aritherror(lua_State*L,const TValue*p1,const TValue*p2){ -TValue temp; -if(luaV_tonumber(p1,&temp)==NULL) -p2=p1; -luaG_typeerror(L,p2,"perform arithmetic on"); -} -static int luaG_ordererror(lua_State*L,const TValue*p1,const TValue*p2){ -const char*t1=luaT_typenames[ttype(p1)]; -const char*t2=luaT_typenames[ttype(p2)]; -if(t1[2]==t2[2]) -luaG_runerror(L,"attempt to compare two %s values",t1); -else -luaG_runerror(L,"attempt to compare %s with %s",t1,t2); -return 0; -} -static void addinfo(lua_State*L,const char*msg){ -CallInfo*ci=L->ci; -if(isLua(ci)){ -char buff[60]; -int line=currentline(L,ci); -luaO_chunkid(buff,getstr(getluaproto(ci)->source),60); -luaO_pushfstring(L,"%s:%d: %s",buff,line,msg); -} -} -static void luaG_errormsg(lua_State*L){ -if(L->errfunc!=0){ -StkId errfunc=restorestack(L,L->errfunc); -if(!ttisfunction(errfunc))luaD_throw(L,5); -setobj(L,L->top,L->top-1); -setobj(L,L->top-1,errfunc); -incr_top(L); -luaD_call(L,L->top-2,1); -} -luaD_throw(L,2); -} -static void luaG_runerror(lua_State*L,const char*fmt,...){ -va_list argp; -va_start(argp,fmt); -addinfo(L,luaO_pushvfstring(L,fmt,argp)); -va_end(argp); -luaG_errormsg(L); -} -static int luaZ_fill(ZIO*z){ -size_t size; -lua_State*L=z->L; -const char*buff; -buff=z->reader(L,z->data,&size); -if(buff==NULL||size==0)return(-1); -z->n=size-1; -z->p=buff; -return char2int(*(z->p++)); -} -static void luaZ_init(lua_State*L,ZIO*z,lua_Reader reader,void*data){ -z->L=L; -z->reader=reader; -z->data=data; -z->n=0; -z->p=NULL; -} -static char*luaZ_openspace(lua_State*L,Mbuffer*buff,size_t n){ -if(n>buff->buffsize){ -if(n<32)n=32; -luaZ_resizebuffer(L,buff,n); -} -return buff->buffer; -} -#define opmode(t,a,b,c,m)(((t)<<7)|((a)<<6)|((b)<<4)|((c)<<2)|(m)) -static const lu_byte luaP_opmodes[(cast(int,OP_VARARG)+1)]={ -opmode(0,1,OpArgR,OpArgN,iABC) -,opmode(0,1,OpArgK,OpArgN,iABx) -,opmode(0,1,OpArgU,OpArgU,iABC) -,opmode(0,1,OpArgR,OpArgN,iABC) -,opmode(0,1,OpArgU,OpArgN,iABC) -,opmode(0,1,OpArgK,OpArgN,iABx) -,opmode(0,1,OpArgR,OpArgK,iABC) -,opmode(0,0,OpArgK,OpArgN,iABx) -,opmode(0,0,OpArgU,OpArgN,iABC) -,opmode(0,0,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgU,OpArgU,iABC) -,opmode(0,1,OpArgR,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgK,OpArgK,iABC) -,opmode(0,1,OpArgR,OpArgN,iABC) -,opmode(0,1,OpArgR,OpArgN,iABC) -,opmode(0,1,OpArgR,OpArgN,iABC) -,opmode(0,1,OpArgR,OpArgR,iABC) -,opmode(0,0,OpArgR,OpArgN,iAsBx) -,opmode(1,0,OpArgK,OpArgK,iABC) -,opmode(1,0,OpArgK,OpArgK,iABC) -,opmode(1,0,OpArgK,OpArgK,iABC) -,opmode(1,1,OpArgR,OpArgU,iABC) -,opmode(1,1,OpArgR,OpArgU,iABC) -,opmode(0,1,OpArgU,OpArgU,iABC) -,opmode(0,1,OpArgU,OpArgU,iABC) -,opmode(0,0,OpArgU,OpArgN,iABC) -,opmode(0,1,OpArgR,OpArgN,iAsBx) -,opmode(0,1,OpArgR,OpArgN,iAsBx) -,opmode(1,0,OpArgN,OpArgU,iABC) -,opmode(0,0,OpArgU,OpArgU,iABC) -,opmode(0,0,OpArgN,OpArgN,iABC) -,opmode(0,1,OpArgU,OpArgN,iABx) -,opmode(0,1,OpArgU,OpArgN,iABC) -}; -#define next(ls)(ls->current=zgetc(ls->z)) -#define currIsNewline(ls)(ls->current=='\n'||ls->current=='\r') -static const char*const luaX_tokens[]={ -"and","break","do","else","elseif", -"end","false","for","function","if", -"in","local","nil","not","or","repeat", -"return","then","true","until","while", -"..","...","==",">=","<=","~=", -"","","","", -NULL -}; -#define save_and_next(ls)(save(ls,ls->current),next(ls)) -static void save(LexState*ls,int c){ -Mbuffer*b=ls->buff; -if(b->n+1>b->buffsize){ -size_t newsize; -if(b->buffsize>=((size_t)(~(size_t)0)-2)/2) -luaX_lexerror(ls,"lexical element too long",0); -newsize=b->buffsize*2; -luaZ_resizebuffer(ls->L,b,newsize); -} -b->buffer[b->n++]=cast(char,c); -} -static void luaX_init(lua_State*L){ -int i; -for(i=0;i<(cast(int,TK_WHILE-257+1));i++){ -TString*ts=luaS_new(L,luaX_tokens[i]); -luaS_fix(ts); -ts->tsv.reserved=cast_byte(i+1); -} -} -static const char*luaX_token2str(LexState*ls,int token){ -if(token<257){ -return(iscntrl(token))?luaO_pushfstring(ls->L,"char(%d)",token): -luaO_pushfstring(ls->L,"%c",token); -} -else -return luaX_tokens[token-257]; -} -static const char*txtToken(LexState*ls,int token){ -switch(token){ -case TK_NAME: -case TK_STRING: -case TK_NUMBER: -save(ls,'\0'); -return luaZ_buffer(ls->buff); -default: -return luaX_token2str(ls,token); -} -} -static void luaX_lexerror(LexState*ls,const char*msg,int token){ -char buff[80]; -luaO_chunkid(buff,getstr(ls->source),80); -msg=luaO_pushfstring(ls->L,"%s:%d: %s",buff,ls->linenumber,msg); -if(token) -luaO_pushfstring(ls->L,"%s near "LUA_QL("%s"),msg,txtToken(ls,token)); -luaD_throw(ls->L,3); -} -static void luaX_syntaxerror(LexState*ls,const char*msg){ -luaX_lexerror(ls,msg,ls->t.token); -} -static TString*luaX_newstring(LexState*ls,const char*str,size_t l){ -lua_State*L=ls->L; -TString*ts=luaS_newlstr(L,str,l); -TValue*o=luaH_setstr(L,ls->fs->h,ts); -if(ttisnil(o)){ -setbvalue(o,1); -luaC_checkGC(L); -} -return ts; -} -static void inclinenumber(LexState*ls){ -int old=ls->current; -next(ls); -if(currIsNewline(ls)&&ls->current!=old) -next(ls); -if(++ls->linenumber>=(INT_MAX-2)) -luaX_syntaxerror(ls,"chunk has too many lines"); -} -static void luaX_setinput(lua_State*L,LexState*ls,ZIO*z,TString*source){ -ls->decpoint='.'; -ls->L=L; -ls->lookahead.token=TK_EOS; -ls->z=z; -ls->fs=NULL; -ls->linenumber=1; -ls->lastline=1; -ls->source=source; -luaZ_resizebuffer(ls->L,ls->buff,32); -next(ls); -} -static int check_next(LexState*ls,const char*set){ -if(!strchr(set,ls->current)) -return 0; -save_and_next(ls); -return 1; -} -static void buffreplace(LexState*ls,char from,char to){ -size_t n=luaZ_bufflen(ls->buff); -char*p=luaZ_buffer(ls->buff); -while(n--) -if(p[n]==from)p[n]=to; -} -static void read_numeral(LexState*ls,SemInfo*seminfo){ -do{ -save_and_next(ls); -}while(isdigit(ls->current)||ls->current=='.'); -if(check_next(ls,"Ee")) -check_next(ls,"+-"); -while(isalnum(ls->current)||ls->current=='_') -save_and_next(ls); -save(ls,'\0'); -buffreplace(ls,'.',ls->decpoint); -if(!luaO_str2d(luaZ_buffer(ls->buff),&seminfo->r)) -luaX_lexerror(ls,"malformed number",TK_NUMBER); -} -static int skip_sep(LexState*ls){ -int count=0; -int s=ls->current; -save_and_next(ls); -while(ls->current=='='){ -save_and_next(ls); -count++; -} -return(ls->current==s)?count:(-count)-1; -} -static void read_long_string(LexState*ls,SemInfo*seminfo,int sep){ -int cont=0; -(void)(cont); -save_and_next(ls); -if(currIsNewline(ls)) -inclinenumber(ls); -for(;;){ -switch(ls->current){ -case(-1): -luaX_lexerror(ls,(seminfo)?"unfinished long string": -"unfinished long comment",TK_EOS); -break; -case']':{ -if(skip_sep(ls)==sep){ -save_and_next(ls); -goto endloop; -} -break; -} -case'\n': -case'\r':{ -save(ls,'\n'); -inclinenumber(ls); -if(!seminfo)luaZ_resetbuffer(ls->buff); -break; -} -default:{ -if(seminfo)save_and_next(ls); -else next(ls); -} -} -}endloop: -if(seminfo) -seminfo->ts=luaX_newstring(ls,luaZ_buffer(ls->buff)+(2+sep), -luaZ_bufflen(ls->buff)-2*(2+sep)); -} -static void read_string(LexState*ls,int del,SemInfo*seminfo){ -save_and_next(ls); -while(ls->current!=del){ -switch(ls->current){ -case(-1): -luaX_lexerror(ls,"unfinished string",TK_EOS); -continue; -case'\n': -case'\r': -luaX_lexerror(ls,"unfinished string",TK_STRING); -continue; -case'\\':{ -int c; -next(ls); -switch(ls->current){ -case'a':c='\a';break; -case'b':c='\b';break; -case'f':c='\f';break; -case'n':c='\n';break; -case'r':c='\r';break; -case't':c='\t';break; -case'v':c='\v';break; -case'\n': -case'\r':save(ls,'\n');inclinenumber(ls);continue; -case(-1):continue; -default:{ -if(!isdigit(ls->current)) -save_and_next(ls); -else{ -int i=0; -c=0; -do{ -c=10*c+(ls->current-'0'); -next(ls); -}while(++i<3&&isdigit(ls->current)); -if(c>UCHAR_MAX) -luaX_lexerror(ls,"escape sequence too large",TK_STRING); -save(ls,c); -} -continue; -} -} -save(ls,c); -next(ls); -continue; -} -default: -save_and_next(ls); -} -} -save_and_next(ls); -seminfo->ts=luaX_newstring(ls,luaZ_buffer(ls->buff)+1, -luaZ_bufflen(ls->buff)-2); -} -static int llex(LexState*ls,SemInfo*seminfo){ -luaZ_resetbuffer(ls->buff); -for(;;){ -switch(ls->current){ -case'\n': -case'\r':{ -inclinenumber(ls); -continue; -} -case'-':{ -next(ls); -if(ls->current!='-')return'-'; -next(ls); -if(ls->current=='['){ -int sep=skip_sep(ls); -luaZ_resetbuffer(ls->buff); -if(sep>=0){ -read_long_string(ls,NULL,sep); -luaZ_resetbuffer(ls->buff); -continue; -} -} -while(!currIsNewline(ls)&&ls->current!=(-1)) -next(ls); -continue; -} -case'[':{ -int sep=skip_sep(ls); -if(sep>=0){ -read_long_string(ls,seminfo,sep); -return TK_STRING; -} -else if(sep==-1)return'['; -else luaX_lexerror(ls,"invalid long string delimiter",TK_STRING); -} -case'=':{ -next(ls); -if(ls->current!='=')return'='; -else{next(ls);return TK_EQ;} -} -case'<':{ -next(ls); -if(ls->current!='=')return'<'; -else{next(ls);return TK_LE;} -} -case'>':{ -next(ls); -if(ls->current!='=')return'>'; -else{next(ls);return TK_GE;} -} -case'~':{ -next(ls); -if(ls->current!='=')return'~'; -else{next(ls);return TK_NE;} -} -case'"': -case'\'':{ -read_string(ls,ls->current,seminfo); -return TK_STRING; -} -case'.':{ -save_and_next(ls); -if(check_next(ls,".")){ -if(check_next(ls,".")) -return TK_DOTS; -else return TK_CONCAT; -} -else if(!isdigit(ls->current))return'.'; -else{ -read_numeral(ls,seminfo); -return TK_NUMBER; -} -} -case(-1):{ -return TK_EOS; -} -default:{ -if(isspace(ls->current)){ -next(ls); -continue; -} -else if(isdigit(ls->current)){ -read_numeral(ls,seminfo); -return TK_NUMBER; -} -else if(isalpha(ls->current)||ls->current=='_'){ -TString*ts; -do{ -save_and_next(ls); -}while(isalnum(ls->current)||ls->current=='_'); -ts=luaX_newstring(ls,luaZ_buffer(ls->buff), -luaZ_bufflen(ls->buff)); -if(ts->tsv.reserved>0) -return ts->tsv.reserved-1+257; -else{ -seminfo->ts=ts; -return TK_NAME; -} -} -else{ -int c=ls->current; -next(ls); -return c; -} -} -} -} -} -static void luaX_next(LexState*ls){ -ls->lastline=ls->linenumber; -if(ls->lookahead.token!=TK_EOS){ -ls->t=ls->lookahead; -ls->lookahead.token=TK_EOS; -} -else -ls->t.token=llex(ls,&ls->t.seminfo); -} -static void luaX_lookahead(LexState*ls){ -ls->lookahead.token=llex(ls,&ls->lookahead.seminfo); -} -#define hasjumps(e)((e)->t!=(e)->f) -static int isnumeral(expdesc*e){ -return(e->k==VKNUM&&e->t==(-1)&&e->f==(-1)); -} -static void luaK_nil(FuncState*fs,int from,int n){ -Instruction*previous; -if(fs->pc>fs->lasttarget){ -if(fs->pc==0){ -if(from>=fs->nactvar) -return; -} -else{ -previous=&fs->f->code[fs->pc-1]; -if(GET_OPCODE(*previous)==OP_LOADNIL){ -int pfrom=GETARG_A(*previous); -int pto=GETARG_B(*previous); -if(pfrom<=from&&from<=pto+1){ -if(from+n-1>pto) -SETARG_B(*previous,from+n-1); -return; -} -} -} -} -luaK_codeABC(fs,OP_LOADNIL,from,from+n-1,0); -} -static int luaK_jump(FuncState*fs){ -int jpc=fs->jpc; -int j; -fs->jpc=(-1); -j=luaK_codeAsBx(fs,OP_JMP,0,(-1)); -luaK_concat(fs,&j,jpc); -return j; -} -static void luaK_ret(FuncState*fs,int first,int nret){ -luaK_codeABC(fs,OP_RETURN,first,nret+1,0); -} -static int condjump(FuncState*fs,OpCode op,int A,int B,int C){ -luaK_codeABC(fs,op,A,B,C); -return luaK_jump(fs); -} -static void fixjump(FuncState*fs,int pc,int dest){ -Instruction*jmp=&fs->f->code[pc]; -int offset=dest-(pc+1); -if(abs(offset)>(((1<<(9+9))-1)>>1)) -luaX_syntaxerror(fs->ls,"control structure too long"); -SETARG_sBx(*jmp,offset); -} -static int luaK_getlabel(FuncState*fs){ -fs->lasttarget=fs->pc; -return fs->pc; -} -static int getjump(FuncState*fs,int pc){ -int offset=GETARG_sBx(fs->f->code[pc]); -if(offset==(-1)) -return(-1); -else -return(pc+1)+offset; -} -static Instruction*getjumpcontrol(FuncState*fs,int pc){ -Instruction*pi=&fs->f->code[pc]; -if(pc>=1&&testTMode(GET_OPCODE(*(pi-1)))) -return pi-1; -else -return pi; -} -static int need_value(FuncState*fs,int list){ -for(;list!=(-1);list=getjump(fs,list)){ -Instruction i=*getjumpcontrol(fs,list); -if(GET_OPCODE(i)!=OP_TESTSET)return 1; -} -return 0; -} -static int patchtestreg(FuncState*fs,int node,int reg){ -Instruction*i=getjumpcontrol(fs,node); -if(GET_OPCODE(*i)!=OP_TESTSET) -return 0; -if(reg!=((1<<8)-1)&®!=GETARG_B(*i)) -SETARG_A(*i,reg); -else -*i=CREATE_ABC(OP_TEST,GETARG_B(*i),0,GETARG_C(*i)); -return 1; -} -static void removevalues(FuncState*fs,int list){ -for(;list!=(-1);list=getjump(fs,list)) -patchtestreg(fs,list,((1<<8)-1)); -} -static void patchlistaux(FuncState*fs,int list,int vtarget,int reg, -int dtarget){ -while(list!=(-1)){ -int next=getjump(fs,list); -if(patchtestreg(fs,list,reg)) -fixjump(fs,list,vtarget); -else -fixjump(fs,list,dtarget); -list=next; -} -} -static void dischargejpc(FuncState*fs){ -patchlistaux(fs,fs->jpc,fs->pc,((1<<8)-1),fs->pc); -fs->jpc=(-1); -} -static void luaK_patchlist(FuncState*fs,int list,int target){ -if(target==fs->pc) -luaK_patchtohere(fs,list); -else{ -patchlistaux(fs,list,target,((1<<8)-1),target); -} -} -static void luaK_patchtohere(FuncState*fs,int list){ -luaK_getlabel(fs); -luaK_concat(fs,&fs->jpc,list); -} -static void luaK_concat(FuncState*fs,int*l1,int l2){ -if(l2==(-1))return; -else if(*l1==(-1)) -*l1=l2; -else{ -int list=*l1; -int next; -while((next=getjump(fs,list))!=(-1)) -list=next; -fixjump(fs,list,l2); -} -} -static void luaK_checkstack(FuncState*fs,int n){ -int newstack=fs->freereg+n; -if(newstack>fs->f->maxstacksize){ -if(newstack>=250) -luaX_syntaxerror(fs->ls,"function or expression too complex"); -fs->f->maxstacksize=cast_byte(newstack); -} -} -static void luaK_reserveregs(FuncState*fs,int n){ -luaK_checkstack(fs,n); -fs->freereg+=n; -} -static void freereg(FuncState*fs,int reg){ -if(!ISK(reg)&®>=fs->nactvar){ -fs->freereg--; -} -} -static void freeexp(FuncState*fs,expdesc*e){ -if(e->k==VNONRELOC) -freereg(fs,e->u.s.info); -} -static int addk(FuncState*fs,TValue*k,TValue*v){ -lua_State*L=fs->L; -TValue*idx=luaH_set(L,fs->h,k); -Proto*f=fs->f; -int oldsize=f->sizek; -if(ttisnumber(idx)){ -return cast_int(nvalue(idx)); -} -else{ -setnvalue(idx,cast_num(fs->nk)); -luaM_growvector(L,f->k,fs->nk,f->sizek,TValue, -((1<<(9+9))-1),"constant table overflow"); -while(oldsizesizek)setnilvalue(&f->k[oldsize++]); -setobj(L,&f->k[fs->nk],v); -luaC_barrier(L,f,v); -return fs->nk++; -} -} -static int luaK_stringK(FuncState*fs,TString*s){ -TValue o; -setsvalue(fs->L,&o,s); -return addk(fs,&o,&o); -} -static int luaK_numberK(FuncState*fs,lua_Number r){ -TValue o; -setnvalue(&o,r); -return addk(fs,&o,&o); -} -static int boolK(FuncState*fs,int b){ -TValue o; -setbvalue(&o,b); -return addk(fs,&o,&o); -} -static int nilK(FuncState*fs){ -TValue k,v; -setnilvalue(&v); -sethvalue(fs->L,&k,fs->h); -return addk(fs,&k,&v); -} -static void luaK_setreturns(FuncState*fs,expdesc*e,int nresults){ -if(e->k==VCALL){ -SETARG_C(getcode(fs,e),nresults+1); -} -else if(e->k==VVARARG){ -SETARG_B(getcode(fs,e),nresults+1); -SETARG_A(getcode(fs,e),fs->freereg); -luaK_reserveregs(fs,1); -} -} -static void luaK_setoneret(FuncState*fs,expdesc*e){ -if(e->k==VCALL){ -e->k=VNONRELOC; -e->u.s.info=GETARG_A(getcode(fs,e)); -} -else if(e->k==VVARARG){ -SETARG_B(getcode(fs,e),2); -e->k=VRELOCABLE; -} -} -static void luaK_dischargevars(FuncState*fs,expdesc*e){ -switch(e->k){ -case VLOCAL:{ -e->k=VNONRELOC; -break; -} -case VUPVAL:{ -e->u.s.info=luaK_codeABC(fs,OP_GETUPVAL,0,e->u.s.info,0); -e->k=VRELOCABLE; -break; -} -case VGLOBAL:{ -e->u.s.info=luaK_codeABx(fs,OP_GETGLOBAL,0,e->u.s.info); -e->k=VRELOCABLE; -break; -} -case VINDEXED:{ -freereg(fs,e->u.s.aux); -freereg(fs,e->u.s.info); -e->u.s.info=luaK_codeABC(fs,OP_GETTABLE,0,e->u.s.info,e->u.s.aux); -e->k=VRELOCABLE; -break; -} -case VVARARG: -case VCALL:{ -luaK_setoneret(fs,e); -break; -} -default:break; -} -} -static int code_label(FuncState*fs,int A,int b,int jump){ -luaK_getlabel(fs); -return luaK_codeABC(fs,OP_LOADBOOL,A,b,jump); -} -static void discharge2reg(FuncState*fs,expdesc*e,int reg){ -luaK_dischargevars(fs,e); -switch(e->k){ -case VNIL:{ -luaK_nil(fs,reg,1); -break; -} -case VFALSE:case VTRUE:{ -luaK_codeABC(fs,OP_LOADBOOL,reg,e->k==VTRUE,0); -break; -} -case VK:{ -luaK_codeABx(fs,OP_LOADK,reg,e->u.s.info); -break; -} -case VKNUM:{ -luaK_codeABx(fs,OP_LOADK,reg,luaK_numberK(fs,e->u.nval)); -break; -} -case VRELOCABLE:{ -Instruction*pc=&getcode(fs,e); -SETARG_A(*pc,reg); -break; -} -case VNONRELOC:{ -if(reg!=e->u.s.info) -luaK_codeABC(fs,OP_MOVE,reg,e->u.s.info,0); -break; -} -default:{ -return; -} -} -e->u.s.info=reg; -e->k=VNONRELOC; -} -static void discharge2anyreg(FuncState*fs,expdesc*e){ -if(e->k!=VNONRELOC){ -luaK_reserveregs(fs,1); -discharge2reg(fs,e,fs->freereg-1); -} -} -static void exp2reg(FuncState*fs,expdesc*e,int reg){ -discharge2reg(fs,e,reg); -if(e->k==VJMP) -luaK_concat(fs,&e->t,e->u.s.info); -if(hasjumps(e)){ -int final; -int p_f=(-1); -int p_t=(-1); -if(need_value(fs,e->t)||need_value(fs,e->f)){ -int fj=(e->k==VJMP)?(-1):luaK_jump(fs); -p_f=code_label(fs,reg,0,1); -p_t=code_label(fs,reg,1,0); -luaK_patchtohere(fs,fj); -} -final=luaK_getlabel(fs); -patchlistaux(fs,e->f,final,reg,p_f); -patchlistaux(fs,e->t,final,reg,p_t); -} -e->f=e->t=(-1); -e->u.s.info=reg; -e->k=VNONRELOC; -} -static void luaK_exp2nextreg(FuncState*fs,expdesc*e){ -luaK_dischargevars(fs,e); -freeexp(fs,e); -luaK_reserveregs(fs,1); -exp2reg(fs,e,fs->freereg-1); -} -static int luaK_exp2anyreg(FuncState*fs,expdesc*e){ -luaK_dischargevars(fs,e); -if(e->k==VNONRELOC){ -if(!hasjumps(e))return e->u.s.info; -if(e->u.s.info>=fs->nactvar){ -exp2reg(fs,e,e->u.s.info); -return e->u.s.info; -} -} -luaK_exp2nextreg(fs,e); -return e->u.s.info; -} -static void luaK_exp2val(FuncState*fs,expdesc*e){ -if(hasjumps(e)) -luaK_exp2anyreg(fs,e); -else -luaK_dischargevars(fs,e); -} -static int luaK_exp2RK(FuncState*fs,expdesc*e){ -luaK_exp2val(fs,e); -switch(e->k){ -case VKNUM: -case VTRUE: -case VFALSE: -case VNIL:{ -if(fs->nk<=((1<<(9-1))-1)){ -e->u.s.info=(e->k==VNIL)?nilK(fs): -(e->k==VKNUM)?luaK_numberK(fs,e->u.nval): -boolK(fs,(e->k==VTRUE)); -e->k=VK; -return RKASK(e->u.s.info); -} -else break; -} -case VK:{ -if(e->u.s.info<=((1<<(9-1))-1)) -return RKASK(e->u.s.info); -else break; -} -default:break; -} -return luaK_exp2anyreg(fs,e); -} -static void luaK_storevar(FuncState*fs,expdesc*var,expdesc*ex){ -switch(var->k){ -case VLOCAL:{ -freeexp(fs,ex); -exp2reg(fs,ex,var->u.s.info); -return; -} -case VUPVAL:{ -int e=luaK_exp2anyreg(fs,ex); -luaK_codeABC(fs,OP_SETUPVAL,e,var->u.s.info,0); -break; -} -case VGLOBAL:{ -int e=luaK_exp2anyreg(fs,ex); -luaK_codeABx(fs,OP_SETGLOBAL,e,var->u.s.info); -break; -} -case VINDEXED:{ -int e=luaK_exp2RK(fs,ex); -luaK_codeABC(fs,OP_SETTABLE,var->u.s.info,var->u.s.aux,e); -break; -} -default:{ -break; -} -} -freeexp(fs,ex); -} -static void luaK_self(FuncState*fs,expdesc*e,expdesc*key){ -int func; -luaK_exp2anyreg(fs,e); -freeexp(fs,e); -func=fs->freereg; -luaK_reserveregs(fs,2); -luaK_codeABC(fs,OP_SELF,func,e->u.s.info,luaK_exp2RK(fs,key)); -freeexp(fs,key); -e->u.s.info=func; -e->k=VNONRELOC; -} -static void invertjump(FuncState*fs,expdesc*e){ -Instruction*pc=getjumpcontrol(fs,e->u.s.info); -SETARG_A(*pc,!(GETARG_A(*pc))); -} -static int jumponcond(FuncState*fs,expdesc*e,int cond){ -if(e->k==VRELOCABLE){ -Instruction ie=getcode(fs,e); -if(GET_OPCODE(ie)==OP_NOT){ -fs->pc--; -return condjump(fs,OP_TEST,GETARG_B(ie),0,!cond); -} -} -discharge2anyreg(fs,e); -freeexp(fs,e); -return condjump(fs,OP_TESTSET,((1<<8)-1),e->u.s.info,cond); -} -static void luaK_goiftrue(FuncState*fs,expdesc*e){ -int pc; -luaK_dischargevars(fs,e); -switch(e->k){ -case VK:case VKNUM:case VTRUE:{ -pc=(-1); -break; -} -case VJMP:{ -invertjump(fs,e); -pc=e->u.s.info; -break; -} -default:{ -pc=jumponcond(fs,e,0); -break; -} -} -luaK_concat(fs,&e->f,pc); -luaK_patchtohere(fs,e->t); -e->t=(-1); -} -static void luaK_goiffalse(FuncState*fs,expdesc*e){ -int pc; -luaK_dischargevars(fs,e); -switch(e->k){ -case VNIL:case VFALSE:{ -pc=(-1); -break; -} -case VJMP:{ -pc=e->u.s.info; -break; -} -default:{ -pc=jumponcond(fs,e,1); -break; -} -} -luaK_concat(fs,&e->t,pc); -luaK_patchtohere(fs,e->f); -e->f=(-1); -} -static void codenot(FuncState*fs,expdesc*e){ -luaK_dischargevars(fs,e); -switch(e->k){ -case VNIL:case VFALSE:{ -e->k=VTRUE; -break; -} -case VK:case VKNUM:case VTRUE:{ -e->k=VFALSE; -break; -} -case VJMP:{ -invertjump(fs,e); -break; -} -case VRELOCABLE: -case VNONRELOC:{ -discharge2anyreg(fs,e); -freeexp(fs,e); -e->u.s.info=luaK_codeABC(fs,OP_NOT,0,e->u.s.info,0); -e->k=VRELOCABLE; -break; -} -default:{ -break; -} -} -{int temp=e->f;e->f=e->t;e->t=temp;} -removevalues(fs,e->f); -removevalues(fs,e->t); -} -static void luaK_indexed(FuncState*fs,expdesc*t,expdesc*k){ -t->u.s.aux=luaK_exp2RK(fs,k); -t->k=VINDEXED; -} -static int constfolding(OpCode op,expdesc*e1,expdesc*e2){ -lua_Number v1,v2,r; -if(!isnumeral(e1)||!isnumeral(e2))return 0; -v1=e1->u.nval; -v2=e2->u.nval; -switch(op){ -case OP_ADD:r=luai_numadd(v1,v2);break; -case OP_SUB:r=luai_numsub(v1,v2);break; -case OP_MUL:r=luai_nummul(v1,v2);break; -case OP_DIV: -if(v2==0)return 0; -r=luai_numdiv(v1,v2);break; -case OP_MOD: -if(v2==0)return 0; -r=luai_nummod(v1,v2);break; -case OP_POW:r=luai_numpow(v1,v2);break; -case OP_UNM:r=luai_numunm(v1);break; -case OP_LEN:return 0; -default:r=0;break; -} -if(luai_numisnan(r))return 0; -e1->u.nval=r; -return 1; -} -static void codearith(FuncState*fs,OpCode op,expdesc*e1,expdesc*e2){ -if(constfolding(op,e1,e2)) -return; -else{ -int o2=(op!=OP_UNM&&op!=OP_LEN)?luaK_exp2RK(fs,e2):0; -int o1=luaK_exp2RK(fs,e1); -if(o1>o2){ -freeexp(fs,e1); -freeexp(fs,e2); -} -else{ -freeexp(fs,e2); -freeexp(fs,e1); -} -e1->u.s.info=luaK_codeABC(fs,op,0,o1,o2); -e1->k=VRELOCABLE; -} -} -static void codecomp(FuncState*fs,OpCode op,int cond,expdesc*e1, -expdesc*e2){ -int o1=luaK_exp2RK(fs,e1); -int o2=luaK_exp2RK(fs,e2); -freeexp(fs,e2); -freeexp(fs,e1); -if(cond==0&&op!=OP_EQ){ -int temp; -temp=o1;o1=o2;o2=temp; -cond=1; -} -e1->u.s.info=condjump(fs,op,cond,o1,o2); -e1->k=VJMP; -} -static void luaK_prefix(FuncState*fs,UnOpr op,expdesc*e){ -expdesc e2; -e2.t=e2.f=(-1);e2.k=VKNUM;e2.u.nval=0; -switch(op){ -case OPR_MINUS:{ -if(!isnumeral(e)) -luaK_exp2anyreg(fs,e); -codearith(fs,OP_UNM,e,&e2); -break; -} -case OPR_NOT:codenot(fs,e);break; -case OPR_LEN:{ -luaK_exp2anyreg(fs,e); -codearith(fs,OP_LEN,e,&e2); -break; -} -default:; -} -} -static void luaK_infix(FuncState*fs,BinOpr op,expdesc*v){ -switch(op){ -case OPR_AND:{ -luaK_goiftrue(fs,v); -break; -} -case OPR_OR:{ -luaK_goiffalse(fs,v); -break; -} -case OPR_CONCAT:{ -luaK_exp2nextreg(fs,v); -break; -} -case OPR_ADD:case OPR_SUB:case OPR_MUL:case OPR_DIV: -case OPR_MOD:case OPR_POW:{ -if(!isnumeral(v))luaK_exp2RK(fs,v); -break; -} -default:{ -luaK_exp2RK(fs,v); -break; -} -} -} -static void luaK_posfix(FuncState*fs,BinOpr op,expdesc*e1,expdesc*e2){ -switch(op){ -case OPR_AND:{ -luaK_dischargevars(fs,e2); -luaK_concat(fs,&e2->f,e1->f); -*e1=*e2; -break; -} -case OPR_OR:{ -luaK_dischargevars(fs,e2); -luaK_concat(fs,&e2->t,e1->t); -*e1=*e2; -break; -} -case OPR_CONCAT:{ -luaK_exp2val(fs,e2); -if(e2->k==VRELOCABLE&&GET_OPCODE(getcode(fs,e2))==OP_CONCAT){ -freeexp(fs,e1); -SETARG_B(getcode(fs,e2),e1->u.s.info); -e1->k=VRELOCABLE;e1->u.s.info=e2->u.s.info; -} -else{ -luaK_exp2nextreg(fs,e2); -codearith(fs,OP_CONCAT,e1,e2); -} -break; -} -case OPR_ADD:codearith(fs,OP_ADD,e1,e2);break; -case OPR_SUB:codearith(fs,OP_SUB,e1,e2);break; -case OPR_MUL:codearith(fs,OP_MUL,e1,e2);break; -case OPR_DIV:codearith(fs,OP_DIV,e1,e2);break; -case OPR_MOD:codearith(fs,OP_MOD,e1,e2);break; -case OPR_POW:codearith(fs,OP_POW,e1,e2);break; -case OPR_EQ:codecomp(fs,OP_EQ,1,e1,e2);break; -case OPR_NE:codecomp(fs,OP_EQ,0,e1,e2);break; -case OPR_LT:codecomp(fs,OP_LT,1,e1,e2);break; -case OPR_LE:codecomp(fs,OP_LE,1,e1,e2);break; -case OPR_GT:codecomp(fs,OP_LT,0,e1,e2);break; -case OPR_GE:codecomp(fs,OP_LE,0,e1,e2);break; -default:; -} -} -static void luaK_fixline(FuncState*fs,int line){ -fs->f->lineinfo[fs->pc-1]=line; -} -static int luaK_code(FuncState*fs,Instruction i,int line){ -Proto*f=fs->f; -dischargejpc(fs); -luaM_growvector(fs->L,f->code,fs->pc,f->sizecode,Instruction, -(INT_MAX-2),"code size overflow"); -f->code[fs->pc]=i; -luaM_growvector(fs->L,f->lineinfo,fs->pc,f->sizelineinfo,int, -(INT_MAX-2),"code size overflow"); -f->lineinfo[fs->pc]=line; -return fs->pc++; -} -static int luaK_codeABC(FuncState*fs,OpCode o,int a,int b,int c){ -return luaK_code(fs,CREATE_ABC(o,a,b,c),fs->ls->lastline); -} -static int luaK_codeABx(FuncState*fs,OpCode o,int a,unsigned int bc){ -return luaK_code(fs,CREATE_ABx(o,a,bc),fs->ls->lastline); -} -static void luaK_setlist(FuncState*fs,int base,int nelems,int tostore){ -int c=(nelems-1)/50+1; -int b=(tostore==(-1))?0:tostore; -if(c<=((1<<9)-1)) -luaK_codeABC(fs,OP_SETLIST,base,b,c); -else{ -luaK_codeABC(fs,OP_SETLIST,base,b,0); -luaK_code(fs,cast(Instruction,c),fs->ls->lastline); -} -fs->freereg=base+1; -} -#define hasmultret(k)((k)==VCALL||(k)==VVARARG) -#define getlocvar(fs,i)((fs)->f->locvars[(fs)->actvar[i]]) -#define luaY_checklimit(fs,v,l,m)if((v)>(l))errorlimit(fs,l,m) -typedef struct BlockCnt{ -struct BlockCnt*previous; -int breaklist; -lu_byte nactvar; -lu_byte upval; -lu_byte isbreakable; -}BlockCnt; -static void chunk(LexState*ls); -static void expr(LexState*ls,expdesc*v); -static void anchor_token(LexState*ls){ -if(ls->t.token==TK_NAME||ls->t.token==TK_STRING){ -TString*ts=ls->t.seminfo.ts; -luaX_newstring(ls,getstr(ts),ts->tsv.len); -} -} -static void error_expected(LexState*ls,int token){ -luaX_syntaxerror(ls, -luaO_pushfstring(ls->L,LUA_QL("%s")" expected",luaX_token2str(ls,token))); -} -static void errorlimit(FuncState*fs,int limit,const char*what){ -const char*msg=(fs->f->linedefined==0)? -luaO_pushfstring(fs->L,"main function has more than %d %s",limit,what): -luaO_pushfstring(fs->L,"function at line %d has more than %d %s", -fs->f->linedefined,limit,what); -luaX_lexerror(fs->ls,msg,0); -} -static int testnext(LexState*ls,int c){ -if(ls->t.token==c){ -luaX_next(ls); -return 1; -} -else return 0; -} -static void check(LexState*ls,int c){ -if(ls->t.token!=c) -error_expected(ls,c); -} -static void checknext(LexState*ls,int c){ -check(ls,c); -luaX_next(ls); -} -#define check_condition(ls,c,msg){if(!(c))luaX_syntaxerror(ls,msg);} -static void check_match(LexState*ls,int what,int who,int where){ -if(!testnext(ls,what)){ -if(where==ls->linenumber) -error_expected(ls,what); -else{ -luaX_syntaxerror(ls,luaO_pushfstring(ls->L, -LUA_QL("%s")" expected (to close "LUA_QL("%s")" at line %d)", -luaX_token2str(ls,what),luaX_token2str(ls,who),where)); -} -} -} -static TString*str_checkname(LexState*ls){ -TString*ts; -check(ls,TK_NAME); -ts=ls->t.seminfo.ts; -luaX_next(ls); -return ts; -} -static void init_exp(expdesc*e,expkind k,int i){ -e->f=e->t=(-1); -e->k=k; -e->u.s.info=i; -} -static void codestring(LexState*ls,expdesc*e,TString*s){ -init_exp(e,VK,luaK_stringK(ls->fs,s)); -} -static void checkname(LexState*ls,expdesc*e){ -codestring(ls,e,str_checkname(ls)); -} -static int registerlocalvar(LexState*ls,TString*varname){ -FuncState*fs=ls->fs; -Proto*f=fs->f; -int oldsize=f->sizelocvars; -luaM_growvector(ls->L,f->locvars,fs->nlocvars,f->sizelocvars, -LocVar,SHRT_MAX,"too many local variables"); -while(oldsizesizelocvars)f->locvars[oldsize++].varname=NULL; -f->locvars[fs->nlocvars].varname=varname; -luaC_objbarrier(ls->L,f,varname); -return fs->nlocvars++; -} -#define new_localvarliteral(ls,v,n)new_localvar(ls,luaX_newstring(ls,""v,(sizeof(v)/sizeof(char))-1),n) -static void new_localvar(LexState*ls,TString*name,int n){ -FuncState*fs=ls->fs; -luaY_checklimit(fs,fs->nactvar+n+1,200,"local variables"); -fs->actvar[fs->nactvar+n]=cast(unsigned short,registerlocalvar(ls,name)); -} -static void adjustlocalvars(LexState*ls,int nvars){ -FuncState*fs=ls->fs; -fs->nactvar=cast_byte(fs->nactvar+nvars); -for(;nvars;nvars--){ -getlocvar(fs,fs->nactvar-nvars).startpc=fs->pc; -} -} -static void removevars(LexState*ls,int tolevel){ -FuncState*fs=ls->fs; -while(fs->nactvar>tolevel) -getlocvar(fs,--fs->nactvar).endpc=fs->pc; -} -static int indexupvalue(FuncState*fs,TString*name,expdesc*v){ -int i; -Proto*f=fs->f; -int oldsize=f->sizeupvalues; -for(i=0;inups;i++){ -if(fs->upvalues[i].k==v->k&&fs->upvalues[i].info==v->u.s.info){ -return i; -} -} -luaY_checklimit(fs,f->nups+1,60,"upvalues"); -luaM_growvector(fs->L,f->upvalues,f->nups,f->sizeupvalues, -TString*,(INT_MAX-2),""); -while(oldsizesizeupvalues)f->upvalues[oldsize++]=NULL; -f->upvalues[f->nups]=name; -luaC_objbarrier(fs->L,f,name); -fs->upvalues[f->nups].k=cast_byte(v->k); -fs->upvalues[f->nups].info=cast_byte(v->u.s.info); -return f->nups++; -} -static int searchvar(FuncState*fs,TString*n){ -int i; -for(i=fs->nactvar-1;i>=0;i--){ -if(n==getlocvar(fs,i).varname) -return i; -} -return-1; -} -static void markupval(FuncState*fs,int level){ -BlockCnt*bl=fs->bl; -while(bl&&bl->nactvar>level)bl=bl->previous; -if(bl)bl->upval=1; -} -static int singlevaraux(FuncState*fs,TString*n,expdesc*var,int base){ -if(fs==NULL){ -init_exp(var,VGLOBAL,((1<<8)-1)); -return VGLOBAL; -} -else{ -int v=searchvar(fs,n); -if(v>=0){ -init_exp(var,VLOCAL,v); -if(!base) -markupval(fs,v); -return VLOCAL; -} -else{ -if(singlevaraux(fs->prev,n,var,0)==VGLOBAL) -return VGLOBAL; -var->u.s.info=indexupvalue(fs,n,var); -var->k=VUPVAL; -return VUPVAL; -} -} -} -static void singlevar(LexState*ls,expdesc*var){ -TString*varname=str_checkname(ls); -FuncState*fs=ls->fs; -if(singlevaraux(fs,varname,var,1)==VGLOBAL) -var->u.s.info=luaK_stringK(fs,varname); -} -static void adjust_assign(LexState*ls,int nvars,int nexps,expdesc*e){ -FuncState*fs=ls->fs; -int extra=nvars-nexps; -if(hasmultret(e->k)){ -extra++; -if(extra<0)extra=0; -luaK_setreturns(fs,e,extra); -if(extra>1)luaK_reserveregs(fs,extra-1); -} -else{ -if(e->k!=VVOID)luaK_exp2nextreg(fs,e); -if(extra>0){ -int reg=fs->freereg; -luaK_reserveregs(fs,extra); -luaK_nil(fs,reg,extra); -} -} -} -static void enterlevel(LexState*ls){ -if(++ls->L->nCcalls>200) -luaX_lexerror(ls,"chunk has too many syntax levels",0); -} -#define leavelevel(ls)((ls)->L->nCcalls--) -static void enterblock(FuncState*fs,BlockCnt*bl,lu_byte isbreakable){ -bl->breaklist=(-1); -bl->isbreakable=isbreakable; -bl->nactvar=fs->nactvar; -bl->upval=0; -bl->previous=fs->bl; -fs->bl=bl; -} -static void leaveblock(FuncState*fs){ -BlockCnt*bl=fs->bl; -fs->bl=bl->previous; -removevars(fs->ls,bl->nactvar); -if(bl->upval) -luaK_codeABC(fs,OP_CLOSE,bl->nactvar,0,0); -fs->freereg=fs->nactvar; -luaK_patchtohere(fs,bl->breaklist); -} -static void pushclosure(LexState*ls,FuncState*func,expdesc*v){ -FuncState*fs=ls->fs; -Proto*f=fs->f; -int oldsize=f->sizep; -int i; -luaM_growvector(ls->L,f->p,fs->np,f->sizep,Proto*, -((1<<(9+9))-1),"constant table overflow"); -while(oldsizesizep)f->p[oldsize++]=NULL; -f->p[fs->np++]=func->f; -luaC_objbarrier(ls->L,f,func->f); -init_exp(v,VRELOCABLE,luaK_codeABx(fs,OP_CLOSURE,0,fs->np-1)); -for(i=0;if->nups;i++){ -OpCode o=(func->upvalues[i].k==VLOCAL)?OP_MOVE:OP_GETUPVAL; -luaK_codeABC(fs,o,0,func->upvalues[i].info,0); -} -} -static void open_func(LexState*ls,FuncState*fs){ -lua_State*L=ls->L; -Proto*f=luaF_newproto(L); -fs->f=f; -fs->prev=ls->fs; -fs->ls=ls; -fs->L=L; -ls->fs=fs; -fs->pc=0; -fs->lasttarget=-1; -fs->jpc=(-1); -fs->freereg=0; -fs->nk=0; -fs->np=0; -fs->nlocvars=0; -fs->nactvar=0; -fs->bl=NULL; -f->source=ls->source; -f->maxstacksize=2; -fs->h=luaH_new(L,0,0); -sethvalue(L,L->top,fs->h); -incr_top(L); -setptvalue(L,L->top,f); -incr_top(L); -} -static void close_func(LexState*ls){ -lua_State*L=ls->L; -FuncState*fs=ls->fs; -Proto*f=fs->f; -removevars(ls,0); -luaK_ret(fs,0,0); -luaM_reallocvector(L,f->code,f->sizecode,fs->pc,Instruction); -f->sizecode=fs->pc; -luaM_reallocvector(L,f->lineinfo,f->sizelineinfo,fs->pc,int); -f->sizelineinfo=fs->pc; -luaM_reallocvector(L,f->k,f->sizek,fs->nk,TValue); -f->sizek=fs->nk; -luaM_reallocvector(L,f->p,f->sizep,fs->np,Proto*); -f->sizep=fs->np; -luaM_reallocvector(L,f->locvars,f->sizelocvars,fs->nlocvars,LocVar); -f->sizelocvars=fs->nlocvars; -luaM_reallocvector(L,f->upvalues,f->sizeupvalues,f->nups,TString*); -f->sizeupvalues=f->nups; -ls->fs=fs->prev; -if(fs)anchor_token(ls); -L->top-=2; -} -static Proto*luaY_parser(lua_State*L,ZIO*z,Mbuffer*buff,const char*name){ -struct LexState lexstate; -struct FuncState funcstate; -lexstate.buff=buff; -luaX_setinput(L,&lexstate,z,luaS_new(L,name)); -open_func(&lexstate,&funcstate); -funcstate.f->is_vararg=2; -luaX_next(&lexstate); -chunk(&lexstate); -check(&lexstate,TK_EOS); -close_func(&lexstate); -return funcstate.f; -} -static void field(LexState*ls,expdesc*v){ -FuncState*fs=ls->fs; -expdesc key; -luaK_exp2anyreg(fs,v); -luaX_next(ls); -checkname(ls,&key); -luaK_indexed(fs,v,&key); -} -static void yindex(LexState*ls,expdesc*v){ -luaX_next(ls); -expr(ls,v); -luaK_exp2val(ls->fs,v); -checknext(ls,']'); -} -struct ConsControl{ -expdesc v; -expdesc*t; -int nh; -int na; -int tostore; -}; -static void recfield(LexState*ls,struct ConsControl*cc){ -FuncState*fs=ls->fs; -int reg=ls->fs->freereg; -expdesc key,val; -int rkkey; -if(ls->t.token==TK_NAME){ -luaY_checklimit(fs,cc->nh,(INT_MAX-2),"items in a constructor"); -checkname(ls,&key); -} -else -yindex(ls,&key); -cc->nh++; -checknext(ls,'='); -rkkey=luaK_exp2RK(fs,&key); -expr(ls,&val); -luaK_codeABC(fs,OP_SETTABLE,cc->t->u.s.info,rkkey,luaK_exp2RK(fs,&val)); -fs->freereg=reg; -} -static void closelistfield(FuncState*fs,struct ConsControl*cc){ -if(cc->v.k==VVOID)return; -luaK_exp2nextreg(fs,&cc->v); -cc->v.k=VVOID; -if(cc->tostore==50){ -luaK_setlist(fs,cc->t->u.s.info,cc->na,cc->tostore); -cc->tostore=0; -} -} -static void lastlistfield(FuncState*fs,struct ConsControl*cc){ -if(cc->tostore==0)return; -if(hasmultret(cc->v.k)){ -luaK_setmultret(fs,&cc->v); -luaK_setlist(fs,cc->t->u.s.info,cc->na,(-1)); -cc->na--; -} -else{ -if(cc->v.k!=VVOID) -luaK_exp2nextreg(fs,&cc->v); -luaK_setlist(fs,cc->t->u.s.info,cc->na,cc->tostore); -} -} -static void listfield(LexState*ls,struct ConsControl*cc){ -expr(ls,&cc->v); -luaY_checklimit(ls->fs,cc->na,(INT_MAX-2),"items in a constructor"); -cc->na++; -cc->tostore++; -} -static void constructor(LexState*ls,expdesc*t){ -FuncState*fs=ls->fs; -int line=ls->linenumber; -int pc=luaK_codeABC(fs,OP_NEWTABLE,0,0,0); -struct ConsControl cc; -cc.na=cc.nh=cc.tostore=0; -cc.t=t; -init_exp(t,VRELOCABLE,pc); -init_exp(&cc.v,VVOID,0); -luaK_exp2nextreg(ls->fs,t); -checknext(ls,'{'); -do{ -if(ls->t.token=='}')break; -closelistfield(fs,&cc); -switch(ls->t.token){ -case TK_NAME:{ -luaX_lookahead(ls); -if(ls->lookahead.token!='=') -listfield(ls,&cc); -else -recfield(ls,&cc); -break; -} -case'[':{ -recfield(ls,&cc); -break; -} -default:{ -listfield(ls,&cc); -break; -} -} -}while(testnext(ls,',')||testnext(ls,';')); -check_match(ls,'}','{',line); -lastlistfield(fs,&cc); -SETARG_B(fs->f->code[pc],luaO_int2fb(cc.na)); -SETARG_C(fs->f->code[pc],luaO_int2fb(cc.nh)); -} -static void parlist(LexState*ls){ -FuncState*fs=ls->fs; -Proto*f=fs->f; -int nparams=0; -f->is_vararg=0; -if(ls->t.token!=')'){ -do{ -switch(ls->t.token){ -case TK_NAME:{ -new_localvar(ls,str_checkname(ls),nparams++); -break; -} -case TK_DOTS:{ -luaX_next(ls); -f->is_vararg|=2; -break; -} -default:luaX_syntaxerror(ls," or "LUA_QL("...")" expected"); -} -}while(!f->is_vararg&&testnext(ls,',')); -} -adjustlocalvars(ls,nparams); -f->numparams=cast_byte(fs->nactvar-(f->is_vararg&1)); -luaK_reserveregs(fs,fs->nactvar); -} -static void body(LexState*ls,expdesc*e,int needself,int line){ -FuncState new_fs; -open_func(ls,&new_fs); -new_fs.f->linedefined=line; -checknext(ls,'('); -if(needself){ -new_localvarliteral(ls,"self",0); -adjustlocalvars(ls,1); -} -parlist(ls); -checknext(ls,')'); -chunk(ls); -new_fs.f->lastlinedefined=ls->linenumber; -check_match(ls,TK_END,TK_FUNCTION,line); -close_func(ls); -pushclosure(ls,&new_fs,e); -} -static int explist1(LexState*ls,expdesc*v){ -int n=1; -expr(ls,v); -while(testnext(ls,',')){ -luaK_exp2nextreg(ls->fs,v); -expr(ls,v); -n++; -} -return n; -} -static void funcargs(LexState*ls,expdesc*f){ -FuncState*fs=ls->fs; -expdesc args; -int base,nparams; -int line=ls->linenumber; -switch(ls->t.token){ -case'(':{ -if(line!=ls->lastline) -luaX_syntaxerror(ls,"ambiguous syntax (function call x new statement)"); -luaX_next(ls); -if(ls->t.token==')') -args.k=VVOID; -else{ -explist1(ls,&args); -luaK_setmultret(fs,&args); -} -check_match(ls,')','(',line); -break; -} -case'{':{ -constructor(ls,&args); -break; -} -case TK_STRING:{ -codestring(ls,&args,ls->t.seminfo.ts); -luaX_next(ls); -break; -} -default:{ -luaX_syntaxerror(ls,"function arguments expected"); -return; -} -} -base=f->u.s.info; -if(hasmultret(args.k)) -nparams=(-1); -else{ -if(args.k!=VVOID) -luaK_exp2nextreg(fs,&args); -nparams=fs->freereg-(base+1); -} -init_exp(f,VCALL,luaK_codeABC(fs,OP_CALL,base,nparams+1,2)); -luaK_fixline(fs,line); -fs->freereg=base+1; -} -static void prefixexp(LexState*ls,expdesc*v){ -switch(ls->t.token){ -case'(':{ -int line=ls->linenumber; -luaX_next(ls); -expr(ls,v); -check_match(ls,')','(',line); -luaK_dischargevars(ls->fs,v); -return; -} -case TK_NAME:{ -singlevar(ls,v); -return; -} -default:{ -luaX_syntaxerror(ls,"unexpected symbol"); -return; -} -} -} -static void primaryexp(LexState*ls,expdesc*v){ -FuncState*fs=ls->fs; -prefixexp(ls,v); -for(;;){ -switch(ls->t.token){ -case'.':{ -field(ls,v); -break; -} -case'[':{ -expdesc key; -luaK_exp2anyreg(fs,v); -yindex(ls,&key); -luaK_indexed(fs,v,&key); -break; -} -case':':{ -expdesc key; -luaX_next(ls); -checkname(ls,&key); -luaK_self(fs,v,&key); -funcargs(ls,v); -break; -} -case'(':case TK_STRING:case'{':{ -luaK_exp2nextreg(fs,v); -funcargs(ls,v); -break; -} -default:return; -} -} -} -static void simpleexp(LexState*ls,expdesc*v){ -switch(ls->t.token){ -case TK_NUMBER:{ -init_exp(v,VKNUM,0); -v->u.nval=ls->t.seminfo.r; -break; -} -case TK_STRING:{ -codestring(ls,v,ls->t.seminfo.ts); -break; -} -case TK_NIL:{ -init_exp(v,VNIL,0); -break; -} -case TK_TRUE:{ -init_exp(v,VTRUE,0); -break; -} -case TK_FALSE:{ -init_exp(v,VFALSE,0); -break; -} -case TK_DOTS:{ -FuncState*fs=ls->fs; -check_condition(ls,fs->f->is_vararg, -"cannot use "LUA_QL("...")" outside a vararg function"); -fs->f->is_vararg&=~4; -init_exp(v,VVARARG,luaK_codeABC(fs,OP_VARARG,0,1,0)); -break; -} -case'{':{ -constructor(ls,v); -return; -} -case TK_FUNCTION:{ -luaX_next(ls); -body(ls,v,0,ls->linenumber); -return; -} -default:{ -primaryexp(ls,v); -return; -} -} -luaX_next(ls); -} -static UnOpr getunopr(int op){ -switch(op){ -case TK_NOT:return OPR_NOT; -case'-':return OPR_MINUS; -case'#':return OPR_LEN; -default:return OPR_NOUNOPR; -} -} -static BinOpr getbinopr(int op){ -switch(op){ -case'+':return OPR_ADD; -case'-':return OPR_SUB; -case'*':return OPR_MUL; -case'/':return OPR_DIV; -case'%':return OPR_MOD; -case'^':return OPR_POW; -case TK_CONCAT:return OPR_CONCAT; -case TK_NE:return OPR_NE; -case TK_EQ:return OPR_EQ; -case'<':return OPR_LT; -case TK_LE:return OPR_LE; -case'>':return OPR_GT; -case TK_GE:return OPR_GE; -case TK_AND:return OPR_AND; -case TK_OR:return OPR_OR; -default:return OPR_NOBINOPR; -} -} -static const struct{ -lu_byte left; -lu_byte right; -}priority[]={ -{6,6},{6,6},{7,7},{7,7},{7,7}, -{10,9},{5,4}, -{3,3},{3,3}, -{3,3},{3,3},{3,3},{3,3}, -{2,2},{1,1} -}; -static BinOpr subexpr(LexState*ls,expdesc*v,unsigned int limit){ -BinOpr op; -UnOpr uop; -enterlevel(ls); -uop=getunopr(ls->t.token); -if(uop!=OPR_NOUNOPR){ -luaX_next(ls); -subexpr(ls,v,8); -luaK_prefix(ls->fs,uop,v); -} -else simpleexp(ls,v); -op=getbinopr(ls->t.token); -while(op!=OPR_NOBINOPR&&priority[op].left>limit){ -expdesc v2; -BinOpr nextop; -luaX_next(ls); -luaK_infix(ls->fs,op,v); -nextop=subexpr(ls,&v2,priority[op].right); -luaK_posfix(ls->fs,op,v,&v2); -op=nextop; -} -leavelevel(ls); -return op; -} -static void expr(LexState*ls,expdesc*v){ -subexpr(ls,v,0); -} -static int block_follow(int token){ -switch(token){ -case TK_ELSE:case TK_ELSEIF:case TK_END: -case TK_UNTIL:case TK_EOS: -return 1; -default:return 0; -} -} -static void block(LexState*ls){ -FuncState*fs=ls->fs; -BlockCnt bl; -enterblock(fs,&bl,0); -chunk(ls); -leaveblock(fs); -} -struct LHS_assign{ -struct LHS_assign*prev; -expdesc v; -}; -static void check_conflict(LexState*ls,struct LHS_assign*lh,expdesc*v){ -FuncState*fs=ls->fs; -int extra=fs->freereg; -int conflict=0; -for(;lh;lh=lh->prev){ -if(lh->v.k==VINDEXED){ -if(lh->v.u.s.info==v->u.s.info){ -conflict=1; -lh->v.u.s.info=extra; -} -if(lh->v.u.s.aux==v->u.s.info){ -conflict=1; -lh->v.u.s.aux=extra; -} -} -} -if(conflict){ -luaK_codeABC(fs,OP_MOVE,fs->freereg,v->u.s.info,0); -luaK_reserveregs(fs,1); -} -} -static void assignment(LexState*ls,struct LHS_assign*lh,int nvars){ -expdesc e; -check_condition(ls,VLOCAL<=lh->v.k&&lh->v.k<=VINDEXED, -"syntax error"); -if(testnext(ls,',')){ -struct LHS_assign nv; -nv.prev=lh; -primaryexp(ls,&nv.v); -if(nv.v.k==VLOCAL) -check_conflict(ls,lh,&nv.v); -luaY_checklimit(ls->fs,nvars,200-ls->L->nCcalls, -"variables in assignment"); -assignment(ls,&nv,nvars+1); -} -else{ -int nexps; -checknext(ls,'='); -nexps=explist1(ls,&e); -if(nexps!=nvars){ -adjust_assign(ls,nvars,nexps,&e); -if(nexps>nvars) -ls->fs->freereg-=nexps-nvars; -} -else{ -luaK_setoneret(ls->fs,&e); -luaK_storevar(ls->fs,&lh->v,&e); -return; -} -} -init_exp(&e,VNONRELOC,ls->fs->freereg-1); -luaK_storevar(ls->fs,&lh->v,&e); -} -static int cond(LexState*ls){ -expdesc v; -expr(ls,&v); -if(v.k==VNIL)v.k=VFALSE; -luaK_goiftrue(ls->fs,&v); -return v.f; -} -static void breakstat(LexState*ls){ -FuncState*fs=ls->fs; -BlockCnt*bl=fs->bl; -int upval=0; -while(bl&&!bl->isbreakable){ -upval|=bl->upval; -bl=bl->previous; -} -if(!bl) -luaX_syntaxerror(ls,"no loop to break"); -if(upval) -luaK_codeABC(fs,OP_CLOSE,bl->nactvar,0,0); -luaK_concat(fs,&bl->breaklist,luaK_jump(fs)); -} -static void whilestat(LexState*ls,int line){ -FuncState*fs=ls->fs; -int whileinit; -int condexit; -BlockCnt bl; -luaX_next(ls); -whileinit=luaK_getlabel(fs); -condexit=cond(ls); -enterblock(fs,&bl,1); -checknext(ls,TK_DO); -block(ls); -luaK_patchlist(fs,luaK_jump(fs),whileinit); -check_match(ls,TK_END,TK_WHILE,line); -leaveblock(fs); -luaK_patchtohere(fs,condexit); -} -static void repeatstat(LexState*ls,int line){ -int condexit; -FuncState*fs=ls->fs; -int repeat_init=luaK_getlabel(fs); -BlockCnt bl1,bl2; -enterblock(fs,&bl1,1); -enterblock(fs,&bl2,0); -luaX_next(ls); -chunk(ls); -check_match(ls,TK_UNTIL,TK_REPEAT,line); -condexit=cond(ls); -if(!bl2.upval){ -leaveblock(fs); -luaK_patchlist(ls->fs,condexit,repeat_init); -} -else{ -breakstat(ls); -luaK_patchtohere(ls->fs,condexit); -leaveblock(fs); -luaK_patchlist(ls->fs,luaK_jump(fs),repeat_init); -} -leaveblock(fs); -} -static int exp1(LexState*ls){ -expdesc e; -int k; -expr(ls,&e); -k=e.k; -luaK_exp2nextreg(ls->fs,&e); -return k; -} -static void forbody(LexState*ls,int base,int line,int nvars,int isnum){ -BlockCnt bl; -FuncState*fs=ls->fs; -int prep,endfor; -adjustlocalvars(ls,3); -checknext(ls,TK_DO); -prep=isnum?luaK_codeAsBx(fs,OP_FORPREP,base,(-1)):luaK_jump(fs); -enterblock(fs,&bl,0); -adjustlocalvars(ls,nvars); -luaK_reserveregs(fs,nvars); -block(ls); -leaveblock(fs); -luaK_patchtohere(fs,prep); -endfor=(isnum)?luaK_codeAsBx(fs,OP_FORLOOP,base,(-1)): -luaK_codeABC(fs,OP_TFORLOOP,base,0,nvars); -luaK_fixline(fs,line); -luaK_patchlist(fs,(isnum?endfor:luaK_jump(fs)),prep+1); -} -static void fornum(LexState*ls,TString*varname,int line){ -FuncState*fs=ls->fs; -int base=fs->freereg; -new_localvarliteral(ls,"(for index)",0); -new_localvarliteral(ls,"(for limit)",1); -new_localvarliteral(ls,"(for step)",2); -new_localvar(ls,varname,3); -checknext(ls,'='); -exp1(ls); -checknext(ls,','); -exp1(ls); -if(testnext(ls,',')) -exp1(ls); -else{ -luaK_codeABx(fs,OP_LOADK,fs->freereg,luaK_numberK(fs,1)); -luaK_reserveregs(fs,1); -} -forbody(ls,base,line,1,1); -} -static void forlist(LexState*ls,TString*indexname){ -FuncState*fs=ls->fs; -expdesc e; -int nvars=0; -int line; -int base=fs->freereg; -new_localvarliteral(ls,"(for generator)",nvars++); -new_localvarliteral(ls,"(for state)",nvars++); -new_localvarliteral(ls,"(for control)",nvars++); -new_localvar(ls,indexname,nvars++); -while(testnext(ls,',')) -new_localvar(ls,str_checkname(ls),nvars++); -checknext(ls,TK_IN); -line=ls->linenumber; -adjust_assign(ls,3,explist1(ls,&e),&e); -luaK_checkstack(fs,3); -forbody(ls,base,line,nvars-3,0); -} -static void forstat(LexState*ls,int line){ -FuncState*fs=ls->fs; -TString*varname; -BlockCnt bl; -enterblock(fs,&bl,1); -luaX_next(ls); -varname=str_checkname(ls); -switch(ls->t.token){ -case'=':fornum(ls,varname,line);break; -case',':case TK_IN:forlist(ls,varname);break; -default:luaX_syntaxerror(ls,LUA_QL("=")" or "LUA_QL("in")" expected"); -} -check_match(ls,TK_END,TK_FOR,line); -leaveblock(fs); -} -static int test_then_block(LexState*ls){ -int condexit; -luaX_next(ls); -condexit=cond(ls); -checknext(ls,TK_THEN); -block(ls); -return condexit; -} -static void ifstat(LexState*ls,int line){ -FuncState*fs=ls->fs; -int flist; -int escapelist=(-1); -flist=test_then_block(ls); -while(ls->t.token==TK_ELSEIF){ -luaK_concat(fs,&escapelist,luaK_jump(fs)); -luaK_patchtohere(fs,flist); -flist=test_then_block(ls); -} -if(ls->t.token==TK_ELSE){ -luaK_concat(fs,&escapelist,luaK_jump(fs)); -luaK_patchtohere(fs,flist); -luaX_next(ls); -block(ls); -} -else -luaK_concat(fs,&escapelist,flist); -luaK_patchtohere(fs,escapelist); -check_match(ls,TK_END,TK_IF,line); -} -static void localfunc(LexState*ls){ -expdesc v,b; -FuncState*fs=ls->fs; -new_localvar(ls,str_checkname(ls),0); -init_exp(&v,VLOCAL,fs->freereg); -luaK_reserveregs(fs,1); -adjustlocalvars(ls,1); -body(ls,&b,0,ls->linenumber); -luaK_storevar(fs,&v,&b); -getlocvar(fs,fs->nactvar-1).startpc=fs->pc; -} -static void localstat(LexState*ls){ -int nvars=0; -int nexps; -expdesc e; -do{ -new_localvar(ls,str_checkname(ls),nvars++); -}while(testnext(ls,',')); -if(testnext(ls,'=')) -nexps=explist1(ls,&e); -else{ -e.k=VVOID; -nexps=0; -} -adjust_assign(ls,nvars,nexps,&e); -adjustlocalvars(ls,nvars); -} -static int funcname(LexState*ls,expdesc*v){ -int needself=0; -singlevar(ls,v); -while(ls->t.token=='.') -field(ls,v); -if(ls->t.token==':'){ -needself=1; -field(ls,v); -} -return needself; -} -static void funcstat(LexState*ls,int line){ -int needself; -expdesc v,b; -luaX_next(ls); -needself=funcname(ls,&v); -body(ls,&b,needself,line); -luaK_storevar(ls->fs,&v,&b); -luaK_fixline(ls->fs,line); -} -static void exprstat(LexState*ls){ -FuncState*fs=ls->fs; -struct LHS_assign v; -primaryexp(ls,&v.v); -if(v.v.k==VCALL) -SETARG_C(getcode(fs,&v.v),1); -else{ -v.prev=NULL; -assignment(ls,&v,1); -} -} -static void retstat(LexState*ls){ -FuncState*fs=ls->fs; -expdesc e; -int first,nret; -luaX_next(ls); -if(block_follow(ls->t.token)||ls->t.token==';') -first=nret=0; -else{ -nret=explist1(ls,&e); -if(hasmultret(e.k)){ -luaK_setmultret(fs,&e); -if(e.k==VCALL&&nret==1){ -SET_OPCODE(getcode(fs,&e),OP_TAILCALL); -} -first=fs->nactvar; -nret=(-1); -} -else{ -if(nret==1) -first=luaK_exp2anyreg(fs,&e); -else{ -luaK_exp2nextreg(fs,&e); -first=fs->nactvar; -} -} -} -luaK_ret(fs,first,nret); -} -static int statement(LexState*ls){ -int line=ls->linenumber; -switch(ls->t.token){ -case TK_IF:{ -ifstat(ls,line); -return 0; -} -case TK_WHILE:{ -whilestat(ls,line); -return 0; -} -case TK_DO:{ -luaX_next(ls); -block(ls); -check_match(ls,TK_END,TK_DO,line); -return 0; -} -case TK_FOR:{ -forstat(ls,line); -return 0; -} -case TK_REPEAT:{ -repeatstat(ls,line); -return 0; -} -case TK_FUNCTION:{ -funcstat(ls,line); -return 0; -} -case TK_LOCAL:{ -luaX_next(ls); -if(testnext(ls,TK_FUNCTION)) -localfunc(ls); -else -localstat(ls); -return 0; -} -case TK_RETURN:{ -retstat(ls); -return 1; -} -case TK_BREAK:{ -luaX_next(ls); -breakstat(ls); -return 1; -} -default:{ -exprstat(ls); -return 0; -} -} -} -static void chunk(LexState*ls){ -int islast=0; -enterlevel(ls); -while(!islast&&!block_follow(ls->t.token)){ -islast=statement(ls); -testnext(ls,';'); -ls->fs->freereg=ls->fs->nactvar; -} -leavelevel(ls); -} -static const TValue*luaV_tonumber(const TValue*obj,TValue*n){ -lua_Number num; -if(ttisnumber(obj))return obj; -if(ttisstring(obj)&&luaO_str2d(svalue(obj),&num)){ -setnvalue(n,num); -return n; -} -else -return NULL; -} -static int luaV_tostring(lua_State*L,StkId obj){ -if(!ttisnumber(obj)) -return 0; -else{ -char s[32]; -lua_Number n=nvalue(obj); -lua_number2str(s,n); -setsvalue(L,obj,luaS_new(L,s)); -return 1; -} -} -static void callTMres(lua_State*L,StkId res,const TValue*f, -const TValue*p1,const TValue*p2){ -ptrdiff_t result=savestack(L,res); -setobj(L,L->top,f); -setobj(L,L->top+1,p1); -setobj(L,L->top+2,p2); -luaD_checkstack(L,3); -L->top+=3; -luaD_call(L,L->top-3,1); -res=restorestack(L,result); -L->top--; -setobj(L,res,L->top); -} -static void callTM(lua_State*L,const TValue*f,const TValue*p1, -const TValue*p2,const TValue*p3){ -setobj(L,L->top,f); -setobj(L,L->top+1,p1); -setobj(L,L->top+2,p2); -setobj(L,L->top+3,p3); -luaD_checkstack(L,4); -L->top+=4; -luaD_call(L,L->top-4,0); -} -static void luaV_gettable(lua_State*L,const TValue*t,TValue*key,StkId val){ -int loop; -for(loop=0;loop<100;loop++){ -const TValue*tm; -if(ttistable(t)){ -Table*h=hvalue(t); -const TValue*res=luaH_get(h,key); -if(!ttisnil(res)|| -(tm=fasttm(L,h->metatable,TM_INDEX))==NULL){ -setobj(L,val,res); -return; -} -} -else if(ttisnil(tm=luaT_gettmbyobj(L,t,TM_INDEX))) -luaG_typeerror(L,t,"index"); -if(ttisfunction(tm)){ -callTMres(L,val,tm,t,key); -return; -} -t=tm; -} -luaG_runerror(L,"loop in gettable"); -} -static void luaV_settable(lua_State*L,const TValue*t,TValue*key,StkId val){ -int loop; -TValue temp; -for(loop=0;loop<100;loop++){ -const TValue*tm; -if(ttistable(t)){ -Table*h=hvalue(t); -TValue*oldval=luaH_set(L,h,key); -if(!ttisnil(oldval)|| -(tm=fasttm(L,h->metatable,TM_NEWINDEX))==NULL){ -setobj(L,oldval,val); -h->flags=0; -luaC_barriert(L,h,val); -return; -} -} -else if(ttisnil(tm=luaT_gettmbyobj(L,t,TM_NEWINDEX))) -luaG_typeerror(L,t,"index"); -if(ttisfunction(tm)){ -callTM(L,tm,t,key,val); -return; -} -setobj(L,&temp,tm); -t=&temp; -} -luaG_runerror(L,"loop in settable"); -} -static int call_binTM(lua_State*L,const TValue*p1,const TValue*p2, -StkId res,TMS event){ -const TValue*tm=luaT_gettmbyobj(L,p1,event); -if(ttisnil(tm)) -tm=luaT_gettmbyobj(L,p2,event); -if(ttisnil(tm))return 0; -callTMres(L,res,tm,p1,p2); -return 1; -} -static const TValue*get_compTM(lua_State*L,Table*mt1,Table*mt2, -TMS event){ -const TValue*tm1=fasttm(L,mt1,event); -const TValue*tm2; -if(tm1==NULL)return NULL; -if(mt1==mt2)return tm1; -tm2=fasttm(L,mt2,event); -if(tm2==NULL)return NULL; -if(luaO_rawequalObj(tm1,tm2)) -return tm1; -return NULL; -} -static int call_orderTM(lua_State*L,const TValue*p1,const TValue*p2, -TMS event){ -const TValue*tm1=luaT_gettmbyobj(L,p1,event); -const TValue*tm2; -if(ttisnil(tm1))return-1; -tm2=luaT_gettmbyobj(L,p2,event); -if(!luaO_rawequalObj(tm1,tm2)) -return-1; -callTMres(L,L->top,tm1,p1,p2); -return!l_isfalse(L->top); -} -static int l_strcmp(const TString*ls,const TString*rs){ -const char*l=getstr(ls); -size_t ll=ls->tsv.len; -const char*r=getstr(rs); -size_t lr=rs->tsv.len; -for(;;){ -int temp=strcoll(l,r); -if(temp!=0)return temp; -else{ -size_t len=strlen(l); -if(len==lr) -return(len==ll)?0:1; -else if(len==ll) -return-1; -len++; -l+=len;ll-=len;r+=len;lr-=len; -} -} -} -static int luaV_lessthan(lua_State*L,const TValue*l,const TValue*r){ -int res; -if(ttype(l)!=ttype(r)) -return luaG_ordererror(L,l,r); -else if(ttisnumber(l)) -return luai_numlt(nvalue(l),nvalue(r)); -else if(ttisstring(l)) -return l_strcmp(rawtsvalue(l),rawtsvalue(r))<0; -else if((res=call_orderTM(L,l,r,TM_LT))!=-1) -return res; -return luaG_ordererror(L,l,r); -} -static int lessequal(lua_State*L,const TValue*l,const TValue*r){ -int res; -if(ttype(l)!=ttype(r)) -return luaG_ordererror(L,l,r); -else if(ttisnumber(l)) -return luai_numle(nvalue(l),nvalue(r)); -else if(ttisstring(l)) -return l_strcmp(rawtsvalue(l),rawtsvalue(r))<=0; -else if((res=call_orderTM(L,l,r,TM_LE))!=-1) -return res; -else if((res=call_orderTM(L,r,l,TM_LT))!=-1) -return!res; -return luaG_ordererror(L,l,r); -} -static int luaV_equalval(lua_State*L,const TValue*t1,const TValue*t2){ -const TValue*tm; -switch(ttype(t1)){ -case 0:return 1; -case 3:return luai_numeq(nvalue(t1),nvalue(t2)); -case 1:return bvalue(t1)==bvalue(t2); -case 2:return pvalue(t1)==pvalue(t2); -case 7:{ -if(uvalue(t1)==uvalue(t2))return 1; -tm=get_compTM(L,uvalue(t1)->metatable,uvalue(t2)->metatable, -TM_EQ); -break; -} -case 5:{ -if(hvalue(t1)==hvalue(t2))return 1; -tm=get_compTM(L,hvalue(t1)->metatable,hvalue(t2)->metatable,TM_EQ); -break; -} -default:return gcvalue(t1)==gcvalue(t2); -} -if(tm==NULL)return 0; -callTMres(L,L->top,tm,t1,t2); -return!l_isfalse(L->top); -} -static void luaV_concat(lua_State*L,int total,int last){ -do{ -StkId top=L->base+last+1; -int n=2; -if(!(ttisstring(top-2)||ttisnumber(top-2))||!tostring(L,top-1)){ -if(!call_binTM(L,top-2,top-1,top-2,TM_CONCAT)) -luaG_concaterror(L,top-2,top-1); -}else if(tsvalue(top-1)->len==0) -(void)tostring(L,top-2); -else{ -size_t tl=tsvalue(top-1)->len; -char*buffer; -int i; -for(n=1;nlen; -if(l>=((size_t)(~(size_t)0)-2)-tl)luaG_runerror(L,"string length overflow"); -tl+=l; -} -buffer=luaZ_openspace(L,&G(L)->buff,tl); -tl=0; -for(i=n;i>0;i--){ -size_t l=tsvalue(top-i)->len; -memcpy(buffer+tl,svalue(top-i),l); -tl+=l; -} -setsvalue(L,top-n,luaS_newlstr(L,buffer,tl)); -} -total-=n-1; -last-=n-1; -}while(total>1); -} -static void Arith(lua_State*L,StkId ra,const TValue*rb, -const TValue*rc,TMS op){ -TValue tempb,tempc; -const TValue*b,*c; -if((b=luaV_tonumber(rb,&tempb))!=NULL&& -(c=luaV_tonumber(rc,&tempc))!=NULL){ -lua_Number nb=nvalue(b),nc=nvalue(c); -switch(op){ -case TM_ADD:setnvalue(ra,luai_numadd(nb,nc));break; -case TM_SUB:setnvalue(ra,luai_numsub(nb,nc));break; -case TM_MUL:setnvalue(ra,luai_nummul(nb,nc));break; -case TM_DIV:setnvalue(ra,luai_numdiv(nb,nc));break; -case TM_MOD:setnvalue(ra,luai_nummod(nb,nc));break; -case TM_POW:setnvalue(ra,luai_numpow(nb,nc));break; -case TM_UNM:setnvalue(ra,luai_numunm(nb));break; -default:break; -} -} -else if(!call_binTM(L,rb,rc,ra,op)) -luaG_aritherror(L,rb,rc); -} -#define runtime_check(L,c){if(!(c))break;} -#define RA(i)(base+GETARG_A(i)) -#define RB(i)check_exp(getBMode(GET_OPCODE(i))==OpArgR,base+GETARG_B(i)) -#define RKB(i)check_exp(getBMode(GET_OPCODE(i))==OpArgK,ISK(GETARG_B(i))?k+INDEXK(GETARG_B(i)):base+GETARG_B(i)) -#define RKC(i)check_exp(getCMode(GET_OPCODE(i))==OpArgK,ISK(GETARG_C(i))?k+INDEXK(GETARG_C(i)):base+GETARG_C(i)) -#define KBx(i)check_exp(getBMode(GET_OPCODE(i))==OpArgK,k+GETARG_Bx(i)) -#define dojump(L,pc,i){(pc)+=(i);} -#define Protect(x){L->savedpc=pc;{x;};base=L->base;} -#define arith_op(op,tm){TValue*rb=RKB(i);TValue*rc=RKC(i);if(ttisnumber(rb)&&ttisnumber(rc)){lua_Number nb=nvalue(rb),nc=nvalue(rc);setnvalue(ra,op(nb,nc));}else Protect(Arith(L,ra,rb,rc,tm));} -static void luaV_execute(lua_State*L,int nexeccalls){ -LClosure*cl; -StkId base; -TValue*k; -const Instruction*pc; -reentry: -pc=L->savedpc; -cl=&clvalue(L->ci->func)->l; -base=L->base; -k=cl->p->k; -for(;;){ -const Instruction i=*pc++; -StkId ra; -ra=RA(i); -switch(GET_OPCODE(i)){ -case OP_MOVE:{ -setobj(L,ra,RB(i)); -continue; -} -case OP_LOADK:{ -setobj(L,ra,KBx(i)); -continue; -} -case OP_LOADBOOL:{ -setbvalue(ra,GETARG_B(i)); -if(GETARG_C(i))pc++; -continue; -} -case OP_LOADNIL:{ -TValue*rb=RB(i); -do{ -setnilvalue(rb--); -}while(rb>=ra); -continue; -} -case OP_GETUPVAL:{ -int b=GETARG_B(i); -setobj(L,ra,cl->upvals[b]->v); -continue; -} -case OP_GETGLOBAL:{ -TValue g; -TValue*rb=KBx(i); -sethvalue(L,&g,cl->env); -Protect(luaV_gettable(L,&g,rb,ra)); -continue; -} -case OP_GETTABLE:{ -Protect(luaV_gettable(L,RB(i),RKC(i),ra)); -continue; -} -case OP_SETGLOBAL:{ -TValue g; -sethvalue(L,&g,cl->env); -Protect(luaV_settable(L,&g,KBx(i),ra)); -continue; -} -case OP_SETUPVAL:{ -UpVal*uv=cl->upvals[GETARG_B(i)]; -setobj(L,uv->v,ra); -luaC_barrier(L,uv,ra); -continue; -} -case OP_SETTABLE:{ -Protect(luaV_settable(L,ra,RKB(i),RKC(i))); -continue; -} -case OP_NEWTABLE:{ -int b=GETARG_B(i); -int c=GETARG_C(i); -sethvalue(L,ra,luaH_new(L,luaO_fb2int(b),luaO_fb2int(c))); -Protect(luaC_checkGC(L)); -continue; -} -case OP_SELF:{ -StkId rb=RB(i); -setobj(L,ra+1,rb); -Protect(luaV_gettable(L,rb,RKC(i),ra)); -continue; -} -case OP_ADD:{ -arith_op(luai_numadd,TM_ADD); -continue; -} -case OP_SUB:{ -arith_op(luai_numsub,TM_SUB); -continue; -} -case OP_MUL:{ -arith_op(luai_nummul,TM_MUL); -continue; -} -case OP_DIV:{ -arith_op(luai_numdiv,TM_DIV); -continue; -} -case OP_MOD:{ -arith_op(luai_nummod,TM_MOD); -continue; -} -case OP_POW:{ -arith_op(luai_numpow,TM_POW); -continue; -} -case OP_UNM:{ -TValue*rb=RB(i); -if(ttisnumber(rb)){ -lua_Number nb=nvalue(rb); -setnvalue(ra,luai_numunm(nb)); -} -else{ -Protect(Arith(L,ra,rb,rb,TM_UNM)); -} -continue; -} -case OP_NOT:{ -int res=l_isfalse(RB(i)); -setbvalue(ra,res); -continue; -} -case OP_LEN:{ -const TValue*rb=RB(i); -switch(ttype(rb)){ -case 5:{ -setnvalue(ra,cast_num(luaH_getn(hvalue(rb)))); -break; -} -case 4:{ -setnvalue(ra,cast_num(tsvalue(rb)->len)); -break; -} -default:{ -Protect( -if(!call_binTM(L,rb,(&luaO_nilobject_),ra,TM_LEN)) -luaG_typeerror(L,rb,"get length of"); -) -} -} -continue; -} -case OP_CONCAT:{ -int b=GETARG_B(i); -int c=GETARG_C(i); -Protect(luaV_concat(L,c-b+1,c);luaC_checkGC(L)); -setobj(L,RA(i),base+b); -continue; -} -case OP_JMP:{ -dojump(L,pc,GETARG_sBx(i)); -continue; -} -case OP_EQ:{ -TValue*rb=RKB(i); -TValue*rc=RKC(i); -Protect( -if(equalobj(L,rb,rc)==GETARG_A(i)) -dojump(L,pc,GETARG_sBx(*pc)); -) -pc++; -continue; -} -case OP_LT:{ -Protect( -if(luaV_lessthan(L,RKB(i),RKC(i))==GETARG_A(i)) -dojump(L,pc,GETARG_sBx(*pc)); -) -pc++; -continue; -} -case OP_LE:{ -Protect( -if(lessequal(L,RKB(i),RKC(i))==GETARG_A(i)) -dojump(L,pc,GETARG_sBx(*pc)); -) -pc++; -continue; -} -case OP_TEST:{ -if(l_isfalse(ra)!=GETARG_C(i)) -dojump(L,pc,GETARG_sBx(*pc)); -pc++; -continue; -} -case OP_TESTSET:{ -TValue*rb=RB(i); -if(l_isfalse(rb)!=GETARG_C(i)){ -setobj(L,ra,rb); -dojump(L,pc,GETARG_sBx(*pc)); -} -pc++; -continue; -} -case OP_CALL:{ -int b=GETARG_B(i); -int nresults=GETARG_C(i)-1; -if(b!=0)L->top=ra+b; -L->savedpc=pc; -switch(luaD_precall(L,ra,nresults)){ -case 0:{ -nexeccalls++; -goto reentry; -} -case 1:{ -if(nresults>=0)L->top=L->ci->top; -base=L->base; -continue; -} -default:{ -return; -} -} -} -case OP_TAILCALL:{ -int b=GETARG_B(i); -if(b!=0)L->top=ra+b; -L->savedpc=pc; -switch(luaD_precall(L,ra,(-1))){ -case 0:{ -CallInfo*ci=L->ci-1; -int aux; -StkId func=ci->func; -StkId pfunc=(ci+1)->func; -if(L->openupval)luaF_close(L,ci->base); -L->base=ci->base=ci->func+((ci+1)->base-pfunc); -for(aux=0;pfunc+auxtop;aux++) -setobj(L,func+aux,pfunc+aux); -ci->top=L->top=func+aux; -ci->savedpc=L->savedpc; -ci->tailcalls++; -L->ci--; -goto reentry; -} -case 1:{ -base=L->base; -continue; -} -default:{ -return; -} -} -} -case OP_RETURN:{ -int b=GETARG_B(i); -if(b!=0)L->top=ra+b-1; -if(L->openupval)luaF_close(L,base); -L->savedpc=pc; -b=luaD_poscall(L,ra); -if(--nexeccalls==0) -return; -else{ -if(b)L->top=L->ci->top; -goto reentry; -} -} -case OP_FORLOOP:{ -lua_Number step=nvalue(ra+2); -lua_Number idx=luai_numadd(nvalue(ra),step); -lua_Number limit=nvalue(ra+1); -if(luai_numlt(0,step)?luai_numle(idx,limit) -:luai_numle(limit,idx)){ -dojump(L,pc,GETARG_sBx(i)); -setnvalue(ra,idx); -setnvalue(ra+3,idx); -} -continue; -} -case OP_FORPREP:{ -const TValue*init=ra; -const TValue*plimit=ra+1; -const TValue*pstep=ra+2; -L->savedpc=pc; -if(!tonumber(init,ra)) -luaG_runerror(L,LUA_QL("for")" initial value must be a number"); -else if(!tonumber(plimit,ra+1)) -luaG_runerror(L,LUA_QL("for")" limit must be a number"); -else if(!tonumber(pstep,ra+2)) -luaG_runerror(L,LUA_QL("for")" step must be a number"); -setnvalue(ra,luai_numsub(nvalue(ra),nvalue(pstep))); -dojump(L,pc,GETARG_sBx(i)); -continue; -} -case OP_TFORLOOP:{ -StkId cb=ra+3; -setobj(L,cb+2,ra+2); -setobj(L,cb+1,ra+1); -setobj(L,cb,ra); -L->top=cb+3; -Protect(luaD_call(L,cb,GETARG_C(i))); -L->top=L->ci->top; -cb=RA(i)+3; -if(!ttisnil(cb)){ -setobj(L,cb-1,cb); -dojump(L,pc,GETARG_sBx(*pc)); -} -pc++; -continue; -} -case OP_SETLIST:{ -int n=GETARG_B(i); -int c=GETARG_C(i); -int last; -Table*h; -if(n==0){ -n=cast_int(L->top-ra)-1; -L->top=L->ci->top; -} -if(c==0)c=cast_int(*pc++); -runtime_check(L,ttistable(ra)); -h=hvalue(ra); -last=((c-1)*50)+n; -if(last>h->sizearray) -luaH_resizearray(L,h,last); -for(;n>0;n--){ -TValue*val=ra+n; -setobj(L,luaH_setnum(L,h,last--),val); -luaC_barriert(L,h,val); -} -continue; -} -case OP_CLOSE:{ -luaF_close(L,ra); -continue; -} -case OP_CLOSURE:{ -Proto*p; -Closure*ncl; -int nup,j; -p=cl->p->p[GETARG_Bx(i)]; -nup=p->nups; -ncl=luaF_newLclosure(L,nup,cl->env); -ncl->l.p=p; -for(j=0;jl.upvals[j]=cl->upvals[GETARG_B(*pc)]; -else{ -ncl->l.upvals[j]=luaF_findupval(L,base+GETARG_B(*pc)); -} -} -setclvalue(L,ra,ncl); -Protect(luaC_checkGC(L)); -continue; -} -case OP_VARARG:{ -int b=GETARG_B(i)-1; -int j; -CallInfo*ci=L->ci; -int n=cast_int(ci->base-ci->func)-cl->p->numparams-1; -if(b==(-1)){ -Protect(luaD_checkstack(L,n)); -ra=RA(i); -b=n; -L->top=ra+n; -} -for(j=0;jbase-n+j); -} -else{ -setnilvalue(ra+j); -} -} -continue; -} -} -} -} -#define api_checknelems(L,n)luai_apicheck(L,(n)<=(L->top-L->base)) -#define api_checkvalidindex(L,i)luai_apicheck(L,(i)!=(&luaO_nilobject_)) -#define api_incr_top(L){luai_apicheck(L,L->topci->top);L->top++;} -static TValue*index2adr(lua_State*L,int idx){ -if(idx>0){ -TValue*o=L->base+(idx-1); -luai_apicheck(L,idx<=L->ci->top-L->base); -if(o>=L->top)return cast(TValue*,(&luaO_nilobject_)); -else return o; -} -else if(idx>(-10000)){ -luai_apicheck(L,idx!=0&&-idx<=L->top-L->base); -return L->top+idx; -} -else switch(idx){ -case(-10000):return registry(L); -case(-10001):{ -Closure*func=curr_func(L); -sethvalue(L,&L->env,func->c.env); -return&L->env; -} -case(-10002):return gt(L); -default:{ -Closure*func=curr_func(L); -idx=(-10002)-idx; -return(idx<=func->c.nupvalues) -?&func->c.upvalue[idx-1] -:cast(TValue*,(&luaO_nilobject_)); -} -} -} -static Table*getcurrenv(lua_State*L){ -if(L->ci==L->base_ci) -return hvalue(gt(L)); -else{ -Closure*func=curr_func(L); -return func->c.env; -} -} -static int lua_checkstack(lua_State*L,int size){ -int res=1; -if(size>8000||(L->top-L->base+size)>8000) -res=0; -else if(size>0){ -luaD_checkstack(L,size); -if(L->ci->toptop+size) -L->ci->top=L->top+size; -} -return res; -} -static lua_CFunction lua_atpanic(lua_State*L,lua_CFunction panicf){ -lua_CFunction old; -old=G(L)->panic; -G(L)->panic=panicf; -return old; -} -static int lua_gettop(lua_State*L){ -return cast_int(L->top-L->base); -} -static void lua_settop(lua_State*L,int idx){ -if(idx>=0){ -luai_apicheck(L,idx<=L->stack_last-L->base); -while(L->topbase+idx) -setnilvalue(L->top++); -L->top=L->base+idx; -} -else{ -luai_apicheck(L,-(idx+1)<=(L->top-L->base)); -L->top+=idx+1; -} -} -static void lua_remove(lua_State*L,int idx){ -StkId p; -p=index2adr(L,idx); -api_checkvalidindex(L,p); -while(++ptop)setobj(L,p-1,p); -L->top--; -} -static void lua_insert(lua_State*L,int idx){ -StkId p; -StkId q; -p=index2adr(L,idx); -api_checkvalidindex(L,p); -for(q=L->top;q>p;q--)setobj(L,q,q-1); -setobj(L,p,L->top); -} -static void lua_replace(lua_State*L,int idx){ -StkId o; -if(idx==(-10001)&&L->ci==L->base_ci) -luaG_runerror(L,"no calling environment"); -api_checknelems(L,1); -o=index2adr(L,idx); -api_checkvalidindex(L,o); -if(idx==(-10001)){ -Closure*func=curr_func(L); -luai_apicheck(L,ttistable(L->top-1)); -func->c.env=hvalue(L->top-1); -luaC_barrier(L,func,L->top-1); -} -else{ -setobj(L,o,L->top-1); -if(idx<(-10002)) -luaC_barrier(L,curr_func(L),L->top-1); -} -L->top--; -} -static void lua_pushvalue(lua_State*L,int idx){ -setobj(L,L->top,index2adr(L,idx)); -api_incr_top(L); -} -static int lua_type(lua_State*L,int idx){ -StkId o=index2adr(L,idx); -return(o==(&luaO_nilobject_))?(-1):ttype(o); -} -static const char*lua_typename(lua_State*L,int t){ -UNUSED(L); -return(t==(-1))?"no value":luaT_typenames[t]; -} -static int lua_iscfunction(lua_State*L,int idx){ -StkId o=index2adr(L,idx); -return iscfunction(o); -} -static int lua_isnumber(lua_State*L,int idx){ -TValue n; -const TValue*o=index2adr(L,idx); -return tonumber(o,&n); -} -static int lua_isstring(lua_State*L,int idx){ -int t=lua_type(L,idx); -return(t==4||t==3); -} -static int lua_rawequal(lua_State*L,int index1,int index2){ -StkId o1=index2adr(L,index1); -StkId o2=index2adr(L,index2); -return(o1==(&luaO_nilobject_)||o2==(&luaO_nilobject_))?0 -:luaO_rawequalObj(o1,o2); -} -static int lua_lessthan(lua_State*L,int index1,int index2){ -StkId o1,o2; -int i; -o1=index2adr(L,index1); -o2=index2adr(L,index2); -i=(o1==(&luaO_nilobject_)||o2==(&luaO_nilobject_))?0 -:luaV_lessthan(L,o1,o2); -return i; -} -static lua_Number lua_tonumber(lua_State*L,int idx){ -TValue n; -const TValue*o=index2adr(L,idx); -if(tonumber(o,&n)) -return nvalue(o); -else -return 0; -} -static lua_Integer lua_tointeger(lua_State*L,int idx){ -TValue n; -const TValue*o=index2adr(L,idx); -if(tonumber(o,&n)){ -lua_Integer res; -lua_Number num=nvalue(o); -lua_number2integer(res,num); -return res; -} -else -return 0; -} -static int lua_toboolean(lua_State*L,int idx){ -const TValue*o=index2adr(L,idx); -return!l_isfalse(o); -} -static const char*lua_tolstring(lua_State*L,int idx,size_t*len){ -StkId o=index2adr(L,idx); -if(!ttisstring(o)){ -if(!luaV_tostring(L,o)){ -if(len!=NULL)*len=0; -return NULL; -} -luaC_checkGC(L); -o=index2adr(L,idx); -} -if(len!=NULL)*len=tsvalue(o)->len; -return svalue(o); -} -static size_t lua_objlen(lua_State*L,int idx){ -StkId o=index2adr(L,idx); -switch(ttype(o)){ -case 4:return tsvalue(o)->len; -case 7:return uvalue(o)->len; -case 5:return luaH_getn(hvalue(o)); -case 3:{ -size_t l; -l=(luaV_tostring(L,o)?tsvalue(o)->len:0); -return l; -} -default:return 0; -} -} -static lua_CFunction lua_tocfunction(lua_State*L,int idx){ -StkId o=index2adr(L,idx); -return(!iscfunction(o))?NULL:clvalue(o)->c.f; -} -static void*lua_touserdata(lua_State*L,int idx){ -StkId o=index2adr(L,idx); -switch(ttype(o)){ -case 7:return(rawuvalue(o)+1); -case 2:return pvalue(o); -default:return NULL; -} -} -static void lua_pushnil(lua_State*L){ -setnilvalue(L->top); -api_incr_top(L); -} -static void lua_pushnumber(lua_State*L,lua_Number n){ -setnvalue(L->top,n); -api_incr_top(L); -} -static void lua_pushinteger(lua_State*L,lua_Integer n){ -setnvalue(L->top,cast_num(n)); -api_incr_top(L); -} -static void lua_pushlstring(lua_State*L,const char*s,size_t len){ -luaC_checkGC(L); -setsvalue(L,L->top,luaS_newlstr(L,s,len)); -api_incr_top(L); -} -static void lua_pushstring(lua_State*L,const char*s){ -if(s==NULL) -lua_pushnil(L); -else -lua_pushlstring(L,s,strlen(s)); -} -static const char*lua_pushvfstring(lua_State*L,const char*fmt, -va_list argp){ -const char*ret; -luaC_checkGC(L); -ret=luaO_pushvfstring(L,fmt,argp); -return ret; -} -static const char*lua_pushfstring(lua_State*L,const char*fmt,...){ -const char*ret; -va_list argp; -luaC_checkGC(L); -va_start(argp,fmt); -ret=luaO_pushvfstring(L,fmt,argp); -va_end(argp); -return ret; -} -static void lua_pushcclosure(lua_State*L,lua_CFunction fn,int n){ -Closure*cl; -luaC_checkGC(L); -api_checknelems(L,n); -cl=luaF_newCclosure(L,n,getcurrenv(L)); -cl->c.f=fn; -L->top-=n; -while(n--) -setobj(L,&cl->c.upvalue[n],L->top+n); -setclvalue(L,L->top,cl); -api_incr_top(L); -} -static void lua_pushboolean(lua_State*L,int b){ -setbvalue(L->top,(b!=0)); -api_incr_top(L); -} -static int lua_pushthread(lua_State*L){ -setthvalue(L,L->top,L); -api_incr_top(L); -return(G(L)->mainthread==L); -} -static void lua_gettable(lua_State*L,int idx){ -StkId t; -t=index2adr(L,idx); -api_checkvalidindex(L,t); -luaV_gettable(L,t,L->top-1,L->top-1); -} -static void lua_getfield(lua_State*L,int idx,const char*k){ -StkId t; -TValue key; -t=index2adr(L,idx); -api_checkvalidindex(L,t); -setsvalue(L,&key,luaS_new(L,k)); -luaV_gettable(L,t,&key,L->top); -api_incr_top(L); -} -static void lua_rawget(lua_State*L,int idx){ -StkId t; -t=index2adr(L,idx); -luai_apicheck(L,ttistable(t)); -setobj(L,L->top-1,luaH_get(hvalue(t),L->top-1)); -} -static void lua_rawgeti(lua_State*L,int idx,int n){ -StkId o; -o=index2adr(L,idx); -luai_apicheck(L,ttistable(o)); -setobj(L,L->top,luaH_getnum(hvalue(o),n)); -api_incr_top(L); -} -static void lua_createtable(lua_State*L,int narray,int nrec){ -luaC_checkGC(L); -sethvalue(L,L->top,luaH_new(L,narray,nrec)); -api_incr_top(L); -} -static int lua_getmetatable(lua_State*L,int objindex){ -const TValue*obj; -Table*mt=NULL; -int res; -obj=index2adr(L,objindex); -switch(ttype(obj)){ -case 5: -mt=hvalue(obj)->metatable; -break; -case 7: -mt=uvalue(obj)->metatable; -break; -default: -mt=G(L)->mt[ttype(obj)]; -break; -} -if(mt==NULL) -res=0; -else{ -sethvalue(L,L->top,mt); -api_incr_top(L); -res=1; -} -return res; -} -static void lua_getfenv(lua_State*L,int idx){ -StkId o; -o=index2adr(L,idx); -api_checkvalidindex(L,o); -switch(ttype(o)){ -case 6: -sethvalue(L,L->top,clvalue(o)->c.env); -break; -case 7: -sethvalue(L,L->top,uvalue(o)->env); -break; -case 8: -setobj(L,L->top,gt(thvalue(o))); -break; -default: -setnilvalue(L->top); -break; -} -api_incr_top(L); -} -static void lua_settable(lua_State*L,int idx){ -StkId t; -api_checknelems(L,2); -t=index2adr(L,idx); -api_checkvalidindex(L,t); -luaV_settable(L,t,L->top-2,L->top-1); -L->top-=2; -} -static void lua_setfield(lua_State*L,int idx,const char*k){ -StkId t; -TValue key; -api_checknelems(L,1); -t=index2adr(L,idx); -api_checkvalidindex(L,t); -setsvalue(L,&key,luaS_new(L,k)); -luaV_settable(L,t,&key,L->top-1); -L->top--; -} -static void lua_rawset(lua_State*L,int idx){ -StkId t; -api_checknelems(L,2); -t=index2adr(L,idx); -luai_apicheck(L,ttistable(t)); -setobj(L,luaH_set(L,hvalue(t),L->top-2),L->top-1); -luaC_barriert(L,hvalue(t),L->top-1); -L->top-=2; -} -static void lua_rawseti(lua_State*L,int idx,int n){ -StkId o; -api_checknelems(L,1); -o=index2adr(L,idx); -luai_apicheck(L,ttistable(o)); -setobj(L,luaH_setnum(L,hvalue(o),n),L->top-1); -luaC_barriert(L,hvalue(o),L->top-1); -L->top--; -} -static int lua_setmetatable(lua_State*L,int objindex){ -TValue*obj; -Table*mt; -api_checknelems(L,1); -obj=index2adr(L,objindex); -api_checkvalidindex(L,obj); -if(ttisnil(L->top-1)) -mt=NULL; -else{ -luai_apicheck(L,ttistable(L->top-1)); -mt=hvalue(L->top-1); -} -switch(ttype(obj)){ -case 5:{ -hvalue(obj)->metatable=mt; -if(mt) -luaC_objbarriert(L,hvalue(obj),mt); -break; -} -case 7:{ -uvalue(obj)->metatable=mt; -if(mt) -luaC_objbarrier(L,rawuvalue(obj),mt); -break; -} -default:{ -G(L)->mt[ttype(obj)]=mt; -break; -} -} -L->top--; -return 1; -} -static int lua_setfenv(lua_State*L,int idx){ -StkId o; -int res=1; -api_checknelems(L,1); -o=index2adr(L,idx); -api_checkvalidindex(L,o); -luai_apicheck(L,ttistable(L->top-1)); -switch(ttype(o)){ -case 6: -clvalue(o)->c.env=hvalue(L->top-1); -break; -case 7: -uvalue(o)->env=hvalue(L->top-1); -break; -case 8: -sethvalue(L,gt(thvalue(o)),hvalue(L->top-1)); -break; -default: -res=0; -break; -} -if(res)luaC_objbarrier(L,gcvalue(o),hvalue(L->top-1)); -L->top--; -return res; -} -#define adjustresults(L,nres){if(nres==(-1)&&L->top>=L->ci->top)L->ci->top=L->top;} -#define checkresults(L,na,nr)luai_apicheck(L,(nr)==(-1)||(L->ci->top-L->top>=(nr)-(na))) -static void lua_call(lua_State*L,int nargs,int nresults){ -StkId func; -api_checknelems(L,nargs+1); -checkresults(L,nargs,nresults); -func=L->top-(nargs+1); -luaD_call(L,func,nresults); -adjustresults(L,nresults); -} -struct CallS{ -StkId func; -int nresults; -}; -static void f_call(lua_State*L,void*ud){ -struct CallS*c=cast(struct CallS*,ud); -luaD_call(L,c->func,c->nresults); -} -static int lua_pcall(lua_State*L,int nargs,int nresults,int errfunc){ -struct CallS c; -int status; -ptrdiff_t func; -api_checknelems(L,nargs+1); -checkresults(L,nargs,nresults); -if(errfunc==0) -func=0; -else{ -StkId o=index2adr(L,errfunc); -api_checkvalidindex(L,o); -func=savestack(L,o); -} -c.func=L->top-(nargs+1); -c.nresults=nresults; -status=luaD_pcall(L,f_call,&c,savestack(L,c.func),func); -adjustresults(L,nresults); -return status; -} -static int lua_load(lua_State*L,lua_Reader reader,void*data, -const char*chunkname){ -ZIO z; -int status; -if(!chunkname)chunkname="?"; -luaZ_init(L,&z,reader,data); -status=luaD_protectedparser(L,&z,chunkname); -return status; -} -static int lua_error(lua_State*L){ -api_checknelems(L,1); -luaG_errormsg(L); -return 0; -} -static int lua_next(lua_State*L,int idx){ -StkId t; -int more; -t=index2adr(L,idx); -luai_apicheck(L,ttistable(t)); -more=luaH_next(L,hvalue(t),L->top-1); -if(more){ -api_incr_top(L); -} -else -L->top-=1; -return more; -} -static void lua_concat(lua_State*L,int n){ -api_checknelems(L,n); -if(n>=2){ -luaC_checkGC(L); -luaV_concat(L,n,cast_int(L->top-L->base)-1); -L->top-=(n-1); -} -else if(n==0){ -setsvalue(L,L->top,luaS_newlstr(L,"",0)); -api_incr_top(L); -} -} -static void*lua_newuserdata(lua_State*L,size_t size){ -Udata*u; -luaC_checkGC(L); -u=luaS_newudata(L,size,getcurrenv(L)); -setuvalue(L,L->top,u); -api_incr_top(L); -return u+1; -} -#define luaL_getn(L,i)((int)lua_objlen(L,i)) -#define luaL_setn(L,i,j)((void)0) -typedef struct luaL_Reg{ -const char*name; -lua_CFunction func; -}luaL_Reg; -static void luaI_openlib(lua_State*L,const char*libname, -const luaL_Reg*l,int nup); -static int luaL_argerror(lua_State*L,int numarg,const char*extramsg); -static const char* luaL_checklstring(lua_State*L,int numArg, -size_t*l); -static const char* luaL_optlstring(lua_State*L,int numArg, -const char*def,size_t*l); -static lua_Integer luaL_checkinteger(lua_State*L,int numArg); -static lua_Integer luaL_optinteger(lua_State*L,int nArg, -lua_Integer def); -static int luaL_error(lua_State*L,const char*fmt,...); -static const char* luaL_findtable(lua_State*L,int idx, -const char*fname,int szhint); -#define luaL_argcheck(L,cond,numarg,extramsg)((void)((cond)||luaL_argerror(L,(numarg),(extramsg)))) -#define luaL_checkstring(L,n)(luaL_checklstring(L,(n),NULL)) -#define luaL_optstring(L,n,d)(luaL_optlstring(L,(n),(d),NULL)) -#define luaL_checkint(L,n)((int)luaL_checkinteger(L,(n))) -#define luaL_optint(L,n,d)((int)luaL_optinteger(L,(n),(d))) -#define luaL_typename(L,i)lua_typename(L,lua_type(L,(i))) -#define luaL_getmetatable(L,n)(lua_getfield(L,(-10000),(n))) -#define luaL_opt(L,f,n,d)(lua_isnoneornil(L,(n))?(d):f(L,(n))) -typedef struct luaL_Buffer{ -char*p; -int lvl; -lua_State*L; -char buffer[BUFSIZ]; -}luaL_Buffer; -#define luaL_addchar(B,c)((void)((B)->p<((B)->buffer+BUFSIZ)||luaL_prepbuffer(B)),(*(B)->p++=(char)(c))) -#define luaL_addsize(B,n)((B)->p+=(n)) -static char* luaL_prepbuffer(luaL_Buffer*B); -static int luaL_argerror(lua_State*L,int narg,const char*extramsg){ -lua_Debug ar; -if(!lua_getstack(L,0,&ar)) -return luaL_error(L,"bad argument #%d (%s)",narg,extramsg); -lua_getinfo(L,"n",&ar); -if(strcmp(ar.namewhat,"method")==0){ -narg--; -if(narg==0) -return luaL_error(L,"calling "LUA_QL("%s")" on bad self (%s)", -ar.name,extramsg); -} -if(ar.name==NULL) -ar.name="?"; -return luaL_error(L,"bad argument #%d to "LUA_QL("%s")" (%s)", -narg,ar.name,extramsg); -} -static int luaL_typerror(lua_State*L,int narg,const char*tname){ -const char*msg=lua_pushfstring(L,"%s expected, got %s", -tname,luaL_typename(L,narg)); -return luaL_argerror(L,narg,msg); -} -static void tag_error(lua_State*L,int narg,int tag){ -luaL_typerror(L,narg,lua_typename(L,tag)); -} -static void luaL_where(lua_State*L,int level){ -lua_Debug ar; -if(lua_getstack(L,level,&ar)){ -lua_getinfo(L,"Sl",&ar); -if(ar.currentline>0){ -lua_pushfstring(L,"%s:%d: ",ar.short_src,ar.currentline); -return; -} -} -lua_pushliteral(L,""); -} -static int luaL_error(lua_State*L,const char*fmt,...){ -va_list argp; -va_start(argp,fmt); -luaL_where(L,1); -lua_pushvfstring(L,fmt,argp); -va_end(argp); -lua_concat(L,2); -return lua_error(L); -} -static int luaL_newmetatable(lua_State*L,const char*tname){ -lua_getfield(L,(-10000),tname); -if(!lua_isnil(L,-1)) -return 0; -lua_pop(L,1); -lua_newtable(L); -lua_pushvalue(L,-1); -lua_setfield(L,(-10000),tname); -return 1; -} -static void*luaL_checkudata(lua_State*L,int ud,const char*tname){ -void*p=lua_touserdata(L,ud); -if(p!=NULL){ -if(lua_getmetatable(L,ud)){ -lua_getfield(L,(-10000),tname); -if(lua_rawequal(L,-1,-2)){ -lua_pop(L,2); -return p; -} -} -} -luaL_typerror(L,ud,tname); -return NULL; -} -static void luaL_checkstack(lua_State*L,int space,const char*mes){ -if(!lua_checkstack(L,space)) -luaL_error(L,"stack overflow (%s)",mes); -} -static void luaL_checktype(lua_State*L,int narg,int t){ -if(lua_type(L,narg)!=t) -tag_error(L,narg,t); -} -static void luaL_checkany(lua_State*L,int narg){ -if(lua_type(L,narg)==(-1)) -luaL_argerror(L,narg,"value expected"); -} -static const char*luaL_checklstring(lua_State*L,int narg,size_t*len){ -const char*s=lua_tolstring(L,narg,len); -if(!s)tag_error(L,narg,4); -return s; -} -static const char*luaL_optlstring(lua_State*L,int narg, -const char*def,size_t*len){ -if(lua_isnoneornil(L,narg)){ -if(len) -*len=(def?strlen(def):0); -return def; -} -else return luaL_checklstring(L,narg,len); -} -static lua_Number luaL_checknumber(lua_State*L,int narg){ -lua_Number d=lua_tonumber(L,narg); -if(d==0&&!lua_isnumber(L,narg)) -tag_error(L,narg,3); -return d; -} -static lua_Integer luaL_checkinteger(lua_State*L,int narg){ -lua_Integer d=lua_tointeger(L,narg); -if(d==0&&!lua_isnumber(L,narg)) -tag_error(L,narg,3); -return d; -} -static lua_Integer luaL_optinteger(lua_State*L,int narg, -lua_Integer def){ -return luaL_opt(L,luaL_checkinteger,narg,def); -} -static int luaL_getmetafield(lua_State*L,int obj,const char*event){ -if(!lua_getmetatable(L,obj)) -return 0; -lua_pushstring(L,event); -lua_rawget(L,-2); -if(lua_isnil(L,-1)){ -lua_pop(L,2); -return 0; -} -else{ -lua_remove(L,-2); -return 1; -} -} -static void luaL_register(lua_State*L,const char*libname, -const luaL_Reg*l){ -luaI_openlib(L,libname,l,0); -} -static int libsize(const luaL_Reg*l){ -int size=0; -for(;l->name;l++)size++; -return size; -} -static void luaI_openlib(lua_State*L,const char*libname, -const luaL_Reg*l,int nup){ -if(libname){ -int size=libsize(l); -luaL_findtable(L,(-10000),"_LOADED",1); -lua_getfield(L,-1,libname); -if(!lua_istable(L,-1)){ -lua_pop(L,1); -if(luaL_findtable(L,(-10002),libname,size)!=NULL) -luaL_error(L,"name conflict for module "LUA_QL("%s"),libname); -lua_pushvalue(L,-1); -lua_setfield(L,-3,libname); -} -lua_remove(L,-2); -lua_insert(L,-(nup+1)); -} -for(;l->name;l++){ -int i; -for(i=0;ifunc,nup); -lua_setfield(L,-(nup+2),l->name); -} -lua_pop(L,nup); -} -static const char*luaL_findtable(lua_State*L,int idx, -const char*fname,int szhint){ -const char*e; -lua_pushvalue(L,idx); -do{ -e=strchr(fname,'.'); -if(e==NULL)e=fname+strlen(fname); -lua_pushlstring(L,fname,e-fname); -lua_rawget(L,-2); -if(lua_isnil(L,-1)){ -lua_pop(L,1); -lua_createtable(L,0,(*e=='.'?1:szhint)); -lua_pushlstring(L,fname,e-fname); -lua_pushvalue(L,-2); -lua_settable(L,-4); -} -else if(!lua_istable(L,-1)){ -lua_pop(L,2); -return fname; -} -lua_remove(L,-2); -fname=e+1; -}while(*e=='.'); -return NULL; -} -#define bufflen(B)((B)->p-(B)->buffer) -#define bufffree(B)((size_t)(BUFSIZ-bufflen(B))) -static int emptybuffer(luaL_Buffer*B){ -size_t l=bufflen(B); -if(l==0)return 0; -else{ -lua_pushlstring(B->L,B->buffer,l); -B->p=B->buffer; -B->lvl++; -return 1; -} -} -static void adjuststack(luaL_Buffer*B){ -if(B->lvl>1){ -lua_State*L=B->L; -int toget=1; -size_t toplen=lua_strlen(L,-1); -do{ -size_t l=lua_strlen(L,-(toget+1)); -if(B->lvl-toget+1>=(20/2)||toplen>l){ -toplen+=l; -toget++; -} -else break; -}while(togetlvl); -lua_concat(L,toget); -B->lvl=B->lvl-toget+1; -} -} -static char*luaL_prepbuffer(luaL_Buffer*B){ -if(emptybuffer(B)) -adjuststack(B); -return B->buffer; -} -static void luaL_addlstring(luaL_Buffer*B,const char*s,size_t l){ -while(l--) -luaL_addchar(B,*s++); -} -static void luaL_pushresult(luaL_Buffer*B){ -emptybuffer(B); -lua_concat(B->L,B->lvl); -B->lvl=1; -} -static void luaL_addvalue(luaL_Buffer*B){ -lua_State*L=B->L; -size_t vl; -const char*s=lua_tolstring(L,-1,&vl); -if(vl<=bufffree(B)){ -memcpy(B->p,s,vl); -B->p+=vl; -lua_pop(L,1); -} -else{ -if(emptybuffer(B)) -lua_insert(L,-2); -B->lvl++; -adjuststack(B); -} -} -static void luaL_buffinit(lua_State*L,luaL_Buffer*B){ -B->L=L; -B->p=B->buffer; -B->lvl=0; -} -typedef struct LoadF{ -int extraline; -FILE*f; -char buff[BUFSIZ]; -}LoadF; -static const char*getF(lua_State*L,void*ud,size_t*size){ -LoadF*lf=(LoadF*)ud; -(void)L; -if(lf->extraline){ -lf->extraline=0; -*size=1; -return"\n"; -} -if(feof(lf->f))return NULL; -*size=fread(lf->buff,1,sizeof(lf->buff),lf->f); -return(*size>0)?lf->buff:NULL; -} -static int errfile(lua_State*L,const char*what,int fnameindex){ -const char*serr=strerror(errno); -const char*filename=lua_tostring(L,fnameindex)+1; -lua_pushfstring(L,"cannot %s %s: %s",what,filename,serr); -lua_remove(L,fnameindex); -return(5+1); -} -static int luaL_loadfile(lua_State*L,const char*filename){ -LoadF lf; -int status,readstatus; -int c; -int fnameindex=lua_gettop(L)+1; -lf.extraline=0; -if(filename==NULL){ -lua_pushliteral(L,"=stdin"); -lf.f=stdin; -} -else{ -lua_pushfstring(L,"@%s",filename); -lf.f=fopen(filename,"r"); -if(lf.f==NULL)return errfile(L,"open",fnameindex); -} -c=getc(lf.f); -if(c=='#'){ -lf.extraline=1; -while((c=getc(lf.f))!=EOF&&c!='\n'); -if(c=='\n')c=getc(lf.f); -} -if(c=="\033Lua"[0]&&filename){ -lf.f=freopen(filename,"rb",lf.f); -if(lf.f==NULL)return errfile(L,"reopen",fnameindex); -while((c=getc(lf.f))!=EOF&&c!="\033Lua"[0]); -lf.extraline=0; -} -ungetc(c,lf.f); -status=lua_load(L,getF,&lf,lua_tostring(L,-1)); -readstatus=ferror(lf.f); -if(filename)fclose(lf.f); -if(readstatus){ -lua_settop(L,fnameindex); -return errfile(L,"read",fnameindex); -} -lua_remove(L,fnameindex); -return status; -} -typedef struct LoadS{ -const char*s; -size_t size; -}LoadS; -static const char*getS(lua_State*L,void*ud,size_t*size){ -LoadS*ls=(LoadS*)ud; -(void)L; -if(ls->size==0)return NULL; -*size=ls->size; -ls->size=0; -return ls->s; -} -static int luaL_loadbuffer(lua_State*L,const char*buff,size_t size, -const char*name){ -LoadS ls; -ls.s=buff; -ls.size=size; -return lua_load(L,getS,&ls,name); -} -static void*l_alloc(void*ud,void*ptr,size_t osize,size_t nsize){ -(void)ud; -(void)osize; -if(nsize==0){ -free(ptr); -return NULL; -} -else -return realloc(ptr,nsize); -} -static int panic(lua_State*L){ -(void)L; -fprintf(stderr,"PANIC: unprotected error in call to Lua API (%s)\n", -lua_tostring(L,-1)); -return 0; -} -static lua_State*luaL_newstate(void){ -lua_State*L=lua_newstate(l_alloc,NULL); -if(L)lua_atpanic(L,&panic); -return L; -} -static int luaB_tonumber(lua_State*L){ -int base=luaL_optint(L,2,10); -if(base==10){ -luaL_checkany(L,1); -if(lua_isnumber(L,1)){ -lua_pushnumber(L,lua_tonumber(L,1)); -return 1; -} -} -else{ -const char*s1=luaL_checkstring(L,1); -char*s2; -unsigned long n; -luaL_argcheck(L,2<=base&&base<=36,2,"base out of range"); -n=strtoul(s1,&s2,base); -if(s1!=s2){ -while(isspace((unsigned char)(*s2)))s2++; -if(*s2=='\0'){ -lua_pushnumber(L,(lua_Number)n); -return 1; -} -} -} -lua_pushnil(L); -return 1; -} -static int luaB_error(lua_State*L){ -int level=luaL_optint(L,2,1); -lua_settop(L,1); -if(lua_isstring(L,1)&&level>0){ -luaL_where(L,level); -lua_pushvalue(L,1); -lua_concat(L,2); -} -return lua_error(L); -} -static int luaB_setmetatable(lua_State*L){ -int t=lua_type(L,2); -luaL_checktype(L,1,5); -luaL_argcheck(L,t==0||t==5,2, -"nil or table expected"); -if(luaL_getmetafield(L,1,"__metatable")) -luaL_error(L,"cannot change a protected metatable"); -lua_settop(L,2); -lua_setmetatable(L,1); -return 1; -} -static void getfunc(lua_State*L,int opt){ -if(lua_isfunction(L,1))lua_pushvalue(L,1); -else{ -lua_Debug ar; -int level=opt?luaL_optint(L,1,1):luaL_checkint(L,1); -luaL_argcheck(L,level>=0,1,"level must be non-negative"); -if(lua_getstack(L,level,&ar)==0) -luaL_argerror(L,1,"invalid level"); -lua_getinfo(L,"f",&ar); -if(lua_isnil(L,-1)) -luaL_error(L,"no function environment for tail call at level %d", -level); -} -} -static int luaB_setfenv(lua_State*L){ -luaL_checktype(L,2,5); -getfunc(L,0); -lua_pushvalue(L,2); -if(lua_isnumber(L,1)&&lua_tonumber(L,1)==0){ -lua_pushthread(L); -lua_insert(L,-2); -lua_setfenv(L,-2); -return 0; -} -else if(lua_iscfunction(L,-2)||lua_setfenv(L,-2)==0) -luaL_error(L, -LUA_QL("setfenv")" cannot change environment of given object"); -return 1; -} -static int luaB_rawget(lua_State*L){ -luaL_checktype(L,1,5); -luaL_checkany(L,2); -lua_settop(L,2); -lua_rawget(L,1); -return 1; -} -static int luaB_type(lua_State*L){ -luaL_checkany(L,1); -lua_pushstring(L,luaL_typename(L,1)); -return 1; -} -static int luaB_next(lua_State*L){ -luaL_checktype(L,1,5); -lua_settop(L,2); -if(lua_next(L,1)) -return 2; -else{ -lua_pushnil(L); -return 1; -} -} -static int luaB_pairs(lua_State*L){ -luaL_checktype(L,1,5); -lua_pushvalue(L,lua_upvalueindex(1)); -lua_pushvalue(L,1); -lua_pushnil(L); -return 3; -} -static int ipairsaux(lua_State*L){ -int i=luaL_checkint(L,2); -luaL_checktype(L,1,5); -i++; -lua_pushinteger(L,i); -lua_rawgeti(L,1,i); -return(lua_isnil(L,-1))?0:2; -} -static int luaB_ipairs(lua_State*L){ -luaL_checktype(L,1,5); -lua_pushvalue(L,lua_upvalueindex(1)); -lua_pushvalue(L,1); -lua_pushinteger(L,0); -return 3; -} -static int load_aux(lua_State*L,int status){ -if(status==0) -return 1; -else{ -lua_pushnil(L); -lua_insert(L,-2); -return 2; -} -} -static int luaB_loadstring(lua_State*L){ -size_t l; -const char*s=luaL_checklstring(L,1,&l); -const char*chunkname=luaL_optstring(L,2,s); -return load_aux(L,luaL_loadbuffer(L,s,l,chunkname)); -} -static int luaB_loadfile(lua_State*L){ -const char*fname=luaL_optstring(L,1,NULL); -return load_aux(L,luaL_loadfile(L,fname)); -} -static int luaB_assert(lua_State*L){ -luaL_checkany(L,1); -if(!lua_toboolean(L,1)) -return luaL_error(L,"%s",luaL_optstring(L,2,"assertion failed!")); -return lua_gettop(L); -} -static int luaB_unpack(lua_State*L){ -int i,e,n; -luaL_checktype(L,1,5); -i=luaL_optint(L,2,1); -e=luaL_opt(L,luaL_checkint,3,luaL_getn(L,1)); -if(i>e)return 0; -n=e-i+1; -if(n<=0||!lua_checkstack(L,n)) -return luaL_error(L,"too many results to unpack"); -lua_rawgeti(L,1,i); -while(i++e)e=pos; -for(i=e;i>pos;i--){ -lua_rawgeti(L,1,i-1); -lua_rawseti(L,1,i); -} -break; -} -default:{ -return luaL_error(L,"wrong number of arguments to "LUA_QL("insert")); -} -} -luaL_setn(L,1,e); -lua_rawseti(L,1,pos); -return 0; -} -static int tremove(lua_State*L){ -int e=aux_getn(L,1); -int pos=luaL_optint(L,2,e); -if(!(1<=pos&&pos<=e)) -return 0; -luaL_setn(L,1,e-1); -lua_rawgeti(L,1,pos); -for(;posu)luaL_error(L,"invalid order function for sorting"); -lua_pop(L,1); -} -while(lua_rawgeti(L,1,--j),sort_comp(L,-3,-1)){ -if(j0); -} -l=strlen(p); -if(l==0||p[l-1]!='\n') -luaL_addsize(&b,l); -else{ -luaL_addsize(&b,l-1); -luaL_pushresult(&b); -return 1; -} -} -} -static int read_chars(lua_State*L,FILE*f,size_t n){ -size_t rlen; -size_t nr; -luaL_Buffer b; -luaL_buffinit(L,&b); -rlen=BUFSIZ; -do{ -char*p=luaL_prepbuffer(&b); -if(rlen>n)rlen=n; -nr=fread(p,sizeof(char),rlen,f); -luaL_addsize(&b,nr); -n-=nr; -}while(n>0&&nr==rlen); -luaL_pushresult(&b); -return(n==0||lua_objlen(L,-1)>0); -} -static int g_read(lua_State*L,FILE*f,int first){ -int nargs=lua_gettop(L)-1; -int success; -int n; -clearerr(f); -if(nargs==0){ -success=read_line(L,f); -n=first+1; -} -else{ -luaL_checkstack(L,nargs+20,"too many arguments"); -success=1; -for(n=first;nargs--&&success;n++){ -if(lua_type(L,n)==3){ -size_t l=(size_t)lua_tointeger(L,n); -success=(l==0)?test_eof(L,f):read_chars(L,f,l); -} -else{ -const char*p=lua_tostring(L,n); -luaL_argcheck(L,p&&p[0]=='*',n,"invalid option"); -switch(p[1]){ -case'n': -success=read_number(L,f); -break; -case'l': -success=read_line(L,f); -break; -case'a': -read_chars(L,f,~((size_t)0)); -success=1; -break; -default: -return luaL_argerror(L,n,"invalid format"); -} -} -} -} -if(ferror(f)) -return pushresult(L,0,NULL); -if(!success){ -lua_pop(L,1); -lua_pushnil(L); -} -return n-first; -} -static int io_read(lua_State*L){ -return g_read(L,getiofile(L,1),1); -} -static int f_read(lua_State*L){ -return g_read(L,tofile(L),2); -} -static int io_readline(lua_State*L){ -FILE*f=*(FILE**)lua_touserdata(L,lua_upvalueindex(1)); -int sucess; -if(f==NULL) -luaL_error(L,"file is already closed"); -sucess=read_line(L,f); -if(ferror(f)) -return luaL_error(L,"%s",strerror(errno)); -if(sucess)return 1; -else{ -if(lua_toboolean(L,lua_upvalueindex(2))){ -lua_settop(L,0); -lua_pushvalue(L,lua_upvalueindex(1)); -aux_close(L); -} -return 0; -} -} -static int g_write(lua_State*L,FILE*f,int arg){ -int nargs=lua_gettop(L)-1; -int status=1; -for(;nargs--;arg++){ -if(lua_type(L,arg)==3){ -status=status&& -fprintf(f,"%.14g",lua_tonumber(L,arg))>0; -} -else{ -size_t l; -const char*s=luaL_checklstring(L,arg,&l); -status=status&&(fwrite(s,sizeof(char),l,f)==l); -} -} -return pushresult(L,status,NULL); -} -static int io_write(lua_State*L){ -return g_write(L,getiofile(L,2),1); -} -static int f_write(lua_State*L){ -return g_write(L,tofile(L),2); -} -static int io_flush(lua_State*L){ -return pushresult(L,fflush(getiofile(L,2))==0,NULL); -} -static int f_flush(lua_State*L){ -return pushresult(L,fflush(tofile(L))==0,NULL); -} -static const luaL_Reg iolib[]={ -{"close",io_close}, -{"flush",io_flush}, -{"input",io_input}, -{"lines",io_lines}, -{"open",io_open}, -{"output",io_output}, -{"read",io_read}, -{"type",io_type}, -{"write",io_write}, -{NULL,NULL} -}; -static const luaL_Reg flib[]={ -{"close",io_close}, -{"flush",f_flush}, -{"lines",f_lines}, -{"read",f_read}, -{"write",f_write}, -{"__gc",io_gc}, -{NULL,NULL} -}; -static void createmeta(lua_State*L){ -luaL_newmetatable(L,"FILE*"); -lua_pushvalue(L,-1); -lua_setfield(L,-2,"__index"); -luaL_register(L,NULL,flib); -} -static void createstdfile(lua_State*L,FILE*f,int k,const char*fname){ -*newfile(L)=f; -if(k>0){ -lua_pushvalue(L,-1); -lua_rawseti(L,(-10001),k); -} -lua_pushvalue(L,-2); -lua_setfenv(L,-2); -lua_setfield(L,-3,fname); -} -static void newfenv(lua_State*L,lua_CFunction cls){ -lua_createtable(L,0,1); -lua_pushcfunction(L,cls); -lua_setfield(L,-2,"__close"); -} -static int luaopen_io(lua_State*L){ -createmeta(L); -newfenv(L,io_fclose); -lua_replace(L,(-10001)); -luaL_register(L,"io",iolib); -newfenv(L,io_noclose); -createstdfile(L,stdin,1,"stdin"); -createstdfile(L,stdout,2,"stdout"); -createstdfile(L,stderr,0,"stderr"); -lua_pop(L,1); -lua_getfield(L,-1,"popen"); -newfenv(L,io_pclose); -lua_setfenv(L,-2); -lua_pop(L,1); -return 1; -} -static int os_pushresult(lua_State*L,int i,const char*filename){ -int en=errno; -if(i){ -lua_pushboolean(L,1); -return 1; -} -else{ -lua_pushnil(L); -lua_pushfstring(L,"%s: %s",filename,strerror(en)); -lua_pushinteger(L,en); -return 3; -} -} -static int os_remove(lua_State*L){ -const char*filename=luaL_checkstring(L,1); -return os_pushresult(L,remove(filename)==0,filename); -} -static int os_exit(lua_State*L){ -exit(luaL_optint(L,1,EXIT_SUCCESS)); -} -static const luaL_Reg syslib[]={ -{"exit",os_exit}, -{"remove",os_remove}, -{NULL,NULL} -}; -static int luaopen_os(lua_State*L){ -luaL_register(L,"os",syslib); -return 1; -} -#define uchar(c)((unsigned char)(c)) -static ptrdiff_t posrelat(ptrdiff_t pos,size_t len){ -if(pos<0)pos+=(ptrdiff_t)len+1; -return(pos>=0)?pos:0; -} -static int str_sub(lua_State*L){ -size_t l; -const char*s=luaL_checklstring(L,1,&l); -ptrdiff_t start=posrelat(luaL_checkinteger(L,2),l); -ptrdiff_t end=posrelat(luaL_optinteger(L,3,-1),l); -if(start<1)start=1; -if(end>(ptrdiff_t)l)end=(ptrdiff_t)l; -if(start<=end) -lua_pushlstring(L,s+start-1,end-start+1); -else lua_pushliteral(L,""); -return 1; -} -static int str_lower(lua_State*L){ -size_t l; -size_t i; -luaL_Buffer b; -const char*s=luaL_checklstring(L,1,&l); -luaL_buffinit(L,&b); -for(i=0;i0) -luaL_addlstring(&b,s,l); -luaL_pushresult(&b); -return 1; -} -static int str_byte(lua_State*L){ -size_t l; -const char*s=luaL_checklstring(L,1,&l); -ptrdiff_t posi=posrelat(luaL_optinteger(L,2,1),l); -ptrdiff_t pose=posrelat(luaL_optinteger(L,3,posi),l); -int n,i; -if(posi<=0)posi=1; -if((size_t)pose>l)pose=l; -if(posi>pose)return 0; -n=(int)(pose-posi+1); -if(posi+n<=pose) -luaL_error(L,"string slice too long"); -luaL_checkstack(L,n,"string slice too long"); -for(i=0;i=ms->level||ms->capture[l].len==(-1)) -return luaL_error(ms->L,"invalid capture index"); -return l; -} -static int capture_to_close(MatchState*ms){ -int level=ms->level; -for(level--;level>=0;level--) -if(ms->capture[level].len==(-1))return level; -return luaL_error(ms->L,"invalid pattern capture"); -} -static const char*classend(MatchState*ms,const char*p){ -switch(*p++){ -case'%':{ -if(*p=='\0') -luaL_error(ms->L,"malformed pattern (ends with "LUA_QL("%%")")"); -return p+1; -} -case'[':{ -if(*p=='^')p++; -do{ -if(*p=='\0') -luaL_error(ms->L,"malformed pattern (missing "LUA_QL("]")")"); -if(*(p++)=='%'&&*p!='\0') -p++; -}while(*p!=']'); -return p+1; -} -default:{ -return p; -} -} -} -static int match_class(int c,int cl){ -int res; -switch(tolower(cl)){ -case'a':res=isalpha(c);break; -case'c':res=iscntrl(c);break; -case'd':res=isdigit(c);break; -case'l':res=islower(c);break; -case'p':res=ispunct(c);break; -case's':res=isspace(c);break; -case'u':res=isupper(c);break; -case'w':res=isalnum(c);break; -case'x':res=isxdigit(c);break; -case'z':res=(c==0);break; -default:return(cl==c); -} -return(islower(cl)?res:!res); -} -static int matchbracketclass(int c,const char*p,const char*ec){ -int sig=1; -if(*(p+1)=='^'){ -sig=0; -p++; -} -while(++pL,"unbalanced pattern"); -if(*s!=*p)return NULL; -else{ -int b=*p; -int e=*(p+1); -int cont=1; -while(++ssrc_end){ -if(*s==e){ -if(--cont==0)return s+1; -} -else if(*s==b)cont++; -} -} -return NULL; -} -static const char*max_expand(MatchState*ms,const char*s, -const char*p,const char*ep){ -ptrdiff_t i=0; -while((s+i)src_end&&singlematch(uchar(*(s+i)),p,ep)) -i++; -while(i>=0){ -const char*res=match(ms,(s+i),ep+1); -if(res)return res; -i--; -} -return NULL; -} -static const char*min_expand(MatchState*ms,const char*s, -const char*p,const char*ep){ -for(;;){ -const char*res=match(ms,s,ep+1); -if(res!=NULL) -return res; -else if(ssrc_end&&singlematch(uchar(*s),p,ep)) -s++; -else return NULL; -} -} -static const char*start_capture(MatchState*ms,const char*s, -const char*p,int what){ -const char*res; -int level=ms->level; -if(level>=32)luaL_error(ms->L,"too many captures"); -ms->capture[level].init=s; -ms->capture[level].len=what; -ms->level=level+1; -if((res=match(ms,s,p))==NULL) -ms->level--; -return res; -} -static const char*end_capture(MatchState*ms,const char*s, -const char*p){ -int l=capture_to_close(ms); -const char*res; -ms->capture[l].len=s-ms->capture[l].init; -if((res=match(ms,s,p))==NULL) -ms->capture[l].len=(-1); -return res; -} -static const char*match_capture(MatchState*ms,const char*s,int l){ -size_t len; -l=check_capture(ms,l); -len=ms->capture[l].len; -if((size_t)(ms->src_end-s)>=len&& -memcmp(ms->capture[l].init,s,len)==0) -return s+len; -else return NULL; -} -static const char*match(MatchState*ms,const char*s,const char*p){ -init: -switch(*p){ -case'(':{ -if(*(p+1)==')') -return start_capture(ms,s,p+2,(-2)); -else -return start_capture(ms,s,p+1,(-1)); -} -case')':{ -return end_capture(ms,s,p+1); -} -case'%':{ -switch(*(p+1)){ -case'b':{ -s=matchbalance(ms,s,p+2); -if(s==NULL)return NULL; -p+=4;goto init; -} -case'f':{ -const char*ep;char previous; -p+=2; -if(*p!='[') -luaL_error(ms->L,"missing "LUA_QL("[")" after " -LUA_QL("%%f")" in pattern"); -ep=classend(ms,p); -previous=(s==ms->src_init)?'\0':*(s-1); -if(matchbracketclass(uchar(previous),p,ep-1)|| -!matchbracketclass(uchar(*s),p,ep-1))return NULL; -p=ep;goto init; -} -default:{ -if(isdigit(uchar(*(p+1)))){ -s=match_capture(ms,s,uchar(*(p+1))); -if(s==NULL)return NULL; -p+=2;goto init; -} -goto dflt; -} -} -} -case'\0':{ -return s; -} -case'$':{ -if(*(p+1)=='\0') -return(s==ms->src_end)?s:NULL; -else goto dflt; -} -default:dflt:{ -const char*ep=classend(ms,p); -int m=ssrc_end&&singlematch(uchar(*s),p,ep); -switch(*ep){ -case'?':{ -const char*res; -if(m&&((res=match(ms,s+1,ep+1))!=NULL)) -return res; -p=ep+1;goto init; -} -case'*':{ -return max_expand(ms,s,p,ep); -} -case'+':{ -return(m?max_expand(ms,s+1,p,ep):NULL); -} -case'-':{ -return min_expand(ms,s,p,ep); -} -default:{ -if(!m)return NULL; -s++;p=ep;goto init; -} -} -} -} -} -static const char*lmemfind(const char*s1,size_t l1, -const char*s2,size_t l2){ -if(l2==0)return s1; -else if(l2>l1)return NULL; -else{ -const char*init; -l2--; -l1=l1-l2; -while(l1>0&&(init=(const char*)memchr(s1,*s2,l1))!=NULL){ -init++; -if(memcmp(init,s2+1,l2)==0) -return init-1; -else{ -l1-=init-s1; -s1=init; -} -} -return NULL; -} -} -static void push_onecapture(MatchState*ms,int i,const char*s, -const char*e){ -if(i>=ms->level){ -if(i==0) -lua_pushlstring(ms->L,s,e-s); -else -luaL_error(ms->L,"invalid capture index"); -} -else{ -ptrdiff_t l=ms->capture[i].len; -if(l==(-1))luaL_error(ms->L,"unfinished capture"); -if(l==(-2)) -lua_pushinteger(ms->L,ms->capture[i].init-ms->src_init+1); -else -lua_pushlstring(ms->L,ms->capture[i].init,l); -} -} -static int push_captures(MatchState*ms,const char*s,const char*e){ -int i; -int nlevels=(ms->level==0&&s)?1:ms->level; -luaL_checkstack(ms->L,nlevels,"too many captures"); -for(i=0;il1)init=(ptrdiff_t)l1; -if(find&&(lua_toboolean(L,4)|| -strpbrk(p,"^$*+?.([%-")==NULL)){ -const char*s2=lmemfind(s+init,l1-init,p,l2); -if(s2){ -lua_pushinteger(L,s2-s+1); -lua_pushinteger(L,s2-s+l2); -return 2; -} -} -else{ -MatchState ms; -int anchor=(*p=='^')?(p++,1):0; -const char*s1=s+init; -ms.L=L; -ms.src_init=s; -ms.src_end=s+l1; -do{ -const char*res; -ms.level=0; -if((res=match(&ms,s1,p))!=NULL){ -if(find){ -lua_pushinteger(L,s1-s+1); -lua_pushinteger(L,res-s); -return push_captures(&ms,NULL,0)+2; -} -else -return push_captures(&ms,s1,res); -} -}while(s1++L,3,&l); -for(i=0;iL; -switch(lua_type(L,3)){ -case 3: -case 4:{ -add_s(ms,b,s,e); -return; -} -case 6:{ -int n; -lua_pushvalue(L,3); -n=push_captures(ms,s,e); -lua_call(L,n,1); -break; -} -case 5:{ -push_onecapture(ms,0,s,e); -lua_gettable(L,3); -break; -} -} -if(!lua_toboolean(L,-1)){ -lua_pop(L,1); -lua_pushlstring(L,s,e-s); -} -else if(!lua_isstring(L,-1)) -luaL_error(L,"invalid replacement value (a %s)",luaL_typename(L,-1)); -luaL_addvalue(b); -} -static int str_gsub(lua_State*L){ -size_t srcl; -const char*src=luaL_checklstring(L,1,&srcl); -const char*p=luaL_checkstring(L,2); -int tr=lua_type(L,3); -int max_s=luaL_optint(L,4,srcl+1); -int anchor=(*p=='^')?(p++,1):0; -int n=0; -MatchState ms; -luaL_Buffer b; -luaL_argcheck(L,tr==3||tr==4|| -tr==6||tr==5,3, -"string/function/table expected"); -luaL_buffinit(L,&b); -ms.L=L; -ms.src_init=src; -ms.src_end=src+srcl; -while(nsrc) -src=e; -else if(src=sizeof("-+ #0")) -luaL_error(L,"invalid format (repeated flags)"); -if(isdigit(uchar(*p)))p++; -if(isdigit(uchar(*p)))p++; -if(*p=='.'){ -p++; -if(isdigit(uchar(*p)))p++; -if(isdigit(uchar(*p)))p++; -} -if(isdigit(uchar(*p))) -luaL_error(L,"invalid format (width or precision too long)"); -*(form++)='%'; -strncpy(form,strfrmt,p-strfrmt+1); -form+=p-strfrmt+1; -*form='\0'; -return p; -} -static void addintlen(char*form){ -size_t l=strlen(form); -char spec=form[l-1]; -strcpy(form+l-1,"l"); -form[l+sizeof("l")-2]=spec; -form[l+sizeof("l")-1]='\0'; -} -static int str_format(lua_State*L){ -int top=lua_gettop(L); -int arg=1; -size_t sfl; -const char*strfrmt=luaL_checklstring(L,arg,&sfl); -const char*strfrmt_end=strfrmt+sfl; -luaL_Buffer b; -luaL_buffinit(L,&b); -while(strfrmttop) -luaL_argerror(L,arg,"no value"); -strfrmt=scanformat(L,strfrmt,form); -switch(*strfrmt++){ -case'c':{ -sprintf(buff,form,(int)luaL_checknumber(L,arg)); -break; -} -case'd':case'i':{ -addintlen(form); -sprintf(buff,form,(long)luaL_checknumber(L,arg)); -break; -} -case'o':case'u':case'x':case'X':{ -addintlen(form); -sprintf(buff,form,(unsigned long)luaL_checknumber(L,arg)); -break; -} -case'e':case'E':case'f': -case'g':case'G':{ -sprintf(buff,form,(double)luaL_checknumber(L,arg)); -break; -} -case'q':{ -addquoted(L,&b,arg); -continue; -} -case's':{ -size_t l; -const char*s=luaL_checklstring(L,arg,&l); -if(!strchr(form,'.')&&l>=100){ -lua_pushvalue(L,arg); -luaL_addvalue(&b); -continue; -} -else{ -sprintf(buff,form,s); -break; -} -} -default:{ -return luaL_error(L,"invalid option "LUA_QL("%%%c")" to " -LUA_QL("format"),*(strfrmt-1)); -} -} -luaL_addlstring(&b,buff,strlen(buff)); -} -} -luaL_pushresult(&b); -return 1; -} -static const luaL_Reg strlib[]={ -{"byte",str_byte}, -{"char",str_char}, -{"find",str_find}, -{"format",str_format}, -{"gmatch",gmatch}, -{"gsub",str_gsub}, -{"lower",str_lower}, -{"match",str_match}, -{"rep",str_rep}, -{"sub",str_sub}, -{"upper",str_upper}, -{NULL,NULL} -}; -static void createmetatable(lua_State*L){ -lua_createtable(L,0,1); -lua_pushliteral(L,""); -lua_pushvalue(L,-2); -lua_setmetatable(L,-2); -lua_pop(L,1); -lua_pushvalue(L,-2); -lua_setfield(L,-2,"__index"); -lua_pop(L,1); -} -static int luaopen_string(lua_State*L){ -luaL_register(L,"string",strlib); -createmetatable(L); -return 1; -} -static const luaL_Reg lualibs[]={ -{"",luaopen_base}, -{"table",luaopen_table}, -{"io",luaopen_io}, -{"os",luaopen_os}, -{"string",luaopen_string}, -{NULL,NULL} -}; -static void luaL_openlibs(lua_State*L){ -const luaL_Reg*lib=lualibs; -for(;lib->func;lib++){ -lua_pushcfunction(L,lib->func); -lua_pushstring(L,lib->name); -lua_call(L,1,0); -} -} -typedef unsigned int UB; -static UB barg(lua_State*L,int idx){ -union{lua_Number n;U64 b;}bn; -bn.n=lua_tonumber(L,idx)+6755399441055744.0; -if(bn.n==0.0&&!lua_isnumber(L,idx))luaL_typerror(L,idx,"number"); -return(UB)bn.b; -} -#define BRET(b)lua_pushnumber(L,(lua_Number)(int)(b));return 1; -static int tobit(lua_State*L){ -BRET(barg(L,1))} -static int bnot(lua_State*L){ -BRET(~barg(L,1))} -static int band(lua_State*L){ -int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b&=barg(L,i);BRET(b)} -static int bor(lua_State*L){ -int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b|=barg(L,i);BRET(b)} -static int bxor(lua_State*L){ -int i;UB b=barg(L,1);for(i=lua_gettop(L);i>1;i--)b^=barg(L,i);BRET(b)} -static int lshift(lua_State*L){ -UB b=barg(L,1),n=barg(L,2)&31;BRET(b<>n)} -static int arshift(lua_State*L){ -UB b=barg(L,1),n=barg(L,2)&31;BRET((int)b>>n)} -static int rol(lua_State*L){ -UB b=barg(L,1),n=barg(L,2)&31;BRET((b<>(32-n)))} -static int ror(lua_State*L){ -UB b=barg(L,1),n=barg(L,2)&31;BRET((b>>n)|(b<<(32-n)))} -static int bswap(lua_State*L){ -UB b=barg(L,1);b=(b>>24)|((b>>8)&0xff00)|((b&0xff00)<<8)|(b<<24);BRET(b)} -static int tohex(lua_State*L){ -UB b=barg(L,1); -int n=lua_isnone(L,2)?8:(int)barg(L,2); -const char*hexdigits="0123456789abcdef"; -char buf[8]; -int i; -if(n<0){n=-n;hexdigits="0123456789ABCDEF";} -if(n>8)n=8; -for(i=(int)n;--i>=0;){buf[i]=hexdigits[b&15];b>>=4;} -lua_pushlstring(L,buf,(size_t)n); -return 1; -} -static const struct luaL_Reg bitlib[]={ -{"tobit",tobit}, -{"bnot",bnot}, -{"band",band}, -{"bor",bor}, -{"bxor",bxor}, -{"lshift",lshift}, -{"rshift",rshift}, -{"arshift",arshift}, -{"rol",rol}, -{"ror",ror}, -{"bswap",bswap}, -{"tohex",tohex}, -{NULL,NULL} -}; -int main(int argc,char**argv){ -lua_State*L=luaL_newstate(); -int i; -luaL_openlibs(L); -luaL_register(L,"bit",bitlib); -if(argc<2)return sizeof(void*); -lua_createtable(L,0,1); -lua_pushstring(L,argv[1]); -lua_rawseti(L,-2,0); -lua_setglobal(L,"arg"); -if(luaL_loadfile(L,argv[1])) -goto err; -for(i=2;iu.l.savedpc before calling certain functions -|// -|// DISPATCH points to the dispatch table which is located in the -|// global_State structure defined in lstate.h - this contains the computed goto -|// destinations -|// -|.define BASE, r8 // Not C callee-save, refetched anyway. -|.define KBASE, r15 // C callee-save. -|.define PC, rbx // C callee-save. -|.define DISPATCH, r14 // C callee-save. -| -|// TODO following is based on what LuaJIT does but could change -|.define RA, ecx -|.define RAH, ch -|.define RAL, cl -|.define RAa, rcx -|.define RB, edx -|.define RBW, dx -|.define RBH, dh -|.define RBL, dl -|.define RBa, rdx -|.define OP, RB -|.define RC, eax // volatile -|.define RCH, ah -|.define RCL, al -|.define RCW, ax -|.define RCa, rax -| -|.define TMP1, r10 -|.define TMP1d, r10d -|.define TMP2, r11 -|.define TMP3, r9 -|.define TMP3d, r9d -| -|.if X64WIN -| -| // On Win64, the first four integer arguments are passed in registers. Integer values are passed -| // (in order left to right) in RCX, RDX, R8, and R9. Arguments five and higher are passed -| // on the stack. All arguments are right-justified in registers. This is done so the callee -| // can ignore the upper bits of the register if need be and can access only the portion -| // of the register necessary. -| // Floating-point and double-precision arguments are passed in XMM0 - XMM3 (up to 4) -| // with the integer slot (RCX, RDX, R8, and R9) that would normally be used for that cardinal -| // slot being ignored (see example below) and vice versa. -| // func3(int a, double b, int c, float d); -| // a in RCX, b in XMM1, c in R8, d in XMM3 -| // For functions not fully prototyped, the caller will pass integer values as integers -| // and floating-point values as double precision. For floating-point values only, both -| // the integer register and the floating-point register will contain the float value -| // in case the callee expects the value in the integer registers. -| -|.define CARG1, rcx // x64/WIN64 C call arguments. -|.define CARG2, rdx -|.define CARG3, r8 -|.define CARG4, r9 -|.define CARG1d, ecx -|.define CARG2d, edx -|.define CARG3d, r8d -|.define CARG4d, r9d -|.else -|.define CARG1, rdi // x64/POSIX C call arguments. -|.define CARG2, rsi -|.define CARG3, rdx -|.define CARG4, rcx -|.define CARG5, r8 -|.define CARG6, r9 -|.define CARG1d, edi -|.define CARG2d, esi -|.define CARG3d, edx -|.define CARG4d, ecx -|.define CARG5d, r8d -|.define CARG6d, r9d -|.endif -| -|// Type definitions. -|// We associate a default register with some of the types -|.type L, lua_State, rbp -|.type GL, global_State -|.type TOP, TValue // L->top (calls/open ops). -|.type CI, CallInfo, r12 // L->ci (calls, locally). -|.type LCL, LClosure, r13 // func->value (calls). -| -|// Type definitions with local validity. -|.type LUASTATE, lua_State -|.type TVALUE, TValue -|.type VALUE, Value -|.type CINFO, CallInfo -|.type GCOBJECT, GCObject -|.type TSTRING, TString -|.type TABLE, Table -|.type CCLOSURE, CClosure -|.type LCLOSURE, LClosure -|.type PROTO, Proto -|.type UPVAL, UpVal -|.type NODE, Node -| -|// Stack layout while in interpreter. -|//----------------------------------------------------------------------- -|.if X64WIN // x64/Windows stack layout -| -|// CFRAME_SPACE defines how much space we allocate on the stack. -|// Note that on windows this includes the shadow space of 32 bytes we need -|// to provide when calling functions; but since we were also given 32 bytes -|// it all cancels out and we can keep stack allocation size the same -|// across Windows and Linux. -| -|.define CFRAME_SPACE, aword*5 // Delta for rsp (see <--). -|.macro saveregs -| // The registers RBX, RBP, RDI, RSI, RSP, R12, R13, R14, and R15 are considered nonvolatile -| // and must be saved and restored by a function that uses them. -| // There is always space to hold all parameters in the parameter area of the stack -| // so that each register parameter has a home address. Even if a function has less -| // than 4 parameters, at least 4 stack locatons is guaranteed and is owned by the -| // called function even if it doesn't use it -| // All memory beyond the current address of RSP is considered volatile. -| // A frame function is a function that allocates stack space, calls other functions, -| // saves nonvolatile registers, or uses exception handling. It also requires a -| // function table entry. A frame function requires a prolog and an epilog. -| // home location for RCX is [RSP + 8] -| // home location for RDX is [RSP + 16] -| // home location for R8 is [RSP + 24] -| // home location for R9 is [RSP + 32] -| push rbp; push rdi; push rsi; push rbx -| push r12; push r13; push r14; push r15; -| sub rsp, CFRAME_SPACE -|.endmacro -|.macro restoreregs -| add rsp, CFRAME_SPACE -| pop r15; pop r14; pop r13; pop r12; -| pop rbx; pop rsi; pop rdi; pop rbp -|.endmacro -| -|// IMPORTANT: On Win64 the prologue above must be recorded in an UNWIND_INFO -|// structure in the object file - this is done in buildvm_peobj.c. Therefore any change -|// to the prologue or stack allocation needs to be kept consistent between above and -|// the UNWIND_INFO structure. -| -|//----------------------------------------------------------------------- -|.else // x64/POSIX stack layout -| -|.define CFRAME_SPACE, aword*5 // Delta for rsp (see <--). -|.macro saveregs -| push rbp; push rbx; push r15; push r14 -| push r13; push r12 -| sub rsp, CFRAME_SPACE -|.endmacro -|.macro restoreregs -| add rsp, CFRAME_SPACE -| pop r12; pop r13 -| pop r14; pop r15; pop rbx; pop rbp -|.endmacro -| -|.endif -| -|// Stack layout - total size is 16-byte aligned -|// All locations are relative to rsp -|// MEM1 to MEM5 are 8 byte stack slots we can use (40 bytes) -|// SAVE_* represent the locations of saved registers by function prologue -|.if X64WIN -|.define MEM5, aword [rsp+aword*17] // Caller provided shadow space, we can use -|.define MEM4, aword [rsp+aword*16] // Caller provided shadow space, we can use -|.define MEM3, aword [rsp+aword*15] // Caller provided shadow space, we can use -|.define MEM2, aword [rsp+aword*14] // Caller provided shadow space, we can use -|.define SAVE_RET, aword [rsp+aword*13] // return address, <-- rsp when we entered ravi_luaV_interp(), before prologue -|.define SAVE_R8, aword [rsp+aword*12] // pushed register -|.define SAVE_R7, aword [rsp+aword*11] // Pushed regsiter -|.define SAVE_R6, aword [rsp+aword*10] // pushed register -|.define SAVE_R5, aword [rsp+aword*9] // Pushed regsiter -|.define SAVE_R4, aword [rsp+aword*8] // Pushed register (prologue) -|.define SAVE_R3, aword [rsp+aword*7] // pushed register -|.define SAVE_R2, aword [rsp+aword*6] // Pushed regsiter -|.define SAVE_R1, aword [rsp+aword*5] // Pushed register (prologue) -|.define MEM1, aword [rsp+aword*4] // First stack location we can use (8 bytes) -|// Following four stack locations are the 32-byte shadow space for function calls -|// These stack locations may be over-written by any C function we call -|.define SHADOW4, aword [rsp+aword*3] //Shadow register arg -|.define SHADOW3, aword [rsp+aword*2] //Shadow register arg -|.define SHADOW2, aword [rsp+aword*1] //Shadow register arg -|.define SHADOW1, aword [rsp] //Shadow register arg, not to be used by VM, <-- rsp after interpreter prologue -|.else -|.define SAVE_RET, aword [rsp+aword*13] // return address, <-- rsp when we entered ravi_luaV_interp(), before prologue -|.define SAVE_R8, aword [rsp+aword*12] // pushed register -|.define SAVE_R7, aword [rsp+aword*11] // Pushed regsiter -|.define SAVE_R6, aword [rsp+aword*10] // pushed register -|.define SAVE_R5, aword [rsp+aword*9] // Pushed regsiter -|.define SAVE_R4, aword [rsp+aword*8] // Pushed register (prologue) -|.define SAVE_R3, aword [rsp+aword*7] // pushed register -|.define SAVE_R2, aword [rsp+aword*6] // Pushed regsiter -|.define SAVE_R1, aword [rsp+aword*5] // Pushed register (prologue) -|.define MEM5, aword [rsp+aword*4] // Stack space we can use -|.define MEM4, aword [rsp+aword*3] // Stack space we can use -|.define MEM3, aword [rsp+aword*2] // Stack space we can use -|.define MEM2, aword [rsp+aword*1] // Stack space we can use -|.define MEM1, aword [rsp] // First stack location we can use (8 bytes), <-- rsp after interpreter prologue -|.endif -| -|.define OPSIZE, 4 // sizeof(Instruction) -|.define PTRSIZE, 8 // sizeof(void *) -|.define VALUESIZE, 16 // sizeof(TValue) -| -|//The bytecode layout here uses LuaJIT inspired format. -|// -|//+---+---+---+----+ -|//+ B | C | A | Op | -|//+---+---+---+----+ -|//+ Bx | A | Op | -|//+-------+---+----+ -|//+ Ax | Op | -|//+-----------+----+ -|// -|// Thus we can directly access Op and A using AL and AH registers -|// Then we shift the value >> 16 which allows direct access to B, and C using AH, AL -|// or Bx using AX -| -|// Instruction decode+dispatch -|.macro dispatchNext -| mov RC, [PC] // Fetch next instruction -| movzx OP, RCL // OP = OpCode -| add PC, OPSIZE // PC++ -| jmp aword [DISPATCH+OP*8] // jump to assembly routine -|.endmacro -| -|// Following macros decode the bytecode values A, B, C, etc. -|// They assume that RC holds the bytecode -|// Note that below we expect the bytecode layout to be like LuaJIT's -|// and ot Lua's - see lopcodes.h for details. -|.macro ins_ABC -| movzx RA, RCH // RA = A -| shr RC, 16 // RC = RC >> 16, now contains B,C -| movzx RB, RCH -| movzx RC, RCL; -|.endmacro -|.macro ins_ABx -| movzx RA, RCH // RA = A -| shr RC, 16 // RC = RC >> 16, now contains Bx -| movzx RB, RCW -|.endmacro -|.macro ins_AB_ -| movzx RA, RCH // RA = A -| shr RC, 16 // RC = RC >> 16, now contains B,- -| movzx RB, RCH -|.endmacro -|.macro ins_A_C -| movzx RA, RCH // RA = A -| shr RC, 16 // RC = RC >> 16, now contains -,C -| movzx RC, RCL -|.endmacro -|.macro ins_A__ -| movzx RA, RCH // RA = A -|.endmacro -|.macro ins_Bx -| shr RC, 16 // RC = RC >> 16, now contains Bx -| movzx RB, RCW -|.endmacro -| -|// Load effective address of BASE[reg*16] into dest -|.macro loadRegPtr, dest, reg -| shl reg, 4 // Multiply by 16, 2^4 = 16 -| lea dest, [BASE+reg] -|.endmacro -|// Load effective address of K[reg*16] into dest -|.macro loadKonstPtr, dest, reg -| shl reg, 4 // Multiply by 16, 2^4 = 16 -| lea dest, [KBASE+reg] -|.endmacro -|// Copy value from src to dst, using tmpq (64-bit) and tmpd (32-bit) registers as temporaries -|.macro copyValue, dst, src, tmpq, tmpd -| mov tmpq, TVALUE:src->value_.gc -| mov tmpd, TVALUE:src->tt_ -| mov TVALUE:dst->value_.gc, tmpq -| mov TVALUE:dst->tt_, tmpd -|.endmacro -|// Computes signed shift to the PC -|.macro branchPC, reg -| lea PC, [PC+reg*4-MAXARG_sBx*4] // 131072 = MAXARG_sBx*4 -|.endmacro -| -/* Generate subroutines used by opcodes and other parts of the VM. */ -/* The .code_sub section should be last to help static branch prediction. */ -static void build_subroutines(BuildCtx *ctx) -{ - |.code_sub - | - |//----------------------------------------------------------------------- - |//-- VM entry point - |//----------------------------------------------------------------------- - |->luaV_interp: - | saveregs // prologue, save regs and adjust stack pointer - | mov L, CARG1 // save L (arg1) - | mov DISPATCH, L->l_G // retrieve global_State - | add DISPATCH, DISPATCH_OFFSET // retrieve the dispatch table - | mov CI, L->ci // save L->ci - | or word CI->callstatus, CIST_FRESH // ci->callstatus |= CIST_FRESH - |->new_frame: // OP_RETURN jumps to here after returning from Lua function - | mov TVALUE:TMP1, CI->func // Get ci->func - | mov LCL, TVALUE:TMP1->value_.gc // LCL = (LClosure *)(ci->func->value_.gc) - | mov BASE, CI->u.l.base // BASE = ci->u.l.base (volatile) - | mov PC, LCL->p // KBASE = LCL->p->k - | mov KBASE, PROTO:PC->k // - | mov PC, CI->u.l.savedpc // PC = CI->u.l.savedpc, type is Instruction* - | dispatchNext // Fetch instruction, increment PC and go to fetched instruction's label - | - |//----------------------------------------------------------------------- - |//-- Return handling ---------------------------------------------------- - |//----------------------------------------------------------------------- - | - |->vm_return: - | restoreregs - | ret -} - -static void build_OP_RETURN(BuildCtx *ctx) -{ - |// Our goal is to generate following - |// - |// vmcase(OP_RETURN) { - |// int b = GETARG_B(i); - |// if (cl->p->sizep > 0) luaF_close(L, base); - |// savepc(L); - |// int nres = (b != 0 ? b - 1 : cast_int(L->top - ra)); - |// b = luaD_poscall(L, ci, ra, nres); - |// if (ci->callstatus & CIST_FRESH) { - |// return b; - |// } - |// else { - |// ci = L->ci; - |// if (b) L->top = ci->top; - |// goto newframe; /* restart luaV_execute over new Lua function */ - |// } - |// } - | - |// Upon entry RC has bytecode and OP has opcode - | - | mov PROTO:TMP1, LCL->p // TMP1 = ci->p - | cmp dword PROTO:TMP1->sizep, 0 // Test ci->p->sizep == 0 - | jz >1 // Skip call to luaF_close - | - | // Call luaF_close - | mov KBASE, RCa // Save the bytecode into KBASE as we don't need KBASE anymore - | mov LCL, BASE // Don't need LCL anymore so use it to save BASE - | mov CARG1, L // arg1 = L - | mov CARG2, BASE // arg2 = base - | call extern luaF_close // call luaF_close - | mov BASE, LCL // restore BASE - | mov RCa, KBASE // Restore bytecode to RC - | - |1: - | mov CI->u.l.savedpc, PC // CI->u.l.savedpc = PC i.e. savepc(L) - | ins_AB_ // Decode bytecode, RA = A, RB = B - | mov TMP1d, RA // save RA, as CARG4 conflicts with RA on Linux (we could do this conditionally) - | test RB, RB // To test if RB (b) is zero - | je >2 // If b == 0 then jump to 2 - | dec RB // RB = b - 1 - | mov CARG4d, RB // CARG4 will be zero extended as RB=b is 32-bit operand, b cannnot be < 0 - | loadRegPtr CARG3, TMP1d // CARG3 = ptr to Lua reg A, CARG3 conflicts with RB on Linux, TMP1 = RA here - | jmp >3 - |2: - | loadRegPtr CARG3, TMP1d // CARG3 = ptr to Lua reg A, CARG3 conflicts with RB on Linux, TMP1 = RA here - | mov CARG4, L->top // CARG4 = L->top - | sub CARG4, CARG3 // CARG4 = L->top - R(A) - | shr CARG4, 4 // Divide by 16 as sizeof(TValue) = 16, use macro here? - |3: - | mov CARG1, L // CARG1 = L - | mov CARG2, CI // CARG2 = CI - | call extern luaD_poscall - | test word CI->callstatus, CIST_FRESH // callstatus & CIT_FRESH? - | jne ->vm_return // CI->callstatus & CIST_FRESH so return RAX which has b - | mov CI, L->ci - | test eax, eax // Is b == 0? - | je >4 // Yes, so skip next step - | mov LCL, CI->top // Using LCL as a temp register here as we don't need LCL anymore - | mov L->top, LCL // b != 0 therefore L->top = ci->top - |4: - | jmp ->new_frame // Resume the function (L and CI set) - | -} - -static void build_OP_LOADK(BuildCtx *ctx) -{ - |// TValue *rb = k + GETARG_Bx(i); - |// setobj2s(L, ra, rb); - | - | ins_ABx // RA = A, RB = Bx - | loadKonstPtr TMP1, RB // TMP1 = ptr to K[RB] - | loadRegPtr TMP2, RA // TMP2 = ptr to BASE[RA] - | copyValue TMP2, TMP1, RCa, TMP3d // Copy value at TMP1 to TMP2, using RCa, TMP3d as temp registers - | dispatchNext -} - -static void build_OP_MOVE(BuildCtx *ctx) -{ - |// setobjs2s(L, ra, RB(i)); - | - | ins_AB_ // RA = A, RB = B - | loadRegPtr TMP1, RB // TMP1 = ptr to BASE[RB] - | loadRegPtr TMP2, RA // TMP2 = ptr to BASE[RA] - | copyValue TMP2, TMP1, RCa, TMP3d // Copy value at TMP1 to TMP2, using RCa, TMP3d as temp registers - | dispatchNext -} - -static void build_OP_FORPREP_IP(BuildCtx *ctx, OpCode op) -{ - |// vmcase(OP_RAVI_FORPREP_IP) - |// vmcase(OP_RAVI_FORPREP_I1) { - |// TValue *pinit = ra; - |// TValue *pstep = RAVI_LIKELY((op == OP_RAVI_FORPREP_I1)) ? NULL : ra + 2; - |// lua_Integer initv = ivalue(pinit); - |// lua_Integer istep = RAVI_LIKELY((op == OP_RAVI_FORPREP_I1)) ? 1 : ivalue(pstep); - |// setivalue(pinit, initv - istep); - |// pc += GETARG_sBx(i); - |// vmbreak; - |// } - | - | ins_ABx // RA = A, RB = Bx - | loadRegPtr RCa, RA // RCa is now pinit, we don't need RA anymore - | mov TMP1, TVALUE:RCa->value_.i // Load ivalue(pinit), TMP1 is now initv - if (op == OP_RAVI_FORPREP_I1) { - | dec TMP1 // step is 1 - } - else { - | sub TMP1, [RCa+32] // idx = idx - ivalue(pstep), we rely upon TValue having data first - } - | mov TVALUE:RCa->value_.i, TMP1 // setivalue(pinit, initv - istep) - | branchPC RBa // pc += sBx - | dispatchNext // jump to next instruction -} - -static void build_OP_FORLOOP_IP(BuildCtx *ctx, OpCode op) -{ - |// vmcase(OP_RAVI_FORLOOP_IP) - |// vmcase(OP_RAVI_FORLOOP_I1) { - |// lua_Integer step = op == OP_RAVI_FORLOOP_I1 ? 1 : ivalue(ra + 2); - |// lua_Integer idx = ivalue(ra) + step; /* increment index */ - |// lua_Integer limit = ivalue(ra + 1); - |// if (idx <= limit) { - |// pc += GETARG_sBx(i); /* jump back */ - |// chgivalue(ra, idx); /* update internal index... */ - |// setivalue(ra + 3, idx); /* ...and external index */ - |// } - |// vmbreak; - |// } - | - |// RC holds the instruction - | ins_A__ // RA = A, RCa still needed for later - | loadRegPtr TMP3, RA // TMP3 now points to RA (idx) - | mov TMP1, TVALUE:TMP3->value_.i // Load ivalue(pinit), TMP1 is now idx - if (op == OP_RAVI_FORLOOP_I1) { - | inc TMP1 // step is 1 - } - else { - | add TMP1, [TMP3+32] // Add step which is at ra+2, 32 = 2*sizeof(TValue); we rely on TValue having data first - } - | cmp TMP1, [TMP3+16] // compare idx with limit (ra+1), 16 = 1*sizeof(TValue); we rely on TValue having data first - | jg >1 // Our index has crossed the limit so we are done looping - | mov TVALUE:TMP3->value_.i, TMP1 // update index for internal var - | lea TMP2, [TMP3+48] // TMP2 now points to ra+3, 48 = 3*sizeof(TValue) - | mov TVALUE:TMP2->value_.i, TMP1 // External idx - | mov word TVALUE:TMP2->tt_, LUA_TNUMINT // Set type of external idx - | ins_Bx // RB = Bx, RCa used here - | branchPC RBa // PC += sBx - |1: - | dispatchNext -} - -/* Generate the code for a single instruction. */ -static void build_ins(BuildCtx *ctx, OpCode op, int defop) -{ - int vk = 0; - |=>defop: - - switch (op) { - case OP_RETURN: - build_OP_RETURN(ctx); - break; - case OP_LOADK: - build_OP_LOADK(ctx); - break; - case OP_MOVE: - build_OP_MOVE(ctx); - break; - case OP_RAVI_FORLOOP_IP: - case OP_RAVI_FORLOOP_I1: - build_OP_FORLOOP_IP(ctx, op); - break; - case OP_RAVI_FORPREP_I1: - case OP_RAVI_FORPREP_IP: - build_OP_FORPREP_IP(ctx, op); - break; - - /* ---------------------------------------------------------------------- */ - - default: - | dispatchNext - break; - } -} - -static int build_backend(BuildCtx *ctx) -{ - int op; - dasm_growpc(Dst, NUM_OPCODES); - build_subroutines(ctx); - |.code_op - for (op = 0; op < NUM_OPCODES; op++) - build_ins(ctx, (OpCode)op, op); - return NUM_OPCODES; -} -